@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Chivo+Mono:wght@400;500;600&display=swap');

:root {
  --ink: #f6f6f8;
  --muted: #b9bdd3;
  --accent: #ff2d8b;
  --accent-bright: #6dffe8;
  --bg: #050508;
  --panel: rgba(13, 16, 29, 0.92);
  --border: #25283d;
  --radius: 6px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
}

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

body {
  margin: 0;
  font-family: 'Space Grotesk', 'Montserrat', system-ui, -apple-system, sans-serif;
  background: radial-gradient(circle at 20% 20%, rgba(255, 0, 128, 0.1), transparent 55%),
    radial-gradient(circle at 80% 0%, rgba(0, 255, 247, 0.16), transparent 45%),
    #050508;
  color: var(--ink);
  line-height: 1.6;
  min-height: 100vh;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.15s ease, text-shadow 0.15s ease;
}

a:hover {
  color: var(--accent-bright);
  text-shadow: 0 0 8px rgba(255, 45, 139, 0.5);
}

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

main {
  display: block;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(5, 5, 8, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(10px);
}

.header-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 22px;
  flex-wrap: wrap;
}

.brand {
  display: grid;
  gap: 3px;
  text-transform: uppercase;
}

.brand-mark {
  font-weight: 700;
  letter-spacing: 0.08em;
}

.brand-sub {
  font-size: 12px;
  color: var(--muted);
  font-family: 'Chivo Mono', monospace;
}

.nav {
  display: flex;
  flex-wrap: nowrap;
  flex: 1;
  gap: 8px;
  font-weight: 600;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
}

.nav a {
  padding: 9px 12px;
  border-radius: 2px;
  color: var(--muted);
  border: 1px solid var(--border);
  white-space: nowrap;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}

.nav a:hover {
  text-decoration: none;
  border-color: var(--accent);
  color: var(--ink);
}

.nav a.active {
  background: var(--accent);
  color: #050508;
  border-color: var(--accent);
  box-shadow: 0 6px 20px rgba(255, 45, 139, 0.45);
}

.nav-cta {
  flex-shrink: 0;
}

.nav-cta .button {
  padding: 10px 14px;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--ink);
  border-radius: 2px;
  padding: 9px 12px;
  cursor: pointer;
  font-weight: 700;
}

.menu-toggle .bars {
  width: 18px;
  height: 2px;
  background: var(--ink);
  position: relative;
  display: inline-block;
}

.menu-toggle .bars::before,
.menu-toggle .bars::after {
  content: '';
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--ink);
}

.menu-toggle .bars::before {
  top: -6px;
}

.menu-toggle .bars::after {
  top: 6px;
}

.site-footer {
  background: #030205;
  color: #fdf2ff;
  padding: 40px 0 48px;
  margin-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-layout {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 0 22px;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.site-footer a {
  color: #fdf2ff;
}

.site-footer a:hover {
  text-decoration: underline;
}

.layout {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 22px;
}

section {
  padding: 130px 0;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 10%, rgba(255, 45, 139, 0.08), transparent 55%),
    radial-gradient(circle at 90% 20%, rgba(109, 255, 232, 0.06), transparent 45%);
  opacity: 0.6;
  pointer-events: none;
}

section > * {
  position: relative;
  z-index: 1;
}

section.layout.two-col {
  padding-top: 160px;
  padding-bottom: 160px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 16px;
}

.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-bright);
  margin-bottom: 8px;
  font-family: 'Chivo Mono', monospace;
}

.section-lead {
  max-width: 720px;
  color: var(--muted);
  margin: 0 0 24px;
}

