:root {
  color-scheme: dark;
  --bg: #0b0f12;
  --bg-deep: #070c0d;
  --text: #f5f8f7;
  --text-muted: rgba(245, 248, 247, 0.7);
  --accent: #259565;
  --accent-2: #2aa5c6;
  --accent-3: #5bd0a6;
  --surface: rgba(255, 255, 255, 0.08);
  --surface-strong: rgba(255, 255, 255, 0.14);
  --stroke: rgba(255, 255, 255, 0.16);
  --shadow: 0 22px 55px rgba(0, 0, 0, 0.35);
  --radius: 22px;
  --radius-lg: 34px;
  --font-display: "Space Grotesk", sans-serif;
  --font-body: "Instrument Sans", sans-serif;
  --max-width: 1180px;
  --gutter: clamp(18px, 4vw, 48px);
  --section-pad: clamp(64px, 9vw, 120px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(1200px 800px at 20% -10%, rgba(38, 132, 226, 0.25), transparent 60%),
    radial-gradient(900px 700px at 80% 0%, rgba(37, 149, 101, 0.2), transparent 55%),
    linear-gradient(180deg, #0b0f12 0%, #0b1314 50%, #0b0f12 100%);
  overflow-x: clip;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(800px 600px at 20% 20%, rgba(37, 149, 101, 0.18), transparent 60%),
    radial-gradient(600px 500px at 80% 25%, rgba(47, 145, 201, 0.16), transparent 60%),
    radial-gradient(700px 500px at 50% 80%, rgba(91, 208, 166, 0.12), transparent 60%);
  opacity: 0.9;
  z-index: -2;
  animation: aurora-float 18s ease-in-out infinite;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.06) 1px, transparent 0);
  background-size: 32px 32px;
  opacity: 0.12;
  z-index: -1;
  pointer-events: none;
}

@keyframes aurora-float {
  0% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -2%, 0);
  }

  100% {
    transform: translate3d(0, 0, 0);
  }
}

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

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

:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 3px;
}

button,
input,
textarea {
  font-family: inherit;
  color: inherit;
}

p {
  margin: 0;
  line-height: 1.6;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  line-height: 1.05;
}

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

h3 {
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  line-height: 1.2;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 16px;
  background: #ffffff;
  color: #000000;
  padding: 8px 12px;
  border-radius: 8px;
  z-index: 1000;
}

.skip-link:focus {
  left: 16px;
}

.container {
  width: min(100% - 2 * var(--gutter), var(--max-width));
  margin: 0 auto;
}

.band {
  padding: var(--section-pad) 0;
  position: relative;
  color: var(--text);
}

.band.light {
  --text: #0d1416;
  --text-muted: rgba(13, 20, 22, 0.65);
  --surface: rgba(0, 0, 0, 0.04);
  --surface-strong: rgba(0, 0, 0, 0.06);
  --stroke: rgba(0, 0, 0, 0.1);
  --shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
  background:
    radial-gradient(800px 400px at 10% 0%, rgba(37, 149, 101, 0.08), transparent 60%),
    radial-gradient(600px 500px at 90% 20%, rgba(47, 145, 201, 0.08), transparent 60%),
    #f5f7f6;
  color: var(--text);
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: clamp(32px, 6vw, 60px);
  max-width: 760px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: clamp(0.94rem, 1.25vw, 1.08rem);
  font-weight: 700;
  color: var(--accent-3);
}

.lead {
  font-size: clamp(1.12rem, 2.1vw, 1.4rem);
  color: var(--text-muted);
  line-height: 1.65;
}

.muted {
  color: var(--text-muted);
}

.surface {
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(37, 149, 101, 0.18);
  color: #d7f4e8;
  font-size: 0.8rem;
  font-weight: 600;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: var(--surface);
  color: var(--text);
  font-weight: 600;
  font-size: 0.97rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  min-height: 48px;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
}

