/* ==========================================================================
   syntelis — base stylesheet
   Color values live in :root as CSS custom properties. To create a new
   color template, don't edit this file — add/override variables instead
   (see the theme blocks below, or the "Creating a new theme" note).
   ========================================================================== */

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --coral: #F5586A;
  --magenta: #7B82E8;
  --cyan: #29C4E8;
  --bg: #FFFFFF;
  --bg2: #F4F5F7;
  --text: #1A1A2E;
  --muted: #6B7280;
  --gradient: linear-gradient(135deg, #F5586A, #7B82E8, #29C4E8);
  --s-gradient: linear-gradient(135deg, #FEA857 0%, #F5576C 38%, #6B7EFF 68%, #2EC8E8 100%);
}

html { scroll-behavior: smooth; font-size: 100%; }
@media (min-width: 769px) {
  html { font-size: 150%; }
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

/* ─── HEADER ─────────────────────────────────────────────── */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.2rem 3rem;
  background: transparent;
  transition: background 0.4s ease, backdrop-filter 0.4s ease;
  min-width: 0;
}

header.scrolled {
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  width: 3.5rem;
  height: 3.5rem;
  object-fit: contain;
}

.logo-icon:not([src]) {
  visibility: hidden;
}

nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-shrink: 0;
  white-space: nowrap;
}

nav a {
  text-decoration: none;
  color: rgba(26,26,46,0.75);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  position: relative;
  transition: color 0.2s;
  white-space: nowrap;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -0.25rem; left: 0; right: 0;
  height: 0.125rem;
  background: var(--gradient);
  transform: scaleX(0);
  transition: transform 0.25s ease;
  border-radius: 0.125rem;
}

nav a:hover { color: var(--text); }
nav a:hover::after { transform: scaleX(1); }

.lang-switcher {
  display: flex;
  gap: 0.3rem;
  margin-left: 1rem;
  border-left: 1px solid rgba(0,0,0,0.12);
  padding-left: 1.5rem;
}

.lang-switcher button {
  background: none;
  border: none;
  color: rgba(26,26,46,0.75);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0.2rem 0.35rem;
  border-radius: 4px;
  letter-spacing: 0.05em;
  transition: all 0.2s;
}

.lang-switcher button.active,
.lang-switcher button:hover {
  color: var(--text);
  background: rgba(0,0,0,0.06);
}

/* ─── HAMBURGER ─────────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 0.3125rem;
  width: 2.25rem;
  height: 2.25rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  flex-shrink: 0;
  z-index: 201;
  position: relative;
}

.hamburger span {
  display: block;
  height: 0.125rem;
  border-radius: 0.125rem;
  background: var(--text);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.open span:nth-child(1) { transform: translateY(0.4375rem) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-0.4375rem) rotate(-45deg); }

/* ─── MOBILE MENU ───────────────────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.mobile-menu a {
  text-decoration: none;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  transition: opacity 0.2s;
}

.mobile-menu a:hover { opacity: 0.6; }

.mobile-lang {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.mobile-lang button {
  background: none;
  border: 1px solid rgba(0,0,0,0.15);
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  letter-spacing: 0.05em;
  transition: all 0.2s;
}

.mobile-lang button.active,
.mobile-lang button:hover {
  background: var(--text);
  color: white;
  border-color: var(--text);
}

/* ─── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 1100px) {
  nav { display: none; }
  .hamburger { display: flex; }
  header { padding: 1rem 1.5rem; }
  .logo-icon { width: 2.75rem; height: 2.75rem; }
}

/* ─── HERO ──────────────────────────────────────────────── */
#hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.video-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.video-bg video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-bg video.is-unavailable {
  display: none;
}

.video-bg.is-fallback {
  background: url('videos/hero-loop.webp') center / cover no-repeat;
}

.video-bg.is-poster {
  background: url('videos/hero-poster.jpg') center / cover no-repeat;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.35);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  margin-top: 5rem;
}

.hero-tagline {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: normal;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.hero-sub {
  font-size: 1.3rem;
  color: rgba(26,26,46,0.75);
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-cta {
  display: inline-block;
  position: relative;
  isolation: isolate;
  padding: 0.85rem 2.2rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
  box-shadow: none;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.hero-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: inherit;
  background: var(--s-gradient);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

.hero-cta:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.55);
  box-shadow:
    0 10px 28px rgba(245, 87, 108, 0.22),
    0 8px 24px rgba(46, 200, 232, 0.18);
}

/* ─── SECTIONS COMMON ───────────────────────────────────── */
section {
  padding: 7rem 3rem;
  max-width: 1100px;
  margin: 0 auto;
}

#hero {
  max-width: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

/* Small screens: shrink type and keep the tagline below the fixed header.
   Must live AFTER the base #hero rules or those later rules win. */
@media (max-width: 768px) {
  html { font-size: 125%; }

  #hero {
    height: auto;
    min-height: 100svh;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 7.5rem;
    box-sizing: border-box;
  }

  .hero-content {
    margin-top: 0;
    padding: 0.5rem 1.25rem 3rem;
    width: 100%;
  }

  .hero-tagline {
    font-size: clamp(1.65rem, 7vw, 2.1rem);
    line-height: 1.22;
    margin-bottom: 0.85rem;
  }

  .hero-sub {
    font-size: 1.05rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
  }
}


