/* ==========================================================================
   PrepuBot — Pure Apple Minimalist Dark Theme
   Monochromatic, disciplined grids, atmospheric background, and GC branding.
   ========================================================================== */

:root {
  --bg: #040406;
  --surface: #0c0c0e;
  --surface-hover: #141418;
  --island-bg: rgba(18, 18, 22, 0.85);

  --text-white: #ffffff;
  --text-silver: #86868b;
  --text-muted: #55555c;

  --border-card: rgba(255, 255, 255, 0.08);
  --border-card-hover: rgba(255, 255, 255, 0.18);
  --border-hairline: rgba(255, 255, 255, 0.05);

  --accent-green: #30d158;
  --accent-red: #ef4444;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg);
  color: var(--text-white);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--bg);
  color: var(--text-white);
  line-height: 1.55;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

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

/* Accessibility & Screen Readers */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.sr-only:focus {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 99999;
  width: auto;
  height: auto;
  padding: 10px 18px;
  background: #ffffff;
  color: #000000;
  font-weight: 600;
  border-radius: 9999px;
  clip: auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

/* ==========================================================================
   ATMOSPHERIC APPLE BACKGROUND STRUCTURE
   ========================================================================== */

.site-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.bg-spotlight-top {
  position: absolute;
  top: -180px;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 650px;
  background: radial-gradient(ellipse at center, rgba(239, 68, 68, 0.1) 0%, rgba(255, 255, 255, 0.02) 50%, transparent 80%);
  filter: blur(80px);
}

.bg-grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 30%, transparent 80%);
}

.bg-spotlight-mid {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.02) 0%, transparent 70%);
  filter: blur(100px);
}

/* Typography & Clean Silver Gradient */
h1, h2, h3, h4 {
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--text-white);
}

p {
  color: var(--text-silver);
}

.text-silver {
  background: linear-gradient(180deg, #ffffff 30%, #86868b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.container {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* ==========================================================================
   DYNAMIC ISLAND (APPLE TOP BAR)
   ========================================================================== */

.island-container {
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  z-index: 1000;
  pointer-events: none;
  padding: 0 16px;
}

.dynamic-island {
  pointer-events: auto;
  background: var(--island-bg);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9999px;
  height: 46px;
  padding: 0 12px 0 12px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.7);
  transition: all 0.3s var(--ease);
}

.dynamic-island:hover {
  border-color: rgba(255, 255, 255, 0.22);
}

.island-left {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.88rem;
  color: #fff;
  flex-shrink: 0;
}

.island-icon {
  width: 18px;
  height: 18px;
}

.island-status {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 4px 10px;
  border-radius: 9999px;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-silver);
  white-space: nowrap;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-green);
}

.island-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.island-links a {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-silver);
  transition: color 0.2s;
  white-space: nowrap;
}

.island-links a:hover {
  color: #fff;
}

.island-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.island-gh-link {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  transition: all 0.2s var(--ease);
  flex-shrink: 0;
}

.island-gh-link:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  transform: scale(1.05);
}

.island-gh-link svg {
  width: 14px;
  height: 14px;
  display: block;
}

.island-btn {
  font-size: 0.75rem;
  font-weight: 600;
  background: #ffffff;
  color: #000000;
  padding: 6px 13px;
  border-radius: 9999px;
  transition: all 0.2s var(--ease);
  white-space: nowrap;
}

.island-btn:hover {
  background: #d8d8dc;
  transform: scale(1.02);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero-section {
  padding: 130px 0 70px;
  text-align: center;
}

.hero-container {
  max-width: 960px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  padding: 5px 14px;
  border-radius: 9999px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-silver);
  margin-bottom: 24px;
}

.hero-headline {
  font-size: 4.2rem;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
}

.hero-subline {
  font-size: 1.18rem;
  line-height: 1.6;
  color: var(--text-silver);
  max-width: 620px;
  margin: 0 auto 34px;
}

.hero-subline strong {
  color: #fff;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 50px;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #000000;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 9999px;
  transition: all 0.2s var(--ease);
}

.btn-primary:hover {
  background: #e2e2e6;
  transform: scale(1.02);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.2s var(--ease);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* ==========================================================================
   HERO PRODUCT STAGE (2-COLUMN BALANCED APPLE SHOWCASE)
   ========================================================================== */

.hero-stage {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border-card);
  border-radius: 24px;
  padding: 32px 36px;
  margin-top: 10px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
  text-align: left;
}

.stage-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Grand Champion Hero Badge with Official Logo */
.gc-hero-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-hairline);
  margin-bottom: 18px;
}

.gc-badge-img {
  filter: drop-shadow(0 0 16px rgba(239, 68, 68, 0.4));
  flex-shrink: 0;
}

.gc-badge-text {
  display: flex;
  flex-direction: column;
}

.gc-badge-eyebrow {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-silver);
}

