/* webukit.com marketing site.
   Separate from portal.css on purpose: the portal is an app, this is a
   landing site, and they should be free to change independently. */

:root {
  --purple: #7C3AED;
  --purple-dark: #5B21B6;
  --purple-deep: #1E1040;
  --purple-pale: #F5F3FF;
  --cyan: #22D3EE;
  --ink: #0F172A;
  --body: #475569;
  --muted: #94A3B8;
  --line: #E7E5F5;
  --bg: #FFFFFF;
  --soft: #FAF9FF;
  --radius: 16px;
  --wrap: 1140px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto,
          "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; font-family: var(--font); color: var(--body); background: var(--bg);
  font-size: 17px; line-height: 1.65; -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--purple); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { color: var(--ink); line-height: 1.15; margin: 0 0 .5em; letter-spacing: -.02em; }
h1 { font-size: clamp(34px, 5.2vw, 60px); font-weight: 800; }
h2 { font-size: clamp(26px, 3.4vw, 38px); font-weight: 800; }
h3 { font-size: 19px; font-weight: 700; }
p { margin: 0 0 1em; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.sec { padding: 74px 24px; }
.sec-h { text-align: center; }
.sec-sub {
  text-align: center; max-width: 680px; margin: 0 auto 44px; color: var(--body);
  font-size: 18px;
}

/* ── buttons ─────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: 999px; font-weight: 700; font-size: 15px; padding: 11px 22px;
  border: 1.5px solid transparent; cursor: pointer; transition: transform .12s ease,
  box-shadow .12s ease, background .12s ease; text-decoration: none; white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-lg { font-size: 16.5px; padding: 15px 30px; }
.btn-solid {
  background: linear-gradient(135deg, var(--purple) 0%, #9333EA 100%); color: #fff;
  box-shadow: 0 6px 20px rgba(124, 58, 237, .3);
}
.btn-solid:hover { box-shadow: 0 10px 28px rgba(124, 58, 237, .4); }
.btn-ghost { background: #fff; color: var(--purple); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--purple); }
.btn-ghost-light {
  background: rgba(255, 255, 255, .1); color: #fff;
  border-color: rgba(255, 255, 255, .3);
}
.full { width: 100%; }

/* ── nav ─────────────────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 40; display: flex; align-items: center;
  gap: 28px; padding: 14px 24px; background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(180%) blur(14px); border-bottom: 1px solid var(--line);
}
.nav-logo { display: flex; align-items: center; gap: 9px; }
.nav-logo img { height: 30px; width: 30px; object-fit: contain; }
.nav-logo span {
  font-weight: 800; font-size: 20px; color: var(--ink); letter-spacing: -.03em;
}
.nav-logo:hover { text-decoration: none; }
.nav-links { display: flex; gap: 22px; margin-left: 8px; flex: 1; flex-wrap: wrap; }
.nav-links a { color: var(--ink); font-weight: 600; font-size: 14.5px; }
.nav-links a:hover, .nav-links a.on { color: var(--purple); text-decoration: none; }
.nav-cta { display: flex; gap: 10px; align-items: center; }
.nav-burger { display: none; background: none; border: 0; padding: 8px; cursor: pointer; }
.nav-burger span {
  display: block; width: 22px; height: 2px; background: var(--ink); margin: 4px 0;
  border-radius: 2px;
}

/* ── hero ────────────────────────────────────────────────────────────── */
.hero {
  background:
    radial-gradient(900px 500px at 15% -10%, rgba(124, 58, 237, .16), transparent 60%),
    radial-gradient(700px 420px at 88% 8%, rgba(34, 211, 238, .14), transparent 60%),
    var(--soft);
  padding: 84px 24px 74px; text-align: center; border-bottom: 1px solid var(--line);
}
.hero-in { max-width: 900px; }
.pill {
  display: inline-block; background: #fff; border: 1px solid var(--line);
  color: var(--purple-dark); font-weight: 700; font-size: 13px; padding: 7px 16px;
  border-radius: 999px; margin-bottom: 26px; box-shadow: 0 2px 10px rgba(30, 16, 64, .05);
}
.grad {
  background: linear-gradient(120deg, var(--purple) 0%, #C026D3 50%, var(--cyan) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-sub { font-size: 19.5px; max-width: 680px; margin: 20px auto 30px; }
.hero-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hero-fine { margin-top: 20px; font-size: 14.5px; color: var(--muted); }
.hero-fine strong { color: var(--purple-dark); }
.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 52px;
  padding-top: 34px; border-top: 1px solid var(--line);
}
.hero-stats b { display: block; font-size: 24px; font-weight: 800; color: var(--ink); }
.hero-stats span { font-size: 13.5px; color: var(--muted); }

.sub-hero {
  background:
    radial-gradient(800px 420px at 12% -20%, rgba(124, 58, 237, .14), transparent 60%),
    var(--soft);
  padding: 54px 24px 60px; border-bottom: 1px solid var(--line);
}
.sub-hero .hero-sub { margin-left: 0; margin-right: 0; }
.sub-hero .hero-cta { justify-content: flex-start; }
.crumbs { font-size: 13.5px; color: var(--muted); margin-bottom: 14px; }
.crumbs span { margin: 0 6px; }

/* ── features ────────────────────────────────────────────────────────── */
.feats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 22px;
}
.feat {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px; transition: box-shadow .15s ease, transform .15s ease;
}
.feat:hover { box-shadow: 0 10px 30px rgba(30, 16, 64, .07); transform: translateY(-2px); }
.feat-ic {
  width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center;
  background: var(--purple-pale); color: var(--purple-dark); font-weight: 800;
  font-size: 14px; margin-bottom: 14px;
}
.feat p { margin: 0; font-size: 15.5px; }

/* ── comparison ──────────────────────────────────────────────────────── */
.why { background: var(--soft); padding: 74px 0; border-top: 1px solid var(--line);
       border-bottom: 1px solid var(--line); }
.cmp { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.cmp-col { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; }
.good-col { border-color: var(--purple); box-shadow: 0 10px 34px rgba(124, 58, 237, .13); }
.cmp ul { list-style: none; padding: 0; margin: 0; }
.cmp li { position: relative; padding-left: 28px; margin-bottom: 12px; font-size: 15.5px; }
.cmp li::before { position: absolute; left: 0; top: -1px; font-weight: 800; }
.bad li::before { content: "\00d7"; color: #DC2626; font-size: 19px; }
.good li::before { content: "\2713"; color: #16A34A; }

/* ── modules + chips ─────────────────────────────────────────────────── */
.mods { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
.mod {
  display: block; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 24px; color: inherit;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.mod:hover { text-decoration: none; border-color: var(--purple); box-shadow: 0 10px 28px rgba(30, 16, 64, .07); }
.mod p { font-size: 15px; margin-bottom: 12px; }
.mod-go { color: var(--purple); font-weight: 700; font-size: 14px; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.chip {
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 9px 18px; font-weight: 600; font-size: 14.5px; color: var(--ink);
}
.chip:hover { text-decoration: none; border-color: var(--purple); color: var(--purple); }

/* ── pains / steps ───────────────────────────────────────────────────── */
.pain-wrap { max-width: 720px; margin: 0 auto; }
.pains { list-style: none; padding: 0; margin: 0; }
.pains li {
  background: #fff; border: 1px solid var(--line); border-left: 3px solid #F43F5E;
  border-radius: 10px; padding: 15px 18px; margin-bottom: 12px; font-size: 16px;
  color: var(--ink); font-weight: 600;
}
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.step b {
  display: grid; place-items: center; width: 32px; height: 32px; border-radius: 50%;
  background: var(--purple); color: #fff; font-size: 14px; margin-bottom: 12px;
}
.step p { font-size: 15px; margin: 0; }

/* ── band ────────────────────────────────────────────────────────────── */
.band {
  background: linear-gradient(140deg, var(--purple-deep) 0%, #2D1B69 40%,
              var(--purple-dark) 100%);
  padding: 72px 24px; text-align: center; color: #fff;
}
.band h2 { color: #fff; }
.band p { color: rgba(255, 255, 255, .75); font-size: 18px; }
.band-in { max-width: 720px; }
.band-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 24px; }
.band-fine { margin-top: 18px; font-size: 14px; color: rgba(255, 255, 255, .55); }

/* ── faq ─────────────────────────────────────────────────────────────── */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq {
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  padding: 4px 20px; margin-bottom: 10px;
}
.faq summary {
  cursor: pointer; font-weight: 700; color: var(--ink); padding: 15px 0;
  list-style: none; font-size: 16.5px; display: flex; justify-content: space-between;
  align-items: center; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--purple); font-size: 22px; font-weight: 700; }
.faq[open] summary::after { content: "\2013"; }
.faq p { padding: 0 0 16px; margin: 0; font-size: 15.5px; }

/* ── pricing plan ────────────────────────────────────────────────────── */
.plan {
  display: grid; grid-template-columns: 380px 1fr; gap: 0; max-width: 980px;
  margin: 0 auto; border: 1px solid var(--line); border-radius: 22px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(30, 16, 64, .09);
}
.plan-head { background: var(--soft); padding: 38px 32px; border-right: 1px solid var(--line); }
.plan-tag {
  display: inline-block; background: var(--purple-pale); color: var(--purple-dark);
  font-weight: 700; font-size: 12.5px; padding: 5px 12px; border-radius: 999px;
}
.plan-price { margin: 18px 0 4px; color: var(--ink); font-weight: 800; font-size: 62px; line-height: 1; }
.plan-price .cur { font-size: 34px; vertical-align: super; }
.plan-price small { font-size: 17px; font-weight: 600; color: var(--muted); }
.plan-eq { font-size: 15px; color: var(--body); margin-bottom: 22px; }
.plan-fine { font-size: 13px; color: var(--muted); margin: 14px 0 0; }
.plan-body { padding: 38px 32px; background: #fff; }
.plan-body h3 { margin-top: 0; }
.plan-body h3 + ul { margin-bottom: 26px; }
.incl { list-style: none; padding: 0; margin: 0; }
.incl li { position: relative; padding-left: 26px; margin-bottom: 10px; font-size: 15.5px; }
.incl li::before { content: "\2713"; position: absolute; left: 0; color: #16A34A; font-weight: 800; }

/* ── webicard ────────────────────────────────────────────────────────── */
.webicard {
  background:
    radial-gradient(700px 400px at 80% 10%, rgba(34, 211, 238, .18), transparent 60%),
    linear-gradient(140deg, var(--purple-deep) 0%, #2D1B69 45%, var(--purple-dark) 100%);
  color: rgba(255, 255, 255, .78); padding: 76px 24px 68px;
}
.webicard h2, .webicard h3 { color: #fff; }
.wc-in { display: grid; grid-template-columns: 1.15fr .85fr; gap: 52px; align-items: center; }
.wc-lede { font-size: 17.5px; margin-bottom: 26px; }
.wc-fine { font-size: 14px; color: rgba(255, 255, 255, .5); margin: 18px 0 0; }
.pill-dark {
  background: rgba(255, 255, 255, .1); border-color: rgba(255, 255, 255, .18);
  color: #fff; box-shadow: none;
}
.wc-pts {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px; margin-top: 54px; padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}
.wc-pt h3 { font-size: 16.5px; margin-bottom: 6px; }
.wc-pt p { font-size: 15px; margin: 0; color: rgba(255, 255, 255, .65); }

/* the fake wallet pass */
.wc-card { display: grid; place-items: center; }
.wc-pass {
  width: 100%; max-width: 320px; border-radius: 18px; padding: 20px;
  background: linear-gradient(155deg, #7C3AED 0%, #C026D3 55%, #F59E0B 130%);
  box-shadow: 0 26px 60px rgba(0, 0, 0, .4); color: #fff;
  transform: rotate(-3deg);
}
.wc-pass-top { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.wc-logo {
  width: 46px; height: 46px; border-radius: 12px; background: rgba(255, 255, 255, .22);
  display: grid; place-items: center; font-size: 9px; font-weight: 800;
  line-height: 1.1; text-align: center; letter-spacing: .04em;
}
.wc-brand { font-weight: 800; font-size: 17px; }
.wc-stamps { display: grid; grid-template-columns: repeat(9, 1fr); gap: 6px; margin-bottom: 14px; }
.wc-stamps i {
  aspect-ratio: 1; border-radius: 50%; border: 1.5px dashed rgba(255, 255, 255, .45);
  display: block;
}
.wc-stamps i.on { background: #fff; border-style: solid; border-color: #fff; }
.wc-meta {
  display: flex; justify-content: space-between; font-size: 12.5px;
  font-weight: 700; color: rgba(255, 255, 255, .85); margin-bottom: 16px;
}
/* Suggestion of a QR block rather than a scannable code: this is decoration,
   and a real code here would invite somebody to scan a dead link. */
.wc-qr {
  height: 70px; width: 70px; margin: 0 auto; border-radius: 8px; padding: 6px;
  background: #fff;
  background-image:
    linear-gradient(#111 0 0), linear-gradient(#111 0 0), linear-gradient(#111 0 0),
    repeating-linear-gradient(90deg, #111 0 5px, #fff 5px 10px),
    repeating-linear-gradient(0deg, #111 0 5px, #fff 5px 10px);
  background-repeat: no-repeat;
  background-size: 18px 18px, 18px 18px, 18px 18px, 26px 10px, 10px 26px;
  background-position: 6px 6px, calc(100% - 6px) 6px, 6px calc(100% - 6px),
                       calc(100% - 8px) calc(100% - 10px), 30px calc(100% - 8px);
}

/* app store badges */
.badges { display: flex; gap: 12px; flex-wrap: wrap; }
.badge {
  display: inline-flex; align-items: center; gap: 10px; padding: 9px 16px;
  border-radius: 12px; background: #000; color: #fff;
  border: 1px solid rgba(255, 255, 255, .22); min-width: 168px;
}
.badge:hover { text-decoration: none; border-color: rgba(255, 255, 255, .5); }
.badge span { display: flex; flex-direction: column; line-height: 1.15; }
.badge small { font-size: 10px; opacity: .75; }
.badge b { font-size: 15px; font-weight: 700; }
.badges.light .badge { background: #fff; color: var(--ink); border-color: var(--line); }

/* compact strip used on inner pages */
.wc-strip {
  background: linear-gradient(140deg, var(--purple-deep) 0%, var(--purple-dark) 100%);
  color: rgba(255, 255, 255, .75); padding: 54px 24px;
}
.wc-strip h2 { color: #fff; font-size: clamp(23px, 2.8vw, 30px); margin-bottom: 10px; }
.wc-strip p { font-size: 16px; max-width: 620px; }
.wc-strip-in {
  display: grid; grid-template-columns: 1.4fr auto; gap: 36px; align-items: center;
}
.wc-strip .btn { margin-top: 6px; }

/* ── footer ──────────────────────────────────────────────────────────── */
.foot { background: var(--purple-deep); color: rgba(255, 255, 255, .62); padding: 60px 24px 28px; }
.foot-grid {
  max-width: var(--wrap); margin: 0 auto; display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 32px;
}
.foot-mark { display: flex; align-items: center; gap: 9px; margin-bottom: 14px; }
.foot-mark img { height: 28px; width: 28px; object-fit: contain; }
.foot-mark span { font-weight: 800; font-size: 19px; color: #fff; letter-spacing: -.03em; }
.foot-blurb { font-size: 14.5px; max-width: 300px; }
.foot h4 { color: #fff; font-size: 13px; text-transform: uppercase; letter-spacing: .07em; margin-bottom: 14px; }
.foot ul { list-style: none; padding: 0; margin: 0; }
.foot li { margin-bottom: 9px; }
.foot a { color: rgba(255, 255, 255, .62); font-size: 14.5px; }
.foot a:hover { color: #fff; }
.foot-base {
  max-width: var(--wrap); margin: 44px auto 0; padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .1); display: flex;
  justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13px;
  color: rgba(255, 255, 255, .4);
}

/* ── responsive ──────────────────────────────────────────────────────── */
@media (max-width: 1040px) {
  .foot-grid { grid-template-columns: 1fr 1fr 1fr; }
}
@media (max-width: 940px) {
  .plan { grid-template-columns: 1fr; }
  .plan-head { border-right: 0; border-bottom: 1px solid var(--line); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .wc-in { grid-template-columns: 1fr; gap: 40px; }
  .wc-card { order: -1; }
  .wc-pass { transform: none; }
  .wc-strip-in { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 780px) {
  .nav { flex-wrap: wrap; gap: 12px; }
  .nav-burger { display: block; order: 3; margin-left: auto; }
  .nav-cta { order: 2; margin-left: auto; }
  .nav-links {
    display: none; order: 4; width: 100%; flex-direction: column; gap: 2px;
    padding-top: 8px; border-top: 1px solid var(--line);
  }
  .nav.open .nav-links { display: flex; }
  .nav-links a { padding: 9px 0; }
  .sec { padding: 54px 20px; }
  .hero { padding: 60px 20px 54px; }
}
@media (max-width: 520px) {
  body { font-size: 16px; }
  .foot-grid { grid-template-columns: 1fr; }
  .hero-cta .btn, .band-cta .btn { width: 100%; }
}
