:root{
  --bg: #20293A;
  --bg-deep: #1a2231;
  --text: rgba(255, 255, 255, 0.96);
  --muted: rgba(255, 255, 255, 0.72);
  --line: rgba(255, 255, 255, 0.12);
  --card: #263244;
  --primary: #1e5bff;
  --primary-dark: #1141c9;
  --grad-a: #6D7ADC;
  --grad-b: #7169C2;
  --grad-c: #7255A6;
  --header-grad-start: #7A4CC3;
  --header-grad-end: #6A7FDB;
  --accent: #766FC5;
  --header-height: 80px;
  --header-offset: 84px;
  --radius: 16px;
  --radius-sm: 12px;
  --radius-lg: 20px;
  --shadow: 0 24px 60px rgba(13, 42, 92, 0.12);
}

*{
  box-sizing: border-box;
}

html{
  scroll-padding-top: calc(var(--header-height) + 16px);
}

body{
  margin: 0;
  font-family: "Space Grotesk", "Avenir Next", "Segoe UI", sans-serif;
  color: var(--text);
  background: #20293A;
  line-height: 1.6;
  overflow-x: hidden;
}

img{
  max-width: 100%;
  display: block;
}

a{
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible{
  outline: 3px solid rgba(118, 111, 197, 0.4);
  outline-offset: 3px;
  border-radius: 6px;
}

.bg-wash{
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(134, 116, 197, 0.28), transparent 55%),
    radial-gradient(circle at 80% 18%, rgba(103, 92, 155, 0.26), transparent 58%),
    radial-gradient(circle at 25% 85%, rgba(60, 76, 118, 0.35), transparent 60%),
    linear-gradient(180deg, #20293A, #1b2433 55%, #182031);
  z-index: -2;
}

.bg-orbit{
  position: fixed;
  top: -20vh;
  right: -15vw;
  width: 55vw;
  height: 55vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(134, 116, 197, 0.35), transparent 70%);
  filter: blur(10px);
  z-index: -1;
}

