:root {
  --bg: #08070b;
  --bg-soft: #12101a;
  --panel: #181420;
  --panel-light: #231d2c;
  --gold: #d6a84f;
  --gold-bright: #f5d47a;
  --ivory: #f8f1df;
  --muted: #b9ad96;
  --red: #8f1d2c;
  --green: #145c45;
  --line: rgba(248, 241, 223, 0.14);
  --line-strong: rgba(245, 212, 122, 0.38);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ivory);
  background:
    radial-gradient(circle at 16% 8%, rgba(143, 29, 44, 0.26), transparent 26rem),
    radial-gradient(circle at 86% 0%, rgba(214, 168, 79, 0.15), transparent 28rem),
    linear-gradient(135deg, #08070b 0%, #12101a 48%, #07130f 100%);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(rgba(248, 241, 223, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(248, 241, 223, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent 72%);
}

a {
  color: var(--gold-bright);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--ivory);
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid var(--gold-bright);
  outline-offset: 4px;
}

button,
input {
  font: inherit;
}

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

h1,
h2,
h3 {
  color: var(--ivory);
  line-height: 1.08;
}

h1,
h2,
.brand strong {
  font-family: Georgia, "Times New Roman", serif;
}

h1 {
  max-width: 850px;
  margin-bottom: 1rem;
  font-size: clamp(3rem, 7vw, 6.6rem);
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0.8rem;
  font-size: clamp(2rem, 4.3vw, 3.65rem);
}

h3 {
  margin-bottom: 0.55rem;
  font-size: 1.22rem;
}

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

main {
  overflow: hidden;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.7rem 0.9rem;
  color: #110d07;
  background: var(--gold-bright);
  border-radius: var(--radius);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: 78px;
  padding: 0.85rem clamp(1rem, 4vw, 3rem);
  border-bottom: 1px solid var(--line);
  background: rgba(8, 7, 11, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--ivory);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 52px;
  height: 52px;
  padding: 3px;
  border: 1px solid rgba(245, 212, 122, 0.75);
  border-radius: 50%;
  background: rgba(8, 7, 11, 0.58);
  box-shadow: 0 0 28px rgba(214, 168, 79, 0.24);
  overflow: hidden;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.brand strong,
.brand small {
  display: block;
  letter-spacing: 0;
}

.brand strong {
  font-size: 1rem;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 600;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.6rem, 2vw, 1.35rem);
}

.site-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--ivory);
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--gold-bright);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(248, 241, 223, 0.07);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--ivory);
}

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

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.78fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
  min-height: calc(100vh - 78px);
  padding: clamp(3rem, 7vw, 7rem) clamp(1rem, 5vw, 5rem) clamp(4rem, 7vw, 6rem);
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(245, 212, 122, 0.42), transparent);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin-bottom: 0.8rem;
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 720px;
  margin-bottom: 0;
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.7rem;
}

.button,
.text-button {
  min-height: 48px;
  border-radius: var(--radius);
  font-weight: 800;
  cursor: pointer;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.15rem;
  border: 1px solid transparent;
  text-decoration: none;
}

.button-primary {
  color: #120e08;
  background: linear-gradient(135deg, #fff0a3, var(--gold-bright) 42%, var(--gold));
  box-shadow: 0 16px 32px rgba(214, 168, 79, 0.25);
}

.button-primary:hover {
  color: #120e08;
  filter: brightness(1.06);
}

.button-secondary {
  color: var(--ivory);
  border-color: rgba(245, 212, 122, 0.55);
  background: rgba(248, 241, 223, 0.07);
}

.button-secondary:hover {
  background: rgba(248, 241, 223, 0.13);
}

.trust-note {
  margin: 1rem 0 0;
  color: var(--ivory);
  font-size: 0.94rem;
}

.hero-visual {
  position: relative;
  min-height: 540px;
  border: 1px solid rgba(245, 212, 122, 0.34);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at center, rgba(245, 212, 122, 0.11), transparent 37%),
    linear-gradient(145deg, rgba(24, 20, 32, 0.92), rgba(12, 10, 17, 0.78));
  box-shadow: var(--shadow), inset 0 0 70px rgba(214, 168, 79, 0.08);
  overflow: hidden;
}