.gc-badge-title {
  font-size: 1.08rem;
  font-weight: 700;
  color: #fff;
}

.gc-badge-pill {
  margin-left: auto;
  font-size: 0.7rem;
  font-weight: 600;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #f87171;
  padding: 3px 9px;
  border-radius: 9999px;
  white-space: nowrap;
}

/* F6 Control Row */
.f6-control-row {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-hairline);
  border-radius: 14px;
  padding: 14px 18px;
  cursor: pointer;
  margin-bottom: 20px;
  transition: background 0.2s;
}

.f6-control-row:hover {
  background: rgba(255, 255, 255, 0.04);
}

.f6-keycap {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: #1c1c20;
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.f6-info {
  flex-grow: 1;
}

.f6-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2px;
}

.f6-desc {
  font-size: 0.76rem;
  color: var(--text-silver);
}

.f6-desc strong {
  color: #fff;
}

.apple-switch {
  width: 44px;
  height: 26px;
  background: #2a2a30;
  border-radius: 9999px;
  padding: 2px;
  transition: background 0.25s var(--ease);
  flex-shrink: 0;
}

.apple-switch.active {
  background: var(--accent-green);
}

.switch-knob {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ffffff;
  transition: transform 0.25s var(--ease);
}

.apple-switch.active .switch-knob {
  transform: translateX(18px);
}

/* Symmetrical 2x2 Metrics */
.metrics-grid-2x2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.metric-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-hairline);
  border-radius: 10px;
  padding: 10px 12px;
}

.metric-value {
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2px;
}

.metric-label {
  font-size: 0.68rem;
  color: var(--text-silver);
}

/* Right Column: PrepuBot UI Mockup Frame */
.stage-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ui-showcase-frame {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.prepubot-ui-img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 
    0 25px 60px rgba(0, 0, 0, 0.85),
    0 0 0 1px rgba(255, 255, 255, 0.06);
  transition: transform 0.3s var(--ease);
}

.prepubot-ui-img:hover {
  transform: scale(1.02);
}

.frame-footer-caption {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.72rem;
  color: var(--text-silver);
  margin-top: 12px;
}

.pulse-green-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-green);
  box-shadow: 0 0 6px var(--accent-green);
}

/* ==========================================================================
   SECTIONS COMMON
   ========================================================================== */

.section {
  padding: 80px 0;
}

.section-badge {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-silver);
  margin-bottom: 12px;
}

.section-heading {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}

.section-desc {
  font-size: 1.1rem;
  max-width: 580px;
  margin: 0 auto 48px;
  line-height: 1.6;
}

.text-center {
  text-align: center;
}

/* Grand Champion Centerpiece Logo in Performance Section */
.gc-centerpiece {
  display: flex;
  justify-content: center;
  margin-bottom: 22px;
}

.gc-centerpiece-logo {
  filter: drop-shadow(0 0 32px rgba(239, 68, 68, 0.45));
  transition: transform 0.3s var(--ease);
}

.gc-centerpiece-logo:hover {
  transform: scale(1.05);
}

/* ==========================================================================
   GAMEPLAY VIDEO SHOWCASE STAGE ("Surgical precision.")
   ========================================================================== */

.gameplay-showcase {
  background: var(--surface);
  border: 1px solid var(--border-card);
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 32px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.75);
  transition: border-color 0.3s var(--ease);
}

.gameplay-showcase:hover {
  border-color: var(--border-card-hover);
}

.gameplay-screen-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000000;
  overflow: hidden;
}

.gameplay-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gameplay-live-pill {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(12, 12, 16, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 6px 14px;
  border-radius: 9999px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-white);
  letter-spacing: 0.04em;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}

.gameplay-quote-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 28px;
  background: var(--surface);
  border-top: 1px solid var(--border-hairline);
  gap: 16px;
}

.quote-text-group {
  display: flex;
  flex-direction: column;
}

.quote-headline {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.quote-subline {
  font-size: 0.88rem;
  color: var(--text-silver);
}

.quote-tags {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.q-tag {
  font-size: 0.72rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-hairline);
  color: var(--text-silver);
  padding: 5px 12px;
  border-radius: 9999px;
  white-space: nowrap;
}

/* ==========================================================================
   SYMMETRICAL 3-COLUMN GRID (.grid-3)
   ========================================================================== */

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

.info-card {
  background: var(--surface);
  border: 1px solid var(--border-card);
  border-radius: 18px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: all 0.25s var(--ease);
}

.info-card:hover {
  background: var(--surface-hover);
  border-color: var(--border-card-hover);
  transform: translateY(-2px);
}

.card-num {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-silver);
  margin-bottom: 16px;
}

.info-card h3 {
  font-size: 1.18rem;
  margin-bottom: 10px;
}