.container{
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header{
  position: sticky;
  top: 0;
  z-index: 10;
  color: #ffffff;
  background: #231d35;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

.header-inner{
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 16px 8px;
  position: relative;
}

.brand{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1rem;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
}

.brand-mark{
  width: auto;
  height: 90px;
  border-radius: 0;
  object-fit: contain;
  box-shadow: none;
  display: block;
}

.nav-links{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
}

.nav-items{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: min(100%, 720px);
  margin: 0 auto;
}

.header-actions{
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-items a{
  transition: color 0.2s ease;
  line-height: 1;
  white-space: nowrap;
  position: relative;
}

.nav-items a:hover{
  color: #34D399;
}

.nav-links .btn{
  white-space: nowrap;
  margin-left: 0;
}

.nav-items a::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 2px;
  background: #34D399;
  opacity: 0;
  transform: scaleX(0.6);
  transform-origin: center;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-items a:hover::after{
  opacity: 1;
  transform: scaleX(1);
}

.nav-toggle{
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 0;
  border: none;
  background: transparent;
  color: #ffffff;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.nav-toggle svg{
  width: 22px;
  height: 22px;
}

.nav-toggle:hover{
  opacity: 0.7;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.site-header .header-cta--mobile{
  display: none;
}

.btn:hover{
  transform: translateY(-1px);
}

.btn-primary{
  color: #ffffff;
  background: linear-gradient(180deg, #3FCA92 0%, #28B27F 100%);
  border: 1px solid #28B27F;
  box-shadow: 0 16px 32px rgba(16, 78, 55, 0.28);
}

.btn-primary:hover{
  background: linear-gradient(180deg, #36B883 0%, #22A06F 100%);
  border-color: #22A06F;
  box-shadow: 0 18px 38px rgba(16, 78, 55, 0.32);
}

.site-header .btn-primary{
  background: linear-gradient(180deg, #3FCA92 0%, #28B27F 100%);
  border: 1px solid #28B27F;
  box-shadow: 0 6px 14px rgba(12, 64, 45, 0.24);
  font-size: 0.9rem;
  padding: 0 18px;
  line-height: 1;
  height: 40px;
  white-space: nowrap;
  border-radius: 14px;
  transform: translateY(0);
}

.site-header .btn-primary:hover{
  background: linear-gradient(180deg, #36B883 0%, #22A06F 100%);
  border-color: #22A06F;
  box-shadow: 0 10px 18px rgba(12, 64, 45, 0.3);
  transform: translateY(-1px);
}

.btn-ghost{
  background: #8674C5;
  border-color: #8674C5;
  color: #ffffff;
}

.btn-ghost:hover{
  background: #7558B2;
  border-color: #7558B2;
}

.btn-small{
  padding: 10px 16px;
  font-size: 0.9rem;
}

.hero{
  padding-top: 20px;
  margin-top: -100px;
  padding-bottom: clamp(24px, 4vw, 48px);
  background:
    radial-gradient(ellipse at top right, rgba(52, 211, 153, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(118, 111, 197, 0.1) 0%, transparent 50%),
    transparent;
  overflow: hidden;
}

.hero .container{
  overflow: visible;
  max-width: 100%;
}

.hero-grid{
  display: grid;
  grid-template-columns: minmax(400px, 0.85fr) minmax(0, 1.15fr);
  gap: 40px;
  align-items: center;
  overflow: visible;
  padding-top: 0;
}

.hero-left{
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero h1{
  margin-top: 0;
  margin-bottom: 16px;
}

.hero p{
  margin-top: 0;
  margin-bottom: 20px;
}

.eyebrow{
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 700;
}

h1,
h2,
h3{
  font-family: "Fraunces", "Iowan Old Style", "Times New Roman", serif;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}

h1{
  font-size: clamp(3.12rem, 4.94vw, 4.55rem);
  line-height: 1.15;
  max-width: 22ch;
}

h2{
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 1.2;
}

.tight-gap{
  margin-bottom: 0;
}

.tight-gap + *{
  margin-top: 2rem;
}

h3{
  font-size: 1.2rem;
}

.hero-sub{
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 65ch;
}

.hero-cta{
  display: flex;
  flex-wrap: wrap;
  gap: 15.6px;
  margin-top: 31.2px;
}

.hero-cta .btn{
  padding: 15.6px 28.6px;
  font-size: 1.235rem;
}

.coming-soon-badge{
  display: inline-block;
  padding: 6.5px 16.25px;
  background: rgba(30, 91, 255, 0.25);
  border: 1px solid rgba(30, 91, 255, 0.5);
  border-radius: 19.5px;
  color: #6ba3ff;
  font-size: 0.7109375rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 19.5px;
}

.hero-sub-heading{
  font-family: "Space Grotesk", "Avenir Next", "Segoe UI", sans-serif;
  font-size: 1.495rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--muted);
  max-width: 65ch;
  margin: 26px 0 0 0;
}

.hero-cta-widget{
  margin-top: 32px;
}

.hero-input-group{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: stretch;
}

.hero-phone-input{
  flex: 1;
  min-width: 240px;
  padding: 14px 18px;
  font-size: 1rem;
  font-family: inherit;
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  outline: none;
  transition: all 0.2s ease;
}

.hero-phone-input::placeholder{
  color: rgba(255, 255, 255, 0.5);
}

.hero-phone-input:focus{
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(30, 91, 255, 0.15);
}

.hero-cta-btn{
  flex-shrink: 0;
  padding: 14px 32px;
  white-space: nowrap;
}

.hero-micro-copy{
  margin: 12px 0 0 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
}

.hero-card{
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  border: 0;
  margin-top: -20px;
}

.hero-card__top{
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-card__body{
  margin-top: 20px;
  display: grid;
  gap: 14px;
}

.hero-metric{
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.95rem;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  padding-bottom: 8px;
}

.hero-metric strong{
  color: var(--text);
  font-size: 1.1rem;
}

.hero-lines{
  display: grid;
  gap: 10px;
}

.hero-line{
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(30, 91, 255, 0.25), rgba(30, 91, 255, 0.05));
}

.hero-line.short{
  width: 65%;
}

.hero-shots{
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: clamp(18.2px, 2.6vw, 31.2px);
  align-items: start;
  width: 100%;
  max-width: none;
  justify-self: end;
  margin: 0;
  padding: 0;
  aspect-ratio: auto;
  overflow: visible;
}

.hero-shots--centered{
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  justify-items: center;
  gap: 15.6px;
}

.hero-shot{
  position: relative;
  margin: 0;
  width: 100%;
  overflow: visible;
}

.hero-shot--secondary{
  grid-column: 1;
  grid-row: 1;
}

.hero-shot--tertiary{
  grid-column: 2;
  grid-row: 1;
}

.hero-shot--primary{
  grid-column: 1 / -1;
  grid-row: 2;
}

.hero-shots--centered .hero-shot--primary{
  margin-top: -30px;
}

.hero-shot--mobile-dual{
  grid-column: 1;
  grid-row: 1;
  display: flex;
  justify-content: center;
  max-width: 100%;
  transform: translateY(-26px);
  position: relative;
}

.hero-shot--mobile-dual::after{
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 55%;
  height: 3px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(52, 211, 153, 0.2) 15%,
    rgba(52, 211, 153, 1) 50%,
    rgba(52, 211, 153, 0.2) 85%,
    transparent 100%);
  box-shadow:
    0 0 20px rgba(52, 211, 153, 0.8),
    0 0 40px rgba(52, 211, 153, 0.6),
    0 0 60px rgba(52, 211, 153, 0.4);
  pointer-events: none;
  border-radius: 50%;
  filter: blur(0.5px);
  animation: pulse-connection 2.5s ease-in-out infinite;
}

@keyframes pulse-connection{
  0%, 100%{
    opacity: 0.6;
    box-shadow:
      0 0 15px rgba(52, 211, 153, 0.6),
      0 0 30px rgba(52, 211, 153, 0.4),
      0 0 45px rgba(52, 211, 153, 0.2);
  }
  50%{
    opacity: 1;
    box-shadow:
      0 0 25px rgba(52, 211, 153, 1),
      0 0 50px rgba(52, 211, 153, 0.8),
      0 0 75px rgba(52, 211, 153, 0.6);
  }
}

.hero-shot--below-cta{
  margin: 0;
  max-width: 720px;
  width: 100%;
}

.hero-shot--below-cta .hero-shot-frame{
  border-radius: 16px;
}

.hero-shot--below-cta img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

.hero-shot-frame{
  border-radius: var(--radius-lg);
}

.hero-shot-frame--card{
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(12, 18, 37, 0.45);
  box-shadow: 0 22px 60px rgba(0,0,0,0.45);
}

.hero-shot-frame--ghost{
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.hero-shot img{
  width: 100%;
  height: auto;
  display: block;
  transform: scale(1.15);
  transform-origin: center;
}

.hero-shot--tertiary img{
  filter: drop-shadow(0 22px 55px rgba(0,0,0,0.45));
}

.hero-shot--mobile-dual img{
  width: 100%;
  max-width: 100%;
  height: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.hero-shot figcaption{
  margin-top: 10px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.70);
}

.hero-shot--secondary figcaption,
.hero-shot--tertiary figcaption,
.hero-shot--mobile-dual figcaption{
  display: none;
}

@keyframes heroFloatUp{
  0%{ transform: translate3d(0,0,0); }
  50%{ transform: translate3d(0,-8px,0); }
  100%{ transform: translate3d(0,0,0); }
}

@keyframes heroFloatDown{
  0%{ transform: translate3d(0,0,0); }
  50%{ transform: translate3d(0,8px,0); }
  100%{ transform: translate3d(0,0,0); }
}

.hero-shot--secondary{
  animation: none;
}

.hero-shot--tertiary{
  animation: none;
}

@media (prefers-reduced-motion: reduce){
  .hero-shot--secondary,
  .hero-shot--tertiary{
    animation: none !important;
  }
}

.section{
  padding: 48px 0;
  background: transparent;
  scroll-margin-top: calc(var(--header-height) + 12px);
  position: relative;
}

.section + .section{
  position: relative;
}

.section + .section::before{
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 1200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1) 50%, transparent);
}

.section-band + .section::before,
.section + .section-band::before{
  display: none;
}

#how.section{
  padding-top: 36px;
}

.section-band{
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.12), rgba(0,0,0,0.12)),
    linear-gradient(90deg, var(--grad-a), var(--grad-b) 45%, var(--grad-c));
}

.section-band h2,
.section-band h3,
.section-band .section-intro,
.section-band .section-head p{
  color: #ffffff;
}

.section-head{
  margin-bottom: 36px;
}

.section-head-centered{
  text-align: center;
  margin-bottom: 48px;
}

.section-content-centered{
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-intro{
  max-width: 70ch;
  color: var(--muted);
}

/* Why It Works */
.why-works .section-head{
  margin-bottom: 32px;
}

.why-rows{
  display: grid;
  gap: 48px;
}

.why-row{
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 40px;
  align-items: center;
  grid-template-areas: "media text";
}

.why-row.reverse{
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  grid-template-areas: "text media";
}

.why-media{
  grid-area: media;
}

.why-text{
  grid-area: text;
}

.why-text h3{
  margin-top: 0;
}

.why-image{
  width: 60%;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-image:hover{
  transform: scale(1.02);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.4);
}

.why-media{
  display: flex;
  justify-content: center;
}

/* Product screenshots */
.shot{
  width: 100%;
  max-width: 1100px;
  margin: 2.25rem auto 0;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 25px 60px rgba(0,0,0,0.45);
}

.shot img{
  width: 100%;
  height: auto;
  display: block;
}

.shot figcaption{
  margin-top: 10px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.78);
  text-align: center;
}

.shot-ops{
  max-width: 980px;
}

.shot--tight{
  max-width: 520px;
  margin: 1.25rem 0 0;
}

.hero-shot{
  max-width: 1040px;
  margin-top: 0;
}


.steps{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px;
}

.howitworks-layout{
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  gap: clamp(20px, 4vw, 56px);
  align-items: start;
}

.howitworks-steps{
  min-width: 0;
}

.howitworks-visual{
  min-width: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.howitworks-visual img{
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.28);
  border: 1px solid rgba(255,255,255,0.10);
}

.step-card{
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.10), rgba(0,0,0,0.12)),
    #231d35;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 22px;
  box-shadow:
    0 10px 24px rgba(0,0,0,0.25),
    0 1px 0 rgba(255,255,255,0.06) inset;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.step-card::after{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    radial-gradient(1px 1px at 12% 18%, rgba(255,255,255,0.45), transparent 45%),
    radial-gradient(1px 1px at 38% 72%, rgba(255,255,255,0.35), transparent 45%),
    radial-gradient(1px 1px at 68% 28%, rgba(255,255,255,0.35), transparent 45%),
    radial-gradient(1px 1px at 86% 64%, rgba(255,255,255,0.30), transparent 45%);
  mix-blend-mode: overlay;
}

.step-card::before{
  content: "";
  position: absolute;
  inset: -40% -30%;
  pointer-events: none;
  background: radial-gradient(closest-side, rgba(255,255,255,0.14), transparent 60%);
  transform: translate3d(-10%, -10%, 0);
  opacity: 0.55;
}

.step-number{
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(52, 211, 153, 0.3), rgba(52, 211, 153, 0.15));
  color: #4ADEA0;
  font-weight: 700;
  position: relative;
  z-index: 1;
  border: 1px solid rgba(52, 211, 153, 0.2);
}

.step-card h3{
  color: rgba(255, 255, 255, 0.95);
  position: relative;
  z-index: 1;
}

.step-card p{
  color: rgba(255, 255, 255, 0.82);
  position: relative;
  z-index: 1;
  margin: 0;
}

#how .step-card{
  padding: 19px;
}

@media (hover: hover){
  .step-card:hover{
    transform: translateY(-2px);
    border-color: rgba(255,255,255,0.22);
    box-shadow:
      0 14px 32px rgba(0,0,0,0.30),
      0 1px 0 rgba(255,255,255,0.07) inset;
  }
}

.step-card:focus-within{
  outline: 2px solid rgba(134,116,197,0.55);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce){
  .step-card{
    transition: none;
  }
}

@media (max-width: 900px){
  .howitworks-layout{
    grid-template-columns: 1fr;
  }

  .howitworks-visual{
    justify-content: flex-start;
    margin-top: 14px;
  }

  .howitworks-visual img{
    max-width: 560px;
  }
}

.copy-block{
  display: grid;
  gap: 18px;
  max-width: 74ch;
  color: rgba(255, 255, 255, 0.85);
}

#operations.section{
  position: relative;
  overflow: hidden;
  padding: 54px 0;
}

