:root {
  color-scheme: dark;
  --bg: #020912;
  --panel: #08131f;
  --panel-2: #0c1724;
  --line: rgba(157, 187, 229, 0.18);
  --text: #f7fbff;
  --muted: #aab6c7;
  --soft: #d8e3f4;
  --blue: #1b83ff;
  --cyan: #68d5ff;
  --purple: #9b5cff;
  --violet: #d56cff;
  --green: #53e57d;
  --orange: #ff9a38;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 10% 14%, rgba(28, 126, 255, 0.18), transparent 30%),
    radial-gradient(circle at 80% 10%, rgba(144, 85, 255, 0.16), transparent 30%),
    linear-gradient(180deg, #030914 0%, #020912 58%, #02070d 100%);
  color: var(--text);
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

.material-symbols-rounded {
  direction: ltr;
  display: inline-block;
  font-family: "Material Symbols Rounded";
  font-feature-settings: "liga";
  font-size: 24px;
  font-style: normal;
  font-variation-settings: "FILL" 1, "wght" 700, "GRAD" 0, "opsz" 24;
  font-weight: 700;
  letter-spacing: normal;
  line-height: 1;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 70%);
}

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

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

.site-header {
  width: min(1440px, calc(100% - 48px));
  margin: 0 auto;
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand,
nav,
.footer-brand {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
}

.footer-brand {
  gap: 16px;
}

.brand img,
.footer-brand img {
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(27, 131, 255, 0.22);
}

.brand span,
.footer-brand div {
  display: grid;
  line-height: 1.04;
}

.brand strong,
.footer-brand strong {
  font-size: 25px;
  letter-spacing: 0;
}

.brand small,
.footer-brand span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

nav {
  gap: 10px;
  color: var(--soft);
  font-size: 14px;
  font-weight: 800;
  flex-wrap: wrap;
  justify-content: flex-end;
}

nav a {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

nav a:hover {
  border-color: rgba(104, 213, 255, 0.42);
  background: rgba(104, 213, 255, 0.08);
}

main {
  width: min(1440px, calc(100% - 48px));
  margin: 0 auto;
}

.hero {
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(330px, 0.82fr) minmax(620px, 1.18fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
  padding: 34px 0 56px;
}

.hero-copy {
  position: relative;
}

.eyebrow {
  margin: 0 0 14px;
  color: #b799ff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 620px;
  margin-bottom: 18px;
  font-size: clamp(46px, 6vw, 82px);
  line-height: 1.04;
  letter-spacing: 0;
}

h1::first-letter {
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 19px;
}

.hero-text {
  max-width: 620px;
  margin-bottom: 28px;
  color: var(--soft);
  font-size: clamp(18px, 1.7vw, 23px);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 14px;
  font-weight: 900;
}

.primary-button {
  color: #fff;
  background: linear-gradient(135deg, var(--violet), var(--blue));
  box-shadow: 0 18px 40px rgba(48, 127, 255, 0.34);
}

.secondary-button {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
}

.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.trust-line span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #cbd7ec;
  font-size: 13px;
  font-weight: 800;
  padding: 8px 11px;
  border: 1px solid rgba(104, 213, 255, 0.18);
  border-radius: 999px;
  background: rgba(9, 25, 42, 0.72);
}

.hero-preview {
  margin: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(6, 15, 27, 0.78);
  box-shadow: var(--shadow);
}

.hero-preview img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: top left;
  border-radius: 16px;
}

.hero-preview picture,
.party-frame picture {
  display: block;
  width: 100%;
  height: 100%;
}

.feature-section {
  padding: 42px 0 28px;
  text-align: center;
}

.feature-section h2 {
  max-width: 760px;
  margin-inline: auto;
}

.section-lead {
  max-width: 820px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 18px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(240px, 1fr));
  gap: 18px;
  max-width: 760px;
  margin: 34px auto 0;
}

.feature-grid-wide {
  max-width: 1180px;
  grid-template-columns: repeat(4, minmax(210px, 1fr));
}

.feature-grid article {
  min-height: 210px;
  padding: 24px;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.018)),
    rgba(10, 20, 33, 0.84);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.2);
}

.feature-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  color: #c785ff;
  border-radius: 14px;
  background: rgba(147, 92, 255, 0.12);
}

.feature-icon .material-symbols-rounded {
  font-size: 30px;
  font-variation-settings: "FILL" 1, "wght" 700, "GRAD" 0, "opsz" 32;
}

.feature-grid p,
.showcase-copy p,
.proof-bar span,
.seo-copy p,
.seo-list,
.faq-grid p,
.policy-card p,
.policy-card li {
  color: var(--muted);
}