.section-wrapper {
  width: 100%;
}

.section-wrapper:nth-child(even) {
  background: var(--bg2);
}

.section-label {
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: normal;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.section-intro {
  font-size: 1.05rem;
  color: rgba(26,26,46,0.75);
  line-height: 1.75;
  margin-bottom: 3.5rem;
}

/* ─── MISSION ───────────────────────────────────────────── */
.mission-text {
  margin-bottom: 3.5rem;
}

.mission-text p {
  color: rgba(26,26,46,0.75);
  line-height: 1.8;
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--bg);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  padding: 2rem;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 0.1875rem;
  background: var(--gradient);
  opacity: 0;
  transition: opacity 0.3s;
}

.card:hover {
  border-color: rgba(0,0,0,0.12);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.card:hover::before { opacity: 1; }

.card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.6rem;
}

.card p {
  font-size: 1.05rem;
  color: rgba(26,26,46,0.75);
  line-height: 1.7;
}

a.card {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

a.card:focus-visible {
  outline: 2px solid var(--magenta);
  outline-offset: 3px;
}

/* ─── CONTACT ───────────────────────────────────────────── */
.contact-wrapper-bg { background: var(--bg2); }

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-item {
  margin-bottom: 2rem;
}

.contact-item-text strong {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  color: var(--muted);
  margin-bottom: 0.3rem;
}

.contact-item-text span {
  font-size: 1rem;
  color: var(--text);
}

.contact-cta {
  margin-top: 0.5rem;
}

/* ─── FOUNDERS ──────────────────────────────────────────── */
.founders {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

@media (max-width: 700px) {
  .founders { grid-template-columns: 1fr; }
}

.founder-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--bg);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  padding: 1.2rem 1.4rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.founder-avatar {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
  border: 0.125rem solid rgba(0,0,0,0.08);
}

.founder-info strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}

.founder-info span {
  font-size: 0.82rem;
  color: var(--muted);
}

/* ─── FOOTER ────────────────────────────────────────────── */
footer {
  text-align: center;
  padding: 2.5rem;
  border-top: 1px solid rgba(0,0,0,0.08);
  color: rgba(26,26,46,0.35);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  background: var(--bg2);
}


/* ─── LEGAL / PRIVACY PAGE ──────────────────────────────── */
body.legal-page {
  background: var(--bg);
}
body.legal-page #header {
  position: sticky;
  top: 0;
}
.legal-main {
  max-width: 760px;
  margin: 0 auto;
  padding: 7.5rem 1.5rem 4rem;
}
.legal-main .section-label {
  margin-bottom: 0.75rem;
}
.legal-main h1 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin: 0 0 1.75rem;
  color: var(--text);
}
.legal-block {
  margin-bottom: 1.75rem;
}
.legal-block h2 {
  font-size: 1.05rem;
  margin: 0 0 0.6rem;
  color: var(--text);
}
.legal-block p,
.legal-block li {
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.98rem;
}
.legal-block ul {
  margin: 0.4rem 0 0.8rem;
  padding-left: 1.2rem;
}
.legal-block li {
  margin-bottom: 0.55rem;
}
.legal-controller {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.6;
}
footer a.footer-link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}
footer a.footer-link:hover {
  color: var(--text);
}

/* ─── SCROLL ANIMATION ──────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── MOCKUP BADGE ──────────────────────────────────────── */
.mockup-badge {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background: rgba(123,130,232,0.9);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  z-index: 9999;
  backdrop-filter: blur(8px);
}

/* ==========================================================================
   Creating a new color template
   --------------------------------------------------------------------------
   Every color in this file routes through the 7 variables above. To make a
   new theme, override them under a [data-theme="name"] selector
   below, or by editing :root directly here):

     --coral      accent 1 — used in the gradient
     --magenta    accent 2 — used in the gradient, CTA shadow tint
     --cyan       accent 3 — used in the gradient
     --bg         main page/card background (keep light for readable text)
     --bg2        secondary section background (alternating sections)
     --text       primary text color
     --muted      secondary/body text color
     --gradient   built from coral/magenta/cyan — regenerate if you change them

   Note: a few rgba(26,26,46,...) values (nav link color, hero-sub color,
   footer text) are hard-coded rather than routed through variables,
   matching the original mockup. If a new theme's --text differs a lot
   from the defaults, you may want to adjust those rgba() values too
   for full consistency.
   ========================================================================== */

