/* ============================================================
   Planty Plants — Landing Page
   Dark mode, Material Design + Apple inspired
   ============================================================ */

/* Source Sans 3 – lokal gehostet (DSGVO-konform) */
@font-face {
  font-family: "Source Sans 3";
  src:
    url("assets/fonts/source-sans-3-latin-300-normal.woff2") format("woff2"),
    url("assets/fonts/source-sans-3-latin-300-normal.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Source Sans 3";
  src:
    url("assets/fonts/source-sans-3-latin-300-italic.woff2") format("woff2"),
    url("assets/fonts/source-sans-3-latin-300-italic.woff") format("woff");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Source Sans 3";
  src:
    url("assets/fonts/source-sans-3-latin-400-normal.woff2") format("woff2"),
    url("assets/fonts/source-sans-3-latin-400-normal.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Source Sans 3";
  src:
    url("assets/fonts/source-sans-3-latin-400-italic.woff2") format("woff2"),
    url("assets/fonts/source-sans-3-latin-400-italic.woff") format("woff");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Source Sans 3";
  src:
    url("assets/fonts/source-sans-3-latin-600-normal.woff2") format("woff2"),
    url("assets/fonts/source-sans-3-latin-600-normal.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Source Sans 3";
  src:
    url("assets/fonts/source-sans-3-latin-700-normal.woff2") format("woff2"),
    url("assets/fonts/source-sans-3-latin-700-normal.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* --- Variables --- */
:root {
  --bg: #161b19;
  --surface-1: #1a2420;
  --surface-2: #1e2a25;
  --surface-3: #22302a;
  --surface-4: #24322c;

  --primary: #84d4b0;
  --primary-dim: rgba(132, 212, 176, 0.1);
  --primary-glow: rgba(132, 212, 176, 0.2);
  --primary-border: rgba(132, 212, 176, 0.25);
  --primary-dark: #003726;

  --on-bg: #e2e5e2;
  --on-muted: #c6ceca;
  --on-subtle: #929b96;

  --border: #464e4a;
  --border-subtle: rgba(70, 78, 74, 0.45);

  --font:
    "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --section-py: 6.5rem;
  --container-max: 1140px;
  --t: 0.3s ease;
  --t-slow: 0.65s ease;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--on-bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: var(--primary);
  text-decoration: none;
  transition: opacity var(--t);
}
a:hover {
  opacity: 0.8;
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --- Typography --- */
h1 {
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
}
h2 {
  font-size: clamp(1.75rem, 3vw, 2.625rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
}
h3 {
  font-size: 1.1875rem;
  font-weight: 600;
  line-height: 1.3;
}
p {
  line-height: 1.7;
}
.text-primary {
  color: var(--primary);
}
.text-muted {
  color: var(--on-muted);
}
.text-subtle {
  color: var(--on-subtle);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 12px;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition:
    transform var(--t),
    background var(--t),
    box-shadow var(--t),
    opacity var(--t);
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}
.btn:hover {
  opacity: 1;
}
.btn-sm {
  padding: 0.5625rem 1.25rem;
  font-size: 0.9375rem;
  border-radius: 10px;
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-dark);
}
.btn-primary:hover {
  background: #9adec0;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(132, 212, 176, 0.25);
}

.btn-ghost {
  background: transparent;
  color: var(--on-muted);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  background: var(--surface-2);
  color: var(--on-bg);
  transform: translateY(-1px);
}

.btn-store {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: var(--on-bg);
  color: #111;
  border-radius: 12px;
  font-family: var(--font);
  text-decoration: none;
  transition:
    transform var(--t),
    box-shadow var(--t),
    background var(--t);
}
.btn-store:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  opacity: 1;
}
.btn-store svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.btn-store-label {
  text-align: left;
}
.btn-store-sub {
  display: block;
  font-size: 0.6875rem;
  font-weight: 400;
  opacity: 0.65;
  line-height: 1;
  margin-bottom: 0.15rem;
}
.btn-store-name {
  display: block;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1;
}

/* --- Badge --- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.875rem;
  background: var(--primary-dim);
  color: var(--primary);
  border: 1px solid var(--primary-border);
  border-radius: 50rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  animation: dot-pulse 2s ease-in-out infinite;
}
@keyframes dot-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

/* --- Section utils --- */
.section {
  padding: var(--section-py) 0;
}
.section-label {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.875rem;
  display: block;
}

/* --- Scroll reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity var(--t-slow),
    transform var(--t-slow);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}
.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.125rem 0;
  transition:
    background var(--t),
    backdrop-filter var(--t),
    border-color var(--t);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(22, 27, 25, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border-subtle);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: var(--on-bg);
  font-weight: 700;
  text-decoration: none;
}
.nav-brand:hover {
  opacity: 1;
  color: var(--on-bg);
}
.nav-brand img {
  width: 30px;
  height: 30px;
}
.nav-brand-name {
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 0.9375rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: var(--on-muted);
  font-size: 0.9375rem;
  font-weight: 500;
}
.nav-links a:hover {
  color: var(--on-bg);
  opacity: 1;
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-instagram {
  display: flex;
  align-items: center;
  color: var(--on-subtle);
  text-decoration: none;
  transition:
    color 0.2s,
    opacity 0.2s;
}
.nav-instagram:hover {
  color: var(--on-bg);
  opacity: 1;
}
.lang-toggle {
  background: none;
  border: 1px solid var(--border);
  color: var(--on-subtle);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.625rem;
  border-radius: 4px;
  cursor: pointer;
  transition:
    color 0.2s,
    border-color 0.2s;
  font-family: inherit;
}
.lang-toggle:hover {
  color: var(--on-bg);
  border-color: var(--on-muted);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  display: flex;
  align-items: center;
  padding-top: 7rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
}

/* Background layers */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 900px 700px at 70% 50%,
      rgba(132, 212, 176, 0.055) 0%,
      transparent 65%
    ),
    radial-gradient(
      ellipse 500px 400px at 15% 75%,
      rgba(96, 112, 72, 0.07) 0%,
      transparent 55%
    );
  pointer-events: none;
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(132, 212, 176, 0.065) 1px,
    transparent 1px
  );
  background-size: 36px 36px;
  mask-image: radial-gradient(
    ellipse 80% 70% at 60% 50%,
    black 30%,
    transparent 80%
  );
  -webkit-mask-image: radial-gradient(
    ellipse 80% 70% at 60% 50%,
    black 30%,
    transparent 80%
  );
  pointer-events: none;
}

/* Floating leaf decorations */
.leaf-deco {
  position: absolute;
  pointer-events: none;
  animation: leaf-float 9s ease-in-out infinite;
  opacity: 0.045;
}
.leaf-deco-1 {
  top: 8%;
  left: 3%;
  width: 220px;
  animation-delay: 0s;
}
.leaf-deco-2 {
  bottom: 12%;
  left: 6%;
  width: 140px;
  animation-delay: 3.5s;
  animation-direction: reverse;
}
@keyframes leaf-float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  33% {
    transform: translateY(-16px) rotate(4deg);
  }
  66% {
    transform: translateY(-8px) rotate(-2deg);
  }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}
.hero-content {
  max-width: 580px;
}
.hero-badge {
  margin-bottom: 1.75rem;
}
.hero-title {
  margin-bottom: 1.5rem;
}
.hero-title em {
  font-style: normal;
  color: var(--primary);
}
.hero-subtitle {
  font-size: 1.125rem;
  color: var(--on-muted);
  margin-bottom: 2.5rem;
  max-width: 460px;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  align-items: center;
}
.hero-note {
  margin-top: 1.25rem;
  font-size: 0.8125rem;
  color: var(--on-subtle);
}

/* ============================================================
   PHONE MOCKUP
   ============================================================ */
.phone-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
.phone-glow {
  position: absolute;
  width: 300px;
  height: 420px;
  background: radial-gradient(
    ellipse,
    rgba(132, 212, 176, 0.13) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: 0;
  animation: glow-pulse 5s ease-in-out infinite;
}
@keyframes glow-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

.phone {
  position: relative;
  z-index: 1;
  width: 268px;
  background: var(--surface-3);
  border-radius: 42px;
  border: 1.5px solid rgba(255, 255, 255, 0.07);
  box-shadow:
    0 48px 96px rgba(0, 0, 0, 0.65),
    0 0 0 1px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  overflow: hidden;
  transform: perspective(1200px) rotateY(-10deg) rotateX(3deg);
  animation: float-phone 7s ease-in-out infinite;
}
@keyframes float-phone {
  0%,
  100% {
    transform: perspective(1200px) rotateY(-10deg) rotateX(3deg) translateY(0);
  }
  50% {
    transform: perspective(1200px) rotateY(-10deg) rotateX(3deg)
      translateY(-14px);
  }
}

/* Phone status bar */
.phone-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1.25rem 0.25rem;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--on-muted);
  background: var(--surface-3);
  letter-spacing: 0.02em;
}
.phone-status-icons {
  display: flex;
  align-items: center;
  gap: 4px;
}
.phone-status-icons span {
  font-size: 0.625rem;
}

