:root {
  --ink: #111827;
  --muted: #5f6b7a;
  --paper: #fbfaf7;
  --panel: #ffffff;
  --teal: #0f7c80;
  --ruby: #b4234f;
  --gold: #d8a642;
  --coal: #11131a;
  --line: rgba(17, 24, 39, .12);
  --shadow: 0 24px 70px rgba(17, 24, 39, .18);
}

* { 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(--ink);
  background: var(--paper);
  line-height: 1.6;
}
a { color: inherit; }
img { max-width: 100%; display: block; }

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 5vw, 64px);
  color: #fff;
  background: linear-gradient(180deg, rgba(6, 10, 17, .78), rgba(6, 10, 17, .1));
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gold), var(--ruby));
  color: #fff;
  font-size: 14px;
}
.nav, .site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-weight: 700;
  font-size: 14px;
}
.nav a, .site-footer a { text-decoration: none; }

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  padding: 120px clamp(18px, 6vw, 84px) 78px;
  overflow: hidden;
  color: #fff;
}
.hero-bg, .hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-bg { object-fit: cover; }
.hero-overlay {
  background: linear-gradient(90deg, rgba(5, 8, 14, .86), rgba(5, 8, 14, .44) 52%, rgba(5, 8, 14, .64));
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: 13px;
}
h1, h2, h3 { line-height: 1.05; margin: 0; letter-spacing: 0; }
h1 { font-size: clamp(54px, 9vw, 118px); }
h2 { font-size: clamp(34px, 5vw, 64px); }
h3 { font-size: 22px; }
.hero p:not(.eyebrow) {
  max-width: 650px;
  margin: 22px 0 0;
  font-size: clamp(18px, 2.2vw, 25px);
}
.hero-actions, .age-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.btn {
  border: 0;
  border-radius: 8px;
  min-height: 46px;
  padding: 13px 20px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.primary { background: var(--gold); color: #15100a; }
.secondary { background: rgba(255,255,255,.14); color: #fff; border: 1px solid rgba(255,255,255,.42); }
.ghost { background: #eef1f4; color: var(--ink); }

.section {
  padding: clamp(58px, 8vw, 106px) clamp(18px, 6vw, 84px);
}
.intro, .split, .feature-band {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
}
.intro p:last-child, .split p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 20px;
}
.demo-section { background: #11131a; color: #fff; }
.section-heading { max-width: 760px; margin-bottom: 32px; }
.game-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.game-card {
  background: #fff;
  color: var(--ink);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 18px 46px rgba(0,0,0,.28);
}
.game-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #1b1f2a;
}
.game-info { padding: 18px; }
.game-info p { color: var(--muted); min-height: 76px; }
.play { width: 100%; background: var(--teal); color: #fff; }

.feature-band { background: #fff; border-block: 1px solid var(--line); }
.feature-list { display: grid; gap: 14px; }
.feature-list div {
  display: grid;
  gap: 4px;
  padding: 18px;
  border-left: 4px solid var(--ruby);
  background: #f5f7f8;
  border-radius: 8px;
}
.feature-list span { color: var(--muted); }

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr);
  gap: 28px;
  padding: 42px clamp(18px, 6vw, 84px);
  background: var(--coal);
  color: #fff;
}
.site-footer p { color: rgba(255,255,255,.72); max-width: 760px; }
.footer-brand { margin-bottom: 12px; }

.age-gate, .denied, .game-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(8, 11, 17, .82);
  backdrop-filter: blur(12px);
}
.age-card {
  max-width: 520px;
  width: 100%;
  padding: clamp(28px, 6vw, 48px);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}
.age-card p:not(.eyebrow) { color: var(--muted); }
.denied { color: #fff; text-align: center; z-index: 101; }
.game-modal[hidden], .age-gate[hidden], .denied[hidden] { display: none; }
.modal-panel {
  position: relative;
  width: min(1180px, 96vw);
  height: min(760px, 88vh);
  background: #080b11;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.modal-panel iframe { width: 100%; height: 100%; border: 0; }
.modal-close {
  position: absolute;
  z-index: 2;
  top: 10px;
  right: 10px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 8px;
  background: #fff;
  color: #111;
  font-weight: 900;
  cursor: pointer;
}

.page-hero {
  padding: 140px clamp(18px, 6vw, 84px) 64px;
  background: #11131a;
  color: #fff;
}
.content-page {
  max-width: 960px;
  margin: 0 auto;
  padding: 58px 18px 92px;
}
.content-page h2 { font-size: 34px; margin-top: 34px; }
.content-page p, .content-page li { color: var(--muted); }
.contact-form {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}
.contact-form label { display: grid; gap: 7px; font-weight: 800; }
.contact-form input, .contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  font: inherit;
}
.contact-form textarea { min-height: 150px; resize: vertical; }
.contact-main {
  min-height: 100vh;
  padding: 150px clamp(18px, 6vw, 84px) 86px;
  background:
    radial-gradient(circle at 50% 100%, rgba(180, 35, 79, .26), transparent 34%),
    radial-gradient(circle at 14% 0%, rgba(216, 166, 66, .12), transparent 32%),
    #080413;
  color: #fff;
}
.contact-showcase {
  max-width: 1650px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(300px, .85fr) minmax(0, 1.15fr);
  gap: clamp(18px, 2.8vw, 32px);
  align-items: stretch;
}
.contact-panel {
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  box-shadow: 0 28px 80px rgba(0,0,0,.34);
}
.company-panel {
  padding: clamp(28px, 4vw, 54px);
}
.company-panel h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(40px, 5vw, 68px);
}
.company-panel address {
  margin: 0 0 26px;
  color: rgba(255,255,255,.74);
  font-style: normal;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.48;
}
.company-panel p {
  margin: 6px 0;
  color: rgba(255,255,255,.74);
  font-size: 20px;
}
.company-panel strong { color: rgba(255,255,255,.88); }
.form-panel {
  padding: clamp(26px, 3vw, 48px);
}
.contact-form-dark {
  margin: 0;
  gap: 22px;
}
.contact-form-dark label {
  color: rgba(255,255,255,.78);
  font-size: 22px;
}
.contact-form-dark input,
.contact-form-dark textarea {
  min-height: 76px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.09);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.03);
}
.contact-form-dark textarea {
  min-height: 210px;
}
.contact-form-dark input:focus,
.contact-form-dark textarea:focus {
  outline: 2px solid rgba(216, 166, 66, .6);
  border-color: rgba(216, 166, 66, .72);
}
.contact-submit {
  width: 100%;
  min-height: 68px;
  border-radius: 999px;
  background: linear-gradient(90deg, #e94ba4, #f05b64 48%, #ffd45a);
  color: #11131a;
  font-size: 24px;
}
.form-status {
  margin: 18px 0 0;
  color: rgba(255,255,255,.8);
  font-weight: 800;
}

.sunny-site {
  --ink: #101933;
  --muted: #5c667d;
  --paper: #fff5e9;
  --teal: #63c2ae;
  --ruby: #f0784f;
  --gold: #ffd16b;
  --line: rgba(16, 25, 51, .12);
  background: #fff5e9;
}
.sunny-header {
  position: sticky;
  color: var(--ink);
  background: rgba(255, 247, 237, .92);
  border-bottom: 1px solid rgba(16, 25, 51, .1);
  backdrop-filter: blur(12px);
}
.sunny-header .brand-mark,
.sunny-footer .brand-mark {
  background: linear-gradient(135deg, #ff7651, #ffd66f);
  color: #101933;
}
.sunny-header .nav { font-size: 15px; }
.sunny-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .95fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
  min-height: calc(100vh - 75px);
  padding: clamp(64px, 8vw, 120px) clamp(18px, 5vw, 76px);
  overflow: hidden;
  background:
    radial-gradient(circle at 0 38%, rgba(99, 194, 174, .2) 0 16%, transparent 17%),
    radial-gradient(circle at 88% 28%, rgba(255, 209, 107, .4), transparent 26%),
    #fff5e9;
}
.sunny-hero-copy { max-width: 760px; position: relative; z-index: 1; }
.sunny-hero h1 {
  font-size: clamp(58px, 8vw, 112px);
  letter-spacing: 0;
}
.sunny-hero h1 span { color: #f0784f; }
.sunny-hero-copy > p:not(.eyebrow):not(.microcopy) {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
}
.sunny-site .eyebrow { color: #f0784f; }
.sunny-site .primary {
  background: #f0784f;
  color: #101933;
  border-radius: 999px;
}
.sunny-site .light {
  background: rgba(255,255,255,.72);
  color: #101933;
  border: 1px solid rgba(16, 25, 51, .12);
  border-radius: 999px;
}
.microcopy {
  margin-top: 20px;
  color: var(--muted);
  font-weight: 800;
}
.hero-visual {
  position: relative;
  min-height: 520px;
}
.machine-art {
  position: absolute;
  inset: 44px 0 0 auto;
  width: min(520px, 100%);
  height: 445px;
  border-radius: 8px 70px 8px 70px;
  background:
    radial-gradient(circle at 79% 17%, #ffd16b 0 17%, transparent 18%),
    radial-gradient(circle at 9% 17%, #fff5e9 0 2%, transparent 3%),
    linear-gradient(165deg, transparent 58%, #63c2ae 59% 73%, #f0784f 74%),
    #17275d;
  box-shadow: 0 28px 80px rgba(16, 25, 51, .2);
}
.machine-screen {
  position: absolute;
  left: 16%;
  top: 22%;
  display: flex;
  gap: 24px;
  padding: 28px 34px;
  border-radius: 8px;
  background: #fff5e9;
  box-shadow: inset 0 0 0 24px #101933;
}
.machine-screen span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffd16b;
  color: #fff;
  font-size: 34px;
  font-weight: 900;
}
.machine-bar {
  position: absolute;
  left: 24%;
  right: 32%;
  top: 58%;
  height: 18px;
  border-radius: 999px;
  background: #f0784f;
}
.machine-knob {
  position: absolute;
  right: 29%;
  top: 54%;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #63c2ae;
}
.floating-pill {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-radius: 8px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 18px 50px rgba(16, 25, 51, .15);
  font-weight: 900;
}
.floating-pill strong {
  display: grid;
  place-items: center;
  min-width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ffd16b;
}
.pill-top { top: 24px; left: 0; }
.pill-bottom { right: 0; bottom: 18px; }
.sunny-disclaimer {
  max-width: none;
  background: #101933;
  color: #fff;
}
.sunny-disclaimer p:last-child {
  max-width: 1180px;
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: clamp(18px, 2vw, 22px);
}
.sunny-process { background: #fffaf3; }
.sunny-process .section-heading,
.sunny-demo-section .section-heading,
.session-band .section-heading,
.community-section .section-heading,
.faq-section .section-heading {
  max-width: 840px;
}
.section-heading > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 19px;
}
.process-grid,
.session-grid,
.quote-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.process-grid article,
.session-grid article,
.quote-grid blockquote,
.faq-list details {
  margin: 0;
  padding: 24px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(16, 25, 51, .1);
  box-shadow: 0 18px 42px rgba(16, 25, 51, .08);
}
.process-grid span,
.session-grid article > p,
.demo-tag {
  color: #f0784f;
  font-weight: 900;
  text-transform: uppercase;
}
.process-grid p,
.session-grid span,
.quote-grid,
.faq-list p {
  color: var(--muted);
}
.sunny-demo-section {
  background: #eaf8f3;
  color: var(--ink);
}
.sunny-game {
  border: 0;
  box-shadow: 0 20px 50px rgba(16, 25, 51, .12);
}
.sunny-game .play {
  background: #17275d;
  border-radius: 999px;
}
.session-band { background: #fff5e9; }
.session-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.community-section { background: #fffaf3; }
.quote-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.quote-grid blockquote {
  font-size: 18px;
  color: var(--ink);
}
.quote-grid cite {
  display: block;
  margin-top: 20px;
  color: #f0784f;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 13px;
}
.faq-section { background: #eaf8f3; }
.faq-list {
  display: grid;
  gap: 12px;
  max-width: 920px;
}
.faq-list summary {
  cursor: pointer;
  font-size: 20px;
  font-weight: 900;
}
.contact-strip {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 4vw, 60px);
  background: #fff5e9;
}
.contact-facts {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}
.contact-facts p {
  display: grid;
  gap: 3px;
  margin: 0;
  color: var(--muted);
}
.contact-facts strong {
  color: var(--ink);
}
.bright-contact-form {
  margin: 0;
  padding: clamp(22px, 3vw, 38px);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 20px 55px rgba(16, 25, 51, .1);
}
.bright-contact-form .primary {
  min-height: 58px;
  font-size: 18px;
}
.contact-page-strip {
  min-height: calc(100vh - 75px);
  align-items: center;
}
.contact-page-strip h1 {
  margin-bottom: 18px;
  font-size: clamp(52px, 7vw, 92px);
}
.contact-page-strip > div > p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 20px;
}
.bright-status {
  margin: 0;
  color: #f0784f;
}
.sunny-footer {
  background: #101933;
}
.cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  max-width: 390px;
  padding: 20px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 55px rgba(16, 25, 51, .22);
}
.cookie-banner p {
  margin: 0 0 14px;
  color: var(--muted);
}
.cookie-banner div {
  display: flex;
  gap: 10px;
}
.cookie-banner[hidden] { display: none; }

@media (max-width: 900px) {
  .site-header { position: absolute; align-items: flex-start; }
  .nav { justify-content: flex-end; gap: 10px 14px; }
  .intro, .split, .feature-band, .site-footer, .contact-showcase, .sunny-hero, .contact-strip { grid-template-columns: 1fr; }
  .game-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-main { padding-top: 126px; }
  .sunny-header { position: static; }
  .process-grid, .session-grid, .quote-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-visual { min-height: 450px; }
}
@media (max-width: 560px) {
  .site-header { padding: 14px 16px; }
  .brand-mark { width: 34px; height: 34px; }
  .nav { font-size: 13px; }
  .hero { min-height: 88vh; padding-top: 132px; }
  .hero-actions .btn, .age-actions .btn { width: 100%; }
  .game-grid { grid-template-columns: 1fr; }
  .game-info p { min-height: 0; }
  h1 { font-size: 52px; }
  .contact-main { padding-inline: 14px; }
  .company-panel, .form-panel { padding: 22px; }
  .company-panel p, .contact-form-dark label { font-size: 17px; }
  .contact-form-dark input { min-height: 58px; }
  .contact-submit { min-height: 56px; font-size: 18px; }
  .sunny-hero { padding-top: 42px; }
  .sunny-hero h1 { font-size: 52px; }
  .process-grid, .session-grid, .quote-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 360px; }
  .machine-art { height: 315px; }
  .floating-pill { position: relative; inset: auto; margin-bottom: 10px; }
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; }
}
