/*
  MONORA GAMES — DAWNMERE
  Rockstar-inspired cinematic gaming website
  Pure black · full-bleed · dramatic · minimal
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Bebas+Neue&display=swap');

/* =============================================
   DESIGN TOKENS
   ============================================= */
:root {
  --black: #000000;
  --near-black: #0a0a0a;
  --dark-grey: #111111;
  --mid-grey: #1a1a1a;
  --border: #222222;
  --text-dim: #555555;
  --text-muted: #888888;
  --text-body: #aaaaaa;
  --text-light: #cccccc;
  --white: #ffffff;
  --accent: #d4202c;
  --accent-dim: rgba(212, 32, 44, 0.08);
  --accent-glow: rgba(212, 32, 44, 0.3);
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: none;
}

html::-webkit-scrollbar {
  display: none;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

/* =============================================
   NAVIGATION — Minimal Rockstar-style
   ============================================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 0 48px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.5s var(--ease-out-expo);
}

.nav::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 48px;
  right: 48px;
  height: 1px;
  background: rgba(255,255,255,0.06);
  transition: opacity 0.4s ease;
}

.nav.scrolled {
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
}

.nav.scrolled::after {
  left: 0;
  right: 0;
  background: rgba(255,255,255,0.08);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.15em;
  color: var(--white);
  position: relative;
  z-index: 101;
}

.nav-brand-mark {
  width: 36px;
  height: 36px;
  background: var(--accent);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  transition: transform 0.4s var(--ease-out-expo);
}

.nav-brand:hover .nav-brand-mark {
  transform: rotate(90deg);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.nav-menu a {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s ease;
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.4s var(--ease-out-expo);
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--white);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.nav-cta {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--accent);
  padding: 10px 24px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-cta:hover {
  background: var(--white);
  color: var(--black);
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 101;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: all 0.35s var(--ease-out-expo);
  transform-origin: center;
}

.nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* =============================================
   HERO — Full-screen cinematic
   ============================================= */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.05);
  transition: transform 12s linear;
}

.hero.loaded .hero-media img {
  transform: scale(1);
}

/* Dramatic vignette overlays */
.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, transparent 30%),
    linear-gradient(to top, var(--black) 0%, transparent 40%),
    linear-gradient(to right, rgba(0,0,0,0.4) 0%, transparent 30%),
    linear-gradient(to left, rgba(0,0,0,0.2) 0%, transparent 20%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 24px;
  margin-top: -5vh;
  max-width: 900px;
}

.hero-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(-15px);
  animation: fadeDown 1s var(--ease-out-expo) 0.6s forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(5rem, 12vw, 10rem);
  line-height: 0.9;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  opacity: 0;
  transform: scale(1.15);
  filter: blur(8px);
  animation: heroTitleIn 1.8s var(--ease-out-expo) 0.2s forwards;
}

.hero-subtitle-line {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-body);
  letter-spacing: 0.15em;
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp 1s var(--ease-out-expo) 0.9s forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s var(--ease-out-expo) 1.2s forwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 16px 36px;
  border: none;
  cursor: pointer;
  transition: all 0.35s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.btn-fill {
  background: var(--accent);
  color: var(--black);
}

.btn-fill:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(212, 32, 44, 0.25);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.05);
}

.btn svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}

.btn:hover svg {
  transform: translateX(3px);
}

.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out-expo) 1.3s forwards;
}

.scroll-hint span {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--text-muted), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* =============================================
   FULL-BLEED IMAGE SECTIONS (Rockstar style)
   ============================================= */
.showcase {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.showcase-media {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.showcase-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out-expo);
}

.showcase-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, var(--black) 0%, transparent 50%),
    linear-gradient(to bottom, var(--black) 0%, transparent 25%);
  pointer-events: none;
}

.showcase-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 0 80px 80px;
  max-width: 700px;
}

.showcase-content.right {
  left: auto;
  right: 0;
  margin-left: auto;
  text-align: right;
}

.showcase-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.showcase-heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 0.06em;
  line-height: 1;
  margin-bottom: 20px;
}

.showcase-desc {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-body);
  max-width: 520px;
}

.showcase-content.right .showcase-desc {
  margin-left: auto;
}

/* =============================================
   FEATURES STRIP
   ============================================= */
.features-strip {
  background: var(--near-black);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1400px;
  margin: 0 auto;
}

.feature-cell {
  padding: 64px 48px;
  border-right: 1px solid var(--border);
  position: relative;
  transition: background 0.4s ease;
}

.feature-cell:last-child {
  border-right: none;
}