/* Phone notch */
.phone-notch {
  width: 88px;
  height: 22px;
  background: #0a0f0d;
  border-radius: 0 0 14px 14px;
  margin: 0 auto -4px;
  position: relative;
  z-index: 1;
}

/* Phone header */
.phone-header {
  padding: 0.625rem 1rem 0.75rem;
  background: var(--surface-3);
  border-bottom: 1px solid var(--border-subtle);
}
.phone-header-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--on-bg);
}
.phone-header-sub {
  font-size: 0.625rem;
  color: var(--on-subtle);
  margin-top: 0.1rem;
}

/* Phone screen content */
.phone-screen {
  background: var(--surface-1);
}

/* Journal entries in phone */
.journal-entry {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  padding: 0.6875rem 1rem;
  border-bottom: 1px solid var(--border-subtle);
  opacity: 0;
  animation: entry-in 0.45s ease forwards;
}
.journal-entry:nth-child(1) {
  animation-delay: 0.4s;
}
.journal-entry:nth-child(2) {
  animation-delay: 0.75s;
}
.journal-entry:nth-child(3) {
  animation-delay: 1.1s;
}
.journal-entry:nth-child(4) {
  animation-delay: 1.45s;
}
.journal-entry:nth-child(5) {
  animation-delay: 1.8s;
}
@keyframes entry-in {
  from {
    opacity: 0;
    transform: translateX(-6px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.entry-date {
  font-size: 0.5625rem;
  color: var(--on-subtle);
  min-width: 28px;
  text-align: center;
  line-height: 1.4;
  margin-top: 2px;
}
.entry-date span {
  display: block;
}
.entry-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
  margin-top: 4px;
}
.entry-body {
  flex: 1;
}
.entry-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--on-bg);
  line-height: 1.3;
}
.entry-plant {
  font-size: 0.5875rem;
  color: var(--on-subtle);
  margin-top: 1px;
}
.entry-chip {
  display: inline-block;
  padding: 0.1rem 0.4rem;
  background: var(--primary-dim);
  color: var(--primary);
  border-radius: 50rem;
  font-size: 0.5375rem;
  font-weight: 600;
  margin-top: 3px;
  border: 1px solid var(--primary-border);
}

