/* ── Hero ────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
  background: var(--white);
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}
.hero-glow-1 {
  width: 600px; height: 600px;
  background: rgba(93,202,165,0.15);
  top: -80px; right: -60px;
}
.hero-glow-2 {
  width: 400px; height: 400px;
  background: rgba(45,62,62,0.06);
  bottom: 0; left: 10%;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  position: relative; z-index: 2;
}
.hero-h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(42px, 5.5vw, 70px);
  line-height: 1.06;
  letter-spacing: -0.01em;
  color: var(--teal);
  margin-bottom: 22px;
}
.hero-h1 em { font-style: italic; color: var(--mint); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 36px; }
.trust-note {
  display: flex; align-items: center; gap: 8px;
  margin-top: 24px; font-size: 13px; color: var(--muted);
}
.trust-note svg { width: 16px; height: 16px; color: var(--mint); }

/* Phone visual ---------------------------------------------------- */
.phone-wrap {
  position: relative;
  display: flex; justify-content: center; align-items: center;
}
.phone-glow {
  position: absolute;
  width: 70%; height: 70%;
  background: radial-gradient(ellipse, rgba(93,202,165,0.25) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: glow-breathe 6s ease-in-out infinite;
}
@keyframes glow-breathe {
  0%,100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.12); opacity: 1; }
}
.phone-img {
  width: 100%; max-width: 500px; position: relative; z-index: 1;
  filter: drop-shadow(0 40px 60px rgba(45,62,62,0.20));
  animation: phone-float 7s ease-in-out infinite;
}
@keyframes phone-float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}
@media (prefers-reduced-motion: reduce) {
  .phone-img { animation: none; }
  .phone-glow { animation: none; }
}

/* Floating glass chips -------------------------------------------- */
.chip {
  position: absolute; z-index: 3;
  display: flex; align-items: center; gap: 10px;
  padding: 10px 16px; border-radius: 100px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(45,62,62,0.10);
  box-shadow: 0 10px 30px rgba(45,62,62,0.12);
  backdrop-filter: blur(12px);
  font-size: 13px; font-weight: 600; color: var(--ink);
  white-space: nowrap;
}
.chip svg { width: 16px; height: 16px; color: var(--mint); flex-shrink: 0; }
.chip-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--mint); flex-shrink: 0; }
.chip-a { top: 8%; left: -5%; animation: chip-float 5s ease-in-out infinite; }
.chip-b { top: 38%; right: -8%; animation: chip-float 6.5s ease-in-out infinite 1.4s; }
.chip-c { bottom: 20%; left: -2%; animation: chip-float 5.5s ease-in-out infinite 0.7s; }
@keyframes chip-float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
@media (max-width: 860px) {
  .chip { display: none; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-actions { justify-content: center; }
  .trust-note { justify-content: center; }
  .hero-h1 { font-size: clamp(36px, 9vw, 52px); }
}

/* Scroll cue ------------------------------------------------------ */
.scroll-cue {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  animation: cue-bounce 2.5s ease-in-out infinite;
}
.scroll-cue span { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.scroll-cue svg { width: 18px; height: 18px; color: var(--mint); }
@keyframes cue-bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(7px)} }

/* ── Stats strip ─────────────────────────────────────────────────── */
.stats-strip {
  padding: 0;
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-inner {
  display: grid; grid-template-columns: repeat(3, 1fr);
  divide-x: 1px solid var(--border);
}
.stat-item {
  padding: 40px 32px;
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 4px;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--serif);
  font-size: 42px; font-weight: 300;
  color: var(--teal); line-height: 1;
  letter-spacing: -0.02em;
}
.stat-num em { font-style: normal; color: var(--mint); }
.stat-label { font-size: 14px; color: var(--muted); }
@media (max-width: 640px) {
  .stats-inner { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }
}

/* ── Feature rows ────────────────────────────────────────────────── */
.feat-section { padding: 100px 0; }
.feat-section.bg-cream { background: var(--cream); }
.feat-section.bg-teal { background: var(--teal); }
.feat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.feat-grid.flip .feat-text { order: 2; }
.feat-grid.flip .feat-visual { order: 1; }
@media (max-width: 860px) {
  .feat-grid, .feat-grid.flip { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .feat-grid.flip .feat-text, .feat-grid.flip .feat-visual { order: unset; }
  .check-item { justify-content: center; }
}
.feat-h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3.8vw, 46px);
  font-weight: 300; line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--teal); margin: 8px 0 18px;
}
.feat-h2-light { color: #FFFFFF; }
.feat-visual { display: flex; justify-content: center; position: relative; }
.feat-mockup {
  width: 100%; max-width: 430px;
  filter: drop-shadow(0 30px 50px rgba(45,62,62,0.16));
  transition: transform 0.5s ease;
}
.feat-mockup:hover { transform: translateY(-10px); }
.feat-mockup-lg {
  max-width: 600px;
  margin: -60px 0;
}
@media (max-width: 860px) {
  .feat-mockup-lg { max-width: 340px; margin: 0; }
}
.feat-glow {
  position: absolute; width: 60%; height: 60%; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(93,202,165,0.18), transparent 70%);
  pointer-events: none; z-index: -1;
}
.feat-glow-dark {
  background: radial-gradient(ellipse, rgba(255,255,255,0.08), transparent 70%);
}

