/* Medora Marketing – Apple-like, screenshot-faithful */
:root {
  --navy: #001A33;
  --navy-soft: #0A2744;
  --blue: #007AFF;
  --blue-deep: #0066D6;
  --bg: #FFFFFF;
  --bg-soft: #F5F5F7;
  --bg-card: #F5F5F7;
  --text: #001A33;
  --muted: #6E6E73;
  --line: #E5E5EA;
  --shadow: 0 18px 48px rgba(0, 26, 51, 0.08);
  --shadow-soft: 0 8px 28px rgba(0, 26, 51, 0.06);
  --radius: 22px;
  --radius-sm: 16px;
  --font: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  --header-h: 68px;
  --max: 1120px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button, input, textarea { font: inherit; }

.skip-link {
  position: absolute; left: 1rem; top: -3rem; z-index: 1000;
  background: var(--navy); color: #fff; padding: .75rem 1rem; border-radius: 12px;
}
.skip-link:focus { top: 1rem; }

/* ——— Header ——— */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: saturate(1.5) blur(18px);
  -webkit-backdrop-filter: saturate(1.5) blur(18px);
  border-bottom: 1px solid rgba(229, 229, 234, 0.7);
}
.nav-shell {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: var(--header-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}
.brand {
  display: inline-flex; align-items: center; gap: .6rem;
  text-decoration: none; font-weight: 800; letter-spacing: -.03em;
  font-size: 1.12rem; color: var(--navy); justify-self: start;
}
.brand-mark { border-radius: 8px; }
.nav-links {
  display: none; gap: 1.5rem; align-items: center; justify-self: center;
}
.nav-links a {
  text-decoration: none; color: var(--muted); font-weight: 600; font-size: .92rem;
  transition: color .2s ease;
}
.nav-links a:hover { color: var(--navy); }
.nav-actions {
  justify-self: end;
  display: flex; align-items: center; gap: .75rem;
}
.nav-toggle {
  width: 42px; height: 42px; border: 0; background: transparent;
  display: grid; place-content: center; gap: 5px; cursor: pointer; border-radius: 10px;
}
.nav-toggle span {
  display: block; width: 18px; height: 2px; background: var(--navy); border-radius: 2px;
  transition: transform .35s cubic-bezier(0.22, 1, 0.36, 1), opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav {
  display: grid; gap: .15rem; padding: .5rem 1.5rem 1.25rem;
  border-top: 1px solid var(--line); background: #fff;
}
.mobile-nav[hidden] { display: none; }
.mobile-nav a {
  text-decoration: none; padding: .85rem .2rem; color: var(--text); font-weight: 650;
  border-bottom: 1px solid var(--line);
}
.mobile-nav .btn { margin-top: .75rem; text-align: center; border-bottom: 0; }

@media (min-width: 960px) {
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
  .mobile-nav { display: none !important; }
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
  text-decoration: none; border: 0; cursor: pointer;
  border-radius: 14px; font-weight: 700; letter-spacing: -.015em;
  padding: .8rem 1.25rem;
  transition: transform .4s cubic-bezier(0.22, 1, 0.36, 1), background .25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .4s cubic-bezier(0.22, 1, 0.36, 1);
}
.btn:hover { transform: translateY(-1.5px) scale(1.016); }
.btn:active { transform: translateY(0) scale(0.975); transition-duration: .15s; }
.btn:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 3px solid rgba(0, 122, 255, .4); outline-offset: 2px;
}
.btn-primary {
  background: var(--navy); color: #fff;
  box-shadow: 0 8px 24px rgba(0, 26, 51, .22);
}
.btn-primary:hover { background: #001428; box-shadow: 0 14px 32px rgba(0, 26, 51, .3); }
.btn-secondary {
  background: #fff; color: var(--navy); border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  transition: transform .4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .4s cubic-bezier(0.22, 1, 0.36, 1), border-color .3s ease;
}
.btn-secondary:hover { box-shadow: var(--shadow); border-color: rgba(0, 122, 255, .22); }
.btn-lg { padding: .95rem 1.45rem; font-size: 1rem; }
.btn-nav { padding: .62rem 1.05rem; font-size: .88rem; border-radius: 12px; }
.btn-text {
  display: inline-flex; align-items: center; gap: .35rem;
  text-decoration: none; color: var(--navy); font-weight: 700; font-size: .98rem;
  transition: color .25s ease, transform .35s cubic-bezier(0.22, 1, 0.36, 1);
}
.btn-text:hover { color: var(--blue); transform: translateX(2px); }

/* ——— Hero ——— */
.hero {
  position: relative;
  /* Screenshot: logo + copy + CTAs + scroll; Feature-Bar direkt darunter */
  min-height: calc(100svh - var(--header-h));
  display: flex; align-items: center; justify-content: center;
  padding: clamp(0.75rem, 2vh, 1.5rem) 1.5rem clamp(1rem, 2.8vh, 2rem);
  text-align: center;
  background: #fff;
  overflow: hidden;
}
.hero-inner {
  max-width: 720px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center;
  width: 100%;
}
.hero-logo-stage {
  position: relative;
  /* Screenshot-Match: ~260px Desktop (prominent, nicht viewport-füllend) */
  width: min(48vw, 260px);
  aspect-ratio: 1;
  margin-bottom: clamp(0.85rem, 2vh, 1.35rem);
  display: grid; place-items: center;
  background: transparent;
  opacity: 1;
  transform: none;
}
/* Dezenter weißer/hellgrauer Radial – kein blauer Glow */
.hero-logo-stage::before {
  content: "";
  position: absolute;
  inset: -18%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 245, 247, 0.9) 0%, rgba(255, 255, 255, 0) 68%);
  pointer-events: none;
  z-index: 0;
}
html.js .hero-logo-stage:not(.is-in) {
  opacity: 0;
  transform: scale(0.94);
}
html.js .hero-logo-stage.is-in {
  animation: heroLogoIn 1.05s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero-logo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  /* Crisp mark: no glow, blur, shadow, or soft filter */
  filter: none !important;
  box-shadow: none !important;
  -webkit-filter: none !important;
  background: transparent;
  transform-origin: 50% 55%;
}
html.js .hero-logo-stage.is-in .hero-logo {
  animation: heroLogoIdle 8s cubic-bezier(0.45, 0, 0.55, 1) 1.15s infinite;
}
@keyframes heroLogoIdle {
  0%, 100% { transform: scale(1) translateY(0); }
  50% { transform: scale(1.022) translateY(-2px); }
}
.hero-reveal { opacity: 1; transform: none; }
html.js .hero-reveal:not(.is-in) {
  opacity: 0;
  transform: translateY(8px);
}
html.js .hero-reveal.is-in {
  animation: heroCopyIn 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
}
html.js .hero-reveal.is-in[data-delay="80"] { animation-delay: 70ms; }
html.js .hero-reveal.is-in[data-delay="140"] { animation-delay: 120ms; }
html.js .hero-reveal.is-in[data-delay="220"] { animation-delay: 180ms; }

