/* ═══════════════════════════════════════════════════════════════════
   Go Mission - Landing page
   Design tokens, layout, components
   ═══════════════════════════════════════════════════════════════════ */

:root {
  /* Color */
  --bg:           #F7F4EE;
  --bg-soft:      #FBF9F4;
  --bg-card:      #FFFFFF;
  --bg-dark:      #0E3D3B;
  --bg-dark-2:    #0A302E;

  --ink:          #0E1F1E;
  --ink-2:        #1F3331;
  --muted:        #5A6968;
  --muted-2:      #7E8A88;

  --brand:        #0E3D3B;
  --brand-2:      #1E3FB0;
  --brand-2-hov:  #1734A0;

  --accent:       #B8E0BB;
  --accent-soft:  #DCEDDD;
  --accent-mint:  #E5F1E1;

  --line:         #E8E2D7;
  --line-2:       #EFEBE2;
  --line-dark:    rgba(255,255,255,.10);

  --shadow-sm:    0 1px 2px rgba(14,31,30,.04), 0 2px 6px rgba(14,31,30,.04);
  --shadow-md:    0 4px 14px rgba(14,31,30,.06), 0 18px 40px -18px rgba(14,31,30,.18);
  --shadow-lg:    0 8px 24px rgba(14,31,30,.06), 0 30px 60px -24px rgba(14,31,30,.22);
  --shadow-phone: 0 2px 4px rgba(14,31,30,.06), 0 24px 50px -16px rgba(14,31,30,.28), 0 60px 80px -40px rgba(14,31,30,.18);

  /* Radius */
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 999px;

  /* Spacing */
  --container: 1240px;

  /* Type */
  --f-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --f-display: "Inter Tight", "Inter", -apple-system, sans-serif;
}

