:root {
  --bg: #05080d;
  --bg-soft: #0b111a;
  --panel: #0f1722;
  --panel-light: #151f2d;

  --text: #f3f7fb;
  --text-muted: #9ba9b8;

  --blue: #19a9e5;
  --blue-bright: #37c6ff;
  --blue-dark: #0872a6;

  --border: rgba(255, 255, 255, 0.09);

  --max-width: 1240px;
  --radius: 20px;
}

/* =========================
   BASE
========================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(20, 122, 177, 0.15), transparent 35%),
    var(--bg);
  color: var(--text);

  font-family:
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  line-height: 1.6;
}

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

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

section {
  padding: 110px 28px;
}

.section-heading {
  width: min(100%, var(--max-width));
  margin: 0 auto 48px;
}

.section-heading h2 {
  margin: 4px 0 12px;
  font-size: clamp(2.25rem, 5vw, 4.25rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.section-heading > p:last-child {
  max-width: 680px;
  margin: 0;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--blue-bright);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

/* =========================
   HEADER
========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;

  background: rgba(5, 8, 13, 0.84);
  border-bottom: 1px solid var(--border);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header-inner {
  width: min(calc(100% - 48px), var(--max-width));
  min-height: 76px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand-logo {
  width: 145px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  color: #c7d0da;
  font-size: 0.9rem;
  font-weight: 600;

  transition:
    color 160ms ease,
    transform 160ms ease;
}

.main-nav a:hover {
  color: var(--blue-bright);
  transform: translateY(-1px);
}

.discord-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 8px 13px;

  color: white !important;
  background: rgba(88, 101, 242, 0.14);
  border: 1px solid rgba(88, 101, 242, 0.55);
  border-radius: 999px;

  transition:
    background 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.discord-nav-link:hover {
  background: rgba(88, 101, 242, 0.28);
  border-color: #5865f2;
  color: white !important;
}

.discord-nav-link img {
  display: block;

  width: 18px !important;
  height: 18px !important;
  max-width: 18px !important;

  flex: 0 0 18px;
  object-fit: contain;
}

.menu-toggle {
  display: none;

  width: 44px;
  height: 44px;
  padding: 0;

  background: transparent;
  border: 0;

  cursor: pointer;
}

.menu-toggle span {
  display: block;

  width: 24px;
  height: 2px;
  margin: 5px auto;

  background: var(--text);
  border-radius: 999px;

  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

/* =========================
   BUTTONS
========================= */

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 50px;
  padding: 0 24px;

  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;

  color: white;
  font-weight: 750;

  box-shadow: 0 12px 35px rgba(0, 151, 214, 0.23);

  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.primary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 44px rgba(0, 174, 239, 0.34);
}

/* =========================
   MIRARAMI HERO
========================= */

.studio-hero {
  min-height: 78vh;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;

  background:
    radial-gradient(circle at center, rgba(15, 150, 211, 0.19), transparent 32%),
    linear-gradient(to bottom, rgba(5, 8, 13, 0), var(--bg));
}

.studio-hero-content {
  width: min(860px, 100%);
  margin: 0 auto;
}

.hero-logo {
  width: min(240px, 52vw);
  margin: 0 auto 28px;
}

.studio-hero h1 {
  margin: 0;

  font-size: clamp(3.2rem, 9vw, 7.7rem);
  line-height: 0.92;

  letter-spacing: -0.065em;
}

.hero-intro {
  max-width: 700px;
  margin: 28px auto 34px;

  color: var(--text-muted);
  font-size: clamp(1rem, 2vw, 1.25rem);
}

/* =========================
   MIRARAMI SECTION DIVIDER
========================= */

.mirarami-section-divider {
  width: min(calc(100% - 56px), 760px);
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;

  padding: 10px 0 4px;
}

.mirarami-divider-line {
  flex: 1;
  height: 1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(55, 198, 255, 0.42),
      rgba(190, 123, 255, 0.42)
    );
}

.mirarami-divider-line:last-child {
  background:
    linear-gradient(
      90deg,
      rgba(190, 123, 255, 0.42),
      rgba(55, 198, 255, 0.42),
      transparent
    );
}