#operations.section::before{
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 10%, rgba(255,255,255,0.06), transparent 55%);
  opacity: 0.6;
  pointer-events: none;
}

#operations.section::after{
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 18% 22%, rgba(255,255,255,0.18), transparent 45%),
    radial-gradient(1px 1px at 62% 30%, rgba(255,255,255,0.12), transparent 45%),
    radial-gradient(1px 1px at 80% 70%, rgba(255,255,255,0.12), transparent 45%);
  opacity: 0.18;
  mix-blend-mode: overlay;
  pointer-events: none;
}

#operations .container{
  position: relative;
  z-index: 1;
}

.ops-grid{
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 36px;
  align-items: start;
}

.ops-copy{
  max-width: 62ch;
}

.ops-copy h2{
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.ops-intro{
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin: 8px 0 16px;
}

.ops-badge-row{
  display: flex;
  justify-content: flex-start;
  margin-top: 8px;
}

.ops-badge-card{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(160deg, rgba(255,255,255,0.08), rgba(0,0,0,0.18)),
    rgba(17, 22, 36, 0.6);
  box-shadow:
    0 16px 30px rgba(0,0,0,0.28),
    0 1px 0 rgba(255,255,255,0.06) inset;
}

.ops-badge-card img{
  width: clamp(120px, 18vw, 180px);
  max-width: 200px;
  height: auto;
  opacity: 0.98;
}

.ops-features{
  display: grid;
  gap: 20px;
}

.ops-feature{
  position: relative;
  padding-left: 18px;
}

.ops-feature::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 8px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.7);
}