/* ── Capabilities ────────────────────────────────────────────────── */
.caps-section { padding: 100px 0; background: var(--white); }
.caps-heading { text-align: center; margin-bottom: 56px; }
.caps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
}
@media (max-width: 860px) { .caps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .caps-grid { grid-template-columns: repeat(2, 1fr); } }
.cap-card {
  background: var(--white); padding: 32px 24px;
  display: flex; flex-direction: column; gap: 12px;
  transition: background 0.25s, transform 0.25s;
}
.cap-card:hover { background: var(--teal); }
.cap-card:hover .cap-icon { background: rgba(255,255,255,0.12); }
.cap-card:hover .cap-icon svg { color: var(--mint); }
.cap-card:hover .cap-label { color: #fff; }
.cap-card:hover .cap-desc { color: rgba(255,255,255,0.6); }
.cap-icon {
  width: 46px; height: 46px; border-radius: 14px;
  background: var(--cream); display: flex; align-items: center; justify-content: center;
  transition: background 0.25s;
}
.cap-icon svg { width: 22px; height: 22px; color: var(--teal); transition: color 0.25s; }
.cap-label { font-size: 16px; font-weight: 600; color: var(--teal); transition: color 0.25s; }
.cap-desc { font-size: 13px; color: var(--muted); line-height: 1.5; transition: color 0.25s; }

/* ── Story band ──────────────────────────────────────────────────── */
.story-band {
  padding: 100px 0;
  background: var(--cream);
  text-align: center;
}
.story-band-h { font-family: var(--serif); font-weight: 300; font-size: clamp(28px, 4vw, 48px); color: var(--teal); line-height: 1.1; letter-spacing: -0.01em; margin-bottom: 20px; }

/* ── Story page ──────────────────────────────────────────────────── */
.story-page { padding: 160px 0 80px; }
.story-page-h { font-family: var(--serif); font-weight: 300; font-size: clamp(36px, 5vw, 60px); color: var(--teal); line-height: 1.08; letter-spacing: -0.01em; margin-bottom: 14px; }
.story-body { max-width: 660px; margin: 0 auto; }
.story-body p { font-size: 18px; line-height: 1.78; color: var(--ink); margin-bottom: 24px; }
.tribute {
  background: var(--teal); border-radius: 24px;
  padding: 56px 48px; margin-top: 64px; text-align: center;
  position: relative; overflow: hidden;
}
.tribute::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 600px 400px at 80% -20%, rgba(93,202,165,0.18), transparent 70%);
  pointer-events: none;
}
.tribute-photo {
  width: 96px; height: 96px; border-radius: 50%;
  overflow: hidden; margin: 0 auto 20px;
  border: 3px solid rgba(255,255,255,0.2);
}
.tribute-photo img { width: 100%; height: 100%; object-fit: cover; }
.tribute h3 { font-family: var(--serif); font-weight: 300; font-size: 30px; color: #fff; margin-bottom: 4px; }
.tribute-sub { font-size: 13px; color: var(--mint); margin-bottom: 28px; }
.tribute p { font-size: 16px; color: rgba(255,255,255,0.78); line-height: 1.75; max-width: 540px; margin: 0 auto 18px; }
.tribute .signoff { font-weight: 600; color: #fff; margin-top: 20px; font-size: 15px; }

/* ── Download page ───────────────────────────────────────────────── */
.download-page { padding: 160px 0 80px; text-align: center; }
.download-page h1 { font-family: var(--serif); font-weight: 300; font-size: clamp(34px, 5vw, 56px); color: var(--teal); line-height: 1.1; letter-spacing: -0.01em; margin-bottom: 16px; }
.email-form { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-top: 32px; }
.email-form input {
  flex: 1; min-width: 220px; max-width: 320px;
  padding: 15px 22px; border-radius: 100px;
  border: 1.5px solid var(--border); font-family: var(--sans); font-size: 15px;
  outline: none; transition: border-color 0.2s;
  background: var(--white); color: var(--ink);
}
.email-form input:focus { border-color: var(--mint); }
.email-fine { font-size: 12px; color: var(--muted); margin-top: 12px; }

/* ── Why-Petling cards ───────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 36px 28px;
}
.why-icon {
  width: 52px; height: 52px;
  background: var(--mint-soft);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.why-card h3 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 22px;
  color: var(--teal);
  margin-bottom: 10px;
}
.why-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}
@media (max-width: 860px) {
  .why-grid { grid-template-columns: 1fr; gap: 18px; }
}
@media (max-width: 640px) {
  section { padding: 64px 0; }
  .why-card { padding: 28px 24px; }
}

/* ── Support page ────────────────────────────────────────────────── */
.support-page { padding: 160px 0 80px; }
.support-page h1 { font-family: var(--serif); font-weight: 300; font-size: clamp(34px, 5vw, 56px); color: var(--teal); line-height: 1.1; letter-spacing: -0.01em; margin-bottom: 14px; }
