:root {
  --ink: #0b1729;
  --ink-2: #20314a;
  --muted: #607086;
  --line: #dfe6ef;
  --line-strong: #c9d4e2;
  --paper: #ffffff;
  --paper-2: #f6f8fb;
  --paper-3: #eef3f8;
  --blue: #1768e5;
  --blue-dark: #0e4fae;
  --blue-soft: #eaf2ff;
  --teal: #087b85;
  --good: #16794d;
  --warn: #a05a00;
  --danger: #a63838;
  --shadow-sm: 0 8px 26px rgba(11, 23, 41, 0.08);
  --shadow-lg: 0 28px 72px rgba(11, 23, 41, 0.13);
  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 28px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-dark); }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

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

.container { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }
.narrow { width: min(calc(100% - 40px), 860px); margin: 0 auto; }
.section { padding: 92px 0; }
.section--tight { padding: 64px 0; }
.section--muted { background: var(--paper-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section--dark { background: var(--ink); color: white; }
.section--dark .muted { color: #bdc9d8; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.95);
  border-bottom: 1px solid rgba(201,212,226,.85);
  backdrop-filter: blur(14px);
}
.nav-wrap { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--ink); font-weight: 820; letter-spacing: -.02em; }
.brand:hover { color: var(--ink); }
.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: #fff;
  font-weight: 900;
  letter-spacing: -.06em;
  box-shadow: inset -8px -8px 0 rgba(23,104,229,.28);
}
.brand-copy { line-height: 1; }
.brand-copy small { display: block; margin-top: 5px; font-size: 10px; color: var(--muted); letter-spacing: .17em; font-weight: 760; }
.site-nav { display: flex; align-items: center; gap: 26px; }
.site-nav > a { color: var(--ink-2); font-size: 14px; font-weight: 720; }
.site-nav > a:hover, .site-nav > a[aria-current="page"] { color: var(--blue); }
.nav-toggle { display: none; border: 1px solid var(--line); background: #fff; border-radius: 10px; padding: 9px 11px; color: var(--ink); }
.nav-toggle span { width: 20px; height: 2px; display: block; margin: 4px 0; background: currentColor; }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 46px; padding: 0 18px; border: 1px solid transparent; border-radius: 10px; font-weight: 760; font-size: 14px; transition: .18s ease; }
.button:hover { transform: translateY(-1px); }
.button--primary { background: var(--blue); color: #fff; box-shadow: 0 8px 22px rgba(23,104,229,.18); }
.button--primary:hover { background: var(--blue-dark); color: #fff; }
.button--secondary { background: #fff; color: var(--ink); border-color: var(--line-strong); }
.button--secondary:hover { border-color: #97aac1; color: var(--ink); }
.button--dark { background: var(--ink); color: white; }
.button--dark:hover { color: white; background: #132540; }
.button.is-disabled, a.is-disabled { opacity: .55; cursor: not-allowed; pointer-events: none; }

.hero { position: relative; overflow: hidden; padding: 100px 0 92px; background: linear-gradient(180deg, #fff 0%, #f7faff 100%); border-bottom: 1px solid var(--line); }
.hero::before { content: ""; position: absolute; width: 620px; height: 620px; border-radius: 50%; right: -260px; top: -350px; background: radial-gradient(circle, rgba(23,104,229,.15), rgba(23,104,229,0) 68%); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.03fr) minmax(360px, .97fr); gap: 64px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 18px; font-size: 12px; text-transform: uppercase; letter-spacing: .14em; font-weight: 850; color: var(--blue-dark); }
.eyebrow::before { content: ""; width: 24px; height: 2px; background: var(--blue); }
h1, h2, h3 { margin: 0; color: var(--ink); line-height: 1.08; letter-spacing: -.035em; }
h1 { font-size: clamp(44px, 7vw, 76px); max-width: 850px; }
h2 { font-size: clamp(34px, 4.6vw, 52px); }
h3 { font-size: 22px; }
.hero h1 span { color: var(--blue); }
.lead { max-width: 680px; margin: 24px 0 0; color: var(--muted); font-size: clamp(18px, 2.2vw, 21px); line-height: 1.65; }
.hero-actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 12px; }
.hero-note { margin-top: 20px; color: var(--muted); font-size: 13px; }

.terminal-panel { position: relative; background: #0c192c; border: 1px solid #1f324f; border-radius: 28px; box-shadow: var(--shadow-lg); padding: 22px; color: #fff; transform: rotate(.4deg); }
.terminal-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.terminal-title { font-weight: 800; letter-spacing: -.02em; }
.terminal-status { display: inline-flex; align-items: center; gap: 7px; color: #cbe0ff; font-size: 12px; }
.terminal-status i { width: 8px; height: 8px; border-radius: 50%; background: #4dd899; box-shadow: 0 0 0 5px rgba(77,216,153,.12); }
.terminal-screen { background: #f8fbff; border-radius: 18px; color: var(--ink); padding: 24px; }
.screen-label { font-size: 11px; text-transform: uppercase; letter-spacing: .14em; color: var(--muted); font-weight: 800; }
.screen-value { margin-top: 5px; font-size: 34px; line-height: 1; font-weight: 900; letter-spacing: -.04em; }
.screen-grid { margin-top: 22px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.screen-field { border: 1px solid var(--line); border-radius: 10px; padding: 12px; background: white; }
.screen-field strong { display: block; font-size: 13px; }
.screen-field span { color: var(--muted); font-size: 12px; }
.screen-action { margin-top: 14px; padding: 12px; border-radius: 10px; text-align: center; color: #fff; font-weight: 800; background: var(--blue); }
.terminal-foot { margin-top: 14px; display: flex; justify-content: space-between; gap: 12px; color: #99adc6; font-size: 11px; }

.metric-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 32px; }
.metric { padding: 16px; background: white; border: 1px solid var(--line); border-radius: 14px; }
.metric strong { display: block; font-size: 24px; line-height: 1.1; }
.metric span { color: var(--muted); font-size: 12px; }

.section-head { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 44px; }
.section-head p { max-width: 570px; margin: 0; color: var(--muted); }
.kicker { margin-bottom: 12px; color: var(--blue-dark); text-transform: uppercase; letter-spacing: .13em; font-size: 12px; font-weight: 850; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { min-height: 100%; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: 0 4px 12px rgba(11,23,41,.03); }
.card:hover { border-color: #c1cee0; box-shadow: var(--shadow-sm); }
.card-number { color: var(--blue); font-weight: 900; font-size: 13px; letter-spacing: .08em; }
.card h3 { margin-top: 22px; }
.card p { color: var(--muted); margin: 13px 0 0; }
.card-link { display: inline-flex; margin-top: 22px; font-weight: 800; font-size: 14px; }
.card--feature { position: relative; overflow: hidden; }
.card--feature::after { content: ""; position: absolute; width: 170px; height: 170px; border-radius: 50%; right: -70px; top: -80px; background: var(--blue-soft); }

.product-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.product-card { position: relative; overflow: hidden; min-height: 390px; padding: 38px; border-radius: 24px; border: 1px solid var(--line); background: #fff; }
.product-card--blue { background: #0d1e36; color: white; border-color: #183354; }
.product-card--blue h3, .product-card--blue .product-title { color: white; }
.product-card--blue p { color: #b8c8da; }
.product-title { font-size: 34px; font-weight: 900; letter-spacing: -.04em; }
.product-label { display: inline-block; margin-bottom: 90px; font-size: 11px; letter-spacing: .13em; text-transform: uppercase; font-weight: 850; color: var(--blue); }
.product-card--blue .product-label { color: #8ab7ff; }
.product-card p { max-width: 470px; }
.product-card .button { margin-top: 20px; }
.product-chip { position: absolute; right: 28px; top: 28px; font-size: 11px; font-weight: 800; border: 1px solid var(--line); border-radius: 999px; padding: 7px 10px; color: var(--muted); background: white; }
.product-card--blue .product-chip { color: #cfe0f6; border-color: #314a69; background: #132845; }

.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--line); border-radius: 20px; overflow: hidden; background: white; }
.process-step { padding: 28px; border-right: 1px solid var(--line); }
.process-step:last-child { border-right: 0; }
.process-step span { color: var(--blue); font-size: 12px; font-weight: 900; }
.process-step h3 { margin-top: 36px; font-size: 20px; }
.process-step p { color: var(--muted); font-size: 14px; margin-bottom: 0; }

.trust-bar { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: 18px; overflow: hidden; background: #fff; }
.trust-item { padding: 24px; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-item strong { display: block; margin-bottom: 5px; font-size: 15px; }
.trust-item span { color: var(--muted); font-size: 13px; }

.cta-panel { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; padding: 44px; border-radius: 26px; background: var(--ink); color: white; }
.cta-panel h2 { color: white; font-size: clamp(32px, 4vw, 46px); }
.cta-panel p { margin: 12px 0 0; color: #b8c8da; max-width: 720px; }

.page-hero { padding: 78px 0 58px; background: linear-gradient(180deg,#fff,#f7faff); border-bottom: 1px solid var(--line); }
.page-hero h1 { font-size: clamp(42px, 6vw, 66px); }
.page-hero .lead { max-width: 760px; }
.breadcrumb { margin-bottom: 20px; color: var(--muted); font-size: 13px; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--blue); }

.prose { color: var(--ink-2); }
.prose h2 { margin: 52px 0 16px; font-size: 30px; }
.prose h3 { margin: 32px 0 10px; font-size: 21px; }
.prose p { margin: 0 0 18px; }
.prose ul, .prose ol { padding-left: 24px; }
.prose li { margin: 8px 0; }
.prose strong { color: var(--ink); }
.prose .legal-meta { margin: 18px 0 0; color: var(--muted); font-size: 14px; }
.notice { margin: 28px 0; padding: 20px 22px; border-radius: 12px; border-left: 4px solid var(--blue); background: var(--blue-soft); color: var(--ink-2); }
.notice--warning { border-left-color: #d28314; background: #fff5e6; }
.notice--good { border-left-color: var(--good); background: #eef9f3; }

.data-table { width: 100%; border-collapse: collapse; margin: 24px 0 34px; font-size: 14px; }
.data-table th, .data-table td { padding: 15px 16px; border: 1px solid var(--line); vertical-align: top; text-align: left; }
.data-table th { background: var(--paper-2); color: var(--ink); }
.data-table td { color: var(--ink-2); }

.support-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 28px; align-items: start; }
.support-card { padding: 28px; border: 1px solid var(--line); border-radius: 18px; background: white; }
.support-card h3 { margin-bottom: 12px; }
.support-list { display: grid; gap: 12px; margin-top: 18px; }
.support-item { padding: 16px; border: 1px solid var(--line); border-radius: 12px; }
.support-item strong { display: block; }
.support-item span { color: var(--muted); font-size: 14px; }

.form-card { padding: 30px; border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: var(--shadow-sm); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; margin-bottom: 7px; font-size: 13px; font-weight: 800; color: var(--ink); }
.field input, .field select, .field textarea { width: 100%; min-height: 46px; border: 1px solid var(--line-strong); border-radius: 10px; padding: 11px 12px; color: var(--ink); background: #fff; outline: none; }
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(23,104,229,.12); }
.field-help { color: var(--muted); font-size: 12px; margin-top: 6px; }
.form-status { margin-top: 14px; font-size: 13px; }
.form-status--error { color: var(--danger); }
.form-status--success { color: var(--good); }

.badges { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 24px; }
.badge { display: inline-flex; align-items: center; gap: 7px; padding: 8px 11px; border-radius: 999px; background: var(--paper-2); border: 1px solid var(--line); font-size: 12px; font-weight: 750; color: var(--ink-2); }
.badge i { width: 7px; height: 7px; border-radius: 50%; background: var(--good); }

.site-footer { padding: 56px 0 34px; background: #091525; color: #d7e0ea; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .8fr .8fr .95fr; gap: 34px; }
.footer-brand p { color: #93a5ba; max-width: 360px; margin-top: 16px; font-size: 14px; }
.footer-title { color: #fff; font-size: 13px; font-weight: 820; margin-bottom: 14px; }
.footer-links { display: grid; gap: 9px; }
.footer-links a { color: #aebdce; font-size: 14px; }
.footer-links a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 18px; padding-top: 28px; margin-top: 38px; border-top: 1px solid #203149; color: #8192a7; font-size: 12px; }

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .terminal-panel { max-width: 680px; transform: none; }
  .cards { grid-template-columns: 1fr 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr 1fr; }
  .process-step:nth-child(2) { border-right: 0; }
  .process-step:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .trust-bar { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .support-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-grid > :last-child { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .container, .narrow { width: min(calc(100% - 28px), var(--max)); }
  .section { padding: 68px 0; }
  .site-nav { display: none; position: absolute; left: 14px; right: 14px; top: 69px; padding: 14px; background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-lg); flex-direction: column; align-items: stretch; gap: 3px; }
  .site-nav.is-open { display: flex; }
  .site-nav > a { padding: 11px 12px; border-radius: 8px; }
  .site-nav > a:hover { background: var(--paper-2); }
  .site-nav .button { margin-top: 6px; }
  .nav-toggle { display: block; }
  .hero { padding: 72px 0 68px; }
  .hero-grid { gap: 36px; }
  h1 { font-size: clamp(42px, 14vw, 62px); }
  .screen-grid { grid-template-columns: 1fr; }
  .metric-row { grid-template-columns: 1fr; }
  .section-head { display: block; }
  .section-head p { margin-top: 16px; }
  .cards { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr; }
  .process-step, .process-step:nth-child(2) { border-right: 0; border-bottom: 1px solid var(--line); }
  .process-step:last-child { border-bottom: 0; }
  .trust-bar { grid-template-columns: 1fr; }
  .trust-item, .trust-item:nth-child(2) { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-item:last-child { border-bottom: 0; }
  .cta-panel { grid-template-columns: 1fr; padding: 30px; }
  .product-card { min-height: auto; padding: 28px; }
  .product-label { margin-bottom: 58px; }
  .form-grid { grid-template-columns: 1fr; gap: 0; }
  .data-table { display: block; overflow-x: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child, .footer-grid > :last-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
}

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


.brand--image { gap: 0; }
.brand-logo { width: auto; height: 54px; object-fit: contain; }
.site-header .brand-logo { height: 52px; }
.site-footer .brand-logo {
  height: 92px;
  background: #fff;
  border-radius: 18px;
  padding: 8px 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
}
.footer-brand .brand { display: inline-flex; align-items: flex-start; }
@media (max-width: 760px) {
  .site-header .brand-logo { height: 46px; }
  .site-footer .brand-logo { height: 82px; }
}