.hero-visual::before {
  position: absolute;
  inset: 9%;
  content: "";
  border: 1px solid rgba(248, 241, 223, 0.12);
  border-radius: 50%;
  background:
    repeating-conic-gradient(from 5deg, rgba(143, 29, 44, 0.62) 0 9deg, rgba(20, 92, 69, 0.62) 9deg 18deg, rgba(248, 241, 223, 0.06) 18deg 20deg),
    radial-gradient(circle, transparent 0 48%, rgba(8, 7, 11, 0.94) 49% 100%);
  opacity: 0.7;
}

.hero-visual::after {
  position: absolute;
  inset: auto -20% -26% -20%;
  height: 42%;
  content: "";
  background: radial-gradient(ellipse at center, rgba(245, 212, 122, 0.2), transparent 62%);
}

.roulette-ring {
  position: absolute;
  inset: 16%;
  border: 3px solid rgba(245, 212, 122, 0.38);
  border-radius: 50%;
  box-shadow: inset 0 0 45px rgba(0, 0, 0, 0.55), 0 0 50px rgba(214, 168, 79, 0.11);
}

.roulette-ring span {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 24px rgba(245, 212, 122, 0.65);
}

.roulette-ring span:nth-child(1) {
  top: 12%;
  left: 50%;
}

.roulette-ring span:nth-child(2) {
  right: 16%;
  bottom: 24%;
}

.roulette-ring span:nth-child(3) {
  bottom: 28%;
  left: 14%;
}

.gold-card {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 142px;
  height: 196px;
  padding: 0.8rem;
  color: #1b1206;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.62), transparent 28%),
    linear-gradient(145deg, #f8f1df, #f5d47a 55%, #b47a28);
  box-shadow: 0 24px 42px rgba(0, 0, 0, 0.42);
  font-weight: 900;
}

.gold-card strong {
  align-self: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.7rem;
  line-height: 1;
}

.gold-card span:last-child {
  align-self: flex-end;
  transform: rotate(180deg);
}

.card-one {
  top: 16%;
  left: 14%;
  transform: rotate(-11deg);
}

.card-two {
  right: 14%;
  bottom: 15%;
  transform: rotate(12deg);
}

.chip {
  position: absolute;
  z-index: 3;
  width: 86px;
  height: 86px;
  border: 9px dashed var(--ivory);
  border-radius: 50%;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.38);
}

.chip::after {
  position: absolute;
  inset: 18px;
  content: "";
  border: 2px solid rgba(248, 241, 223, 0.9);
  border-radius: 50%;
}

.chip-red {
  right: 18%;
  top: 17%;
  background: var(--red);
}

.chip-green {
  left: 20%;
  bottom: 17%;
  background: var(--green);
}

.dice {
  position: absolute;
  right: 30%;
  bottom: 33%;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 8px;
  width: 88px;
  height: 88px;
  padding: 13px;
  border: 1px solid rgba(245, 212, 122, 0.45);
  border-radius: var(--radius);
  background: var(--ivory);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.42);
  transform: rotate(8deg);
}

.dice i {
  border-radius: 50%;
  background: var(--red);
}

.dice i:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}

.dice i:nth-child(2) {
  grid-column: 3;
  grid-row: 1;
}

.dice i:nth-child(3) {
  grid-column: 2;
  grid-row: 2;
}

.dice i:nth-child(4) {
  grid-column: 1;
  grid-row: 3;
}

.dice i:nth-child(5) {
  grid-column: 3;
  grid-row: 3;
}

.section {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 6rem) 0;
}

.section-heading {
  max-width: 770px;
  margin-bottom: 1.7rem;
}

.wide-heading {
  max-width: 930px;
}

.feature-grid,
.site-grid {
  display: grid;
  gap: 1rem;
}

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

.feature-card,
.site-card,
.signup-inner,
.callout-box,
.disclaimer-section {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(248, 241, 223, 0.08), rgba(248, 241, 223, 0.03));
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.24);
}

.feature-card {
  padding: clamp(1.1rem, 2.5vw, 1.55rem);
}