/* Plan entries in phone */
.plan-entry {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border-subtle);
}
.plan-check {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  flex-shrink: 0;
}
.plan-check.done {
  background: var(--primary);
  border-color: var(--primary);
}
.plan-body {
  flex: 1;
}
.plan-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--on-bg);
  line-height: 1.3;
}
.plan-plant {
  font-size: 0.5875rem;
  color: var(--on-subtle);
  margin-top: 1px;
}
.plan-when {
  font-size: 0.5875rem;
  color: var(--primary);
  font-weight: 600;
  white-space: nowrap;
}
.plan-when.soon {
  color: var(--on-subtle);
}

/* Collection grid in phone */
.phone-collection {
  padding: 0.625rem;
  background: var(--surface-1);
}
.phone-collection-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.plant-mini-card {
  background: var(--surface-2);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}
.plant-mini-thumb {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background: var(--surface-3);
}
.plant-mini-info {
  padding: 0.3125rem 0.4375rem 0.4375rem;
}
.plant-mini-name {
  font-size: 0.5625rem;
  font-weight: 600;
  color: var(--on-bg);
  line-height: 1.3;
}
.plant-mini-genus {
  font-size: 0.5rem;
  color: var(--on-subtle);
  margin-top: 1px;
}

/* ============================================================
   FEATURE PILLARS
   ============================================================ */
.pillars {
  padding: 0 0 var(--section-py);
  border-bottom: 1px solid var(--border-subtle);
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.pillar {
  padding: 1.875rem 1.5rem;
  background: var(--surface-1);
  border-radius: 16px;
  border: 1px solid var(--border-subtle);
  transition:
    background var(--t),
    border-color var(--t),
    transform var(--t);
}
.pillar:hover {
  background: var(--surface-2);
  border-color: var(--primary-border);
  transform: translateY(-3px);
}
.pillar-icon {
  width: 44px;
  height: 44px;
  background: var(--primary-dim);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--primary);
}
.pillar-icon svg {
  width: 22px;
  height: 22px;
}
.pillar h3 {
  margin-bottom: 0.4375rem;
}
.pillar p {
  font-size: 0.9rem;
  color: var(--on-muted);
  line-height: 1.6;
}