.btn.primary {
  background: linear-gradient(135deg, #2fa777, #2aa5c6);
  border-color: rgba(255, 255, 255, 0.2);
  color: #f8fffb;
}

.btn.ghost {
  background: transparent;
}

.btn.disabled,
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  background: rgba(6, 10, 12, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.logo-picture {
  display: inline-flex;
  align-items: center;
}

.logo img,
.logo-picture img {
  width: 140px;
  height: auto;
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.4));
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.nav-links a:hover {
  color: var(--text);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  color: var(--text);
  width: 44px;
  height: 44px;
  border-radius: 12px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  margin: 5px auto;
  border-radius: 999px;
  transition: transform 0.3s ease;
}

.hero {
  padding-top: clamp(40px, 8vw, 80px);
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(32px, 6vw, 64px);
  align-items: center;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 6px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.hero-stat {
  padding: 16px;
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid var(--stroke);
}

.hero-stat strong {
  display: block;
  font-size: 1.1rem;
  font-family: var(--font-display);
}

.hero-stat span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-visual {
  position: relative;
  min-height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    radial-gradient(500px 300px at 60% 0%, rgba(47, 165, 198, 0.28), transparent 70%),
    radial-gradient(450px 360px at 20% 60%, rgba(37, 149, 101, 0.3), transparent 70%),
    rgba(10, 16, 18, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 60%);
}

.hero-stack {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.hero-logo {
  width: clamp(180px, 26vw, 280px);
  transform: translateY(-60px);
}

.hero-silhouette {
  width: clamp(180px, 24vw, 260px);
  transform: translateY(60px);
  filter: drop-shadow(0 30px 40px rgba(37, 149, 101, 0.35));
}

.hero-card {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: rgba(10, 16, 18, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  padding: 16px 18px;
  display: grid;
  gap: 8px;
  min-width: 180px;
}

.hero-card .score {
  font-size: 1.6rem;
  font-family: var(--font-display);
}

.hero-card small {
  color: var(--text-muted);
}

.grid {
  display: grid;
  gap: 24px;
}

.grid.cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-card {
  padding: 24px;
  display: grid;
  gap: 12px;
}

.feature-card .tag {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-3);
}

.feature-card p {
  color: var(--text-muted);
}

.process {
  display: grid;
  gap: 18px;
}

.process-step {
  display: grid;
  gap: 12px;
  padding: 22px;
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid var(--stroke);
}

.process-step span {
  font-size: 0.85rem;
  color: var(--accent-3);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.media-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.media-frame {
  position: relative;
  display: grid;
  align-content: end;
  gap: 8px;
  border-radius: 26px;
  padding: 22px;
  border: 1px dashed var(--stroke);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0.1));
  min-height: 220px;
  overflow: hidden;
}

.media-frame .label {
  font-weight: 600;
}

.media-frame .note {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.media-frame.wide {
  grid-column: span 7;
  aspect-ratio: 16 / 9;
}

.media-frame.tall {
  grid-column: span 5;
  aspect-ratio: 9 / 16;
}

.media-frame.small {
  grid-column: span 4;
  aspect-ratio: 4 / 3;
}

.media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.08) 50%, transparent 70%);
  opacity: 0.3;
  animation: shimmer 6s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
}

.media-frame>* {
  position: relative;
  z-index: 1;
}

@keyframes shimmer {
  0% {
    transform: translateX(-40%);
  }

  50% {
    transform: translateX(40%);
  }

  100% {
    transform: translateX(-40%);
  }
}

.download-card {
  padding: 32px;
  display: grid;
  gap: 18px;
}

.download-card .store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 14px;
  background: var(--surface-strong);
  border: 1px solid var(--stroke);
  font-weight: 600;
}

.about-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-card {
  padding: 24px;
  display: grid;
  gap: 12px;
}

.contact-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1.2fr 0.8fr;
}

.contact-card {
  padding: 24px;
  display: grid;
  gap: 14px;
}

.social-links {
  display: grid;
  gap: 12px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--text);
}

.social-links span {
  color: var(--text-muted);
  font-weight: 500;
}

