:root {
  --bg: #080b10;
  --bg2: #111827;
  --card: rgba(18, 24, 34, 0.82);
  --card2: rgba(25, 32, 45, 0.92);
  --text: #f6efe7;
  --muted: #b9aebf;
  --line: rgba(255,255,255,0.13);
  --gold: #ffb347;
  --violet: #9b5cff;
  --cyan: #48e0ff;
  --danger: #ff5c8a;
  --shadow: 0 30px 90px rgba(0,0,0,0.45);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 8%, rgba(155, 92, 255, 0.24), transparent 32%),
    radial-gradient(circle at 88% 18%, rgba(255, 179, 71, 0.18), transparent 28%),
    radial-gradient(circle at 50% 100%, rgba(72, 224, 255, 0.10), transparent 35%),
    linear-gradient(180deg, #07090d 0%, #101520 50%, #07090d 100%);
  min-height: 100vh;
}

a { color: inherit; }

.wrap {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.skip {
  position: absolute;
  left: -999px;
  top: 12px;
  padding: 10px 14px;
  background: var(--gold);
  color: #111;
  border-radius: 999px;
  z-index: 20;
}

.skip:focus { left: 12px; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(8, 11, 16, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.topbar__inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand__logo {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  box-shadow: 0 0 28px rgba(255, 179, 71, 0.25);
}

.brand__name {
  font-family: Georgia, serif;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand__tag {
  color: var(--muted);
  font-size: 0.88rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-weight: 700;
}

.nav a {
  text-decoration: none;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 179, 71, 0.45);
  background: linear-gradient(135deg, var(--gold), #ff7a4d);
  color: #15100a;
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(255, 122, 77, 0.18);
  cursor: pointer;
}

.btn--small {
  min-height: 38px;
  padding: 0 14px;
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: rgba(255,255,255,0.22);
  box-shadow: none;
}

.burger {
  display: none;
  width: 46px;
  height: 42px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  border-radius: 12px;
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
}

.mobileMenu {
  padding: 0 0 18px;
}

.mobileMenu a {
  display: block;
  padding: 12px 0;
  text-decoration: none;
  color: var(--muted);
  font-weight: 800;
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero__inner {
  min-height: 720px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 44px;
  padding: 76px 0;
}

h1 {
  margin: 0;
  max-width: 780px;
  font-family: Georgia, serif;
  font-size: clamp(3.5rem, 9vw, 8.2rem);
  line-height: 0.88;
  letter-spacing: -0.075em;
}

.lead {
  max-width: 660px;
  color: var(--muted);
  font-size: clamp(1.15rem, 2.3vw, 1.55rem);
  line-height: 1.5;
}

.ctaRow,
.row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.chip {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.05);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.micro {
  margin-top: 26px;
  color: var(--muted);
}

.micro a {
  color: var(--gold);
}

.hero__logoCard {
  justify-self: center;
  width: min(390px, 100%);
  border: 1px solid var(--line);
  background: rgba(17, 24, 39, 0.72);
  border-radius: 34px;
  padding: 26px;
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}

.logoFrame {
  position: relative;
}

.logoFrame img {
  width: 100%;
  border-radius: 28px;
  display: block;
}

.glow {
  position: absolute;
  inset: 18%;
  background: rgba(255, 179, 71, 0.32);
  filter: blur(60px);
  z-index: -1;
}

.logoCard__note {
  color: var(--muted);
  text-align: center;
  margin-top: 16px;
  font-family: Georgia, serif;
  font-style: italic;
}

.scanlines {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255,255,255,0.02),
    rgba(255,255,255,0.02) 1px,
    transparent 1px,
    transparent 5px
  );
  opacity: 0.22;
}

.section {
  padding: 86px 0;
}

.section--alt {
  background: rgba(255,255,255,0.035);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

h2 {
  margin: 0 0 12px;
  font-family: Georgia, serif;
  font-size: clamp(2.1rem, 4vw, 4rem);
  letter-spacing: -0.045em;
}

.sub {
  margin: 0 0 30px;
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.55;
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

.topGap {
  margin-top: 18px;
}

.card {
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.22);
}

.card h3 {
  margin: 0 0 12px;
  font-family: Georgia, serif;
  font-size: 1.45rem;
}

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

.small {
  font-size: 0.88rem;
}

.list,
.rules {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
  line-height: 1.65;
}

.note {
  margin-top: 18px;
  border: 1px dashed rgba(255, 179, 71, 0.45);
  background: rgba(255, 179, 71, 0.08);
  border-radius: 18px;
  padding: 16px;
  color: var(--muted);
}

.form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(0,0,0,0.28);
  color: var(--text);
  padding: 13px 14px;
  font: inherit;
}

textarea {
  resize: vertical;
}

code {
  color: var(--gold);
}

.divider {
  height: 1px;
  background: var(--line);
  margin: 22px 0;
}

.contactBox {
  display: grid;
  gap: 12px;
  line-height: 1.5;
}

.contactBox a,
.linkCard,
.footer a {
  color: var(--gold);
}

.linkCard {
  text-decoration: none;
  font-weight: 900;
  font-size: 1.1rem;
}

details summary {
  cursor: pointer;
}

details p {
  color: var(--muted);
  line-height: 1.6;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 28px 0;
  background: rgba(0,0,0,0.25);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.footer__brand {
  font-family: Georgia, serif;
  font-weight: 900;
  font-size: 1.2rem;
}

.footer__right a {
  text-decoration: none;
  font-weight: 900;
}

@media (max-width: 860px) {
  .nav { display: none; }
  .burger { display: block; }
  .hero__inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero__logoCard {
    transform: none;
  }
  .grid--2,
  .grid--3 {
    grid-template-columns: 1fr;
  }
  .footer__inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