.info-card p {
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ==========================================================================
   SYMMETRICAL 2x2 GRID (.grid-2x2) - PERFECTLY ORDERLY
   ========================================================================== */

.grid-2x2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.feature-box {
  background: var(--surface);
  border: 1px solid var(--border-card);
  border-radius: 18px;
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  transition: all 0.25s var(--ease);
}

.feature-box:hover {
  background: var(--surface-hover);
  border-color: var(--border-card-hover);
  transform: translateY(-2px);
}

.box-tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-silver);
  margin-bottom: 10px;
}

.feature-box h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.feature-box p {
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ==========================================================================
   STEP CARDS (BALANCED PROPORTIONS)
   ========================================================================== */

.step-card {
  background: var(--surface);
  border: 1px solid var(--border-card);
  border-radius: 18px;
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
  transition: all 0.25s var(--ease);
}

.step-card:hover {
  background: var(--surface-hover);
  border-color: var(--border-card-hover);
  transform: translateY(-2px);
}

.step-badge {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-silver);
  margin-bottom: 12px;
}

.step-card h3 {
  font-size: 1.18rem;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 0.88rem;
  line-height: 1.55;
  margin-bottom: 18px;
}

.code-box {
  width: 100%;
  min-width: 0;
  background: #000000;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
}

.code-box code {
  flex: 1 1 auto;
  min-width: 0;
  overflow-x: auto;
  white-space: nowrap;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: #e5e5ea;
  scrollbar-width: none;
}

.code-box code::-webkit-scrollbar {
  display: none;
}

.copy-btn {
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 5px 9px;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.2s;
}

.copy-btn:hover {
  background: rgba(255, 255, 255, 0.16);
}

.copy-btn.copied {
  background: var(--accent-green);
  color: #000000;
}

.step-tip {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-hairline);
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 0.8rem;
  color: var(--text-silver);
  margin-top: auto;
}

.step-tip span {
  color: #fff;
  font-weight: 600;
}

.code-inline {
  font-family: var(--font-mono);
  font-size: 0.85em;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 2px 5px;
  border-radius: 4px;
}

/* Download Banner */
.download-banner {
  background: var(--surface);
  border: 1px solid var(--border-card);
  border-radius: 24px;
  padding: 48px 30px;
  text-align: center;
  margin-top: 48px;
}

.banner-badge {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-silver);
  margin-bottom: 10px;
}

.download-banner h2 {
  font-size: 2.4rem;
  margin-bottom: 10px;
}

.download-banner p {
  font-size: 1.05rem;
  max-width: 460px;
  margin: 0 auto 28px;
}

.banner-btns {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */

.faq-wrap {
  max-width: 700px;
  margin: 0 auto;
  border-top: 1px solid var(--border-hairline);
}

.faq-item {
  border-bottom: 1px solid var(--border-hairline);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 20px 0;
  text-align: left;
  font-family: var(--font);
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--text-white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-arrow {
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--text-silver);
  transition: transform 0.25s var(--ease);
}

.faq-item.open .faq-arrow {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s var(--ease), padding 0.3s var(--ease);
  padding: 0;
}

.faq-answer p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-silver);
}

.faq-item.open .faq-answer {
  max-height: 220px;
  padding-bottom: 20px;
}

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

.footer {
  padding: 60px 0 30px;
  border-top: 1px solid var(--border-hairline);
  background: var(--bg);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 30px;
}

.footer-brand strong {
  font-size: 1rem;
  display: block;
  margin-bottom: 6px;
}

.footer-brand p {
  font-size: 0.82rem;
  max-width: 300px;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  font-size: 0.82rem;
  color: var(--text-silver);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-sub {
  border-top: 1px solid var(--border-hairline);
  padding-top: 20px;
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ==========================================================================
   RESPONSIVE DESIGN (MOBILE & TABLET)
   ========================================================================== */

@media (max-width: 900px) {
  .hero-stage {
    grid-template-columns: 1fr;
    padding: 24px;
    gap: 24px;
  }
  .stage-right {
    order: 2;
  }
  .stage-left {
    order: 1;
  }
  .hero-headline {
    font-size: 3.2rem;
  }
  .section-heading {
    font-size: 2.4rem;
  }
  .grid-3 {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .grid-2x2 {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 600px) {
  .island-links {
    display: none;
  }
  .dynamic-island {
    padding: 0 10px;
    gap: 10px;
  }
  .hero-headline {
    font-size: 2.4rem;
  }
  .hero-subline {
    font-size: 1rem;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .btn-primary, .btn-secondary {
    width: 100%;
  }
  .metrics-grid-2x2 {
    grid-template-columns: 1fr;
  }
  .gameplay-quote-row {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 18px;
    gap: 12px;
  }
  .footer-content {
    flex-direction: column;
    gap: 20px;
  }
  .footer-links {
    flex-wrap: wrap;
    gap: 12px;
  }
}