.seo-copy {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(280px, 0.58fr);
  gap: 32px;
  align-items: center;
  margin: 42px 0 34px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.018)),
    rgba(7, 16, 27, 0.84);
}

.seo-copy p {
  max-width: 820px;
  font-size: 18px;
}

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

.seo-list li {
  padding: 14px 16px;
  border: 1px solid rgba(104, 213, 255, 0.14);
  border-radius: 14px;
  background: rgba(9, 25, 42, 0.72);
}

.showcase-panel {
  position: relative;
  min-height: 430px;
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(420px, 1.1fr);
  gap: 32px;
  align-items: center;
  margin: 40px 0 32px;
  padding: clamp(26px, 4vw, 42px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgba(9, 18, 35, 0.96), rgba(28, 20, 64, 0.62)),
    radial-gradient(circle at 78% 35%, rgba(130, 82, 255, 0.28), transparent 34%);
  box-shadow: var(--shadow);
}

.showcase-copy {
  position: relative;
  z-index: 2;
}

.showcase-copy p {
  max-width: 570px;
  margin-bottom: 28px;
  font-size: 18px;
}

.party-frame {
  position: relative;
  justify-self: end;
  width: min(560px, 100%);
  height: 360px;
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(6, 11, 25, 0.82);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.party-frame::after {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
  background:
    radial-gradient(ellipse at center, transparent 48%, rgba(10, 14, 35, 0.2) 64%, rgba(7, 12, 29, 0.88) 100%),
    linear-gradient(90deg, rgba(7, 12, 29, 0.92), transparent 18%, transparent 82%, rgba(7, 12, 29, 0.92)),
    linear-gradient(180deg, rgba(7, 12, 29, 0.96), transparent 18%, transparent 80%, rgba(7, 12, 29, 0.94));
}

.party-art {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
}

.feature-section,
.seo-copy,
.showcase-panel,
.proof-bar,
.faq-section,
footer {
  content-visibility: auto;
}

.proof-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 0 0 46px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--line);
}

.proof-bar div {
  padding: 22px;
  background: rgba(10, 20, 33, 0.88);
}

.proof-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  color: #b98cff;
  border-radius: 999px;
  background: rgba(147, 92, 255, 0.12);
}

.proof-bar strong {
  display: block;
  margin-bottom: 6px;
}

.faq-section {
  margin: 0 0 56px;
  padding: 42px 0 0;
}

.faq-section h2 {
  max-width: 760px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 26px;
}

.faq-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(10, 20, 33, 0.84);
}

footer {
  width: min(1440px, calc(100% - 48px));
  margin: 0 auto;
  padding: 30px 0 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

footer a {
  font-weight: 800;
}

.policy-page {
  width: min(980px, calc(100% - 48px));
}

.policy-card {
  margin: 32px 0 56px;
  padding: clamp(26px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(7, 16, 27, 0.88);
  box-shadow: var(--shadow);
}

.policy-card h1 {
  max-width: none;
  font-size: clamp(38px, 6vw, 68px);
}

.policy-card h2 {
  margin-top: 34px;
  font-size: 24px;
}

.policy-updated {
  margin-bottom: 30px;
  color: #c6d5ec;
  font-weight: 800;
}

.policy-card ul {
  padding-left: 22px;
}

.not-found {
  min-height: 100vh;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 14px;
  padding: 24px;
  text-align: center;
}

.not-found img {
  border-radius: 18px;
}

.not-found h1 {
  margin: 0;
  font-size: clamp(34px, 6vw, 64px);
}

.not-found p {
  color: var(--muted);
}

@media (max-width: 1100px) {
  .hero,
  .showcase-panel,
  .seo-copy {
    grid-template-columns: 1fr;
  }

  .hero-preview {
    order: -1;
  }

  .feature-grid-wide,
  .proof-bar,
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .party-frame {
    justify-self: stretch;
    width: 100%;
  }
}

@media (max-width: 720px) {
  .site-header,
  footer {
    width: min(100% - 28px, 1440px);
  }

  main,
  .policy-page {
    width: min(100% - 28px, 1440px);
  }

  .site-header,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    justify-content: flex-start;
  }

  .hero {
    min-height: auto;
    padding-top: 12px;
  }

  .hero-preview {
    padding: 8px;
    border-radius: 18px;
  }

  .hero-preview img {
    border-radius: 12px;
  }

  body::before {
    display: none;
  }

  .feature-grid,
  .feature-grid-wide,
  .proof-bar,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .showcase-panel {
    padding: 22px;
  }

  .party-frame {
    height: 280px;
  }
}