/* ============================================================
   FEATURE SECTIONS (alternating)
   ============================================================ */
.feature {
  padding: var(--section-py) 0;
}
.feature + .feature {
  border-top: 1px solid var(--border-subtle);
}

.feature-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.feature-inner.reverse {
  direction: rtl;
}
.feature-inner.reverse > * {
  direction: ltr;
}

.feature-number {
  font-size: 5.5rem;
  font-weight: 700;
  color: rgba(132, 212, 176, 0.065);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: -1.75rem;
  font-variant-numeric: tabular-nums;
  user-select: none;
}
.feature h2 {
  margin-bottom: 1rem;
}
.feature-body {
  font-size: 1.0625rem;
  color: var(--on-muted);
  line-height: 1.75;
  margin-bottom: 1.875rem;
}
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: 2rem;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: var(--on-muted);
}
.feature-list li::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background: var(--primary-dim);
  border: 1px solid var(--primary-border);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.5 8l3.5 3.5 5.5-7' stroke='%2384D4B0' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 11px;
}

/* Phone mockup frame for non-hero sections */
.phone-frame-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.phone-frame-wrap::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 380px;
  background: radial-gradient(
    ellipse,
    rgba(132, 212, 176, 0.1) 0%,
    transparent 65%
  );
  border-radius: 50%;
}
.phone-sm {
  position: relative;
  z-index: 1;
  width: 248px;
  background: var(--surface-3);
  border-radius: 38px;
  border: 1.5px solid rgba(255, 255, 255, 0.07);
  box-shadow:
    0 32px 64px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

/* ============================================================
   QUOTE SECTION
   ============================================================ */
.quote-section {
  padding: calc(var(--section-py) * 2) 0;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(
      to bottom,
      rgba(10, 20, 14, 0.72) 0%,
      rgba(10, 20, 14, 0.58) 50%,
      rgba(10, 20, 14, 0.78) 100%
    ),
    url("assets/mood-quote.jpg") center center / cover no-repeat;
}
.quote-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.quote-text {
  font-size: clamp(1.5rem, 3vw, 2.375rem);
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
  font-style: italic;
  margin-bottom: 2rem;
  letter-spacing: 0.01em;
}
.quote-text strong {
  font-style: normal;
  font-weight: 600;
  color: var(--primary);
}
.quote-author {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.4);
  font-style: normal;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============================================================
   VALUES SECTION
   ============================================================ */
.values-section {
  padding: var(--section-py) 0;
}
.values-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 3.5rem;
}
.values-header h2 {
  margin-bottom: 1rem;
}
.values-header p {
  color: var(--on-muted);
  font-size: 1.0625rem;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.value-card {
  padding: 2rem 1.75rem;
  background: var(--surface-1);
  border-radius: 18px;
  border: 1px solid var(--border-subtle);
  transition:
    background var(--t),
    border-color var(--t),
    transform var(--t),
    box-shadow var(--t);
}
.value-card:hover {
  background: var(--surface-2);
  border-color: var(--primary-border);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}
.value-icon {
  font-size: 2rem;
  margin-bottom: 1.125rem;
  display: block;
}
.value-card h3 {
  margin-bottom: 0.625rem;
  color: var(--on-bg);
}
.value-card p {
  font-size: 0.9375rem;
  color: var(--on-muted);
  line-height: 1.7;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  padding: var(--section-py) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(
    ellipse,
    rgba(132, 212, 176, 0.07) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 0 auto;
}
.cta-section h2 {
  margin-bottom: 1rem;
}
.cta-section p {
  color: var(--on-muted);
  font-size: 1.0625rem;
  margin-bottom: 2.5rem;
}
.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.cta-note {
  margin-top: 1.25rem;
  font-size: 0.8125rem;
  color: var(--on-subtle);
}

/* Web app note */
.web-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--on-muted);
  font-size: 0.9375rem;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1px;
  transition:
    color var(--t),
    border-color var(--t);
}
.web-link:hover {
  color: var(--primary);
  border-color: var(--primary-border);
  opacity: 1;
}

/* ============================================================
   HERO MOCKUP
   ============================================================ */
