@font-face {
  font-family: "Fragment Mono";
  src: url("../fonts/FragmentMono-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto Mono";
  src: url("../fonts/RobotoMono-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #ffffff;
  --bg-soft: #f8faf5;
  --bg-cream: #faf5ea;
  --bg-dark: #0a0a0a;
  --bg-panel: #141414;
  --text: #0f0f0f;
  --text-2: #1d322d;
  --text-muted: #5e5e5e;
  --lime: #c2fa69;
  --lime-2: #9ccc50;
  --border: #e8ebe4;
  --border-soft: #ececec;
  --radius: 24px;
  --radius-sm: 14px;
  --radius-pill: 999px;
  --max: 1280px;
  --shadow-btn: 0 8px 24px rgba(0, 0, 0, 0.18);
  --shadow-card: 0 24px 60px rgba(0, 0, 0, 0.12);
  --font-display: "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-mono: "Roboto Mono", "Fragment Mono", ui-monospace, monospace;
  --font-clash: "Clash Display", "Inter", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 80px;
}

.container.narrow {
  max-width: 780px;
}

.center {
  text-align: center;
}

.center .section-sub {
  margin-left: auto;
  margin-right: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
  padding-left: env(safe-area-inset-left, 0);
  padding-right: env(safe-area-inset-right, 0);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
}

.logo img {
  width: 100px;
  height: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 30px;
  border-radius: 40px;
  font-weight: 500;
  font-size: 0.875rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  white-space: nowrap;
}

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

.btn-dark {
  background: #0a0a0a;
  color: #fff;
  box-shadow: var(--shadow-btn);
}

.btn-lime {
  background: var(--lime);
  color: #0a0a0a;
  box-shadow: 0 8px 24px rgba(194, 250, 105, 0.35);
  font-weight: 600;
}

.btn-lg {
  padding: 12px 32px;
  font-size: 0.95rem;
}

/* Typography */
.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: #f0f1ee;
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
}

.eyebrow-lime {
  background: rgba(194, 250, 105, 0.12);
  color: var(--lime);
  border-color: rgba(194, 250, 105, 0.25);
}

h1,
h2,
.section h2 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1.1;
  color: var(--text);
}

h1 {
  font-weight: 500;
  font-size: clamp(2.125rem, 5.9vw, 5.3125rem);
  letter-spacing: -0.076em;
  line-height: 1;
  margin-bottom: 18px;
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
}

.section h2 {
  font-size: clamp(1.875rem, 3.4vw, 3rem);
  letter-spacing: -0.05em;
  margin-bottom: 14px;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.55;
}

.section {
  padding: 88px 0;
}

/* Hero */
.hero {
  padding: 56px 0 40px;
  text-align: center;
  background: var(--bg);
}

.hero-inner {
  max-width: var(--max);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 5px 14px 5px 5px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-pill);
  margin-bottom: 28px;
  background: rgba(0, 0, 0, 0.03);
  backdrop-filter: blur(5px);
}

.badge-new {
  background: #0a0a0a;
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 5px 10px;
  border-radius: var(--radius-pill);
}

.badge-text {
  font-size: 0.88rem;
  color: var(--text-2);
}

.hero-sub {
  color: var(--text-muted);
  font-size: 1.12rem;
  max-width: 620px;
  margin: 0 auto 28px;
}

.hero-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
  color: var(--text-muted);
  font-size: 0.92rem;
  flex-wrap: wrap;
}

.stars {
  display: inline-flex;
  gap: 2px;
  color: var(--lime-2);
}

.stars svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.hero-visual {
  margin-top: 56px;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.hero-device {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  border: 12px solid #0a0a0a;
  box-shadow: var(--shadow-card);
  background: #0a0a0a;
  aspect-ratio: 16 / 10.3;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 10, 10, 0.28), transparent 55%);
  pointer-events: none;
}

.hero-float {
  position: absolute;
  pointer-events: none;
  height: auto;
  max-width: none;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.28));
  animation: floaty 6s ease-in-out infinite;
}

.hero-float-1 {
  width: min(52%, 620px);
  left: 2.2%;
  top: 5.5%;
  border-radius: 14px;
  aspect-ratio: 920 / 610;
  object-fit: cover;
}

.hero-float-2 {
  width: min(14%, 164px);
  left: 12%;
  bottom: 8%;
  animation-delay: -2s;
  border-radius: 50%;
  aspect-ratio: 1;
  object-fit: cover;
}

