/* ============================================================
   OrionSell — Marketing site design system
   Brand: blue hexagon identity + green primary actions
   ============================================================ */

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

:root {
  /* Brand */
  --brand:        #2563EB;   /* hexagon blue */
  --brand-ink:    #1D4ED8;
  --brand-soft:   #EAF1FE;
  --brand-soft-2: #DCE8FD;

  --green:        #12A05E;   /* primary action, matches app */
  --green-700:    #0E8A50;
  --green-soft:   #E4F4EC;

  /* Ink / neutrals */
  --ink:      #0C1322;
  --ink-2:    #1A2334;
  --navy:     #0B1220;       /* dark section bg */
  --navy-2:   #111A2B;
  --slate:    #475067;       /* body text */
  --muted:    #6B7689;       /* secondary text */
  --faint:    #95A0B4;
  --line:     #E6E9F0;
  --line-2:   #EEF1F6;
  --bg:       #FFFFFF;
  --bg-soft:  #F5F7FA;
  --bg-tint:  #F8FAFE;

  /* Accents for icon tiles */
  --amber:    #E8973A;
  --amber-soft:#FCEFDD;
  --rose:     #E2574C;
  --rose-soft:#FBE7E4;
  --violet:   #6C5CE0;
  --violet-soft:#ECEAFB;
  --teal:     #129E9E;
  --teal-soft:#E0F2F2;

  --radius:   14px;
  --radius-lg:20px;
  --radius-sm:10px;
  --shadow-sm: 0 1px 2px rgba(12,19,34,.06), 0 1px 3px rgba(12,19,34,.05);
  --shadow:    0 4px 16px rgba(12,19,34,.07), 0 2px 6px rgba(12,19,34,.05);
  --shadow-lg: 0 24px 60px -20px rgba(13,30,72,.32), 0 12px 28px -16px rgba(13,30,72,.22);

  --maxw: 1160px;
  --nav-h: 70px;

  --font-head: 'Schibsted Grotesk', system-ui, sans-serif;
  --font-body: 'Public Sans', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--slate);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink);
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 700;
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
.wrap-narrow { max-width: 880px; }

section { position: relative; }
.sec { padding: 92px 0; }
.sec-sm { padding: 64px 0; }