.hero-mockup {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-mockup img {
  width: 100%;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  /* box-shadow: 0 20px 60px rgba(0,0,0,0.25); */
  animation: float-hero-mockup 7s ease-in-out infinite;
}
@keyframes float-hero-mockup {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

/* ============================================================
   FEATURES SECTION
   ============================================================ */
.features-section {
  background: var(--bg);
}
.feature-row {
  padding: 5rem 0;
  background: var(--bg);
}
.feature-row:nth-child(even) {
  background: var(--surface-1);
}
.feature-row-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.feature-row--reverse .feature-row-inner {
  direction: rtl;
}
.feature-row--reverse .feature-row-inner > * {
  direction: ltr;
}
.feature-row-img {
  display: flex;
  justify-content: center;
}
.feature-row-img img {
  width: 100%;
  max-width: 280px;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.28));
  transition: transform 0.4s ease;
}
.feature-row-img img:hover {
  transform: translateY(-6px);
}
.feature-row-text .section-label {
  margin-bottom: 1rem;
  display: block;
}
.feature-row-h {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 1.25rem;
  color: var(--on-bg);
}
.feature-row-text p {
  font-size: 1.0625rem;
  color: var(--on-muted);
  line-height: 1.8;
}
.feature-row-aside {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
  font-size: clamp(1.125rem, 1.75vw, 1.375rem) !important;
  font-weight: 300;
  font-style: italic;
  color: var(--on-bg) !important;
  line-height: 1.6;
}
.feature-row-aside-body {
  margin-top: 0.875rem;
  font-size: 0.9375rem !important;
  color: var(--on-subtle) !important;
  font-style: normal;
  line-height: 1.75;
}

/* ============================================================
   IDEAS (PHILOSOPHY + CLOSING) SIDE BY SIDE
   ============================================================ */
.ideas-section {
  background: var(--surface-2);
}
.ideas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem 6rem;
  align-items: start;
}
.idea-block {
}
.philosophy-text {
  font-size: clamp(1.375rem, 2.25vw, 1.75rem);
  font-weight: 300;
  line-height: 1.5;
  color: var(--on-bg);
  margin-bottom: 1.5rem;
}
.philosophy-body {
  font-size: 1rem;
  color: var(--on-muted);
  line-height: 1.8;
}
.closing-text {
  font-size: clamp(1rem, 1.75vw, 1.25rem);
  font-weight: 300;
  color: var(--on-subtle);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.closing-emphasis {
  font-size: clamp(1.375rem, 2.25vw, 1.75rem);
  font-weight: 400;
  color: var(--on-bg);
  line-height: 1.5;
  font-style: italic;
}

@media (max-width: 768px) {
  .feature-row-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .feature-row--reverse .feature-row-inner {
    direction: ltr;
  }
  .feature-row-img img {
    max-width: 220px;
  }
  .ideas-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* ============================================================
   NOTIFY SECTION
   ============================================================ */
.notify-section {
  background: var(--surface-1);
}
.notify-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.notify-text .section-label {
  margin-bottom: 1rem;
}
.notify-text h2 {
  margin-bottom: 1rem;
}
.notify-text p {
  color: var(--on-muted);
  font-size: 1rem;
  line-height: 1.75;
}
.notify-form-wrap {
  max-width: 460px;
}

@media (max-width: 768px) {
  .notify-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .notify-form-wrap {
    max-width: 100%;
  }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: 3.5rem 0 0;
  border-top: 1px solid var(--border-subtle);
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 4rem;
  align-items: start;
  padding-bottom: 3rem;
}
.footer-right-cols {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}
.footer-col-brand {
  max-width: 260px;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  color: var(--on-muted);
  font-weight: 700;
  font-size: 0.9375rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 0.625rem;
}
.footer-brand:hover {
  opacity: 1;
  color: var(--on-bg);
}
.footer-brand img {
  width: 22px;
  height: 22px;
}
.footer-tagline {
  font-size: 0.8125rem;
  color: var(--on-subtle);
  line-height: 1.6;
}
.footer-col-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--on-subtle);
  margin-bottom: 0.875rem;
}
.footer-instagram {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--on-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-instagram:hover {
  color: var(--on-bg);
}
.footer-instagram svg {
  flex-shrink: 0;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.footer-links a {
  font-size: 0.875rem;
  color: var(--on-subtle);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--on-muted);
}
.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding: 1.25rem 0;
  font-size: 0.8125rem;
  color: var(--on-subtle);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  :root {
    --section-py: 5rem;
  }

  .nav-links {
    display: none;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content {
    max-width: 100%;
  }
  .hero-subtitle {
    max-width: 100%;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-note {
    text-align: center;
  }
  .phone-wrap {
    order: -1;
  }
  .phone {
    transform: none;
    animation: float-phone-mobile 7s ease-in-out infinite;
  }
  @keyframes float-phone-mobile {
    0%,
    100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-12px);
    }
  }

  .feature-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .feature-inner.reverse {
    direction: ltr;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }

  .footer-col-brand {
    grid-column: 1 / -1;
  }
  .footer-bottom {
    text-align: center;
  }
}

