/* ============================================================
   Family Cockpit — Landing page styles
   Built on top of the design system tokens in assets/colors_and_type.css
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:opsz,wght,FILL,GRAD@20..48,400..700,0..1,-50..200&display=block");

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--fc-font-sans);
  background: var(--fc-bg);
  color: var(--fc-text);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { background: none; border: 0; font: inherit; color: inherit; cursor: pointer; padding: 0; }

.material-symbols-rounded {
  font-family: 'Material Symbols Rounded', sans-serif;
  font-variation-settings: 'FILL' 0, 'wght' 500, 'GRAD' 0, 'opsz' 24;
  line-height: 1;
  user-select: none;
  font-feature-settings: 'liga';
}

/* ----------------------------------------------------------------
   LAYOUT
---------------------------------------------------------------- */
.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 720px) {
  .wrap { padding: 0 20px; }
}

.section {
  padding: 120px 0;
  position: relative;
}
.section--tight  { padding: 80px  0; }
.section--soft   { background: var(--fc-bg); }
.section--paper  { background: #F4F2EC; }
.section--white  { background: var(--fc-surface-elevated); }
.section--teal {
  background: var(--fc-primary);
  color: white;
}
.section--deep {
  background: #15302E;
  color: white;
}
@media (max-width: 720px) {
  .section { padding: 80px 0; }
  .section--tight  { padding: 56px  0; }
}
@media (max-width: 480px) {
  .section { padding: 56px 0; }
  .section--tight { padding: 40px 0; }
}

/* ----------------------------------------------------------------
   COMMON TYPE
---------------------------------------------------------------- */
.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fc-primary);
  margin: 0 0 20px;
}
.section--teal .eyebrow,
.section--deep .eyebrow { color: rgba(255,255,255,0.7); }

.h-display {
  font-family: var(--fc-font-display);
  font-weight: 600;
  font-size: clamp(34px, 6.4vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--fc-text-strong);
  margin: 0;
  text-wrap: balance;
  hyphens: auto;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.h-section {
  font-family: var(--fc-font-display);
  font-weight: 600;
  font-size: clamp(32px, 4.4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.028em;
  color: var(--fc-text-strong);
  margin: 0;
  text-wrap: balance;
}
.h-feature {
  font-family: var(--fc-font-display);
  font-weight: 600;
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.15;
  letter-spacing: -0.018em;
  color: var(--fc-text-strong);
  margin: 0;
}
.section--teal .h-display,
.section--teal .h-section,
.section--teal .h-feature,
.section--deep .h-display,
.section--deep .h-section,
.section--deep .h-feature { color: white; }

.lead {
  font-size: 19px;
  line-height: 1.55;
  color: var(--fc-text);
  max-width: 36em;
  text-wrap: pretty;
}
.section--teal .lead,
.section--deep .lead { color: rgba(255,255,255,0.78); }

.note {
  font-size: 14px;
  color: var(--fc-text-muted);
  letter-spacing: 0;
}
.section--teal .note,
.section--deep .note { color: rgba(255,255,255,0.6); }

/* ----------------------------------------------------------------
   BUTTONS
---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 52px;
  padding: 0 24px;
  border-radius: 54px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  transition: transform 140ms var(--fc-ease-out), background 140ms, color 140ms, box-shadow 140ms;
  white-space: nowrap;
}
.btn--primary {
  background: var(--fc-primary);
  color: white;
  box-shadow: 0 8px 22px -10px rgba(17,149,137,0.65);
}
.btn--primary:hover { background: var(--fc-primary-pressed); transform: translateY(-1px); }
.btn--ghost {
  color: var(--fc-text-strong);
}
.btn--ghost:hover { color: var(--fc-primary); }
.btn--outline {
  border: 1px solid var(--fc-border-strong);
  color: var(--fc-text-strong);
  background: transparent;
}
.btn--outline:hover { border-color: var(--fc-primary); color: var(--fc-primary); }
.btn--white {
  background: white;
  color: var(--fc-primary);
}
.btn--white:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,0,0,0.18); }
.btn--ghost-white {
  color: white;
  opacity: 0.85;
}
.btn--ghost-white:hover { opacity: 1; }
.btn .material-symbols-rounded { font-size: 20px; }

/* ----------------------------------------------------------------
   NAV
---------------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background 220ms var(--fc-ease-out), backdrop-filter 220ms, border-color 220ms, box-shadow 220ms;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(237,237,233,0.82);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom-color: rgba(60,60,60,0.06);
}
.nav__row {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--fc-font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--fc-text-strong);
}
.nav__brand img { width: 28px; height: 28px; border-radius: 7px; }
.nav__brand .nav__logo {
  width: auto;
  height: 26px;
  border-radius: 0;
  display: block;
}
.nav__links {
  display: flex;
  gap: 28px;
  margin-left: 16px;
}
.nav__links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--fc-text);
  transition: color 140ms;
}
.nav__links a:hover { color: var(--fc-primary); }
.nav__spacer { flex: 1; }
.nav__cta {
  display: flex;
  gap: 12px;
  align-items: center;
}
@media (max-width: 880px) {
  .nav__links { display: none; }
}
@media (max-width: 520px) {
  .nav__cta .btn--ghost { display: none; }
}

/* ----------------------------------------------------------------
   HERO
---------------------------------------------------------------- */
.hero {
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 920px) {
  .hero__grid { grid-template-columns: 1fr; gap: 48px; }
  .hero { padding: 130px 0 60px; }
}
@media (max-width: 480px) {
  .hero { padding: 96px 0 48px; }
  .hero__grid { gap: 36px; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; justify-content: center; }
}
.hero__copy { max-width: 580px; }
.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px 6px 6px;
  background: white;
  border-radius: 999px;
  margin-bottom: 28px;
  box-shadow: 0 1px 0 rgba(60,60,60,0.06), 0 8px 22px -16px rgba(0,0,0,0.12);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--fc-text);
}
.hero__pill-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--fc-primary-tint);
  color: var(--fc-primary);
  flex-shrink: 0;
}
.hero__pill-dot svg {
  width: 14px;
  height: 14px;
  display: block;
}
.hero__sub {
  margin: 28px 0 36px;
  font-size: 20px;
  line-height: 1.5;
  color: var(--fc-text);
  text-wrap: pretty;
}
.hero__cta {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}
.hero__signals {
  display: flex;
  gap: 22px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.hero__signal {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--fc-text-muted);
  font-weight: 500;
}
.hero__signal .material-symbols-rounded {
  font-size: 18px;
  color: var(--fc-primary);
}

/* Hero phone stage */
.hero__stage {
  position: relative;
  height: 640px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 920px) {
  .hero__stage { height: 560px; }
}
.hero__halo {
  position: absolute;
  inset: -10% -20% -10% -20%;
  background: radial-gradient(60% 60% at 50% 45%, rgba(17,149,137,0.16) 0%, rgba(17,149,137,0) 70%);
  pointer-events: none;
}