.ops-feature-title{
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 6px;
}

.ops-feature p{
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
}

.ops-media{
  align-self: center;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.ops-media .shot{
  margin-top: 0;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    0 20px 44px rgba(0,0,0,0.38),
    0 8px 18px rgba(0,0,0,0.2);
  max-width: 560px;
  overflow: hidden;
}

.ops-media .shot img{
  border-radius: 16px;
  display: block;
  width: 100%;
  height: auto;
}

#operations .shot figcaption{
  margin-top: 8px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

#operations .tight-gap + *{
  margin-top: 0.9rem;
}

@media (max-width: 960px){
  .ops-grid{
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .ops-media{
    order: 2;
  }

  .ops-badge-row{
    justify-content: center;
    margin: 6px 0 2px;
  }

  .ops-badge-card img{
    width: min(180px, 62vw);
    max-width: 180px;
  }
}

#comparison.section{
  position: relative;
  background:
    radial-gradient(ellipse at center top, rgba(52, 211, 153, 0.06) 0%, transparent 60%),
    transparent;
}

.comparison-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.comparison-card{
  background: var(--card);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid rgba(15, 26, 43, 0.08);
  box-shadow: 0 16px 36px rgba(15, 26, 43, 0.08);
  color: var(--text);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.comparison-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(15, 26, 43, 0.12);
}

