:root {
  --ink: #10182b;
  --muted: #58657b;
  --line: #dfe5ee;
  --soft: #f4f7fb;
  --panel: #ffffff;
  --accent: #2657ff;
  --accent-dark: #1839ad;
  --fresh: #b7f25d;
  --shadow: 0 22px 60px rgba(21, 35, 69, 0.12);
  --radius: 22px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}
a { color: inherit; }
img { max-width: 100%; }
.container { width: min(calc(100% - 32px), var(--max)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: -999px; top: 8px; background: var(--ink); color: #fff; padding: 8px 12px; z-index: 100; }
.skip-link:focus { left: 8px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(223, 229, 238, 0.8);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
}
.nav-wrap { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 850; letter-spacing: -0.03em; font-size: 1.15rem; }
.brand-mark { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 10px; background: var(--ink); color: #fff; font-size: 0.74rem; letter-spacing: -0.04em; }
.nav-links { display: flex; align-items: center; gap: 22px; font-size: 0.94rem; }
.nav-links a { text-decoration: none; color: var(--muted); font-weight: 650; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--ink); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.language-select { border: 1px solid var(--line); border-radius: 999px; background: #fff; padding: 9px 30px 9px 12px; color: var(--ink); font: inherit; font-size: 0.88rem; }
.nav-toggle { display: none; border: 1px solid var(--line); background: #fff; border-radius: 10px; padding: 8px 10px; font: inherit; }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 8px; border-radius: 999px; padding: 12px 19px; text-decoration: none; font-weight: 760; border: 1px solid transparent; transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease; }
.button:hover { transform: translateY(-1px); }
.button-primary { background: var(--accent); color: #fff; box-shadow: 0 10px 26px rgba(38, 87, 255, 0.25); }
.button-primary:hover { background: var(--accent-dark); }
.button-secondary { border-color: var(--line); background: #fff; color: var(--ink); }
.button-small { padding: 9px 15px; font-size: 0.88rem; }

.hero { padding: 74px 0 52px; overflow: hidden; background: radial-gradient(circle at 83% 5%, rgba(183, 242, 93, 0.25), transparent 25%), radial-gradient(circle at 15% 2%, rgba(38, 87, 255, 0.12), transparent 24%); }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 62px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; margin: 0 0 16px; padding: 6px 10px; border-radius: 999px; background: #eaf0ff; color: var(--accent-dark); font-size: 0.78rem; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
h1 { max-width: 780px; margin: 0; font-size: clamp(2.55rem, 6vw, 5.5rem); line-height: 0.98; letter-spacing: -0.065em; }
.hero p.lead { max-width: 680px; margin: 24px 0 0; color: var(--muted); font-size: clamp(1.04rem, 1.8vw, 1.25rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.microcopy { margin-top: 15px; color: var(--muted); font-size: 0.87rem; }

.dashboard { position: relative; padding: 18px; border: 1px solid rgba(223, 229, 238, 0.8); border-radius: 28px; background: rgba(255,255,255,0.88); box-shadow: var(--shadow); transform: rotate(1deg); }
.dashboard-top { display: flex; align-items: center; justify-content: space-between; padding: 6px 4px 16px; }
.dashboard-dots { display: flex; gap: 5px; }
.dashboard-dots span { width: 7px; height: 7px; border-radius: 50%; background: #c7cfdb; }
.dashboard-pill { border-radius: 999px; background: #eef3fb; color: var(--muted); font-size: 0.72rem; padding: 5px 9px; }
.metric-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.metric { min-height: 96px; border-radius: 16px; padding: 14px; background: var(--soft); }
.metric strong { display: block; margin-top: 12px; font-size: 1.4rem; letter-spacing: -0.04em; }
.metric span { color: var(--muted); font-size: 0.72rem; }
.trip-list { margin-top: 12px; padding: 6px 14px; border-radius: 18px; background: #fff; border: 1px solid var(--line); }
.trip-row { display: grid; grid-template-columns: 10px 1fr auto; align-items: center; gap: 10px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.trip-row:last-child { border-bottom: 0; }
.trip-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.trip-name { font-weight: 760; font-size: 0.88rem; }
.trip-meta { display: block; color: var(--muted); font-size: 0.72rem; }
.tag { padding: 5px 8px; border-radius: 999px; background: #eaf7d6; color: #385d08; font-size: 0.68rem; font-weight: 800; }

.section { padding: 76px 0; }
.section-soft { background: var(--soft); }
.section-dark { background: var(--ink); color: #fff; }
.section-head { max-width: 740px; margin-bottom: 34px; }
.section-head h2 { margin: 0; font-size: clamp(2rem, 4vw, 3.5rem); line-height: 1.04; letter-spacing: -0.05em; }
.section-head p { margin: 16px 0 0; color: var(--muted); font-size: 1.05rem; }
.section-dark .section-head p { color: #b7c1d3; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.card { border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; background: var(--panel); }
.card h3 { margin: 13px 0 8px; font-size: 1.25rem; letter-spacing: -0.025em; }
.card p { margin: 0; color: var(--muted); }
.card-icon { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 12px; background: #eaf0ff; color: var(--accent); font-weight: 900; }
.card-link { display: inline-flex; margin-top: 18px; color: var(--accent-dark); text-decoration: none; font-weight: 780; }

.steps { counter-reset: steps; display: grid; gap: 12px; }
.step { counter-increment: steps; display: grid; grid-template-columns: 54px 1fr; gap: 18px; align-items: start; padding: 20px; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.step::before { content: counter(steps); width: 44px; height: 44px; display: grid; place-items: center; border-radius: 14px; background: var(--ink); color: #fff; font-weight: 850; }
.step h3 { margin: 2px 0 5px; }
.step p { margin: 0; color: var(--muted); }

.feature-hero { padding: 62px 0 44px; background: linear-gradient(180deg, #f7f9fd 0%, #fff 100%); }
.feature-hero h1 { max-width: 920px; font-size: clamp(2.5rem, 5.5vw, 4.9rem); }
.feature-hero .lead { max-width: 760px; color: var(--muted); font-size: 1.17rem; }
.breadcrumbs { margin-bottom: 18px; font-size: 0.82rem; color: var(--muted); }
.breadcrumbs a { text-decoration: none; }
.prose { max-width: 800px; }
.prose h2 { margin-top: 2.4em; font-size: clamp(1.7rem, 3vw, 2.4rem); letter-spacing: -0.035em; line-height: 1.15; }
.prose h3 { margin-top: 1.8em; }
.prose p, .prose li { color: #344156; }
.prose ul { padding-left: 1.2rem; }
.prose .notice { margin: 28px 0; border-left: 4px solid var(--accent); background: #eef3ff; border-radius: 0 14px 14px 0; padding: 16px 18px; }

.plan-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; align-items: stretch; }
.plan { position: relative; border: 1px solid var(--line); border-radius: 26px; padding: 30px; background: #fff; }
.plan-featured { border-color: var(--accent); box-shadow: 0 16px 46px rgba(38, 87, 255, 0.12); }
.plan-label { position: absolute; right: 18px; top: 18px; border-radius: 999px; background: var(--fresh); padding: 5px 9px; font-size: 0.72rem; font-weight: 850; }
.plan h2 { margin: 0 0 5px; }
.price { margin: 18px 0; font-size: 2.5rem; font-weight: 900; letter-spacing: -0.055em; }
.price small { font-size: 0.95rem; color: var(--muted); font-weight: 600; letter-spacing: 0; }
.check-list { list-style: none; padding: 0; margin: 20px 0 0; }
.check-list li { position: relative; padding: 8px 0 8px 28px; color: #344156; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 900; }

.faq { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); padding: 4px 0; }
summary { cursor: pointer; list-style: none; padding: 22px 40px 22px 0; font-weight: 780; position: relative; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 4px; top: 18px; font-size: 1.4rem; color: var(--accent); }
details[open] summary::after { content: "−"; }
details p { margin: -4px 0 22px; color: var(--muted); max-width: 820px; }

.guide-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.guide-card { text-decoration: none; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; background: #fff; transition: transform 160ms ease, box-shadow 160ms ease; }
.guide-card:hover { transform: translateY(-2px); box-shadow: 0 14px 35px rgba(21,35,69,0.1); }
.guide-card span { color: var(--accent-dark); font-size: 0.76rem; font-weight: 850; text-transform: uppercase; letter-spacing: 0.04em; }
.guide-card h2 { margin: 9px 0 8px; font-size: 1.5rem; letter-spacing: -0.03em; }
.guide-card p { margin: 0; color: var(--muted); }

.cta-band { display: flex; justify-content: space-between; align-items: center; gap: 28px; padding: 36px; border-radius: 28px; background: var(--ink); color: #fff; }
.cta-band h2 { margin: 0; font-size: clamp(1.8rem, 3vw, 2.7rem); letter-spacing: -0.045em; line-height: 1.08; }
.cta-band p { color: #bdc8da; margin: 10px 0 0; }

.site-footer { padding: 54px 0 26px; background: #0c1324; color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 42px; }
.footer-grid h3 { margin: 0 0 12px; font-size: 0.86rem; color: #c4cede; }
.footer-grid p, .footer-grid a { color: #9eabc0; font-size: 0.88rem; }
.footer-grid a { display: block; text-decoration: none; margin: 8px 0; }
.footer-bottom { margin-top: 38px; padding-top: 20px; border-top: 1px solid #253049; display: flex; justify-content: space-between; gap: 18px; color: #8190a8; font-size: 0.78rem; }

@media (max-width: 900px) {
  .hero-grid, .grid-3, .grid-2, .footer-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 52px; }
  .dashboard { transform: none; max-width: 680px; }
  .nav-toggle { display: inline-flex; }
  .nav-links { display: none; position: absolute; left: 16px; right: 16px; top: 72px; padding: 18px; flex-direction: column; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .nav-actions .button { display: none; }
  .cta-band { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 640px) {
  .section { padding: 58px 0; }
  .metric-grid, .plan-grid, .guide-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .language-select { max-width: 86px; }
  .card, .plan { padding: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}


.brand-logo { display: block; width: auto; height: 34px; }
.brand-logo-footer { height: 40px; }
.hero-logo { height: clamp(34px, 4vw, 52px); width: auto; margin-bottom: 18px; }
.dashboard-note { margin-top: 14px; color: var(--muted); font-size: 0.8rem; }
.screenshot-grid { display: grid; grid-template-columns: 1.15fr 1fr 1fr; gap: 18px; align-items: stretch; }
.shot-card { margin: 0; border: 1px solid var(--line); border-radius: 24px; overflow: hidden; background: #fff; box-shadow: var(--shadow); }
.shot-card img { width: 100%; height: 100%; display: block; object-fit: cover; }
.shot-large { grid-row: span 2; }
.shot-card figcaption { padding: 16px 18px 18px; display: grid; gap: 6px; }
.shot-card figcaption strong { font-size: 1rem; letter-spacing: -0.02em; }
.shot-card figcaption span { color: var(--muted); font-size: 0.9rem; }
.fineprint { margin-top: 18px; color: var(--muted); font-size: 0.88rem; }
.visual-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 18px; align-items: stretch; }
.insight-card { border: 1px solid var(--line); border-radius: 24px; padding: 24px; background: #fff; box-shadow: var(--shadow); }
.insight-card h2 { margin: 0 0 10px; font-size: clamp(1.6rem, 3vw, 2.2rem); line-height: 1.05; letter-spacing: -0.04em; }
.insight-card p { margin: 0 0 14px; color: var(--muted); }
.label-list { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 10px; }
.label-list li { padding: 12px 14px; border-radius: 14px; background: var(--soft); font-weight: 650; color: #344156; }
@media (max-width: 900px) {
  .screenshot-grid, .visual-grid { grid-template-columns: 1fr; }
  .shot-large { grid-row: auto; }
  .brand-logo { height: 28px; }
}