.footer {
  padding: 48px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(6, 9, 11, 0.85);
}

.footer-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.footer h4 {
  font-size: 1rem;
  font-family: var(--font-display);
}

.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.footer a {
  color: var(--text-muted);
}

.footer a:hover {
  color: var(--text);
}

.footer small {
  color: var(--text-muted);
}

.legal-header {
  padding: 80px 0 40px;
}

.legal-content {
  display: grid;
  gap: 22px;
  max-width: 780px;
}

.legal-content p,
.legal-content li {
  line-height: 1.72;
}

.legal-content ul {
  margin: 0;
  padding-left: 20px;
  color: var(--text-muted);
  display: grid;
  gap: 8px;
}

.legal-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--stroke);
  border-radius: 14px;
  background: var(--surface);
}

.legal-table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
  table-layout: fixed;
}

.legal-table th,
.legal-table td {
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
  line-height: 1.6;
}

.legal-table thead th {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-weight: 600;
  letter-spacing: 0.02em;
  border-bottom: 1px solid var(--stroke);
}

.legal-table tbody tr+tr {
  border-top: 1px solid var(--stroke);
}

.legal-content a,
.contact-card a,
.download-card a {
  color: var(--accent-3);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(91, 208, 166, 0.6);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .grid.cols-3,
  .grid.cols-2 {
    grid-template-columns: 1fr;
  }

  .media-frame.wide,
  .media-frame.tall,
  .media-frame.small {
    grid-column: span 12;
    aspect-ratio: 16 / 9;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(6, 10, 12, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px var(--gutter) 28px;
    display: none;
    gap: 18px;
  }

  header.nav-open .nav-menu {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .section-head {
    gap: 12px;
    margin-bottom: 40px;
  }

  .lead {
    font-size: 1.05rem;
    line-height: 1.7;
  }

  .eyebrow,
  .hero-eyebrow,
  .showcase-label {
    letter-spacing: 0.1em;
    font-size: 0.92rem;
  }

  .hero-visual {
    min-height: 320px;
  }

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

  .nav {
    padding: 14px 0;
  }

  .logo img,
  .logo-picture img {
    width: 120px;
  }

  .legal-table th,
  .legal-table td {
    padding: 12px 14px;
    font-size: 0.92rem;
  }
}




@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===================================
   NEW HERO SECTION STYLES
   =================================== */

/* Hero Container */
.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  min-height: 70vh;
}

/* Hero Eyebrow */
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: clamp(0.94rem, 1.18vw, 1.06rem);
  font-weight: 700;
  color: var(--accent-3);
  margin-bottom: 8px;
}

/* Hero Headline */
.hero-headline {
  font-size: clamp(1.95rem, 5.2vw, 4.2rem);
  line-height: 1.12;
  font-weight: 700;
}

.hero-headline span {
  display: block;
}

/* Hero line color progression (brand gradient from first to last line) */
.hero-line-start {
  color: #2fa777;
}

.hero-line-mid {
  color: #ffffff;
}

.hero-line-end {
  color: #2aa5c6;
}

/* Email Signup Form */
.signup-form {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.signup-input {
  flex: 1;
  min-width: 200px;
  padding: 14px 20px;
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: 999px;
  font-size: 1rem;
  color: var(--text);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.signup-input::placeholder {
  color: var(--text-muted);
}

.signup-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(37, 149, 101, 0.15);
}

.signup-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  animation: pulse-glow 2s ease-in-out infinite;
}

.signup-btn svg {
  transition: transform 0.25s ease;
}

.signup-btn:hover svg {
  transform: translateX(4px);
}

.signup-note {
  width: 100%;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 8px;
}

/* Hero Visual Container */
.hero-visual-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
  overflow: hidden;
}