.feature-cell:hover {
  background: var(--dark-grey);
}

.feature-cell::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.6s var(--ease-out-expo);
}

.feature-cell:hover::before {
  width: 100%;
}

.feature-number {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--border);
  line-height: 1;
  margin-bottom: 20px;
  transition: color 0.4s ease;
}

.feature-cell:hover .feature-number {
  color: var(--accent);
}

.feature-name {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
}

.feature-text {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
}

/* =============================================
   STUDIO SECTION
   ============================================= */
.studio-section {
  background: var(--black);
  padding: 120px 80px;
  position: relative;
}

.studio-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.studio-badge {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}

.studio-logo-container {
  width: 80px;
  height: 80px;
  background: var(--accent);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.studio-logo-letter {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--black);
}

.studio-name {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  letter-spacing: 0.06em;
  line-height: 1;
}

.studio-philosophy {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-body);
}

.studio-values {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 1px solid var(--border);
}

.value-item {
  padding: 28px 32px;
  border-bottom: 1px solid var(--border);
  transition: all 0.35s ease;
  cursor: default;
}

.value-item:last-child {
  border-bottom: none;
}

.value-item:hover {
  background: var(--accent-dim);
  padding-left: 40px;
}

.value-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}

.value-desc {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.6;
}

/* =============================================
   VALUES SECTION — 4-card grid
   ============================================= */
.values-section {
  background: var(--near-black);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 120px 80px;
}

.values-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.values-heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 0.06em;
  text-align: center;
  margin-bottom: 64px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.values-card {
  padding: 40px 32px;
  border-right: 1px solid var(--border);
  position: relative;
  transition: all 0.4s ease;
}

.values-card:last-child {
  border-right: none;
}

.values-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.6s var(--ease-out-expo);
}

.values-card:hover {
  background: rgba(255,255,255,0.02);
}

.values-card:hover::before {
  width: 100%;
}

.values-card-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
}

.values-card-text {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
}

/* =============================================
   SIGN-UP SECTION — Dramatic full-width
   ============================================= */
.signup-section {
  position: relative;
  background: var(--near-black);
  border-top: 1px solid var(--border);
  padding: 120px 80px;
  text-align: center;
  overflow: hidden;
}

.signup-section::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0.4;
}

.signup-inner {
  position: relative;
  z-index: 1;
  max-width: 580px;
  margin: 0 auto;
}

.signup-heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.signup-desc {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}

.signup-form {
  display: flex;
  gap: 0;
  max-width: 500px;
  margin: 0 auto;
  border: 1px solid var(--border);
  background: var(--black);
  transition: border-color 0.3s ease;
}

.signup-form:focus-within {
  border-color: var(--accent);
}

.signup-input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 16px 20px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  outline: none;
}

.signup-input::placeholder {
  color: var(--text-dim);
}

.signup-submit {
  background: var(--accent);
  color: var(--black);
  border: none;
  padding: 16px 28px;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.signup-submit:hover {
  background: var(--white);
}

.form-msg {
  margin-top: 16px;
  font-size: 0.8rem;
  font-weight: 500;
  min-height: 22px;
  transition: opacity 0.3s ease;
}

.form-msg.success {
  color: var(--accent);
}

.form-msg.error {
  color: #ff4444;
}

/* =============================================
   FOOTER — Clean & minimal
   ============================================= */
.footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 60px 80px 40px;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 40px;
}

.footer-brand-area {
  max-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}

.footer-logo-mark {
  width: 24px;
  height: 24px;
  background: var(--accent);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.footer-tagline {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  color: var(--text-dim);
  transition: all 0.3s ease;
}

.social-icon:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.social-icon svg {
  width: 14px;
  height: 14px;
}

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

.footer-col h5 {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text-dim);
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy {
  font-size: 0.72rem;
  color: var(--text-dim);
  font-weight: 400;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 0.72rem;
  color: var(--text-dim);
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: var(--text-muted);
}
/* =============================================
   ARTICLE / LEGAL PAGES
   ============================================= */
.page-header {
  padding: 160px 80px 80px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  background: var(--near-black);
}

.page-header-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.page-header-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 0.06em;
}

.page-header-meta {
  margin-top: 16px;
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text-dim);
}

.article {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 32px 120px;
}

.article h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  margin-top: 48px;
  margin-bottom: 16px;
  color: var(--white);
}

.article h3 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 32px;
  margin-bottom: 12px;
}

.article p {
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-body);
  margin-bottom: 16px;
}

.article ul, .article ol {
  margin: 0 0 16px 20px;
  color: var(--text-body);
}

.article li {
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.85;
  margin-bottom: 6px;
}

