/* ─── Reset & base ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:      #6DA76A;
  --green-dk:   #4d8a4a;
  --green-txt:  #3a7a37;
  --green-lt:   #e8f5e7;
  --teal:       #116570;
  --teal-lt:    #e6f4f5;
  --turquoise:  #11ADB5;
  --lavender:   #B28EAE;
  --lavender-lt:#f5eef4;
  --cream:      #F7EDDD;
  --dark:       #1a1a1a;
  --muted:      #555555;
  --border:     #e0e0e0;
  --white:      #ffffff;
  --max:        1140px;
  --font:       'Roboto', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --radius:     16px;
}


/* ─── Skip link (accessibility) ──────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  padding: 10px 20px;
  background: #116570;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 0 0 6px 6px;
  z-index: 9999;
  text-decoration: none;
  -webkit-transition: top 0.2s;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ─── Focus-visible styles ────────────────────────────────────────── */
:focus { outline: none; }
:focus-visible {
  outline: 3px solid #005fcc;
  outline-offset: 3px;
  border-radius: 3px;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 18px;
  line-height: 1.65;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }

/* ─── Layout ────────────────────────────────────────────────────── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 40px; }

/* ─── Buttons ───────────────────────────────────────────────────── */
.btn-primary {
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
  gap: 8px;
  padding: 18px 36px;
  background: var(--green);
  color: var(--white);
  font-family: var(--font);
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  -webkit-transition: background 0.2s, -webkit-transform 0.2s, box-shadow 0.2s;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  min-height: 56px;
  text-decoration: none;
}
@media (hover: hover) {
  .btn-primary:hover {
    background: var(--green-dk);
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(109, 167, 106, 0.35);
  }
}
.btn-lg { font-size: 1.25rem; padding: 22px 48px; min-height: 64px; }

/* ─── Nav ───────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  -webkit-transition: border-color 0.2s, box-shadow 0.2s;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.nav.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.nav-inner {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  height: 70px;
}
.nav-logo {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  gap: 8px;
}
.nav-icon     { height: 36px; width: auto; }
.nav-wordmark { height: 24px; width: auto; }

.nav-links {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
  -webkit-transition: color 0.15s;
  transition: color 0.15s;
}
@media (hover: hover) {
  .nav-links a:hover { color: var(--green-txt); }
}
.nav-cta {
  padding: 10px 24px !important;
  background: var(--green);
  color: var(--white) !important;
  border-radius: 50px;
  font-weight: 700 !important;
  -webkit-transition: background 0.2s !important;
  transition: background 0.2s !important;
}
@media (hover: hover) {
  .nav-cta:hover { background: var(--green-dk) !important; color: var(--white) !important; }
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--dark);
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  -webkit-appearance: none;
}

/* ─── Hero ──────────────────────────────────────────────────────── */
.hero {
  padding: 130px 0 80px;
  background: linear-gradient(160deg, var(--white) 50%, var(--green-lt) 100%);
}
.hero-inner {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  gap: 60px;
}
.hero-text { flex: 1; max-width: 580px; }
.hero-badge {
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 6px 16px;
  background: var(--green-lt);
  color: var(--green-dk);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: var(--dark);
}
.hero h1 .green { color: var(--green-txt); }
.hero-sub {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--muted);
  margin-bottom: 36px;
  line-height: 1.6;
}
.hero-note {
  margin-top: 16px;
  font-size: 0.875rem;
  color: #888;
}

/* Hero visual — growing plant */
.hero-visual {
  position: relative;
  width: 360px;
  height: 432px;
  flex-shrink: 0;
}
.plant-svg { width: 100%; height: 100%; overflow: visible; }

/* Soil */
.plant-soil {
  fill: rgba(109,167,106,0.15);
  -webkit-animation: soil-appear 0.5s ease-out 0.1s both;
          animation: soil-appear 0.5s ease-out 0.1s both;
}
@-webkit-keyframes soil-appear {
  from { opacity: 0; -webkit-transform: scaleX(0); transform: scaleX(0); }
  to   { opacity: 1; -webkit-transform: scaleX(1); transform: scaleX(1); }
}
@keyframes soil-appear {
  from { opacity: 0; transform: scaleX(0); }
  to   { opacity: 1; transform: scaleX(1); }
}