/* ───────── Reset ───────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--f-sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4 { margin: 0; font-family: var(--f-display); letter-spacing: -0.02em; line-height: 1.12; color: var(--ink); }
p { margin: 0; }

/* ───────── Layout ───────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 720px) { .container { padding: 0 32px; } }

.section {
  padding: 96px 0;
  position: relative;
}
@media (max-width: 720px) {
  .section { padding: 64px 0; }
}

.section__head { max-width: 760px; margin-bottom: 56px; }
.section__head--center { margin-left: auto; margin-right: auto; text-align: center; }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
  padding: 6px 12px;
  background: var(--accent-mint);
  border-radius: var(--r-pill);
}
.kicker--light {
  background: rgba(255,255,255,0.08);
  color: var(--accent);
  border: 1px solid rgba(255,255,255,0.12);
}

.h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  margin-bottom: 16px;
}
.h2--light { color: #fff; }
.section__lead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 640px;
}
.section__head--center .section__lead { margin-left: auto; margin-right: auto; }
.section__lead--light { color: rgba(255,255,255,0.78); }

/* ───────── Buttons ───────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--f-sans);
  font-size: 15px;
  font-weight: 600;
  height: 44px;
  padding: 0 20px;
  border-radius: var(--r-pill);
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}
.btn--lg { height: 52px; padding: 0 26px; font-size: 16px; }

.btn--primary {
  background: var(--brand-2);
  color: #fff;
  box-shadow: 0 1px 2px rgba(0,0,0,0.08), 0 6px 18px -6px rgba(30,63,176,0.55);
}
.btn--primary:hover { background: var(--brand-2-hov); transform: translateY(-1px); box-shadow: 0 1px 2px rgba(0,0,0,0.08), 0 12px 24px -8px rgba(30,63,176,0.55); }

.btn--secondary {
  background: var(--bg-card);
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn--secondary:hover { transform: translateY(-1px); border-color: var(--ink); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
}
.btn--ghost:hover { background: rgba(14,31,30,0.06); }

.btn--ghost-light {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.24);
}
.btn--ghost-light:hover { background: rgba(255,255,255,0.08); }

/* ───────── Nav ───────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247,244,238,0.85);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.nav.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(247,244,238,0.95);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-family: var(--f-display);
  letter-spacing: -0.01em;
  color: var(--ink);
  font-size: 18px;
}
.brand__mark { display: inline-flex; }

.nav__links {
  display: none;
  gap: 24px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-2);
}
.nav__links a { transition: color 0.15s ease; }
.nav__links a:hover { color: var(--brand); }
@media (min-width: 820px) { .nav__links { display: inline-flex; gap: 22px; } }
@media (min-width: 1100px) { .nav__links { gap: 28px; } }

.nav__cta { display: inline-flex; align-items: center; gap: 8px; }
.nav__cta .btn--ghost { display: none; }
@media (min-width: 540px) { .nav__cta .btn--ghost { display: inline-flex; } }

/* ───────── Hero ───────── */
.hero {
  position: relative;
  padding: 64px 0 96px;
  overflow: hidden;
}
@media (min-width: 980px) {
  .hero { padding: 96px 0 128px; }
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.blob {
  position: absolute;
  filter: blur(80px);
  border-radius: 50%;
  opacity: 0.55;
}
.blob--a {
  width: 640px; height: 640px;
  background: radial-gradient(circle at 30% 30%, #B8E0BB 0%, transparent 60%);
  top: -180px; right: -120px;
}
.blob--b {
  width: 540px; height: 540px;
  background: radial-gradient(circle at 70% 70%, #C5D2F4 0%, transparent 65%);
  bottom: -180px; left: -120px;
  opacity: 0.7;
}
.grid-fade {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(14,61,59,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(14,61,59,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 80%);
          mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 80%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: center;
}
@media (min-width: 980px) {
  .hero__inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 56px;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  padding: 8px 14px;
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.eyebrow__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 4px rgba(14,61,59,0.12);
}
.eyebrow__item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.eyebrow__check {
  flex: 0 0 14px;
  display: inline-block;
  vertical-align: middle;
}
.eyebrow__sep {
  color: var(--muted-2);
  font-weight: 400;
  margin: 0 2px;
}

.display {
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.035em;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--ink);
}
.display__accent {
  background: linear-gradient(135deg, #0E3D3B 0%, #1E3FB0 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  display: inline-block;
}

.lede {
  font-size: 19px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 580px;
  margin-bottom: 36px;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 12px 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  max-width: 460px;
}
.trust-badges li { display: flex; flex-direction: column; gap: 2px; }
.trust-badges strong {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.trust-badges span {
  font-size: 13px;
  color: var(--muted);
}

/* ───────── Phone (device frame) ───────── */
.phone {
  position: relative;
  background: #0E1F1E;
  border-radius: 38px;
  padding: 8px;
  box-shadow: var(--shadow-phone);
  overflow: hidden;
}
.phone img {
  display: block;
  border-radius: 30px;
  width: 100%;
  height: auto;
}
.phone__notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 22px;
  background: #0E1F1E;
  border-radius: 14px;
  z-index: 2;
  pointer-events: none;
}

/* Hero phones */
.hero__visual {
  position: relative;
  min-height: 580px;
}
@media (min-width: 980px) {
  .hero__visual { min-height: 680px; }
}
.phone--hero {
  position: absolute;
  width: 240px;
  transition: transform 0.4s ease;
}
@media (min-width: 980px) {
  .phone--hero { width: 280px; }
}
.phone__screen--hero {
  height: 500px;
  width: 100%;
  overflow: hidden;
  border-radius: 30px;
  position: relative;
  background: #F4F4F0;
}
.phone__screen--hero img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
}
@media (min-width: 980px) {
  .phone__screen--hero { height: 560px; }
}

.phone--front {
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: 3;
}
.phone--back {
  left: 12%;
  top: 32px;
  transform: rotate(-9deg);
  z-index: 1;
  opacity: 0.95;
}
.phone--side {
  right: 6%;
  top: 56px;
  transform: rotate(8deg);
  z-index: 2;
  opacity: 0.95;
}

@media (max-width: 720px) {
  .hero__visual { min-height: 540px; }
  .phone--hero { width: 200px; }
  .phone__screen--hero { height: 420px; }
  .phone--back  { left: 4%; top: 40px; transform: rotate(-8deg); }
  .phone--side  { right: 0; top: 64px; transform: rotate(8deg); }
  .phone--front { left: 50%; transform: translateX(-50%); }
}

/* Floating cards on hero */
.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  padding: 12px 16px;
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  font-size: 13px;
  z-index: 4;
}
.float-card__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(184,224,187,0.35);
}
.float-card__label { display: block; color: var(--muted); font-size: 12px; }
.float-card__value { display: block; color: var(--ink); font-weight: 600; font-size: 13.5px; }

.float-card--top {
  top: 24px;
  left: -8px;
  animation: float 6s ease-in-out infinite;
}
.float-card--bottom {
  bottom: 40px;
  right: -8px;
  animation: float 6s ease-in-out infinite;
  animation-delay: -3s;
}
@media (min-width: 980px) {
  .float-card--top { top: 60px; left: -28px; }
  .float-card--bottom { bottom: 80px; right: -32px; }
}
@media (max-width: 720px) {
  .float-card--top { left: -4px; top: 12px; }
  .float-card--bottom { right: -4px; bottom: 24px; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ───────── Trust strip ───────── */
.trust-strip {
  padding: 32px 0 16px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
}
.trust-strip__label {
  text-align: center;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted-2);
  margin-bottom: 18px;
}
.trust-strip__row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 18px;
  font-size: 14px;
  color: var(--ink-2);
  font-weight: 500;
}
.trust-strip__row .dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--muted-2);
  opacity: 0.5;
}