/* Phone Frame */
.hero-phone-frame {
  position: relative;
  width: clamp(220px, 28vw, 320px);
  aspect-ratio: 9 / 19;
  background: linear-gradient(145deg, #1a1f22, #0d1214);
  border-radius: 44px;
  padding: 12px;
  box-shadow:
    0 50px 100px rgba(0, 0, 0, 0.4),
    0 20px 40px rgba(0, 0, 0, 0.3),
    inset 0 2px 0 rgba(255, 255, 255, 0.1),
    inset 0 -2px 0 rgba(0, 0, 0, 0.2);
  animation: float 6s ease-in-out infinite;
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 34px;
  overflow: hidden;
  background: linear-gradient(180deg, #0a0f11, #0d1416);
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-screen picture,
.showcase-phone picture {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.hero-app-preview {
  width: 90%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 30px rgba(37, 149, 101, 0.3));
}

/* Hero Metric Badges */
.hero-metric-badge {
  position: absolute;
  width: 122px;
  min-height: 88px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 12px;
  background: rgba(10, 16, 18, 0.85);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.32);
}

.hero-metric-value {
  font-size: 1.72rem;
  font-weight: 700;
  line-height: 1;
  font-family: var(--font-display);
}

.hero-metric-label {
  font-size: 0.72rem;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-score-badge {
  top: 20%;
  right: -60px;
  border: 1px solid rgba(47, 167, 119, 0.42);
  animation: float-alt 5s ease-in-out infinite;
}

.score-value,
.score-label {
  color: #2fa777;
}

.hero-rep-badge {
  bottom: 25%;
  left: -50px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  animation: float 7s ease-in-out infinite reverse;
}

.rep-value,
.rep-label {
  color: #ffffff;
}

.hero-progress-badge {
  right: -52px;
  bottom: 8%;
  border: 1px solid rgba(42, 165, 198, 0.42);
  animation: float-alt 6.4s ease-in-out infinite;
}

.progress-label {
  color: #2aa5c6;
}

.progress-sparkline {
  width: 68px;
  height: 30px;
}

.progress-line-bg,
.progress-line {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.progress-line-bg {
  stroke: rgba(42, 165, 198, 0.24);
  stroke-width: 2.6;
}

.progress-line {
  stroke: #2aa5c6;
  stroke-width: 2.6;
}

.progress-dot {
  fill: #2aa5c6;
}

/* Glow Effect */
.hero-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(37, 149, 101, 0.25), transparent 60%);
  filter: blur(60px);
  z-index: -1;
  animation: glow-pulse 4s ease-in-out infinite;
}

/* Animations */
@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes float-alt {

  0%,
  100% {
    transform: translateY(0) rotate(2deg);
  }

  50% {
    transform: translateY(-8px) rotate(-1deg);
  }
}

@keyframes pulse-glow {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(47, 167, 119, 0.3);
  }

  50% {
    box-shadow: 0 0 35px rgba(47, 167, 119, 0.5);
  }
}

@keyframes glow-pulse {

  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }

  50% {
    opacity: 0.9;
    transform: scale(1.1);
  }
}

/* Hero Responsive */
@media (max-width: 980px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    min-height: auto;
    gap: 40px;
  }

  .signup-form {
    justify-content: center;
  }

  .signup-note {
    text-align: center;
  }

  .hero-visual-container {
    order: -1;
    padding: 20px;
  }

  .hero-phone-frame {
    width: 200px;
  }

  .hero-score-badge {
    right: -40px;
  }

  .hero-rep-badge {
    left: -30px;
  }

  .hero-progress-badge {
    right: -34px;
    bottom: 9%;
  }

  .hero-metric-badge {
    width: 108px;
    min-height: 78px;
    padding: 9px 10px;
  }

  .hero-metric-value {
    font-size: 1.42rem;
  }

  .hero-metric-label {
    font-size: 0.66rem;
  }

  .progress-sparkline {
    width: 58px;
    height: 26px;
  }
}