/* Sway the whole plant after it finishes growing */
.plant-group {
  transform-box: fill-box;
  transform-origin: bottom center;
  -webkit-animation: plant-sway 5s ease-in-out 5.5s infinite;
          animation: plant-sway 5s ease-in-out 5.5s infinite;
}
@-webkit-keyframes plant-sway {
  0%, 100% { -webkit-transform: rotate(0deg);    transform: rotate(0deg); }
  30%       { -webkit-transform: rotate(2deg);    transform: rotate(2deg); }
  70%       { -webkit-transform: rotate(-1.5deg); transform: rotate(-1.5deg); }
}
@keyframes plant-sway {
  0%, 100% { transform: rotate(0deg); }
  30%       { transform: rotate(2deg); }
  70%       { transform: rotate(-1.5deg); }
}

/* Main stem draws upward */
.plant-stem {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  -webkit-animation: draw-path 2.0s cubic-bezier(0.4,0,0.2,1) 0.5s forwards;
          animation: draw-path 2.0s cubic-bezier(0.4,0,0.2,1) 0.5s forwards;
}

/* Branches draw out from junction */
.plant-branch {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}
.branch-left  { -webkit-animation: draw-path 0.85s ease-out 2.5s forwards; animation: draw-path 0.85s ease-out 2.5s forwards; }
.branch-right { -webkit-animation: draw-path 0.85s ease-out 2.5s forwards; animation: draw-path 0.85s ease-out 2.5s forwards; }
.branch-top   { -webkit-animation: draw-path 0.8s ease-out 2.5s forwards;  animation: draw-path 0.8s ease-out 2.5s forwards; }

/* Top branch group sways in sync with the main plant, just amplified */
.top-branch-group {
  transform-box: fill-box;
  transform-origin: bottom center;
  -webkit-animation: branch-sway 5s ease-in-out 5.5s infinite;
          animation: branch-sway 5s ease-in-out 5.5s infinite;
}
@-webkit-keyframes branch-sway {
  0%, 100% { -webkit-transform: rotate(0deg);  transform: rotate(0deg); }
  30%       { -webkit-transform: rotate(4deg);  transform: rotate(4deg); }
  70%       { -webkit-transform: rotate(-3deg); transform: rotate(-3deg); }
}
@keyframes branch-sway {
  0%, 100% { transform: rotate(0deg); }
  30%       { transform: rotate(4deg); }
  70%       { transform: rotate(-3deg); }
}

/* Leaves unfurl — fill floods in after outline draws */
.plant-leaf {
  fill-opacity: 0;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}
.leaf-1 { -webkit-animation: draw-leaf 0.85s ease-out 1.3s forwards; animation: draw-leaf 0.85s ease-out 1.3s forwards; }
.leaf-2 { -webkit-animation: draw-leaf 0.85s ease-out 1.8s forwards; animation: draw-leaf 0.85s ease-out 1.8s forwards; }
.leaf-3 { -webkit-animation: draw-leaf 0.75s ease-out 2.2s forwards; animation: draw-leaf 0.75s ease-out 2.2s forwards; }
.leaf-4 { -webkit-animation: draw-leaf 0.65s ease-out 3.35s forwards; animation: draw-leaf 0.65s ease-out 3.35s forwards; }
.leaf-5 { -webkit-animation: draw-leaf 0.55s ease-out 4.3s  forwards; animation: draw-leaf 0.55s ease-out 4.3s  forwards; }
.leaf-6 { -webkit-animation: draw-leaf 0.65s ease-out 3.35s forwards; animation: draw-leaf 0.65s ease-out 3.35s forwards; }
.leaf-7   { -webkit-animation: draw-leaf 0.55s ease-out 4.3s  forwards; animation: draw-leaf 0.55s ease-out 4.3s  forwards; }
.leaf-top { -webkit-animation: draw-leaf 0.65s ease-out 3.35s forwards; animation: draw-leaf 0.65s ease-out 3.35s forwards; }

