/* ============================================================
   SokuPass — Landing v2 (teal/cyan doom-one, English-first)
   Standalone stylesheet.
   ============================================================ */
:root {
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --mono: "JetBrains Mono", "SF Mono", ui-monospace, Menlo, Monaco, Consolas, monospace;

  --bg: #0b0e11;
  --bg-2: #0f1318;
  --panel: #141a20;
  --panel-2: #19212a;
  --panel-3: #202b35;
  --line: rgba(255,255,255,0.07);
  --line-2: rgba(255,255,255,0.12);

  --fg: #e6edf3;
  --fg-2: #a9b6c2;
  --dim: #6f7d8a;
  --faint: #46535f;

  /* doom-one teal/cyan family */
  --cyan: #46d9ff;
  --teal: #4db6ac;
  --blue: #51afef;
  --green: #98be65;
  --purple: #c678dd;
  --red: #ff6c6b;
  --yellow: #ECBE7B;

  --acc1: #5ee0e6;
  --acc2: #34c5e0;
  --acc3: #2aa6c9;
  --acc-grad: linear-gradient(135deg, var(--acc1), var(--acc2) 55%, var(--acc3));
  --acc-weak: color-mix(in srgb, var(--acc2) 15%, transparent);
  --acc-weak2: color-mix(in srgb, var(--acc2) 8%, transparent);
  --acc-bd: color-mix(in srgb, var(--acc2) 40%, transparent);

  --maxw: 1140px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg); color: var(--fg); font-family: var(--sans);
  font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility; overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