@keyframes heroLogoIn {
  from { opacity: 0; transform: scale(0.94); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes heroCopyIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  html.js .hero-logo-stage:not(.is-in),
  html.js .hero-reveal:not(.is-in) {
    opacity: 1;
    transform: none;
  }
  html.js .hero-logo-stage.is-in,
  html.js .hero-logo-stage.is-in .hero-logo,
  html.js .hero-reveal.is-in {
    animation: none;
  }
}

.hero h1 {
  margin: 0 0 clamp(0.9rem, 2vh, 1.25rem);
  font-size: clamp(2.05rem, 4.6vw, 2.85rem);
  line-height: 1.25;
  letter-spacing: -.045em;
  font-weight: 800;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.22em;
}
.hero-line-dark {
  display: block;
  color: var(--navy);
  line-height: 1.25;
  /* Platz für Descender (g), damit die nächste Zeile nicht übermalt */
  padding-bottom: 0.02em;
}
.hero-line-accent {
  display: block;
  background: linear-gradient(90deg, #0055D4 0%, #00A8E8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  /* background-clip:text clippt Glyphs an der Padding-Box – Box muss Descenders einschließen */
  line-height: 1.35;
  padding: 0.08em 0.12em 0.22em;
  margin: -0.08em -0.12em -0.06em;
}
.hero-lead {
  margin: 0 0 clamp(1rem, 2.2vh, 1.35rem);
  color: var(--muted);
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  font-weight: 500;
  line-height: 1.55;
  max-width: 34rem;
}
.hero-ctas {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 0.85rem 1.35rem;
  margin-bottom: clamp(0.65rem, 1.6vh, 1.15rem);
}
.scroll-hint {
  display: inline-flex; flex-direction: column; align-items: center; gap: .35rem;
  text-decoration: none; color: var(--muted); font-size: .72rem; font-weight: 600;
  letter-spacing: .02em;
  margin-top: 0.25rem;
  transition: color .25s ease, opacity .25s ease;
}
.scroll-hint:hover { color: var(--navy); }
.scroll-mouse {
  width: 18px; height: 28px; border: 1.5px solid #C7C7CC; border-radius: 10px;
  display: grid; justify-items: center; padding-top: 5px;
}
.scroll-mouse span {
  width: 3px; height: 6px; border-radius: 2px; background: #8E8E93;
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
  0%, 100% { opacity: .35; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(5px); }
}
@media (prefers-reduced-motion: reduce) {
  .scroll-mouse span { animation: none; }
}

/* ——— Feature bar ——— */
.feature-bar {
  padding: 0 1.25rem 3.5rem;
}
.feature-bar-inner {
  max-width: var(--max); margin: 0 auto;
  background: var(--bg-soft);
  border-radius: 28px;
  padding: 1.5rem 1.25rem;
  display: grid; gap: 1.35rem;
}
@media (min-width: 800px) {
  .feature-bar-inner {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    padding: 1.65rem 1.1rem;
  }
  .feature-bar-item {
    padding: 0 1.15rem;
    border-right: 1px solid rgba(0, 0, 0, .06);
  }
  .feature-bar-item:last-child { border-right: 0; }
}
.feature-bar-item {
  display: flex; gap: .85rem; align-items: flex-start;
  transition: transform .3s cubic-bezier(0.22, 1, 0.36, 1);
}
.feature-bar-item:hover { transform: translateY(-2px); }
.fbi-icon {
  flex-shrink: 0;
  width: 40px; height: 40px; border-radius: 12px;
  display: grid; place-items: center;
  background: #fff; color: var(--navy);
  box-shadow: var(--shadow-soft);
  transition: box-shadow .25s ease, color .25s ease;
}
.feature-bar-item:hover .fbi-icon {
  color: var(--blue);
  box-shadow: 0 10px 24px rgba(0, 26, 51, .08);
}
.feature-bar-item h3 {
  margin: 0 0 .25rem; font-size: .98rem; letter-spacing: -.02em; font-weight: 800;
}
.feature-bar-item p {
  margin: 0; color: var(--muted); font-size: .84rem; line-height: 1.45; font-weight: 500;
}

/* ——— Bento grids ——— */
.bento { padding: 0 1.25rem 2.5rem; }
.bento-grid {
  max-width: var(--max); margin: 0 auto;
  display: grid; gap: 1rem;
}
.card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 1.65rem 1.5rem;
  box-shadow: none;
}
.eyebrow {
  margin: 0 0 .7rem;
  color: var(--blue);
  font-size: .72rem; font-weight: 750;
  letter-spacing: .1em; text-transform: uppercase;
}
.eyebrow-light { color: rgba(255, 255, 255, .55); }
.card h2 {
  margin: 0 0 .85rem;
  font-size: clamp(1.55rem, 2.8vw, 2rem);
  letter-spacing: -.035em; line-height: 1.15; font-weight: 800;
}
.accent-word {
  background: linear-gradient(90deg, #0055D4 0%, #00A8E8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.card-lead {
  margin: 0 0 1.25rem; color: var(--muted); font-size: .98rem; font-weight: 500;
}
.link-play {
  display: inline-flex; align-items: center; gap: .55rem;
  text-decoration: none; color: var(--blue); font-weight: 750; font-size: .95rem;
  transition: opacity .25s ease, transform .35s cubic-bezier(0.22, 1, 0.36, 1);
}
.link-play:hover { opacity: .85; transform: translateX(2px); }
.play-dot {
  width: 28px; height: 28px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(0, 122, 255, .12); color: var(--blue);
  transition: background .25s ease;
}
.link-play:hover .play-dot { background: rgba(0, 122, 255, .18); }

/* Upper grid – screenshot: day card + side stack */
@media (min-width: 1000px) {
  .bento-grid-upper {
    grid-template-columns: 1.55fr 0.95fr;
    align-items: stretch;
  }
}
.card-day {
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1.75rem 1.55rem 1.4rem;
}
.card-day-copy { max-width: 36rem; }
.card-day-timeline {
  background: var(--bg-soft);
  border-radius: 18px;
  padding: 1.15rem 1rem 1rem;
}

/* Timeline */
.timeline-track {
  display: flex; justify-content: space-between; gap: .35rem;
  position: relative;
  margin-bottom: 1.15rem;
  padding: 0 .15rem;
}
.timeline-track::before {
  content: "";
  position: absolute; left: 6%; right: 6%; top: 1.55rem;
  height: 2px; background: linear-gradient(90deg, #D1D1D6, #007AFF 45%, #34C759 70%, #D1D1D6);
  border-radius: 2px;
}
.tl-point {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: .35rem;
  flex: 1; text-align: center;
}
.tl-time {
  font-size: .68rem; font-weight: 750; color: var(--muted); letter-spacing: -.01em;
}
.tl-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: #fff; border: 2.5px solid #C7C7CC;
  box-shadow: 0 0 0 3px #fff;
}
.tl-alert .tl-dot { border-color: #FF3B30; background: #FF3B30; }
.tl-ok .tl-dot { border-color: #34C759; background: #34C759; }
.tl-label {
  font-size: .66rem; font-weight: 650; color: var(--text); line-height: 1.2;
  max-width: 5.6rem;
}
.timeline-snippets {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .55rem;
}
@media (min-width: 720px) {
  .timeline-snippets { grid-template-columns: repeat(5, 1fr); }
}
.snip {
  background: #fff;
  border-radius: 14px;
  padding: .65rem .7rem;
  font-size: .7rem;
  border: 1px solid rgba(0,0,0,.04);
  transition: transform .3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .3s ease;
}
.card-day:hover .snip {
  box-shadow: 0 8px 20px rgba(0, 26, 51, .05);
}
.snip-cal-head { font-weight: 750; margin-bottom: .45rem; color: var(--navy); }
.snip-cal-row {
  display: flex; align-items: center; gap: .4rem;
  margin-bottom: .28rem; color: var(--muted); font-weight: 600;
}
.bar {
  display: inline-block; height: 8px; border-radius: 4px; width: 42%;
}
.bar-a { background: #007AFF; width: 55%; }
.bar-b { background: #5AC8FA; width: 40%; }
.bar-c { background: #AF52DE; width: 30%; }
.snip-chat-meta { color: var(--blue); font-weight: 750; margin-bottom: .2rem; }
.snip-chat p { margin: 0; font-weight: 600; color: var(--text); }
.snip-gap-top {
  display: flex; align-items: center; justify-content: space-between; gap: .35rem;
  margin-bottom: .45rem;
}
.snip-gap strong { font-size: .7rem; }
.badge-warn {
  font-size: .58rem; font-weight: 800; color: #FF3B30;
  background: rgba(255, 59, 48, .12); padding: .15rem .35rem; border-radius: 6px;
}
.avatars { display: flex; gap: -.35rem; margin-bottom: .35rem; }
.avatars span {
  width: 20px; height: 20px; border-radius: 50%; border: 2px solid #fff;
  background: linear-gradient(135deg, #007AFF, #5AC8FA);
}
.avatars span:nth-child(2) { background: linear-gradient(135deg, #34C759, #30D158); }
.avatars span:nth-child(3) { background: linear-gradient(135deg, #AF52DE, #BF5AF2); }
.avatars span:nth-child(4) { background: linear-gradient(135deg, #FF9500, #FFCC00); }
.snip-gap p { margin: 0; color: var(--muted); font-weight: 600; }
.snip-ok {
  background: linear-gradient(160deg, #E8F8EE, #fff);
  display: flex; flex-direction: column; justify-content: center; gap: .4rem;
}
.snip-ok strong { color: #1B7A3D; font-size: .72rem; }
.mini-check {
  width: 28px; height: 28px; border-radius: 50%;
  display: grid; place-items: center;
  background: #34C759; color: #fff; font-weight: 800; font-size: .85rem;
}
.snip-done {
  background: linear-gradient(160deg, #EEF6FF, #fff);
  display: flex; flex-direction: column; justify-content: center; gap: .4rem;
}
.snip-done strong { color: var(--navy); font-size: .72rem; }
.mini-bars { display: flex; align-items: flex-end; gap: 3px; height: 28px; }
.mini-bars i {
  display: block; width: 7px; border-radius: 3px;
  background: #34C759;
}
.mini-bars i:nth-child(1) { height: 40%; }
.mini-bars i:nth-child(2) { height: 65%; }
.mini-bars i:nth-child(3) { height: 50%; }
.mini-bars i:nth-child(4) { height: 90%; background: #007AFF; }

/* Side stack + phones */
.bento-side {
  display: grid; gap: 1rem;
  align-content: start;
}
.stack-cards { display: grid; gap: .65rem; }
.stack-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: .75rem; align-items: center;
  text-decoration: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: .85rem 1rem;
  box-shadow: var(--shadow-soft);
  transition: transform .28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .28s ease, border-color .28s ease;
}
.stack-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: rgba(0, 122, 255, .18);
}
.stack-icon {
  width: 36px; height: 36px; border-radius: 11px;
  display: grid; place-items: center;
  background: var(--bg-soft); color: var(--navy);
  transition: color .25s ease, background .25s ease;
}
.stack-card:hover .stack-icon { color: var(--blue); background: rgba(0, 122, 255, .08); }
.stack-copy { display: grid; gap: .1rem; min-width: 0; }
.stack-copy strong {
  font-size: .88rem; letter-spacing: -.015em; font-weight: 800;
}
.stack-copy small {
  color: var(--muted); font-size: .75rem; font-weight: 500; line-height: 1.35;
}
.stack-chevron {
  color: #C7C7CC; font-size: 1.35rem; font-weight: 400; line-height: 1;
  transition: transform .35s cubic-bezier(0.22, 1, 0.36, 1), color .25s ease;
}
.stack-card:hover .stack-chevron { transform: translateX(3px); color: var(--blue); }

.phone-duo {
  position: relative;
  height: 210px;
  margin-top: .25rem;
}
.phone {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  background: #111;
  border: 3px solid #1C1C1E;
  box-shadow: 0 16px 40px rgba(0, 26, 51, .18);
  transition: transform .5s cubic-bezier(0.22, 1, 0.36, 1);
}
.phone img { width: 100%; height: auto; display: block; }
.phone-back {
  position: absolute; width: 112px; right: 8%; top: 18px;
  transform: rotate(8deg);
  opacity: .92;
}
.phone-front {
  position: absolute; width: 124px; right: 28%; top: 0;
  transform: rotate(-4deg);
  z-index: 2;
}
.bento-side:hover .phone-front { transform: rotate(-3deg) translateY(-4px); }
.bento-side:hover .phone-back { transform: rotate(7deg) translateY(-2px); }

/* Lower grid */
@media (min-width: 1000px) {
  .bento-grid-lower {
    grid-template-columns: 1fr 1.15fr 1fr;
    align-items: stretch;
  }
}
.card-checklist {
  background: #fff;
  border: 1px solid var(--line);
}
.check-list {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: .7rem;
}
.check-list li {
  position: relative; padding-left: 1.75rem;
  font-weight: 650; font-size: .95rem; color: var(--text);
}
.check-list li::before {
  content: "";
  position: absolute; left: 0; top: .2rem;
  width: 1.15rem; height: 1.15rem; border-radius: 50%;
  background: rgba(0, 122, 255, .12) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2.5 6.2 4.8 8.5 9.5 3.5' fill='none' stroke='%23007AFF' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/10px no-repeat;
}

.card-devices {
  background: var(--bg-soft);
  padding: 1.25rem 1rem 1.5rem;
  display: flex; align-items: flex-end; justify-content: center;
  min-height: 280px;
  overflow: hidden;
}
.device-stage {
  position: relative;
  width: 100%;
  max-width: 380px;
  display: flex; align-items: flex-end; justify-content: center;
  will-change: transform;
  transition: transform .15s linear;
}
.macbook {
  width: 78%;
  position: relative;
  z-index: 1;
}
.macbook-lid {
  background: #1C1C1E;
  border-radius: 10px 10px 0 0;
  padding: 8px 8px 0;
  box-shadow: 0 20px 40px rgba(0, 26, 51, .16);
}
.macbook-screen {
  background: #F2F2F7;
  border-radius: 6px 6px 0 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.desk-ui { height: 100%; display: flex; flex-direction: column; padding: .45rem; }
.desk-topbar {
  display: flex; align-items: center; gap: .3rem;
  margin-bottom: .45rem;
}
.desk-topbar span {
  width: 6px; height: 6px; border-radius: 50%; background: #FF5F57;
}
.desk-topbar span:nth-child(2) { background: #FEBC2E; }
.desk-topbar span:nth-child(3) { background: #28C840; }
.desk-topbar strong {
  margin-left: .4rem; font-size: .55rem; color: var(--muted); font-weight: 700;
}
.desk-grid {
  flex: 1; display: grid; grid-template-columns: repeat(5, 1fr); gap: .28rem;
}
.desk-col { display: flex; flex-direction: column; gap: .22rem; }
.desk-col i {
  display: block; border-radius: 4px; flex: 1; min-height: 14px;
}
.b1 { background: #007AFF; }
.b2 { background: #5AC8FA; }
.b3 { background: #64D2FF; opacity: .7; }
.b4 { background: #AF52DE; opacity: .75; }
.macbook-base {
  height: 8px;
  background: linear-gradient(180deg, #D1D1D6, #C7C7CC);
  border-radius: 0 0 8px 8px;
  position: relative;
}
.macbook-base::after {
  content: "";
  position: absolute; left: 50%; bottom: -4px; transform: translateX(-50%);
  width: 28%; height: 4px; border-radius: 0 0 6px 6px;
  background: #AEAEB2;
}
.phone-device {
  position: absolute;
  width: 34%;
  right: 2%;
  bottom: 6px;
  z-index: 2;
  border-radius: 18px;
  border-width: 2.5px;
}

/* Stats card */
.card-stats {
  background: linear-gradient(165deg, #001A33 0%, #0A2744 100%);
  color: #fff;
  display: flex; flex-direction: column;
}
.card-stats h2 { color: #fff; }
.stats-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem .85rem;
  margin: .5rem 0 1.5rem;
  flex: 1;
}
.stat { display: grid; gap: .15rem; }
.stat-icon {
  width: 30px; height: 30px; border-radius: 9px; margin-bottom: .2rem;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, .08); color: #5AC8FA;
}
.stat strong {
  font-size: 1.25rem; letter-spacing: -.03em; font-weight: 800;
}
.stat span {
  font-size: .78rem; color: rgba(255, 255, 255, .58); font-weight: 550;
}
.partner-row {
  display: flex; flex-wrap: wrap; gap: .65rem 1.1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, .1);
  align-items: center;
}
.partner {
  font-size: .72rem; font-weight: 700; letter-spacing: -.01em;
  color: rgba(255, 255, 255, .38); text-transform: none;
}
.partner em {
  font-style: normal; font-weight: 800; font-size: .62rem;
  letter-spacing: .06em; margin-left: .15rem;
}

/* ——— Pilot banner ——— */
.pilot-banner {
  padding: 0 1.25rem 2.25rem;
}
.pilot-banner-inner {
  max-width: var(--max);
  margin: 0 auto;
  background: linear-gradient(165deg, #001A33 0%, #0A2744 100%);
  color: #fff;
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
}
@media (min-width: 800px) {
  .pilot-banner-inner { padding: 2.1rem 2.25rem; }
}
.pilot-banner .eyebrow {
  color: rgba(90, 200, 250, .95);
}
.pilot-banner h2 {
  margin: 0 0 .75rem;
  font-size: clamp(1.45rem, 2.8vw, 1.95rem);
  letter-spacing: -.03em;
  font-weight: 800;
  color: #fff;
}
.pilot-banner p {
  margin: 0;
  max-width: 46rem;
  color: rgba(255, 255, 255, .72);
  font-weight: 500;
}
.pilot-banner-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .85rem 1.25rem;
  margin-top: 1.35rem;
}
.pilot-banner .btn-primary {
  background: #fff;
  color: var(--navy);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
}
.pilot-banner .btn-primary:hover {
  background: #F5F5F7;
  color: var(--navy);
}
.pilot-banner .btn-text {
  color: rgba(255, 255, 255, .88);
}
.pilot-banner .btn-text:hover { color: #fff; }

/* ——— Feature split (heute) ——— */
.feature-split {
  padding: 1rem 1.25rem 3.25rem;
  background: #fff;
}
.feature-split-inner { max-width: var(--max); margin: 0 auto; }
.feature-split-intro {
  max-width: 40rem;
  margin: 0 0 1.75rem;
}
.feature-split-intro h2 {
  margin: 0 0 .7rem;
  font-size: clamp(1.7rem, 3.2vw, 2.35rem);
  letter-spacing: -.035em;
  font-weight: 800;
}
.feature-split-intro p {
  margin: 0;
  color: var(--muted);
  font-weight: 500;
}
.feature-columns {
  display: grid;
  gap: 1rem;
}
@media (min-width: 900px) {
  .feature-columns { grid-template-columns: repeat(3, 1fr); }
}
.feature-col {
  background: var(--bg-soft);
  border-radius: var(--radius-sm);
  padding: 1.35rem 1.25rem 1.25rem;
}
.feature-col h3 {
  margin: 0 0 .85rem;
  font-size: 1.05rem;
  letter-spacing: -.02em;
  font-weight: 800;
}
.feature-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .65rem;
}
.feature-col li {
  position: relative;
  padding-left: 1.15rem;
  font-size: .9rem;
  font-weight: 550;
  color: var(--muted);
  line-height: 1.45;
}
.feature-col li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55rem;
  width: .4rem;
  height: .4rem;
  border-radius: 50%;
  background: var(--blue);
}

/* ——— Roadmap ——— */
.roadmap {
  padding: 0.5rem 1.25rem 3.5rem;
  background: var(--bg-soft);
}
.roadmap-inner { max-width: var(--max); margin: 0 auto; }
.roadmap-intro {
  max-width: 40rem;
  margin: 0 0 1.75rem;
}
.roadmap-intro h2 {
  margin: 0 0 .7rem;
  font-size: clamp(1.7rem, 3.2vw, 2.35rem);
  letter-spacing: -.035em;
  font-weight: 800;
}
.roadmap-intro p {
  margin: 0;
  color: var(--muted);
  font-weight: 500;
}
.roadmap-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 900px) {
  .roadmap-grid { grid-template-columns: repeat(3, 1fr); }
}
.roadmap-card {
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 1.35rem 1.25rem 1.3rem;
  border: 1px solid var(--line);
}
.roadmap-tag {
  display: inline-block;
  margin-bottom: .65rem;
  font-size: .72rem;
  font-weight: 750;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(0, 122, 255, .08);
  padding: .28rem .55rem;
  border-radius: 8px;
}
.roadmap-card h3 {
  margin: 0 0 .55rem;
  font-size: 1.08rem;
  letter-spacing: -.02em;
  font-weight: 800;
}
.roadmap-card p {
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
  font-weight: 500;
  line-height: 1.5;
}

/* About points (replaces inflated stats) */
.about-points {
  display: grid;
  gap: 1rem;
  margin-top: .85rem;
}
.about-point {
  display: grid;
  gap: .2rem;
}
.about-point strong {
  font-size: 1rem;
  letter-spacing: -.02em;
  font-weight: 800;
}
.about-point span {
  font-size: .86rem;
  color: rgba(255, 255, 255, .62);
  font-weight: 500;
  line-height: 1.45;
}

@media (min-width: 900px) {
  .pilot-pricing-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ——— Security strip ——— */
.security-strip {
  padding: 1rem 1.25rem 3.5rem;
}
.security-inner {
  max-width: var(--max); margin: 0 auto;
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  display: grid; gap: 1.5rem;
}
@media (min-width: 800px) {
  .security-inner {
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    padding: 2rem 2.25rem;
  }
}
.security-inner h2 {
  margin: 0 0 .7rem;
  font-size: clamp(1.5rem, 2.6vw, 1.9rem);
  letter-spacing: -.03em; font-weight: 800;
}
.security-inner > div > p {
  margin: 0; color: var(--muted); font-weight: 500;
}
.sec-points {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: .55rem;
}
.sec-points li {
  position: relative; padding-left: 1.35rem;
  font-weight: 650; font-size: .95rem;
}
.sec-points li::before {
  content: "";
  position: absolute; left: 0; top: .45rem;
  width: .55rem; height: .55rem; border-radius: 50%;
  background: var(--blue);
}

/* ——— Pricing ——— */
.pricing {
  padding: 1rem 1.25rem 4rem;
  background: #fff;
}
.pricing-inner { max-width: var(--max); margin: 0 auto; }
.pricing-intro { text-align: center; max-width: 38rem; margin: 0 auto 2.25rem; }
.pricing-intro h2 {
  margin: 0 0 .7rem;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  letter-spacing: -.035em; font-weight: 800;
}
.pricing-intro p { margin: 0; color: var(--muted); font-weight: 500; }
.pricing-grid { display: grid; gap: 1rem; }
@media (min-width: 900px) {
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
}
.price-card {
  position: relative;
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 1.55rem 1.35rem 1.4rem;
  display: flex; flex-direction: column; gap: .3rem;
}
.price-card-featured {
  background: #fff;
  border: 1.5px solid rgba(0, 122, 255, .28);
  box-shadow: 0 20px 48px rgba(0, 122, 255, .1);
}
.price-badge {
  position: absolute; top: 1rem; right: 1rem; margin: 0;
  background: var(--blue); color: #fff;
  font-size: .68rem; font-weight: 750; padding: .28rem .55rem; border-radius: 8px;
}
.price-card h3 { margin: 0; font-size: 1.25rem; letter-spacing: -.02em; font-weight: 800; }
.price-tag {
  margin: .1rem 0 .3rem; font-size: 1rem; font-weight: 800;
  color: var(--blue); letter-spacing: -.02em;
}
.price-desc { margin: 0 0 .75rem; color: var(--muted); font-size: .92rem; font-weight: 500; }
.price-card ul {
  list-style: none; margin: 0 0 1.2rem; padding: 0;
  display: grid; gap: .5rem; flex: 1;
}
.price-card li {
  position: relative; padding-left: 1.3rem; font-size: .9rem; font-weight: 550;
}
.price-card li::before {
  content: "✓"; position: absolute; left: 0; color: var(--blue); font-weight: 800;
}
.price-card .btn { width: 100%; margin-top: auto; }

/* ——— CTA / Form ——— */
.cta {
  padding: 1rem 1.25rem 4.5rem;
  background: linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
}
.cta-inner { max-width: 680px; margin: 0 auto; text-align: center; }
.cta h2 {
  margin: 0 0 .75rem;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  letter-spacing: -.035em; font-weight: 800;
}
.cta-lead { margin: 0 0 1.75rem; color: var(--muted); font-size: 1.05rem; font-weight: 500; }
.demo-form {
  text-align: left;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.4rem;
  box-shadow: var(--shadow-soft);
}
.form-row {
  display: grid; gap: 1rem; margin-bottom: 1rem;
}
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.demo-form label {
  display: grid; gap: .4rem; font-weight: 700; font-size: .88rem; color: var(--navy);
  margin-bottom: 1rem;
}
.form-row label { margin-bottom: 0; }
.optional { font-weight: 500; color: var(--muted); }
.demo-form input,
.demo-form textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 12px;
  padding: .8rem .95rem; background: var(--bg-soft); color: var(--text);
}
.demo-form input:focus,
.demo-form textarea:focus {
  border-color: rgba(0, 122, 255, .45); background: #fff;
}
.form-actions {
  display: flex; flex-wrap: wrap; align-items: center; gap: 1rem;
  margin-top: .15rem;
}
.form-alt { margin: 0; color: var(--muted); font-size: .9rem; font-weight: 500; }
.form-alt a { color: var(--blue); font-weight: 700; text-decoration: none; }
.form-alt a:hover { text-decoration: underline; }
.form-trust {
  display: flex; flex-wrap: wrap; gap: .65rem 1.15rem;
  margin: 1.15rem 0 0; padding-top: 1rem; border-top: 1px solid var(--line);
  color: var(--muted); font-size: .85rem; font-weight: 600;
}

/* ——— Footer ——— */
.site-footer {
  border-top: 1px solid var(--line);
  background: #fff; padding: 1.75rem 1.25rem;
}
.footer-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; gap: 1rem; justify-items: start;
}
@media (min-width: 720px) {
  .footer-inner {
    grid-template-columns: auto 1fr auto;
    align-items: center;
  }
  .footer-copy { text-align: right; }
}
.footer-brand {
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 800; letter-spacing: -.02em;
}
.footer-nav { display: flex; flex-wrap: wrap; gap: .75rem 1.1rem; }
.footer-nav a {
  text-decoration: none; color: var(--muted); font-weight: 600; font-size: .9rem;
}
.footer-nav a:hover { color: var(--blue); }
.footer-copy { margin: 0; color: var(--muted); font-size: .85rem; font-weight: 500; }

/* ——— Legal ——— */
.legal-page {
  max-width: 720px; margin: 0 auto; padding: 3rem 1.25rem 4rem;
  font-family: var(--font);
}
.legal-page h1 {
  margin: 0 0 1rem; font-size: clamp(1.8rem, 4vw, 2.4rem);
  letter-spacing: -.03em; font-weight: 800;
}
.legal-page .note {
  background: #FFF7ED; border: 1px solid #FED7AA; color: #9A3412;
  padding: .9rem 1rem; border-radius: 12px; margin-bottom: 1.5rem; font-size: .95rem;
}
.legal-page p, .legal-page li { color: var(--muted); }
.legal-back {
  display: inline-block; margin-bottom: 1.5rem; color: var(--blue);
  font-weight: 700; text-decoration: none;
}
.legal-back:hover { text-decoration: underline; }

/* ——— Reveal ——— */
.reveal { opacity: 1; transform: none; }
html.js .reveal:not(.is-visible) {
  opacity: 0; transform: translateY(18px) scale(0.985);
}
html.js .reveal {
  transition: opacity .8s cubic-bezier(0.22, 1, 0.36, 1), transform .8s cubic-bezier(0.22, 1, 0.36, 1);
}
html.js .reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html.js .reveal:not(.is-visible),
  html.js .reveal {
    opacity: 1; transform: none; transition: none;
  }
}

/* Prefer content visible if near fold */
@media (prefers-reduced-motion: no-preference) {
  .bento .reveal { transition-delay: 0ms; }
}

/* ——— Mobile refinements ——— */
@media (max-width: 999px) {
  .nav-shell {
    display: flex;
    grid-template-columns: none;
  }
  .brand { margin-right: auto; }
  .phone-duo { height: 190px; margin: .5rem auto 0; max-width: 280px; }
  .phone-back { right: 12%; }
  .phone-front { right: 36%; }
  .tl-label { font-size: .6rem; max-width: 4.8rem; }
  .timeline-snippets { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 559px) {
  .hero {
    min-height: calc(100svh - var(--header-h));
    padding: 1.75rem 1.15rem 2.5rem;
  }
  .hero-logo-stage { width: min(54vw, 208px); margin-bottom: 1rem; }
  .hero h1 { font-size: clamp(1.9rem, 8.5vw, 2.35rem); }
  .hero-lead { margin-bottom: 1.1rem; }
  .hero-ctas { margin-bottom: 0.85rem; gap: 0.75rem 1rem; }
  .feature-bar-inner { border-radius: 22px; }
  .card { padding: 1.35rem 1.2rem; }
  .phone-duo { display: none; }
  .timeline-snippets { grid-template-columns: 1fr 1fr; }
}

/* Short laptop / landscape: keep CTAs in first viewport */
@media (max-height: 780px) {
  .hero {
    min-height: calc(100svh - var(--header-h));
    padding-top: 0.65rem;
    padding-bottom: 0.85rem;
  }
  .hero-logo-stage { width: min(44vw, 240px); margin-bottom: 0.55rem; }
  .hero h1 { font-size: clamp(1.85rem, 4.2vw, 2.45rem); margin-bottom: 0.75rem; }
  .hero-lead { margin-bottom: 0.75rem; font-size: 0.98rem; }
  .hero-ctas { margin-bottom: 0.4rem; }
  .scroll-hint { display: none; }
}

@media (max-height: 680px) {
  .hero-logo-stage { width: min(40vw, 210px); margin-bottom: 0.4rem; }
  .hero-lead br { display: none; }
}
