@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@600;700;800&display=swap');

:root {
  --ink: #082f49;
  --ink-soft: #365668;
  --brand: #087f8c;
  --brand-dark: #075985;
  --teal: #11aeb4;
  --orange: #f7931e;
  --mist: #eef9f8;
  --cream: #fbfaf5;
  --line: #d9e8e8;
  --white: #fff;
  --shadow: 0 24px 65px rgba(8, 47, 73, .12);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--cream); font: 400 16px/1.65 "DM Sans", sans-serif; }
body::before { content: ""; position: fixed; inset: 0; pointer-events: none; opacity: .24; background-image: radial-gradient(rgba(8, 47, 73, .1) .6px, transparent .6px); background-size: 18px 18px; z-index: -1; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
svg { width: 1.2em; height: 1.2em; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: "Manrope", sans-serif; line-height: 1.12; letter-spacing: -.035em; }
h1 { font-size: clamp(2.8rem, 6vw, 5.7rem); margin-bottom: 24px; }
h2 { font-size: clamp(2rem, 4vw, 3.8rem); margin-bottom: 18px; }
h3 { font-size: 1.25rem; margin-bottom: 12px; }
p { color: var(--ink-soft); }

.shell { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: 108px 0; }
.section-tight { padding: 72px 0; }
.section-mist { background: var(--mist); }
.section-ink { color: white; background: var(--ink); }
.section-ink p { color: #bad1db; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 18px; color: var(--brand); font-size: .76rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 24px; height: 2px; background: var(--orange); }
.section-heading { max-width: 720px; margin-bottom: 44px; }
.section-heading p { max-width: 620px; font-size: 1.1rem; }
.muted { color: var(--ink-soft); }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--brand-dark); font-weight: 700; }
.text-link:hover { gap: 12px; }

.skip-link { position: fixed; top: 8px; left: 8px; transform: translateY(-150%); z-index: 999; padding: 10px 14px; color: white; background: var(--ink); border-radius: 8px; }
.skip-link:focus { transform: none; }
.notice { color: white; background: var(--ink); font-size: .8rem; }
.notice-inner { min-height: 34px; display: flex; justify-content: space-between; align-items: center; }
.notice span { display: inline-flex; align-items: center; gap: 6px; }
[data-site-header] { position: sticky; top: 0; z-index: 50; background: rgba(251, 250, 245, .9); border-bottom: 1px solid rgba(8, 47, 73, .08); backdrop-filter: blur(16px); }
.nav-shell { min-height: 78px; display: flex; align-items: center; gap: 38px; }
.brand { display: inline-flex; align-items: center; gap: 11px; margin-right: auto; font-family: "Manrope", sans-serif; font-size: 1.15rem; font-weight: 800; line-height: 1.05; }
.brand img { width: 46px; height: 46px; border-radius: 15px; box-shadow: 0 10px 24px rgba(8, 127, 140, .17); }
.brand small { display: block; margin-top: 4px; color: var(--ink-soft); font-family: "DM Sans", sans-serif; font-size: .63rem; font-weight: 600; letter-spacing: .01em; }
.desktop-nav { display: flex; gap: 28px; align-items: center; }
.desktop-nav a { position: relative; padding: 10px 0; font-size: .92rem; font-weight: 700; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 4px; height: 2px; background: var(--orange); transition: right .2s; }
.desktop-nav a:hover::after, .desktop-nav a[aria-current="page"]::after { right: 0; }
.menu-button { display: none; padding: 10px; color: var(--ink); background: transparent; border: 0; cursor: pointer; }
.menu-button svg { width: 26px; height: 26px; }
.mobile-nav { display: grid; padding-bottom: 18px; }
.mobile-nav[hidden] { display: none; }
.mobile-nav a { padding: 11px 4px; border-bottom: 1px solid var(--line); font-weight: 700; }
.mobile-nav a[aria-current="page"] { color: var(--brand); }

