/* ── Webukit public site (about + support) ──────────────────────────────────
   Shared styles for the marketing/support pages. Matches the portal brand
   (Plus Jakarta Sans, purple #7C3AED + magenta #EC4899 + teal, deep #1E1040). */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --purple: #7C3AED;
  --purple-light: #A855F7;
  --purple-pale: #EDE9FE;
  --purple-dark: #5B21B6;
  --purple-deep: #1E1040;
  --magenta: #EC4899;
  --teal: #06B6D4;
  --teal-text: #0891B2;
  --yellow: #EAB308;
  --ink: #1B1330;
  --text: #33313d;
  --muted: #6B7280;
  --line: #ECE9F5;
  --bg: #FAF9FF;
  --card: #FFFFFF;
  --radius: 14px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgb(20 10 40 / .06), 0 1px 2px -1px rgb(20 10 40 / .04);
  --shadow: 0 12px 30px -12px rgb(60 30 120 / .18);
  --shadow-lg: 0 30px 60px -20px rgb(60 30 120 / .28);
  --grad: linear-gradient(135deg, #7C3AED 0%, #EC4899 100%);
  --grad-brand: linear-gradient(120deg, #7C3AED 0%, #EC4899 42%, #FB923C 74%, #A3E635 100%);
  --hero: linear-gradient(150deg, #150C33 0%, #241259 34%, #3F1C86 62%, #16233F 100%);
  --maxw: 1120px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: var(--purple);
}
.grad-text {
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ── Header ─────────────────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: flex; align-items: center; }
.brand img { height: 30px; width: auto; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a.link { font-size: 15px; font-weight: 600; color: #4a4557; transition: color .15s; }
.nav a.link:hover { color: var(--purple); }
.nav a.link.active { color: var(--purple); }

/* ── Buttons ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font: inherit; font-weight: 700; font-size: 15px; cursor: pointer;
  padding: 12px 22px; border-radius: 999px; border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .15s;
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; }
.btn-primary { background: var(--purple); color: #fff; box-shadow: 0 8px 22px -8px rgba(124,58,237,.6); }
.btn-primary:hover { background: var(--purple-dark); transform: translateY(-2px); box-shadow: 0 14px 30px -10px rgba(124,58,237,.6); }
.btn-grad { background: var(--grad); color: #fff; box-shadow: 0 10px 26px -8px rgba(124,58,237,.55); }
.btn-grad:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -10px rgba(236,72,153,.5); filter: brightness(1.04); }
.btn-ghost { background: #fff; color: var(--purple); border-color: var(--line); box-shadow: var(--shadow-sm); }
.btn-ghost:hover { border-color: var(--purple); transform: translateY(-2px); }
.btn-light { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.28); }
.btn-light:hover { background: rgba(255,255,255,.22); transform: translateY(-2px); }
.btn-lg { padding: 15px 28px; font-size: 16px; }
.btn-block { width: 100%; }

/* ── Hero ───────────────────────────────────────────────────────────────── */
.hero { position: relative; overflow: hidden; background: var(--hero); color: #fff; }
.hero::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(60% 50% at 50% 0%, rgba(168,85,247,.35), transparent 70%);
  pointer-events: none;
}
.blob { position: absolute; border-radius: 50%; filter: blur(10px); opacity: .8; pointer-events: none; }
.blob.b1 { width: 520px; height: 520px; background: radial-gradient(circle, rgba(124,58,237,.5), transparent 70%); top: -180px; right: -140px; animation: drift1 9s ease-in-out infinite alternate; }
.blob.b2 { width: 420px; height: 420px; background: radial-gradient(circle, rgba(236,72,153,.4), transparent 70%); bottom: -160px; left: -120px; animation: drift2 11s ease-in-out infinite alternate; }
.blob.b3 { width: 320px; height: 320px; background: radial-gradient(circle, rgba(6,182,212,.32), transparent 70%); top: 40%; left: 44%; animation: drift3 13s ease-in-out infinite alternate; }
@keyframes drift1 { from { transform: translate(0,0); } to { transform: translate(-34px,32px); } }
@keyframes drift2 { from { transform: translate(0,0); } to { transform: translate(42px,-22px); } }
@keyframes drift3 { from { transform: translate(0,0); } to { transform: translate(-24px,40px); } }
.hero-inner { position: relative; z-index: 2; padding: 96px 0 104px; text-align: center; }
.hero .pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px; padding: 7px 16px; font-size: 12.5px; font-weight: 700;
  color: rgba(255,255,255,.9); backdrop-filter: blur(8px); margin-bottom: 26px;
}
.pill .dot { width: 7px; height: 7px; border-radius: 50%; background: #34D399; box-shadow: 0 0 0 0 rgba(52,211,153,.6); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }
.hero h1 { font-size: clamp(34px, 5.4vw, 60px); font-weight: 800; line-height: 1.08; letter-spacing: -.02em; margin-bottom: 20px; }
.hero h1 .accent { background: linear-gradient(120deg,#C4B5FD,#F9A8D4 55%,#FDBA74); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p.lead { font-size: clamp(16px, 2vw, 20px); color: rgba(255,255,255,.72); max-width: 620px; margin: 0 auto 34px; }
.hero .cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Sections ───────────────────────────────────────────────────────────── */
section { padding: 84px 0; }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 52px; }
.section-head h2 { font-size: clamp(26px, 3.6vw, 40px); font-weight: 800; color: var(--ink); letter-spacing: -.02em; line-height: 1.14; margin: 14px 0 14px; }
.section-head p { font-size: 17px; color: var(--muted); }

/* feature grid */
.grid { display: grid; gap: 20px; }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.feature {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 28px; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s, border-color .2s;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #E3DcF7; }
.ficon {
  width: 50px; height: 50px; border-radius: 13px; display: grid; place-items: center;
  color: #fff; margin-bottom: 18px;
}
.ficon svg { width: 24px; height: 24px; }
.ficon.p { background: linear-gradient(135deg,#7C3AED,#A855F7); }
.ficon.m { background: linear-gradient(135deg,#EC4899,#F472B6); }
.ficon.t { background: linear-gradient(135deg,#06B6D4,#22D3EE); }
.ficon.y { background: linear-gradient(135deg,#F59E0B,#EAB308); }
.ficon.g { background: linear-gradient(135deg,#10B981,#34D399); }
.ficon.v { background: linear-gradient(135deg,#6366F1,#818CF8); }
.feature h3 { font-size: 18.5px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.feature p { font-size: 14.5px; color: var(--muted); }

/* steps */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; counter-reset: step; }
.step { position: relative; padding: 26px; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.step .num { width: 36px; height: 36px; border-radius: 50%; background: var(--grad); color: #fff; font-weight: 800; display: grid; place-items: center; margin-bottom: 14px; }
.step h3 { font-size: 17px; color: var(--ink); margin-bottom: 6px; }
.step p { font-size: 14px; color: var(--muted); }

/* alt band */
.band { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.band-flex { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: center; }
.band-flex .txt h2 { font-size: clamp(24px,3.2vw,34px); font-weight: 800; color: var(--ink); letter-spacing: -.02em; margin-bottom: 14px; }
.band-flex .txt p { font-size: 16px; color: var(--muted); margin-bottom: 12px; }
.checklist { list-style: none; margin-top: 10px; }
.checklist li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; font-size: 15px; color: var(--text); }
.checklist li svg { width: 20px; height: 20px; flex: none; color: var(--purple); margin-top: 1px; }
.mock { background: var(--hero); border-radius: 24px; padding: 40px; color: #fff; box-shadow: var(--shadow-lg); position: relative; overflow: hidden; }
.mock .mrow { display: flex; align-items: center; gap: 12px; padding: 14px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-radius: 14px; margin-bottom: 12px; backdrop-filter: blur(6px); }
.mock .mrow:last-child { margin-bottom: 0; }
.mdot { width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; flex: none; }
.mock .mrow b { display: block; font-size: 14.5px; }
.mock .mrow span { font-size: 12.5px; color: rgba(255,255,255,.6); }

/* CTA band */
.cta { background: var(--grad); color: #fff; border-radius: 28px; padding: 56px 40px; text-align: center; box-shadow: var(--shadow-lg); position: relative; overflow: hidden; }
.cta h2 { font-size: clamp(26px,3.6vw,38px); font-weight: 800; letter-spacing: -.02em; margin-bottom: 12px; }
.cta p { font-size: 17px; color: rgba(255,255,255,.86); max-width: 560px; margin: 0 auto 26px; }

/* ── Support: quick contact + FAQ + form ────────────────────────────────── */
.help-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.help-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px; box-shadow: var(--shadow-sm); }
.help-card .ficon { margin-bottom: 14px; }
.help-card h3 { font-size: 17px; color: var(--ink); margin-bottom: 6px; }
.help-card p { font-size: 14px; color: var(--muted); margin-bottom: 12px; }
.help-card a.small { font-weight: 700; color: var(--purple); font-size: 14.5px; }

.faq { max-width: 820px; margin: 0 auto; }
.faq details { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); margin-bottom: 12px; overflow: hidden; }
.faq summary { list-style: none; cursor: pointer; padding: 20px 22px; font-weight: 700; font-size: 16px; color: var(--ink); display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .chev { width: 20px; height: 20px; flex: none; color: var(--purple); transition: transform .2s; }
.faq details[open] summary .chev { transform: rotate(180deg); }
.faq .answer { padding: 0 22px 20px; color: var(--muted); font-size: 15px; }

.form-wrap { max-width: 720px; margin: 0 auto; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 34px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; font-weight: 700; color: var(--ink); margin-bottom: 7px; }
.field .req { color: var(--magenta); }
.field input, .field textarea {
  width: 100%; font: inherit; font-size: 15px; color: var(--ink);
  padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 11px; background: #FBFAFF;
  transition: border-color .15s, box-shadow .15s;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--purple); box-shadow: 0 0 0 4px rgba(124,58,237,.12); background: #fff; }
.form-note { font-size: 13px; color: var(--muted); margin-top: 4px; text-align: center; }
.form-note a { color: var(--purple); font-weight: 600; }

/* ── Footer ─────────────────────────────────────────────────────────────── */
.site-footer { background: var(--purple-deep); color: rgba(255,255,255,.7); padding: 56px 0 28px; }
.foot-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,.1); }
.site-footer .fbrand img { height: 30px; filter: brightness(0) invert(1); margin-bottom: 16px; }
.site-footer .fbrand p { font-size: 14px; color: rgba(255,255,255,.55); max-width: 320px; }
.fcol h4 { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 14px; font-weight: 800; }
.fcol a { display: block; font-size: 14.5px; color: rgba(255,255,255,.72); margin-bottom: 10px; transition: color .15s; }
.fcol a:hover { color: #fff; }
.foot-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 24px; font-size: 13px; color: rgba(255,255,255,.5); flex-wrap: wrap; }

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .grid.cols-3, .steps, .help-grid { grid-template-columns: 1fr 1fr; }
  .band-flex { grid-template-columns: 1fr; }
  .foot-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav { gap: 14px; }
  .nav a.link { display: none; }
  .hero-inner { padding: 72px 0 80px; }
  section { padding: 60px 0; }
  .grid.cols-3, .grid.cols-2, .steps, .help-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-wrap { padding: 24px; }
  .cta { padding: 40px 24px; }
  .foot-top { grid-template-columns: 1fr; gap: 28px; }
}
