/* ===================================
   VINLAND — Black & White
   =================================== */

:root {
  --bg: #000000;
  --bg-subtle: #080808;
  --bg-card: #0e0e0e;
  --text: #e8e8e8;
  --text-dim: #8a8a8a;
  --text-muted: #4a4a4a;
  --border: #1a1a1a;
  --white: #ffffff;
  --font-serif: 'Cormorant Garamond', serif;
  --font-jp: 'Noto Serif JP', serif;
  --font-body: 'Zen Antique Soft', serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  scrollbar-width: thin;
  scrollbar-color: #222 #000;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--white);
  color: var(--bg);
}

/* ===== ENTER SCREEN ===== */
.enter-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10001;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.enter-screen.fade-out {
  animation: smoothFadeOut 1.8s ease forwards;
}

.enter-screen.hidden {
  display: none;
}

.enter-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  image-rendering: high-quality;
}

.enter-dim {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  z-index: 1;
}

.enter-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.enter-jp {
  font-family: var(--font-jp);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.5em;
  margin-bottom: 1rem;
  animation: fadeInUp 1s ease 0.2s both;
}

.enter-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 2.5rem;
  animation: fadeInUp 1s ease 0.4s both;
}

.enter-btn {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.05rem;
  letter-spacing: 0.2em;
  padding: 1rem 4rem;
  cursor: pointer;
  transition: all 0.4s ease;
  animation: fadeInUp 1s ease 0.7s both;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.15), 0 0 40px rgba(255, 255, 255, 0.05);
}

.enter-btn:hover {
  border-color: var(--white);
  color: var(--white);
  background: rgba(255, 255, 255, 0.18);
  letter-spacing: 0.3em;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.25), 0 0 60px rgba(255, 255, 255, 0.1);
}

.enter-ca {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.2rem;
  animation: fadeInUp 1s ease 1s both;
}

.enter-ca-label {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  color: var(--text-dim);
  letter-spacing: 0.1em;
}

.enter-ca-address {
  font-family: monospace;
  font-size: 0.85rem;
  color: var(--white);
  letter-spacing: 0.05em;
  cursor: pointer;
}

.enter-ca-copy {
  background: none;
  border: none;
  color: var(--text-dim);
  cursor: pointer;
  padding: 0.2rem;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
}

.enter-ca-copy:hover {
  color: var(--white);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes smoothFadeOut {
  0% { opacity: 1; }
  100% { opacity: 0; pointer-events: none; }
}

/* ===== VIDEO OVERLAY ===== */
.video-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-overlay.fade-out {
  animation: videoFadeToSite 2.5s ease forwards;
}

@keyframes videoFadeToSite {
  0% { opacity: 1; }
  60% { opacity: 0.4; }
  100% { opacity: 0; pointer-events: none; }
}

.video-overlay.hidden {
  display: none;
}

.video-player {
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: high-quality;
}

.skip-btn {
  position: absolute;
  bottom: 3rem;
  right: 3rem;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-serif);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  padding: 0.7rem 1.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10001;
  backdrop-filter: blur(6px);
}

.skip-btn:hover {
  border-color: var(--white);
  color: var(--white);
  background: rgba(0, 0, 0, 0.8);
}

/* ===== SITE WRAPPER ===== */
.site-wrapper {
  opacity: 0;
  transition: opacity 2s ease;
}

.site-wrapper.visible {
  opacity: 1;
}

/* ===== INK OVERLAY ===== */
.ink-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 100;
  opacity: 0.02;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(255,255,255,0.02) 2px,
      rgba(255,255,255,0.02) 4px
    );
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 3rem;
  transition: all 0.4s ease;
  background: transparent;
}

.nav.scrolled {
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0.8rem 3rem;
}

.nav-brand {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-family: var(--font-serif);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--white);
  transition: width 0.3s ease;
}

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

.nav-links a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  letter-spacing: 0.1em;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  image-rendering: high-quality;
}

.hero-dim {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-bg-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  opacity: 0.03;
  background-image:
    linear-gradient(90deg, var(--text-muted) 1px, transparent 1px),
    linear-gradient(0deg, var(--text-muted) 1px, transparent 1px);
  background-size: 100px 100px;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 2rem;
}

.hero-jp {
  font-family: var(--font-jp);
  font-size: clamp(0.85rem, 1.8vw, 1.2rem);
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.6em;
  margin-bottom: 1.2rem;
  opacity: 0;
  transform: translateY(20px);
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(4rem, 12vw, 10rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  color: var(--white);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
}

.hero-divider {
  width: 50px;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
  margin: 0 auto 1.5rem;
  opacity: 0;
  transform: scaleX(0);
}

.hero-tagline {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2.2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(15px);
  font-weight: 600;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

/* Hero Buttons */
.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(15px);
  flex-wrap: wrap;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-serif);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  padding: 0.75rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
  cursor: pointer;
}

.hero-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.btn-x {
  padding: 0.75rem 1.2rem;
}

.btn-buy {
  background: rgba(255, 255, 255, 0.12);
  font-weight: 600;
}

.btn-howto {
  border-color: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.85);
}

/* CA Section */
.hero-ca {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  opacity: 0;
  transform: translateY(10px);
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.5rem 1.2rem;
  width: fit-content;
  margin: 0 auto;
}

.ca-label {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.1em;
  font-weight: 600;
}

.ca-address {
  font-family: monospace;
  font-size: 0.8rem;
  color: var(--white);
  letter-spacing: 0.03em;
  user-select: all;
}

.ca-copy {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  padding: 2px;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}

.ca-copy:hover {
  color: var(--white);
}

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  z-index: 3;
}