/* Veins appear just after their leaf finishes */
.plant-vein {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}
.vein-1 { -webkit-animation: draw-path 0.4s ease-out 2.15s forwards; animation: draw-path 0.4s ease-out 2.15s forwards; }
.vein-2 { -webkit-animation: draw-path 0.4s ease-out 2.65s forwards; animation: draw-path 0.4s ease-out 2.65s forwards; }
.vein-3 { -webkit-animation: draw-path 0.35s ease-out 2.95s forwards; animation: draw-path 0.35s ease-out 2.95s forwards; }
.vein-4 { -webkit-animation: draw-path 0.3s ease-out 4.0s  forwards; animation: draw-path 0.3s ease-out 4.0s  forwards; }
.vein-5 { -webkit-animation: draw-path 0.25s ease-out 4.85s forwards; animation: draw-path 0.25s ease-out 4.85s forwards; }
.vein-6 { -webkit-animation: draw-path 0.3s ease-out 4.0s  forwards; animation: draw-path 0.3s ease-out 4.0s  forwards; }
.vein-7   { -webkit-animation: draw-path 0.25s ease-out 4.85s forwards; animation: draw-path 0.25s ease-out 4.85s forwards; }
.vein-top { -webkit-animation: draw-path 0.3s  ease-out 4.0s  forwards; animation: draw-path 0.3s  ease-out 4.0s  forwards; }

@-webkit-keyframes draw-leaf {
  0%   { stroke-dashoffset: 1; fill-opacity: 0; }
  65%  { fill-opacity: 0; }
  100% { stroke-dashoffset: 0; fill-opacity: 1; }
}
@keyframes draw-leaf {
  0%   { stroke-dashoffset: 1; fill-opacity: 0; }
  65%  { fill-opacity: 0; }
  100% { stroke-dashoffset: 0; fill-opacity: 1; }
}
@-webkit-keyframes draw-path {
  to { stroke-dashoffset: 0; }
}
@keyframes draw-path {
  to { stroke-dashoffset: 0; }
}

/* ─── Trust bar ─────────────────────────────────────────────────── */
.trust-bar {
  background: var(--cream);
  padding: 18px 0;
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.trust-inner {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.trust-label { font-size: 0.85rem; font-weight: 500; color: #888; text-transform: uppercase; letter-spacing: 0.06em; }
.trust-dot   { color: #bbb; }
.trust-item  { font-size: 1rem; font-weight: 700; color: var(--teal); -webkit-transition: color 0.15s; transition: color 0.15s; }
@media (hover: hover) {
  .trust-item:hover { color: var(--green-txt); }
}

/* ─── Nav trademark ─────────────────────────────────────────────── */
.nav-tm { font-size: 0.55rem; font-weight: 700; vertical-align: super; color: var(--green-dk); margin-left: 1px; line-height: 1; }

/* ─── Section labels ────────────────────────────────────────────── */
.section-label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--green-dk); margin-bottom: 14px; }

/* ─── Stats bar ─────────────────────────────────────────────────── */
.stats-bar { background: var(--dark); color: var(--white); padding: 44px 0 32px; }
.stats-inner { display: -webkit-flex; display: flex; -webkit-justify-content: center; justify-content: center; -webkit-align-items: center; align-items: center; -webkit-flex-wrap: wrap; flex-wrap: wrap; }
.stat-item { text-align: center; padding: 12px 40px; min-width: 190px; }
.stat-n { display: block; font-size: 2.6rem; font-weight: 900; color: var(--green); line-height: 1; }
.stat-l { display: block; font-size: 0.8rem; color: rgba(255,255,255,0.55); margin-top: 6px; max-width: 160px; }
.stat-divider { width: 1px; height: 48px; background: rgba(255,255,255,0.12); }
.stats-source { text-align: center; font-size: 0.7rem; color: rgba(255,255,255,0.3); letter-spacing: 0.05em; padding-bottom: 8px; }

/* ─── Why ───────────────────────────────────────────────────────── */
.why {
  background: var(--teal);
  padding: 80px 0;
  color: var(--white);
  text-align: center;
}
.why-statement { margin-bottom: 40px; }
.why-line {
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.25;
  opacity: 0.85;
  margin-bottom: 12px;
}
.why-line.accent {
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--cream);
  opacity: 1;
}
.why-body {
  max-width: 680px;
  margin: 0 auto;
  font-size: 1.15rem;
  line-height: 1.7;
  opacity: 0.8;
}

/* ─── Features ──────────────────────────────────────────────────── */
.features {
  padding: 100px 0;
  background: var(--cream);
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 56px;
  color: var(--dark);
}
.feature-grid {
  display: -webkit-flex;
  display: flex;
  gap: 28px;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.feature-card {
  -webkit-flex: 1;
  flex: 1;
  min-width: min(280px, 100%);
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 36px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  -webkit-transition: -webkit-transform 0.2s, box-shadow 0.2s;
  transition: transform 0.2s, box-shadow 0.2s;
}
@media (hover: hover) {
  .feature-card:hover {
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  }
}
.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feature-icon svg { width: 26px; height: 26px; }
.green-bg   { background: var(--green-lt);   color: var(--green-dk); }
.teal-bg    { background: var(--teal-lt);    color: var(--teal); }
.lavender-bg { background: var(--lavender-lt); color: var(--lavender); }
.feature-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--dark);
}
.feature-card p { font-size: 1rem; color: var(--muted); line-height: 1.65; }