@media (max-width: 640px) {
  :root {
    --section-py: 3.75rem;
  }

  .hero {
    padding-top: 5.5rem;
  }
  .phone {
    width: 224px;
  }
  .phone-sm {
    width: 210px;
  }
  .feature-number {
    font-size: 3.75rem;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-col-brand {
    max-width: 100%;
  }
  .footer-right-cols {
    flex-wrap: wrap;
    gap: 2rem;
  }
  .ea-grid {
    grid-template-columns: 1fr;
  }
  .timeline-scroll {
    padding-bottom: 1.5rem;
  }
}

/* ============================================================
   NAV — mobile: Instagram + Badge ausblenden
   ============================================================ */
@media (max-width: 640px) {
  .nav-instagram,
  .nav-cta .badge-launch {
    display: none;
  }
}

/* ============================================================
   NAV — bigger logo
   ============================================================ */
.nav-brand img {
  width: 40px;
  height: 40px;
}
.nav-brand-name {
  font-size: 1.0625rem;
}

/* ============================================================
   HERO — typewriter effect
   ============================================================ */
/* Typewriter — fixed-height line so layout doesn't jump */
.tw-line {
  display: block;
  min-height: 1.18em;
}
.tw-word {
  color: var(--primary);
}
.tw-cursor {
  display: inline-block;
  width: 3px;
  height: 0.78em;
  background: var(--primary);
  margin-left: 3px;
  vertical-align: middle;
  border-radius: 2px;
  animation: cursor-blink 1s ease-in-out infinite;
}
@keyframes cursor-blink {
  0%,
  60% {
    opacity: 1;
  }
  80%,
  100% {
    opacity: 0;
  }
}

/* Pre-launch badge variant */
.badge-launch {
  background: rgba(230, 138, 0, 0.1);
  color: #ffb74d;
  border-color: rgba(230, 138, 0, 0.3);
}
.badge-launch .badge-dot {
  background: #ffb74d;
}

/* ============================================================
   FEATURE BULLETS — bigger
   ============================================================ */
.feature-list li {
  font-size: 1.0625rem;
  color: var(--on-muted);
}

/* ============================================================
   PHONE CYCLING
   ============================================================ */
.phone-screens {
  position: relative;
}
.phone-screen-state {
  display: none;
}
.phone-screen-state.active {
  display: block;
  animation: screen-in 0.4s ease;
}
@keyframes screen-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.phone-tabs {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 1.25rem;
  position: relative;
  z-index: 2;
}
.phone-tab-dot {
  height: 6px;
  width: 6px;
  border-radius: 3px;
  background: var(--border);
  border: none;
  padding: 0;
  cursor: pointer;
  transition:
    width var(--t),
    background var(--t);
  flex-shrink: 0;
}
.phone-tab-dot.active {
  background: var(--primary);
  width: 22px;
}

/* ============================================================
   TIMELINE SECTION — Vertical alternating story
   ============================================================ */
.timeline-section {
  padding: var(--section-py) 0;
  background: var(--surface-1);
  overflow: hidden;
}
.timeline-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}
.timeline-header h2 {
  margin-bottom: 1rem;
}
.timeline-header p {
  color: var(--on-muted);
  font-size: 1.0625rem;
}

/* Vertical track */
.v-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 1rem 0 2rem;
}
.v-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    var(--border) 8%,
    var(--border) 78%,
    var(--primary) 100%
  );
  z-index: 0;
}

/* Each timeline item: 3 columns — card | node | spacer (or reversed) */
.v-tl-item {
  display: grid;
  grid-template-columns: 1fr 48px 1fr;
  gap: 0 1.75rem;
  margin-bottom: 2.25rem;
  align-items: start;
}
/* Left: card | node | empty */
.v-tl-item[data-side="left"] .v-tl-card {
  grid-column: 1;
  grid-row: 1;
}
.v-tl-item[data-side="left"] .v-tl-node {
  grid-column: 2;
  grid-row: 1;
}
.v-tl-item[data-side="left"] .v-tl-space {
  grid-column: 3;
  grid-row: 1;
}
/* Right: empty | node | card */
.v-tl-item[data-side="right"] .v-tl-space {
  grid-column: 1;
  grid-row: 1;
}
.v-tl-item[data-side="right"] .v-tl-node {
  grid-column: 2;
  grid-row: 1;
}
.v-tl-item[data-side="right"] .v-tl-card {
  grid-column: 3;
  grid-row: 1;
}

