:root {
  --bg: #07080c;
  --bg-2: #0c0e14;
  --surface: rgba(255, 255, 255, 0.035);
  --surface-hover: rgba(255, 255, 255, 0.055);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --text: #f1f3f7;
  --text-dim: #9aa3b2;
  --accent: #7ee0c3;
  --accent-dim: rgba(126, 224, 195, 0.14);
  --live: #86efac;
  --live-bg: rgba(134, 239, 172, 0.12);
  --soon: #fcd34d;
  --soon-bg: rgba(252, 211, 77, 0.12);
  --font-sans: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-display: "Instrument Serif", Georgia, serif;
  --radius: 16px;
  --radius-sm: 10px;
  --max: 72rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

.bg-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 20%, transparent 70%);
  pointer-events: none;
}

.bg-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

.bg-glow--one {
  width: min(55vw, 520px);
  height: min(55vw, 520px);
  top: -8%;
  right: -10%;
  background: #1e3a4a;
}

.bg-glow--two {
  width: min(45vw, 420px);
  height: min(45vw, 420px);
  bottom: 10%;
  left: -8%;
  background: #1a2f28;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  padding: 0.6rem 1rem;
  background: var(--accent);
  color: var(--bg);
  font-weight: 600;
  z-index: 200;
  border-radius: var(--radius-sm);
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.wrap {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2rem);
  position: relative;
  z-index: 1;
}

.top {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border);
  background: rgba(7, 8, 12, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.top__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1rem 1.1rem;
}

.brand {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.01em;
}

.brand:hover {
  color: var(--accent);
}

.nav {
  display: flex;
  gap: clamp(1rem, 3vw, 1.75rem);
  font-size: 0.875rem;
  font-weight: 500;
}

.nav a {
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

.nav a:hover {
  color: var(--text);
}

.nav a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 4px;
}

main {
  flex: 1;
  position: relative;
  z-index: 1;
  padding-block: clamp(2.5rem, 6vw, 4rem) clamp(3rem, 8vw, 5rem);
}

.hero {
  padding-bottom: clamp(3rem, 8vw, 5rem);
  max-width: 52rem;
}

.hero__eyebrow {
  margin: 0 0 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero__title {
  margin: 0 0 1.35rem;
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 6.5vw, 3.65rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.hero__lead {
  margin: 0;
  max-width: 42ch;
  color: var(--text-dim);
  font-size: 1.125rem;
  line-height: 1.65;
  font-weight: 400;
}

.section {
  margin-bottom: clamp(3rem, 7vw, 4.5rem);
}

.section__header {
  margin-bottom: 1.75rem;
  max-width: 36rem;
}

.section__header--sticky {
  margin-bottom: 0;
}

.section__title {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 400;
  letter-spacing: -0.02em;
}

.section__desc {
  margin: 0;
  color: var(--text-dim);
  font-size: 0.98rem;
  line-height: 1.55;
}

.section--split {
  display: grid;
  gap: 1.5rem 3rem;
  align-items: start;
}

@media (min-width: 768px) {
  .section--split {
    grid-template-columns: minmax(0, 14rem) minmax(0, 1fr);
  }

  .section__header--sticky {
    position: sticky;
    top: 5.5rem;
  }
}

.section__body {
  max-width: 44rem;
}

.prose p {
  margin: 0 0 1.1rem;
  color: var(--text-dim);
}

.prose p:last-child {
  margin-bottom: 0;
}

.prose__note {
  margin-top: 1.25rem;
  padding: 1rem 1.15rem;
  border-left: 3px solid var(--accent-dim);
  background: var(--surface);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.95rem;
  color: var(--text-dim);
}

.legal-name {
  color: var(--text);
  font-weight: 600;
}

.cards {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1.4rem 1.35rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition:
    border-color 0.25s var(--ease),
    background 0.25s var(--ease),
    transform 0.25s var(--ease);
}

.card:hover {
  background: var(--surface-hover);
  border-color: var(--border-strong);
  transform: translateY(-3px);
}

.badge {
  align-self: flex-start;
  margin-bottom: 1rem;
  padding: 0.28rem 0.6rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
}

.badge--live {
  color: var(--live);
  background: var(--live-bg);
}

.badge--soon {
  color: var(--soon);
  background: var(--soon-bg);
}

.card__title {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
}

.card__text {
  margin: 0 0 1.25rem;
  flex: 1;
  color: var(--text-dim);
  font-size: 0.9375rem;
  line-height: 1.55;
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition: gap 0.2s var(--ease), color 0.2s var(--ease);
}

.card__link:hover {
  gap: 0.65rem;
  color: #9fe9d4;
}

.card__link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 6px;
}

.card__icon {
  flex-shrink: 0;
  opacity: 0.85;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pill {
  padding: 0.45rem 0.95rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-dim);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
}

.pill:hover {
  border-color: var(--border-strong);
  color: var(--text);
}

.section--contact .section__header {
  max-width: 32rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.contact-wrap {
  max-width: 36rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.4rem 1.4rem 1.2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.25);
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.contact-label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dim);
  letter-spacing: 0.02em;
}

.contact-input {
  width: 100%;
  padding: 0.65rem 0.85rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--text);
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.contact-input::placeholder {
  color: var(--text-dim);
  opacity: 0.85;
}

.contact-input:hover {
  border-color: rgba(255, 255, 255, 0.22);
}

.contact-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}

.contact-input[aria-invalid="true"] {
  border-color: var(--soon);
  box-shadow: 0 0 0 3px rgba(252, 211, 77, 0.12);
}

.contact-field-msg {
  display: none;
  margin: 0;
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.35;
  color: var(--soon);
}

.contact-field-msg[data-fs-active] {
  display: block;
}

.contact-textarea {
  resize: vertical;
  min-height: 8rem;
  line-height: 1.55;
}

.contact-submit {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  margin-top: 0.15rem;
  padding: 0.65rem 1.35rem;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--bg);
  background: var(--accent);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.1s ease;
}

.contact-submit:hover:not(:disabled) {
  background: #9fe9d4;
}

.contact-submit:active:not(:disabled) {
  transform: scale(0.98);
}

.contact-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.contact-messages {
  min-height: 2.75rem;
}

.contact-help {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.45;
  color: var(--text-dim);
}

.contact-banner {
  display: none;
  margin: 0.85rem 0 0;
  padding: 0.7rem 0.9rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.45;
  border: 1px solid var(--border);
}

.contact-banner[data-fs-active] {
  display: block;
}

.contact-banner--success[data-fs-active] {
  color: var(--live);
  background: rgba(134, 239, 172, 0.08);
  border-color: rgba(134, 239, 172, 0.28);
}

.contact-banner--error[data-fs-active] {
  color: var(--soon);
  background: rgba(252, 211, 77, 0.08);
  border-color: rgba(252, 211, 77, 0.28);
}

.foot {
  position: relative;
  z-index: 1;
  margin-top: auto;
  border-top: 1px solid var(--border);
  padding-block: 1.5rem 2rem;
}

.foot__inner p {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--text-dim);
}

@media (max-width: 520px) {
  .top__inner {
    flex-wrap: wrap;
  }

  .nav {
    width: 100%;
    justify-content: flex-end;
  }
}