/* ─── How it works ──────────────────────────────────────────────── */
.how { padding: 100px 0; background: var(--white); }
.steps {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0;
  max-width: 720px;
  margin: 0 auto;
}
.step {
  display: -webkit-flex;
  display: flex;
  gap: 28px;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; }
.step-num {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 900;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  margin-top: 4px;
}
.step-body h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 6px; color: var(--dark); }
.step-body p  { font-size: 1rem; color: var(--muted); line-height: 1.6; }

/* ─── Press ─────────────────────────────────────────────────────── */
.press { padding: 100px 0; background: var(--cream); }
.press-grid {
  display: -webkit-flex;
  display: flex;
  gap: 28px;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.press-card {
  -webkit-flex: 1;
  flex: 1;
  min-width: min(300px, 100%);
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  border: 1px solid var(--border);
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 12px;
  -webkit-transition: border-color 0.2s, box-shadow 0.2s;
  transition: border-color 0.2s, box-shadow 0.2s;
}
@media (hover: hover) {
  .press-card:hover {
    border-color: var(--green);
    box-shadow: 0 8px 30px rgba(109,167,106,0.12);
  }
}
.press-source { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--green-dk); }
.press-headline { font-size: 1.05rem; font-weight: 500; color: var(--dark); line-height: 1.5; -webkit-flex: 1; flex: 1; }
.press-link { font-size: 0.9rem; font-weight: 700; color: var(--green); margin-top: auto; }

/* ─── CTA section ───────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--green) 0%, var(--teal) 100%);
  padding: 100px 0;
  text-align: center;
  color: var(--white);
}
.cta-inner { display: -webkit-flex; display: flex; -webkit-flex-direction: column; flex-direction: column; -webkit-align-items: center; align-items: center; gap: 20px; }
.cta-logo { display: -webkit-flex; display: flex; -webkit-align-items: center; align-items: center; gap: 10px; margin-bottom: 8px; }
.cta-logo-icon     { height: 52px; width: auto; }
.cta-logo-wordmark { height: 34px; width: auto; filter: brightness(0) invert(1); }
.cta-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.cta-section h2 em { font-style: italic; opacity: 0.9; }
.cta-section p { font-size: 1.15rem; opacity: 0.85; max-width: 500px; }
.cta-section .btn-primary {
  background: var(--white);
  color: var(--green-dk);
  margin-top: 8px;
}
@media (hover: hover) {
  .cta-section .btn-primary:hover {
    background: var(--cream);
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  }
}

/* ─── Contact ───────────────────────────────────────────────────── */
.contact-section { padding: 80px 0; background: var(--white); }
.contact-form { max-width: 600px; margin: 32px auto 0; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: -webkit-flex; display: flex; -webkit-flex-direction: column; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font);
  font-size: 16px;
  color: var(--dark);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 11px 14px;
  outline: none;
  width: 100%;
  -webkit-transition: border-color 0.2s;
          transition: border-color 0.2s;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form-group textarea { resize: vertical; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(17,101,112,0.12); }