/* Floating card annotations */
.float-card {
  position: absolute;
  background: white;
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: 0 12px 36px -16px rgba(20, 30, 45, 0.22), 0 1px 0 rgba(60,60,60,0.04);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--fc-text-strong);
  animation: float 6s ease-in-out infinite;
  z-index: 110;
}
.float-card__icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: white;
  flex-shrink: 0;
}
.float-card__icon .material-symbols-rounded { font-size: 18px; }
.float-card small {
  display: block;
  font-size: 11px;
  color: var(--fc-text-muted);
  font-weight: 500;
  margin-top: 2px;
}
.float-card--a { top: 4%;    left:  calc(50% - 330px); animation-delay: -1s; }
.float-card--b { top: 38%;   right: calc(50% - 250px); animation-delay: -2.5s; }
.float-card--c { bottom: 6%; left:  calc(50% - 300px); animation-delay: -4s; }
@media (max-width: 1100px) {
  .float-card--a { left:  calc(50% - 280px); }
  .float-card--b { right: calc(50% - 220px); }
  .float-card--c { left:  calc(50% - 250px); }
}
@media (max-width: 920px) {
  .float-card--a { left: 2%; right: auto; }
  .float-card--b { right: 2%; left: auto; }
  .float-card--c { left: 8%; right: auto; }
}
@media (max-width: 480px) {
  .hero__stage .float-card { display: none; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

/* ----------------------------------------------------------------
   PHONE BEZEL (iOS-ish)
---------------------------------------------------------------- */
.phone {
  position: relative;
  width: 320px;
  height: 640px;
  background: linear-gradient(145deg, #2A2A2A 0%, #1A1715 100%);
  border-radius: 46px;
  padding: 11px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.06) inset,
    0 30px 80px -30px rgba(17, 30, 45, 0.35),
    0 12px 30px -20px rgba(0,0,0,0.18);
}
.phone--lg { width: 340px; height: 700px; }
@media (max-width: 720px) {
  .phone--lg { width: 260px; height: 540px; }
}
@media (max-width: 480px) {
  .phone--lg { width: 232px; height: 484px; }
}
.phone__screen {
  position: relative;
  width: 100%;
  height: 100%;
  background: var(--fc-bg);
  border-radius: 36px;
  overflow: hidden;
}
/* Mobile: scale the mock content uniformly inside each smaller phone.
   Inner mocks are authored for their desktop "design width". */
@media (max-width: 720px) {
  .phone--lg .phone__screen > * {
    width: 318px; height: 678px;
    transform: scale(0.748);
    transform-origin: top left;
  }
  .feature__phone .phone .phone__screen > * {
    width: 298px; height: 618px;
    transform: scale(0.799);
    transform-origin: top left;
  }
  .collab__stage .phone__screen > * {
    width: 274px; height: 578px;
    transform: scale(0.869);
    transform-origin: top left;
  }
}
@media (max-width: 920px) {
  .sync__stage .phone__screen > * {
    width: 250px; height: 566px;
    transform: scale(0.840);
    transform-origin: top left;
  }
}
@media (max-width: 480px) {
  .phone--lg .phone__screen > *      { transform: scale(0.660); }
  .feature__phone .phone .phone__screen > * { transform: scale(0.705); }
  .collab__stage .phone__screen > *  { transform: scale(0.796); }
  .sync__stage .phone__screen > *    { transform: scale(0.712); }
}
.phone__notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 92px;
  height: 26px;
  background: #0E0C0B;
  border-radius: 18px;
  z-index: 50;
}
.sync__stage .phone__notch {
  width: 84px;
  height: 24px;
  top: 7px;
  border-radius: 16px;
}
.phone__statusbar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px 0;
  font-size: 13px;
  font-weight: 600;
  z-index: 40;
  color: white;
}
.phone__statusbar.dark { color: var(--fc-text-strong); }
.phone__statusbar .right {
  display: flex; gap: 6px; align-items: center;
}
.phone__statusbar .signal,
.phone__statusbar .wifi,
.phone__statusbar .batt {
  width: 16px; height: 11px;
}
.phone__statusbar .batt {
  width: 24px; height: 12px;
  border-radius: 3px;
  border: 1.2px solid currentColor;
  position: relative;
  opacity: 0.95;
}
.phone__statusbar .batt::after {
  content: ""; position: absolute;
  top: 2px; left: 2px; bottom: 2px;
  width: 80%;
  background: currentColor;
  border-radius: 1px;
}