.button { display: inline-flex; justify-content: center; align-items: center; gap: 9px; min-height: 52px; padding: 0 23px; color: white; background: var(--ink); border: 1px solid var(--ink); border-radius: 999px; font-weight: 800; transition: transform .2s, box-shadow .2s, background .2s; }
.button:hover { transform: translateY(-2px); box-shadow: 0 15px 30px rgba(8, 47, 73, .18); }
.button-small { min-height: 44px; padding: 0 18px; font-size: .88rem; }
.button-brand { background: var(--brand); border-color: var(--brand); }
.button-light { color: var(--ink); background: white; border-color: white; }
.button-ghost { color: var(--ink); background: transparent; border-color: #b7cecf; }
.button.is-disabled, .store-button.is-disabled { opacity: .55; cursor: not-allowed; pointer-events: none; }

.hero { padding: 72px 0 42px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 58px; align-items: center; }
.hero-copy { position: relative; z-index: 1; }
.hero-copy > p { max-width: 610px; margin-bottom: 32px; font-size: 1.18rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 34px; font-size: .86rem; font-weight: 700; }
.hero-trust span { display: flex; align-items: center; gap: 8px; }
.hero-trust span::before { content: "✓"; display: grid; place-items: center; width: 22px; height: 22px; color: white; background: var(--teal); border-radius: 50%; }
.hero-visual { position: relative; min-height: 590px; }
.hero-visual::before { content: ""; position: absolute; inset: 4% -12% 8% 6%; background: linear-gradient(135deg, #c6f2ef, #dceff6); border-radius: 49% 51% 47% 53% / 42% 39% 61% 58%; transform: rotate(-5deg); }
.hero-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; border-radius: 42% 58% 42% 58% / 37% 40% 60% 63%; box-shadow: var(--shadow); }
.floating-card { position: absolute; display: flex; align-items: center; gap: 12px; max-width: 220px; padding: 14px 16px; background: rgba(255,255,255,.94); border: 1px solid white; border-radius: 18px; box-shadow: 0 16px 35px rgba(8,47,73,.15); font-weight: 700; backdrop-filter: blur(8px); }
.floating-card strong { display: block; font-family: "Manrope", sans-serif; font-size: 1.2rem; }
.floating-card small { color: var(--ink-soft); font-weight: 600; }
.floating-one { left: -28px; bottom: 44px; }
.floating-two { right: -15px; top: 48px; }
.pulse { width: 38px; height: 38px; display: grid; place-items: center; flex: none; color: white; background: var(--orange); border-radius: 13px; }

.proof-strip { padding: 34px 0 58px; }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-block: 1px solid var(--line); }
.proof-item { padding: 25px; border-right: 1px solid var(--line); }
.proof-item:last-child { border-right: 0; }
.proof-item strong { display: block; font-family: "Manrope", sans-serif; font-size: 1.08rem; }
.proof-item span { color: var(--ink-soft); font-size: .88rem; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card { position: relative; overflow: hidden; min-height: 270px; padding: 30px; background: white; border: 1px solid var(--line); border-radius: var(--radius); transition: transform .25s, box-shadow .25s; }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.card p { margin-bottom: 18px; }
.service-icon { width: 56px; height: 56px; display: grid; place-items: center; margin-bottom: 26px; color: var(--brand); background: var(--mist); border-radius: 18px; font: 800 1rem/1 "Manrope", sans-serif; }
.service-icon.orange { color: #a85200; background: #fff1dc; }
.service-icon.blue { color: #075985; background: #e3f2fa; }
.card-list { padding: 0; margin: 18px 0 0; list-style: none; color: var(--ink-soft); }
.card-list li { position: relative; padding: 7px 0 7px 21px; }
.card-list li::before { content: ""; position: absolute; left: 0; top: 17px; width: 8px; height: 8px; background: var(--teal); border-radius: 50%; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; counter-reset: step; }
.step { position: relative; padding: 14px 42px 14px 0; counter-increment: step; }
.step:not(:last-child)::after { content: ""; position: absolute; top: 40px; right: 18px; width: 35%; border-top: 1px dashed #90b6b7; }
.step::before { content: "0" counter(step); display: grid; place-items: center; width: 70px; height: 70px; margin-bottom: 24px; color: white; background: var(--brand); border-radius: 23px; font: 800 1.15rem/1 "Manrope", sans-serif; box-shadow: 9px 9px 0 #c9e8e6; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.feature-panel { padding: 42px; background: white; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.feature-row { display: grid; grid-template-columns: auto 1fr; gap: 15px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.feature-row:last-child { border-bottom: 0; }
.feature-row b { width: 34px; height: 34px; display: grid; place-items: center; color: white; background: var(--teal); border-radius: 50%; }
.feature-row p { margin: 4px 0 0; font-size: .92rem; }

.download-band { position: relative; overflow: hidden; border-radius: 42px; background: linear-gradient(120deg, #073f5c, #087f8c); }
.download-band::after { content: "S"; position: absolute; right: 3%; top: -47%; color: rgba(255,255,255,.07); font: 800 28rem/1 "Manrope", sans-serif; }
.download-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; padding: 70px; color: white; }
.download-inner p { color: #d4efef; }
.store-buttons { display: flex; flex-wrap: wrap; gap: 12px; }
.store-button { min-width: 185px; display: flex; align-items: center; gap: 12px; padding: 12px 17px; color: white; background: #061f31; border: 1px solid rgba(255,255,255,.18); border-radius: 15px; }
.store-button svg { width: 28px; height: 28px; }
.store-button small, .store-button strong { display: block; line-height: 1.2; }
.store-button small { margin-bottom: 4px; color: #bcd2dc; font-size: .67rem; text-transform: uppercase; }
.download-qr { justify-self: end; display: flex; gap: 14px; }
.qr-mini { width: 154px; padding: 12px; color: var(--ink); background: white; border-radius: 18px; text-align: center; }
.qr-mini img { border-radius: 9px; }
.qr-mini strong { display: block; margin-top: 8px; font-size: .78rem; }

.page-hero { padding: 92px 0 75px; background: linear-gradient(180deg, #e9f8f6 0, var(--cream) 100%); }
.page-hero .shell { max-width: 920px; text-align: center; }
.page-hero h1 { font-size: clamp(2.7rem, 6vw, 5.2rem); }
.page-hero p { max-width: 680px; margin: 0 auto; font-size: 1.17rem; }
.service-group { display: grid; grid-template-columns: 280px 1fr; gap: 50px; padding: 48px 0; border-bottom: 1px solid var(--line); }
.service-group:last-child { border-bottom: 0; }
.service-group-number { color: var(--orange); font: 800 .8rem/1 "Manrope", sans-serif; letter-spacing: .12em; }
.service-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.service-pills span { padding: 10px 14px; color: var(--ink-soft); background: white; border: 1px solid var(--line); border-radius: 999px; font-weight: 700; font-size: .9rem; }

.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.value { padding: 32px; border: 1px solid var(--line); border-radius: var(--radius); background: white; }
.value b { display: block; margin-bottom: 35px; color: var(--orange); font: 800 2rem/1 "Manrope", sans-serif; }
.timeline { display: grid; gap: 16px; }
.timeline-item { display: grid; grid-template-columns: 90px 1fr; gap: 25px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.timeline-item strong { color: var(--brand); }

.download-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.download-card { padding: 40px; background: white; border: 1px solid var(--line); border-radius: var(--radius); }
.download-card .qr { width: min(250px, 100%); margin: 28px auto; padding: 15px; border: 1px solid var(--line); border-radius: 20px; }
.download-card .store-button { margin: 0 auto; }
.url-note { overflow-wrap: anywhere; margin-top: 18px; color: var(--ink-soft); font-size: .82rem; text-align: center; }

.contact-grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: 28px; }
.contact-card { padding: 36px; background: white; border: 1px solid var(--line); border-radius: var(--radius); }
.contact-card + .contact-card { margin-top: 18px; }
.contact-label { display: block; margin-bottom: 8px; color: var(--brand); font-size: .77rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.faq details { padding: 22px 0; border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; font-family: "Manrope", sans-serif; font-weight: 800; }
.faq details p { margin: 12px 0 0; }
.legal { max-width: 820px; }
.legal h2 { margin: 52px 0 16px; font-size: 1.75rem; }
.legal h3 { margin-top: 28px; }
.legal li { margin-bottom: 8px; color: var(--ink-soft); }
.legal-meta { padding: 18px 22px; background: var(--mist); border-radius: 14px; }

.cta { padding: 80px 0; text-align: center; }
.cta h2 { max-width: 780px; margin-inline: auto; }
.cta p { max-width: 620px; margin: 0 auto 28px; }

footer { padding: 72px 0 24px; color: white; background: #05283c; }
.footer-grid { display: grid; grid-template-columns: 1.8fr repeat(3, 1fr); gap: 50px; padding-bottom: 50px; }
.brand-light small, .footer-brand p, footer span { color: #9eb9c5; }
.footer-brand p { max-width: 320px; margin-top: 22px; }
footer h2 { margin-bottom: 20px; color: #79d6d2; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; }
footer a, footer span { display: block; margin: 10px 0; font-size: .9rem; }
footer a:hover { color: #79d6d2; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.11); }
.footer-bottom span { margin: 0; font-size: .78rem; }

[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 960px) {
  .desktop-nav, .nav-cta { display: none; }
  .menu-button { display: grid; place-items: center; }
  .hero-grid, .split, .download-inner, .contact-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 54px; }
  .hero-visual { min-height: 520px; }
  .cards, .values { grid-template-columns: repeat(2, 1fr); }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-item:nth-child(2) { border-right: 0; }
  .proof-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .download-qr { justify-self: start; }
  .service-group { grid-template-columns: 180px 1fr; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .shell { width: min(100% - 28px, 1180px); }
  .section { padding: 76px 0; }
  .notice-inner { justify-content: center; }
  .notice-inner span:last-child { display: none; }
  .nav-shell { min-height: 70px; }
  .brand small { display: none; }
  .hero-grid { gap: 36px; }
  .hero-visual { min-height: 400px; }
  .floating-card { display: none; }
  .hero-actions .button { width: 100%; }
  .cards, .values, .steps, .download-grid { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .proof-item { padding: 18px 12px; }
  .step:not(:last-child)::after { display: none; }
  .feature-panel, .download-card { padding: 28px; }
  .download-inner { padding: 42px 24px; }
  .download-qr { width: 100%; }
  .qr-mini { flex: 1; width: auto; }
  .service-group { grid-template-columns: 1fr; gap: 16px; padding: 38px 0; }
  .timeline-item { grid-template-columns: 1fr; gap: 4px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