.comparison-card-image{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
  margin-bottom: 8px;
}

.comparison-card-image img{
  width: auto;
  height: 390px;
  max-width: 100%;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 12px 28px rgba(0,0,0,0.3),
    0 4px 12px rgba(0,0,0,0.2);
}

.comparison-card h3{
  margin: 0 0 4px 0;
  font-size: 1.5rem;
}

.comparison-card.highlight{
  border-color: rgba(52, 211, 153, 0.3);
  box-shadow: 0 18px 40px rgba(52, 211, 153, 0.15);
  background: linear-gradient(180deg, rgba(52, 211, 153, 0.02) 0%, var(--card) 40%);
}

.comparison-card.highlight .closing{
  color: #34D399;
}

.comparison-card ul{
  padding-left: 20px;
  margin: 12px 0 16px;
  color: var(--muted);
}

.comparison-card li{
  margin-bottom: 10px;
}

.comparison-card li strong{
  color: var(--text);
  font-weight: 600;
}

.comparison-card .lead-in{
  color: var(--muted);
  font-weight: 600;
  margin: 0 0 8px 0;
}

.comparison-card .closing{
  font-weight: 600;
  margin-top: 8px;
}

.faq-list{
  display: grid;
  gap: 16px;
}

.faq-list details{
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.10), rgba(0,0,0,0.12)),
    #231d35;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.14);
  padding: 16px 20px;
  box-shadow:
    0 10px 24px rgba(0,0,0,0.25),
    0 1px 0 rgba(255,255,255,0.06) inset;
  color: rgba(255, 255, 255, 0.92);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.faq-list details::after{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    radial-gradient(1px 1px at 12% 18%, rgba(255,255,255,0.45), transparent 45%),
    radial-gradient(1px 1px at 38% 72%, rgba(255,255,255,0.35), transparent 45%),
    radial-gradient(1px 1px at 68% 28%, rgba(255,255,255,0.35), transparent 45%),
    radial-gradient(1px 1px at 86% 64%, rgba(255,255,255,0.30), transparent 45%);
  mix-blend-mode: overlay;
}

.faq-list details::before{
  content: "";
  position: absolute;
  inset: -40% -30%;
  pointer-events: none;
  background: radial-gradient(closest-side, rgba(255,255,255,0.14), transparent 60%);
  transform: translate3d(-10%, -10%, 0);
  opacity: 0.55;
}

.faq-list summary{
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  color: rgba(255, 255, 255, 0.95);
  position: relative;
  z-index: 1;
}

.faq-list summary::-webkit-details-marker{
  display: none;
}

.faq-list p{
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  z-index: 1;
}

.faq-list ul{
  margin: 10px 0 0 20px;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  z-index: 1;
}

@media (hover: hover){
  .faq-list details:hover{
    transform: translateY(-2px);
    border-color: rgba(255,255,255,0.22);
    box-shadow:
      0 14px 32px rgba(0,0,0,0.30),
      0 1px 0 rgba(255,255,255,0.07) inset;
  }
}

.faq-list details:focus-within{
  outline: 2px solid rgba(134,116,197,0.55);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce){
  .faq-list details{
    transition: none;
  }
}