.mirarami-divider-mark {
  position: relative;

  width: 52px;
  height: 24px;

  border-bottom: 1px solid rgba(55, 198, 255, 0.65);
}

.mirarami-divider-mark::before,
.mirarami-divider-mark::after {
  content: "";
  position: absolute;
  bottom: 0;

  border: 1px solid rgba(190, 123, 255, 0.65);
  border-bottom: 0;
}

.mirarami-divider-mark::before {
  left: 8px;

  width: 11px;
  height: 13px;
}

.mirarami-divider-mark::after {
  right: 8px;

  width: 14px;
  height: 19px;
}

/* =========================
   CLUB ROOM FLAGSHIP
========================= */

.flagship-section {
  background: #070b11;
}

.flagship-card {
  width: min(calc(100% - 56px), var(--max-width));
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.35fr 0.85fr;

  overflow: hidden;

  background:
    linear-gradient(135deg, rgba(18, 30, 45, 0.97), rgba(8, 13, 20, 0.98));

  border: 1px solid var(--border);
  border-radius: var(--radius);

  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(29, 178, 240, 0.04);
}

.flagship-image {
  min-height: 570px;
}

.flagship-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flagship-content {
  padding: 60px;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.status-label {
  width: fit-content;
  margin: 0 0 18px;

  padding: 7px 12px;

  border: 1px solid rgba(55, 198, 255, 0.25);
  border-radius: 999px;

  color: var(--blue-bright);
  background: rgba(55, 198, 255, 0.08);

  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.flagship-content h3 {
  margin: 0 0 22px;

  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1;

  letter-spacing: -0.04em;
}

.flagship-content p:not(.status-label) {
  margin: 0 0 18px;
  color: var(--text-muted);
}

.button-row {
  margin-top: 18px;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 50px;
  padding: 0 24px;

  background: transparent;
  border: 1px solid rgba(55, 198, 255, 0.42);
  border-radius: 999px;

  color: var(--blue-bright);
  font-weight: 750;

  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.secondary-button:hover {
  transform: translateY(-2px);

  background: rgba(55, 198, 255, 0.09);
  border-color: var(--blue-bright);
  color: white;
}

/* =========================
   GAME GRID
========================= */

.games-section {
  background:
    radial-gradient(circle at 15% 20%, rgba(0, 160, 220, 0.08), transparent 24%),
    var(--bg);
}

.game-grid {
  width: min(calc(100% - 56px), var(--max-width));
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.game-card {
  overflow: hidden;

  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);

  transition:
    transform 200ms ease,
    border-color 200ms ease,
    box-shadow 200ms ease;
}

.game-card:hover {
  transform: translateY(-5px);

  border-color: rgba(55, 198, 255, 0.24);

  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.32);
}

.game-image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #0a0f16;
}

.game-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 350ms ease;
}

.game-card:hover .game-image img {
  transform: scale(1.025);
}

.game-card-content {
  padding: 28px;
}

.game-card-content h3 {
  margin: 0 0 10px;

  font-size: 1.55rem;
  letter-spacing: -0.025em;
}

.game-card-content > p:not(.status-label) {
  margin: 0;
  color: var(--text-muted);
}

.game-card-actions {
  margin-top: 24px;
}

/* =========================
   TUTORIALS
========================= */

.tutorials-section {
  background:
    linear-gradient(
      180deg,
      rgba(10, 17, 26, 0.55),
      rgba(4, 7, 11, 0.9)
    );
}

.coming-content {
  width: min(calc(100% - 56px), var(--max-width));
  margin: 0 auto;

  padding: 44px;

  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);

  color: var(--text-muted);
}

.tutorial-card {
  width: min(calc(100% - 56px), var(--max-width));
  margin: 0 auto;

  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.55fr);

  overflow: hidden;

  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);

  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.3);
}

.tutorial-video {
  position: relative;
  aspect-ratio: 16 / 9;

  background: #000;
}

.tutorial-video iframe {
  width: 100%;
  height: 100%;

  border: 0;
}

