/* ============================================================
   vawAI — Landing Page Styles
   Marka: violet-ink + copper · DM Sans / JetBrains Mono
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* brand */
  --violet: #6244F5;
  --violet-2: #8D6CFF;
  --violet-3: #A78BFF;
  --copper: #C97842;
  --amber: #FFB703;
  --ink: #221A47;

  /* surfaces (light) */
  --bg: #F4F6F8;
  --bg-soft: #ECEEF3;
  --card: #FDFEFE;
  --card-2: #F6F4FE;
  --line: #E2E4E6;
  --line-strong: #D2D4DA;

  /* text (light) */
  --fg: #0E1116;
  --fg-2: #51555B;
  --fg-3: #82868C;

  /* effects */
  --cta: linear-gradient(135deg, #7C5CFF 0%, #5A3CE8 100%);
  --brand-grad: linear-gradient(135deg, #6F55F2 0%, #8D6CFF 50%, #A78BFF 100%);
  --copper-grad: linear-gradient(135deg, #D88A55 0%, #C97842 100%);
  --glass: rgba(255, 255, 255, 0.66);
  --glass-line: rgba(255, 255, 255, 0.8);
  --shadow-sm: 0 1px 2px rgba(16, 23, 32, .06), 0 2px 8px rgba(16, 23, 32, .05);
  --shadow-md: 0 8px 30px rgba(34, 26, 71, .10), 0 2px 8px rgba(34, 26, 71, .06);
  --shadow-lg: 0 30px 70px -20px rgba(34, 26, 71, .28);
  --glow: 0 0 0 1px rgba(98, 68, 245, .14), 0 18px 50px -16px rgba(98, 68, 245, .45);

  --radius: 18px;
  --radius-lg: 26px;
  --maxw: 1180px;
  --font: var(--font-dm, "DM Sans"), system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

[data-theme="dark"] {
  --bg: #0C111A;
  --bg-soft: #0F1622;
  --card: #161D29;
  --card-2: #1B2130;
  --line: #2A2F3C;
  --line-strong: #3A3F4E;

  --fg: #F4F2FB;
  --fg-2: #B4B8C2;
  --fg-3: #7D828F;

  --cta: linear-gradient(135deg, #8B6CFF 0%, #6244F5 100%);
  --brand-grad: linear-gradient(135deg, #7C5CFF 0%, #9D7FFF 50%, #C4B5FF 100%);
  --copper-grad: linear-gradient(135deg, #E6A877 0%, #D88A55 100%);
  --glass: rgba(22, 29, 41, 0.62);
  --glass-line: rgba(255, 255, 255, 0.08);
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, .4);
  --shadow-md: 0 10px 34px rgba(0, 0, 0, .45);
  --shadow-lg: 0 36px 80px -24px rgba(0, 0, 0, .7);
  --glow: 0 0 0 1px rgba(124, 99, 255, .26), 0 22px 60px -18px rgba(124, 99, 255, .5);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  transition: background .4s ease, color .3s ease;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
ul { list-style: none; }
::selection { background: rgba(98, 68, 245, .22); }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.eyebrow {
  font: 600 12.5px/1 var(--mono);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--violet);
  display: inline-flex; align-items: center; gap: 8px;
}
[data-theme="dark"] .eyebrow { color: var(--violet-3); }
.gradient-text {
  background: var(--brand-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.section { padding: 112px 0; position: relative; }
[id] { scroll-margin-top: 88px; } /* sticky nav anchor offset */
.section__head { max-width: 720px; margin: 0 auto 64px; text-align: center; }
.section__head h2 { font-size: clamp(28px, 4vw, 44px); line-height: 1.1; letter-spacing: -.02em; margin: 16px 0 14px; font-weight: 700; }
.section__head p { color: var(--fg-2); font-size: 18px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font: 600 15.5px/1 var(--font);
  padding: 14px 24px; border-radius: 13px; cursor: pointer;
  border: 1px solid transparent; transition: transform .18s ease, box-shadow .25s ease, background .25s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn--primary { background: var(--cta); color: #fff; box-shadow: var(--glow); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 0 0 1px rgba(98,68,245,.2), 0 24px 60px -16px rgba(98,68,245,.6); }
.btn--ghost { background: transparent; color: var(--fg); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--violet); color: var(--violet); transform: translateY(-2px); }
[data-theme="dark"] .btn--ghost:hover { color: var(--violet-3); border-color: var(--violet-3); }
.btn svg { width: 18px; height: 18px; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: saturate(160%) blur(18px); -webkit-backdrop-filter: saturate(160%) blur(18px);
  background: var(--glass);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}
.nav.is-scrolled { border-bottom-color: var(--line); }
.nav__inner { display: flex; align-items: center; gap: 22px; height: 70px; }
.nav__brand { display: flex; align-items: center; gap: 11px; font-weight: 700; font-size: 19px; letter-spacing: -.01em; }
.nav__brand img { width: 32px; height: 32px; border-radius: 9px; box-shadow: var(--shadow-sm); }
.nav__brand b { font-weight: 800; }
.nav__brand b span { color: var(--violet); }
[data-theme="dark"] .nav__brand b span { color: var(--violet-3); }
.nav__links { display: flex; gap: 6px; margin-left: auto; }
.nav__links a { color: var(--fg-2); font-size: 14.5px; font-weight: 500; padding: 8px 13px; border-radius: 9px; transition: color .2s, background .2s; }
.nav__links a:hover { color: var(--fg); background: var(--card-2); }
.nav__actions { display: flex; align-items: center; gap: 8px; }
.icon-btn {
  width: 38px; height: 38px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 10px; border: 1px solid var(--line); background: var(--card);
  cursor: pointer; color: var(--fg-2); transition: all .2s;
}
.icon-btn:hover { color: var(--violet); border-color: var(--violet); }
.icon-btn svg { width: 18px; height: 18px; }
.lang-toggle {
  display: inline-flex; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; background: var(--card);
  font: 600 12.5px/1 var(--mono);
}
.lang-toggle button { padding: 0 11px; height: 38px; background: transparent; border: none; cursor: pointer; color: var(--fg-3); transition: all .2s; }
.lang-toggle button.is-active { background: var(--violet); color: #fff; }
.nav__burger { display: none; }
.theme-icon-sun { display: none; }
[data-theme="dark"] .theme-icon-sun { display: block; }
[data-theme="dark"] .theme-icon-moon { display: none; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 92px 0 96px; overflow: hidden; }
.hero__bg { position: absolute; inset: -20% -10% auto; height: 140%; z-index: 0; pointer-events: none; filter: blur(8px); }
.blob { position: absolute; border-radius: 50%; opacity: .55; filter: blur(70px); animation: float 18s ease-in-out infinite; }
.blob--1 { width: 520px; height: 520px; left: -8%; top: -12%; background: radial-gradient(circle, #6F55F2, transparent 70%); }
.blob--2 { width: 460px; height: 460px; right: -6%; top: 6%; background: radial-gradient(circle, #A78BFF, transparent 70%); animation-delay: -6s; }
.blob--3 { width: 360px; height: 360px; left: 32%; top: 30%; background: radial-gradient(circle, #D88A55, transparent 70%); opacity: .3; animation-delay: -11s; }
[data-theme="dark"] .blob { opacity: .4; }
.hero__grid {
  position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: .5;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 75%);
}
.hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero__copy { max-width: 600px; }
.badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--card); border: 1px solid var(--line); border-radius: 100px;
  padding: 7px 15px 7px 11px; font-size: 13px; font-weight: 500; color: var(--fg-2);
  box-shadow: var(--shadow-sm);
}
.badge .dot { width: 7px; height: 7px; border-radius: 50%; background: #22C55E; box-shadow: 0 0 0 4px rgba(34,197,94,.18); animation: pulse 2.2s ease-in-out infinite; }
.hero h1 { font-size: clamp(38px, 6.2vw, 68px); line-height: 1.03; letter-spacing: -.035em; font-weight: 800; margin: 22px 0 20px; }
.hero__sub { font-size: 19px; color: var(--fg-2); max-width: 540px; margin-bottom: 32px; }
.hero__cta { display: flex; gap: 13px; flex-wrap: wrap; }
.hero__meta { display: flex; gap: 22px; margin-top: 30px; flex-wrap: wrap; }
.hero__meta div { display: flex; align-items: center; gap: 9px; font-size: 13.5px; color: var(--fg-3); }
.hero__meta svg { width: 17px; height: 17px; color: var(--violet); }
[data-theme="dark"] .hero__meta svg { color: var(--violet-3); }

/* ---------- Hero mockup (live transcript) ---------- */
.mock {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); overflow: hidden;
}
.mock__bar { display: flex; align-items: center; gap: 7px; padding: 13px 16px; border-bottom: 1px solid var(--line); background: var(--card-2); }
.mock__bar i { width: 11px; height: 11px; border-radius: 50%; background: var(--line-strong); }
.mock__bar i:nth-child(1) { background: #FF5F57; } .mock__bar i:nth-child(2) { background: #FEBC2E; } .mock__bar i:nth-child(3) { background: #28C840; }
.mock__bar span { margin-left: 10px; font: 500 12px/1 var(--mono); color: var(--fg-3); }
.mock__live { margin-left: auto; display: flex; align-items: center; gap: 7px; font: 600 11px/1 var(--mono); color: #ff5f57; text-transform: uppercase; letter-spacing: .1em; }
.mock__live i { width: 8px; height: 8px; background: #ff5f57; border-radius: 50%; animation: pulse 1.4s infinite; }
.mock__body { padding: 20px; display: flex; flex-direction: column; gap: 16px; }
.line { display: flex; gap: 12px; opacity: 0; transform: translateY(8px); animation: rise .6s forwards; }
.line:nth-child(1){animation-delay:.2s}.line:nth-child(2){animation-delay:.9s}.line:nth-child(3){animation-delay:1.6s}.line:nth-child(4){animation-delay:2.3s}
.line__av { width: 34px; height: 34px; border-radius: 50%; flex: 0 0 34px; display: flex; align-items: center; justify-content: center; font: 700 13px/1 var(--font); color: #fff; }
.line__av.a { background: linear-gradient(135deg,#6F55F2,#9D7FFF); }
.line__av.b { background: linear-gradient(135deg,#D88A55,#E6A877); }
.line__av.c { background: linear-gradient(135deg,#22C55E,#4ADE80); }
.line__txt { flex: 1; }
.line__name { font: 600 12.5px/1 var(--font); margin-bottom: 5px; }
.line__name span { color: var(--fg-3); font-weight: 500; margin-left: 7px; font-size: 11px; }
.line__bubble { background: var(--card-2); border: 1px solid var(--line); border-radius: 4px 14px 14px 14px; padding: 9px 13px; font-size: 13.5px; color: var(--fg-2); }
.line--typing .line__bubble { display: inline-flex; gap: 4px; }
.line--typing .line__bubble i { width: 6px; height: 6px; border-radius: 50%; background: var(--fg-3); animation: blink 1.2s infinite; }
.line--typing .line__bubble i:nth-child(2){animation-delay:.2s} .line--typing .line__bubble i:nth-child(3){animation-delay:.4s}
.mock__wave { display: flex; align-items: flex-end; gap: 3px; height: 34px; padding: 0 20px 16px; }
.mock__wave i { flex: 1; background: var(--violet); border-radius: 3px; opacity: .65; animation: wave 1.1s ease-in-out infinite; }
.mock__chips { display: flex; gap: 8px; padding: 0 20px 18px; flex-wrap: wrap; }
.chip { font: 500 11.5px/1 var(--font); padding: 6px 11px; border-radius: 100px; background: rgba(98,68,245,.1); color: var(--violet); border: 1px solid rgba(98,68,245,.2); }
[data-theme="dark"] .chip { color: var(--violet-3); }
.chip.copper { background: rgba(201,120,66,.12); color: var(--copper); border-color: rgba(201,120,66,.25); }

/* ---------- Trust strip ---------- */
.trust { border-block: 1px solid var(--line); background: var(--bg-soft); }
.trust__inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 34px 0; }
.trust__item { display: flex; align-items: center; gap: 13px; }
.trust__ic { width: 44px; height: 44px; flex: 0 0 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; background: var(--card); border: 1px solid var(--line); color: var(--violet); }
[data-theme="dark"] .trust__ic { color: var(--violet-3); }
.trust__ic svg { width: 22px; height: 22px; }
.trust__item b { display: block; font-size: 14.5px; font-weight: 700; }
.trust__item span { font-size: 12.5px; color: var(--fg-3); }

/* ---------- Feature rows ---------- */
.feat { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.feat + .feat { margin-top: 120px; }
.feat--rev .feat__media { order: -1; }
.feat__num { font: 700 13px/1 var(--mono); color: var(--copper); letter-spacing: .1em; }
.feat__copy h3 { font-size: clamp(24px, 3.2vw, 34px); line-height: 1.12; letter-spacing: -.02em; margin: 14px 0 16px; font-weight: 700; }
.feat__copy > p { color: var(--fg-2); font-size: 17.5px; margin-bottom: 24px; }
.feat__list { display: flex; flex-direction: column; gap: 14px; }
.feat__list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; color: var(--fg-2); }
.feat__list .tick { flex: 0 0 22px; width: 22px; height: 22px; border-radius: 7px; background: rgba(98,68,245,.12); color: var(--violet); display: flex; align-items: center; justify-content: center; margin-top: 1px; }
[data-theme="dark"] .feat__list .tick { color: var(--violet-3); }
.feat__list .tick svg { width: 13px; height: 13px; }
.feat__list b { color: var(--fg); font-weight: 600; }

/* media card shared */
.media {
  position: relative; background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 26px; box-shadow: var(--shadow-md); overflow: hidden;
}
.media::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse 120% 70% at 80% -10%, rgba(98,68,245,.1), transparent 60%); pointer-events: none; }

/* security diagram */
.diag { display: flex; flex-direction: column; align-items: center; gap: 0; position: relative; z-index: 1; }
.diag__node { width: 100%; display: flex; align-items: center; gap: 14px; padding: 16px 18px; border-radius: 14px; background: var(--card-2); border: 1px solid var(--line); }
.diag__node .ic { width: 40px; height: 40px; flex: 0 0 40px; border-radius: 11px; display: flex; align-items: center; justify-content: center; background: var(--violet); color: #fff; }
.diag__node.shield .ic { background: var(--copper-grad); }
.diag__node .ic svg { width: 21px; height: 21px; }
.diag__node b { font-size: 14.5px; } .diag__node p { font-size: 12.5px; color: var(--fg-3); }
.diag__pipe { width: 2px; height: 26px; background: repeating-linear-gradient(var(--violet) 0 5px, transparent 5px 10px); margin: 4px 0; }
.diag__blocked { display: flex; align-items: center; gap: 9px; margin-top: 10px; padding: 11px 15px; border-radius: 12px; background: rgba(239,68,68,.08); border: 1px dashed rgba(239,68,68,.4); color: #ef4444; font-size: 13px; font-weight: 600; width: 100%; }
[data-theme="dark"] .diag__blocked { color: #f87171; }

/* transcript compare */
.cmp { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 16px; }
.cmp__card { border-radius: 14px; border: 1px solid var(--line); padding: 15px 17px; background: var(--card-2); }
.cmp__tag { font: 600 11px/1 var(--mono); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 9px; display: inline-flex; align-items: center; gap: 7px; }
.cmp__card.bad .cmp__tag { color: var(--fg-3); } .cmp__card.good .cmp__tag { color: #22C55E; }
[data-theme="dark"] .cmp__card.good .cmp__tag { color: #4ADE80; }
.cmp__card p { font-size: 14.5px; color: var(--fg-2); }
.cmp__card.bad p { color: var(--fg-3); }
.cmp__card s { color: #ef4444; text-decoration-thickness: 2px; opacity: .8; }
.cmp__card mark { background: rgba(34,197,94,.18); color: inherit; padding: 0 3px; border-radius: 4px; font-weight: 600; }
.cmp__arrow { align-self: center; color: var(--violet); }
[data-theme="dark"] .cmp__arrow { color: var(--violet-3); }

/* integrations flow */
.flow { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 14px; }
.flow__src { display: flex; align-items: center; gap: 13px; padding: 15px 17px; border-radius: 14px; background: var(--ink); color: #EFECFC; }
.flow__src .ic { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.12); display: flex; align-items: center; justify-content: center; }
.flow__src .ic svg { width: 20px; height: 20px; }
.flow__src b { font-size: 14.5px; } .flow__src span { font-size: 12px; opacity: .75; }
.flow__split { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.flow__dest { padding: 16px; border-radius: 14px; border: 1px solid var(--line); background: var(--card-2); }
.flow__dest .ic { width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 11px; color: #fff; }
.flow__dest.notion .ic { background: #111; } [data-theme="dark"] .flow__dest.notion .ic { background: #fff; color: #111; }
.flow__dest.cal .ic { background: var(--cta); }
.flow__dest .ic svg { width: 20px; height: 20px; }
.flow__dest b { font-size: 14px; display: block; margin-bottom: 4px; } .flow__dest p { font-size: 12px; color: var(--fg-3); }
.flow__dest .tasks { margin-top: 11px; display: flex; flex-direction: column; gap: 7px; }
.flow__dest .tasks i { height: 9px; border-radius: 4px; background: var(--line); display: block; }
.flow__dest .tasks i:nth-child(2){width:80%} .flow__dest .tasks i:nth-child(3){width:60%}

/* research report */
.report { position: relative; z-index: 1; }
.report__h { display: flex; align-items: center; gap: 12px; padding-bottom: 16px; border-bottom: 1px solid var(--line); margin-bottom: 16px; }
.report__h .ic { width: 42px; height: 42px; border-radius: 12px; background: var(--copper-grad); color: #fff; display: flex; align-items: center; justify-content: center; }
.report__h .ic svg { width: 22px; height: 22px; }
.report__h b { font-size: 15px; } .report__h span { font-size: 12px; color: var(--fg-3); display: block; }
.report__lines { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.report__lines i { height: 10px; border-radius: 5px; background: var(--line); }
.report__lines i:nth-child(1){width:100%}.report__lines i:nth-child(2){width:92%}.report__lines i:nth-child(3){width:97%}.report__lines i:nth-child(4){width:70%}
.report__src { display: flex; flex-direction: column; gap: 8px; }
.report__src div { display: flex; align-items: center; gap: 9px; font-size: 12.5px; color: var(--fg-2); padding: 8px 11px; border-radius: 9px; background: var(--card-2); border: 1px solid var(--line); }
.report__src .n { width: 18px; height: 18px; border-radius: 5px; background: rgba(201,120,66,.15); color: var(--copper); font: 700 10px/18px var(--mono); text-align: center; flex: 0 0 18px; }

/* code / PR mock */
.code { position: relative; z-index: 1; font-family: var(--mono); font-size: 13px; }
.code__step { display: flex; align-items: center; gap: 11px; padding: 13px 15px; border-radius: 12px; background: var(--card-2); border: 1px solid var(--line); margin-bottom: 12px; }
.code__step .ic { width: 32px; height: 32px; flex: 0 0 32px; border-radius: 9px; display: flex; align-items: center; justify-content: center; color: #fff; background: var(--cta); }
.code__step .ic svg { width: 17px; height: 17px; }
.code__step b { font: 600 13px/1.3 var(--font); font-family: var(--font); }
.code__step span { font-size: 11.5px; color: var(--fg-3); display: block; }
.code__pr { border-radius: 12px; border: 1px solid var(--line); overflow: hidden; }
.code__pr .top { display: flex; align-items: center; gap: 9px; padding: 12px 15px; background: #1f883d; color: #fff; font-family: var(--font); font-weight: 600; font-size: 13px; }
.code__pr .top svg { width: 17px; height: 17px; }
.code__pr .body { padding: 14px 15px; background: var(--card-2); }
.code__pr .body .row { color: var(--fg-2); margin-bottom: 5px; }
.code__pr .body .add { color: #1f883d; } .code__pr .body .del { color: #cf222e; }
[data-theme="dark"] .code__pr .body .add { color: #3fb950; } [data-theme="dark"] .code__pr .body .del { color: #f85149; }
.code__pr .foot { padding: 10px 15px; border-top: 1px solid var(--line); font-family: var(--font); font-size: 11.5px; color: var(--fg-3); display: flex; align-items: center; gap: 7px; }

/* ---------- Capabilities grid ---------- */
.caps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cap {
  position: relative; background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px 24px; box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  overflow: hidden;
}
.cap:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.cap__ic {
  width: 50px; height: 50px; border-radius: 14px; display: flex; align-items: center; justify-content: center;
  background: rgba(98,68,245,.1); color: var(--violet); margin-bottom: 18px;
}
[data-theme="dark"] .cap__ic { color: var(--violet-3); background: rgba(124,99,255,.14); }
.cap__ic svg { width: 25px; height: 25px; }
.cap h4 { font-size: 17.5px; font-weight: 700; margin-bottom: 9px; letter-spacing: -.01em; }
.cap p { font-size: 14.5px; color: var(--fg-2); }
/* öne çıkan (kullanıcı vurgusu) kartlar — copper aksan */
.cap--accent { border-color: rgba(201,120,66,.28); }
.cap--accent::after { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: var(--copper-grad); }
.cap--accent .cap__ic { background: rgba(201,120,66,.12); color: var(--copper); }
[data-theme="dark"] .cap--accent .cap__ic { color: #E6A877; background: rgba(216,138,85,.16); }

/* ---------- How it works ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: s; }
.step { position: relative; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 22px; box-shadow: var(--shadow-sm); }
.step::after { content: ""; position: absolute; top: 50px; right: -14px; width: 28px; height: 2px; background: repeating-linear-gradient(90deg, var(--line-strong) 0 4px, transparent 4px 8px); }
.steps .step:last-child::after { display: none; }
.step__n { counter-increment: s; width: 42px; height: 42px; border-radius: 12px; background: var(--brand-grad); color: #fff; font: 800 18px/42px var(--mono); text-align: center; margin-bottom: 18px; }
.step__n::before { content: "0" counter(s); }
.step h4 { font-size: 17px; margin-bottom: 9px; font-weight: 700; }
.step p { font-size: 14px; color: var(--fg-2); }

/* ---------- CTA ---------- */
.cta-band { padding: 96px 0; }
.cta-card {
  position: relative; overflow: hidden; border-radius: 32px; padding: 72px 48px; text-align: center;
  background: var(--ink); color: #F4F2FB; box-shadow: var(--shadow-lg);
}
.cta-card::before { content: ""; position: absolute; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(141,108,255,.6), transparent 65%); top: -280px; left: -120px; filter: blur(30px); }
.cta-card::after { content: ""; position: absolute; width: 460px; height: 460px; border-radius: 50%; background: radial-gradient(circle, rgba(216,138,85,.45), transparent 65%); bottom: -240px; right: -80px; filter: blur(30px); }
.cta-card > * { position: relative; z-index: 1; }
.cta-card h2 { font-size: clamp(30px, 4.5vw, 48px); line-height: 1.08; letter-spacing: -.02em; font-weight: 800; margin-bottom: 18px; }
.cta-card p { font-size: 19px; color: rgba(244,242,251,.78); max-width: 560px; margin: 0 auto 34px; }
.cta-card .hero__cta { justify-content: center; }
.cta-card .btn--ghost { color: #fff; border-color: rgba(255,255,255,.3); }
.cta-card .btn--ghost:hover { color: #fff; border-color: #fff; background: rgba(255,255,255,.08); }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); padding: 48px 0 36px; }
.footer__inner { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.footer__brand { display: flex; align-items: center; gap: 11px; font-weight: 700; }
.footer__brand img { width: 30px; height: 30px; border-radius: 8px; }
.footer p { font-size: 13px; color: var(--fg-3); }
.footer__note { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; color: var(--fg-3); padding: 6px 12px; border-radius: 100px; border: 1px solid var(--line); }
.footer__note .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--amber); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Keyframes ---------- */
@keyframes float { 0%,100%{transform:translate(0,0)} 33%{transform:translate(26px,-22px)} 66%{transform:translate(-20px,18px)} }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.45} }
@keyframes blink { 0%,100%{opacity:.3} 50%{opacity:1} }
@keyframes rise { to { opacity:1; transform:none } }
@keyframes wave { 0%,100%{height:30%} 50%{height:100%} }
.mock__wave i:nth-child(1){animation-delay:0s}.mock__wave i:nth-child(2){animation-delay:.1s}.mock__wave i:nth-child(3){animation-delay:.2s}.mock__wave i:nth-child(4){animation-delay:.3s}.mock__wave i:nth-child(5){animation-delay:.15s}.mock__wave i:nth-child(6){animation-delay:.25s}.mock__wave i:nth-child(7){animation-delay:.05s}.mock__wave i:nth-child(8){animation-delay:.35s}.mock__wave i:nth-child(9){animation-delay:.2s}.mock__wave i:nth-child(10){animation-delay:.1s}.mock__wave i:nth-child(11){animation-delay:.3s}.mock__wave i:nth-child(12){animation-delay:.18s}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; gap: 44px; }
  .hero__copy { max-width: none; }
  .feat, .feat--rev { grid-template-columns: 1fr; gap: 36px; }
  .feat--rev .feat__media { order: 0; }
  .feat + .feat { margin-top: 84px; }
  .steps { grid-template-columns: 1fr 1fr; }
  .step::after { display: none; }
  .trust__inner { grid-template-columns: 1fr 1fr; gap: 26px; }
  .nav__links { display: none; }
  .section { padding: 84px 0; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .wrap { padding: 0 18px; }
  .steps { grid-template-columns: 1fr; }
  .trust__inner { grid-template-columns: 1fr; }
  .flow__split { grid-template-columns: 1fr; }
  .cta-card { padding: 52px 26px; }
  .hero__cta .btn { flex: 1; }
}

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