/* ----------------------------------------------------------------
   APP MOCK — Dashboard
---------------------------------------------------------------- */
.mock-dashboard {
  position: relative;
  height: 100%;
  background: var(--fc-bg);
  font-family: var(--fc-font-sans);
  color: var(--fc-text);
}
.md-header {
  position: relative;
  height: 200px;
  background-image: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.55) 100%), url("../assets/happy_group_2.webp");
  background-size: cover;
  background-position: center 30%;
  padding: 56px 20px 0;
  overflow: hidden;
}
.md-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17,149,137,0.35) 0%, rgba(17,149,137,0) 60%),
    radial-gradient(80% 100% at 50% 0%, rgba(255,255,255,0.08), transparent 70%);
  pointer-events: none;
}
.md-header__avatar {
  position: absolute;
  top: 56px; right: 20px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center;
  padding: 3px;
}
.md-header__avatar > span {
  width: 100%; height: 100%;
  border-radius: 50%;
  background: var(--fc-p-sand);
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 11px;
}
.md-header__greet {
  position: absolute;
  bottom: 40px; left: 20px; right: 80px;
  font-family: var(--fc-font-display);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.15;
  color: white;
  text-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.md-header__greet .name { color: var(--fc-p-sand); }

.md-sheet {
  position: absolute;
  top: 174px; left: 0; right: 0; bottom: 0;
  background: var(--fc-bg);
  border-radius: 28px 28px 0 0;
  padding: 14px 16px 12px;
  overflow: hidden;
}
.md-handle {
  width: 36px; height: 4px;
  border-radius: 2px;
  background: #B4B4B4;
  margin: 0 auto 12px;
}
.md-section { margin-bottom: 18px; }
.md-section__head {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 10px;
}
.md-section__head .ic {
  width: 30px; height: 30px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.md-section__head .ic .material-symbols-rounded { font-size: 18px; }
.md-section__head .ttl {
  font-family: var(--fc-font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--fc-text-strong);
}

.md-card {
  background: white;
  border-radius: 16px;
  padding: 10px 12px;
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 8px;
}
.md-card__ic {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  flex-shrink: 0;
}
.md-card__ic .material-symbols-rounded { font-size: 16px; }
.md-card__body {
  flex: 1;
  min-width: 0;
}
.md-card__title {
  font-weight: 700;
  font-size: 13.5px;
  color: var(--fc-text-strong);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.md-card__meta {
  font-size: 11px;
  font-weight: 500;
  color: rgba(60,60,60,0.6);
  font-variant-numeric: tabular-nums;
  margin-top: 2px;
}
.md-card__av {
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 10px;
  font-weight: 700;
  flex-shrink: 0;
}

.md-more {
  display: block;
  width: 100%;
  text-align: center;
  color: var(--fc-primary);
  font-weight: 600;
  font-size: 12px;
  padding: 6px 0 0;
}

.md-bottombar {
  position: absolute;
  bottom: 18px; left: 16px; right: 16px;
  display: flex; gap: 10px;
  z-index: 12;
}
.md-nav {
  flex: 1;
  background: var(--fc-primary);
  border-radius: 28px;
  padding: 4px;
  display: flex;
  box-shadow: 0 -8px 24px rgba(17,149,137,0.30);
}
.md-nav button {
  flex: 1;
  height: 40px;
  border-radius: 22px;
  color: rgba(255,255,255,0.6);
  display: flex; align-items: center; justify-content: center;
}
.md-nav button .material-symbols-rounded { font-size: 22px; }
.md-nav button.active { color: white; font-variation-settings: 'FILL' 1, 'wght' 500; }
.md-fab {
  width: 48px; height: 48px;
  background: var(--fc-primary);
  color: white;
  border-radius: 28px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 -8px 24px rgba(17,149,137,0.30);
}
.md-fab .material-symbols-rounded { font-size: 24px; }

/* ----------------------------------------------------------------
   APP MOCK — Week view (calendar) — true 7-day × N-hour grid
---------------------------------------------------------------- */
.mock-cal {
  position: relative;
  height: 100%;
  background: var(--fc-bg);
  display: flex; flex-direction: column;
}
.cal-header {
  background: var(--fc-primary);
  color: white;
  padding: 50px 12px 8px;
}
.cal-header__row {
  display: flex; align-items: center;
  margin-bottom: 6px;
}
.cal-header__row .title {
  flex: 1; text-align: center;
  font-family: var(--fc-font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
}
.cal-header__row button {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  color: white;
}
.cal-header__row button .material-symbols-rounded { font-size: 18px; }
.cal-week {
  display: grid;
  grid-template-columns: 28px repeat(7, 1fr);
  gap: 1px;
}
.cal-week__spacer { /* aligns with time column below */ }
.cal-day {
  border-radius: 10px;
  padding: 6px 0 7px;
  display: flex; flex-direction: column; align-items: center;
  gap: 3px;
  font-size: 9.5px;
  color: rgba(255,255,255,0.75);
  font-weight: 600;
}
.cal-day .num {
  font-family: var(--fc-font-display);
  font-weight: 700;
  font-size: 14px;
  color: white;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.cal-day .dots {
  display: flex; gap: 2px;
  height: 4px;
}
.cal-day .dots span {
  width: 3px; height: 3px; border-radius: 50%;
  background: rgba(255,255,255,0.85);
}
.cal-day.today {
  background: white;
  color: var(--fc-primary);
}
.cal-day.today .num { color: var(--fc-primary); }
.cal-day.today .dots span { background: var(--fc-primary); }

/* The grid below — time labels + 7 day columns, true positional layout */
.cal-grid {
  flex: 1;
  background: var(--fc-bg);
  padding: 8px 8px 80px;
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 0;
  position: relative;
  overflow: hidden;
}
.cal-times {
  display: grid;
  grid-template-rows: repeat(6, 42px);
  align-items: start;
}
.cal-times > div {
  font-size: 9px;
  color: var(--fc-primary);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  text-align: right;
  padding-right: 6px;
  line-height: 1;
  transform: translateY(-4px);  /* sit on the line */
}
.cal-board {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: repeat(6, 42px);
}
.cal-board::before {
  /* horizontal hour lines */
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to bottom, rgba(60,60,60,0.10) 1px, transparent 1px);
  background-size: 100% 42px;
  background-repeat: repeat-y;
  pointer-events: none;
}
.cal-board::after {
  /* vertical day lines */
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to right, rgba(60,60,60,0.10) 1px, transparent 1px);
  background-size: calc(100% / 7) 100%;
  background-repeat: repeat-x;
  pointer-events: none;
}
/* Family filter strip — small avatars below the teal header */
.cal-filter {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  background: white;
  border-bottom: 1px solid rgba(60,60,60,0.06);
}
.cal-filter__lbl {
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fc-text-muted);
  font-weight: 600;
  margin-right: 2px;
}
.cal-filter__av {
  width: 22px; height: 22px;
  border-radius: 50%;
  color: white;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: -0.01em;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fc-font-display);
  box-shadow: 0 1px 2px rgba(0,0,0,0.08);
}

.cal-evt {
  margin: 1px 1.5px;
  border-radius: 5px;
  padding: 4px 5px 4px;
  color: white;
  overflow: hidden;
  position: relative;
  z-index: 1;
  box-shadow: 0 1px 2px rgba(0,0,0,0.10);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 1px;
}
.cal-evt__t {
  font-weight: 700;
  font-size: 9px;
  letter-spacing: -0.01em;
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cal-evt__w {
  font-weight: 500;
  font-size: 8.5px;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
  opacity: 0.95;
}

/* "Now" indicator line — over Mi (col 3) at ~18:30
   Row height 42px; "16" is row 1 top, so 18:30 = 2.5 hours in = 105px */
.cal-now {
  position: absolute;
  left: 0; right: 0;
  top: 105px;
  height: 0;
  border-top: 1.5px solid #E74C3C;
  z-index: 3;
  pointer-events: none;
}
.cal-now__dot {
  position: absolute;
  left: -3px;
  top: -4.5px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #E74C3C;
}

/* ----------------------------------------------------------------
   APP MOCK — Shopping list
---------------------------------------------------------------- */
.mock-shop {
  position: relative;
  height: 100%;
  background: var(--fc-bg);
}
.shop-header {
  background: var(--fc-primary);
  color: white;
  padding: 46px 14px 18px;
  display: flex; align-items: center;
}
.shop-header .x,
.shop-header .more {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  color: white;
}
.shop-header .x .material-symbols-rounded,
.shop-header .more .material-symbols-rounded {
  font-size: 18px;
  font-variation-settings: 'wght' 400;
}
.shop-header .title {
  flex: 1; text-align: center;
  font-family: var(--fc-font-display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.01em;
}
.shop-body {
  background: var(--fc-bg);
  border-radius: 22px 22px 0 0;
  margin-top: -10px;
  padding: 4px 18px 60px;
  position: absolute;
  left: 0; right: 0; top: 110px; bottom: 0;
  overflow: hidden;
}
.shop-cat {
  font-weight: 700;
  font-size: 13px;
  color: var(--fc-primary);
  letter-spacing: -0.01em;
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 0 8px;
}
.shop-cat .count {
  background: rgba(17,149,137,0.10);
  color: var(--fc-primary);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  width: 18px; height: 18px;
  display: flex; align-items: center; justify-content: center;
}
.shop-item {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 13.5px;
  color: var(--fc-text-strong);
  font-weight: 500;
  letter-spacing: -0.005em;
  position: relative;
  max-height: 60px;
  overflow: hidden;
  transition: color 320ms cubic-bezier(0.4, 0, 0.2, 1),
              max-height 380ms cubic-bezier(0.4, 0, 0.2, 1),
              padding 380ms cubic-bezier(0.4, 0, 0.2, 1),
              opacity 260ms ease-out,
              border-color 260ms ease-out,
              transform 380ms cubic-bezier(0.4, 0, 0.2, 1);
}
.shop-item.is-removing {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
  border-color: transparent;
  transform: translateX(-8px);
  pointer-events: none;
}
.shop-item .box {
  width: 22px; height: 22px;
  border: 1.8px solid var(--fc-primary);
  border-radius: 6px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: transparent;
  color: white;
  transition: background 280ms cubic-bezier(0.4, 0, 0.2, 1),
              border-color 280ms cubic-bezier(0.4, 0, 0.2, 1);
}
.shop-item .box .material-symbols-rounded {
  font-size: 14px;
  opacity: 0;
  transform: scale(0.4);
  transition: opacity 200ms ease-out 80ms,
              transform 360ms cubic-bezier(0.34, 1.56, 0.64, 1) 80ms;
}
.shop-item.checked { color: var(--fc-text-muted); text-decoration: line-through; }
.shop-item.checked .box {
  background: var(--fc-primary);
  color: white;
}
.shop-item.checked .box .material-symbols-rounded {
  opacity: 1;
  transform: scale(1);
}

/* Sync badge pulse — fires once per sync event via JS */
.sync__line {
  transition: box-shadow 320ms ease-out;
}
.sync__line.is-pulsing {
  animation: syncPulse 720ms cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes syncPulse {
  0%   { transform: translate(-50%, -50%) scale(1);
         box-shadow: 0 10px 30px -12px rgba(17,149,137,0.4), 0 0 0 6px rgba(17,149,137,0.08); }
  35%  { transform: translate(-50%, -50%) scale(1.16);
         box-shadow: 0 14px 40px -10px rgba(17,149,137,0.55), 0 0 0 18px rgba(17,149,137,0.0); }
  100% { transform: translate(-50%, -50%) scale(1);
         box-shadow: 0 10px 30px -12px rgba(17,149,137,0.4), 0 0 0 6px rgba(17,149,137,0.08); }
}
.sync__line .material-symbols-rounded {
  transition: transform 720ms cubic-bezier(0.4, 0, 0.2, 1);
}
.sync__line.is-pulsing .material-symbols-rounded {
  transform: rotate(180deg);
}
.shop-item .av {
  width: 20px; height: 20px;
  border-radius: 50%;
  font-size: 9px;
  font-weight: 700;
  color: white;
  display: flex; align-items: center; justify-content: center;
  margin-left: auto;
}

/* ----------------------------------------------------------------
   AVATAR (shared)
---------------------------------------------------------------- */
.av {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  color: white;
  font-weight: 700;
  font-family: var(--fc-font-display);
}
.av-stack { display: inline-flex; }
.av-stack .av { margin-left: -6px; border: 2px solid white; }
.av-stack .av:first-child { margin-left: 0; }

/* Specific palette helpers (only what we use) */
.bg-blue    { background: var(--fc-p-blue); }
.bg-blueGrey{ background: var(--fc-p-blueGrey); }
.bg-navy    { background: var(--fc-p-navy); }
.bg-green   { background: var(--fc-p-green); }
.bg-sand    { background: var(--fc-p-sand); }
.bg-burnt   { background: var(--fc-p-burnt); }
.bg-red     { background: var(--fc-p-red); }
.bg-violet  { background: var(--fc-p-violet); }
.bg-teal    { background: var(--fc-primary); }
.bg-tint    { background: var(--fc-primary-tint); color: var(--fc-primary); }
.bg-tint-blue   { background: rgba(54,94,214,0.12); color: var(--fc-p-blue); }
.bg-tint-burnt  { background: rgba(202,103,2,0.12);  color: var(--fc-p-burnt); }
.bg-tint-violet { background: rgba(106,76,147,0.12); color: var(--fc-p-violet); }

/* ----------------------------------------------------------------
   SOCIAL PROOF strip
---------------------------------------------------------------- */
.proof {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: center;
  padding: 28px 32px;
  background: white;
  border-radius: 18px;
  box-shadow: var(--fc-shadow-card);
}
.proof__cell {
  display: flex;
  flex-direction: column;
  gap: 4px;
  justify-content: flex-start;
}
.proof__num {
  font-family: var(--fc-font-display);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.02em;
  color: var(--fc-text-strong);
}
.proof__num .star {
  color: #E9C46A;
  margin-right: 4px;
}
.proof__lbl {
  font-size: 13px;
  color: var(--fc-text-muted);
  font-weight: 500;
}
@media (max-width: 720px) {
  .proof { grid-template-columns: repeat(2, 1fr); gap: 22px 16px; padding: 22px 20px; }
  .proof__num { font-size: 20px; min-height: 26px; display: flex; align-items: center; }
}
@media (max-width: 480px) {
  .proof { gap: 18px 14px; padding: 18px 16px; }
  .proof__num { font-size: 19px; }
  .proof__lbl { font-size: 12.5px; line-height: 1.4; }
}

/* ----------------------------------------------------------------
   PRINCIPLES — ehrliche Selbstauskunft
---------------------------------------------------------------- */
.principles {
  background: white;
  border-radius: 22px;
  padding: 40px 44px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
  box-shadow: 0 1px 0 rgba(60,60,60,0.04), 0 24px 60px -40px rgba(20,30,45,0.18);
}
.principles__head .eyebrow { margin-bottom: 14px; }
.principles__h {
  font-family: var(--fc-font-display);
  font-weight: 600;
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--fc-text-strong);
  margin: 0;
  text-wrap: balance;
}
.principles__chips {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 20px;
}
.pchip {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.pchip__ic {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pchip__ic .material-symbols-rounded { font-size: 20px; }
.pchip strong {
  display: block;
  font-family: var(--fc-font-display);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--fc-text-strong);
  letter-spacing: -0.005em;
  line-height: 1.2;
  margin-bottom: 3px;
}
.pchip em {
  font-style: normal;
  font-size: 12.5px;
  color: var(--fc-text-muted);
  line-height: 1.4;
}
@media (max-width: 880px) {
  .principles { grid-template-columns: 1fr; gap: 28px; padding: 32px 28px; }
}
@media (max-width: 480px) {
  .principles__chips { grid-template-columns: 1fr; gap: 14px; }
}

/* ----------------------------------------------------------------
   PROBLEM section — before/after
---------------------------------------------------------------- */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 56px;
}
.compare__col {
  background: white;
  border-radius: 20px;
  padding: 32px;
  position: relative;
}
.compare__col--before {
  background: #F2EFE9;
}
.compare__col--before .compare__pill { background: rgba(167, 29, 49, 0.10); color: var(--fc-error); }
.compare__col--after .compare__pill { background: var(--fc-primary-tint); color: var(--fc-primary); }
.compare__pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.compare__h {
  font-family: var(--fc-font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.015em;
  color: var(--fc-text-strong);
  margin: 0 0 18px;
}
.compare__list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.compare__list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--fc-text);
  line-height: 1.45;
}
.compare__list li .material-symbols-rounded {
  font-size: 19px;
  margin-top: 1px;
}
.compare__col--before .material-symbols-rounded { color: var(--fc-error); opacity: 0.85; }
.compare__col--after  .material-symbols-rounded { color: var(--fc-primary); }
@media (max-width: 720px) {
  .compare { grid-template-columns: 1fr; gap: 16px; margin-top: 40px; }
  .compare__col { padding: 24px; }
}

/* ----------------------------------------------------------------
   SOLUTION pillars (4 cards)
---------------------------------------------------------------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.pillar {
  background: white;
  border-radius: 20px;
  padding: 28px 26px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.pillar__ic {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: white;
}
.pillar__ic .material-symbols-rounded { font-size: 24px; }
.pillar__h {
  font-family: var(--fc-font-display);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.015em;
  color: var(--fc-text-strong);
  margin: 6px 0 4px;
}
.pillar__p {
  font-size: 14.5px;
  color: var(--fc-text);
  line-height: 1.5;
  margin: 0;
}
@media (max-width: 880px) {
  .pillars { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 480px) {
  .pillars { gap: 12px; }
  .pillar { padding: 22px 18px; gap: 12px; }
  .pillar__ic { width: 40px; height: 40px; border-radius: 11px; }
  .pillar__ic .material-symbols-rounded { font-size: 22px; }
  .pillar__h { font-size: 17px; }
  .pillar__p { font-size: 13.5px; line-height: 1.45; }
}

/* ----------------------------------------------------------------
   FEATURE: split layouts (text + phone)
---------------------------------------------------------------- */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.feature--reverse { direction: rtl; }
.feature--reverse > * { direction: ltr; }
.feature__body { max-width: 480px; }
.feature__list {
  list-style: none; padding: 0; margin: 28px 0 0;
  display: flex; flex-direction: column; gap: 18px;
}
.feature__list li {
  display: flex; gap: 14px; align-items: flex-start;
}
.feature__list .material-symbols-rounded {
  font-size: 22px;
  color: var(--fc-primary);
  background: var(--fc-primary-tint);
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.feature__list .text { font-size: 15px; line-height: 1.5; }
.feature__list .text strong {
  font-weight: 600;
  color: var(--fc-text-strong);
  display: block;
  margin-bottom: 2px;
  font-size: 16px;
}
.feature__phone {
  display: flex;
  justify-content: center;position: relative;
}
@media (max-width: 920px) {
  .feature { grid-template-columns: 1fr; gap: 56px; }
  /* On mobile, ALWAYS show body before phone, regardless of feature--reverse,
     so that section boundaries don't put two phone mockups back-to-back. */
  .feature__body  { order: 0; }
  .feature__phone { order: 1; }
}
@media (max-width: 720px) {
  .feature__phone .phone { width: 260px; height: 520px; }
}
@media (max-width: 480px) {
  .feature__phone .phone { width: 232px; height: 472px; }
}

/* ----------------------------------------------------------------
   DASHBOARD showcase — phone + annotations
---------------------------------------------------------------- */
.showcase {
  position: relative;
  margin-top: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 740px;
}
.showcase__note {
  position: absolute;
  background: white;
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: 0 18px 40px -20px rgba(20,30,45,0.20), 0 1px 0 rgba(60,60,60,0.04);
  max-width: 240px;
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--fc-text);
}
.showcase__note strong {
  display: block;
  color: var(--fc-text-strong);
  font-size: 14px;
  margin-bottom: 4px;
  font-weight: 600;
}
.showcase__note .eyebrow {
  font-size: 10px;
  margin-bottom: 8px;
  letter-spacing: 0.14em;
}
.showcase__note--tl { top: 4%;   left: 4%;  }
.showcase__note--tr { top: 14%;  right: 4%; }
.showcase__note--bl { bottom: 18%; left: 0%; }
.showcase__note--br { bottom: 6%;  right: 4%; }
@media (max-width: 920px) {
  .showcase { min-height: auto; padding-bottom: 24px; }
  .showcase__note { position: relative; top: auto; left: auto; right: auto; bottom: auto; max-width: 100%; margin: 12px 0; }
  .showcase__notes-mobile {
    display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
    margin-top: 32px;
  }
}

/* ----------------------------------------------------------------
   ROUTINES / BENTO — symmetric two-card layout with shared visual language
---------------------------------------------------------------- */
.bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
  align-items: stretch;
}
.bento__box {
  background: white;
  border-radius: 22px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
.bento__head {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bento__head .h-feature { margin: 0; }
.bento__head p {
  color: var(--fc-text-muted);
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
}
.bento__divider {
  height: 1px;
  background: rgba(60,60,60,0.08);
  margin: 0 -8px;
}
@media (max-width: 880px) {
  .bento { grid-template-columns: 1fr; }
  .bento__box { padding: 28px; }
}

/* Shop list — avatar pills, no crossed-out names */
.bento__shop {
  display: flex;
  flex-direction: column;
}
.bento__shop .row {
  display: grid;
  grid-template-columns: 22px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(60,60,60,0.06);
  font-size: 14px;
  color: var(--fc-text-strong);
  font-weight: 500;
}
.bento__shop .row:last-child { border-bottom: 0; }
.bento__shop .check {
  width: 22px; height: 22px;
  border: 1.6px solid var(--fc-primary);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: white;
}
.bento__shop .check .material-symbols-rounded { font-size: 14px; }
.bento__shop .row__t { letter-spacing: -0.005em; }
.bento__shop .row.done { color: var(--fc-text-muted); }
.bento__shop .row.done .row__t { text-decoration: line-through; }
.bento__shop .row.done .check { background: var(--fc-primary); }
.bento__shop .row__by .av {
  width: 22px; height: 22px;
  font-size: 10px;
  font-weight: 700;
  color: white;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--fc-font-display);
}
.bento__shop .row__by--open {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--fc-text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Routine list — colored icon + body + 7-day rhythm strip */
.routine-list {
  display: flex;
  flex-direction: column;
}
.routine {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(60,60,60,0.06);
}
.routine:last-child { border-bottom: 0; padding-bottom: 0; }
.routine:first-child { padding-top: 0; }
.routine__ic {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: white;
}
.routine__ic .material-symbols-rounded {
  font-size: 19px;
  font-variation-settings: 'FILL' 1, 'wght' 500;
}
.routine__body { min-width: 0; }
.routine__title {
  font-weight: 600;
  font-size: 14.5px;
  color: var(--fc-text-strong);
  letter-spacing: -0.005em;
  line-height: 1.3;
}
.routine__meta {
  font-size: 12.5px;
  color: var(--fc-text-muted);
  margin-top: 2px;
  font-variant-numeric: tabular-nums;
}
.routine__rhythm {
  display: grid;
  grid-template-columns: repeat(7, 22px);
  gap: 3px;
}
.routine__rhythm .d {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--fc-text-muted);
  background: white;
  border: 1px solid rgba(60,60,60,0.06);
  text-transform: uppercase;
}
.routine__rhythm .d.is-on {
  background: var(--fc-text-strong);
  color: white;
  border-color: var(--fc-text-strong);
}
/* Tint the active day to match the routine's icon color */
.routine:has(.bg-teal)   .routine__rhythm .d.is-on { background: var(--fc-primary); border-color: var(--fc-primary); }
.routine:has(.bg-blue)   .routine__rhythm .d.is-on { background: var(--fc-p-blue);  border-color: var(--fc-p-blue); }
.routine:has(.bg-burnt)  .routine__rhythm .d.is-on { background: var(--fc-p-burnt); border-color: var(--fc-p-burnt); }
.routine:has(.bg-violet) .routine__rhythm .d.is-on { background: var(--fc-p-violet);border-color: var(--fc-p-violet); }

@media (max-width: 960px) {
  .routine { grid-template-columns: 36px 1fr; row-gap: 8px; }
  .routine__rhythm {
    grid-column: 2;
    grid-template-columns: repeat(7, 1fr);
    width: 100%;
  }
  .routine__rhythm .d { width: auto; }
}

/* ----------------------------------------------------------------
   SYNC (cross-platform)
---------------------------------------------------------------- */
.sync {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.sync__stage {
  display: flex;
  justify-content: center;
  position: relative;
  gap: 20px;
}
.sync__stage .phone { width: 272px; height: 588px; }
.sync__stage .phone:nth-child(2) { transform: translateY(44px); }
.sync__stage .phone__statusbar { padding: 13px 18px 0; font-size: 11px; height: 38px; }
.sync__line {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  background: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--fc-primary);
  box-shadow: 0 10px 30px -12px rgba(17,149,137,0.4), 0 0 0 6px rgba(17,149,137,0.08);
  z-index: 5;
}
.sync__line .material-symbols-rounded { font-size: 28px; }

/* "Data packet" that flies between phones to show sync direction visually */
.sync__packet {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--fc-primary);
  color: white;
  border: 3px solid white;
  display: flex; align-items: center; justify-content: center;
  box-shadow:
    0 0 0 6px rgba(17,149,137,0.18),
    0 10px 24px -4px rgba(17,149,137,0.5);
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  z-index: 3;          /* below sync__line (z:5) so it disappears behind the badge mid-flight */
  pointer-events: none;
}
.sync__packet .material-symbols-rounded {
  font-size: 22px;
  font-variation-settings: 'wght' 600;
}
.sync__packet.fly-left .material-symbols-rounded { transform: rotate(180deg); }
.sync__packet.fly-right { animation: syncPacketRight 920ms cubic-bezier(0.45, 0.0, 0.55, 1); }
.sync__packet.fly-left  { animation: syncPacketLeft  920ms cubic-bezier(0.45, 0.0, 0.55, 1); }

@keyframes syncPacketRight {
  0%   { left: 35%; opacity: 0; transform: translate(-50%, -50%) scale(0.35); }
  18%  { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  50%  { left: 50%; opacity: 1; transform: translate(-50%, -50%) scale(1); }
  82%  { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  100% { left: 65%; opacity: 0; transform: translate(-50%, -50%) scale(0.35); }
}
@keyframes syncPacketLeft {
  0%   { left: 65%; opacity: 0; transform: translate(-50%, -50%) scale(0.35); }
  18%  { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  50%  { left: 50%; opacity: 1; transform: translate(-50%, -50%) scale(1); }
  82%  { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  100% { left: 35%; opacity: 0; transform: translate(-50%, -50%) scale(0.35); }
}
.sync__platforms {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.platform-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  background: white;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--fc-text-strong);
  box-shadow: 0 1px 0 rgba(60,60,60,0.06);
}
.platform-chip .material-symbols-rounded { font-size: 18px; color: var(--fc-text-muted); }
@media (max-width: 920px) {
  .sync { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 720px) {
  /* Keep two phones side-by-side at mobile, just much smaller — preserves
     the "watch sync happen between devices" narrative. */
  .sync__stage { flex-direction: row; gap: 6px; align-items: center; justify-content: center; }
  .sync__stage .phone { width: 154px; height: 332px; padding: 6px; border-radius: 28px; }
  .sync__stage .phone:nth-child(odd),
  .sync__stage .phone:nth-child(2) { transform: none; }
  .sync__stage .phone__screen { border-radius: 22px; }
  .sync__stage .phone__notch { width: 50px; height: 14px; top: 4px; border-radius: 10px; }
  .sync__stage .phone__statusbar { padding: 7px 12px 0; font-size: 9px; height: 22px; }
  .sync__stage .phone__statusbar .right { gap: 4px; }
  .sync__stage .phone__statusbar .batt { width: 18px; height: 9px; }
  .sync__stage .phone__statusbar .material-symbols-rounded { font-size: 11px !important; }
  .sync__stage .phone__screen > * {
    /* Design width 250 × 566; new screen 142 × 320; scale 142/250 */
    transform: scale(0.568) !important;
  }
  .sync__line {
    position: static !important;
    transform: none !important;
    width: 36px; height: 36px;
    flex-shrink: 0;
    margin: 0;
    box-shadow: 0 6px 18px -8px rgba(17,149,137,0.4), 0 0 0 4px rgba(17,149,137,0.08);
  }
  .sync__line .material-symbols-rounded { font-size: 18px; }
  /* Re-enable the packet animation with tighter range for mobile width */
  .sync__packet { display: flex !important; width: 26px; height: 26px; border-width: 2px; }
  .sync__packet .material-symbols-rounded { font-size: 14px; }
}
@media (max-width: 480px) {
  .sync__stage .phone { width: 134px; height: 290px; }
  .sync__stage .phone__screen > * { transform: scale(0.488) !important; }
}

/* ----------------------------------------------------------------
   PRIVACY (deep section)
---------------------------------------------------------------- */
.privacy {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}
.privacy__shield {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 400px;
  margin: 0 auto;
}
.privacy__shield-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.10);
}
.privacy__shield-ring--2 { inset: 12%; border-color: rgba(255,255,255,0.14); }
.privacy__shield-ring--3 { inset: 24%; border-color: rgba(255,255,255,0.18); }
.privacy__shield-core {
  position: absolute;
  inset: 32%;
  border-radius: 50%;
  background: linear-gradient(160deg, rgba(43,179,166,0.35), rgba(17,149,137,0.15));
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(43,179,166,0.4);
}
.privacy__shield-core .material-symbols-rounded {
  font-size: 64px;
  color: #2BB3A6;
}
.privacy__chip {
  position: absolute;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 10px 14px;
  display: flex; align-items: center; gap: 8px;
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  white-space: nowrap;
}
.privacy__chip .material-symbols-rounded { font-size: 16px; color: #2BB3A6; }
.privacy__chip--a { top: 6%;  left: -10%; }
.privacy__chip--b { top: 28%; right: -14%; }
.privacy__chip--c { bottom: 8%; left: -6%; }
.privacy__chip--d { bottom: 22%; right: -10%; }

.privacy__list {
  list-style: none; padding: 0; margin: 28px 0 0;
  display: flex; flex-direction: column; gap: 12px;
}
.privacy__list li {
  display: flex; align-items: center; gap: 12px;
  font-size: 16px;
  color: rgba(255,255,255,0.88);
}
.privacy__list .material-symbols-rounded {
  font-size: 22px;
  color: #2BB3A6;
}
@media (max-width: 920px) {
  .privacy { grid-template-columns: 1fr; gap: 56px; }
  .privacy__shield { max-width: 320px; }
  .privacy__chip--a, .privacy__chip--c { left: -2%; }
  .privacy__chip--b, .privacy__chip--d { right: -2%; }
}

/* ----------------------------------------------------------------
   COLLABORATION — "Familie" screen mockup (faithful to group.screen.dart)
---------------------------------------------------------------- */
.collab {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 80px;
  align-items: center;
}
.collab__stage {
  position: relative;
  display: flex;
  justify-content: center;
}
.collab__stage .phone {
  width: 296px;
  height: 600px;
}
@media (max-width: 720px) {
  .collab__stage .phone { width: 260px; height: 540px; }
}
@media (max-width: 480px) {
  .collab__stage .phone { width: 240px; height: 500px; }
}

/* Family screen — light background, teal accents (matches real app) */
.mock-family {
  position: relative;
  height: 100%;
  background: var(--fc-bg);
  display: flex;
  flex-direction: column;
  padding: 50px 0 0;
  overflow: hidden;
}
.fam-appbar {
  display: flex;
  align-items: center;
  padding: 4px 12px 8px;
  color: var(--fc-text-strong);
}
.fam-appbar button {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  color: var(--fc-text-strong);
}
.fam-appbar button .material-symbols-rounded {
  font-size: 18px;
  font-variation-settings: 'wght' 400;
}
.fam-appbar .title {
  flex: 1;
  text-align: center;
  font-family: var(--fc-font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--fc-primary);
  letter-spacing: -0.005em;
}

.fam-grouphead {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 16px 16px;
}
.fam-grouphead__av {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--fc-p-sand);
  color: white;
  font-family: var(--fc-font-display);
  font-weight: 700;
  font-size: 22px;
  display: flex; align-items: center; justify-content: center;
  letter-spacing: -0.02em;
  box-shadow: 0 4px 14px -6px rgba(20,30,45,0.2);
  flex-shrink: 0;
}
.fam-grouphead__t {
  flex: 1;
  font-family: var(--fc-font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--fc-primary);
  letter-spacing: -0.015em;
  line-height: 1.1;
}
.fam-grouphead__edit {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  color: var(--fc-primary);
}
.fam-grouphead__edit .material-symbols-rounded {
  font-size: 17px;
  font-variation-settings: 'wght' 400;
}

.fam-sechead {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px 12px;
}
.fam-sechead__ic {
  font-size: 18px;
  color: var(--fc-primary);
  font-variation-settings: 'wght' 500;
}
.fam-sechead__t {
  flex: 1;
  font-family: var(--fc-font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--fc-primary);
  letter-spacing: -0.005em;
}
.fam-sechead__invite {
  position: relative;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--fc-primary-tint);
  display: flex; align-items: center; justify-content: center;
  color: var(--fc-primary);
  flex-shrink: 0;
}
.fam-sechead__profile { font-size: 15px; font-variation-settings: 'wght' 500; }
.fam-sechead__plus {
  position: absolute;
  right: -2px; bottom: -2px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--fc-primary);
  color: white;
  display: flex; align-items: center; justify-content: center;
}
.fam-sechead__plus .material-symbols-rounded { font-size: 11px; }

.fam-list {
  flex: 1;
  padding: 0 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
}
.fam-card {
  position: relative;
  background: white;
  border-radius: 12px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 1px 2px rgba(20,30,45,0.04);
}
.fam-card .av {
  width: 32px; height: 32px;
  border-radius: 50%;
  font-family: var(--fc-font-display);
  font-weight: 700;
  font-size: 13px;
  color: white;
  display: inline-flex; align-items: center; justify-content: center;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.fam-card__b { min-width: 0; flex: 1; }
.fam-card__t {
  font-size: 13px;
  font-weight: 600;
  color: var(--fc-text-strong);
  letter-spacing: -0.005em;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.fam-card__meta {
  font-size: 11px;
  margin-top: 2px;
  display: flex; gap: 4px; align-items: center;
  white-space: nowrap;
  overflow: hidden;
}
.fam-card__meta .u {
  color: var(--fc-primary);
  font-weight: 500;
}
.fam-card__meta .dot { color: var(--fc-text-muted); }
.fam-card__meta .e { color: var(--fc-text-muted); }

/* Role notification dot (positioned absolute on card edge) */
.fam-card__role {
  position: absolute;
  top: -4px; left: -4px;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--fc-bg);
  z-index: 2;
}
.fam-card__role .material-symbols-rounded {
  font-size: 10px;
  color: white;
  font-variation-settings: 'FILL' 1;
}
.fam-card__role--owner { background: var(--fc-p-sand); }
.fam-card__role--admin { background: var(--fc-primary); }

/* Activity callouts on the family screen — match hero float-card visual */
.collab__float {
  position: absolute;
  z-index: 5;
  animation-delay: -2s;
}
.collab__float--a { bottom: 6%;  left: -4%; }
.collab__float--b { top: 10%;    right: -4%; animation-delay: -4s; }
@media (max-width: 920px) {
  .collab__float--a { bottom: 4%; left: 2%; }
  .collab__float--b { top: 6%;   right: 2%; }
}
@media (max-width: 480px) {
  .collab__float { font-size: 11.5px; padding: 9px 11px; }
  .collab__float small { font-size: 10.5px; }
  .collab__float .float-card__icon { width: 26px; height: 26px; }
  .collab__float .float-card__icon .material-symbols-rounded { font-size: 16px; }
  .collab__float--a { left: -2%; bottom: -8px; }
  .collab__float--b { right: -2%; top: 30%; }
}

/* Legacy collab__card kept for backward compatibility (unused now) */
.collab__card {
  position: absolute;
  background: white;
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: 0 18px 40px -20px rgba(20,30,45,0.25);
  display: flex; align-items: center; gap: 12px;
  z-index: 5;
}
@media (max-width: 920px) {
  .collab { grid-template-columns: 1fr; gap: 48px; }
  .collab__stage { padding: 0 32px; }
  .collab__card--a { left: 2%; }
  .collab__card--b { right: 2%; }
}

/* ----------------------------------------------------------------
   TESTIMONIALS
---------------------------------------------------------------- */
.testis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.testi {
  background: white;
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.testi__stars {
  color: #E9C46A;
  display: flex;
  gap: 2px;
}
.testi__stars .material-symbols-rounded {
  font-size: 18px;
  font-variation-settings: 'FILL' 1, 'wght' 500;
}
.testi__quote {
  font-size: 16px;
  line-height: 1.55;
  color: var(--fc-text-strong);
  margin: 0;
  text-wrap: pretty;
}
.testi__author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.testi__author .av { width: 40px; height: 40px; font-size: 14px; }
.testi__author .name {
  font-weight: 600;
  font-size: 14px;
  color: var(--fc-text-strong);
}
.testi__author .meta {
  font-size: 12.5px;
  color: var(--fc-text-muted);
  margin-top: 1px;
}
@media (max-width: 920px) { .testis { grid-template-columns: 1fr; } }
@media (max-width: 720px) {
  .testis {
    grid-template-columns: none;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 14px;
    margin: 40px -20px 0;
    padding: 4px 20px 20px;
    scrollbar-width: none;
  }
  .testis::-webkit-scrollbar { display: none; }
  .testi {
    flex: 0 0 86%;
    scroll-snap-align: center;
    padding: 24px;
  }
}

/* Carousel dot indicator — only shown at mobile carousel breakpoint */
.testis-dots {
  display: none;
}
@media (max-width: 720px) {
  .testis-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 4px;
  }
  .testis-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(60,60,60,0.18);
    transition: background 180ms ease, width 240ms cubic-bezier(0.4, 0, 0.2, 1);
    border: 0;
    padding: 0;
    cursor: pointer;
  }
  .testis-dot.is-active {
    width: 24px;
    border-radius: 6px;
    background: var(--fc-primary);
  }
}

/* ----------------------------------------------------------------
   PRICING
---------------------------------------------------------------- */
.pricing-toggle {
  display: inline-flex;
  background: rgba(60,60,60,0.06);
  border-radius: 999px;
  padding: 4px;
  margin: 28px auto 56px;
  font-size: 13.5px;
  font-weight: 600;
}
.pricing-toggle button {
  padding: 10px 18px;
  border-radius: 999px;
  color: var(--fc-text-muted);
  transition: color 140ms, background 140ms;
}
.pricing-toggle button.active {
  background: var(--fc-text-strong);
  color: white;
}
.pricing-toggle .save {
  font-size: 11px;
  font-weight: 700;
  background: var(--fc-primary-tint);
  color: var(--fc-primary);
  padding: 3px 8px;
  border-radius: 999px;
  margin-left: 6px;
}
.pricing-toggle button.active .save { background: rgba(255,255,255,0.18); color: white; }

.plans {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: stretch;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}
.plan {
  background: white;
  border-radius: 22px;
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.plan--featured {
  background: #15302E;
  color: white;
  transform: translateY(-12px);
  box-shadow: 0 24px 50px -24px rgba(21,48,46,0.35);
}
.plan__badge {
  position: absolute;
  top: -12px; left: 30px;
  background: var(--fc-primary);
  color: white;
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.plan__name {
  font-family: var(--fc-font-display);
  font-weight: 600;
  font-size: 18px;
  color: inherit;
  letter-spacing: -0.01em;
}
.plan__price {
  display: flex; align-items: baseline; gap: 6px;
  margin: 4px 0 4px;
}
.plan__price .num {
  font-family: var(--fc-font-display);
  font-weight: 600;
  font-size: 48px;
  letter-spacing: -0.025em;
  color: inherit;
}
.plan__price .per {
  font-size: 14px;
  color: var(--fc-text-muted);
}
.plan--featured .plan__price .per { color: rgba(255,255,255,0.6); }
.plan__desc { color: var(--fc-text-muted); font-size: 14px; line-height: 1.5; margin: 0; }
.plan--featured .plan__desc { color: rgba(255,255,255,0.7); }
.plan__save {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 2px 0 4px;
  padding: 6px 12px 6px 10px;
  border-radius: 999px;
  background: var(--fc-p-sand);
  color: #2A2418;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: -0.005em;
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
}
.plan__save .material-symbols-rounded {
  font-size: 16px;
  color: inherit;
  font-variation-settings: 'FILL' 1;
}
.plan__save.is-hidden { display: none; }
.plan__cta {
  width: 100%;
  justify-content: center;
}
.plan__features {
  list-style: none; padding: 0; margin: 8px 0 0;
  display: flex; flex-direction: column; gap: 10px;
  font-size: 14px;
}
.plan__features li {
  display: flex; gap: 10px; align-items: flex-start;
}
.plan__features .material-symbols-rounded {
  font-size: 18px;
  color: var(--fc-primary);
  margin-top: 1px;
}
.plan--featured .plan__features .material-symbols-rounded { color: #2BB3A6; }
.plan__features .muted { color: var(--fc-text-muted); }
.plan--featured .plan__features .muted { color: rgba(255,255,255,0.55); }
@media (max-width: 880px) {
  .plans { grid-template-columns: 1fr; }
  .plan--featured { transform: none; }
}

/* Trust strip below the plans — reassurances + risk reversal */
.pricing-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 920px;
  margin: 40px auto 0;
}
.pricing-trust__chip {
  background: white;
  border-radius: 16px;
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
.pricing-trust__chip .material-symbols-rounded {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  background: var(--fc-primary-tint);
  color: var(--fc-primary);
  border-radius: 10px;
  font-size: 20px;
  font-variation-settings: 'FILL' 1, 'wght' 500;
}
.pricing-trust__chip strong {
  font-family: var(--fc-font-display);
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: -0.005em;
  color: var(--fc-text-strong);
  line-height: 1.25;
}
.pricing-trust__chip span:not(.material-symbols-rounded) {
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--fc-text-muted);
}
@media (max-width: 880px) {
  .pricing-trust { grid-template-columns: repeat(2, 1fr); }
}

/* Comparison block: what 29,99 €/Jahr replaces */
.pricing-perspective {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 36px;
  align-items: stretch;
  max-width: 920px;
  margin: 64px auto 0;
  background: white;
  border-radius: 22px;
  padding: 36px 40px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
.pricing-perspective__col {
  display: flex; flex-direction: column;
  gap: 14px;
}
.pricing-perspective__list {
  list-style: none; padding: 0; margin: 4px 0 0;
  display: flex; flex-direction: column; gap: 12px;
}
.pricing-perspective__list li {
  display: grid;
  grid-template-columns: 14px 1fr auto;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--fc-text);
}
.pricing-perspective__list .dot {
  width: 10px; height: 10px; border-radius: 50%;
  display: inline-block;
}
.pricing-perspective__list .t { color: var(--fc-text-strong); font-weight: 500; }
.pricing-perspective__list .m {
  color: var(--fc-text-muted);
  font-variant-numeric: tabular-nums;
  font-size: 13px;
}
.pricing-perspective__sum {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 6px;
  padding: 8px 14px;
  background: rgba(60,60,60,0.06);
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--fc-text-strong);
  align-self: flex-start;
}
.pricing-perspective__sum .material-symbols-rounded {
  font-size: 16px;
  color: var(--fc-text-muted);
}
.pricing-perspective__divider {
  align-self: center;
  font-family: var(--fc-font-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--fc-text-muted);
  letter-spacing: -0.005em;
  padding: 0 4px;
}
.pricing-perspective__col--us {
  background: var(--fc-primary-tint);
  border-radius: 16px;
  padding: 24px 28px;
  justify-content: center;
}
.pricing-perspective__col--us .eyebrow { color: var(--fc-primary); }
.pricing-perspective__big {
  display: flex; align-items: baseline; gap: 6px;
  margin-top: 4px;
}
.pricing-perspective__big .num {
  font-family: var(--fc-font-display);
  font-weight: 600;
  font-size: 44px;
  letter-spacing: -0.025em;
  color: var(--fc-text-strong);
  line-height: 1;
}
.pricing-perspective__big .per {
  font-size: 14px;
  color: var(--fc-text-muted);
}
.pricing-perspective__lead {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--fc-text);
  margin: 4px 0 0;
}
.pricing-perspective__small {
  font-size: 11.5px;
  line-height: 1.5;
  color: var(--fc-text-muted);
  margin: 8px 0 0;
}
@media (max-width: 880px) {
  .pricing-perspective {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 28px 24px;
  }
  .pricing-perspective__divider { display: none; }
}

.pricing-floor {
  text-align: center;
  margin: 40px auto 0;
  max-width: 560px;
  color: var(--fc-text-muted);
  font-size: 14.5px;
  line-height: 1.55;
}
.pricing-floor strong { color: var(--fc-text-strong); font-weight: 600; }

/* ----------------------------------------------------------------
   FAQ
---------------------------------------------------------------- */
.faq {
  max-width: 780px;
  margin: 56px auto 0;
}
.faq__item {
  border-top: 1px solid var(--fc-divider);
}
.faq__item:last-child { border-bottom: 1px solid var(--fc-divider); }
.faq__btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  text-align: left;
  font-family: var(--fc-font-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--fc-text-strong);
  letter-spacing: -0.01em;
}
.faq__btn .material-symbols-rounded {
  margin-left: auto;
  color: var(--fc-text-muted);
  font-size: 24px;
  transition: transform 220ms var(--fc-ease-out);
}
.faq__item[open] .faq__btn .material-symbols-rounded { transform: rotate(45deg); color: var(--fc-primary); }
.faq__body {
  padding: 0 0 24px;
  color: var(--fc-text);
  font-size: 15.5px;
  line-height: 1.6;
  max-width: 56em;
}