/* ───────── Grid utility ───────── */
.grid { display: grid; gap: 24px; }
.grid--3 { grid-template-columns: 1fr; }
@media (min-width: 720px) {
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
}

/* ───────── Problem cards ───────── */
.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.problem-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}
.problem-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--accent-mint);
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.problem-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.015em;
}
.problem-card p { color: var(--muted); font-size: 15.5px; line-height: 1.6; }

/* ───────── Solution section ───────── */
.section--solution {
  background: var(--bg-dark);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.section--solution::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 20% 0%, rgba(184,224,187,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 100% 100%, rgba(30,63,176,0.20) 0%, transparent 60%);
  pointer-events: none;
}
.section--solution .container { position: relative; z-index: 1; }

.grid--solution {
  gap: 24px;
  /* On tablet widths (720–980px) keep solution cards in a single readable column instead of an orphan layout */
  grid-template-columns: 1fr;
}
@media (min-width: 980px) {
  .grid--solution { grid-template-columns: repeat(3, 1fr); }
}
.sol-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r-lg);
  padding: 32px;
  color: #fff;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.sol-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.18);
}
.sol-card--featured {
  background: linear-gradient(160deg, rgba(184,224,187,0.18) 0%, rgba(255,255,255,0.04) 100%);
  border-color: rgba(184,224,187,0.30);
}
.sol-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.sol-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(184,224,187,0.18);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.sol-card--featured .sol-card__icon {
  background: var(--accent);
  color: var(--brand);
}
.pill {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 600;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.12);
  letter-spacing: 0.04em;
}
.pill--soft {
  background: var(--accent);
  color: var(--brand);
  border-color: transparent;
}
.sol-card h3 {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.015em;
}
.sol-card p {
  color: rgba(255,255,255,0.74);
  font-size: 15.5px;
  line-height: 1.6;
  margin-bottom: 20px;
}
.check-list { display: flex; flex-direction: column; gap: 10px; }
.check-list li {
  position: relative;
  padding-left: 26px;
  font-size: 14.5px;
  color: rgba(255,255,255,0.88);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230E3D3B' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 11px;
  background-position: center;
  background-repeat: no-repeat;
}

/* ───────── App showcase grid ───────── */
.section--showcase { background: var(--bg); }

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: stretch;
}
@media (min-width: 720px) {
  .showcase-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
}
@media (min-width: 1080px) {
  .showcase-grid { grid-template-columns: repeat(3, 1fr); gap: 40px; }
}

.show-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  overflow: hidden;
  position: relative;
}
.show-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--accent-mint) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.show-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
}
.show-card:hover::before { opacity: 1; }
.show-card > * { position: relative; z-index: 1; }

/* Gallery phone - shows the top of a tall mockup, scrolls smoothly on hover */
.phone--gallery {
  width: 240px;
  margin-bottom: 24px;
  border-radius: 36px;
  padding: 6px;
  background: #0E1F1E;
  position: relative;
  box-shadow:
    0 0 0 1px rgba(14,31,30,0.08),
    var(--shadow-phone);
}
.phone--gallery::after {
  /* soft inner highlight on bezel */
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), transparent 30%);
}
.phone--gallery .phone__notch {
  width: 76px;
  height: 18px;
  top: 12px;
  border-radius: 12px;
}
.phone__screen {
  width: 100%;
  height: 480px;
  overflow: hidden;
  border-radius: 30px;
  position: relative;
  background: #F4F4F0;
}
.phone__screen img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
  transition: transform 9s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.show-card:hover .phone__screen img {
  transform: translateY(calc(480px - 100%));
}
.phone__hint {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  background: rgba(14,31,30,0.86);
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: var(--r-pill);
  letter-spacing: 0.02em;
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
  z-index: 3;
  white-space: nowrap;
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
}
.show-card:not(:hover) .phone__hint {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
@media (hover: none) {
  .phone__hint { display: none; }
}

.show-card__body { max-width: 280px; }
.show-card__tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--brand);
  background: var(--accent-mint);
  padding: 5px 12px;
  border-radius: var(--r-pill);
  margin-bottom: 12px;
}
.show-card__body p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

