
:root {
  --bg: #020617;
  --bg-alt: #020617;
  --navy: #020617;
  --navy-soft: #020617;
  --gold: #facc15;
  --gold-soft: #fef3c7;
  --text-main: #e5e7eb;
  --text-muted: #9ca3af;
  --border-subtle: #1f2937;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #0b1120 0, #020617 45%, #020617 100%);
  color: var(--text-main);
  line-height: 1.6;
}

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

img {
  max-width: 100%;
  display: block;
}

.wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.75rem 1.25rem 3rem;
}

/* NAV */

header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(2,6,23,0.98), rgba(2,6,23,0.85), transparent);
  border-bottom: 1px solid rgba(148,163,184,0.18);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.8rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(250,204,21,0.7);
  background: radial-gradient(circle at 30% 0%, #facc15 0, #0b1120 45%, #020617 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo img {
  width: 120%;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.brand-text strong {
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-text small {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
}

nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

nav a {
  padding: 0.25rem 0;
  position: relative;
  color: #d1d5db;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(to right, #fde68a, #facc15);
  transition: width 0.18s ease-out;
}

nav a:hover::after,
nav a.active::after {
  width: 100%;
}

.btn-nav {
  border-radius: 999px;
  border: 1px solid rgba(250,204,21,0.75);
  padding: 0.45rem 0.95rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: radial-gradient(circle at top, rgba(250,204,21,0.18), rgba(15,23,42,0.97));
  box-shadow: 0 0 0 1px rgba(15,23,42,1), 0 18px 45px rgba(15,23,42,0.9);
}

.btn-nav span {
  font-size: 1rem;
}

/* HERO */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2.4rem;
  padding: 2.2rem 0 2.8rem;
  align-items: center;
}

.eyebrow {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold-soft);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.65rem;
}

.eyebrow-dot {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--gold);
}

.hero h1 {
  font-size: clamp(2.3rem, 3vw + 1rem, 3.1rem);
  line-height: 1.04;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero-highlight {
  background: linear-gradient(to right, #facc15, #fbbf24, #f97316);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p {
  font-size: 0.98rem;
  color: var(--text-muted);
  max-width: 34rem;
  margin-bottom: 1.6rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.pill {
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  border: 1px solid rgba(148,163,184,0.4);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #e5e7eb;
  background: radial-gradient(circle at top left, rgba(148,163,184,0.18), rgba(15,23,42,0.96));
}

.pill.gold {
  border-color: rgba(250,204,21,0.85);
  color: #fef9c3;
  background: radial-gradient(circle at top left, rgba(250,204,21,0.22), rgba(15,23,42,0.96));
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
}

.btn-primary {
  border-radius: 999px;
  border: none;
  padding: 0.85rem 1.7rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: radial-gradient(circle at top left, #facc15, #f97316);
  color: #1e1b4b;
  box-shadow: 0 18px 60px rgba(15,23,42,0.95), 0 0 0 1px rgba(15,23,42,1);
}

.btn-primary span.icon {
  font-size: 1.1rem;
}

.btn-ghost {
  border-radius: 999px;
  padding: 0.7rem 1.2rem;
  border: 1px solid rgba(148,163,184,0.5);
  background: radial-gradient(circle at top, rgba(15,23,42,0.9), rgba(2,6,23,1));
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #cbd5f5;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-ghost span.icon {
  font-size: 1.1rem;
}

.hero-meta {
  margin-top: 1.1rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.hero-meta strong {
  color: var(--gold-soft);
  font-weight: 500;
}

/* HERO VISUAL */

.hero-visual {
  border-radius: 1.5rem;
  padding: 1.2rem;
  border: 1px solid rgba(148,163,184,0.4);
  background:
    radial-gradient(circle at top left, rgba(250,204,21,0.18), transparent 55%),
    radial-gradient(circle at bottom right, rgba(37,99,235,0.18), transparent 55%),
    linear-gradient(to bottom right, rgba(15,23,42,0.96), rgba(15,23,42,1));
  box-shadow:
    0 24px 80px rgba(15,23,42,0.9),
    0 0 0 1px rgba(15,23,42,1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-logo-card {
  border-radius: 1.1rem;
  overflow: hidden;
  border: 1px solid rgba(148,163,184,0.35);
  background: radial-gradient(circle at top, rgba(15,23,42,0.6), rgba(15,23,42,1));
}

.hero-logo-card-inner {
  padding: 0.4rem;
}

.hero-logo-card-inner img {
  border-radius: 0.9rem;
}

.hero-note {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.hero-note strong {
  color: var(--gold-soft);
}

/* GENERIC SECTIONS */

.section {
  margin-bottom: 2.8rem;
}

.section-heading {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold-soft);
  margin-bottom: 0.55rem;
}

.section-title {
  font-size: 1.45rem;
  margin-bottom: 0.4rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section-intro {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 32rem;
}

.grid {
  display: grid;
  gap: 1.4rem;
  margin-top: 1.7rem;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  border-radius: 1rem;
  padding: 1.1rem 1.1rem 1rem;
  border: 1px solid rgba(148,163,184,0.35);
  background:
    radial-gradient(circle at top left, rgba(148,163,184,0.08), rgba(15,23,42,0.96));
  box-shadow:
    0 0 0 1px rgba(15,23,42,1),
    0 14px 40px rgba(15,23,42,0.75);
}

.card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.card p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.card small {
  font-size: 0.76rem;
  color: #9ca3af;
}

/* TABLE */

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
  font-size: 0.9rem;
}

.pricing-table th,
.pricing-table td {
  padding: 0.7rem 0.8rem;
  text-align: left;
}

.pricing-table thead {
  background: rgba(15,23,42,0.95);
}

.pricing-table th {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  border-bottom: 1px solid var(--border-subtle);
}

.pricing-table tbody tr:nth-child(odd) {
  background: rgba(15,23,42,0.95);
}

.pricing-table tbody tr:nth-child(even) {
  background: rgba(15,23,42,0.8);
}

.pricing-table td {
  border-bottom: 1px solid rgba(31,41,55,0.85);
}

/* SIGN-UP EMBED */

.form-frame {
  margin-top: 1.8rem;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(148,163,184,0.6);
  box-shadow:
    0 0 0 1px rgba(15,23,42,1),
    0 18px 60px rgba(15,23,42,0.9);
}

.form-frame iframe {
  width: 100%;
  min-height: 900px;
  border: none;
}

/* FOOTER */

footer {
  border-top: 1px solid rgba(148,163,184,0.18);
  padding: 1.4rem 1.25rem 2.2rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  background: radial-gradient(circle at bottom, #020617 0, #020617 45%, #020617 100%);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.footer-links a {
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

/* RESPONSIVE */

@media (max-width: 800px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
  }
  nav {
    display: none;
  }
}

@media (max-width: 640px) {
  .wrapper {
    padding-inline: 1rem;
  }
  .hero {
    padding-top: 1.7rem;
  }
  .grid-2,
  .grid-3 {
    grid-template-columns: minmax(0, 1fr);
  }
  .pricing-table {
    font-size: 0.82rem;
  }
}