.founder-card{
  background: rgba(14, 19, 31, 0.7);
  border-radius: var(--radius);
  padding: 36px 52px 60px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 50px rgba(4, 8, 16, 0.45);
  max-width: 980px;
  color: #ffffff;
  margin: 0 auto;
}

.founder-content{
  display: flex;
  align-items: flex-start;
  gap: 28px;
}

.founder-photo{
  flex: 0 0 220px;
  width: 220px;
  height: 240px;
  border-radius: 18px;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.35);
}

.founder-text{
  flex: 1;
  max-width: 680px;
  min-width: 0;
}

.founder-text p{
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 14px;
}

.founder-text p:last-of-type{
  margin-bottom: 0;
}

.founder-signature{
  margin-top: 32px;
  padding-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-left: 0;
  transform: translateX(-28px);
}

.founder-signature-text{
  display: grid;
  gap: 2px;
  min-width: 0;
}

.founder-name,
.founder-title{
  display: block;
}

.founder-title{
  white-space: normal;
}

.founder-signature img{
  width: 150px;
  height: auto;
  display: block;
  filter: brightness(0) invert(1) drop-shadow(0 6px 12px rgba(0, 0, 0, 0.35));
}

@media (min-width: 1200px){
  .founder-title{
    white-space: nowrap;
  }
}

.cta-band{
  padding: 70px 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.12), rgba(0,0,0,0.12)),
    linear-gradient(90deg, var(--grad-a), var(--grad-b) 45%, var(--grad-c));
  background-size: 200% 200%;
  color: #ffffff;
  scroll-margin-top: calc(var(--header-height) + 12px);
}

.cta-grid{
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.6fr);
  gap: 24px;
  align-items: center;
}

.cta-band h2{
  color: #ffffff;
}

.cta-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
}

.cta-band .btn-ghost{
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
}

.legal-page{
  min-height: 100vh;
  padding-top: 0;
}