/* ==========================================================================
   syntelis — color templates
   --------------------------------------------------------------------------
   Each theme below only overrides the 7 color variables defined in
   :root above — nothing else needs to change. To activate a theme,
   add the matching data-theme attribute to
   the <html> tag, e.g.:

     <html lang="en" data-theme="ocean">

   Leave the attribute off (or use data-theme="sunset") to get the
   original mockup palette.
   ========================================================================== */

/* ─── SUNSET (original mockup default) ─────────────────────
   Warm coral → magenta → cyan. Energetic, tech-forward.       */
[data-theme="sunset"] {
  --coral: #F5586A;
  --magenta: #7B82E8;
  --cyan: #29C4E8;
  --bg: #FFFFFF;
  --bg2: #F4F5F7;
  --text: #1A1A2E;
  --muted: #6B7280;
  --gradient: linear-gradient(135deg, #F5586A, #7B82E8, #29C4E8);
}

/* ─── OCEAN ──────────────────────────────────────────────────
   Cool blues and teal. Calm, trustworthy, engineering-y.       */
[data-theme="ocean"] {
  --coral: #2563EB;
  --magenta: #0EA5E9;
  --cyan: #14B8A6;
  --bg: #FFFFFF;
  --bg2: #F1F5F9;
  --text: #0F172A;
  --muted: #64748B;
  --gradient: linear-gradient(135deg, #2563EB, #0EA5E9, #14B8A6);
}

/* ─── FOREST ─────────────────────────────────────────────────
   Deep green into lime/gold. Sustainable, grounded, organic.   */
[data-theme="forest"] {
  --coral: #166534;
  --magenta: #15803D;
  --cyan: #A3B565;
  --bg: #FFFFFF;
  --bg2: #F3F5EE;
  --text: #1B2B1E;
  --muted: #5B6B5D;
  --gradient: linear-gradient(135deg, #166534, #15803D, #A3B565);
}

/* ─── MIDNIGHT (dark mode) ───────────────────────────────────
   Indigo/violet on near-black. Premium, high-contrast.         */
[data-theme="midnight"] {
  --coral: #7C3AED;
  --magenta: #C026D3;
  --cyan: #38BDF8;
  --bg: #0B0B14;
  --bg2: #14141F;
  --text: #F4F4F8;
  --muted: #9497A6;
  --gradient: linear-gradient(135deg, #7C3AED, #C026D3, #38BDF8);
}

/* ─── MONOCHROME ─────────────────────────────────────────────
   Near-grayscale with a single graphite gradient. Minimal,
   editorial, lets typography and photography carry the page.   */
[data-theme="monochrome"] {
  --coral: #27272A;
  --magenta: #52525B;
  --cyan: #A1A1AA;
  --bg: #FFFFFF;
  --bg2: #F4F4F5;
  --text: #18181B;
  --muted: #71717A;
  --gradient: linear-gradient(135deg, #27272A, #52525B, #A1A1AA);
}

/* ─── SAKURA ─────────────────────────────────────────────────
   Soft rose → pink → gold. Warm, elegant, light.                */
[data-theme="sakura"] {
  --coral: #F43F5E;
  --magenta: #EC4899;
  --cyan: #FBBF24;
  --bg: #FFFFFF;
  --bg2: #FDF2F8;
  --text: #3F1D2E;
  --muted: #8B6B78;
  --gradient: linear-gradient(135deg, #F43F5E, #EC4899, #FBBF24);
}

/* ─── AMBER ──────────────────────────────────────────────────
   Amber → orange → deep brown. Warm, crafted, artisanal.        */
[data-theme="amber"] {
  --coral: #D97706;
  --magenta: #EA580C;
  --cyan: #78350F;
  --bg: #FFFFFF;
  --bg2: #FFFBEB;
  --text: #451A03;
  --muted: #92764F;
  --gradient: linear-gradient(135deg, #D97706, #EA580C, #78350F);
}

/* ─── ARCTIC ─────────────────────────────────────────────────
   Deep teal → sky blue → pale ice. Crisp, minimal, cool.        */
[data-theme="arctic"] {
  --coral: #0891B2;
  --magenta: #0EA5E9;
  --cyan: #67E8F9;
  --bg: #FFFFFF;
  --bg2: #F0F9FF;
  --text: #0C4A6E;
  --muted: #64748B;
  --gradient: linear-gradient(135deg, #0891B2, #0EA5E9, #67E8F9);
}

/* ─── LAVENDER ───────────────────────────────────────────────
   Violet → purple → lilac. Soft, creative, approachable.        */
[data-theme="lavender"] {
  --coral: #7C3AED;
  --magenta: #A855F7;
  --cyan: #D8B4FE;
  --bg: #FFFFFF;
  --bg2: #FAF5FF;
  --text: #3B0764;
  --muted: #7C6F93;
  --gradient: linear-gradient(135deg, #7C3AED, #A855F7, #D8B4FE);
}

/* ─── EMBER (dark mode) ────────────────────────────────────────
   Red → orange → amber on near-black. Bold, intense, alive.     */
[data-theme="ember"] {
  --coral: #DC2626;
  --magenta: #F97316;
  --cyan: #FBBF24;
  --bg: #140A05;
  --bg2: #1F120A;
  --text: #FFF4E6;
  --muted: #C9A88B;
  --gradient: linear-gradient(135deg, #DC2626, #F97316, #FBBF24);
}

/* ─── EMERALD ────────────────────────────────────────────────
   Emerald → green → teal. Fresh, precise, jewel-toned.          */
[data-theme="emerald"] {
  --coral: #059669;
  --magenta: #10B981;
  --cyan: #2DD4BF;
  --bg: #FFFFFF;
  --bg2: #ECFDF5;
  --text: #052E16;
  --muted: #4B6358;
  --gradient: linear-gradient(135deg, #059669, #10B981, #2DD4BF);
}

/* ─── SLATE ──────────────────────────────────────────────────
   Slate gray with a blue accent pop. Corporate, understated.    */
[data-theme="slate"] {
  --coral: #334155;
  --magenta: #475569;
  --cyan: #0EA5E9;
  --bg: #FFFFFF;
  --bg2: #F8FAFC;
  --text: #0F172A;
  --muted: #64748B;
  --gradient: linear-gradient(135deg, #334155, #475569, #0EA5E9);
}

/* ─── COBALT (dark mode) ───────────────────────────────────────
   Blue → indigo → cyan on near-black. Technical, nocturnal.     */
[data-theme="cobalt"] {
  --coral: #1D4ED8;
  --magenta: #4F46E5;
  --cyan: #06B6D4;
  --bg: #060B18;
  --bg2: #0B1424;
  --text: #E7EEFB;
  --muted: #8593AD;
  --gradient: linear-gradient(135deg, #1D4ED8, #4F46E5, #06B6D4);
}

/* ─── TERRACOTTA ─────────────────────────────────────────────
   Rust → clay → olive. Earthy, grounded, handcrafted.           */
[data-theme="terracotta"] {
  --coral: #C2410C;
  --magenta: #B45309;
  --cyan: #65A30D;
  --bg: #FFFFFF;
  --bg2: #FDF6EE;
  --text: #431407;
  --muted: #8A6A55;
  --gradient: linear-gradient(135deg, #C2410C, #B45309, #65A30D);
}

/* ─── NEON (dark mode) ─────────────────────────────────────────
   Hot pink → purple → electric cyan on near-black. Cyberpunk.   */
[data-theme="neon"] {
  --coral: #FF2D95;
  --magenta: #B026FF;
  --cyan: #00F0FF;
  --bg: #0A0014;
  --bg2: #140022;
  --text: #F5E8FF;
  --muted: #A78BC9;
  --gradient: linear-gradient(135deg, #FF2D95, #B026FF, #00F0FF);
}

/* ==========================================================================
   Adding your own theme
   --------------------------------------------------------------------------
   Copy one of the blocks above, rename the selector, and swap in your
   colors. Only --coral/--magenta/--cyan need to visually work as a
   3-stop gradient; --bg/--bg2 should stay close in lightness to each
   other (bg2 is the "alternate section" background); --text/--muted need
   enough contrast against both --bg and --bg2 to stay readable.
   ========================================================================== */

/* iPhone / small screens — must be last so it wins over earlier #hero rules. */
@media (max-width: 768px) {
  html { font-size: 125%; }

  header {
    padding-top: calc(0.75rem + env(safe-area-inset-top, 0px));
    padding-bottom: 0.75rem;
  }

  #hero {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    height: auto;
    min-height: 100svh;
    padding: calc(env(safe-area-inset-top, 0px) + 6.25rem) 0 3rem !important;
    box-sizing: border-box;
  }

  .hero-content {
    margin-top: 0 !important;
    padding: 0.25rem 1.25rem 2.5rem;
    width: 100%;
  }

  .hero-tagline {
    font-size: clamp(1.7rem, 7vw, 2.15rem) !important;
    line-height: 1.22 !important;
    margin-bottom: 0.85rem;
  }

  .hero-sub {
    font-size: 1.1rem !important;
    line-height: 1.5;
    margin-bottom: 1.35rem;
  }
}