/* ───────── Features ───────── */
.section--features {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.features-grid { gap: 16px; }

.feat {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.feat:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}
.feat__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--accent-mint);
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feat h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.feat p { color: var(--muted); font-size: 14.5px; line-height: 1.55; }

/* ───────── Accessibility section ───────── */
.section--access { background: var(--bg); }
.access {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: center;
}
@media (min-width: 980px) {
  .access {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

.access__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
  margin-top: 32px;
}
.access__list li {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 15.5px;
  color: var(--ink-2);
  font-weight: 500;
}
.access__check {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 28px;
}

.access__visual {
  position: relative;
  display: flex;
  justify-content: center;
  min-height: 520px;
}
.phone--access {
  width: 280px;
  border-radius: 36px;
  position: relative;
  z-index: 1;
}
.phone__screen--access {
  width: 100%;
  height: 580px;
  overflow: hidden;
  border-radius: 30px;
  position: relative;
  background: #F4F4F0;
}
.phone__screen--access img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
}

.hint {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
  z-index: 2;
  min-width: 180px;
}
.hint__title { display: block; font-size: 13.5px; font-weight: 600; color: var(--ink); }
.hint__sub   { display: block; font-size: 12.5px; color: var(--muted); margin-top: 2px; }

/* default (mobile/tablet): keep hint cards within the column */
.hint--a { top: 8%;    left:  4%;  }
.hint--b { top: 44%;   right: 4%;  }
.hint--c { bottom: 6%; left:  4%;  }

@media (min-width: 980px) {
  /* desktop has more room - push hints outside the phone for a richer look */
  .hint--a { top: 10%;   left: -8%;   }
  .hint--b { top: 46%;   right: -6%;  }
  .hint--c { bottom: 8%; left: -2%;   }
}

@media (max-width: 720px) {
  .access__visual { min-height: 480px; }
  .phone--access { width: 230px; }
  .phone__screen--access { height: 460px; }
  .hint--a { top: 4%;  left: 2%;  }
  .hint--b { top: 40%; right: 2%; }
  .hint--c { bottom: 6%; left: 2%; }
  .access__list { grid-template-columns: 1fr; }
}

/* ───────── Backoffice teaser ───────── */
.section--backoffice {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.backoffice {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}
@media (min-width: 980px) {
  .backoffice { grid-template-columns: 1.15fr 1fr; gap: 72px; }
}

.backoffice__bullets { display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }
.backoffice__bullets li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.55;
}
.backoffice__bullets li strong { color: var(--ink); display: block; margin-bottom: 2px; font-weight: 600; }
.backoffice__bullets li::before {
  content: "";
  position: absolute;
  left: 0; top: 6px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--accent);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230E3D3B' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}

