:root {
  --bg: #070d0a;
  --bg-2: #0b1510;
  --surface: rgba(255, 255, 255, 0.045);
  --surface-2: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.16);
  --text: #eef3ef;
  --text-muted: #9db0a4;
  --emerald: #34d399;
  --emerald-bright: #6ee7b7;
  --emerald-deep: #059669;
  --emerald-glow: rgba(52, 211, 153, 0.35);
  --max: 1160px;
  --header-h: 72px;
  --radius: 18px;
  --radius-lg: 26px;
  --shadow-device: 0 40px 90px rgba(0, 0, 0, 0.55);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.seedlyn-site {
  margin: 0;
  padding-top: var(--header-h);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

html.admin-bar body.seedlyn-site {
  padding-top: calc(var(--header-h) + 32px);
}

@media (max-width: 782px) {
  html.admin-bar body.seedlyn-site {
    padding-top: calc(var(--header-h) + 46px);
  }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(7, 13, 10, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  overflow: visible;
}

html.admin-bar .site-header {
  top: 32px;
}

@media (max-width: 782px) {
  html.admin-bar .site-header {
    top: 46px;
  }
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  height: var(--header-h);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  flex-shrink: 0;
}

.logo img {
  border-radius: 9px;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 1.9rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted);
}

.nav-links a {
  transition: color 0.15s ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--text);
}

.nav-mobile-cta {
  display: none;
}

.nav-cta {
  flex-shrink: 0;
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  background: var(--surface);
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle-bar {
  display: block;
  width: 18px;
  height: 2px;
  margin-inline: auto;
  border-radius: 2px;
  background: var(--text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header.is-nav-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-nav-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.site-header.is-nav-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.3rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid transparent;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--emerald) 0%, var(--emerald-deep) 100%);
  color: #04120b;
  box-shadow: 0 8px 24px rgba(52, 211, 153, 0.28);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(52, 211, 153, 0.42);
}

.btn-ghost {
  background: var(--surface);
  color: var(--text);
  border-color: var(--border-strong);
}

.btn-ghost:hover {
  background: var(--surface-2);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--surface);
  color: var(--text);
  border-color: var(--border-strong);
}

.btn-secondary:hover {
  background: var(--surface-2);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 0.95rem 1.7rem;
  font-size: 0.98rem;
}

.label-short {
  display: none;
}

/* Pill / eyebrow */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 0.85rem;
}

/* Hero */
.hero {
  position: relative;
  padding: 4.5rem 0 3rem;
  text-align: center;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: min(1100px, 130vw);
  height: 900px;
  background:
    radial-gradient(circle at 50% 30%, rgba(52, 211, 153, 0.28), transparent 55%),
    radial-gradient(circle at 30% 60%, rgba(16, 185, 129, 0.16), transparent 50%);
  filter: blur(20px);
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.75rem, 8vw, 5.5rem);
  line-height: 1.0;
  letter-spacing: -0.045em;
  font-weight: 900;
  margin: 0 0 1.3rem;
  color: var(--text);
}

.grad {
  background: linear-gradient(120deg, var(--emerald-bright), var(--emerald) 60%, var(--emerald-deep));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero-lead {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--text-muted);
  max-width: 40rem;
  margin: 0 0 2rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.trust-strip {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 3.5rem;
}

.trust-strip strong {
  color: var(--text);
  font-weight: 700;
}

.trust-strip .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--emerald);
}

/* Hero devices */
.hero-devices {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 1.25rem;
  width: 100%;
  perspective: 1600px;
}

.device {
  border-radius: 2rem;
  overflow: hidden;
  background: #0d1712;
  box-shadow: var(--shadow-device);
  border: 1px solid var(--border-strong);
}

.device img {
  width: 100%;
  height: auto;
  display: block;
}

.device-main {
  width: min(62vw, 290px);
  z-index: 2;
}

.device-side {
  width: min(46vw, 220px);
  opacity: 0.92;
  display: none;
}

/* Sections */
.section {
  padding: 5.5rem 0;
}

.section-intro {
  max-width: 40rem;
  margin-bottom: 3rem;
}

.section-intro.center {
  text-align: center;
  margin-inline: auto;
}

