:root {
  color-scheme: light;
  --background: #f7f5fb;
  --surface: rgba(255, 255, 255, .9);
  --border: rgba(69, 45, 87, .13);
  --text: #24152f;
  --muted: #706079;
  --faint: #988ba1;
  --violet: #7c3aed;
  --violet-dark: #6d28d9;
  --pink: #c026d3;
  --green: #15803d;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { min-width: 320px; background: var(--background); }

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 68% -8%, rgba(124, 58, 237, .14), transparent 38%),
    linear-gradient(180deg, #fbfaff 0, var(--background) 52%, #f2edf8 100%);
  -webkit-font-smoothing: antialiased;
}

.ambient {
  position: fixed;
  z-index: 0;
  border-radius: 999px;
  filter: blur(110px);
  pointer-events: none;
}

.ambient-a { width: 430px; height: 430px; top: -250px; left: 22%; background: var(--violet); opacity: .1; }
.ambient-b { width: 340px; height: 340px; right: -210px; bottom: 5%; background: var(--pink); opacity: .07; }

.landing-shell {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 22px;
  padding: 40px 20px;
}

.landing-card {
  width: min(620px, calc(100vw - 40px));
  padding: clamp(34px, 7vw, 68px);
  border: 1px solid var(--border);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .96), rgba(253, 250, 255, .88));
  box-shadow: 0 28px 80px rgba(71, 42, 89, .12);
  backdrop-filter: blur(20px);
}

.brand { display: flex; align-items: center; gap: 12px; margin-bottom: 54px; }
.brand-mark { width: 34px; height: 34px; position: relative; display: grid; place-items: center; transform: rotate(-8deg); flex: 0 0 auto; }
.brand-mark i { position: absolute; width: 28px; height: 7px; border-radius: 5px 1px 5px 1px; background: linear-gradient(90deg, #a78bfa, var(--violet)); box-shadow: 0 8px 18px rgba(109, 40, 217, .22); }
.brand-mark i:nth-child(1) { width: 19px; transform: translateY(-9px) skewX(-25deg); }
.brand-mark i:nth-child(2) { transform: skewX(-25deg); }
.brand-mark i:nth-child(3) { width: 19px; transform: translateY(9px) skewX(-25deg); }
.brand strong { display: block; font-size: 14px; letter-spacing: .17em; }
.brand small { display: block; margin-top: 3px; color: var(--muted); font-size: 10px; letter-spacing: .11em; text-transform: uppercase; }

.status {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 7px 11px;
  border: 1px solid rgba(21, 128, 61, .15);
  border-radius: 999px;
  color: var(--green);
  background: rgba(21, 128, 61, .045);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.status i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px rgba(21, 128, 61, .55); }
.eyebrow { margin: 0 0 9px; color: var(--violet-dark); font-size: 10px; font-weight: 750; letter-spacing: .14em; text-transform: uppercase; }

h1 {
  margin: 0;
  font-size: clamp(38px, 7vw, 62px);
  font-weight: 650;
  letter-spacing: -.055em;
  line-height: 1.02;
}

h1 span { color: var(--violet-dark); }
.message { margin: 22px 0 38px; color: var(--muted); font-size: clamp(17px, 3vw, 21px); line-height: 1.55; }
.message span { color: var(--violet-dark); font-weight: 700; }

.assurance {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 16px;
  border: 1px solid rgba(109, 40, 217, .11);
  border-radius: 14px;
  background: rgba(109, 40, 217, .035);
}

.assurance-icon { width: 28px; height: 28px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 9px; color: #fff; background: linear-gradient(135deg, var(--violet-dark), #8b5cf6); font-size: 13px; font-weight: 800; }
.assurance p { margin: 0; }
.assurance strong { display: block; margin: 1px 0 4px; font-size: 12px; }
.assurance small { display: block; color: var(--muted); font-size: 10px; line-height: 1.55; }
.footer { margin: 0; color: var(--faint); font-size: 9px; letter-spacing: .11em; text-transform: uppercase; }

@media (max-width: 540px) {
  .landing-shell { padding: 20px 12px; }
  .landing-card { width: calc(100vw - 24px); padding: 30px 24px; border-radius: 20px; }
  .brand { margin-bottom: 42px; }
  .assurance { padding: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; }
}