.hero-float-3 {
  width: min(15%, 180px);
  right: 5%;
  bottom: 10%;
  animation-delay: -1.5s;
  opacity: 0.98;
  aspect-ratio: 920 / 390;
  object-fit: cover;
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Feature blocks */
.features-intro {
  padding-bottom: 24px;
}

.feature-block {
  padding: 28px 0;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 48px;
  align-items: center;
  background: var(--bg-soft);
  border-radius: 32px;
  padding: 40px;
}

.feature-row.reverse {
  grid-template-columns: 1.05fr 1fr;
}

.feature-row.reverse .feature-copy {
  order: 2;
}

.feature-row.reverse .feature-media {
  order: 1;
}

.feature-copy h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
  color: var(--text-2);
}

.feature-copy > p {
  color: var(--text-muted);
  margin-bottom: 22px;
  font-size: 1rem;
}

.feature-media {
  border-radius: 28px;
  overflow: hidden;
  border: 8px solid #111;
  background: #111;
  box-shadow: var(--shadow-card);
}

.feature-media img {
  width: 100%;
  height: auto;
}

.tag-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.tag-list li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-2);
  background: #fff;
  border: 1px solid var(--border);
  padding: 2px 10px 2px 8px;
  border-radius: 40px;
  line-height: 1.4;
}

.tag-ico {
  display: inline-grid;
  place-items: center;
  width: 14px;
  height: 14px;
  color: #0a0a0a;
}

.tag-ico svg {
  width: 14px;
  height: 14px;
}

/* More features */
.more-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.more-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin: 18px 0 10px;
  color: var(--text-2);
  letter-spacing: -0.03em;
}

.more-card > p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.more-media {
  border-radius: 24px;
  overflow: hidden;
  border: 8px solid #111;
  background: #1a1a1a;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.more-media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.check-list {
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  color: var(--text);
  font-size: 0.92rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15em;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--lime-2);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230a0a0a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5L19 7'/%3E%3C/svg%3E");
  background-size: 12px 12px;
  background-repeat: no-repeat;
  background-position: center;
}

/* Process */
.process-panel {
  background: var(--bg-panel);
  border-radius: 28px;
  padding: 20px;
  color: #f5fffd;
  overflow: hidden;
}

.process-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 20px;
}

.process-tab {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  padding: 14px 16px;
  border-radius: 14px;
  cursor: pointer;
  text-align: left;
  position: relative;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.process-tab.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.18);
}

.process-tab.is-active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20%;
  bottom: 20%;
  width: 3px;
  background: var(--lime);
  border-radius: 2px;
}

.process-body {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
  padding: 12px;
}

.process-media {
  border-radius: 20px;
  overflow: hidden;
  background: #1a1a1a;
  aspect-ratio: 1;
  align-self: start;
}

.process-media img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: center;
  transition: opacity 0.25s ease;
}

.process-label {
  display: inline-block;
  background: var(--lime);
  color: #0a0a0a;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

.process-copy h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: #f5fffd;
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}

.process-copy p {
  color: rgba(245, 255, 253, 0.7);
  font-size: 1.02rem;
  max-width: 360px;
}

/* Video */
.video-section {
  background: #000;
  padding: 80px 0;
}

.video-card {
  background: var(--lime);
  border-radius: 36px;
  padding: 48px 40px 40px;
  text-align: center;
  background-image: radial-gradient(rgba(0, 0, 0, 0.06) 1px, transparent 1px);
  background-size: 18px 18px;
}

.video-card h2 {
  color: #0a0a0a;
}

.video-card .section-sub {
  color: rgba(10, 10, 10, 0.7);
  margin-bottom: 12px;
}

.video-tagline {
  color: rgba(10, 10, 10, 0.65);
  margin-bottom: 28px;
  font-size: 0.98rem;
}

.video-wrap {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: 22px;
  overflow: hidden;
  background: #0a0a0a;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.video-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  cursor: pointer;
  background:
    radial-gradient(circle at 70% 45%, rgba(194, 250, 105, 0.25), transparent 40%),
    linear-gradient(135deg, #111 0%, #1a1a1a 50%, #0d0d0d 100%);
  display: grid;
  place-items: center;
  padding: 40px;
}

.video-poster-copy {
  position: absolute;
  left: 8%;
  top: 28%;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 0.95;
  font-size: clamp(2rem, 5vw, 3.8rem);
}

.video-poster-lime {
  display: block;
  color: var(--lime);
}

.video-poster-white {
  display: block;
  color: #fff;
}

.video-play {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  display: grid;
  place-items: center;
  backdrop-filter: blur(6px);
  z-index: 1;
}

.video-play svg {
  width: 28px;
  height: 28px;
  margin-left: 3px;
}

.video-wrap.is-playing .video-poster {
  display: none;
}

/* Stats */
.stats-section {
  padding: 80px 0;
  background: #fff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 12px;
}

.stat-value {
  color: var(--text);
}

.stat-suffix {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.7em;
  color: var(--lime-2);
  margin-left: 2px;
  letter-spacing: -0.03em;
}

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

/* Benefits */
.benefits-section {
  background: var(--bg-dark);
  color: #fff;
  border-radius: 40px 40px 0 0;
  padding: 88px 0 40px;
  position: relative;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  background-position: center top;
}

.benefits-section h2 {
  color: #fff;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.benefits-section .section-sub {
  color: rgba(255, 255, 255, 0.6);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 8px;
}

.benefit {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 24px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
}

.benefit-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--lime);
  color: #0a0a0a;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}