.article a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.article a:hover {
  color: var(--white);
}

.article hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 48px 0;
}

.article strong {
  color: var(--text-light);
  font-weight: 600;
}

/* Back link */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 48px;
  transition: color 0.2s ease;
}

.back-link:hover {
  color: var(--accent);
}

.back-link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}

.back-link:hover svg {
  transform: translateX(-3px);
}

/* Journal-specific */
.journal-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 16px;
}

.journal-entry {
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.journal-entry:first-child {
  padding-top: 0;
}

.journal-entry:last-child {
  border-bottom: none;
}

.journal-date {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.journal-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
  color: var(--white);
}

.journal-excerpt {
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.journal-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color 0.2s ease;
}

.journal-read-more:hover {
  color: var(--accent);
}

.journal-read-more svg {
  width: 12px;
  height: 12px;
  transition: transform 0.3s ease;
}

.journal-read-more:hover svg {
  transform: translateX(3px);
}

/* Cookie toggle */
.cookie-group {
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}

.cookie-group:last-child {
  border-bottom: none;
}

.cookie-info {
  flex: 1;
}

.cookie-name {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.cookie-desc {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.6;
}

.toggle {
  position: relative;
  width: 48px;
  height: 26px;
  flex-shrink: 0;
}

.toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--border);
  border-radius: 13px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.toggle-slider::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  left: 3px;
  bottom: 3px;
  background: var(--white);
  border-radius: 50%;
  transition: transform 0.3s var(--ease-out-expo);
}

.toggle input:checked + .toggle-slider {
  background: var(--accent);
}

.toggle input:checked + .toggle-slider::before {
  transform: translateX(22px);
}

.toggle input:disabled + .toggle-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-save-btn {
  margin-top: 40px;
  display: inline-flex;
}

/* Article page responsive */
@media (max-width: 768px) {
  .page-header { padding: 120px 24px 48px; }
  .article { padding: 48px 24px 80px; }
  .cookie-group { flex-direction: column; align-items: flex-start; gap: 16px; }
}

/* =============================================
   SCROLL REVEAL SYSTEM
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: all 1.2s var(--ease-out-expo);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* =============================================
   KEYFRAMES
   ============================================= */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeDown {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroTitleIn {
  to {
    opacity: 1;
    transform: scale(1);
    filter: blur(0px);
  }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.3; transform: scaleY(0.6); transform-origin: top; }
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .nav { padding: 0 32px; }
  .showcase-content { padding: 0 48px 60px; }
  .showcase-content.right { text-align: left; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-cell { border-right: none; border-bottom: 1px solid var(--border); }
  .feature-cell:last-child { border-bottom: none; }
  .studio-inner { grid-template-columns: 1fr; gap: 48px; }
  .studio-section { padding: 80px 48px; }
  .values-section { padding: 80px 48px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .values-card:nth-child(2) { border-right: none; }
  .values-card:nth-child(1), .values-card:nth-child(2) { border-bottom: 1px solid var(--border); }
  .signup-section { padding: 80px 48px; }
  .footer { padding: 48px; }
}

@media (max-width: 768px) {
  .nav { padding: 0 24px; height: 64px; }
  .nav-toggle { display: flex; }

  .nav-menu {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.97);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
  }

  .nav-menu.open {
    opacity: 1;
    pointer-events: all;
  }

  .nav-menu a {
    font-size: 1rem;
    letter-spacing: 0.3em;
  }

  .nav-cta { display: none; }

  .hero-content { padding: 0 24px 8vh; }

  .showcase-content {
    padding: 0 24px 48px;
    max-width: 100%;
  }
  .showcase-content.right {
    text-align: left;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }

  .btn { width: 100%; justify-content: center; }

  .features-grid { grid-template-columns: 1fr; }
  .feature-cell { padding: 40px 24px; }

  .studio-section { padding: 64px 24px; }
  .studio-inner { gap: 40px; }

  .values-section { padding: 64px 24px; }
  .values-grid { grid-template-columns: 1fr; }
  .values-card { border-right: none; border-bottom: 1px solid var(--border); }
  .values-card:last-child { border-bottom: none; }

  .signup-section { padding: 64px 24px; }

  .signup-form {
    flex-direction: column;
  }

  .signup-submit {
    padding: 16px;
  }

  .footer { padding: 40px 24px; }
  .footer-top { flex-direction: column; gap: 32px; }
  .footer-links-area { gap: 40px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 4rem; }
  .showcase-heading { font-size: 2rem; }
  .footer-links-area { flex-direction: column; gap: 32px; }
}
