:root {
  color-scheme: light;
  --ink: #111827;
  --muted: #5f6b7a;
  --line: #e6e9ef;
  --paper: #ffffff;
  --soft: #f7f8fb;
  --purple: #5b21b6;
  --cyan: #06b6d4;
  --mint: #a7f3d0;
  --radius: 28px;
  --shadow: 0 24px 80px rgba(17, 24, 39, 0.10);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 15% 10%, rgba(91, 33, 182, 0.16), transparent 34rem),
    radial-gradient(circle at 85% 20%, rgba(6, 182, 212, 0.18), transparent 30rem),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  color: var(--ink);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(17, 24, 39, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 24, 39, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 70%);
}

a {
  color: inherit;
  text-decoration-color: rgba(91, 33, 182, 0.4);
  text-underline-offset: 0.2em;
}

a:hover {
  text-decoration-color: var(--purple);
}

.wrap {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  background: var(--ink);
  color: white;
  padding: 10px 14px;
  border-radius: 999px;
  z-index: 10;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(230, 233, 239, 0.8);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--ink), var(--purple) 54%, var(--cyan));
  color: white;
  box-shadow: 0 12px 30px rgba(91, 33, 182, 0.18);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links a {
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 999px;
}

.nav-links a:hover {
  background: rgba(91, 33, 182, 0.08);
  color: var(--ink);
}

.hero {
  padding: 92px 0 48px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 42px;
  align-items: center;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 12px;
  border: 1px solid rgba(91, 33, 182, 0.14);
  background: rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  color: #4c1d95;
  font-size: 0.92rem;
  font-weight: 700;
}

.kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 0 6px rgba(6, 182, 212, 0.16);
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

h1 {
  font-size: clamp(3.4rem, 9vw, 6.8rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

h3 {
  font-size: 1.25rem;
}

.lede {
  max-width: 640px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.25rem);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-weight: 750;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.16);
}

.button.secondary {
  background: white;
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: none;
}

.hero-card {
  position: relative;
  border: 1px solid rgba(230, 233, 239, 0.92);
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(20px);
  border-radius: 36px;
  box-shadow: var(--shadow);
  padding: 24px;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -120px -100px auto auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(167, 243, 208, 0.9), rgba(6, 182, 212, 0));
}

.app-panel {
  position: relative;
  border-radius: 28px;
  padding: 24px;
  background: linear-gradient(180deg, #111827 0%, #22133f 100%);
  color: white;
  min-height: 440px;
  overflow: hidden;
}

.app-panel::after {
  content: "";
  position: absolute;
  left: -28px;
  bottom: -48px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(6, 182, 212, 0.22);
}

.logo-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.logo-lockup img {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.logo-lockup strong {
  display: block;
  font-size: 1.5rem;
  letter-spacing: -0.04em;
}

.logo-lockup span {
  color: rgba(255, 255, 255, 0.7);
}

.prompt-box {
  position: relative;
  z-index: 1;
  margin-top: 34px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 22px;
}

.prompt-label {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.prompt-text {
  margin-top: 8px;
  font-size: 1.15rem;
  font-weight: 750;
}

.answer-card {
  position: relative;
  z-index: 1;
  margin-top: 14px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
}

.answer-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.save-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(91, 33, 182, 0.09);
  color: #4c1d95;
  font-weight: 800;
  font-size: 0.9rem;
}

.section {
  padding: 54px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 22px;
}

.section-head p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.info-card {
  padding: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(17, 24, 39, 0.05);
}

.info-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.status-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  padding: 26px;
  border: 1px solid rgba(91, 33, 182, 0.16);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(241, 245, 249, 0.92));
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.status-logo {
  width: 112px;
  height: 112px;
  border-radius: 28px;
}

.status-copy p {
  margin: 14px 0 0;
  color: var(--muted);
  max-width: 790px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 11px;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--line);
  color: #475569;
  font-size: 0.92rem;
  font-weight: 720;
}

.badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(167, 243, 208, 0.65);
  color: #064e3b;
  font-weight: 850;
  font-size: 0.86rem;
  margin-bottom: 14px;
}

.company-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.7fr);
  gap: 24px;
  padding: 30px;
  border-radius: 34px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
}

.company-card p {
  color: var(--muted);
}

.details-list {
  display: grid;
  gap: 12px;
  margin: 0;
}

.details-list div {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--soft);
}

.details-list dt {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.details-list dd {
  margin: 4px 0 0;
  font-weight: 750;
}

.site-footer {
  padding: 34px 0 40px;
  color: var(--muted);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.footer-inner a {
  color: var(--ink);
}

.legal-page {
  padding: 72px 0;
}

.legal-card {
  max-width: 820px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.legal-card p,
.legal-card li {
  color: var(--muted);
}

@media (max-width: 860px) {
  .hero {
    padding-top: 64px;
  }

  .hero-grid,
  .company-card,
  .status-card {
    grid-template-columns: 1fr;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    display: block;
  }

  .section-head p {
    margin-top: 12px;
  }

  .footer-inner {
    display: block;
  }

  .nav-links {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