@media (max-width: 600px) {
  .hero-headline {
    font-size: 1.34rem;
    line-height: 1.18;
  }

  .hero-phone-frame {
    width: 180px;
  }

  .hero-score-badge {
    right: -20px;
    top: 15%;
  }

  .hero-rep-badge {
    left: -15px;
    bottom: 20%;
  }

  .hero-progress-badge {
    right: -10px;
    bottom: 5%;
  }

  .hero-metric-badge {
    width: 94px;
    min-height: 68px;
    padding: 8px 9px;
    border-radius: 13px;
  }

  .hero-metric-value {
    font-size: 1.16rem;
  }

  .hero-metric-label {
    font-size: 0.58rem;
  }

  .progress-sparkline {
    width: 48px;
    height: 21px;
  }

  .signup-form {
    flex-direction: column;
  }

  .signup-input {
    width: 100%;
  }

  .signup-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ===================================
   STEPS GRID (How It Works)
   =================================== */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step-card {
  position: relative;
  padding: 32px 28px;
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.step-number {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #2fa777, #2aa5c6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: white;
}

.step-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.step-card h3 {
  margin-bottom: 12px;
}

.step-card p {
  color: var(--text-muted);
  font-size: 1rem;
}

/* ===================================
   FEATURE SHOWCASE CARDS
   =================================== */

.feature-showcase-section {
  padding-bottom: 0;
}

.showcase-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 48px;
  margin-bottom: 40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.showcase-card-dark {
  background: linear-gradient(145deg, rgba(15, 20, 25, 0.95), rgba(10, 14, 18, 0.98));
  border: 1px solid var(--stroke);
}

.showcase-card-accent {
  background: linear-gradient(145deg, rgba(37, 149, 101, 0.08), rgba(42, 165, 198, 0.05));
  border: 1px solid rgba(91, 208, 166, 0.2);
}

.showcase-card-pro {
  background: linear-gradient(145deg, rgba(128, 90, 213, 0.1), rgba(91, 208, 166, 0.05));
  border: 1px solid rgba(128, 90, 213, 0.3);
}

.showcase-badge-row {
  margin-bottom: 8px;
}

.tier-badge-img {
  height: 28px;
  width: auto;
  object-fit: contain;
}

.pro-badge {
  display: inline-block;
  padding: 4px 12px;
  background: linear-gradient(135deg, #805AD5, #553C9A);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  border-radius: 999px;
}

.showcase-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent-3);
  margin-bottom: 8px;
}

.showcase-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 16px;
}

.showcase-description {
  color: var(--text-muted);
  font-size: 1.08rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.showcase-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.showcase-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 1rem;
}

.showcase-features li::before {
  content: "✓";
  color: var(--accent-3);
  font-weight: 700;
}

/* Showcase Phone */
.showcase-phone {
  width: clamp(180px, 20vw, 240px);
  aspect-ratio: 9 / 19;
  background: linear-gradient(145deg, #1a1f22, #0d1214);
  border-radius: 32px;
  padding: 10px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  margin: 0 auto;
}

.showcase-phone img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 24px;
}

/* Score Demo */
.showcase-score-demo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.demo-score-ring {
  position: relative;
  width: 140px;
  height: 140px;
}

.demo-score-ring svg {
  width: 100%;
  height: 100%;
}