.legal-hero{
  background: linear-gradient(135deg, #1a2742 0%, #263552 50%, #2d4165 100%);
  color: #ffffff;
  text-align: center;
  padding: calc(var(--header-height) + clamp(40px, 6vw, 60px)) 0 clamp(50px, 7vw, 80px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.legal-hero-inner{
  max-width: 900px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 48px) 0 clamp(120px, 15vw, 180px);
}

.legal-hero-title{
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: clamp(1.6rem, 3.2vw, 2.5rem);
  line-height: 1.3;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.legal-hero-title span{
  display: block;
  margin-bottom: 8px;
}

.legal-hero-title span:last-child{
  margin-bottom: 0;
}

.legal-content{
  padding: clamp(40px, 6vw, 72px) 0 clamp(56px, 8vw, 96px);
  background: linear-gradient(180deg, #1a2742 0%, #20293a 100%);
}

.legal-container{
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: clamp(32px, 5vw, 56px) clamp(24px, 4vw, 48px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.legal-entity,
.legal-brand,
.legal-doc-title{
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 8px;
  color: #34D399;
  font-size: 0.95rem;
}

.legal-doc-title{
  font-size: 1.05rem;
  margin-bottom: 16px;
}

.legal-updated{
  margin: 0 0 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
}

.legal-content p,
.legal-content li{
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-content h2{
  margin-top: 48px;
  margin-bottom: 20px;
  padding-top: 32px;
  border-top: 2px solid rgba(52, 211, 153, 0.3);
  font-size: 1.4rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 700;
}

.legal-content h2:first-of-type{
  margin-top: 32px;
}

.legal-content h3{
  margin-top: 32px;
  margin-bottom: 12px;
  font-size: 1.15rem;
  color: #34D399;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.legal-content ul{
  margin: 16px 0 24px 28px;
  padding: 0;
}

.legal-content li{
  margin-bottom: 12px;
  padding-left: 8px;
}

.legal-content li strong{
  color: #34D399;
  font-weight: 600;
}

@media (max-width: 600px){
  .legal-content ul{
    margin-left: 18px;
  }
}

.reserve-modal{
  position: fixed;
  inset: 0;
  background: rgba(10, 18, 38, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 40;
}

.reserve-modal.open{
  display: flex;
}

.reserve-modal__inner{
  background: #1c2536;
  color: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius);
  padding: 28px;
  width: min(560px, 92vw);
  max-height: 90vh;
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 60px rgba(4, 8, 16, 0.45);
  position: relative;
}

.reserve-title{
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.reserve-body{
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 18px;
}

.reserve-close{
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 1.2rem;
  cursor: pointer;
}

.reserve-form{
  display: grid;
  gap: 16px;
}

.reserve-fields{
  display: grid;
  gap: 12px;
}

.reserve-field{
  display: grid;
  gap: 6px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.85);
}

.reserve-field input{
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(10, 14, 24, 0.6);
  color: #ffffff;
  font-size: 0.95rem;
}

.reserve-field input::placeholder{
  color: rgba(255, 255, 255, 0.45);
}

.reserve-field input:focus{
  outline: 2px solid rgba(134, 116, 197, 0.6);
  outline-offset: 2px;
}

.reserve-field-group{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.field-error{
  min-height: 14px;
  color: #fca5a5;
  font-size: 0.8rem;
}

.field-error:not(:empty){
  margin-top: -2px;
}

.reserve-field.has-error input{
  border-color: rgba(252, 165, 165, 0.85);
}

.form-error{
  min-height: 18px;
  color: #fca5a5;
  font-size: 0.9rem;
}

.reserve-actions{
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.reserve-submit[disabled]{
  opacity: 0.7;
  cursor: not-allowed;
}

.reserve-success{
  display: grid;
  gap: 12px;
  color: rgba(255, 255, 255, 0.9);
}

.reserve-success a{
  color: #34D399;
}

.reserve-success-dev{
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

body.modal-open{
  overflow: hidden;
}

[hidden]{
  display: none !important;
}

@media (max-width: 560px){
  .reserve-modal__inner{
    padding: 22px;
  }

  .reserve-field-group{
    grid-template-columns: 1fr;
  }

  .reserve-actions{
    flex-direction: column-reverse;
    align-items: stretch;
  }
}

.footer{
  padding: 32px 0 44px;
  background: #0c1425;
  color: rgba(255, 255, 255, 0.7);
}

.footer-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-links{
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-links a{
  color: #ffffff;
}

.footer-separator{
  color: rgba(255, 255, 255, 0.4);
  font-weight: 300;
}

@media (max-width: 960px){
  .hero-shots{
    width: 100%;
    max-width: 676px;
    justify-self: center;
    margin: 0 auto;
    padding: clamp(14px, 3vw, 22px);
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    aspect-ratio: 5 / 4;
  }

  .hero-shot--primary{
    grid-column: 1 / span 2;
    grid-row: 1;
  }

  .hero-shot--secondary{
    grid-column: 1;
    grid-row: 2;
  }

  .hero-shot--tertiary{
    grid-column: 2;
    grid-row: 2;
  }

  .hero-shots--centered{
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }

  .hero-shot--mobile-dual{
    grid-column: 1;
    grid-row: 1;
  }

  .hero-shots--centered .hero-shot--primary{
    grid-column: 1;
    grid-row: 2;
  }

  .hero-grid{
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-left{
    gap: 24px;
  }

  .hero-shot--below-cta{
    max-width: 100%;
  }

  .cta-grid{
    grid-template-columns: 1fr;
  }

  .header-actions{
    margin-left: auto;
  }

  .nav-toggle{
    display: inline-flex;
  }

  .header-actions .header-cta{
    display: none;
  }

  .site-header .header-cta--mobile{
    display: inline-flex;
  }

  .nav-links{
    position: absolute;
    top: var(--header-height);
    left: 50%;
    transform: translateX(-50%);
    width: min(92vw, 720px);
    background: #1B2332;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 18px 18px 22px;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    display: none;
    box-shadow: 0 18px 44px rgba(6, 8, 16, 0.55);
    color: #ffffff;
  }

  .nav-items{
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .nav-items a{
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    padding: 10px 0;
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .nav-items a:hover{
    color: #ffffff;
  }

  .nav-links.open{
    display: flex;
  }

  .nav-links .btn{
    width: 100%;
    justify-content: center;
    margin-left: 0;
  }

  .why-rows{
    gap: 36px;
  }

  .why-row,
  .why-row.reverse{
    grid-template-columns: 1fr;
    grid-template-areas:
      "media"
      "text";
    gap: 24px;
  }
}

@media (max-width: 640px){
  .comparison-grid{
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .comparison-card-image img{
    height: 280px;
    max-width: 100%;
  }

  .hero-shots{
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    padding: 0;
    gap: 14px;
  }

  .hero-shot{
    position: relative;
    inset: auto;
    width: 100%;
    animation: none;
  }

  .hero-shot--primary,
  .hero-shot--secondary,
  .hero-shot--tertiary,
  .hero-shot--mobile-dual{
    grid-column: 1;
    grid-row: auto;
    transform: none;
  }

  .hero-shot--secondary figcaption,
  .hero-shot--tertiary figcaption{
    display: block;
  }

  .hero-shot--mobile-dual figcaption{
    display: none;
  }

  .hero-shot-frame--ghost{
    display: grid;
    place-items: center;
  }

  .hero-shot--tertiary img{
    width: min(420px, 92%);
  }

  .hero-shot--mobile-dual img{
    width: min(540px, 85%);
    max-width: 100%;
  }
}

@media (max-width: 560px){
  .hero-shot--mobile-dual{
    transform: none;
  }

  .hero-shot--mobile-dual img{
    width: min(380px, 85%);
  }

  .hero-grid{
    gap: 24px;
    padding-top: 0;
  }
}

@media (max-width: 600px){
  .tight-gap + *{
    margin-top: 1.5rem;
  }

  .section-head-centered{
    margin-bottom: 32px;
  }

  .hero{
    padding-top: 20px;
    margin-top: 0;
    padding-bottom: 64px;
  }

  .coming-soon-badge{
    font-size: 0.46875rem;
    padding: 3.75px 10px;
    margin-bottom: 10px;
  }

  h1{
    font-size: clamp(2rem, 8vw, 2.5rem) !important;
  }

  .hero-sub-heading{
    font-size: 1rem !important;
    margin: 16px 0 0 0 !important;
  }

  .hero-cta{
    margin-top: 20px !important;
  }

  .hero-cta .btn{
    padding: 12px 24px !important;
    font-size: 1rem !important;
    width: 100%;
  }

  .hero-input-group{
    flex-direction: column;
    gap: 10px;
  }

  .hero-phone-input{
    min-width: 100%;
    width: 100%;
  }

  .hero-cta-btn{
    width: 100%;
  }

  .brand-mark{
    height: 60px;
  }

  .legal-hero-inner{
    padding: 0 clamp(24px, 4vw, 48px) !important;
  }

  .legal-hero-title{
    font-size: 1.5rem !important;
    line-height: 1.3 !important;
  }

  .legal-hero-title span{
    display: block;
  }

  .founder-content{
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .founder-photo{
    width: 160px;
    height: 180px;
  }

  .founder-signature{
    flex-direction: column;
  }

  .founder-card{
    padding: 28px 22px 40px;
  }

  .founder-title{
    white-space: normal;
  }

  .founder-signature img{
    width: 140px;
  }

  .step-card{
    grid-template-columns: 1fr;
  }

  .footer-inner{
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links{
    flex-wrap: wrap;
    gap: 12px;
  }
}



@media (min-width: 1024px){
  .hero-card{
    transform: translateY(-20px);
  }
  .hero,
  #how.section,
  #comparison.section{
    min-height: calc(100svh - var(--header-height));
    padding: 64px 0;
    display: grid;
    place-items: center;
    box-sizing: border-box;
  }

  .hero .container,
  #how.section .container,
  #comparison.section .container{
    padding: 36px 0;
  }

  #operations.section{
    min-height: auto;
    padding: 56px 0;
    display: block;
  }

  #operations.section .container{
    padding: 0;
  }

  .cta-band{
    padding: 72px 0;
  }
}

@keyframes gradientShift{
  0%{ background-position: 0% 50%; }
  50%{ background-position: 100% 50%; }
  100%{ background-position: 0% 50%; }
}

.cta-band{
  animation: gradientShift 26s ease-in-out infinite;
}

@media (max-width: 480px){
  .container{
    width: min(1120px, 95vw);
  }

  h1{
    font-size: clamp(1.8rem, 9vw, 2.8rem);
    line-height: 1.15;
  }

  h2{
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }

  .hero-sub{
    font-size: 1rem;
  }

  .hero-shot--below-cta{
    max-width: 100%;
    margin-top: 8px;
  }

  .hero-left{
    gap: 20px;
  }

  .hero-cta{
    flex-direction: column;
    width: 100%;
  }

  .hero-cta .btn{
    width: 100%;
  }

  .comparison-card{
    padding: 20px;
  }

  .comparison-card h3{
    font-size: 1.3rem;
  }

  .comparison-card-image{
    padding: 16px 0;
  }

  .comparison-card-image img{
    height: 220px;
  }

  .hero-shot--mobile-dual img{
    width: min(440px, 92%);
  }

  .ops-media .shot{
    max-width: 100%;
  }

  .ops-copy{
    text-align: center;
  }

  .ops-features{
    gap: 16px;
  }

  .footer-inner{
    gap: 12px;
    font-size: 0.85rem;
  }

  .footer-links{
    gap: 10px;
    font-size: 0.85rem;
  }

  .btn{
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .step-card{
    padding: 16px;
  }

  .section{
    padding: 36px 0;
  }
}

@media (prefers-reduced-motion: reduce){
  .cta-band{
    animation: none;
  }
}