.icon-card,
.mini-suit {
  display: grid;
  place-items: center;
  color: #150f08;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 50%;
  background: linear-gradient(145deg, var(--gold-bright), var(--gold));
  font-weight: 900;
}

.icon-card {
  width: 56px;
  height: 56px;
  margin-bottom: 1rem;
}

.disclaimer-section {
  display: grid;
  grid-template-columns: minmax(220px, 0.54fr) minmax(0, 1fr);
  gap: clamp(1rem, 4vw, 3rem);
  align-items: center;
  padding: clamp(1.4rem, 4vw, 2.3rem);
  border-color: rgba(245, 212, 122, 0.42);
  background:
    linear-gradient(135deg, rgba(20, 92, 69, 0.46), rgba(24, 20, 32, 0.88)),
    linear-gradient(145deg, rgba(248, 241, 223, 0.08), rgba(248, 241, 223, 0.03));
}

.disclaimer-section p:last-child {
  margin-bottom: 0;
  color: var(--ivory);
}

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

.site-card {
  display: flex;
  flex-direction: column;
  min-height: 292px;
  padding: 1.2rem;
}

.site-card.featured-site {
  border-color: rgba(245, 212, 122, 0.5);
  background:
    radial-gradient(circle at top right, rgba(245, 212, 122, 0.17), transparent 16rem),
    linear-gradient(145deg, rgba(248, 241, 223, 0.1), rgba(248, 241, 223, 0.035));
}

.site-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
}

.status {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0.25rem 0.65rem;
  color: var(--ivory);
  border: 1px solid rgba(245, 212, 122, 0.34);
  border-radius: 999px;
  background: rgba(245, 212, 122, 0.09);
  font-size: 0.78rem;
  font-weight: 800;
}

.status-live {
  color: #130d06;
  border-color: transparent;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
}

.status-planned {
  border-color: rgba(20, 92, 69, 0.72);
  background: rgba(20, 92, 69, 0.24);
}

.status-later {
  border-color: rgba(143, 29, 44, 0.7);
  background: rgba(143, 29, 44, 0.24);
}

.mini-suit {
  width: 42px;
  height: 42px;
  font-size: 0.9rem;
}

.site-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.domain {
  margin-bottom: 0.8rem;
  color: var(--gold-bright);
  font-size: 0.94rem;
  font-weight: 800;
}

.site-card p:not(.domain) {
  margin-bottom: 1.2rem;
}

.text-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: auto;
  padding: 0.7rem 0.95rem;
  color: var(--ivory);
  border: 1px solid rgba(245, 212, 122, 0.55);
  background: rgba(248, 241, 223, 0.07);
}

.text-button:hover {
  background: rgba(248, 241, 223, 0.13);
}

.signup-section {
  padding: clamp(3rem, 7vw, 6rem) clamp(1rem, 5vw, 5rem);
  background:
    radial-gradient(circle at 18% 26%, rgba(214, 168, 79, 0.14), transparent 26rem),
    linear-gradient(135deg, rgba(143, 29, 44, 0.35), rgba(18, 16, 26, 0.9));
}

.signup-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.7fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
  width: min(1160px, 100%);
  margin: 0 auto;
  padding: clamp(1.25rem, 4vw, 2.4rem);
  border-color: rgba(245, 212, 122, 0.4);
}