/* Browser window mock */
.bo-window {
  background: var(--bg-card);
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.bo-window__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
}
.bo-window__bar > span {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--line);
}
.bo-window__bar > span:first-child { background: #FF6058; }
.bo-window__bar > span:nth-child(2) { background: #FFBE2E; }
.bo-window__bar > span:nth-child(3) { background: #28C940; }
.bo-window__url {
  margin-left: 16px;
  background: var(--bg);
  padding: 5px 12px;
  border-radius: 8px;
  font-size: 12px;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
}
.bo-window__body {
  display: grid;
  grid-template-columns: 180px 1fr;
  min-height: 380px;
}
@media (max-width: 540px) {
  .bo-window__body { grid-template-columns: 1fr; }
}

.bo-side {
  background: var(--bg);
  padding: 20px 14px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.bo-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 4px 16px;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
}
.bo-nav { display: flex; flex-direction: column; gap: 4px; }
.bo-nav__item {
  display: flex;
  padding: 8px 12px;
  font-size: 13.5px;
  color: var(--muted);
  border-radius: 8px;
  font-weight: 500;
}
.bo-nav__item.is-active {
  background: var(--bg-card);
  color: var(--brand);
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
@media (max-width: 540px) { .bo-side { display: none; } }

.bo-main { padding: 24px; display: flex; flex-direction: column; gap: 20px; }
.bo-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 720px) { .bo-row { grid-template-columns: 1fr; } }
.bo-stat {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
  display: flex;
  flex-direction: column;
}
.bo-stat__label { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }
.bo-stat__value { font-size: 26px; font-family: var(--f-display); font-weight: 700; color: var(--ink); margin: 4px 0 2px; letter-spacing: -0.02em; }
.bo-stat__delta { font-size: 12px; color: var(--brand); font-weight: 500; }

.bo-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
}
.bo-card__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
}
.bo-card__link { color: var(--brand-2); font-weight: 500; cursor: pointer; }

.bo-list { display: flex; flex-direction: column; gap: 10px; }
.bo-list__item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  background: var(--bg-card);
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
}
.bo-chip {
  font-size: 11.5px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 6px;
  letter-spacing: 0.04em;
}
.bo-chip--mint { background: var(--accent-mint); color: var(--brand); }
.bo-chip--blue { background: #E3EAFC; color: var(--brand-2); }
.bo-list__title { font-size: 13.5px; font-weight: 600; color: var(--ink); }
.bo-list__meta { font-size: 12px; color: var(--muted); }
@media (max-width: 540px) {
  .bo-list__item { grid-template-columns: auto 1fr; }
  .bo-list__meta { grid-column: 2; }
}

/* ───────── Experience / Stats ───────── */
.section--experience { background: var(--bg); }
.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 56px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
  border-radius: var(--r-xl);
  padding: 8px;
  border: 1px solid var(--line);
}
@media (min-width: 720px) {
  .stats { grid-template-columns: repeat(4, 1fr); }
}
.stat {
  background: var(--bg-card);
  border-radius: var(--r-lg);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
}
.stat__num {
  font-family: var(--f-display);
  font-size: clamp(36px, 4.5vw, 52px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, #0E3D3B 0%, #1E3FB0 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.stat__plus { color: inherit; -webkit-text-fill-color: inherit; }
.stat__label { font-size: 14px; color: var(--muted); }

.values {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 720px) { .values { grid-template-columns: repeat(3, 1fr); } }
.value {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
}
.value__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--accent-mint);
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.value h3 {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.value p { color: var(--muted); font-size: 15px; line-height: 1.55; }

/* ───────── Final CTA ───────── */
.section--cta { padding: 64px 0 96px; }
.cta-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-xl);
  background: var(--bg-dark);
  color: #fff;
  padding: 64px 32px;
  text-align: center;
}
.cta-card__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 20% 0%, rgba(184,224,187,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 100% 100%, rgba(30,63,176,0.40) 0%, transparent 60%);
  pointer-events: none;
}
.cta-card__inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.cta-card .h2 { margin-bottom: 16px; }
.cta-card .section__lead { margin: 0 auto 32px; }
.cta-card__buttons { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.cta-card__assurances {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.66);
}
.cta-card__assurances li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cta-card__assurances li::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
@media (min-width: 720px) {
  .cta-card { padding: 88px 64px; }
}

/* ───────── Footer ───────── */
.footer {
  background: var(--bg-dark-2);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
}
.footer .brand { color: #fff; }
.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line-dark);
}
@media (min-width: 720px) {
  .footer__inner { grid-template-columns: 1.4fr 2fr; gap: 64px; }
}

.footer__brand p {
  margin-top: 16px;
  font-size: 14.5px;
  line-height: 1.6;
  max-width: 360px;
  color: rgba(255,255,255,0.6);
}

.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 540px) { .footer__cols { grid-template-columns: 1fr 1fr; } }

.footer__cols h4 {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.10em;
}
.footer__cols ul { display: flex; flex-direction: column; gap: 10px; }
.footer__cols a {
  font-size: 14.5px;
  color: rgba(255,255,255,0.65);
  transition: color 0.15s ease;
}
.footer__cols a:hover { color: #fff; }

.footer__base {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 28px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

/* ───────── Reveal animation ───────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .float-card--top, .float-card--bottom { animation: none; }
}

/* ───────── Selection ───────── */
::selection { background: var(--accent); color: var(--brand); }