.benefit-icon svg {
  width: 22px;
  height: 22px;
}

.benefit h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: auto;
  padding-bottom: 16px;
}

.benefit p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.92rem;
}

.marquee {
  margin-top: 48px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-pill);
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.03);
}

.marquee-track i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 8px rgba(194, 250, 105, 0.7);
  display: inline-block;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Comparison */
.compare-section {
  background: #fff;
  padding-top: 88px;
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}

.compare-col {
  background: var(--bg-cream);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.compare-col.highlight {
  background: #0a0a0a;
  color: #fff;
}

.compare-col h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.x-list,
.check-list-plain {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.x-list li,
.check-list-plain li {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: var(--radius-pill);
  padding: 12px 16px;
  font-size: 0.92rem;
}

.compare-col.highlight .check-list-plain li {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.face {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
}

.face svg {
  width: 22px;
  height: 22px;
  display: block;
}

.compare-col.highlight .btn {
  margin-top: 22px;
  width: 100%;
}

/* Testimonials */
.testimonials-section {
  background: var(--bg-dark);
  color: #fff;
  padding: 40px 0 100px;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  border-radius: 0 0 40px 40px;
  margin-bottom: 24px;
}

.testimonials-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
}

.testimonials-intro {
  position: sticky;
  top: 100px;
}

.testimonials-intro h2 {
  color: #fff;
  text-align: left;
  max-width: 14ch;
}

.testimonials-intro .section-sub {
  text-align: left;
  margin-left: 0;
  color: rgba(255, 255, 255, 0.55);
}

.testimonials-intro .eyebrow {
  margin-bottom: 20px;
}

.testimonial-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  mask-image: linear-gradient(#000 0%, #000 78%, transparent 100%);
  padding-bottom: 40px;
}

.testimonial {
  background: #111;
  border-radius: 24px;
  padding: 24px;
}

.testimonial-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.testimonial-head img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-name {
  font-weight: 600;
  color: #fff;
}

.testimonial-role {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.72rem;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 2px;
}

.testimonial-body {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
}

.quote-bars {
  width: 18px;
  height: 22px;
  margin-top: 2px;
  background:
    linear-gradient(var(--lime), var(--lime)) 0 0 / 6px 100% no-repeat,
    linear-gradient(var(--lime), var(--lime)) 12px 0 / 6px 100% no-repeat;
  border-radius: 2px;
}

.testimonial p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.95rem;
  min-height: 0;
  margin: 0;
}

/* FAQ */
.faq-section {
  background: #fff;
}

.faq-list details {
  margin-bottom: 10px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1.02rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 16px;
  transition: background 0.2s, color 0.2s;
}

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

.faq-list summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--text-muted);
  line-height: 1;
}

.faq-list details[open] summary {
  background: #0a0a0a;
  color: var(--lime);
}

.faq-list details[open] summary::after {
  content: "×";
  color: var(--lime);
}

.faq-answer {
  background: var(--bg-soft);
  border-radius: 16px;
  padding: 16px 20px;
  margin-top: 6px;
}

.faq-answer p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* CTA + Footer shell */
.cta-section {
  padding: 40px 0 48px;
  background: #fff;
}

.cta-shell {
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.cta-card {
  background-color: var(--lime);
  background-image:
    radial-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px),
    linear-gradient(135deg, #c2fa69 0%, #ccfc7e 55%, #b8f055 100%);
  background-size: 16px 16px, auto;
  padding: 48px 48px 0;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: end;
  position: relative;
  min-height: 320px;
}

.cta-copy {
  padding-bottom: 48px;
}

.cta-copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  max-width: 480px;
  margin-bottom: 14px;
  font-weight: 700;
}

.cta-copy p {
  color: rgba(10, 10, 10, 0.72);
  max-width: 420px;
  margin-bottom: 24px;
}

.cta-art {
  max-width: 280px;
  margin-left: auto;
  justify-self: end;
  position: relative;
  z-index: 2;
  margin-bottom: -8px;
}

.site-footer {
  background: #000;
  padding: 28px 24px 36px;
  text-align: center;
}

.footer-brand {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3rem, 12vw, 15.4rem);
  font-weight: 700;
  color: var(--lime);
  letter-spacing: -0.06em;
  line-height: 0.85;
  white-space: nowrap;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .marquee-track,
  .hero-float {
    animation: none;
  }
}

