/* Landing page for wannabe-admin.com. Same brand as the portal: navy, the
   yellow shield, system fonts (the CSP is default-src 'self', and no webfont
   request means no visitor address handed to a font CDN). */

:root {
  --navy: #101726;
  --navy-2: #18233A;
  --navy-line: rgba(255, 255, 255, .09);
  --accent: #F2C811;
  --accent-strong: #D6AA00;
  --on-accent: #141C2E;
  --bg: #FFFFFF;
  --bg-alt: #F3F5F9;
  --fg: #131A26;
  --fg-soft: #3B4657;
  --fg-muted: #5A6579;
  --line: #DCE3EB;
  --on-navy: #FFFFFF;
  --on-navy-soft: #B8C3D5;
  --on-navy-muted: #8B98AD;
  --ok: #16A36F;
  --radius: 14px;
  --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font: 16px/1.6 var(--font); color: var(--fg); background: var(--bg); -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; height: auto; }
h1, h2, h3 { margin: 0; line-height: 1.12; letter-spacing: -.03em; }
p { margin: 0; }
a { color: inherit; }
.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.ico { width: 20px; height: 20px; flex: none; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.wrap { width: min(1180px, 100%); margin-inline: auto; padding-inline: 24px; }

.eyebrow { font-size: 12px; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; color: #1B5FA8; margin-bottom: 12px; }
.lead { font-size: 18px; color: var(--fg-soft); }

/* buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 40px; padding: 0 16px; border-radius: 10px; border: 1px solid transparent;
  font-weight: 650; font-size: 15px; text-decoration: none; white-space: nowrap;
  transition: background-color .15s, border-color .15s, transform .15s;
}
.btn:focus-visible { outline: 3px solid #7FB3F0; outline-offset: 2px; }
.btn-sm { min-height: 36px; padding: 0 14px; font-size: 14px; }
.btn-lg { min-height: 52px; padding: 0 22px; font-size: 16px; }
.btn-block { width: 100%; }
.btn-accent { background: var(--accent); color: var(--on-accent); }
.btn-accent:hover { background: #FFD83A; transform: translateY(-1px); }
.btn-ghost { color: var(--on-navy); border-color: rgba(255, 255, 255, .22); }
.btn-ghost:hover { background: rgba(255, 255, 255, .06); border-color: rgba(255, 255, 255, .4); }

/* nav */
.nav { position: sticky; top: 0; z-index: 10; background: rgba(16, 23, 38, .92); backdrop-filter: blur(10px); border-bottom: 1px solid var(--navy-line); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 64px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; letter-spacing: -.01em; text-decoration: none; }
.brand svg { width: 30px; height: 30px; }
.nav .brand { color: var(--on-navy); }
.nav-links { display: flex; align-items: center; gap: 22px; }
.nav-links a:not(.btn) { color: var(--on-navy-soft); text-decoration: none; font-size: 14px; font-weight: 550; }
.nav-links a:not(.btn):hover { color: var(--on-navy); }

/* hero */
.hero {
  position: relative; overflow: hidden; color: var(--on-navy); padding: 88px 0 0;
  background:
    radial-gradient(circle at 12% 0%, rgba(242, 200, 17, .16), transparent 32%),
    linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px),
    linear-gradient(180deg, var(--navy-2), var(--navy) 70%);
  background-size: auto, 32px 32px, 32px 32px, auto;
}
.hero::after { content: ""; position: absolute; inset: auto 0 0; height: 180px; background: var(--bg); }
.hero-copy { max-width: 900px; }
.hero .eyebrow { color: var(--accent); }
.hero h1 { font-size: clamp(40px, 6.2vw, 72px); letter-spacing: -.045em; }
.hero h1 span { color: var(--accent); }
.hero .lead { margin-top: 24px; max-width: 640px; color: var(--on-navy-soft); font-size: clamp(17px, 2vw, 19px); }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.hero-note { display: flex; align-items: center; gap: 8px; margin-top: 18px; font-size: 14px; color: var(--on-navy-muted); }
.hero-note .ico { color: var(--ok); width: 18px; height: 18px; }

/* screenshots */
.shot { margin: 0; overflow: hidden; background: #FFFFFF; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 24px 60px rgba(16, 24, 40, .14); }
.shot img { width: 100%; }
.shot-bar { display: flex; align-items: center; gap: 6px; height: 34px; padding: 0 14px; background: #F4F6F9; border-bottom: 1px solid var(--line); }
.shot-bar i { width: 10px; height: 10px; border-radius: 50%; background: #D3DAE3; }
.shot-bar span { margin-left: 10px; font-size: 12px; color: var(--fg-muted); }
.shot-hero { position: relative; z-index: 1; margin-top: 64px; box-shadow: 0 40px 100px rgba(3, 8, 20, .40); border-color: rgba(255, 255, 255, .14); }
.shot figcaption { padding: 16px 18px 18px; font-size: 14px; color: var(--fg-muted); border-top: 1px solid var(--line); }
.shot figcaption b { color: var(--fg); }

/* sections */
.section { padding: 96px 0; }
.section-alt { background: var(--bg-alt); }
.section h2 { font-size: clamp(30px, 4vw, 44px); max-width: 720px; }

.split { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: 64px; align-items: center; }
.steps { list-style: none; margin: 40px 0 0; padding: 0; display: grid; gap: 28px; }
.steps li { display: grid; grid-template-columns: 40px 1fr; gap: 16px; }
.step-n { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: var(--accent); color: var(--on-accent); font-weight: 750; }
.steps h3 { font-size: 20px; margin: 6px 0 6px; }
.steps p { color: var(--fg-soft); }
.tray { margin: 0; padding: 40px; border-radius: 20px; background: linear-gradient(145deg, var(--navy-2), var(--navy)); }
.tray img { margin-inline: auto; border-radius: 12px; box-shadow: 0 24px 60px rgba(0, 0, 0, .45); }
.tray figcaption { margin-top: 20px; text-align: center; color: var(--on-navy-soft); font-size: 14px; }

.features { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; margin-top: 44px; }
.features article { padding: 24px; background: #FFFFFF; border: 1px solid var(--line); border-radius: var(--radius); }
.features .ico { width: 38px; height: 38px; padding: 8px; border-radius: 10px; background: #FFF6CC; color: #7A5B00; }
.features h3 { margin-top: 16px; font-size: 17px; letter-spacing: -.02em; }
.features p { margin-top: 8px; font-size: 15px; color: var(--fg-soft); }

.gallery { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; margin-top: 44px; }

/* roadmap: a road with stops, cards alternating above and below */
.road-wrap { margin-top: 48px; }
.road { position: relative; list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); grid-template-rows: auto 60px auto; }
.road::before {
  content: ""; grid-column: 1 / -1; grid-row: 2; border-radius: 30px;
  background-color: #1B2438;
  background-image:
    repeating-linear-gradient(90deg, var(--accent) 0 26px, transparent 26px 48px),
    linear-gradient(90deg, rgba(22, 163, 111, .55), rgba(22, 163, 111, 0) 16.66%);
  background-size: 100% 4px, 100% 100%; background-position: center, 0 0; background-repeat: no-repeat;
  box-shadow: inset 0 3px 0 rgba(255, 255, 255, .10), inset 0 -3px 0 rgba(0, 0, 0, .25), 0 14px 30px rgba(16, 24, 40, .16);
  -webkit-mask-image: linear-gradient(90deg, #000 95%, transparent); mask-image: linear-gradient(90deg, #000 95%, transparent);
}
.stop { grid-row: 1 / 4; display: grid; grid-template-rows: subgrid; justify-items: center; }
.stop:nth-child(1) { grid-column: 1; }
.stop:nth-child(2) { grid-column: 2; }
.stop:nth-child(3) { grid-column: 3; }
.stop:nth-child(4) { grid-column: 4; }
.stop:nth-child(5) { grid-column: 5; }
.stop:nth-child(6) { grid-column: 6; }
.stop-dot { position: relative; z-index: 1; grid-row: 2; align-self: center; display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: #FFFFFF; color: var(--fg-soft); border: 3px solid #1B2438; box-shadow: 0 0 0 3px rgba(255, 255, 255, .9); }
.stop.done .stop-dot { background: var(--ok); color: #FFFFFF; }
.stop-dot::before { content: ""; position: absolute; left: calc(50% - 1px); height: 36px; border-left: 2px dashed #B9C4D2; }
.stop:nth-child(odd) .stop-dot::before { bottom: calc(100% + 3px); }
.stop:nth-child(even) .stop-dot::before { top: calc(100% + 3px); }

.stop-card { width: 158%; padding: 14px 16px; text-align: center; background: #FFFFFF; border: 1px solid var(--line); border-radius: 12px; box-shadow: 0 6px 18px rgba(16, 24, 40, .06); }
.stop:nth-child(odd) .stop-card { grid-row: 1; align-self: stretch; margin-bottom: 30px; }
.stop:nth-child(even) .stop-card { grid-row: 3; align-self: stretch; margin-top: 30px; }
.stop:first-child { justify-items: start; }
.stop:first-child .stop-dot { justify-self: center; }
.stop:last-child { justify-items: end; }
.stop:last-child .stop-dot { justify-self: center; }
.stop.done .stop-card { border-color: rgba(22, 163, 111, .45); }
.rm-tag { display: inline-block; padding: 2px 9px; border-radius: 999px; font-size: 12px; font-weight: 700; background: #FFF6CC; color: #7A5B00; }
.stop.done .rm-tag { background: #DDF5EA; color: #0E6B49; }
.stop-card h3 { margin-top: 8px; font-size: 16px; letter-spacing: -.02em; }
.stop-card p { margin-top: 4px; font-size: 14px; line-height: 1.45; color: var(--fg-soft); }

.demo-card {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 420px); gap: 48px; align-items: center;
  padding: clamp(28px, 5vw, 56px); border-radius: 24px; color: var(--on-navy);
  background: radial-gradient(circle at 90% 10%, rgba(242, 200, 17, .18), transparent 40%), linear-gradient(145deg, var(--navy-2), var(--navy));
}
.demo-card .eyebrow { color: var(--accent); }
.demo-card .lead { margin-top: 18px; color: var(--on-navy-soft); }
.checks { list-style: none; margin: 0 0 24px; padding: 0; display: grid; gap: 12px; }
.checks li { display: flex; gap: 10px; color: var(--on-navy); }
.checks .ico { color: var(--ok); margin-top: 3px; }
.checks .off, .checks .off .ico { color: var(--on-navy-muted); }
.fine { margin-top: 14px; font-size: 13px; color: var(--on-navy-muted); text-align: center; }

/* footer */
.footer {
  position: relative; overflow: hidden; color: var(--on-navy-soft); padding: 56px 0 0;
  background:
    radial-gradient(circle at 85% 0%, rgba(242, 200, 17, .12), transparent 38%),
    linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px),
    linear-gradient(180deg, var(--navy-2), var(--navy) 55%);
  background-size: auto, 32px 32px, 32px 32px, auto;
}
.footer::before { content: ""; position: absolute; inset: 0 0 auto; height: 1px; background: linear-gradient(90deg, transparent, rgba(242, 200, 17, .55), transparent); }
.footer a { text-decoration: none; }
.footer a:focus-visible { outline: 3px solid #7FB3F0; outline-offset: 3px; border-radius: 10px; }
.footer-top { display: flex; flex-direction: column; align-items: center; gap: 28px; text-align: center; }
.footer-about { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 12px 20px; }
.footer .brand { color: var(--on-navy); }
.footer .reset-pill { display: flex; align-items: center; gap: 8px; padding: 5px 12px 5px 10px; border-radius: 999px; font-size: 13px; color: var(--on-navy-soft); background: rgba(22, 163, 111, .10); border: 1px solid rgba(22, 163, 111, .28); }
.reset-pill i { position: relative; width: 8px; height: 8px; border-radius: 50%; background: var(--ok); }
.reset-pill i::after { content: ""; position: absolute; inset: 0; border-radius: 50%; background: var(--ok); animation: ping 2s ease-out infinite; }
@keyframes ping { from { transform: scale(1); opacity: .7; } to { transform: scale(2.8); opacity: 0; } }

.maker {
  display: inline-flex; align-items: center; gap: 12px; padding: 6px 14px 6px 6px; border-radius: 14px;
  color: var(--on-navy); border: 1px solid var(--navy-line); background: rgba(255, 255, 255, .04);
  transition: border-color .15s, background-color .15s, transform .15s;
}
.maker:hover { border-color: rgba(242, 200, 17, .45); background: rgba(255, 255, 255, .07); transform: translateY(-1px); }
.maker img { width: 44px; height: 44px; flex: none; padding: 2px; border-radius: 10px; background: #0C1020; }
.maker-text { display: grid; text-align: left; line-height: 1.25; }
.maker small { font-size: 12px; color: var(--on-navy-muted); }
.maker strong { font-size: 15px; font-weight: 650; letter-spacing: -.01em; }
.maker .ico { width: 16px; height: 16px; color: var(--on-navy-muted); transition: color .15s; }
.maker:hover .ico { color: var(--accent); }

.footer-bottom { margin-top: 40px; text-align: center; padding-top: 20px; border-top: 1px solid var(--navy-line); font-size: 13px; color: var(--on-navy-muted); }

.wordmark {
  margin: 8px 0 -.2em; text-align: center; white-space: nowrap; user-select: none;
  font-size: clamp(56px, 13.4vw, 190px); font-weight: 800; letter-spacing: -.055em; line-height: .9;
  background: linear-gradient(180deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, 0) 85%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* small pages: 404, resetting */
.plain { min-height: 100vh; display: grid; place-items: center; padding: 24px; color: var(--on-navy); background: linear-gradient(180deg, var(--navy-2), var(--navy)); text-align: center; }
.plain svg.logo { width: 56px; height: 56px; margin: 0 auto 24px; }
.plain h1 { font-size: clamp(28px, 5vw, 40px); }
.plain p { margin-top: 12px; color: var(--on-navy-soft); }
.plain .btn { margin-top: 28px; }

@media (max-width: 1020px) {
  .features { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery { grid-template-columns: 1fr; }
  .split, .demo-card { grid-template-columns: 1fr; gap: 40px; }
  /* the road turns vertical */
  .road { grid-template-columns: 60px minmax(0, 1fr); grid-template-rows: none; row-gap: 18px; }
  .road::before { position: absolute; grid-row: auto; grid-column: auto; left: 0; top: 0; bottom: 0; width: 60px; background-image: repeating-linear-gradient(180deg, var(--accent) 0 22px, transparent 22px 40px), linear-gradient(180deg, rgba(22, 163, 111, .55), rgba(22, 163, 111, 0) 22%); background-size: 4px 100%, 100% 100%; -webkit-mask-image: linear-gradient(180deg, #000 90%, transparent); mask-image: linear-gradient(180deg, #000 90%, transparent); }
  .stop:nth-child(n) { grid-row: auto; grid-column: 1 / -1; grid-template-rows: none; grid-template-columns: subgrid; justify-items: stretch; align-items: center; }
  .stop-dot, .stop:first-child .stop-dot, .stop:last-child .stop-dot { grid-row: 1; grid-column: 1; justify-self: center; }
  .stop-dot::before { display: none; }
  .stop:nth-child(n) .stop-card { grid-row: 1; grid-column: 2; width: auto; margin: 0 0 0 14px; text-align: left; align-self: center; }
}
@media (max-width: 620px) {
  .nav-links a:not(.btn) { display: none; }
  .hero { padding-top: 56px; }
  .hero::after { height: 80px; }
  .shot-hero { margin-top: 44px; }
  .cta-row .btn { width: 100%; }
  .section { padding: 64px 0; }
  .features { grid-template-columns: 1fr; }
  .tray { padding: 20px; }
  .footer { padding-top: 44px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn, .maker, .maker .ico { transition: none; }
  .reset-pill i::after { animation: none; }
}
