/* ============================================================
   Nexus — Landing page styles
   Brand: navy #1C1D39 + mint #80ED99, Birzia + Rubik
   ============================================================ */

@font-face {
  font-family: 'Birzia';
  src: url('fonts/Birzia-Light.woff2') format('woff2');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Birzia';
  src: url('fonts/Birzia-Medium.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Birzia';
  src: url('fonts/Birzia-Bold.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Birzia';
  src: url('fonts/Birzia-Black.woff2') format('woff2');
  font-weight: 900; font-style: normal; font-display: swap;
}

:root {
  --navy: #1C1D39;
  --navy-deep: #130F36;
  --navy-soft: #2A2C52;
  --mint: #80ED99;
  --mint-strong: #4ADE80;
  --mint-deep: #22C55E;
  --lavender: #EAE9FB;
  --lavender-line: #EBEDFC;
  --blue: #4F8EF7;
  --blue-soft: #EBF2FC;
  --page: #F5F8FD;
  --page-2: #EEF3FB;
  --card: #FFFFFF;
  --line: #E6E9F2;
  --ink: #1C1D39;
  --ink-2: #54566F;
  --ink-3: #6B6E86;
  --shadow-sm: 0 2px 10px rgba(28,29,57,.05);
  --shadow-md: 0 12px 40px rgba(28,29,57,.08);
  --shadow-lg: 0 30px 70px rgba(28,29,57,.14);
  --shadow-mint: 0 14px 34px rgba(74,222,128,.35);
  --r-lg: 26px;
  --r-md: 18px;
  --r-sm: 12px;
  --maxw: 1180px;
  --font: 'Birzia', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --mono: 'Rubik', system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--page);
  direction: rtl;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 { line-height: 1.12; letter-spacing: -.01em; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.num { font-family: var(--mono); font-variant-numeric: tabular-nums; }
.rng { direction: ltr; unicode-bidi: isolate; display: inline-block; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.eyebrow {
  font-size: 14px; font-weight: 700; letter-spacing: .12em;
  color: var(--mint-deep); text-transform: none;
  display: inline-flex; align-items: center; gap: 9px;
}
.eyebrow::before, .eyebrow::after {
  content: ""; width: 22px; height: 2px; background: var(--mint-strong); border-radius: 2px; flex: none;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font); font-weight: 700; font-size: 17px;
  border: none; cursor: pointer; border-radius: 13px;
  padding: 0 26px; height: 52px; transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap;
}
.btn-mint { background: var(--mint); color: var(--navy); box-shadow: var(--shadow-mint); }
.btn-mint:hover { transform: translateY(-2px); box-shadow: 0 20px 44px rgba(74,222,128,.45); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { transform: translateY(-2px); background: var(--navy-soft); }
.btn-ghost { background: #fff; color: var(--navy); border: 1.5px solid var(--line); box-shadow: var(--shadow-sm); }
.btn-ghost:hover { border-color: #cfd6e6; transform: translateY(-2px); }
.btn-sm { height: 44px; font-size: 15px; padding: 0 20px; border-radius: 11px; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(245,248,253,.82); backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent; transition: border-color .25s, background .25s;
}
.nav.scrolled { border-bottom-color: var(--line); background: rgba(245,248,253,.92); }
.nav-in { display: flex; align-items: center; gap: 28px; height: 78px; }
.logo {
  font-family: var(--mono); font-weight: 700; font-size: 30px; letter-spacing: .04em;
  color: var(--navy); display: flex; align-items: center; gap: 9px;
}
.logo-dot { width: 11px; height: 11px; border-radius: 50%; background: var(--mint-strong); margin-bottom: 11px; }
.nav-links { display: flex; gap: 30px; margin-inline-start: auto; list-style: none; }
.nav-links a { font-size: 16px; font-weight: 500; color: var(--ink-2); transition: color .15s; }
.nav-links a:hover { color: var(--navy); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-login { font-size: 16px; font-weight: 700; color: var(--navy); }
.nav-login:hover { color: var(--mint-deep); }
.burger { display: none; background: var(--navy); border: none; color: #fff; width: 44px; height: 44px; border-radius: 12px; cursor: pointer; }
.burger svg { width: 22px; height: 22px; margin: 0 auto; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 78px 0 140px; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px; background: #fff;
  border: 1px solid var(--line); border-radius: 999px; padding: 7px 15px 7px 7px;
  font-size: 14px; font-weight: 500; color: var(--ink-2); box-shadow: var(--shadow-sm); margin-bottom: 26px;
}
.hero-badge b { color: var(--navy); font-weight: 700; }
.hero-badge .pill {
  background: var(--lavender); color: var(--navy); font-weight: 700; font-size: 12px;
  padding: 3px 10px; border-radius: 999px;
}
.hero h1 { font-size: clamp(40px, 5vw, 62px); font-weight: 900; color: var(--navy); margin-bottom: 22px; }
.hero h1 .hl { white-space: nowrap; color: var(--navy); background: linear-gradient(transparent 60%, rgba(128,237,153,.85) 60%, rgba(128,237,153,.85) 90%, transparent 90%); }
.hero p.lead { font-size: 20px; color: var(--ink-2); max-width: 520px; margin-bottom: 32px; font-weight: 500; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-actions .play { display: inline-flex; align-items: center; gap: 12px; height: 52px; padding-inline-start: 7px; padding-inline-end: 24px; border-radius: 999px; background: #fff; border: 1.5px solid var(--line); box-shadow: var(--shadow-sm); font-family: var(--font); font-weight: 700; font-size: 17px; color: var(--navy); transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.hero-actions .play .ring { width: 38px; height: 38px; border-radius: 50%; background: var(--lavender); border: none; box-shadow: none; display: grid; place-items: center; transition: background .18s ease, transform .18s ease; }
.hero-actions .play:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: #D2D8E8; }
.hero-actions .play:hover .ring { background: var(--mint); transform: scale(1.06); }
.trust-row { display: flex; align-items: center; gap: 16px; margin-top: 34px; }
.avatars { display: flex; direction: ltr; }
.avatars span {
  width: 38px; height: 38px; border-radius: 50%; border: 2.5px solid var(--page);
  margin-left: -12px; background-size: cover; background-position: center;
  display: grid; place-items: center; font-weight: 700; font-size: 13px; color: #fff;
}
.trust-row .stars { color: #FBBF24; font-size: 15px; letter-spacing: 2px; }
.trust-row small { color: var(--ink-3); font-size: 14px; }

/* ---------- Hero visual (app mockup) ---------- */
.hero-visual { position: relative; }
.glow { position: absolute; inset: -10% -8% -10% -8%; z-index: 0;
  background: radial-gradient(60% 55% at 50% 40%, rgba(128,237,153,.30), transparent 70%); filter: blur(10px); }

.app-card {
  position: relative; z-index: 2; background: #fff; border: 1px solid var(--line);
  border-radius: 24px; box-shadow: var(--shadow-lg); overflow: hidden;
}
.app-top { display: flex; align-items: center; gap: 8px; padding: 14px 18px; border-bottom: 1px solid var(--line); }
.app-top .dots { display: flex; gap: 6px; }
.app-top .dots i { width: 11px; height: 11px; border-radius: 50%; background: #E2E6F0; display: block; }
.app-top .dots i:first-child { background: #FF8C8C; }
.app-top .dots i:nth-child(2){ background: #FFD27A; }
.app-top .dots i:nth-child(3){ background: var(--mint-strong); }
.app-top .url { margin-inline-start: auto; font-family: var(--mono); font-size: 12px; color: var(--ink-3); background: var(--page); padding: 5px 12px; border-radius: 8px; }

.app-body { display: flex; min-height: 360px; background: var(--page); }
.app-side { width: 64px; background: var(--navy-deep); padding: 16px 0; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.app-side .mark { font-family: var(--mono); font-weight: 700; color: #fff; font-size: 15px; margin-bottom: 6px; }
.app-side .ic { width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; color: #8C90B5; }
.app-side .ic.on { background: #2A2C52; color: #fff; }
.app-side .ic svg { width: 19px; height: 19px; }
.app-main { flex: 1; padding: 18px; }
.app-h { font-size: 17px; font-weight: 900; color: var(--navy); margin-bottom: 14px; }
.stat-mini { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 14px; }
.stat-mini .c { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 12px; display: flex; align-items: center; gap: 10px; }
.stat-mini .c .ico { width: 40px; height: 40px; border-radius: 10px; background: var(--lavender); display: grid; place-items: center; }
.stat-mini .c .ico svg { width: 22px; height: 22px; color: #54566F; }
.stat-mini .c b { font-family: var(--mono); font-size: 18px; color: var(--navy); display: block; line-height: 1; }
.stat-mini .c small { font-size: 12px; color: var(--ink-2); }
.camp { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 12px; display: flex; gap: 11px; align-items: center; margin-bottom: 9px; }
.camp .thumb { width: 52px; height: 52px; border-radius: 10px; flex: none; background: linear-gradient(135deg,#cdd7 ,#dbe3f2); background-size: cover; }
.camp .meta { flex: 1; }
.camp .meta .t { font-weight: 700; font-size: 13px; color: var(--navy); }
.camp .tags { display: flex; gap: 5px; margin-top: 6px; }
.tag { font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 999px; }
.tag.blue { background: #E5EEFE; color: #2F6FE0; }
.tag.gray { background: #EEF1F7; color: #6B6E86; }
.tag.green { background: #DDF7E4; color: #1E9E4E; }
.camp .time { font-family: var(--mono); font-size: 13px; font-weight: 700; color: var(--mint-deep); }

/* floating chips around the hero card */
.chip {
  position: absolute; z-index: 3; background: #fff; border: 1px solid var(--line);
  border-radius: 15px; box-shadow: var(--shadow-md); padding: 11px 14px;
  display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 14px; color: var(--navy);
}
.chip .dotc { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; flex: none; }
.chip small { display: block; font-weight: 500; font-size: 11px; color: var(--ink-3); }
.chip-1 { top: -54px; left: -22px; animation: float1 6s ease-in-out infinite; }
.chip-2 { bottom: -58px; left: -22px; animation: float2 7s ease-in-out infinite; }
.chip-3 { bottom: -52px; right: 14px; animation: float1 8s ease-in-out infinite; }
@keyframes float1 { 0%,100%{ transform: translateY(0) } 50%{ transform: translateY(-12px) } }
@keyframes float2 { 0%,100%{ transform: translateY(0) } 50%{ transform: translateY(10px) } }
@media (prefers-reduced-motion: reduce){ .chip { animation: none !important; } }

/* ---------- Marquee / trust strip ---------- */
.strip { padding: 26px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.strip-head { text-align: center; color: var(--ink-3); font-weight: 700; font-size: 14px; letter-spacing: .04em; margin-bottom: 18px; }
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee-track { display: flex; gap: 54px; width: max-content; animation: scroll 32s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span { font-weight: 900; font-size: 26px; color: #8B93A8; white-space: nowrap; letter-spacing: .02em; }
@keyframes scroll { from { transform: translateX(0) } to { transform: translateX(-50%) } }

/* ---------- Section scaffolding ---------- */
.section { padding: 92px 0; }
.section.tint { background: var(--page-2); }
.section.dark { background: var(--navy); color: #fff; }
.sec-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.sec-head h2 { font-size: clamp(30px, 3.6vw, 46px); font-weight: 900; color: var(--navy); margin: 16px 0 14px; }
.section.dark .sec-head h2 { color: #fff; }
.sec-head h2 .mk { color: var(--mint-deep); }
.section.dark .sec-head h2 .mk { color: var(--mint); }
.sec-head p { font-size: 18px; color: var(--ink-2); }
.section.dark .sec-head p { color: #B9BCDC; }
.center { text-align: center; }

/* ---------- Benefits grid ---------- */
.benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.benefit {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 26px 22px;
  box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s, border-color .2s;
}
.benefit:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: #d9dE ec; }
.benefit .bi { width: 56px; height: 56px; border-radius: 15px; background: var(--lavender); display: grid; place-items: center; margin-bottom: 18px; }
.benefit .bi svg { width: 28px; height: 28px; color: var(--navy); }
.benefit.feat .bi { background: var(--mint); }
.benefit h3 { font-size: 19px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.benefit p { font-size: 15px; color: var(--ink-2); }
.benefit .ex { display: inline-block; margin-top: 12px; font-size: 12px; font-weight: 700; color: var(--mint-deep); background: #E6FAEC; padding: 3px 10px; border-radius: 999px; }

/* ---------- Steps (how it works) ---------- */
.steps { display: flex; flex-direction: column; gap: 110px; }
.step { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.step:nth-child(even) .step-text { order: 2; }
.step-num { font-family: var(--mono); font-size: 15px; font-weight: 700; color: var(--mint-deep); letter-spacing: .1em; display: inline-flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.step-num .n { width: 40px; height: 40px; border-radius: 11px; background: var(--navy); color: #fff; display: grid; place-items: center; font-size: 15px; }
.step-text h3 { font-size: clamp(26px, 3vw, 36px); font-weight: 900; color: var(--navy); margin-bottom: 16px; }
.step-text p { font-size: 17px; color: var(--ink-2); max-width: 480px; margin-bottom: 18px; }
.step-list { display: flex; flex-direction: column; gap: 11px; }
.step-list li { list-style: none; display: flex; align-items: flex-start; gap: 11px; font-size: 16px; color: var(--ink); font-weight: 500; }
.step-list .ck { width: 24px; height: 24px; border-radius: 50%; background: #E6FAEC; flex: none; display: grid; place-items: center; margin-top: 1px; }
.step-list .ck svg { width: 14px; height: 14px; color: var(--mint-deep); }
.step-badge { display: inline-block; font-size: 12px; font-weight: 700; padding: 5px 12px; border-radius: 999px; margin-bottom: 14px; }
.step-badge.excl { background: var(--navy); color: var(--mint); }
.step-badge.new { background: #E6FAEC; color: var(--mint-deep); }

/* mock frame used in steps */
.mock { background: #fff; border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow-lg); overflow: hidden; position: relative; }
.mock-top { display: flex; align-items: center; gap: 7px; padding: 13px 16px; border-bottom: 1px solid var(--line); }
.mock-top i { width: 10px; height: 10px; border-radius: 50%; background: #E2E6F0; }
.mock-top i:first-child{ background:#FF8C8C } .mock-top i:nth-child(2){ background:#FFD27A } .mock-top i:nth-child(3){ background: var(--mint-strong) }
.mock-top .ttl { margin-inline-start: auto; font-size: 12px; color: var(--ink-3); font-weight: 700; }
.mock-pad { padding: 22px; background: var(--page); }
.field { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 13px 14px; font-size: 14px; color: var(--ink-2); }
.field.lbl { color: var(--ink-3); font-size: 12px; font-weight: 700; padding-bottom: 5px; }
.row { display: flex; gap: 10px; }

/* group select rows */
.grp { display: flex; align-items: center; gap: 11px; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 11px 13px; margin-bottom: 9px; }
.grp .av { width: 38px; height: 38px; border-radius: 10px; background: var(--lavender); flex: none; }
.grp .gt { flex: 1; }
.grp .gt b { font-size: 13px; color: var(--navy); display: block; }
.grp .gt small { font-size: 11px; color: var(--ink-3); }
.grp .chk { width: 24px; height: 24px; border-radius: 7px; border: 2px solid var(--line); flex: none; display: grid; place-items: center; }
.grp.sel .chk { background: var(--mint-strong); border-color: var(--mint-strong); }
.grp.sel .chk svg { width: 14px; height: 14px; color: #fff; }

/* day toggles */
.days { display: flex; gap: 7px; flex-wrap: wrap; }
.day { width: 44px; height: 44px; border-radius: 11px; border: 1.5px solid var(--line); background: #fff; display: grid; place-items: center; font-weight: 700; font-size: 15px; color: var(--ink-2); }
.day.on { background: var(--navy); color: #fff; border-color: var(--navy); }
.toggle { width: 50px; height: 28px; border-radius: 999px; background: var(--mint-strong); position: relative; }
.toggle::after { content: ""; position: absolute; top: 3px; left: 3px; width: 22px; height: 22px; border-radius: 50%; background: #fff; }
.seg { display: inline-flex; background: var(--blue-soft); border-radius: 12px; padding: 4px; gap: 4px; }
.seg span { padding: 8px 16px; border-radius: 9px; font-size: 13px; font-weight: 700; color: var(--ink-2); }
.seg span.on { background: #fff; color: var(--navy); box-shadow: var(--shadow-sm); }

/* AI before/after */
.ai-box { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 14px; font-size: 14px; color: var(--ink-2); line-height: 1.7; }
.ai-box.after { border-color: var(--mint-strong); background: #F6FFF9; color: var(--ink); }
.ai-box.after b { color: var(--navy); }
.ai-arrow { display: grid; place-items: center; padding: 8px 0; }
.ai-arrow .sp { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 700; color: var(--mint-deep); background: #E6FAEC; padding: 6px 14px; border-radius: 999px; }

/* templates chips */
.tpls { display: flex; flex-wrap: wrap; gap: 9px; }
.tpl { background: #fff; border: 1px solid var(--line); border-radius: 11px; padding: 10px 13px; font-size: 13px; font-weight: 700; color: var(--navy); display: flex; align-items: center; gap: 8px; }
.tpl .d { width: 9px; height: 9px; border-radius: 3px; background: var(--mint-strong); }
.tpl:nth-child(2) .d{ background: var(--blue) } .tpl:nth-child(3) .d{ background:#F59E0B } .tpl:nth-child(4) .d{ background:#A78BFA } .tpl:nth-child(5) .d{ background:#FB7185 }

/* mini calendar */
.cal { display: grid; grid-template-columns: repeat(7,1fr); gap: 6px; }
.cal .dh { text-align: center; font-size: 11px; font-weight: 700; color: var(--ink-3); padding-bottom: 4px; }
.cal .cell { aspect-ratio: 1; border-radius: 9px; background: #fff; border: 1px solid var(--line); display: grid; place-items: center; font-family: var(--mono); font-size: 12px; color: var(--ink-2); position: relative; }
.cal .cell.has { background: var(--navy); color: #fff; border-color: var(--navy); }
.cal .cell.has::after { content: ""; position: absolute; bottom: 5px; width: 5px; height: 5px; border-radius: 50%; background: var(--mint); }
.cal .cell.dim { opacity: .4; }

/* facebook connect mock */
.fb-connect { text-align: center; padding: 8px 0; }
.fb-logo { width: 64px; height: 64px; border-radius: 18px; background: #1877F2; display: grid; place-items: center; margin: 4px auto 16px; color: #fff; font-family: var(--mono); font-weight: 700; font-size: 36px; }
.fb-status { display: inline-flex; align-items: center; gap: 8px; background: #E6FAEC; color: var(--mint-deep); font-weight: 700; font-size: 13px; padding: 7px 15px; border-radius: 999px; margin-top: 4px; }
.fb-status .pulse { width: 9px; height: 9px; border-radius: 50%; background: var(--mint-deep); box-shadow: 0 0 0 0 rgba(34,197,94,.5); animation: pulse 2s infinite; }
@keyframes pulse { 70%{ box-shadow: 0 0 0 8px rgba(34,197,94,0) } 100%{ box-shadow: 0 0 0 0 rgba(34,197,94,0) } }

/* ---------- Testimonials ---------- */
.tcards { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.tcard { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 28px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.tcard .stars { color: #FBBF24; letter-spacing: 2px; font-size: 16px; margin-bottom: 14px; }
.tcard p { font-size: 16px; color: var(--ink); line-height: 1.65; flex: 1; }
.tcard .who { display: flex; align-items: center; gap: 12px; margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line); }
.tcard .who .pic { width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; font-weight: 700; color: #fff; font-size: 17px; flex: none; }
.tcard .who b { font-size: 16px; color: var(--navy); display: block; }
.tcard .who small { font-size: 13px; color: var(--ink-3); }

/* ---------- Pricing ---------- */
.plans { display: grid; grid-template-columns: repeat(2,minmax(0,360px)); gap: 22px; justify-content: center; align-items: stretch; }
.plan { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 34px 30px; position: relative; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.plan.best { background: var(--navy); color: #fff; box-shadow: var(--shadow-lg); border-color: var(--navy); transform: translateY(-8px); }
.plan .ptag { font-size: 14px; font-weight: 700; color: var(--ink-2); }
.plan.best .ptag { color: var(--mint); }
.plan .save { position: absolute; top: 24px; left: 28px; background: var(--mint); color: var(--navy); font-size: 12px; font-weight: 700; padding: 5px 12px; border-radius: 999px; }
.plan .price { display: flex; align-items: baseline; gap: 6px; margin: 14px 0 4px; }
.plan .price b { font-family: var(--mono); font-size: 52px; font-weight: 700; color: var(--navy); line-height: 1; }
.plan.best .price b { color: #fff; }
.plan .price span { font-size: 17px; color: var(--ink-2); font-weight: 500; }
.plan.best .price span { color: #B9BCDC; }
.plan .sub { font-size: 14px; color: var(--ink-3); margin-bottom: 22px; }
.plan.best .sub { color: #9FA2C8; }
.plan ul { list-style: none; display: flex; flex-direction: column; gap: 13px; margin-bottom: 26px; flex: 1; }
.plan li { display: flex; align-items: flex-start; gap: 11px; font-size: 15px; }
.plan li .ck { width: 22px; height: 22px; border-radius: 50%; background: #E6FAEC; flex: none; display: grid; place-items: center; margin-top: 1px; }
.plan.best li .ck { background: rgba(128,237,153,.18); }
.plan li .ck svg { width: 13px; height: 13px; color: var(--mint-deep); }
.plan.best li .ck svg { color: var(--mint); }
.plan li b { font-weight: 700; }
.plan .btn { width: 100%; }
.pnote { text-align: center; color: var(--ink-3); font-size: 13px; margin-top: 22px; }

/* ---------- FAQ ---------- */
.faq { max-width: 780px; margin: 0 auto; }
.qa { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); margin-bottom: 13px; overflow: hidden; transition: box-shadow .2s; }
.qa.open { box-shadow: var(--shadow-md); }
.qa-q { width: 100%; text-align: right; background: none; border: none; cursor: pointer; padding: 22px 24px; font-family: var(--font); font-size: 18px; font-weight: 700; color: var(--navy); display: flex; align-items: center; gap: 14px; }
.qa-q .pm { margin-inline-start: auto; width: 30px; height: 30px; border-radius: 9px; background: var(--page); display: grid; place-items: center; flex: none; transition: transform .25s, background .25s; }
.qa.open .qa-q .pm { background: var(--mint); transform: rotate(45deg); }
.qa-q .pm svg { width: 16px; height: 16px; color: var(--navy); }
.qa-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.qa-a div { padding: 0 24px 22px; color: var(--ink-2); font-size: 16px; line-height: 1.7; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--navy); border-radius: 32px; padding: 64px 56px; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(50% 120% at 50% 0%, rgba(128,237,153,.22), transparent 60%); }
.cta-band h2 { font-size: clamp(30px, 4vw, 46px); font-weight: 900; color: #fff; margin-bottom: 16px; position: relative; }
.cta-band p { font-size: 19px; color: #B9BCDC; margin-bottom: 30px; position: relative; }
.cta-band .btn { position: relative; }

/* ---------- Footer ---------- */
.footer { background: var(--navy-deep); color: #fff; padding: 64px 0 30px; }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1.1fr; gap: 44px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer .logo { color: #fff; margin-bottom: 14px; }
.footer .fdesc { color: #9FA2C8; font-size: 15px; max-width: 280px; }
.foot-col h4 { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 16px; letter-spacing: .04em; }
.foot-col a { display: block; color: #9FA2C8; font-size: 15px; margin-bottom: 11px; transition: color .15s; }
.foot-col a:hover { color: var(--mint); }
.foot-contact { display: flex; align-items: center; gap: 10px; color: #C7C9E4; font-size: 15px; margin-bottom: 12px; transition: color .15s; }
.foot-contact svg { width: 18px; height: 18px; color: var(--mint); flex: none; }
a.foot-contact:hover { color: var(--mint); }
.foot-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 24px; color: #9A9DC2; font-size: 14px; }
.foot-bottom .socials { display: flex; gap: 10px; }
.foot-bottom .socials a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.06); display: grid; place-items: center; transition: background .2s; }
.foot-bottom .socials a:hover { background: var(--mint); color: var(--navy); }
.foot-bottom .socials svg { width: 18px; height: 18px; }

/* ---------- Accessibility ---------- */
.skip { position: absolute; top: -100px; right: 18px; z-index: 200; background: var(--navy); color: #fff; font-weight: 700; font-size: 15px; padding: 13px 22px; border-radius: 0 0 12px 12px; transition: top .18s ease; }
.skip:focus { top: 0; }
a:focus-visible, button:focus-visible { outline: 3px solid var(--navy); outline-offset: 3px; border-radius: 6px; }
.btn-mint:focus-visible, .footer a:focus-visible, .section.dark a:focus-visible, .plan.best .btn:focus-visible { outline-color: var(--mint-deep); }
.footer a:focus-visible, .plan.best a:focus-visible { outline-color: var(--mint); }
.skip:focus-visible { outline-color: var(--mint); outline-offset: -6px; }

/* ---------- Lead modal ---------- */
.lead-modal { border: none; padding: 0; margin: auto; border-radius: 24px; max-width: 460px; width: calc(100% - 36px); max-height: calc(100vh - 40px); background: #fff; color: var(--ink); box-shadow: var(--shadow-lg); direction: rtl; overflow: auto; }
.lead-modal::backdrop { background: rgba(19,15,54,.55); backdrop-filter: blur(3px); }
.lead-in { padding: 34px 30px 30px; position: relative; }
.lead-x { position: absolute; top: 14px; left: 14px; width: 38px; height: 38px; border-radius: 11px; border: none; background: var(--page); color: var(--navy); cursor: pointer; display: grid; place-items: center; transition: background .15s; }
.lead-x:hover { background: var(--lavender); }
.lead-x svg { width: 18px; height: 18px; }
.lead-modal .ptag2 { display: inline-block; background: var(--lavender); color: var(--navy); font-size: 13px; font-weight: 700; padding: 5px 13px; border-radius: 999px; margin-bottom: 14px; }
.lead-modal h2 { font-size: 26px; font-weight: 900; color: var(--navy); margin-bottom: 8px; }
.lead-modal > .lead-in > p { font-size: 15px; color: var(--ink-2); margin-bottom: 22px; }
.lead-field { display: block; margin-bottom: 15px; }
.lead-field > span:first-child { display: block; font-size: 13px; font-weight: 700; color: var(--ink-2); margin-bottom: 6px; }
.lead-field input { width: 100%; height: 50px; border: 1.5px solid var(--line); border-radius: 12px; padding: 0 14px; font-family: var(--font); font-weight: 500; font-size: 16px; color: var(--ink); background: #fff; transition: border-color .15s, box-shadow .15s; }
.lead-field input::placeholder { color: var(--ink-3); font-weight: 400; }
.lead-field input:focus { outline: none; border-color: var(--mint-strong); box-shadow: 0 0 0 3px rgba(128,237,153,.35); }
.lead-field input[aria-invalid="true"] { border-color: #D93036; }
.lead-field input[aria-invalid="true"]:focus { box-shadow: 0 0 0 3px rgba(217,48,54,.2); }
.lead-err:empty { display: none; }
.lead-err:not(:empty) { display: block; font-size: 12px; font-weight: 700; color: #C0272D; margin-top: 6px; }
.lead-modal form .btn { width: 100%; margin-top: 8px; }
.lead-note { font-size: 12px; color: var(--ink-3); text-align: center; margin-top: 14px; }
.lead-ok { text-align: center; padding: 12px 0 4px; }
.lead-ok .ic { width: 66px; height: 66px; border-radius: 50%; background: #E2FBEA; display: grid; place-items: center; margin: 0 auto 18px; }
.lead-ok .ic svg { width: 32px; height: 32px; color: var(--mint-deep); }
.lead-ok h2 { margin-bottom: 10px; }
.lead-ok p { font-size: 16px; color: var(--ink-2); margin-bottom: 22px; }
@media (max-width: 560px){ .lead-in { padding: 30px 20px 24px; } .lead-modal h2 { font-size: 23px; } }

/* ---------- 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; }
@media (prefers-reduced-motion: reduce){ .reveal { opacity: 1 !important; transform: none !important; } }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-links.open { display: flex; position: absolute; top: 78px; right: 0; left: 0; flex-direction: column; background: #fff; padding: 18px 28px; gap: 16px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md); }
  .burger { display: grid; place-items: center; }
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { max-width: 460px; margin: 0 auto; width: 100%; }
  .benefits { grid-template-columns: repeat(2,1fr); }
  .step { grid-template-columns: 1fr; gap: 34px; }
  .step:nth-child(even) .step-text { order: 0; }
  .step-mock { max-width: 480px; }
  .tcards { grid-template-columns: 1fr; }
  .plans { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .plan.best { transform: none; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .benefits { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 560px) {
  .wrap { padding: 0 18px; }
  .section { padding: 64px 0; }
  .hero h1 { font-size: 38px; }
  .benefits { grid-template-columns: 1fr; }
  .cta-band { padding: 44px 24px; }
  .chip-1, .chip-2 { display: none; }
  .foot-grid { grid-template-columns: 1fr; }
  .foot-bottom { flex-direction: column; gap: 16px; }
  .ab-grid { grid-template-columns: 1fr !important; }
  .mkt-grid { grid-template-columns: repeat(2,1fr) !important; }
}

/* ---------- Anti-block deep dive (dark) ---------- */
.ab-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.ab-card { background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.10); border-radius: var(--r-md); padding: 26px 22px; transition: background .2s, border-color .2s; }
.ab-card:hover { background: rgba(255,255,255,.07); border-color: rgba(128,237,153,.35); }
.ab-card .big { font-family: var(--mono); font-size: 34px; font-weight: 700; color: var(--mint); line-height: 1; margin-bottom: 12px; display: block; direction: ltr; unicode-bidi: isolate; text-align: right; }
.ab-card h3 { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 7px; }
.ab-card p { font-size: 15px; color: #B9BCDC; }
.ab-note { margin-top: 30px; display: flex; align-items: center; justify-content: center; gap: 11px; color: #9FA2C8; font-size: 15px; }
.ab-note svg { width: 20px; height: 20px; color: var(--mint); flex: none; }

/* ---------- Marketplace ---------- */
.mkt-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.mkt-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 26px 20px; text-align: center; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s; }
.mkt-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.mkt-card .mi { width: 58px; height: 58px; border-radius: 16px; background: var(--lavender); display: grid; place-items: center; margin: 0 auto 15px; }
.mkt-card .mi svg { width: 28px; height: 28px; color: var(--navy); }
.mkt-card h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.mkt-card p { font-size: 14px; color: var(--ink-2); }
.soon { display: inline-flex; align-items: center; gap: 7px; background: var(--navy); color: var(--mint); font-size: 13px; font-weight: 700; padding: 7px 16px; border-radius: 999px; }

/* ---------- Integration band ---------- */
.integ { display: flex; align-items: center; gap: 26px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px 34px; box-shadow: var(--shadow-sm); }
.integ .ilogo { width: 62px; height: 62px; border-radius: 17px; background: var(--navy); color: #fff; display: grid; place-items: center; font-family: var(--mono); font-weight: 700; font-size: 26px; flex: none; }
.integ h3 { font-size: 21px; font-weight: 900; color: var(--navy); margin-bottom: 6px; }
.integ p { font-size: 16px; color: var(--ink-2); }
@media (max-width: 720px){ .integ { flex-direction: column; text-align: center; } }