/* Responsive — Framer-like 1200 / 810 */
@media (max-width: 1199px) {
  .container {
    padding: 0 40px;
  }

  h1 {
    font-size: clamp(2.2rem, 6vw, 3.6rem);
  }

  .testimonials-layout {
    gap: 40px;
  }
}

@media (max-width: 960px) {
  .feature-row,
  .feature-row.reverse {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .feature-row.reverse .feature-copy,
  .feature-row.reverse .feature-media {
    order: initial;
  }

  .more-grid,
  .benefit-grid,
  .stats-grid,
  .compare-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-layout {
    grid-template-columns: 1fr;
  }

  .testimonials-intro {
    position: static;
    text-align: center;
  }

  .testimonials-intro h2,
  .testimonials-intro .section-sub {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .process-body {
    grid-template-columns: 1fr;
  }

  .cta-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 36px 28px 0;
  }

  .cta-copy {
    padding-bottom: 16px;
  }

  .cta-copy h2,
  .cta-copy p {
    margin-left: auto;
    margin-right: auto;
  }

  .cta-art {
    margin: 0 auto -4px;
  }

  .hero-float-3 {
    display: none;
  }

  .hero-float-1 {
    width: min(70%, 280px);
    left: 6%;
    top: 10%;
    aspect-ratio: 920 / 610;
  }

  .hero-float-2 {
    width: 14%;
    left: 8%;
    bottom: 10%;
  }

  .footer-brand {
    font-size: clamp(2.2rem, 12vw, 4.5rem);
    max-width: 100%;
  }

  .x-list li,
  .check-list-plain li {
    white-space: normal;
    align-items: flex-start;
  }
}

/* Keep footer brand closer to Framer ~247px at 1440 */
@media (min-width: 1200px) {
  .footer-brand {
    font-size: 15.4rem;
  }

  h1 {
    max-width: none;
    width: 100%;
  }
}

@media (max-width: 809px) {
  .container {
    padding: 0 20px;
  }

  .section {
    padding: 52px 0;
  }

  .stats-section,
  .video-section {
    padding: 52px 0;
  }

  .benefits-section {
    padding: 52px 0 32px;
    border-radius: 28px 28px 0 0;
  }

  .testimonials-section {
    padding: 32px 0 64px;
    border-radius: 0 0 28px 28px;
  }

  .hero {
    padding-top: 40px;
  }

  .hero-device {
    border-width: 6px;
    border-radius: 18px;
    aspect-ratio: 16 / 9;
  }

  .hero-float-1 {
    width: min(68%, 260px);
    left: 5%;
    top: 8%;
  }

  .hero-float-2 {
    width: 13%;
    left: 7%;
    bottom: 8%;
  }

  h1 {
    max-width: none;
    font-size: clamp(1.75rem, 8vw, 2.25rem);
    letter-spacing: -0.04em;
  }

  .section h2,
  .video-card h2,
  .cta-copy h2 {
    font-size: clamp(1.5rem, 5.5vw, 1.875rem);
    letter-spacing: -0.04em;
  }

  .feature-copy h3,
  .compare-col h3 {
    font-size: 1.25rem;
  }

  .more-card h3 {
    font-size: 1.2rem;
  }

  .process-copy h3 {
    font-size: 1.5rem;
  }

  .hero-sub,
  .section-sub {
    font-size: 0.98rem;
  }

  .feature-row,
  .feature-row.reverse {
    padding: 18px;
  }

  .feature-media {
    border-width: 5px;
    border-radius: 18px;
  }

  .more-media {
    border-width: 5px;
    border-radius: 16px;
  }

  .tag-list li {
    font-size: 12px;
    letter-spacing: 0.08em;
    padding: 4px 12px 4px 10px;
  }

  .process-tabs {
    grid-template-columns: 1fr;
  }

  .video-card {
    padding: 28px 18px;
    border-radius: 24px;
  }

  .header-inner {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .site-header .container {
    padding-left: max(20px, env(safe-area-inset-left, 0px));
    padding-right: max(20px, env(safe-area-inset-right, 0px));
  }

  .btn {
    padding: 12px 20px;
    min-height: 44px;
  }

  .btn-lg {
    padding: 14px 24px;
    min-height: 48px;
  }

  .footer-brand {
    font-size: clamp(1.85rem, 11vw, 3.2rem);
    max-width: 100%;
    overflow: hidden;
    text-overflow: clip;
  }

  .testimonial-stack {
    mask-image: none;
    padding-bottom: 8px;
  }

  .x-list li,
  .check-list-plain li {
    padding: 12px 14px;
    font-size: 0.88rem;
    line-height: 1.4;
  }
}