.section-intro h2,
.split-copy h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin: 0 0 0.9rem;
  font-weight: 800;
  color: var(--text);
}

.section-intro p,
.split-copy p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.section-intro.center p {
  margin-inline: auto;
}

/* Bento grid */
.bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.bento-tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.bento-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(120% 80% at 100% 0%, rgba(52, 211, 153, 0.1), transparent 55%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.bento-tile:hover {
  border-color: var(--border-strong);
  background: var(--surface-2);
  transform: translateY(-4px);
}

.bento-tile:hover::after {
  opacity: 1;
}

.tile-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  margin-bottom: 1rem;
  color: var(--emerald-bright);
  background: rgba(52, 211, 153, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.22);
}

.tile-icon svg {
  width: 22px;
  height: 22px;
}

.tile-text h3 {
  margin: 0 0 0.45rem;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
}

.tile-text p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.6;
}

.tile-shot {
  margin-top: auto;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #0d1712;
  align-self: center;
  width: min(100%, 240px);
}

.tile-shot img {
  width: 100%;
  display: block;
}

/* Interactive showcase */
.showcase {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  margin-top: 1rem;
}

.showcase-tabs {
  display: grid;
  gap: 0.75rem;
  order: 2;
}

.showcase-tab {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  text-align: left;
  padding: 1.1rem 1.2rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  cursor: pointer;
  font: inherit;
  position: relative;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.showcase-tab:hover {
  border-color: var(--border-strong);
  background: var(--surface-2);
}

.showcase-tab.is-active {
  border-color: rgba(52, 211, 153, 0.45);
  background: rgba(52, 211, 153, 0.08);
}

.showcase-tab.is-active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 3px;
  border-radius: 3px;
  background: var(--emerald);
}

.tab-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  color: var(--emerald-bright);
  background: rgba(52, 211, 153, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.22);
}

.tab-icon svg {
  width: 20px;
  height: 20px;
}

.tab-body {
  display: grid;
  gap: 0.2rem;
}

.tab-body strong {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.tab-body span {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.showcase-stage {
  position: relative;
  display: flex;
  justify-content: center;
  order: 1;
}

.showcase-glow {
  position: absolute;
  inset: -10% 0 0;
  background: radial-gradient(circle at 50% 40%, rgba(52, 211, 153, 0.28), transparent 60%);
  filter: blur(10px);
  pointer-events: none;
}

.showcase-device {
  position: relative;
  width: min(74vw, 300px);
  aspect-ratio: 9 / 19.5;
  border-radius: 2.2rem;
  overflow: hidden;
  background: #0d1712;
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-device);
}

.showcase-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}

.showcase-layer.is-active {
  opacity: 1;
  transform: none;
}

/* Split section */
.section-split {
  background: linear-gradient(180deg, transparent, rgba(52, 211, 153, 0.04), transparent);
}

.split-inner {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.check-list {
  list-style: none;
  margin: 1.5rem 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.check-list li {
  position: relative;
  padding-left: 1.9rem;
  color: var(--text);
  font-size: 0.98rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--emerald-glow);
  box-shadow: inset 0 0 0 1px var(--emerald);
}

.check-list li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 7px;
  width: 8px;
  height: 5px;
  border-left: 2px solid var(--emerald-bright);
  border-bottom: 2px solid var(--emerald-bright);
  transform: rotate(-45deg);
}