.tutorial-content {
  padding: 34px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.tutorial-content h3 {
  margin: 0 0 16px;

  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.tutorial-content > p:not(.status-label) {
  margin: 0 0 24px;
  color: var(--text-muted);
}

/* =========================
   ABOUT
========================= */

.about-section {
  background:
    radial-gradient(circle at 50% 20%, rgba(55, 198, 255, 0.08), transparent 32%),
    var(--bg);
}

.about-section .section-heading {
  text-align: center;
}

.about-content {
  width: min(820px, calc(100% - 56px));
  margin: 0 auto;

  color: var(--text-muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.about-content p {
  margin: 0 0 24px;
}

.about-lead {
  color: var(--text);
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.035em;
  text-align: center;
}

.about-closing {
  margin-top: 36px !important;

  color: var(--blue-bright);
  font-size: 1.18rem;
  font-weight: 700;
  text-align: center;
}

/* =========================
   CLUB ROOM CINEMA
========================= */

.cinema-page {
  background: var(--bg);
}

/* HERO */

.cinema-hero {
  padding: 90px 28px;

  background:
    radial-gradient(circle at 25% 15%, rgba(55, 198, 255, 0.10), transparent 34%),
    var(--bg);
}

.cinema-hero-inner {
  width: min(calc(100% - 56px), var(--max-width));
  margin: 0 auto;

  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
}

.cinema-hero-copy h1 {
  margin: 0;

  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.cinema-hero-intro {
  max-width: 580px;
  margin: 26px 0 0;

  color: var(--text-muted);
  font-size: 1.15rem;
  line-height: 1.7;
}

.cinema-hero-image {
  overflow: hidden;

  border: 1px solid var(--border);
  border-radius: var(--radius);

  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.36);
}

.cinema-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* CINEMA INFO */

.cinema-info-section {
  padding: 90px 28px;

  background: #070b11;
}

.cinema-content {
  width: min(820px, 100%);
  margin: 0 auto;
}

.cinema-content h2 {
  margin: 0 0 26px;

  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.cinema-content p {
  margin: 0 0 22px;

  color: var(--text-muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.cinema-content strong {
  color: var(--text);
}


/* CINEMA TUTORIAL */

.cinema-tutorial-section {
  padding: 100px 28px;

  background:
    linear-gradient(
      180deg,
      rgba(10, 17, 26, 0.55),
      rgba(4, 7, 11, 0.92)
    );
}


/* CLUB ROOM CONNECT */

.connect-section {
  padding: 100px 28px;

  background:
    radial-gradient(circle at 70% 20%, rgba(177, 105, 255, 0.10), transparent 30%),
    var(--bg);
}

.connect-card {
  width: min(calc(100% - 56px), 980px);
  margin: 0 auto;

  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  align-items: center;

  padding: 46px;

  background:
    linear-gradient(
      135deg,
      rgba(28, 20, 48, 0.95),
      rgba(10, 15, 24, 0.98)
    );

  border: 1px solid rgba(194, 123, 255, 0.22);
  border-radius: var(--radius);

  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.35);
}

.connect-icon {
  display: flex;
  justify-content: center;
}

.connect-icon img {
  width: min(260px, 100%);
  height: auto;
}

.connect-copy h2 {
  margin: 0 0 20px;

  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.connect-copy > p:not(.status-label) {
  margin: 0 0 18px;

  color: var(--text-muted);
  line-height: 1.75;
}

.connect-status {
  margin-top: 28px;
  padding: 18px 20px;

  color: #d9c6ef;
  background: rgba(176, 101, 255, 0.08);

  border: 1px solid rgba(190, 123, 255, 0.22);
  border-radius: 14px;

  font-weight: 700;
}


/* INTERNET NOTE */

.cinema-note-section {
  padding: 70px 28px;

  background: #070b11;
}

.cinema-note {
  width: min(820px, 100%);
  margin: 0 auto;

  padding: 34px;

  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.cinema-note h2 {
  margin: 0 0 16px;

  font-size: 1.55rem;
  letter-spacing: -0.025em;
}

.cinema-note p {
  margin: 0;

  color: var(--text-muted);
  line-height: 1.8;
}


/* STREAMING POLICY */

.cinema-policy-section {
  padding: 100px 28px 120px;

  background: var(--bg);
}

.cinema-policy-content {
  width: min(860px, 100%);
  margin: 0 auto;

  color: var(--text-muted);
  line-height: 1.8;
}

.cinema-policy-content > h2 {
  margin: 0 0 42px;

  color: var(--text);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.cinema-policy-content h3 {
  margin: 42px 0 14px;

  color: var(--blue-bright);
  font-size: 1.35rem;
}

.cinema-policy-content p {
  margin: 0 0 20px;
}

.cinema-policy-content ul {
  margin: 0 0 28px;
  padding-left: 24px;
}

.cinema-policy-content li {
  margin-bottom: 12px;
}

/* =========================
   CLUB ROOM IN-APP GAMES
========================= */

.club-games-hero {
  min-height: 68vh;
}

.club-game-section {
  padding: 100px 28px;

  background: var(--bg);
}

.club-game-section:nth-of-type(even) {
  background: #070b11;
}

.club-game-copy {
  width: min(860px, 100%);
  margin: 0 auto 42px;
}

.club-game-copy h2 {
  margin: 0 0 20px;

  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.club-game-copy p:not(.eyebrow) {
  margin: 0 0 18px;

  color: var(--text-muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.club-game-guide {
  width: min(100%, 1080px);
  margin: 0 auto;

  overflow: hidden;

  background: #05080d;
  border: 1px solid var(--border);
  border-radius: var(--radius);

  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.club-game-guide img {
  display: block;

  width: 100%;
  height: auto;

  object-fit: contain;
}

/* =========================
   PRIVACY POLICY
========================= */

.policy-page {
  background: var(--bg);
}

.policy-hero {
  padding: 110px 28px 70px;

  background:
    radial-gradient(circle at 50% 15%, rgba(55, 198, 255, 0.12), transparent 34%),
    var(--bg);

  text-align: center;
}

.policy-hero-inner {
  width: min(900px, 100%);
  margin: 0 auto;
}

.policy-hero h1 {
  margin: 0;

  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.policy-updated {
  margin: 24px 0 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.policy-section {
  padding: 60px 28px 120px;
}

.policy-content {
  width: min(860px, 100%);
  margin: 0 auto;

  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
}

.policy-content h2 {
  margin: 58px 0 18px;

  color: var(--text);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.policy-content h2:first-child {
  margin-top: 0;
}

.policy-content h3 {
  margin: 42px 0 18px;

  color: var(--blue-bright);
  font-size: 1.35rem;
}

.policy-content h4 {
  margin: 30px 0 12px;

  color: var(--text);
  font-size: 1.1rem;
}

.policy-content p {
  margin: 0 0 20px;
}

.policy-content ul {
  margin: 0 0 26px;
  padding-left: 24px;
}

.policy-content li {
  margin-bottom: 12px;
}

.policy-content strong {
  color: var(--text);
}

.policy-content a {
  color: var(--blue-bright);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.policy-content a:hover {
  color: white;
}

/* =========================
   CONTACT
========================= */

.contact-section {
  background: var(--bg-soft);
  text-align: center;
}

.contact-section .section-heading {
  text-align: center;
}

.contact-section .section-heading > p:last-child {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.contact-content {
  width: min(700px, calc(100% - 56px));
  margin: 0 auto;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.contact-email {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* =========================
   FOOTER
========================= */

.site-footer {
  padding: 70px 28px;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;

  border-top: 1px solid var(--border);

  text-align: center;
}

.footer-logo {
  width: 165px;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px 26px;
}

.footer-links a {
  color: #c7d0da;
  font-size: 0.9rem;
  font-weight: 600;

  transition:
    color 160ms ease,
    transform 160ms ease;
}

.footer-links a:hover {
  color: var(--blue-bright);
  transform: translateY(-1px);
}

.site-footer p {
  margin: 0;
  color: #758291;
  font-size: 0.85rem;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 920px) {

  .header-inner {
  position: relative;
  justify-content: space-between;
}

.menu-toggle {
  display: block;
}

.main-nav {
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  right: 0;

  display: none;
  flex-direction: column;
  align-items: stretch;
  gap: 0;

  padding: 12px 24px 18px;

  background: rgba(5, 8, 13, 0.98);
  border-bottom: 1px solid var(--border);

  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

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

.main-nav a {
  padding: 14px 4px;
  border-bottom: 1px solid var(--border);
}

.main-nav a:last-child {
  border-bottom: 0;
}

.main-nav .discord-nav-link {
  align-self: flex-start;
  width: auto;

  margin-top: 12px;
  padding: 8px 13px;

  border: 1px solid rgba(88, 101, 242, 0.55);
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

  .flagship-card {
    grid-template-columns: 1fr;
  }

  .flagship-image {
    min-height: auto;
    aspect-ratio: 16 / 9;
  }

  .flagship-content {
    padding: 38px;
  }

  .game-grid {
    grid-template-columns: 1fr;
  }

  .tutorial-card {
    grid-template-columns: 1fr;
  }

  .tutorial-content {
    padding: 32px;
  }

  .cinema-hero-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .connect-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .connect-copy .status-label {
    margin-left: auto;
    margin-right: auto;
  }

}

@media (max-width: 600px) {

  section {
    padding: 80px 18px;
  }

  .header-inner {
    width: calc(100% - 32px);
  }

  .brand-logo {
    width: 130px;
  }

  .studio-hero {
    min-height: 70vh;
  }

  .flagship-card,
  .game-grid,
  .coming-content,
  .about-content {
    width: 100%;
  }

  .flagship-content {
    padding: 30px 24px 34px;
  }

  .cinema-hero,
  .cinema-info-section,
  .cinema-tutorial-section,
  .connect-section,
  .cinema-note-section,
  .cinema-policy-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .cinema-hero-inner,
  .connect-card {
    width: 100%;
  }

  .connect-card {
    padding: 30px 22px;
  }

  .connect-icon img {
    width: 210px;
  }

  .cinema-note {
    padding: 26px 22px;
  }

  .club-game-section {
    padding: 70px 18px;
  }

  .club-game-copy {
    margin-bottom: 30px;
  }

  .club-game-copy h2 {
    font-size: clamp(2.2rem, 11vw, 3rem);
  }

  .club-game-guide {
    border-radius: 14px;
  }

  }

  /* =========================
   CLUB ROOM BUSINESS PLAN
========================= */

.business-page {
  background: var(--bg);
}


/* BUSINESS HERO */

.business-hero {
  padding: 90px 28px;

  background:
    radial-gradient(circle at 20% 15%, rgba(91, 73, 180, 0.16), transparent 35%),
    var(--bg);
}

.business-hero-inner {
  width: min(calc(100% - 56px), var(--max-width));
  margin: 0 auto;

  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.business-hero-copy h1 {
  margin: 0;

  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.business-hero-intro {
  margin: 26px 0 18px;

  color: var(--text);
  font-size: 1.18rem;
  line-height: 1.7;
}

.business-hero-copy > p:not(.eyebrow):not(.business-hero-intro) {
  margin: 0 0 20px;

  color: var(--text-muted);
  line-height: 1.8;
}

.business-hero-image {
  overflow: hidden;

  border: 1px solid var(--border);
  border-radius: var(--radius);

  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.4);
}

.business-hero-image img {
  width: 100%;
  height: auto;
}


/* STANDARD BUSINESS SECTIONS */

.business-section {
  padding: 100px 28px;

  background: var(--bg);
}

.business-section-alt {
  background: #070b11;
}

.business-section-heading {
  width: min(860px, 100%);
  margin: 0 auto 46px;
}

.business-section-heading h2 {
  margin: 0 0 20px;

  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.business-section-heading > p:not(.eyebrow) {
  margin: 0;

  color: var(--text-muted);
  font-size: 1.08rem;
  line-height: 1.8;
}


/* FEATURE IMAGES */

.business-feature-image {
  width: min(1080px, 100%);
  margin: 0 auto;

  overflow: hidden;

  background: #f5f3ef;
  border: 1px solid var(--border);
  border-radius: var(--radius);

  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.business-feature-image-dark {
  background: #000;
}

.business-feature-image img {
  width: 100%;
  height: auto;
}


/* BUSINESS SPACES */

.business-space-grid {
  width: min(1080px, 100%);
  margin: 34px auto 0;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.business-space-card {
  padding: 28px;

  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.business-space-card h3 {
  margin: 0 0 14px;

  font-size: 1.5rem;
  letter-spacing: -0.025em;
}

.business-space-card p:not(.status-label) {
  margin: 0;

  color: var(--text-muted);
  line-height: 1.7;
}


/* BUSINESS FEATURE CARDS */

.business-feature-grid {
  width: min(1080px, 100%);
  margin: 34px auto 0;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.business-info-card {
  padding: 30px;

  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.business-info-card h3 {
  margin: 0 0 14px;

  color: var(--blue-bright);
  font-size: 1.4rem;
}

.business-info-card p {
  margin: 0;

  color: var(--text-muted);
  line-height: 1.75;
}


/* CONNECT NOTICE */

.business-notice {
  width: min(820px, 100%);
  margin: 36px auto 0;
  padding: 30px;

  background:
    linear-gradient(
      135deg,
      rgba(33, 24, 59, 0.96),
      rgba(13, 17, 27, 0.98)
    );

  border: 1px solid rgba(194, 123, 255, 0.24);
  border-radius: var(--radius);
}

.business-notice h3 {
  margin: 0 0 12px;

  font-size: 1.6rem;
}

.business-notice p {
  margin: 0 0 22px;

  color: var(--text-muted);
  line-height: 1.75;
}


/* SUBSCRIPTION */

.business-subscription-section {
  padding: 100px 28px;

  background:
    radial-gradient(circle at 50% 20%, rgba(55, 198, 255, 0.10), transparent 34%),
    #070b11;
}

.business-subscription-card {
  width: min(860px, 100%);
  margin: 0 auto;
  padding: 48px;

  text-align: center;

  background:
    linear-gradient(
      135deg,
      rgba(16, 27, 42, 0.98),
      rgba(8, 12, 18, 0.98)
    );

  border: 1px solid rgba(55, 198, 255, 0.22);
  border-radius: var(--radius);

  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.35);
}

.business-subscription-card .eyebrow {
  text-align: center;
}

.business-subscription-card h2 {
  margin: 0 0 24px;

  font-size: clamp(2.7rem, 6vw, 4.6rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.business-subscription-card > p {
  max-width: 700px;
  margin: 0 auto 20px;

  color: var(--text-muted);
  line-height: 1.8;
}


/* TERMS */

.business-terms-section {
  padding: 100px 28px 120px;

  background: var(--bg);
}

.business-terms-content {
  width: min(860px, 100%);
  margin: 0 auto;

  color: var(--text-muted);
  line-height: 1.8;
}

.business-terms-content h2 {
  margin: 0 0 34px;

  color: var(--text);
  font-size: clamp(2.3rem, 5vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.business-terms-content p {
  margin: 0 0 22px;
}
  
  /* =========================
   BUSINESS PLAN RESPONSIVE
========================= */

@media (max-width: 920px) {

  .business-hero-inner {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .business-space-grid,
  .business-feature-grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 600px) {

  .business-hero,
  .business-section,
  .business-subscription-section,
  .business-terms-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .business-hero-inner {
    width: 100%;
  }

  .business-hero-image {
    width: 100%;
  }

  .business-subscription-card {
    padding: 32px 22px;
  }

  .business-space-card,
  .business-info-card,
  .business-notice {
    padding: 24px 20px;
  }

  .policy-hero {
    padding: 80px 18px 50px;
  }

  .policy-section {
    padding: 45px 18px 90px;
  }

  .coming-content {
    padding: 28px;
  }

}