/* Node — dot + label */
.v-tl-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 1.125rem;
  position: relative;
  z-index: 1;
}
.v-tl-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--surface-3);
  border: 2px solid var(--border);
  flex-shrink: 0;
  transition:
    background var(--t),
    border-color var(--t),
    box-shadow var(--t);
}
.v-tl-dot.done {
  background: var(--primary);
  border-color: var(--primary);
}
.v-tl-dot.glow {
  background: var(--primary);
  border-color: var(--primary);
  width: 20px;
  height: 20px;
  box-shadow:
    0 0 0 5px rgba(132, 212, 176, 0.2),
    0 0 0 10px rgba(132, 212, 176, 0.07);
}
.v-tl-label {
  font-size: 0.625rem;
  font-weight: 600;
  color: var(--on-subtle);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.4rem;
  white-space: nowrap;
}

/* Card */
.v-tl-card {
  background: var(--surface-2);
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  overflow: hidden;
  transition:
    transform var(--t-slow),
    border-color var(--t),
    box-shadow var(--t);
}
.v-tl-card:hover {
  transform: translateY(-5px);
  border-color: rgba(132, 212, 176, 0.2);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
}
.v-tl-card-milestone {
  border-color: var(--primary-border);
  box-shadow:
    0 0 0 1px rgba(132, 212, 176, 0.15),
    0 24px 64px rgba(0, 0, 0, 0.45);
}

/* Photo area */
.v-tl-photo {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.75rem;
  position: relative;
  overflow: hidden;
}
.v-tl-photo-milestone {
  height: 180px;
  font-size: 3.25rem;
}
.v-tl-photo-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  padding: 0.2rem 0.6rem;
  background: rgba(76, 140, 100, 0.2);
  color: #81c784;
  border: 1px solid rgba(76, 140, 100, 0.3);
  border-radius: 50rem;
  font-size: 0.6875rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
/* Grain overlay for photo depth */
.v-tl-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  mix-blend-mode: overlay;
  opacity: 0.4;
}

/* Card content */
.v-tl-content {
  padding: 1.125rem 1.25rem 1.25rem;
}
.v-tl-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
}
.v-tl-date {
  font-size: 0.75rem;
  color: var(--on-subtle);
}
.v-tl-tag {
  font-size: 0.625rem;
  font-weight: 600;
  padding: 0.15rem 0.5rem;
  border-radius: 50rem;
  border: 1px solid;
}
.v-tl-tag.start {
  color: var(--primary);
  border-color: var(--primary-border);
  background: var(--primary-dim);
}
.v-tl-tag.care {
  color: #4fc3f7;
  border-color: rgba(79, 195, 247, 0.25);
  background: rgba(79, 195, 247, 0.08);
}
.v-tl-tag.growth {
  color: #81c784;
  border-color: rgba(129, 199, 132, 0.25);
  background: rgba(129, 199, 132, 0.08);
}
.v-tl-tag.obs {
  color: #ffb74d;
  border-color: rgba(255, 183, 77, 0.25);
  background: rgba(255, 183, 77, 0.08);
}
.v-tl-tag.solved {
  color: #a2ced2;
  border-color: rgba(162, 206, 210, 0.25);
  background: rgba(162, 206, 210, 0.08);
}
.v-tl-tag.milestone {
  color: var(--primary);
  border-color: var(--primary-border);
  background: var(--primary-dim);
}
.v-tl-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--on-bg);
  margin-bottom: 0.375rem;
  line-height: 1.3;
}
.v-tl-desc {
  font-size: 0.875rem;
  color: var(--on-muted);
  line-height: 1.65;
}

/* Stats strip (milestone card) */
.v-tl-stats {
  display: flex;
  gap: 0;
  margin-top: 1rem;
  padding-top: 0.875rem;
  border-top: 1px solid var(--border-subtle);
}
.v-tl-stat {
  flex: 1;
  text-align: center;
}
.v-tl-stat + .v-tl-stat {
  border-left: 1px solid var(--border-subtle);
}
.v-tl-stat-num {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}
.v-tl-stat-label {
  display: block;
  font-size: 0.6875rem;
  color: var(--on-subtle);
  margin-top: 0.25rem;
}