.hero {
  position: relative;
  background: linear-gradient(135deg, #050508 0%, #120c33 45%, #1e043a 100%);
  color: #ffffff;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('./assets/SequinHeader.jpg') center/cover no-repeat;
  opacity: 0.25;
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero .layout {
  position: relative;
  padding: 130px 22px 120px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
  z-index: 1;
}

.hero h1 {
  margin: 0 0 10px;
  font-size: 42px;
  letter-spacing: -0.02em;
}

.hero-lead {
  color: #e3e3f8;
  max-width: 620px;
}

.pill {
  display: inline-block;
  background: rgba(255, 45, 139, 0.16);
  color: var(--accent);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: 'Chivo Mono', monospace;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  border-radius: 2px;
  border: 1px solid var(--border);
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
  text-transform: uppercase;
  transition: transform 0.12s ease, box-shadow 0.2s ease, background 0.2s ease,
    color 0.2s ease, border-color 0.2s ease;
}

.button.primary {
  background: var(--accent);
  color: #050508;
  border-color: var(--accent);
  box-shadow: 0 12px 25px rgba(255, 45, 139, 0.4);
}

.button.secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.button.link {
  background: transparent;
  color: var(--accent);
  border: none;
  padding-left: 0;
  padding-right: 0;
}

.button:hover {
  text-decoration: none;
  transform: translate(-1px, -1px);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.5), 0 0 20px rgba(109, 255, 232, 0.25);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 20px;
  box-shadow: var(--shadow);
}

.card h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.card .price {
  font-weight: 700;
  color: var(--accent);
}

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

.feature {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.01);
}

.feature strong {
  font-size: 18px;
}

.two-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  align-items: start;
}

.media {
  border-radius: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 2px solid rgba(255, 255, 255, 0.05);
}

.list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.list li {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  padding: 12px 14px;
  border-radius: 0;
}

.list .label {
  color: var(--muted);
}

.badge {
  display: inline-block;
  background: rgba(109, 255, 232, 0.18);
  color: var(--accent-bright);
  padding: 6px 12px;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}

.muted {
  color: var(--muted);
}

.inline-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.stack {
  display: grid;
  gap: 12px;
}

.table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 0;
  overflow: hidden;
}

.table th,
.table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.table th {
  background: rgba(255, 255, 255, 0.04);
  font-weight: 700;
}

.table tr:last-child td {
  border-bottom: none;
}

.cta-block {
  background: linear-gradient(135deg, rgba(7, 11, 43, 0.95), rgba(255, 45, 139, 0.8));
  color: #ffffff;
  padding: 34px;
  border-radius: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-block h3 {
  margin: 0;
  font-size: 24px;
}

.cta-block p {
  margin: 4px 0 0;
  color: #e5e5ff;
}

.pure-text p {
  margin: 0 0 12px;
}

.contact-details {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 16px;
  box-shadow: var(--shadow);
}

.contact-details h4 {
  margin: 0 0 6px;
}

.hero-secondary {
  background: rgba(5, 5, 8, 0.8);
  padding: 100px 22px 80px;
  border-bottom: 1px solid var(--border);
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.45);
}

.hero-secondary h1 {
  margin: 0;
  font-size: 36px;
}

@media (max-width: 640px) {
  .hero .layout {
    padding-top: 110px;
    padding-bottom: 90px;
  }

  .hero h1 {
    font-size: 32px;
  }

  section {
    padding: 100px 0;
  }

  section.layout.two-col {
    padding-top: 130px;
    padding-bottom: 130px;
  }

  .hero-secondary {
    padding: 80px 22px 70px;
  }

  .header-layout {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .header-layout .top-row {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }

  .nav {
    width: 100%;
    flex-wrap: wrap;
    overflow: hidden;
    gap: 10px;
    display: none;
  }

  .site-header.nav-open .nav {
    display: flex;
  }

  .nav a {
    flex: 1 1 calc(50% - 10px);
    text-align: center;
    padding: 12px 10px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.04);
  }

  .nav a.active {
    background: var(--accent);
  }

  .nav-cta {
    width: 100%;
  }

  .nav-cta .button {
    width: 100%;
    justify-content: center;
    padding: 14px;
  }
}