.signup-form {
  position: relative;
  display: grid;
  gap: 0.9rem;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.field-group {
  display: grid;
  gap: 0.35rem;
}

.field-group label {
  color: var(--ivory);
  font-weight: 800;
}

.field-group label span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.field-group input {
  width: 100%;
  min-height: 50px;
  padding: 0.78rem 0.85rem;
  color: var(--ivory);
  border: 1px solid rgba(248, 241, 223, 0.2);
  border-radius: var(--radius);
  background: rgba(8, 7, 11, 0.66);
}

.field-group input::placeholder {
  color: rgba(185, 173, 150, 0.72);
}

.interest-group {
  display: grid;
  gap: 0.65rem;
  padding: 0.95rem;
  border: 1px solid rgba(248, 241, 223, 0.2);
  border-radius: var(--radius);
  background: rgba(8, 7, 11, 0.36);
}

.interest-group legend {
  padding: 0 0.3rem;
  color: var(--ivory);
  font-weight: 800;
}

.interest-group p {
  margin-bottom: 0;
  font-size: 0.92rem;
}

.interest-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.interest-choice {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  min-height: 44px;
  padding: 0.62rem 0.7rem;
  border: 1px solid rgba(245, 212, 122, 0.22);
  border-radius: var(--radius);
  background: rgba(248, 241, 223, 0.055);
  color: var(--ivory);
  font-size: 0.92rem;
  font-weight: 700;
}

.interest-choice-all {
  grid-column: 1 / -1;
  border-color: rgba(245, 212, 122, 0.45);
  background: rgba(245, 212, 122, 0.09);
}

.interest-choice input {
  width: 1rem;
  height: 1rem;
  margin-top: 0.18rem;
  accent-color: var(--gold);
}

.form-button {
  width: 100%;
  margin-top: 0.3rem;
}

.form-note,
.form-message {
  margin-bottom: 0;
  font-size: 0.92rem;
}

.form-message {
  min-height: 1.6em;
  color: var(--gold-bright);
  font-weight: 800;
}

.form-message.is-success {
  color: var(--gold-bright);
}

.form-message.is-error {
  color: #ffd1d7;
}

.responsible-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.56fr);
  gap: clamp(1.2rem, 5vw, 4rem);
  align-items: center;
}

.responsible-copy p:last-child {
  font-size: 1.08rem;
}

.callout-box {
  position: relative;
  padding: clamp(1.25rem, 3vw, 1.8rem);
  border-color: rgba(245, 212, 122, 0.44);
}

.callout-box::before {
  display: block;
  width: 52px;
  height: 4px;
  margin-bottom: 1rem;
  content: "";
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-bright), var(--red));
}

.callout-box p {
  margin-bottom: 0;
  color: var(--ivory);
  font-size: 1.05rem;
  font-weight: 700;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(220px, auto);
  gap: 1.5rem 2rem;
  padding: clamp(2rem, 5vw, 3rem) clamp(1rem, 5vw, 5rem);
  border-top: 1px solid var(--line);
  background: rgba(8, 7, 11, 0.95);
}

.footer-brand p {
  max-width: 680px;
  margin: 1rem 0 0;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.7rem 1.1rem;
}

.footer-nav a {
  color: var(--ivory);
  font-weight: 800;
}

.footer-nav a:hover {
  color: var(--gold-bright);
}

.footer-disclaimer {
  grid-column: 1 / -1;
  max-width: 1000px;
  margin: 0;
  font-size: 0.92rem;
}

.copyright {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (prefers-reduced-motion: no-preference) {
  .gold-card,
  .chip,
  .dice {
    animation: soft-float 7s ease-in-out infinite;
  }

  .card-two,
  .chip-green {
    animation-delay: -2.2s;
  }

  .chip-red,
  .dice {
    animation-delay: -4s;
  }

  @keyframes soft-float {
    0%,
    100% {
      translate: 0 0;
    }

    50% {
      translate: 0 -10px;
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(8, 7, 11, 0.98);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 0.55rem 0.7rem;
  }

  .hero,
  .signup-inner,
  .responsible-section,
  .disclaimer-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 430px;
  }

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

  .footer-nav {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .site-header {
    min-height: 72px;
  }

  .brand small {
    display: none;
  }

  .button-row,
  .feature-grid,
  .site-grid {
    grid-template-columns: 1fr;
  }

  .button,
  .text-button {
    width: 100%;
  }

  .interest-options {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 330px;
  }

  .gold-card {
    width: 98px;
    height: 138px;
    font-size: 0.82rem;
  }

  .gold-card strong {
    font-size: 3rem;
  }

  .chip {
    width: 64px;
    height: 64px;
    border-width: 7px;
  }

  .chip::after {
    inset: 13px;
  }

  .dice {
    right: 25%;
    width: 64px;
    height: 64px;
    gap: 5px;
    padding: 10px;
  }
}