/* Responsive: collapse to single-column on mobile */
@media (max-width: 700px) {
  .v-timeline::before {
    left: 20px;
    transform: none;
  }
  .v-tl-item {
    grid-template-columns: 44px 1fr;
    grid-template-rows: auto;
  }
  .v-tl-item[data-side="left"] .v-tl-card,
  .v-tl-item[data-side="right"] .v-tl-card {
    grid-column: 2;
    grid-row: 1;
  }
  .v-tl-item[data-side="left"] .v-tl-node,
  .v-tl-item[data-side="right"] .v-tl-node {
    grid-column: 1;
    grid-row: 1;
  }
  .v-tl-space {
    display: none !important;
  }
}

/* ============================================================
   EARLY ACCESS SECTION
   ============================================================ */
.early-access {
  padding: var(--section-py) 0;
  position: relative;
}
.early-access::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 700px 500px at 50% 0%,
    rgba(132, 212, 176, 0.04) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.ea-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 3.5rem;
  position: relative;
  z-index: 1;
}
.ea-header h2 {
  margin-bottom: 1rem;
}
.ea-header p {
  color: var(--on-muted);
  font-size: 1.0625rem;
}
.ea-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}
.ea-card {
  background: var(--surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 2.25rem;
  transition:
    border-color var(--t),
    background var(--t),
    transform var(--t);
}
.ea-card:hover {
  border-color: var(--primary-border);
  transform: translateY(-3px);
}
.ea-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.75rem;
  border-radius: 50rem;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.ea-card-badge.beta {
  background: rgba(132, 212, 176, 0.1);
  color: var(--primary);
  border: 1px solid var(--primary-border);
}
.ea-card-badge.notify {
  background: rgba(160, 206, 210, 0.1);
  color: #a2ced2;
  border: 1px solid rgba(162, 206, 210, 0.25);
}
.ea-card h3 {
  font-size: 1.3125rem;
  margin-bottom: 0.625rem;
}
.ea-card > p {
  font-size: 0.9375rem;
  color: var(--on-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.ea-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}
.ea-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  color: var(--on-muted);
}
.ea-list li::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background: var(--primary-dim);
  border: 1px solid var(--primary-border);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.5 8l3.5 3.5 5.5-7' stroke='%2384D4B0' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}

/* Email form in EA card */
.email-form {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.subscription-options {
  margin: 0 0 0.375rem;
  padding: 0;
  border: 0;
}
.subscription-options legend {
  font-size: 0.8125rem;
  color: var(--on-muted);
  margin-bottom: 0.45rem;
}
.subscription-option {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--on-bg);
  margin-bottom: 0.35rem;
  cursor: pointer;
}
.subscription-option input[type="radio"] {
  margin-top: 0.15em;
  accent-color: var(--primary);
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.email-field {
  display: flex;
  gap: 0.5rem;
}
.email-input {
  flex: 1;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.625rem 1rem;
  font-family: var(--font);
  font-size: 0.9375rem;
  color: var(--on-bg);
  outline: none;
  min-width: 0;
  transition:
    border-color var(--t),
    box-shadow var(--t);
}
.email-input::placeholder {
  color: var(--on-subtle);
}
.email-input:focus {
  border-color: var(--primary-border);
  box-shadow: 0 0 0 3px rgba(132, 212, 176, 0.12);
}
.email-submit {
  background: var(--primary);
  color: var(--primary-dark);
  border: none;
  border-radius: 10px;
  padding: 0.625rem 1.125rem;
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition:
    background var(--t),
    transform var(--t);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.email-submit:hover {
  background: #9adec0;
  transform: translateY(-1px);
}
.email-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--on-subtle);
  cursor: pointer;
  line-height: 1.4;
}
.email-consent input[type="checkbox"] {
  flex-shrink: 0;
  margin-top: 0.15em;
  accent-color: var(--primary);
  width: 14px;
  height: 14px;
}
.email-consent a {
  color: var(--primary);
}
.email-form-note {
  font-size: 0.75rem;
  color: var(--on-subtle);
}
.email-form-note--success {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
  background: rgba(132, 212, 176, 0.12);
  border: 1px solid rgba(132, 212, 176, 0.25);
  border-radius: 10px;
  padding: 0.625rem 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.email-form-note--error {
  font-size: 0.875rem;
  font-weight: 500;
  color: #ffb4ab;
  background: rgba(147, 0, 10, 0.2);
  border: 1px solid rgba(255, 100, 90, 0.25);
  border-radius: 10px;
  padding: 0.625rem 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