.demo-score-value {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  font-weight: 700;
  font-family: var(--font-display);
  background: linear-gradient(135deg, #2fa777, #5bd0a6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.demo-score-bars {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  max-width: 200px;
}

.score-bar {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.score-bar span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.score-bar .bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.score-bar .fill {
  height: 100%;
  background: linear-gradient(90deg, #2fa777, #5bd0a6);
  border-radius: 4px;
}

/* AI Insights Demo */
.showcase-insights-demo {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.coach-avatar-card {
  display: flex;
  align-items: center;
  align-self: flex-start;
  gap: 12px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  animation: coach-float 5.2s ease-in-out infinite;
}

.coach-avatar-image {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(91, 208, 166, 0.7);
  box-shadow:
    0 0 0 6px rgba(91, 208, 166, 0.12),
    0 14px 24px rgba(0, 0, 0, 0.32);
  animation: coach-pulse 3.2s ease-in-out infinite;
}

.coach-avatar-copy h4 {
  margin: 0;
  font-size: 1.16rem;
  line-height: 1.05;
}

.coach-avatar-copy p {
  margin: 2px 0 0;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.42;
}

.insight-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  background: rgba(10, 16, 18, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid var(--stroke);
  border-radius: 16px;
  animation: float-alt 6s ease-in-out infinite;
}

.insight-card-delay-1 {
  animation-delay: 0s;
}

.insight-card-delay-2 {
  animation-delay: -2s;
}

.insight-card-delay-3 {
  animation-delay: -4s;
}

.insight-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.insight-card p {
  font-size: 0.96rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.5;
  margin: 0;
}

@keyframes coach-float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

@keyframes coach-pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.035);
  }
}

/* ===================================
   GAMIFICATION SECTION
   =================================== */

.gamification-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.gamification-card {
  padding: 28px 24px;
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gamification-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.gamification-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.gamification-card h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.gamification-card p {
  color: var(--text-muted);
  font-size: 0.96rem;
}

/* ===================================
   COMMUNITY SECTION
   =================================== */

.community-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 24px;
}

.community-card {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.community-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.community-card-large {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.community-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.community-card h3 {
  margin-bottom: 10px;
}

.community-card p {
  color: var(--text-muted);
  font-size: 0.98rem;
}

/* ===================================
   RESPONSIVE FOR NEW SECTIONS
   =================================== */

@media (max-width: 980px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .step-card {
    max-width: 400px;
    margin: 0 auto;
  }

  .showcase-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 32px;
  }

  .showcase-visual {
    order: -1;
  }

  .showcase-features {
    align-items: flex-start;
    text-align: left;
  }

  .gamification-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .step-card,
  .community-card,
  .gamification-card {
    padding: 22px 18px;
  }

  .showcase-card {
    padding: 24px;
  }

  .showcase-title {
    font-size: 1.48rem;
  }

  .step-card p,
  .showcase-description,
  .showcase-features li,
  .community-card p,
  .gamification-card p {
    font-size: 0.98rem;
  }
}

/* ===================================
   PRICING SECTION
   =================================== */


.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  gap: 24px;
  align-items: start;
}

.pricing-card {
  position: relative;
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.pricing-card-popular {
  border: 2px solid var(--accent);
  background: linear-gradient(145deg, rgba(37, 149, 101, 0.08), var(--surface));
}

.pricing-card-max {
  border: 2px solid #805AD5;
  background: linear-gradient(145deg, rgba(128, 90, 213, 0.08), var(--surface));
}

.pricing-popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 16px;
  background: linear-gradient(135deg, var(--accent), #2aa5c6);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 999px;
  white-space: nowrap;
}

.pricing-header {
  text-align: center;
  margin-bottom: 16px;
}

.pricing-tier-badge {
  height: 36px;
  width: auto;
  object-fit: contain;
  margin-bottom: 12px;
}

.pricing-tier {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.price-yearly {
  font-size: 0.8rem;
  color: var(--accent-3);
  margin-top: 6px;
  margin-bottom: 0;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: var(--font-display);
  background: linear-gradient(135deg, var(--text), var(--text-muted));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-card-popular .price-amount {
  background: linear-gradient(135deg, #2fa777, #5bd0a6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-card-max .price-amount {
  background: linear-gradient(135deg, #805AD5, #B794F4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-period {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.pricing-description {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--stroke);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}

.pricing-features .included {
  color: var(--text);
}

.pricing-features .excluded {
  color: var(--text-muted);
  opacity: 0.6;
}

.pricing-features .check {
  color: var(--accent-3);
  font-weight: 700;
  font-size: 1rem;
}

.pricing-features .x {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.pricing-cta {
  width: 100%;
  text-align: center;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  transition: all 0.25s ease;
}

.pricing-cta:disabled {
  background: var(--stroke);
  color: var(--text-muted);
  cursor: not-allowed;
}

.pricing-cta-max {
  background: linear-gradient(135deg, #805AD5, #553C9A);
  color: white;
  border: none;
}

.pricing-cta-max:hover {
  background: linear-gradient(135deg, #9F7AEA, #805AD5);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(128, 90, 213, 0.3);
}

.pricing-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 32px;
}

/* Pricing Responsive */
@media (max-width: 980px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .pricing-card-popular {
    order: -1;
  }
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */

.testimonials-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 40px;
  max-width: 100%;
}

.testimonials-head .head-copy {
  text-align: left;
}

.challenges-head {
  justify-content: flex-end;
}

.challenges-head .head-copy {
  margin-left: auto;
  text-align: right;
}

.carousel-nav-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  border-radius: 50%;
}

.nav-btn:hover {
  color: var(--accent-3);
  background: var(--surface-strong);
}

.autoplay-btn {
  position: relative;
  background: none;
  border: none;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  color: var(--text-muted);
}

.autoplay-btn:hover {
  color: var(--accent-3);
}

.progress-ring {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-90deg);
}

.progress-ring-fill {
  transition: stroke-dashoffset 0.1s linear;
  stroke: var(--accent-3);
}

.btn-icons {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonials-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.testimonials-scroll {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px 0 20px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.testimonials-scroll::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  flex: 0 0 380px;
  scroll-snap-align: start;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(37, 149, 101, 0.15), rgba(42, 165, 198, 0.15));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.testimonial-quote {
  flex: 1;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  font-style: normal;
  margin: 0;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.author-name {
  font-weight: 600;
  color: var(--text);
}

.author-title {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Testimonials Responsive */
@media (max-width: 600px) {
  .testimonial-card {
    flex: 0 0 min(86vw, 320px);
    padding: 24px;
  }
}

/* ===================================
   COMPARISON TABLE (Matching App)
   =================================== */

.comparison-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0 -20px;
  padding: 0 20px;
}

.comparison-table {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  border-collapse: collapse;
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  overflow: hidden;
}

.comparison-table th,
.comparison-table td {
  padding: 16px 12px;
  text-align: center;
  vertical-align: middle;
}

.comparison-table thead th {
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--stroke);
  padding: 20px 12px;
}

.comparison-table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.comparison-table tbody tr:last-child {
  border-bottom: none;
}

.comparison-table tfoot tr {
  border-top: 1px solid var(--stroke);
}

.comparison-table tfoot td {
  padding: 20px 12px;
}

/* Column Styling */
.feature-col {
  text-align: left;
  width: 40%;
}

.plan-col {
  width: 20%;
  min-width: 100px;
}

/* Plan Badges */
.plan-badge {
  display: inline-block;
  padding: 4px 12px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  border-radius: 4px;
  margin-bottom: 8px;
}

.plan-badge-free {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
}

.plan-badge-img {
  height: 28px;
  width: auto;
  object-fit: contain;
  margin-bottom: 8px;
}

.plan-price {
  font-size: 1.4rem;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--text);
}

.plan-price span {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
}

.plan-col-pro .plan-price {
  color: var(--accent-3);
}

.plan-col-max .plan-price {
  color: #B794F4;
}

.plan-yearly {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Feature Rows */
.feature-name {
  text-align: left;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
}

.feature-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

.feature-yes {
  color: var(--accent-3);
  font-size: 1.1rem;
}

.feature-no {
  color: var(--text-muted);
  opacity: 0.4;
}

.feature-unlimited {
  font-size: 1.3rem;
  color: #B794F4;
}

/* CTA Row */
.cta-row td {
  padding-top: 24px;
  padding-bottom: 24px;
}

.cta-row .pricing-cta {
  padding: 10px 20px;
  font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 600px) {

  .comparison-table th,
  .comparison-table td {
    padding: 12px 8px;
  }

  .plan-badge-img {
    height: 22px;
  }

  .plan-price {
    font-size: 1.1rem;
  }

  .plan-yearly {
    font-size: 0.65rem;
  }

  .feature-name {
    font-size: 0.85rem;
  }

  .cta-row .pricing-cta {
    padding: 8px 12px;
    font-size: 0.75rem;
  }
}