.scroll-indicator span {
  font-family: var(--font-serif);
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

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

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

/* ===== REVEAL ===== */
[data-reveal] {
  transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-reveal].revealed {
  opacity: 1 !important;
  transform: none !important;
}

.hero-divider.revealed {
  transform: scaleX(1) !important;
}

/* ===== TIKTOK SECTION ===== */
.tiktok-section {
  padding: 6rem 2rem;
  background: var(--bg);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.tiktok-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  image-rendering: high-quality;
}

.tiktok-dim {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  z-index: 1;
}

.tiktok-inner {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.tiktok-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.tiktok-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.tiktok-embed-wrapper {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  background: #111;
  border: 1px solid var(--border);
}

.tiktok-embed-wrapper iframe {
  width: 100%;
  height: 750px;
  border: none;
  display: block;
}

@media (max-width: 1200px) {
  .tiktok-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 600px) {
  .tiktok-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .tiktok-section {
    padding: 4rem 1rem;
  }

  .tiktok-embed-wrapper iframe {
    height: 650px;
  }
}

/* ===== SHARED SECTION BG VIDEO ===== */
.section-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  image-rendering: high-quality;
}

.section-bg-dim {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  z-index: 1;
}

/* ===== THORFINN SHOWCASE ===== */
.thorfinn-section {
  position: relative;
  overflow: hidden;
  padding: 8rem 2rem;
  border-top: 1px solid var(--border);
}

.thorfinn-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5rem;
  position: relative;
  z-index: 2;
}

.thorfinn-card {
  flex-shrink: 0;
  width: 380px;
  perspective: 1000px;
  cursor: default;
}

.thorfinn-card-inner {
  width: 100%;
  position: relative;
  transition: transform 0.1s ease-out;
  transform-style: preserve-3d;
  will-change: transform;
}

.thorfinn-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  pointer-events: none;
}

.thorfinn-shine {
  display: none;
}

.thorfinn-quote {
  flex: 1;
  max-width: 480px;
}

.thorfinn-quote-text {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.thorfinn-quote-cite {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--text-dim);
  font-style: normal;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .thorfinn-inner {
    flex-direction: column;
    gap: 3rem;
    text-align: center;
  }

  .thorfinn-card {
    width: 300px;
  }

  .thorfinn-quote-text {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .thorfinn-card {
    width: 260px;
  }

  .thorfinn-quote-text {
    font-size: 1.25rem;
  }

  .thorfinn-section {
    padding: 5rem 1.5rem;
  }
}

/* ===== TYPEWRITER QUOTES ===== */
.quotes-scroll {
  position: relative;
  overflow: hidden;
}

.quote-block {
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.quote-inner {
  display: flex;
  align-items: baseline;
  justify-content: center;
  max-width: 800px;
  position: relative;
  z-index: 2;
  min-height: 4em;
}

.quote-text {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.5;
  text-align: center;
  font-style: italic;
}

.quote-cursor {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  color: var(--white);
  animation: blink 0.7s step-end infinite;
  margin-left: 2px;
  opacity: 0;
  transition: opacity 0.2s;
  user-select: none;
}

.quote-block.active .quote-cursor {
  opacity: 1;
}

.quote-block.done .quote-cursor {
  opacity: 0;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.quote-cite {
  display: block;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dim);
  font-style: normal;
  letter-spacing: 0.1em;
  margin-top: 2rem;
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease 0.3s, transform 0.6s ease 0.3s;
}

.quote-block.done .quote-cite {
  opacity: 1;
  transform: none;
}

.quote-block::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 30px;
  height: 1px;
  background: var(--border);
}

.quote-block:last-child::after {
  display: none;
}

/* ===== HOW TO BUY ===== */
.howtobuy-section {
  padding: 6rem 2rem;
  background: var(--bg);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.howtobuy-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.howtobuy-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  text-align: center;
  margin-bottom: 0.8rem;
  letter-spacing: 0.04em;
}

.howtobuy-sub {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--text-dim);
  text-align: center;
  margin-bottom: 3.5rem;
}

.howtobuy-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.step {
  background: #0a0a0a;
  border: 1px solid var(--border);
  padding: 2rem;
  position: relative;
}

.step-number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.06);
  position: absolute;
  top: 0.8rem;
  right: 1.2rem;
  line-height: 1;
}

.step h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.8rem;
}

.step p {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--text-dim);
  line-height: 1.7;
}

.step a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.step a:hover {
  text-decoration: none;
}

.step strong {
  color: var(--white);
}

@media (max-width: 600px) {
  .howtobuy-steps {
    grid-template-columns: 1fr;
  }
}

/* ===== CHART SECTION ===== */
.chart-section {
  padding: 6rem 2rem;
  background: var(--bg);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.chart-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.chart-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: 0.04em;
}

.chart-embed {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  overflow: hidden;
}

.chart-embed iframe {
  width: 100%;
  height: 600px;
  border: none;
  display: block;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 4rem 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-brand {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.footer-divider {
  width: 30px;
  height: 1px;
  background: var(--border);
  margin: 0 auto 1.5rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  font-family: var(--font-serif);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-dot {
  color: var(--text-muted);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .mobile-menu { display: flex; }
  .nav { padding: 1rem 1.5rem; }
  .nav.scrolled { padding: 0.8rem 1.5rem; }

  .quote-block {
    padding: 3rem 1.5rem;
    min-height: 40vh;
  }

  .skip-btn {
    bottom: 2rem;
    right: 2rem;
    padding: 0.6rem 1.4rem;
  }
}

@media (max-width: 480px) {
  .hero-content { padding: 1rem; }
  .quote-block { padding: 3rem 1rem; }

  .footer-bottom {
    flex-direction: column;
    gap: 0.3rem;
  }

  .footer-dot { display: none; }

  .skip-btn {
    bottom: 1.5rem;
    right: 1.5rem;
  }
}