/* ---------- Eyebrow / headings ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--brand);
}
.eyebrow.green { color: var(--green); }

.sec-head { max-width: 660px; }
.sec-head.center { margin: 0 auto; text-align: center; }
.sec-head h2 {
  font-size: clamp(30px, 4vw, 42px);
  margin-top: 14px;
}
.sec-head p {
  margin-top: 16px;
  font-size: 18px;
  color: var(--muted);
}

.lead { font-size: 19px; color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15.5px;
  line-height: 1;
  padding: 14px 22px;
  border-radius: 11px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .14s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .15s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 6px 16px -6px rgba(18,160,94,.55);
}
.btn-primary:hover { background: var(--green-700); transform: translateY(-1px); box-shadow: 0 10px 22px -8px rgba(18,160,94,.6); }
.btn-secondary {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover { border-color: #cfd6e2; transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: transparent;
}
.btn-ghost:hover { background: var(--bg-soft); }
.btn-blue {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 6px 16px -6px rgba(37,99,235,.5);
}
.btn-blue:hover { background: var(--brand-ink); transform: translateY(-1px); }
.btn-lg { padding: 16px 28px; font-size: 16.5px; }
.btn-block { width: 100%; }

.btn-ondark {
  background: rgba(255,255,255,.08);
  color: #fff;
  border-color: rgba(255,255,255,.18);
}
.btn-ondark:hover { background: rgba(255,255,255,.14); }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line-2);
}
.nav {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 20px;
  color: var(--ink);
  letter-spacing: -.02em;
}
.brand img { width: 30px; height: 30px; }
.brand b { color: var(--brand); font-weight: 700; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 8px;
}
.nav-links a {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 15px;
  color: var(--slate);
  padding: 9px 13px;
  border-radius: 9px;
  white-space: nowrap;
  transition: background .15s, color .15s;
}
.nav-links a:hover { background: var(--bg-soft); color: var(--ink); }
.nav-links a.active { color: var(--ink); font-weight: 600; }

.nav-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* language switcher */
.lang {
  display: inline-flex;
  align-items: center;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 3px;
  gap: 2px;
}
.lang button, .lang a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: .04em;
  color: var(--muted);
  background: none;
  border: none;
  padding: 5px 9px;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  line-height: 1.4;
}
.lang button.on, .lang a.on { background: #fff; color: var(--ink); box-shadow: var(--shadow-sm); }

.nav-link-login {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  padding: 9px 12px;
}
.nav-link-login:hover { color: var(--brand); }

.hamburger {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  align-items: center; justify-content: center;
}
.hamburger svg { width: 20px; height: 20px; }

/* mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(10px);
  z-index: 99;
  padding: 18px 24px 40px;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a.m-link {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 19px;
  color: var(--ink);
  padding: 15px 6px;
  border-bottom: 1px solid var(--line-2);
}
.mobile-menu .m-actions { margin-top: 22px; display: flex; flex-direction: column; gap: 12px; }
.mobile-menu .lang { align-self: flex-start; margin-top: 18px; }

/* ---------- Hero ---------- */
.hero { padding: 70px 0 80px; overflow: hidden; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.04fr;
  gap: 56px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(38px, 5.2vw, 60px);
  font-weight: 800;
  line-height: 1.02;
}
.hero h1 .accent { color: var(--brand); }
.hero p.sub {
  margin-top: 22px;
  font-size: 19.5px;
  color: var(--muted);
  max-width: 520px;
}
.hero-cta { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 13px; }
.hero-trust {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 22px;
  align-items: center;
}
.hero-trust span {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14.5px; color: var(--muted); font-weight: 500;
}
.hero-trust svg { width: 17px; height: 17px; color: var(--green); flex: none; }

.badge-pill {
  display: inline-flex; align-items: center; gap: 9px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 14px 6px 7px;
  font-size: 13.5px; font-weight: 600; color: var(--slate);
  font-family: var(--font-head);
  box-shadow: var(--shadow-sm);
  margin-bottom: 22px;
}
.badge-pill em {
  font-style: normal;
  background: var(--green-soft); color: var(--green-700);
  padding: 3px 9px; border-radius: 999px; font-size: 12px;
}

/* browser frame mockup */
.frame {
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.frame.tilt { transform: perspective(1600px) rotateY(-7deg) rotateX(2deg); transform-origin: left center; }
.frame-bar {
  height: 38px;
  background: #F4F6F9;
  border-bottom: 1px solid var(--line-2);
  display: flex; align-items: center; gap: 7px;
  padding: 0 14px;
}
.frame-bar i { width: 11px; height: 11px; border-radius: 50%; background: #d6dbe4; display: block; }
.frame-bar i:nth-child(1){ background:#ec6a5e;} .frame-bar i:nth-child(2){ background:#f4bf4f;} .frame-bar i:nth-child(3){ background:#61c554;}
.frame-bar .url {
  margin-left: 10px; font-size: 12px; color: var(--faint);
  background: #fff; border: 1px solid var(--line-2); border-radius: 7px;
  padding: 4px 12px; flex: 1; max-width: 280px;
}
.frame img { width: 100%; display: block; }

.hero-visual { position: relative; }
.hero-visual .glow {
  position: absolute; inset: -10% -10% -10% 0;
  background: radial-gradient(60% 60% at 60% 40%, rgba(37,99,235,.16), transparent 70%);
  z-index: -1; filter: blur(10px);
}

/* floating chip on hero visual */
.float-chip {
  position: absolute;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 13px;
  box-shadow: var(--shadow-lg);
  padding: 12px 15px;
  display: flex; align-items: center; gap: 11px;
}
.float-chip .ic {
  width: 36px; height: 36px; border-radius: 9px;
  display: grid; place-items: center; flex: none;
}
.float-chip .ic svg { width: 19px; height: 19px; }
.float-chip .t { font-size: 12px; color: var(--muted); font-weight: 500; }
.float-chip .v { font-size: 16px; color: var(--ink); font-weight: 700; font-family: var(--font-head); }
.float-chip.one { bottom: 30px; left: -34px; }
.float-chip.two { top: 26px; right: -26px; }

/* ---------- logo / trust strip ---------- */
.strip {
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
  padding: 26px 0;
}
.strip-inner { display: flex; align-items: center; gap: 18px 40px; flex-wrap: wrap; justify-content: center; }
.strip p { font-size: 13.5px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--faint); }
.strip .tag {
  font-family: var(--font-head); font-weight: 600; font-size: 15px; color: var(--slate);
  display: inline-flex; align-items: center; gap: 9px;
}
.strip .tag svg { width: 18px; height: 18px; color: var(--green); }

/* ---------- feature cards ---------- */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  transition: transform .16s ease, box-shadow .2s ease, border-color .2s ease;
}
.card.hover:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: #d8deea; }
.card .ic {
  width: 46px; height: 46px; border-radius: 12px;
  display: grid; place-items: center; margin-bottom: 18px;
}
.card .ic svg { width: 23px; height: 23px; }
.card h3 { font-size: 19px; }
.card p { margin-top: 9px; font-size: 15px; color: var(--muted); }

.ic-blue { background: var(--brand-soft); color: var(--brand); }
.ic-green { background: var(--green-soft); color: var(--green-700); }
.ic-amber { background: var(--amber-soft); color: var(--amber); }
.ic-violet { background: var(--violet-soft); color: var(--violet); }
.ic-rose { background: var(--rose-soft); color: var(--rose); }
.ic-teal { background: var(--teal-soft); color: var(--teal); }

/* check list */
.checks { display: grid; gap: 12px; margin-top: 22px; }
.checks li { display: flex; gap: 11px; font-size: 15.5px; color: var(--slate); align-items: flex-start; }
.checks li svg { width: 20px; height: 20px; color: var(--green); flex: none; margin-top: 1px; }
.checks li b { color: var(--ink); font-weight: 600; }

/* ---------- workflow ---------- */
.flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  align-items: stretch;
  margin-top: 14px;
}
.flow-step {
  position: relative;
  padding: 26px 20px;
  text-align: center;
}
.flow-step .dot {
  width: 54px; height: 54px; border-radius: 15px;
  display: grid; place-items: center; margin: 0 auto 16px;
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
.flow-step .dot svg { width: 25px; height: 25px; }
.flow-step h4 { font-size: 17px; margin-bottom: 6px; }
.flow-step p { font-size: 14px; color: var(--muted); }
.flow-step .num {
  font-family: var(--font-head); font-weight: 700; font-size: 12px;
  color: var(--brand); letter-spacing: .1em;
}
.flow-step:not(:last-child)::after {
  content: ""; position: absolute; top: 52px; right: -1px;
  width: 2px; height: 0; 
}
.flow-arrow {
  position: absolute; top: 50px; right: -11px; z-index: 2;
  width: 22px; height: 22px; color: #c2cbdb;
}
@media (max-width: 860px){ .flow-arrow{ display:none; } }

/* ---------- alternating feature rows ---------- */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.feature-row.flip .f-text { order: 2; }
.feature-row + .feature-row { margin-top: 110px; }
.feature-row .kicker {
  font-family: var(--font-head); font-weight:700; font-size: 13px;
  letter-spacing: .08em; text-transform: uppercase; color: var(--brand);
  display:inline-flex; align-items:center; gap:9px;
}
.feature-row h2 { font-size: clamp(26px, 3.2vw, 34px); margin-top: 14px; }
.feature-row > .f-text > p { margin-top: 16px; font-size: 17px; color: var(--muted); }

.f-visual .card-soft {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
}

/* mini mock pieces (CSS-drawn UI snippets) */
.mini { background:#fff; border:1px solid var(--line); border-radius:12px; box-shadow: var(--shadow-sm); }
.mini-row { display:flex; align-items:center; gap:12px; padding:13px 16px; border-bottom:1px solid var(--line-2); }
.mini-row:last-child{ border-bottom:none; }
.mini-av { width:34px; height:34px; border-radius:9px; flex:none; display:grid; place-items:center; font-family:var(--font-head); font-weight:700; font-size:14px; color:#fff; }
.mini-row .mt { font-weight:600; color:var(--ink); font-size:14.5px; }
.mini-row .ms { font-size:12.5px; color:var(--muted); }
.mini-row .right { margin-left:auto; text-align:right; }
.pill {
  display:inline-flex; align-items:center; gap:6px;
  font-size:12px; font-weight:600; font-family:var(--font-head);
  padding:4px 10px; border-radius:999px;
}
.pill.green{ background:var(--green-soft); color:var(--green-700);}
.pill.amber{ background:var(--amber-soft); color:#b9711e;}
.pill.blue{ background:var(--brand-soft); color:var(--brand-ink);}
.pill.gray{ background:#EEF1F6; color:var(--muted);}
.pill.rose{ background:var(--rose-soft); color:var(--rose);}

/* ---------- dark section ---------- */
.dark {
  background: var(--navy);
  color: #C7CFDD;
  border-radius: 28px;
  overflow: hidden;
}
.dark h2 { color: #fff; }
.dark .sec-head p { color: #9AA6B8; }
.section-dark-wrap { padding: 0 24px; }

/* ---------- pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.price-card {
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  padding: 30px 28px; display: flex; flex-direction: column;
}
.price-card.feat {
  border-color: var(--brand);
  box-shadow: 0 0 0 1px var(--brand), var(--shadow-lg);
  position: relative;
}
.price-card.feat .tagtop {
  position: absolute; top: -13px; left: 28px;
  background: var(--brand); color:#fff; font-family:var(--font-head);
  font-weight:600; font-size:12px; letter-spacing:.04em;
  padding: 5px 12px; border-radius: 999px;
}
.price-card .pname { font-family: var(--font-head); font-weight:700; font-size: 20px; color: var(--ink); }
.price-card .pdesc { font-size: 14.5px; color: var(--muted); margin-top: 7px; min-height: 42px; }
.price-card .pamt { margin: 18px 0 4px; display: flex; align-items: baseline; gap: 6px; }
.price-card .pamt .n { font-family: var(--font-head); font-weight: 800; font-size: 42px; color: var(--ink); letter-spacing: -.03em; }
.price-card .pamt .per { font-size: 15px; color: var(--muted); }
.price-card .ptodo { font-size: 12.5px; color: var(--amber); font-weight: 600; }
.price-card .pbtn { margin: 22px 0; }
.price-card .pfeat { display: grid; gap: 12px; }
.price-card .pfeat li { display:flex; gap:10px; font-size:14.5px; color:var(--slate); align-items:flex-start; }
.price-card .pfeat li svg { width:18px; height:18px; color:var(--green); flex:none; margin-top:2px; }
.price-card .pfeat .lbl { font-size:12.5px; font-weight:700; letter-spacing:.04em; text-transform:uppercase; color:var(--faint); margin-bottom:2px; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 4px; text-align: left;
  font-family: var(--font-head); font-weight: 600; font-size: 18px; color: var(--ink);
}
.faq-q .chev { width: 22px; height: 22px; color: var(--muted); transition: transform .22s; flex: none; }
.faq-item.open .chev { transform: rotate(180deg); color: var(--brand); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.faq-a p { padding: 0 4px 22px; font-size: 16px; color: var(--muted); max-width: 680px; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, #15224A 0%, #0B1220 55%, #0E1A3A 100%);
  border-radius: 26px; padding: 64px 56px; text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content:""; position:absolute; inset:0;
  background:
    radial-gradient(40% 60% at 18% 10%, rgba(37,99,235,.35), transparent 60%),
    radial-gradient(40% 70% at 88% 90%, rgba(18,160,94,.28), transparent 60%);
}
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; font-size: clamp(28px, 3.6vw, 40px); }
.cta-band p { color: #B9C4D6; font-size: 18px; margin-top: 16px; max-width: 560px; margin-left:auto; margin-right:auto; }
.cta-band .hero-cta { justify-content: center; margin-top: 30px; }
.cta-band .note { margin-top: 18px; font-size: 13.5px; color: #8C99AE; }

/* ---------- footer ---------- */
.footer { background: var(--navy); color: #98A3B6; padding: 64px 0 30px; margin-top: 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: 40px 28px;
}
.footer .brand { color: #fff; margin-bottom: 16px; }
.footer .brand b { color: #6CA0FF; }
.footer .fabout { font-size: 14.5px; color: #8C99AE; max-width: 280px; }
.footer .fmail {
  display:inline-flex; align-items:center; gap:8px; margin-top:16px;
  font-family:var(--font-head); font-weight:600; font-size:14.5px; color:#C7D2E2;
}
.footer .fmail svg{ width:17px; height:17px; color:#6CA0FF;}
.footer h5 { font-family: var(--font-head); color: #fff; font-size: 13px; letter-spacing:.06em; text-transform:uppercase; font-weight:600; margin-bottom: 16px; }
.footer ul { display: grid; gap: 11px; }
.footer ul a { font-size: 14.5px; color: #98A3B6; transition: color .15s; }
.footer ul a:hover { color: #fff; }
.footer-bottom {
  margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 13.5px; color: #6F7B90;
}
.footer-bottom .fb-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-bottom a:hover { color: #fff; }

/* ---------- forms (contact) ---------- */
.field { display: grid; gap: 7px; margin-bottom: 18px; }
.field label { font-family: var(--font-head); font-weight: 600; font-size: 14px; color: var(--ink); }
.field input, .field textarea, .field select {
  font-family: var(--font-body); font-size: 15.5px; color: var(--ink);
  padding: 13px 15px; border: 1px solid var(--line); border-radius: 11px;
  background: #fff; width: 100%; transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand-soft);
}
.field textarea { resize: vertical; min-height: 130px; }
.form-note {
  display:flex; gap:10px; align-items:flex-start;
  background: var(--brand-soft); border:1px solid var(--brand-soft-2);
  border-radius: 12px; padding: 13px 15px; font-size: 13.5px; color: var(--brand-ink); margin-bottom: 22px;
}
.form-note svg{ width:18px; height:18px; flex:none; margin-top:1px; }

/* ---------- redirect (login/signup) ---------- */
.redirect-page {
  min-height: calc(100vh - var(--nav-h));
  display: grid; place-items: center; padding: 60px 24px;
  background:
    radial-gradient(60% 50% at 50% 0%, var(--bg-tint), #fff 70%);
}
.redirect-card {
  width: 100%; max-width: 460px; text-align: center;
  background: #fff; border: 1px solid var(--line); border-radius: 22px;
  padding: 44px 40px; box-shadow: var(--shadow-lg);
}
.redirect-card .rmark { width: 52px; height: 52px; margin: 0 auto 22px; }
.redirect-card h1 { font-size: 27px; }
.redirect-card p { margin-top: 12px; color: var(--muted); font-size: 16px; }
.redirect-card .spin {
  width: 20px; height: 20px; border-radius: 50%;
  border: 2.5px solid var(--brand-soft-2); border-top-color: var(--brand);
  animation: spin .8s linear infinite; display: inline-block; vertical-align: -4px; margin-right: 8px;
}
@keyframes spin { to { transform: rotate(360deg); } }
.redirect-card . split { display:flex; align-items:center; gap:12px; margin: 26px 0; color: var(--faint); font-size: 13px; }
.redirect-card .split::before, .redirect-card .split::after { content:""; height:1px; background:var(--line); flex:1; }

/* about page bits */
.stat-grid { display:grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.stat { text-align:center; padding: 8px; }
.stat .n { font-family:var(--font-head); font-weight:800; font-size: 40px; color: var(--ink); letter-spacing:-.03em; }
.stat .l { font-size: 15px; color: var(--muted); margin-top: 4px; }

.value-card { background:#fff; border:1px solid var(--line); border-radius:var(--radius); padding:26px; }
.value-card .ic { width:42px;height:42px;border-radius:11px;display:grid;place-items:center;margin-bottom:16px;}
.value-card .ic svg{width:21px;height:21px;}
.value-card h3{ font-size:18px; }
.value-card p{ margin-top:8px; font-size:14.5px; color:var(--muted); }

.page-hero { padding: 64px 0 36px; text-align: center; background: radial-gradient(70% 60% at 50% 0%, var(--bg-tint), #fff 72%); }
.page-hero h1 { font-size: clamp(34px, 4.6vw, 50px); font-weight: 800; }
.page-hero p { margin: 18px auto 0; font-size: 19px; color: var(--muted); max-width: 600px; }

/* tabs for features quick-nav */
.anchor-nav {
  position: sticky; top: var(--nav-h); z-index: 50;
  background: rgba(255,255,255,.9); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-2);
}
.anchor-nav .wrap { display: flex; gap: 6px; overflow-x: auto; padding-top: 10px; padding-bottom: 10px; scrollbar-width: none; -ms-overflow-style: none; }
.anchor-nav .wrap::-webkit-scrollbar { display: none; }
.anchor-nav a {
  font-family: var(--font-head); font-weight: 500; font-size: 14px; color: var(--muted);
  padding: 8px 14px; border-radius: 9px; white-space: nowrap;
}
.anchor-nav a:hover { background: var(--bg-soft); color: var(--ink); }

/* ---------- responsive ---------- */
@media (max-width: 1000px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-grid .fcol-brand { grid-column: 1 / -1; }
}
@media (max-width: 920px) {
  .nav-links, .nav-right .lang, .nav-right .nav-link-login, .nav-right .btn-desktop { display: none; }
  .hamburger { display: inline-flex; }
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-visual { max-width: 560px; }
  .frame.tilt { transform: none; }
  .float-chip.one { left: 8px; } .float-chip.two { right: 8px; }
  .feature-row, .feature-row.flip { grid-template-columns: 1fr; gap: 32px; }
  .feature-row.flip .f-text { order: 0; }
  .flow { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .price-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .price-card.feat { order: -1; }
  .grid-3 { grid-template-columns: 1fr; }
  .stat-grid { gap: 14px; }
}
@media (max-width: 600px) {
  .sec { padding: 64px 0; }
  .wrap { padding: 0 18px; }
  .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .flow { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-band { padding: 44px 24px; }
  .dark { border-radius: 20px; }
  .hero-cta .btn, .cta-band .btn { flex: 1; }
  .float-chip { display: none; }
  .stat-grid { grid-template-columns: 1fr; }
}

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