::selection { background: color-mix(in srgb, var(--acc2) 30%, transparent); }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.mono { font-family: var(--mono); }
.acc { color: var(--acc1); }
.acc-text { background: var(--acc-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.dim { color: var(--dim); }

/* nav */
.nav { position: sticky; top: 0; z-index: 50; background: color-mix(in srgb, var(--bg) 80%, transparent); backdrop-filter: saturate(140%) blur(14px); border-bottom: 1px solid var(--line); }
.nav-in { display: flex; align-items: center; gap: 22px; height: 62px; }
.brand { display: flex; align-items: center; gap: 11px; }
.brand .mk { width: 30px; height: 30px; flex-shrink: 0; }
.brand .nm { font-weight: 700; font-size: 17px; letter-spacing: -.01em; }
.brand .nm b { font-weight: 700; }
.nav-links { display: flex; gap: 24px; margin-left: 12px; }
.nav-links a { font-size: 13.5px; color: var(--fg-2); }
.nav-links a:hover { color: var(--fg); }
.nav-right { margin-left: auto; display: flex; align-items: center; gap: 14px; }

/* buttons */
.btn { display: inline-flex; align-items: center; gap: 9px; font-size: 14px; font-weight: 600; cursor: pointer; padding: 10px 16px; border-radius: 11px; border: 1px solid var(--line-2); color: var(--fg); background: var(--panel-2); transition: all .15s; white-space: nowrap; }
.btn:hover { background: var(--panel-3); }
.btn svg { width: 16px; height: 16px; }
.btn-ghost { background: transparent; border-color: transparent; color: var(--fg-2); }
.btn-ghost:hover { background: var(--panel); color: var(--fg); }
.store-btn { display: inline-flex; align-items: center; gap: 11px; padding: 11px 18px 11px 15px; border-radius: 13px; background: #fff; color: #07080a; border: 1px solid #fff; cursor: pointer; transition: transform .12s, box-shadow .2s; box-shadow: 0 8px 26px -10px rgba(52,197,224,0.4); }
.store-btn:hover { transform: translateY(-1px); box-shadow: 0 12px 32px -10px rgba(52,197,224,0.55); }
.store-btn .si { width: 26px; height: 26px; flex-shrink: 0; }
.store-btn .st { display: flex; flex-direction: column; line-height: 1.15; text-align: left; }
.store-btn .st small { font-size: 10px; font-weight: 600; opacity: .72; }
.store-btn .st b { font-size: 16px; font-weight: 700; letter-spacing: -.01em; }

/* sections */
section.band { padding: 84px 0; position: relative; }
section.band.alt { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.eyebrow { font-family: var(--mono); font-size: 13px; color: var(--acc1); margin-bottom: 14px; }
.eyebrow::before { content: "// "; color: var(--faint); }
h2.sec-title { font-size: clamp(26px,3.4vw,38px); line-height: 1.14; letter-spacing: -.02em; font-weight: 720; max-width: 20ch; }
.sec-lead { margin-top: 15px; font-size: 17px; color: var(--fg-2); max-width: 62ch; line-height: 1.6; }
.sec-head { margin-bottom: 46px; }
.sec-head.center { text-align: center; }
.sec-head.center h2.sec-title, .sec-head.center .sec-lead { margin-left: auto; margin-right: auto; }
.sec-head.center .eyebrow { text-align: center; }

/* kbd */
kbd { font-family: var(--mono); font-size: 12px; min-width: 22px; height: 25px; padding: 0 7px; display: inline-grid; place-items: center; color: var(--fg); background: var(--panel-3); border: 1px solid var(--line-2); border-radius: 6px; box-shadow: 0 2px 0 var(--bg); font-weight: 600; }

/* ============ HERO ============ */
.hero { position: relative; padding: 76px 0 56px; overflow: hidden; }
.hero::before { content: ""; position: absolute; left: 50%; top: -180px; width: 1000px; height: 640px; transform: translateX(-50%); background: radial-gradient(50% 50% at 50% 50%, rgba(52,197,224,0.12), transparent 70%); pointer-events: none; }
.hero::after { content: ""; position: absolute; inset: 0; background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 54px 54px; -webkit-mask-image: radial-gradient(70% 58% at 50% 26%, #000, transparent 76%); mask-image: radial-gradient(70% 58% at 50% 26%, #000, transparent 76%); opacity: .5; pointer-events: none; }
.hero-in { position: relative; text-align: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 9px; white-space: nowrap; font-family: var(--mono); font-size: 12.5px; color: var(--fg-2); padding: 6px 14px 6px 10px; border: 1px solid var(--line-2); border-radius: 30px; background: var(--panel); margin-bottom: 26px; }
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--acc1); box-shadow: 0 0 10px var(--acc1); }
.hero-badge b { color: var(--acc1); font-weight: 600; }
h1.hero-title { font-size: clamp(36px,5.6vw,66px); line-height: 1.06; letter-spacing: -.03em; font-weight: 780; }
.hero-sub { margin: 22px auto 0; max-width: 640px; font-size: clamp(15px,1.7vw,18.5px); color: var(--fg-2); line-height: 1.62; }
.hero-cta { margin-top: 32px; display: flex; align-items: center; justify-content: center; gap: 15px; flex-wrap: wrap; }
.hero-meta { margin-top: 15px; font-family: var(--mono); font-size: 12.5px; color: var(--dim); display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-meta b { color: var(--acc1); font-weight: 600; }

/* app window mockup */
.win-shell { margin: 54px auto 0; max-width: 1000px; position: relative; }
.win-shell::before { content: ""; position: absolute; inset: -1px -1px auto; height: 50%; background: linear-gradient(180deg, rgba(52,197,224,0.18), transparent); border-radius: 16px 16px 0 0; filter: blur(36px); opacity: .55; pointer-events: none; z-index: -1; }
.win { background: var(--panel-2); border: 1px solid var(--line-2); border-radius: 14px; overflow: hidden; box-shadow: 0 40px 90px -30px rgba(0,0,0,0.85); font-family: var(--mono); font-size: 13px; text-align: left; }
.win-bar { height: 38px; display: flex; align-items: center; gap: 10px; padding: 0 13px; background: #0e1217; border-bottom: 1px solid var(--line); color: var(--dim); font-size: 11.5px; }
.tl { display: flex; gap: 7px; } .tl i { width: 11px; height: 11px; border-radius: 50%; } .tl .r{background:#ff5f57} .tl .y{background:#febc2e} .tl .g{background:#28c840}
.win-bar .ttl b { color: var(--acc1); }
.win-bar .right { margin-left: auto; display: flex; gap: 14px; } .win-bar .right .lk { color: var(--green); }
.win-body { display: grid; grid-template-columns: 1fr 372px; min-height: 330px; }
.helm-pane { border-right: 1px solid var(--line); display: flex; flex-direction: column; min-width: 0; }
.helm-src { padding: 7px 13px; font-weight: 700; color: var(--acc1); font-size: 12.5px; background: color-mix(in srgb, var(--acc2) 12%, transparent); box-shadow: inset 0 -1px 0 var(--acc-bd); }
.helm-src .kbd { background: var(--acc2); color: #06222a; border-radius: 3px; padding: 0 4px; font-weight: 700; }
.helm-list { padding: 4px 0; flex: 1; }
.cand { display: grid; grid-template-columns: 3ch 2ch 1fr auto; gap: 1ch; padding: 1.5px 13px 1.5px 6px; align-items: center; white-space: nowrap; }
.cand .ln { color: var(--faint); text-align: right; font-size: 12px; }
.cand .fl { color: var(--dim); text-align: center; font-size: 11px; }
.cand .nm { color: var(--acc1); overflow: hidden; text-overflow: ellipsis; }
.cand .nm.file { color: var(--fg); }
.cand .meta { color: var(--dim); font-size: 12px; max-width: 28ch; overflow: hidden; text-overflow: ellipsis; }
.cand .meta .k2 { color: var(--purple); } .cand .meta .sec { color: var(--faint); letter-spacing: .5px; }
.cand.sel { background: color-mix(in srgb, var(--acc2) 20%, transparent); position: relative; }
.cand.sel::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: var(--acc1); }
.cand .mt { color: var(--acc1); font-weight: 700; }
.helm-prev { background: #11171d; display: flex; flex-direction: column; min-width: 0; }
.prev-body { padding: 12px 14px; flex: 1; }
.prev-ttl { color: var(--green); font-weight: 700; font-size: 12.5px; }
.prev-sep { color: var(--faint); margin: 3px 0 8px; overflow: hidden; }
.drow { display: grid; grid-template-columns: 9ch 1fr; gap: 1ch; padding: 1.5px 0; font-size: 12.5px; }
.drow .k { color: var(--purple); } .drow .v { color: var(--fg); overflow: hidden; text-overflow: ellipsis; }
.drow .v.url { color: var(--acc1); } .drow .v.sec { color: var(--faint); letter-spacing: .5px; }
/* TOTP ring in preview */
.totp { margin-top: 12px; border: 1px solid var(--line-2); border-radius: 9px; padding: 12px 13px; background: var(--bg); display: flex; align-items: center; gap: 13px; }
.totp .ring { width: 42px; height: 42px; flex-shrink: 0; }
.totp .ring circle { fill: none; stroke-width: 4; }
.totp .ring .bg { stroke: var(--panel-3); }
.totp .ring .fg { stroke: var(--acc1); stroke-linecap: round; transform: rotate(-90deg); transform-origin: center; transition: stroke-dashoffset 1s linear; }
.totp .code { font-size: 23px; letter-spacing: 3px; color: var(--acc1); font-weight: 600; }
.totp .lbl { font-size: 11px; color: var(--dim); margin-top: 1px; }
.win-mode { height: 24px; display: flex; align-items: center; gap: 8px; padding: 0 12px; background: #131922; border-top: 1px solid var(--line); color: var(--dim); font-size: 11.5px; }
.win-mode .dash { color: var(--faint); letter-spacing: -1px; } .win-mode .badge { background: var(--yellow); color: #0b0e11; border-radius: 3px; padding: 0 5px; font-weight: 700; }
.win-mode .right { margin-left: auto; display: flex; gap: 12px; } .win-mode .right .k { color: var(--yellow); }
.win-mini { display: flex; align-items: center; gap: 1ch; padding: 7px 13px; border-top: 1px solid var(--acc2); background: var(--bg); font-size: 13px; }
.win-mini .pr { color: var(--acc1); } .win-mini .pt { color: var(--fg-2); } .win-mini .cur { color: var(--green); animation: blink 1.1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }

/* ============ 3 KILLER ============ */
.killer { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.kcard { background: var(--panel); border: 1px solid var(--line); border-radius: 18px; padding: 26px; position: relative; overflow: hidden; }
.kcard::before { content: ""; position: absolute; inset: 0 0 auto; height: 2px; background: var(--acc-grad); opacity: .8; }
.kcard .ki { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; margin-bottom: 17px; background: var(--acc-weak); color: var(--acc1); border: 1px solid var(--acc-bd); }
.kcard .ki svg { width: 23px; height: 23px; }
.kcard h3 { font-size: 18px; font-weight: 680; letter-spacing: -.01em; }
.kcard p { margin-top: 9px; font-size: 14px; color: var(--fg-2); line-height: 1.62; }

/* ============ CAROUSEL ============ */
.carousel { position: relative; }
.shots { display: flex; gap: 18px; overflow-x: auto; padding: 6px 4px 22px; scroll-snap-type: x mandatory; }
.shots::-webkit-scrollbar { height: 8px; } .shots::-webkit-scrollbar-thumb { background: var(--line-2); border-radius: 8px; }
.shot { flex: 0 0 auto; width: 460px; scroll-snap-align: center; }
.shot .frame { border: 1px solid var(--line-2); border-radius: 13px; overflow: hidden; background: var(--panel-2); box-shadow: 0 20px 50px -24px rgba(0,0,0,0.8); }
.shot .cap { margin-top: 12px; font-size: 13.5px; color: var(--fg-2); display: flex; align-items: center; gap: 8px; }
.shot .cap .n { font-family: var(--mono); color: var(--acc1); font-size: 12px; }
.shot-hint { text-align: center; font-family: var(--mono); font-size: 12px; color: var(--dim); margin-top: 4px; }

/* mini app screen (used inside frames) */
.scr { background: var(--bg); font-family: var(--mono); font-size: 11.5px; height: 280px; display: flex; flex-direction: column; }
.scr-bar { height: 26px; display: flex; align-items: center; gap: 7px; padding: 0 10px; background: #0e1217; border-bottom: 1px solid var(--line); color: var(--dim); font-size: 10px; }
.scr-bar .tl i { width: 9px; height: 9px; }
.scr-body { flex: 1; padding: 12px 14px; overflow: hidden; }

/* ============ SECURITY ============ */
.sec-grid2 { display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: start; }
.spec-list { display: flex; flex-direction: column; }
.spec { display: flex; gap: 14px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.spec:last-child { border-bottom: none; }
.spec .sc { width: 34px; height: 34px; flex-shrink: 0; border-radius: 10px; display: grid; place-items: center; background: var(--acc-weak); color: var(--acc1); }
.spec .sc svg { width: 17px; height: 17px; }
.spec h4 { font-size: 14.5px; font-weight: 640; }
.spec p { font-size: 13px; color: var(--fg-2); margin-top: 3px; line-height: 1.55; }
.spec code { font-family: var(--mono); font-size: 12px; color: var(--acc1); background: var(--panel-2); border: 1px solid var(--line); border-radius: 5px; padding: 0 5px; }
.code-card { background: #0c1116; border: 1px solid var(--line-2); border-radius: 14px; overflow: hidden; position: sticky; top: 80px; }
.code-card .cc-bar { height: 34px; display: flex; align-items: center; gap: 7px; padding: 0 12px; background: #0a0e12; border-bottom: 1px solid var(--line); color: var(--dim); font-family: var(--mono); font-size: 11px; }
.code-card pre { padding: 16px 18px; font-family: var(--mono); font-size: 12.5px; line-height: 1.75; color: var(--fg-2); overflow-x: auto; }
.code-card .cm { color: var(--dim); } .code-card .ky { color: var(--purple); } .code-card .st2 { color: var(--green); } .code-card .nu { color: var(--yellow); } .code-card .fn { color: var(--acc1); }

/* ============ FEATURE MATRIX ============ */
.matrix { width: 100%; border-collapse: separate; border-spacing: 0; border: 1px solid var(--line-2); border-radius: 16px; overflow: hidden; }
.matrix th, .matrix td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--line); }
.matrix thead th { background: var(--panel-2); font-size: 13.5px; font-weight: 650; }
.matrix thead th.col { text-align: center; width: 16%; }
.matrix thead th.pro { color: var(--acc1); position: relative; }
.matrix tbody td { font-size: 13.5px; color: var(--fg-2); }
.matrix tbody td.feat { color: var(--fg); }
.matrix td.col { text-align: center; }
.matrix tbody tr:last-child td { border-bottom: none; }
.matrix .grp td { background: var(--panel); font-family: var(--mono); font-size: 11px; letter-spacing: .06em; text-transform: uppercase; color: var(--dim); padding: 9px 18px; }
.mk-yes { color: var(--acc1); } .mk-no { color: var(--faint); } .mk-ro { color: var(--yellow); font-size: 11px; font-family: var(--mono); }
.matrix .pro-col { background: color-mix(in srgb, var(--acc2) 7%, transparent); }

/* ============ PRICING ============ */
.price-wrap { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; max-width: 920px; margin: 0 auto; }
.price-card { background: var(--panel); border: 1px solid var(--line); border-radius: 18px; padding: 28px 26px; display: flex; flex-direction: column; }
.price-card.feat { border-color: var(--acc-bd); background: linear-gradient(180deg, var(--acc-weak2), var(--panel) 40%); position: relative; }
.price-card.feat::before { content: "BEST VALUE"; position: absolute; top: 14px; right: 14px; font-family: var(--mono); font-size: 10px; letter-spacing: .08em; color: var(--acc1); border: 1px solid var(--acc-bd); border-radius: 20px; padding: 3px 9px; }
.price-card .pl { font-family: var(--mono); font-size: 12.5px; color: var(--dim); }
.price-card .pa { margin: 14px 0 2px; display: flex; align-items: baseline; gap: 3px; }
.price-card .pa .num { font-size: 42px; font-weight: 760; letter-spacing: -.02em; }
.price-card .pa .num.free { color: var(--green); }
.price-card .pa .per { font-size: 13px; color: var(--dim); margin-left: 5px; }
.price-card .pd { font-size: 13px; color: var(--fg-2); margin-top: 4px; min-height: 38px; }
.price-card ul { list-style: none; margin: 18px 0 22px; display: flex; flex-direction: column; gap: 9px; }
.price-card li { font-size: 13px; color: var(--fg-2); display: flex; gap: 9px; align-items: flex-start; }
.price-card li svg { width: 16px; height: 16px; color: var(--acc1); flex-shrink: 0; margin-top: 1px; }
.price-card .pbtn { margin-top: auto; }
.ph-chip { display: inline-block; font-family: var(--mono); font-size: 11.5px; color: var(--yellow); background: rgba(236,181,123,0.1); border: 1px dashed rgba(236,181,123,0.4); border-radius: 6px; padding: 1px 7px; }

/* ============ IMPORT ============ */
.import-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.imp { background: var(--panel); border: 1px solid var(--line); border-radius: 14px; padding: 22px; }
.imp .it { font-family: var(--mono); font-size: 12px; color: var(--acc1); margin-bottom: 12px; }
.imp h4 { font-size: 15.5px; font-weight: 650; }
.imp p { font-size: 13px; color: var(--fg-2); margin-top: 6px; line-height: 1.55; }

/* ============ KEYBOARD CHEATSHEET ============ */
.cheat { display: grid; grid-template-columns: repeat(2,1fr); gap: 8px 40px; }
.crow { display: flex; align-items: center; gap: 13px; padding: 9px 0; border-bottom: 1px solid var(--line); }
.crow .keys { display: flex; gap: 4px; flex-shrink: 0; min-width: 116px; }
.crow .d { font-size: 13.5px; color: var(--fg-2); }
.crow .d b { color: var(--fg); font-weight: 600; }

/* ============ PRIVACY PLEDGE ============ */
.pledge { text-align: center; }
.pledge h2 { font-size: clamp(28px,4.4vw,50px); font-weight: 780; letter-spacing: -.03em; line-height: 1.05; }
.pledge h2 .x { color: var(--acc1); }
.pledge p { margin: 18px auto 0; max-width: 54ch; color: var(--fg-2); font-size: 16px; }

/* ============ FAQ ============ */
.faq { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; display: flex; align-items: center; gap: 14px; padding: 20px 4px; font-size: 16px; font-weight: 600; color: var(--fg); cursor: pointer; background: none; border: none; font-family: var(--sans); }
.faq-q .qm { font-family: var(--mono); color: var(--acc1); font-size: 13px; flex-shrink: 0; }
.faq-q .chev { margin-left: auto; width: 16px; height: 16px; color: var(--dim); transition: transform .2s; flex-shrink: 0; }
.faq-item.open .faq-q .chev { transform: rotate(90deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.faq-item.open .faq-a { max-height: 320px; }
.faq-a-in { padding: 0 4px 20px 33px; }
.faq-a-in p { font-size: 14.5px; color: var(--fg-2); line-height: 1.7; }

/* ============ CTA + FOOTER ============ */
.cta-final { text-align: center; }
.cta-final .mk { width: 56px; height: 56px; margin: 0 auto 22px; }
.cta-final h2 { font-size: clamp(28px,4vw,46px); letter-spacing: -.03em; font-weight: 780; line-height: 1.08; }
.cta-final p { margin: 15px auto 28px; max-width: 50ch; color: var(--fg-2); font-size: 17px; }
footer { border-top: 1px solid var(--line); padding: 52px 0 38px; background: var(--bg-2); }
.foot-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px; }
.foot-brand .brand { margin-bottom: 13px; }
.foot-brand p { font-size: 13px; color: var(--dim); line-height: 1.6; max-width: 32ch; }
.foot-col h5 { font-family: var(--mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--faint); margin-bottom: 13px; }
.foot-col a { display: block; font-size: 13.5px; color: var(--fg-2); padding: 5px 0; }
.foot-col a:hover { color: var(--acc1); }
.foot-bot { margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 12.5px; color: var(--dim); font-family: var(--mono); }
.foot-bot .made .g { color: var(--green); }

@media (max-width: 920px) {
  .nav-links { display: none; }
  .win-body { grid-template-columns: 1fr; } .helm-prev { display: none; }
  .killer, .import-grid { grid-template-columns: 1fr; }
  .price-wrap { grid-template-columns: 1fr; }
  .sec-grid2 { grid-template-columns: 1fr; gap: 26px; } .code-card { position: static; }
  .cheat { grid-template-columns: 1fr; }
  .foot-top { grid-template-columns: 1fr 1fr; gap: 26px; }
  .matrix { font-size: 12px; } .matrix th, .matrix td { padding: 11px 12px; }
}
@media (max-width: 560px) { section.band { padding: 60px 0; } .shot { width: 300px; } .foot-top { grid-template-columns: 1fr; } }