.cta-card p a {
  color: var(--emerald-bright);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.split-visual {
  display: flex;
  justify-content: center;
}

.split-visual .device {
  width: min(72vw, 300px);
}

/* Stats */
.stats-band {
  padding: 3.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
}

.stats-grid {
  display: grid;
  gap: 2.25rem;
  text-align: center;
}

.stat-value {
  display: block;
  font-size: clamp(2.5rem, 6vw, 3.75rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(120deg, var(--emerald-bright), var(--emerald-deep));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.stat-label {
  display: block;
  margin-top: 0.6rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Gallery */
.section-gallery {
  overflow: hidden;
}

.marquee {
  position: relative;
  overflow: hidden;
  padding: 0.5rem 0 1.5rem;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.marquee-track {
  display: flex;
  gap: 1rem;
  width: max-content;
}

@media (prefers-reduced-motion: reduce) {
  .marquee {
    overflow-x: auto;
  }
}

.gallery-item {
  flex: 0 0 auto;
  width: min(230px, 68vw);
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #0d1712;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-device);
}

.gallery-item img {
  width: 100%;
  display: block;
}

.gallery-item figcaption {
  padding: 0.8rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
}

/* CTA card */
.cta-card {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: clamp(2.5rem, 6vw, 4.5rem) 1.5rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(52, 211, 153, 0.14), rgba(5, 150, 105, 0.06));
  border: 1px solid var(--border-strong);
}

.cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(52, 211, 153, 0.35), transparent 60%);
  pointer-events: none;
}

.cta-card h2 {
  position: relative;
  margin: 0 0 1rem;
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 900;
}

.cta-card p {
  position: relative;
  margin: 0 auto 1.9rem;
  max-width: 30rem;
  color: var(--text-muted);
  font-size: 1.08rem;
}

.cta-card .btn {
  position: relative;
}

.cta-actions {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

/* Footer */
.site-footer {
  padding: 3rem 0 2.5rem;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.9rem;
  background: var(--bg);
}

.footer-grid {
  display: grid;
  gap: 1.75rem;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: var(--text);
}

.footer-brand img {
  border-radius: 7px;
  margin-top: 0.15rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.5rem;
}

.footer-links a {
  transition: color 0.15s ease;
}

.footer-links a:hover {
  color: var(--emerald);
}

.footer-copy {
  margin-top: 1.5rem;
  font-size: 0.82rem;
  opacity: 0.8;
}

/* Legal / support shared */
.section-soft {
  background: var(--bg-2);
}

.section-header {
  max-width: 40rem;
  margin-bottom: 2rem;
}

.section-header.center {
  text-align: center;
  margin-inline: auto;
}

.section-header h2 {
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 0.65rem;
  color: var(--text);
}

.section-header p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1rem;
}

/* Responsive */
@media (min-width: 640px) {
  .device-side {
    display: block;
  }

  .hero-devices {
    margin-top: 1rem;
  }

  .device-side:first-child {
    transform: rotate(-6deg) translateY(20px);
  }

  .device-side:last-child {
    transform: rotate(6deg) translateY(20px);
  }

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .nav-mobile-cta {
    display: none !important;
  }

  .showcase {
    grid-template-columns: 1fr 300px;
    gap: 3.5rem;
  }

  .showcase-tabs {
    order: 1;
  }

  .showcase-stage {
    order: 2;
    position: sticky;
    top: calc(var(--header-h) + 1.5rem);
  }

  .bento {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(200px, auto);
  }

  .tile-lg {
    grid-column: span 2;
    grid-row: span 2;
    flex-direction: row;
    align-items: center;
  }

  .tile-lg .tile-text {
    flex: 1;
  }

  .tile-lg .tile-shot {
    flex: 1;
    margin-top: 0;
    max-width: 240px;
  }

  .tile-tall {
    grid-row: span 2;
  }

  .tile-wide {
    grid-column: span 3;
    flex-direction: row;
    align-items: center;
  }

  .tile-wide .tile-text {
    flex: 1;
  }

  .tile-wide .tile-shot {
    margin-top: 0;
    width: 260px;
  }

  .split-inner {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .footer-grid {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

@media (max-width: 767px) {
  :root {
    --header-h: 64px;
    --radius: 16px;
    --radius-lg: 20px;
  }

  .container {
    width: min(100% - 1.5rem, var(--max));
  }

  body.seedlyn-site {
    padding-top: var(--header-h);
  }

  .nav-cta {
    display: none;
  }

  .nav-links {
    position: absolute;
    top: calc(var(--header-h) - 1px);
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.35rem 1.15rem 1.1rem;
    background: rgba(7, 13, 10, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  }

  .site-header.is-nav-open .nav-links {
    opacity: 1;
    transform: none;
    pointer-events: auto;
    visibility: visible;
  }

  .nav-links a {
    padding: 0.95rem 0.2rem;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    font-size: 1.05rem;
    font-weight: 600;
  }

  .nav-links a:last-child {
    border-bottom: none;
  }

  .nav-mobile-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.85rem;
    padding: 0.9rem 1.2rem !important;
    border-radius: 999px;
    border-bottom: none !important;
    background: linear-gradient(135deg, var(--emerald) 0%, var(--emerald-deep) 100%);
    color: #04120b !important;
    font-weight: 700;
  }

  .nav-toggle {
    width: 44px;
    height: 44px;
  }

  /* Hero */
  .hero {
    padding: 1.75rem 0 2.5rem;
  }

  .hero-glow {
    top: -20%;
    width: 140vw;
    height: 70vh;
  }

  .pill {
    margin-bottom: 1.1rem;
    font-size: 0.76rem;
    padding: 0.35rem 0.75rem;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 11vw, 3.1rem);
    margin-bottom: 0.95rem;
  }

  .hero-lead {
    font-size: 1.02rem;
    margin-bottom: 1.35rem;
    max-width: none;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 0.65rem;
    margin-bottom: 1.25rem;
  }

  .hero-actions .btn {
    width: 100%;
    white-space: normal;
    text-align: center;
    padding: 0.95rem 1.1rem;
    font-size: 0.95rem;
  }

  .label-full {
    display: none;
  }

  .label-short {
    display: inline;
  }

  .trust-strip {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.45rem 0.75rem;
    margin-bottom: 2rem;
    font-size: 0.84rem;
  }

  .hero-devices {
    margin-top: 0.25rem;
  }

  .device-main {
    width: min(78vw, 280px);
  }

  .device-side {
    display: none;
  }

  /* Sections */
  .section {
    padding: 3rem 0;
  }

  .section-intro {
    margin-bottom: 1.75rem;
  }

  .section-intro h2,
  .split-copy h2 {
    font-size: clamp(1.7rem, 7vw, 2.2rem);
  }

  .section-intro p,
  .split-copy p {
    font-size: 1rem;
  }

  /* Showcase */
  .showcase {
    gap: 1.75rem;
  }

  .showcase-stage {
    order: 1;
  }

  .showcase-tabs {
    order: 2;
    gap: 0.6rem;
  }

  .showcase-device {
    width: min(72vw, 270px);
  }

  .showcase-tab {
    padding: 0.95rem 1rem;
    gap: 0.85rem;
    border-radius: 14px;
  }

  .tab-icon {
    width: 38px;
    height: 38px;
  }

  .tab-body strong {
    font-size: 0.98rem;
  }

  .tab-body span {
    font-size: 0.86rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* Split / community */
  .section-split {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .split-inner {
    gap: 2rem;
  }

  .split-visual .device {
    width: min(72vw, 280px);
  }

  .check-list {
    margin: 1.15rem 0 1.35rem;
  }

  /* Stats */
  .stats-band {
    padding: 2.25rem 0;
  }

  .stats-grid {
    gap: 1.35rem;
  }

  .stat {
    padding: 0.85rem 0.5rem;
    border-radius: 14px;
    background: rgba(52, 211, 153, 0.06);
    border: 1px solid rgba(52, 211, 153, 0.12);
  }

  .stat-value {
    font-size: clamp(2.1rem, 10vw, 2.6rem);
  }

  .stat-label {
    font-size: 0.88rem;
  }

  /* Gallery */
  .gallery-item {
    width: min(200px, 62vw);
  }

  .gallery-item figcaption {
    padding: 0.65rem 0.85rem;
    font-size: 0.8rem;
  }

  /* CTA */
  .cta-card {
    padding: 2rem 1.15rem;
    border-radius: 20px;
  }

  .cta-card h2 {
    font-size: clamp(1.7rem, 7.5vw, 2.25rem);
  }

  .cta-card p {
    font-size: 0.98rem;
    margin-bottom: 1.4rem;
  }

  .cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .cta-actions .btn {
    width: 100%;
    white-space: normal;
  }

  .cta-actions .label-full {
    display: none;
  }

  .cta-actions .label-short {
    display: inline;
  }

  /* Footer */
  .site-footer {
    padding: 2rem 0 calc(1.75rem + env(safe-area-inset-bottom, 0px));
  }

  .footer-links {
    gap: 0.65rem 1rem;
  }
}
