:root {
  color-scheme: light;
  --brand: #1a8e9d;
  --brand-dark: #126b76;
  --brand-soft: #d9efee;
  --ink: #14383b;
  --muted: #587174;
  --secondary-ink: #84999a;
  --background: #fbf8f1;
  --lavender: #e8f3f1;
  --card: rgba(255, 255, 255, 0.84);
  --white: #fff;
  --mint: #bfe3dd;
  --mint-dark: #126b76;
  --sun: #f4d360;
  --coral: #ef8f77;
  --blue: #95ced3;
  --border: rgba(20, 56, 59, 0.1);
  --shadow: 0 24px 80px rgba(18, 107, 118, 0.14);
  --shadow-soft: 0 12px 40px rgba(18, 107, 118, 0.09);
  --radius-xl: 44px;
  --radius-lg: 30px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --container: 1180px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% -10%, rgba(244, 211, 96, .28), transparent 28rem),
    radial-gradient(circle at 92% 8%, rgba(42, 165, 183, .18), transparent 26rem),
    var(--background);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  letter-spacing: -0.015em;
  overflow-x: hidden;
}

body.nav-open { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

:focus-visible {
  outline: 3px solid rgba(26, 142, 157, .5);
  outline-offset: 4px;
  border-radius: 8px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 110px 0; position: relative; }
.section-compact { padding: 72px 0; }
.section-tint { background: rgba(232, 243, 241, .78); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 760;
  letter-spacing: .08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { letter-spacing: -.045em; line-height: 1.02; }
h1 { font-size: clamp(3rem, 6.2vw, 5.6rem); margin-bottom: 26px; font-weight: 790; }
h2 { font-size: clamp(2.25rem, 4.2vw, 4.15rem); margin-bottom: 24px; font-weight: 770; }
h3 { font-size: clamp(1.3rem, 1.8vw, 1.75rem); margin-bottom: 12px; }
.lead { color: var(--muted); font-size: clamp(1.12rem, 1.7vw, 1.35rem); line-height: 1.5; }
.section-heading { max-width: 800px; margin-bottom: 52px; }
.section-heading p:last-child { margin-bottom: 0; }
.text-gradient {
  color: var(--brand);
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 58%, #46b8c5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.16);
  background: linear-gradient(110deg, rgba(42,165,183,.96), rgba(18,107,118,.97));
  backdrop-filter: saturate(180%) blur(22px);
  -webkit-backdrop-filter: saturate(180%) blur(22px);
  box-shadow: 0 10px 30px rgba(18,107,118,.12);
}

.nav-shell { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { min-width: 122px; min-height: 34px; display: inline-flex; align-items: center; text-decoration: none; }
.brand::after {
  width: 122px;
  height: 34px;
  display: block;
  background: url("../images/minoli-wordmark.svg") center / contain no-repeat;
  content: "";
}
.brand > img { display: none; }
.brand > span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}
.desktop-nav { display: flex; align-items: center; gap: 30px; }
.desktop-nav a { color: rgba(255,255,255,.82); font-size: 14px; font-weight: 620; text-decoration: none; }
.desktop-nav a:hover { color: #fff; }
.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 4px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  background: rgba(255,255,255,.12);
}
.language-switch a {
  min-width: 34px;
  padding: 6px 8px;
  border-radius: 999px;
  text-align: center;
  font-size: 12px;
  font-weight: 760;
}
.language-switch a[aria-current="page"] { color: var(--brand-dark); background: #fff; }
.desktop-nav a.button-primary,
.desktop-nav a.button-primary:hover,
.desktop-nav a.button-primary:visited {
  color: var(--ink);
  background: var(--sun);
  box-shadow: 0 8px 20px rgba(20,56,59,.15);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: rgba(255,255,255,.14);
  cursor: pointer;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: currentColor;
  content: "";
}
.mobile-nav {
  position: fixed;
  inset: 72px 0 0;
  z-index: 90;
  padding: 24px;
  background: rgba(251, 248, 241, .98);
}
.mobile-nav a { display: block; padding: 18px 4px; border-bottom: 1px solid var(--border); font-size: 1.35rem; font-weight: 680; text-decoration: none; }

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 680;
  line-height: 1;
  text-decoration: none;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary,
.button-primary:visited { color: #fff; background: linear-gradient(135deg, var(--brand), var(--brand-dark)); box-shadow: 0 12px 26px rgba(18, 107, 118, .24); }
.button-primary:hover { box-shadow: 0 16px 32px rgba(18, 107, 118, .32); }
.button-secondary,
.button-secondary:visited { color: #16151c; border-color: var(--border); background: rgba(255,255,255,.88); }
.button-small { min-height: 40px; padding: 9px 16px; font-size: 13px; }
.button svg { width: 18px; height: 18px; }

.app-store-badge { display: inline-flex; align-items: center; align-self: center; flex-shrink: 0; border-radius: 8px; text-decoration: none; }
.app-store-badge img { width: auto; height: 52px; }
.app-store-badge-small img { height: 40px; }
.mobile-nav .app-store-badge { display: inline-flex; padding: 0; margin-top: 18px; border: 0; }
.mobile-nav .app-store-badge img { height: 40px; }


.hero { min-height: calc(100vh - 72px); padding: 74px 0 80px; display: grid; align-items: center; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.06fr) minmax(390px, .94fr); align-items: center; gap: 36px; }
.hero-copy { position: relative; z-index: 2; padding: 22px 0; }
.hero h1 { font-size: clamp(3rem, 5.4vw, 5.2rem); }
.hero-copy .lead { max-width: 650px; }
.hero-brand-lockup {
  width: 160px;
  display: flex;
  margin-bottom: 24px;
  padding: 13px 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  box-shadow: 0 16px 34px rgba(18,107,118,.18);
}
.hero-brand-lockup img { width: 100%; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 34px 0 28px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 12px 22px; color: var(--muted); font-size: 14px; font-weight: 560; }
.trust-row span { display: inline-flex; align-items: center; gap: 7px; }
.trust-row svg { width: 17px; height: 17px; color: var(--mint-dark); }

.hero-visual { position: relative; min-height: 660px; display: grid; place-items: center; }
.hero-orb { position: absolute; width: min(540px, 90%); aspect-ratio: 1; border-radius: 50%; background: linear-gradient(145deg, rgba(244,211,96,.82), rgba(42,165,183,.6)); filter: blur(.2px); }
.hero-orb::before { position: absolute; inset: 13%; border: 1px solid rgba(255,255,255,.65); border-radius: inherit; content: ""; }
.hero-visual-clean .hero-orb { width: min(570px, 96%); opacity: .82; }
.phone-frame {
  position: relative;
  z-index: 2;
  width: 286px;
  padding: 8px;
  border: 1px solid rgba(255,255,255,.75);
  border-radius: 52px;
  background: #101014;
  box-shadow: 0 34px 80px rgba(18, 107, 118, .27), inset 0 0 0 1px rgba(255,255,255,.2);
  transform: rotate(4deg);
}
.phone-frame img { width: 100%; border-radius: 44px; }
.phone-notch { display: none; }
.phone-frame-native {
  width: 350px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: rotate(2deg);
  animation: native-device-float 7s var(--ease) infinite;
}
.phone-frame-native img {
  border-radius: 0;
  filter: drop-shadow(0 34px 38px rgba(18, 107, 118, .25));
}
@keyframes native-device-float {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(2deg); }
  50% { transform: translate3d(0, -12px, 0) rotate(1deg); }
}
.floating-card {
  position: absolute;
  z-index: 4;
  max-width: 230px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.75);
  border-radius: 22px;
  background: rgba(255,255,255,.82);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}
.floating-card strong { display: block; margin-bottom: 4px; font-size: 16px; }
.floating-card span { color: var(--muted); font-size: 13px; }
.floating-card.one { left: 0; top: 22%; }
.floating-card.two { right: -2%; bottom: 19%; }
.float-icon { width: 34px; height: 34px; display: grid; place-items: center; margin-bottom: 12px; border-radius: 11px; color: var(--brand); background: var(--brand-soft); font-weight: 750; }

.proof-strip { padding: 22px 0; border-block: 1px solid var(--border); background: rgba(255,255,255,.55); }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.proof-item { display: flex; align-items: center; justify-content: center; gap: 10px; min-height: 48px; color: var(--muted); font-size: 14px; font-weight: 620; text-align: center; }
.proof-dot { width: 8px; height: 8px; flex: 0 0 auto; border-radius: 50%; background: var(--mint-dark); }

.seo-intro {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: clamp(34px, 7vw, 92px);
  align-items: start;
}
.seo-intro h2 { position: sticky; top: 112px; }
.seo-copy { display: grid; gap: 18px; }
.seo-copy p { margin: 0; color: var(--muted); font-size: 1.08rem; }
.seo-copy strong { color: var(--ink); }

.problem-card {
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  min-height: 570px;
  border-radius: var(--radius-xl);
  color: #fff;
  background: linear-gradient(145deg, #0f616c, #1a8e9d 58%, #35abb6);
  box-shadow: var(--shadow);
}
.problem-copy { padding: clamp(38px, 6vw, 78px); display: flex; flex-direction: column; justify-content: center; }
.problem-copy h2 { max-width: 650px; }
.problem-copy p { max-width: 590px; color: rgba(255,255,255,.78); }
.problem-list { display: grid; gap: 12px; margin-top: 22px; }
.problem-item { display: flex; align-items: center; gap: 12px; padding: 13px 15px; border-radius: 16px; background: rgba(255,255,255,.11); }
.problem-check { width: 26px; height: 26px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 50%; color: #14383b; background: var(--sun); font-size: 13px; font-weight: 800; }
.problem-image { position: relative; display: flex; align-items: flex-end; justify-content: center; padding: 62px 34px 0; background: radial-gradient(circle at 50% 38%, rgba(255,255,255,.28), transparent 55%); }
.problem-image img { width: 285px; border-radius: 42px 42px 0 0; box-shadow: 0 24px 64px rgba(0,0,0,.28); }
.problem-image img.device-cutout {
  width: 310px;
  border-radius: 0;
  box-shadow: none;
  filter: drop-shadow(0 28px 34px rgba(0,0,0,.24));
  transform: translateY(30px) rotate(1.2deg);
}

.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step-card { position: relative; min-height: 350px; padding: 34px; overflow: hidden; border: 1px solid rgba(18,107,118,.09); border-radius: var(--radius-lg); background: rgba(255,255,255,.9); box-shadow: var(--shadow-soft); }
.step-card::after { position: absolute; right: -60px; bottom: -72px; width: 180px; height: 180px; border-radius: 50%; background: var(--lavender); content: ""; opacity: .65; }
.step-number { width: 46px; height: 46px; display: grid; place-items: center; margin-bottom: 76px; border-radius: 50%; color: #fff; background: var(--brand); font-weight: 760; }
.step-card:nth-child(2) .step-number { color: var(--ink); background: var(--sun); }
.step-card:nth-child(3) .step-number { color: var(--ink); background: var(--blue); }
.step-card p { color: var(--muted); }
.step-symbol { position: absolute; top: 30px; right: 30px; z-index: 2; width: 58px; height: 58px; display: grid; place-items: center; border: 1px solid rgba(18,107,118,.1); border-radius: 18px; color: var(--brand); background: var(--lavender); }
.step-symbol svg { width: 28px; height: 28px; }
.step-card:nth-child(2) .step-symbol { color: #7e6715; background: rgba(244,211,96,.35); }
.step-card:nth-child(3) .step-symbol { color: var(--brand-dark); background: rgba(149,206,211,.3); }
.step-card h3,
.step-card p { position: relative; z-index: 2; }

.unblock-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(268px, 1fr)); gap: 16px; }
.unblock-card { padding: 26px; border: 1px solid rgba(18,107,118,.09); border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-soft); }
.unblock-cause { display: block; margin-bottom: 10px; color: var(--brand-dark); font-size: 1.02rem; font-weight: 700; }
.unblock-card p { margin: 0; color: var(--muted); font-size: 15px; }
.unblock-note { margin-top: 20px; padding: 26px 30px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: rgba(255,255,255,.62); }
.unblock-note p { margin: 0; color: var(--muted); }
.unblock-note strong { color: var(--ink); }

.screens-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.screens-tabs button { padding: 11px 17px; border: 1px solid var(--border); border-radius: 999px; color: var(--muted); background: rgba(255,255,255,.7); cursor: pointer; }
.screens-tabs button.is-active { color: #fff; border-color: var(--brand); background: var(--brand); }
.screens-track { display: grid; grid-template-columns: repeat(5, 1fr); align-items: center; gap: 18px; }
.screen-card { padding: 7px; border-radius: 38px; background: #101014; box-shadow: var(--shadow-soft); transform: scale(.93); transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.screen-card img { width: 100%; border-radius: 32px; }
.screen-card.is-featured { transform: scale(1); box-shadow: 0 28px 64px rgba(18,107,118,.2); }

.product-showcase {
  overflow: clip;
  background:
    radial-gradient(circle at 12% 18%, rgba(149,206,211,.18), transparent 28rem),
    radial-gradient(circle at 90% 72%, rgba(244,211,96,.16), transparent 25rem);
}
.product-showcase-heading {
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}
.product-showcase-heading .eyebrow { justify-content: center; }
.product-showcase-heading .lead { max-width: 720px; margin-inline: auto; }
.product-tour {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.product-panel {
  --tour-shift-y: 0px;
  --tour-glow-shift-y: 0px;
  position: relative;
  min-height: 760px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 48px;
  background: #eef8f7;
  box-shadow: 0 24px 70px rgba(18,107,118,.1);
  isolation: isolate;
}
.product-panel::before,
.product-panel::after {
  position: absolute;
  border-radius: 50%;
  content: "";
  pointer-events: none;
}
.product-panel::before {
  top: -18%;
  right: -22%;
  width: 72%;
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.58);
  background: rgba(255,255,255,.18);
  transform: translate3d(0, var(--tour-glow-shift-y), 0);
  transition: transform .2s linear;
}
.product-panel::after {
  left: 10%;
  bottom: -34%;
  width: 82%;
  aspect-ratio: 1;
  background: rgba(255,255,255,.16);
  filter: blur(2px);
}
.product-panel-wide {
  min-height: 650px;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(360px, 1.12fr);
}
.product-panel-copy {
  position: relative;
  z-index: 3;
  padding: clamp(38px, 5vw, 64px);
}
.product-panel:not(.product-panel-wide) .product-panel-copy { padding-bottom: 20px; }
.product-step {
  display: inline-flex;
  align-items: center;
  margin-bottom: 22px;
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.product-panel h3 {
  max-width: 570px;
  margin-bottom: 18px;
  font-size: clamp(2.15rem, 3.8vw, 3.65rem);
  line-height: .98;
}
.product-panel:not(.product-panel-wide) h3 { font-size: clamp(1.95rem, 2.7vw, 2.65rem); }
.product-panel p {
  max-width: 500px;
  margin-bottom: 0;
  color: rgba(20,56,59,.74);
  font-size: 17px;
}
.product-panel-visual {
  position: relative;
  z-index: 2;
  min-height: 0;
  display: flex;
  flex: 1;
  align-items: flex-end;
  justify-content: center;
  padding: 0 34px;
}
.product-shot {
  width: auto;
  max-width: min(78%, 360px);
  max-height: 530px;
  filter: drop-shadow(0 28px 32px rgba(9,61,67,.22));
  transform: translate3d(0, var(--tour-shift-y), 0);
  transition: transform .18s linear, scale .65s var(--ease), filter .65s var(--ease);
  will-change: transform;
}
.product-panel-wide .product-shot {
  max-width: min(72%, 390px);
  max-height: 620px;
}
.product-panel:hover .product-shot {
  scale: 1.018;
  filter: drop-shadow(0 38px 44px rgba(9,61,67,.28));
}
.product-panel.reveal-ready .product-panel-copy > * {
  opacity: 0;
  transform: translate3d(0, 30px, 0);
  transition: opacity .8s var(--ease), transform .9s var(--ease);
}
.product-panel.reveal-ready .product-panel-copy > :nth-child(2) { transition-delay: .08s; }
.product-panel.reveal-ready .product-panel-copy > :nth-child(3) { transition-delay: .16s; }
.product-panel.reveal-ready .product-panel-visual {
  opacity: 0;
  transform: translate3d(0, 90px, 0) scale(.94);
  transition: opacity .9s var(--ease) .12s, transform 1.1s var(--ease) .12s;
  will-change: opacity, transform;
}
.product-panel.reveal-ready.is-visible .product-panel-copy > * {
  opacity: 1;
  transform: none;
}
.product-panel.reveal-ready.is-visible .product-panel-visual {
  opacity: 1;
  transform: none;
}
.product-panel-today { background: linear-gradient(180deg, #f5faf9 0%, #fff 100%); }
.product-panel-today::after { display: none; }
.product-panel-capture { background: linear-gradient(155deg, #ffffff, #e1f4f3 68%, #c4e6e8); }
.product-panel-steps { background: linear-gradient(145deg, #fff8e5, #f7e7b1 68%, #e9d585); }
.product-panel-unblock { background: linear-gradient(145deg, #fff3e9, #ffd9b7 58%, #f0b58b); }
.product-panel-focus { color: #fff; background: linear-gradient(150deg, #0e6e79, #168b98 55%, #3cadb8); }
.product-panel-focus .product-step,
.product-panel-focus p { color: rgba(255,255,255,.78); }
.product-panel-planning { background: linear-gradient(145deg, #eef8f7, #d6eded 60%, #bbdfe1); }
.product-panel-focus::before { background: rgba(255,255,255,.08); }

.privacy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.privacy-lead { min-height: 490px; padding: clamp(36px, 6vw, 70px); border-radius: var(--radius-xl); background: linear-gradient(145deg, var(--mint), #edf8f4); }
.privacy-lead h2 { max-width: 540px; }
.privacy-lead p { max-width: 520px; color: rgba(20,95,69,.82); }
.privacy-symbol { width: 92px; height: 92px; display: grid; place-items: center; margin: 58px 0 0 auto; border: 1px solid rgba(20,95,69,.14); border-radius: 28px; color: var(--mint-dark); background: rgba(255,255,255,.5); box-shadow: 0 18px 38px rgba(20,95,69,.08); }
.privacy-symbol svg { width: 48px; height: 48px; }
.privacy-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.privacy-card { min-height: 230px; padding: 28px; border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-soft); }
.privacy-card.wide { grid-column: 1 / -1; color: var(--ink); border: 1px solid rgba(18,107,118,.08); background: linear-gradient(135deg, #fff, var(--lavender)); }
.privacy-card .mini-icon { width: 46px; height: 46px; display: grid; place-items: center; margin-bottom: 36px; border-radius: 14px; color: var(--brand); background: var(--lavender); }
.privacy-card .mini-icon svg { width: 24px; height: 24px; }
.privacy-card p { margin-bottom: 0; color: var(--muted); font-size: 15px; }
.privacy-card.wide p { color: var(--muted); }

.guide-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.guide-card { min-height: 310px; display: flex; flex-direction: column; padding: 28px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: rgba(255,255,255,.74); text-decoration: none; transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.guide-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); }
.guide-tag { align-self: flex-start; margin-bottom: 54px; padding: 7px 11px; border-radius: 999px; color: var(--brand); background: var(--brand-soft); font-size: 12px; font-weight: 720; }
.guide-card:nth-child(2n) .guide-tag { color: var(--mint-dark); background: rgba(169,220,201,.52); }
.guide-card p { color: var(--muted); font-size: 15px; }
.guide-link { margin-top: auto; color: var(--brand); font-size: 14px; font-weight: 700; }

.faq-list { max-width: 920px; margin: 0 auto; border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 27px 4px; border: 0; color: var(--ink); background: transparent; font-size: clamp(1.08rem, 1.7vw, 1.3rem); font-weight: 680; text-align: left; cursor: pointer; }
.faq-plus { width: 30px; height: 30px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 50%; color: var(--brand); background: var(--brand-soft); transition: transform .25s var(--ease); }
.faq-item.is-open .faq-plus { transform: rotate(45deg); }
.faq-answer { max-width: 760px; padding: 0 4px 27px; color: var(--muted); }
.faq-answer p { margin-bottom: 12px; }
.text-link { color: var(--brand); font-weight: 680; text-decoration-thickness: 1px; text-underline-offset: 4px; }

.download-card { position: relative; overflow: hidden; min-height: 520px; display: grid; place-items: center; padding: 58px 24px; border-radius: var(--radius-xl); color: #fff; text-align: center; background: linear-gradient(135deg, #0f616c, var(--brand) 55%, #35abb6); box-shadow: var(--shadow); }
.download-card::before, .download-card::after { position: absolute; width: 360px; height: 360px; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; content: ""; }
.download-card::before { left: -150px; top: -170px; }
.download-card::after { right: -150px; bottom: -170px; }
.download-content { position: relative; z-index: 2; max-width: 760px; }
.download-content h2 { margin-bottom: 20px; }
.download-content p { max-width: 620px; margin: 0 auto 30px; color: rgba(255,255,255,.74); font-size: 1.15rem; }
.download-content h2 { color: #fff; }
.download-content .button,
.download-content .button:visited { color: #16151c; background: #fff; box-shadow: 0 12px 32px rgba(0,0,0,.18); }
.app-icon-large { width: 90px; height: 90px; margin: 0 auto 28px; border: 1px solid rgba(255,255,255,.4); border-radius: 25px; box-shadow: 0 18px 40px rgba(0,0,0,.2); }
.availability { margin-top: 16px; color: rgba(255,255,255,.62); font-size: 13px; }

.site-footer {
  padding: 58px 0 30px;
  color: #fff;
  background: linear-gradient(120deg, #167e8e, #126b76);
}
.footer-grid { display: grid; grid-template-columns: 1.4fr .6fr .6fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.18); }
.footer-brand p { max-width: 420px; margin-top: 18px; color: rgba(255,255,255,.7); font-size: 15px; }
.footer-title { margin-bottom: 13px; font-size: 13px; font-weight: 720; }
.footer-links { display: grid; gap: 9px; }
.footer-links a { color: rgba(255,255,255,.7); font-size: 14px; text-decoration: none; }
.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 24px; color: rgba(255,255,255,.58); font-size: 13px; }

/* Pages guides */
.guide-hero { padding: 82px 0 58px; text-align: center; }
.guide-hero .eyebrow { justify-content: center; }
.guide-hero h1 { max-width: 1000px; margin-inline: auto; font-size: clamp(2.75rem, 5vw, 5rem); }
.guide-hero .lead { max-width: 760px; margin-inline: auto; }
.breadcrumbs { display: flex; justify-content: center; flex-wrap: wrap; gap: 7px; margin-bottom: 25px; color: var(--muted); font-size: 13px; }
.breadcrumbs a { text-underline-offset: 3px; }
.article-shell { display: grid; grid-template-columns: 220px minmax(0, 720px); justify-content: center; gap: 64px; padding-bottom: 110px; }
.article-toc { position: sticky; top: 104px; align-self: start; padding: 20px; border: 1px solid var(--border); border-radius: 18px; background: rgba(255,255,255,.65); }
.article-toc strong { display: block; margin-bottom: 12px; font-size: 13px; }
.article-toc a { display: block; margin-top: 10px; color: var(--muted); font-size: 13px; text-decoration: none; }
.article-toc a:hover { color: var(--brand); }
.article-content { font-size: 18px; line-height: 1.72; }
.article-content h2 { margin: 64px 0 22px; font-size: clamp(1.95rem, 3.5vw, 2.8rem); }
.article-content h3 { margin: 38px 0 14px; font-size: 1.45rem; }
.article-content p, .article-content li { color: #45434e; }
.article-content li + li { margin-top: 9px; }
.article-content .intro { color: var(--ink); font-size: 1.25rem; }
.article-note { margin: 34px 0; padding: 24px; border-left: 4px solid var(--brand); border-radius: 0 18px 18px 0; background: var(--lavender); }
.article-note p:last-child { margin-bottom: 0; }
.article-steps { counter-reset: guide-step; display: grid; gap: 14px; margin: 30px 0; padding: 0; list-style: none; }
.article-steps li { position: relative; padding: 22px 22px 22px 68px; border: 1px solid var(--border); border-radius: 18px; background: var(--white); }
.article-steps li::before { counter-increment: guide-step; position: absolute; left: 20px; top: 19px; width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--brand); content: counter(guide-step); font-size: 13px; font-weight: 760; }
.article-cta { margin-top: 64px; padding: 40px; border-radius: var(--radius-lg); color: #fff; background: linear-gradient(135deg, #0f616c, var(--brand)); }
.article-cta h2 { color: #fff; }
.article-cta p { color: rgba(255,255,255,.74); }
.article-cta .button,
.article-cta .button:visited { color: #16151c; background: #fff; }
.related { padding: 70px 0; background: var(--lavender); }
.related h2 { font-size: clamp(1.95rem, 3.5vw, 2.9rem); }

/* Pages d'information, d'assistance et documents juridiques */
.legal-hero {
  position: relative;
  overflow: hidden;
  padding: 82px 0 70px;
  border-bottom: 1px solid var(--border);
}
.legal-hero::after {
  position: absolute;
  right: max(-8vw, -110px);
  bottom: -190px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(26, 142, 157, .14);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(26, 142, 157, .035), 0 0 0 140px rgba(244, 211, 96, .035);
  content: "";
  pointer-events: none;
}
.legal-hero-inner { position: relative; z-index: 1; max-width: 890px; }
.legal-hero h1 { max-width: 880px; margin-bottom: 24px; font-size: clamp(2.75rem, 5.5vw, 5.25rem); }
.legal-hero .lead { max-width: 760px; margin-bottom: 24px; }
.legal-meta { display: flex; flex-wrap: wrap; gap: 10px; }
.legal-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 12px;
  border: 1px solid rgba(20, 56, 59, .08);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, .62);
  font-size: 13px;
  font-weight: 680;
}
.legal-wrap {
  display: grid;
  grid-template-columns: 230px minmax(0, 780px);
  justify-content: center;
  gap: clamp(38px, 6vw, 76px);
  padding: 72px 0 112px;
}
.legal-toc {
  position: sticky;
  top: 104px;
  align-self: start;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255, 255, 255, .72);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}
.legal-toc strong {
  display: block;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 13px;
}
.legal-toc a {
  display: block;
  padding: 6px 0;
  color: var(--muted);
  font-size: 13px;
  text-decoration: none;
}
.legal-toc a:hover { color: var(--brand); }
.legal-content { min-width: 0; }
.legal-summary,
.legal-notice {
  margin-bottom: 36px;
  padding: 26px 28px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(217, 239, 238, .92), rgba(255, 255, 255, .84));
  box-shadow: var(--shadow-soft);
}
.legal-summary h2,
.legal-notice h2 { margin-top: 0; font-size: 1.35rem; }
.legal-summary p:last-child,
.legal-notice p:last-child { margin-bottom: 0; }
.legal-notice {
  border: 1px solid rgba(239, 143, 119, .26);
  background: rgba(255, 247, 239, .9);
}
.legal-section {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  scroll-margin-top: 110px;
}
.legal-section:first-of-type { border-top: 0; }
.legal-section h2 { margin-bottom: 18px; font-size: clamp(1.8rem, 4vw, 2.45rem); }
.legal-section h3 { margin: 30px 0 10px; font-size: 1.25rem; letter-spacing: -.025em; }
.legal-section p,
.legal-section li,
.legal-summary p,
.legal-notice p { color: #425f62; }
.legal-section li + li { margin-top: 9px; }
.legal-section ul,
.legal-section ol { padding-left: 22px; }
.legal-section a,
.legal-summary a,
.legal-notice a {
  color: var(--brand-dark);
  font-weight: 680;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.legal-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 24px 0 8px;
}
.legal-card {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255, 255, 255, .68);
}
.legal-card h3 { margin: 0 0 8px; font-size: 1.08rem; }
.legal-card p { margin: 0; font-size: 15px; }
.legal-table-wrap { overflow-x: auto; margin: 24px 0; border: 1px solid var(--border); border-radius: 20px; background: rgba(255, 255, 255, .68); }
.legal-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.legal-table th,
.legal-table td { padding: 15px 16px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--border); }
.legal-table th { color: var(--ink); background: rgba(217, 239, 238, .46); font-size: 12px; letter-spacing: .03em; text-transform: uppercase; }
.legal-table td { color: #425f62; }
.legal-table tr:last-child td { border-bottom: 0; }
.legal-contact-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  margin-top: 24px;
  padding: 28px;
  border-radius: var(--radius-md);
  color: #fff;
  background: linear-gradient(135deg, var(--brand-dark), var(--brand));
  box-shadow: var(--shadow);
}
.legal-contact-card h2,
.legal-contact-card h3 { color: #fff; }
.legal-contact-card p { margin: 0; color: rgba(255,255,255,.74); }
.legal-contact-card .button,
.legal-contact-card .button:visited { color: var(--ink); background: #fff; }
.legal-placeholder {
  display: inline-block;
  padding: 2px 7px;
  border-radius: 7px;
  color: #7d402f;
  background: #fff1ea;
  font-weight: 720;
}
.support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.support-card {
  min-height: 220px;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, .76);
  box-shadow: var(--shadow-soft);
}
.support-card h2 { margin: 0 0 12px; font-size: 1.5rem; }
.support-card p:last-child { margin-bottom: 0; }

.reveal-ready { opacity: 0; transform: translateY(20px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal-ready.is-visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .desktop-nav { display: none; }
  .nav-toggle { display: block; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-copy .lead { margin-inline: auto; }
  .hero-actions, .trust-row { justify-content: center; }
  .hero-visual { min-height: 620px; }
  .floating-card.one { left: 8%; }
  .floating-card.two { right: 6%; }
  .problem-card { grid-template-columns: 1fr; }
  .problem-image { min-height: 470px; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-card { min-height: 270px; }
  .screens-track { grid-template-columns: repeat(2, 1fr); max-width: 680px; margin: 0 auto; }
  .product-panel-wide { grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr); }
  .privacy-grid { grid-template-columns: 1fr; }
  .seo-intro { grid-template-columns: 1fr; }
  .seo-intro h2 { position: static; }
  .guide-grid { grid-template-columns: repeat(2, 1fr); }
  .article-shell { grid-template-columns: minmax(0, 720px); }
  .article-toc { position: static; }
  .legal-wrap { grid-template-columns: minmax(0, 780px); }
  .legal-toc { position: static; }
}

@media (max-width: 700px) {
  body { font-size: 16px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 78px 0; }
  .site-header { padding: 10px 0; }
  h1 { font-size: clamp(2.7rem, 11.5vw, 3.25rem); }
  h2 { font-size: clamp(2.05rem, 9vw, 2.85rem); }
  .hero h1 { font-size: clamp(2.85rem, 12.2vw, 3.25rem); }
  .guide-hero h1 { font-size: clamp(2.65rem, 11vw, 3.4rem); }
  .legal-hero h1 { font-size: clamp(2.6rem, 10.8vw, 3.35rem); }
  .hero { min-height: auto; padding: 56px 0 46px; }
  .hero-grid { gap: 12px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-visual { min-height: 550px; }
  .phone-frame { width: 238px; border-radius: 44px; }
  .phone-frame img { border-radius: 37px; }
  .phone-notch { top: 13px; width: 70px; height: 21px; }
  .phone-frame-native { width: 280px; border-radius: 0; }
  .phone-frame-native img { border-radius: 0; }
  .floating-card { max-width: 176px; padding: 13px; }
  .floating-card.one { left: 0; top: 18%; }
  .floating-card.two { right: 0; bottom: 14%; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .problem-card, .privacy-lead, .download-card { border-radius: 30px; }
  .problem-copy { padding: 36px 25px; }
  .problem-image { min-height: 390px; padding-top: 30px; }
  .problem-image img { width: 235px; }
  .problem-image img.device-cutout { width: 245px; transform: translateY(44px) rotate(.8deg); }
  .screens-tabs { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 6px; }
  .screens-tabs button { flex: 0 0 auto; }
  .screens-track { display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 18px 8vw 34px; margin-inline: -14px; }
  .screen-card { min-width: 72vw; scroll-snap-align: center; transform: none; }
  .screen-card.is-featured { transform: none; }
  .product-showcase { padding-top: 90px; }
  .product-showcase-heading { text-align: left; }
  .product-showcase-heading .eyebrow { justify-content: flex-start; }
  .product-tour { grid-template-columns: 1fr; gap: 16px; }
  .product-panel,
  .product-panel-wide {
    min-height: 670px;
    grid-column: auto;
    display: flex;
    border-radius: 34px;
  }
  .product-panel-copy,
  .product-panel:not(.product-panel-wide) .product-panel-copy { padding: 32px 28px 18px; }
  .product-step { margin-bottom: 16px; }
  .product-panel h3,
  .product-panel:not(.product-panel-wide) h3 { font-size: clamp(2rem, 9vw, 2.55rem); }
  .product-panel p { font-size: 16px; }
  .product-panel-visual { padding-inline: 20px; }
  .product-shot,
  .product-panel-wide .product-shot { max-width: min(88%, 330px); max-height: 525px; }
  .privacy-cards { grid-template-columns: 1fr; }
  .privacy-card.wide { grid-column: auto; }
  .guide-grid { grid-template-columns: 1fr; }
  .guide-card { min-height: 270px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
  .article-shell { gap: 26px; padding-bottom: 78px; }
  .article-content { font-size: 17px; }
  .article-cta { padding: 30px 24px; }
  .legal-hero { padding: 60px 0 54px; }
  .legal-wrap { gap: 26px; padding: 46px 0 80px; }
  .legal-card-grid,
  .support-grid { grid-template-columns: 1fr; }
  .legal-contact-card { grid-template-columns: 1fr; }
  .legal-table { min-width: 620px; }
}

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