.btn-full { width: 100%; }
@media (max-width: 600px) {
  .contact-section { padding: 56px 0; }
  .form-row { grid-template-columns: 1fr; }
}

/* ─── Footer ────────────────────────────────────────────────────── */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.5);
  padding: 40px 0;
}
.footer-inner {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: center;
  align-items: center;
  gap: 20px 40px;
}
.footer-logo { display: -webkit-flex; display: flex; -webkit-align-items: center; align-items: center; gap: 8px; }
.footer-logo-icon     { height: 32px; width: auto; }
.footer-logo-wordmark { height: 20px; width: auto; filter: brightness(0) invert(1); opacity: 0.7; }
.footer-links {
  display: -webkit-flex;
  display: flex;
  gap: 24px;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-flex: 1;
  flex: 1;
}
.footer-links a { font-size: 0.85rem; color: rgba(255,255,255,0.45); -webkit-transition: color 0.15s; transition: color 0.15s; }
@media (hover: hover) { .footer-links a:hover { color: var(--white); } }
.footer-social { display: -webkit-flex; display: flex; gap: 16px; -webkit-align-items: center; align-items: center; }
.footer-social a { color: rgba(255,255,255,0.4); -webkit-transition: color 0.15s; transition: color 0.15s; display: -webkit-flex; display: flex; -webkit-align-items: center; align-items: center; }
@media (hover: hover) { .footer-social a:hover { color: var(--white); } }
.footer-copy { width: 100%; font-size: 0.8rem; }
.footer-copy a { color: rgba(255,255,255,0.5); }
@media (hover: hover) { .footer-copy a:hover { color: var(--white); } }

/* ─── Responsive 900px ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner { -webkit-flex-direction: column; flex-direction: column; text-align: center; }
  .hero-visual { width: 280px; height: 336px; }
  .visual-center { width: 100px; height: 100px; padding: 14px; }
  .visual-center img { width: 64px; height: 64px; }
  .hero-badge { margin-left: auto; margin-right: auto; }
  .hero .btn-primary { margin: 0 auto; display: -webkit-flex; display: flex; width: -webkit-fit-content; width: fit-content; }
  .hero-note { text-align: center; }
}

/* ─── Responsive 640px ──────────────────────────────────────────── */
@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .hero { padding: 100px 0 60px; }
  .features, .how, .press { padding: 70px 0; }
  .cta-section { padding: 70px 0; }

  .nav-inner { padding: 0 20px; }
  .nav-toggle { display: -webkit-flex; display: flex; -webkit-align-items: center; align-items: center; -webkit-justify-content: center; justify-content: center; }
  .nav-links {
    display: none;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: var(--white);
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 0;
    padding: 20px 0 28px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .nav-links.open { display: -webkit-flex; display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 14px 28px; font-size: 1rem; min-height: 44px; }
  .nav-cta { margin: 8px 20px 0 !important; border-radius: 50px !important; text-align: center; }

  .feature-grid, .press-grid { -webkit-flex-direction: column; flex-direction: column; }
  .feature-card, .press-card { min-width: 0; }

  .footer-inner { -webkit-flex-direction: column; flex-direction: column; text-align: center; }
  .footer-links, .footer-social { -webkit-justify-content: center; justify-content: center; }
  .footer-logo img { margin: 0 auto; }
}

/* ─── Responsive 375px ──────────────────────────────────────────── */
@media (max-width: 375px) {
  .hero h1 { font-size: 2.4rem; }
  .btn-primary { padding: 16px 28px; font-size: 1rem; }
  .btn-lg { padding: 18px 32px; font-size: 1.1rem; }
}