/* ----------------------------------------------------------------
   FINAL CTA
---------------------------------------------------------------- */
.final-cta {
  text-align: center;
  position: relative;
}
.final-cta__halo {
  position: absolute;
  inset: 10% 20% 10% 20%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(43,179,166,0.20), transparent 70%);
  pointer-events: none;
}
.final-cta .h-display { color: white; margin-bottom: 24px; }
.final-cta .lead { color: rgba(255,255,255,0.78); margin: 0 auto 36px; }
.final-cta .stores {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  margin-top: 36px;
}
.store-badge {
  display: inline-block;
  height: 56px;
  border-radius: 9px;
  overflow: hidden;
  transition: transform 140ms var(--fc-ease-out);
  box-shadow: 0 8px 24px -12px rgba(0,0,0,0.4);
}
.store-badge:hover { transform: translateY(-2px); }
.store-badge svg {
  height: 100%;
  width: auto;
  display: block;
}

/* ----------------------------------------------------------------
   FOOTER
---------------------------------------------------------------- */
.footer {
  background: #15302E;
  color: rgba(255,255,255,0.7);
  padding: 80px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer__brand {
  display: flex; flex-direction: column; gap: 16px;
  max-width: 320px;
}
.footer__brand-row {
  display: flex; align-items: center; gap: 10px;
  color: white;
  font-family: var(--fc-font-display);
  font-weight: 700;
  font-size: 18px;
}
.footer__brand-row img { width: 32px; height: 32px; border-radius: 8px; }
.footer__brand-row .footer__logo {
  width: auto;
  height: 34px;
  border-radius: 0;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
.footer__brand p { font-size: 14px; line-height: 1.55; margin: 0; color: rgba(255,255,255,0.6); }
.footer__col h3 {
  font-family: var(--fc-font-display);
  font-weight: 600;
  font-size: 13px;
  color: white;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 18px;
}
.footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer__col a {
  font-size: 14.5px;
  color: rgba(255,255,255,0.65);
  transition: color 140ms;
}
.footer__col a:hover { color: white; }
.footer__bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.10);
  display: flex; justify-content: space-between; gap: 24px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
}
@media (max-width: 880px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer__brand { grid-column: span 2; }
}

/* ----------------------------------------------------------------
   Scroll-reveal
---------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms var(--fc-ease-out), transform 700ms var(--fc-ease-out);
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* Section header centered with eyebrow */
.s-head {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.s-head .lead { margin-top: 18px; margin-left: auto; margin-right: auto; }
.s-head--left { margin-left: 0; text-align: left; }
