:root {
  --color-bg: #eee6f5;
  --color-surface: rgba(255, 255, 255, 0.92);
  --color-text: #4c4260;
  --color-text-strong: #2f2243;
  --color-purple-dark: #3e1e5f;
  --color-purple-mid: #6b4e8f;
  --color-purple-hero-a: #5a2f85;
  --color-purple-hero-b: #3e1e5f;
  --color-cyan: #2fddbb;
  --color-green: #2ac9a1;
  --color-border: rgba(107, 78, 143, 0.18);
  --shadow-soft: 0 24px 60px rgba(34, 18, 56, 0.18);
  --radius-xl: 28px;
  --radius-pill: 999px;
  --container: 1160px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color-scheme: light;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Inter", Arial, sans-serif;
  color: var(--color-text);
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.65), transparent 32%),
    linear-gradient(180deg, #f6f0fb 0%, var(--color-bg) 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2 {
  margin: 0;
}

.page-shell {
  min-height: 100vh;
}

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

.topbar {
  position: relative;
  z-index: 2;
  background: rgba(62, 30, 95, 0.92);
  backdrop-filter: blur(12px);
}

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

.topbar__label {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.brand-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 124px;
  height: 124px;
  flex-shrink: 0;
  filter: drop-shadow(0 12px 28px rgba(18, 10, 31, 0.22));
}

.brand-badge--small {
  width: 74px;
  height: 74px;
}

.brand-logo {
  display: block;
  width: 100%;
  height: auto;
}

.brand-logo--footer {
  width: 84px;
  flex-shrink: 0;
}

.hero {
  position: relative;
  overflow: clip;
  min-height: calc(100vh - 126px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 40%),
    linear-gradient(160deg, var(--color-purple-hero-a) 0%, var(--color-purple-hero-b) 100%);
}

.hero__texture {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(120deg, rgba(255, 255, 255, 0.08) 0, rgba(255, 255, 255, 0.08) 1px, transparent 1px, transparent 22px),
    radial-gradient(circle at 20% 10%, rgba(47, 221, 187, 0.16), transparent 20%);
  opacity: 0.45;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: calc(100vh - 126px);
  padding: 72px 0 84px;
}

.hero__dots {
  margin-bottom: 16px;
  color: var(--color-cyan);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.18em;
}

.hero__eyebrow {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1 {
  max-width: 12ch;
  color: #fff;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  font-weight: 500;
  line-height: 0.98;
}

.hero__subtitle {
  max-width: 680px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(0.98rem, 1.8vw, 1.12rem);
  line-height: 1.6;
}

.status-card {
  width: min(100%, 560px);
  margin-top: 28px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(246, 240, 251, 0.93) 100%);
  box-shadow: var(--shadow-soft);
}

.status-card__pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 18px;
  border-radius: var(--radius-pill);
  background: rgba(42, 201, 161, 0.15);
  color: #177d65;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.status-card h2 {
  margin-top: 14px;
  color: var(--color-purple-mid);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 600;
  line-height: 1.05;
}

.status-card p {
  margin-top: 10px;
  font-size: 0.98rem;
  line-height: 1.6;
}

.footer-note {
  background: #f2ebf8;
  border-top: 1px solid var(--color-border);
}

.footer-note__content {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 24px;
  padding: 28px 0;
}

.footer-note__brand {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.footer-note__brand p,
.footer-base__content p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-note__text {
  max-width: 860px;
}

.footer-note__text p {
  color: var(--color-text);
}

.footer-base {
  background: #3d2a5a;
}

.footer-base__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
}

.footer-base__content p {
  color: rgba(255, 255, 255, 0.82);
}

@media (max-width: 840px) {
  .topbar__content,
  .footer-note__content,
  .footer-base__content,
  .footer-note__brand {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__content {
    min-height: auto;
    padding: 56px 0 64px;
  }

  .status-card {
    width: min(100%, 520px);
    padding: 22px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .topbar__label {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
  }

  .brand-badge {
    width: 88px;
    height: 88px;
  }

  .brand-logo--footer {
    width: 64px;
  }

  .hero__dots {
    margin-bottom: 10px;
    font-size: 1.25rem;
  }

  .hero__eyebrow {
    margin-bottom: 12px;
    font-size: 0.72rem;
  }

  h1 {
    max-width: 11ch;
    font-size: clamp(2.2rem, 9vw, 2.9rem);
  }

  .hero__subtitle {
    margin-top: 14px;
    max-width: 34ch;
    font-size: 0.93rem;
    line-height: 1.5;
  }

  .hero__content {
    padding: 40px 0 48px;
  }

  .status-card {
    margin-top: 22px;
    padding: 18px;
    border-radius: 22px;
  }

  .status-card__pill {
    min-height: 34px;
    padding: 0 14px;
    font-size: 0.7rem;
  }

  .status-card h2 {
    margin-top: 12px;
    font-size: 1.6rem;
  }

  .footer-note__content {
    padding: 22px 0;
  }

  .hero__subtitle,
  .status-card p,
  .footer-note__brand p,
  .footer-note__code,
  .footer-base__content p {
    font-size: 0.9375rem;
  }
}
