﻿/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
  /* Colors */
  --bg-dark: #070709;
  --bg-card: rgba(18, 18, 24, 0.6);
  --bg-card-hover: rgba(26, 26, 36, 0.8);
  
  --primary: #b7ff38; /* Acid lime */
  --primary-hover: #92df19;
  --primary-bright: #c6ff65;
  --primary-glow: rgba(183, 255, 56, 0.15);
  --ink: #0a0b09;

  --accent-cyan: #d9ff85;
  --accent-green: #b7ff38;

  --text-white: #f4f4f0;
  --text-muted: #a7aa9f;
  --text-dark: #797c72;

  --border-color: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.15);

  /* Fonts */
  --font-heading: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-body: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  
  /* Max width */
  --container-max: 1200px;
  --container-narrow: 760px;
  
  /* Transitions */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s ease;
}

/* ==========================================================================
   BASE & RESET
   ========================================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  overflow-x: clip;
  background-color: var(--bg-dark);
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  overflow-x: clip;
  line-height: 1.6;
}

/* Paper grain — folk.app-style texture on the black background, kept faint */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
}

/* The header's backdrop blur masks the body grain, so it carries a local copy
   (painted above its bg, below the nav content) */
.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
}

body::before,
.site-header::before {
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='280' height='280'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='280' height='280' filter='url(%23g)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 280px 280px;
  opacity: 0.11;
}

.skip-link {
  position: fixed;
  z-index: 1100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  background: var(--primary);
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
}

/* Ambient glow blobs */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  z-index: -1;
  pointer-events: none;
  opacity: 0.22;
}

.orb-1 {
  top: -10%;
  left: 20%;
  width: 40vw;
  height: 40vw;
  background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
}

.orb-2 {
  top: 40%;
  right: -10%;
  width: 35vw;
  height: 35vw;
  background: radial-gradient(circle, var(--accent-cyan) 0%, transparent 75%);
  opacity: 0.3;
}

.orb-3 {
  bottom: 10%;
  left: -5%;
  width: 45vw;
  height: 45vw;
  background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
  opacity: 0.25;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.045em;
  color: var(--text-white);
}

h1 {
  font-size: clamp(2.7rem, 5.4vw, 4.6rem);
  letter-spacing: -0.05em;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
  margin-bottom: 1.25rem;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.subhead {
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  line-height: 1.5;
  font-weight: 400;
  margin-bottom: 2.25rem;
}

.body-lead {
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  line-height: 1.45;
  font-weight: 500;
  color: var(--text-white);
  margin-bottom: 1.5rem;
}

.accent-text {
  color: var(--primary);
}

/* Metallic blue text with a moving shine sweep */
.metallic-blue {
  background: linear-gradient(110deg,
    #4da9ff 0%,
    #8fd0ff 18%,
    #f0faff 32%,
    #b5e2ff 42%,
    #3d9bff 58%,
    #7fc6ff 76%,
    #e6f6ff 88%,
    #4da9ff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-weight: 700;
  filter: drop-shadow(0 0 14px rgba(77, 169, 255, 0.45));
  animation: metallic-shine 3.5s linear infinite;
}

@keyframes metallic-shine {
  to { background-position: -200% center; }
}

@media (prefers-reduced-motion: reduce) {
  .metallic-blue { animation: none; }
}

/* Mono uppercase section labels, e.g. "01 / THE PROBLEM" */
.section-tag {
  font-family: var(--font-mono);
  font-size: clamp(0.65rem, 0.8vw, 0.76rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1.25rem;
}

/* Hollow display word with acid stroke */
.outlined-word {
  color: var(--primary);
}

@supports (-webkit-text-stroke: 2px black) {
  .outlined-word {
    color: transparent;
    -webkit-text-stroke: 2px var(--primary);
  }
}


/* ==========================================================================
   COMPONENTS: BUTTONS & GLASS PANELS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.01em;
  padding: 0.8rem 1.85rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-decoration: none;
  font-size: 0.95rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-primary {
  background: var(--primary);
  color: var(--ink);
  border-color: var(--primary);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--primary-bright);
  border-color: var(--primary-bright);
  box-shadow: 0 0 25px var(--primary-glow), 0 8px 24px rgba(183, 255, 56, 0.25);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-white);
  border-color: var(--border-color);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.btn-large {
  padding: 1rem 2.25rem;
  font-size: 1.1rem;
}

.btn-full {
  width: 100%;
}

.glass-panel {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  transition: var(--transition-smooth);
}

/* ==========================================================================
   LAYOUT
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
}

.container-narrow {
  max-width: var(--container-narrow);
  padding: 0 1.5rem;
}

.section {
  padding: clamp(4rem, 8vw, 8rem) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.section-header {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}

.section-subtext {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* ==========================================================================
   COUNTRY BAR
   ========================================================================== */
.country-bar {
  background: var(--primary);
  text-align: center;
  padding: 0.55rem 1rem;
}

.country-bar a {
  color: var(--ink);
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0;
}

.country-bar-arrow {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.country-bar a:hover .country-bar-arrow {
  text-decoration: none;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 7, 9, 0.7);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  padding: 1.25rem 0;
}

.header-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--text-white);
}

.logo-slash {
  color: var(--primary);
  font-family: var(--font-mono);
  font-weight: 400;
  transform: translateY(-1px);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.main-nav a {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.main-nav a + a {
  margin-left: 2rem;
}

.main-nav a:hover {
  color: var(--text-white);
}

.main-nav .format-library-nav {
  padding: 0.48rem 0.78rem;
  border: 1px solid rgba(183, 255, 56, 0.38);
  border-radius: 8px;
  background: rgba(183, 255, 56, 0.055);
  color: var(--primary);
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: none;
}

.main-nav .format-library-nav:hover {
  border-color: var(--primary);
  background: rgba(183, 255, 56, 0.11);
  color: var(--primary-bright);
}

.formats-page .main-nav .format-library-nav {
  background: var(--primary);
  color: var(--ink);
}

.formats-page .main-nav .format-library-nav:hover {
  background: var(--primary-bright);
  color: var(--ink);
}

.menu-toggle,
.mobile-nav-actions {
  display: none;
}

#problem,
#formats,
#how-it-works,
#faq,
#format-library,
#book-a-call {
  scroll-margin-top: 7rem;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  z-index: 0;
  height: 722px;
  padding: clamp(3.5rem, 6vw, 6rem) 0 0 0;
  overflow: hidden;
  isolation: isolate;
}

.hero-section::before,
.hero-section::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.hero-section::before {
  background: linear-gradient(180deg, rgba(7, 7, 9, 0.86) 0%, rgba(7, 7, 9, 0.3) 28%, rgba(7, 7, 9, 0.15) 52%, rgba(7, 7, 9, 0.78) 74%, #070709 90%);
}

.hero-section::after {
  background: linear-gradient(90deg, rgba(7, 7, 9, 0.55) 0%, transparent 35%, transparent 65%, rgba(7, 7, 9, 0.55) 100%);
}

.hero-hill-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  filter: saturate(0.95) brightness(0.72);
  transform: scale(1.01);
}

.hero-darken {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: #070709;
  opacity: 0;
  pointer-events: none;
  will-change: opacity;
}

.hero-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 3;
  text-align: center;
}

.hero-content {
  width: min(920px, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-content h1 {
  max-width: 920px;
  font-size: clamp(3rem, 7vw, 90px);
  letter-spacing: -0.06em;
  line-height: 0.95;
  margin-bottom: 1rem;
}

.hero-content .subhead {
  max-width: 760px;
  font-size: clamp(1.25rem, 1.75vw, 1.44rem);
  color: rgba(244, 244, 240, 0.82);
  margin-bottom: 1.25rem;
}

.hero-subhead-link {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
  transition: color 0.15s ease;
}

.hero-subhead-link:hover {
  color: var(--primary-bright);
}

.eyebrow-badge {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: 1.4rem;
  padding-top: 0.5rem;
}

.hero-cta-wrapper {
  margin-bottom: 1.1rem;
}

.trust-box {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  max-width: 580px;
}

.hero-section .trust-box {
  display: none;
}

.trust-avatar {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-cyan) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
  border: 2px solid var(--border-color);
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.avatar-fallback {
  font-family: var(--font-heading);
}

.trust-line {
  font-size: 0.925rem;
  line-height: 1.5;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ==========================================================================
   SECTION 1.5: CREATIVE SHOWCASE STRIP (MARQUEE)
   ========================================================================== */
.marquee-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 3rem 0;
  /* Opaque pitch black so the band melts into the hero video fade (no grain bleed-through) */
  background-color: #070709;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.marquee-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 1.5rem 0;
  /* Gradient masks to melt ends into the dark background */
  -webkit-mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
  mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
}

.marquee-disclaimer {
  max-width: var(--container-max);
  margin: 1.6rem auto 0;
  padding: 0 2rem;
  color: rgba(255, 255, 255, 0.26);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.02em;
  text-align: center;
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 1.25rem;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  animation: marquee-scroll 48s linear infinite;
}

.marquee-track--formats {
  animation-duration: 65s;
}

/* Pause scroll on hover */
@media (hover: hover) {
  .marquee-track:hover {
    animation-play-state: paused;
  }
}

.marquee-card {
  width: 260px;
  aspect-ratio: 9/16;
  flex-shrink: 0;
  background: rgba(18, 18, 24, 0.5);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  position: relative;
  transition: var(--transition-smooth);
}

.marquee-card:hover {
  transform: scale(1.02);
  border-color: var(--primary);
  box-shadow: 0 15px 35px rgba(183, 255, 56, 0.15);
}

.card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
  background: radial-gradient(circle at center, rgba(183, 255, 56, 0.05) 0%, transparent 70%);
}

.placeholder-icon {
  font-size: 2.25rem;
  color: var(--primary);
  opacity: 0.6;
  margin-bottom: 1rem;
}

.placeholder-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-white);
}

.placeholder-desc {
  font-size: 0.8rem;
  color: var(--text-dark);
}

.card-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Animation keyframe */
@keyframes marquee-scroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(calc(-50% - 0.625rem), 0, 0); /* Loop offset matching half width + gap */
  }
}

/* prefers-reduced-motion fallback */
@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
    overflow-x: auto;
    width: 100%;
    scroll-snap-type: x mandatory;
    padding: 0 2rem;
  }
  
  .marquee-card {
    scroll-snap-align: start;
  }
  
  .marquee-container {
    -webkit-mask-image: none;
    mask-image: none;
  }
}

/* ==========================================================================
   SECTION 2 &mdash; THE PROBLEM
   ========================================================================== */
.problem-section {
  background: radial-gradient(ellipse 50% 50% at 50% 50%, rgba(183, 255, 56, 0.03) 0%, transparent 100%);
}

.problem-section .section-tag {
  text-align: center;
}

.problem-section h2 {
  text-align: center;
  margin-bottom: 2.5rem;
}

.problem-content {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.card-video-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  filter: blur(28px) brightness(0.48) saturate(0.9);
  transform: scale(1.22);
  pointer-events: none;
}

.card-video-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(7, 7, 9, 0.52) 0%, rgba(7, 7, 9, 0.72) 100%);
  pointer-events: none;
}

.read-more-wrapper {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.read-more-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.read-more-link:hover {
  color: var(--accent-green);
}

.link-arrow {
  transition: transform 0.2s ease;
}

.read-more-link:hover .link-arrow {
  transform: translateX(4px);
}

/* ==========================================================================
   SECTION 3 &mdash; HOW IT WORKS
   ========================================================================== */
.workflow-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.step-card {
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* Card Spotlight: cursor-following mask revealing an animated emerald/cyan dot grid. */
.step-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  background-color: rgba(23, 25, 34, 0.9);
  background-image:
    radial-gradient(circle, rgba(183, 255, 56, 0.85) 1px, transparent 1.6px),
    radial-gradient(circle, rgba(244, 244, 240, 0.4) 1px, transparent 1.6px);
  background-size: 12px 12px, 12px 12px;
  background-position: 0 0, 6px 6px;
  animation: spotlight-dots 6s linear infinite;
  -webkit-mask-image: radial-gradient(240px circle at var(--mx, 50%) var(--my, 50%), #000 0%, transparent 75%);
  mask-image: radial-gradient(240px circle at var(--mx, 50%) var(--my, 50%), #000 0%, transparent 75%);
}

.step-card:hover::before {
  opacity: 1;
}

.step-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-5px);
}

@keyframes spotlight-dots {
  from { background-position: 0 0, 6px 6px; }
  to   { background-position: 0 12px, 6px -6px; }
}

@media (prefers-reduced-motion: reduce) {
  .step-card::before { animation: none; }
}

.step-num {
  font-family: var(--font-mono);
  font-size: 2.1rem;
  font-weight: 700;
  color: rgba(183, 255, 56, 0.5);
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  line-height: 1;
  z-index: 2;
}

.step-card h3 {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

/* Objection cards: mono tag replaces the corner number */
.step-card .section-tag {
  position: relative;
  z-index: 2;
  margin-bottom: 0.85rem;
}

.objection-grid .step-card h3 {
  margin-top: 0;
}

.step-card p {
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  position: relative;
  z-index: 2;
}

/* ==========================================================================
   SECTION 4 &mdash; WHAT YOU GET
   ========================================================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.features-grid--fi-order .feature-card:nth-child(1) { order: 2; }
.features-grid--fi-order .feature-card:nth-child(2) { order: 4; }
.features-grid--fi-order .feature-card:nth-child(3) { order: 3; }
.features-grid--fi-order .feature-card:nth-child(4) { order: 5; }
.features-grid--fi-order .feature-card:nth-child(5) { order: 1; }
.features-grid--fi-order .feature-card:nth-child(6) { order: 6; }

.feature-card {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  align-items: flex-start;
  transition: var(--transition-smooth);
}

.feature-card:hover {
  background: var(--bg-card);
  border-color: var(--border-hover);
  transform: translateX(4px);
}

.feature-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: rgba(183, 255, 56, 0.08);
  border: 1px solid rgba(183, 255, 56, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.feature-icon svg {
  width: 20px;
  height: 20px;
}

.feature-card h3 {
  font-size: 1.05rem;
  line-height: 1.4;
  margin-bottom: 0;
  font-weight: 500;
  color: var(--text-white);
  padding-top: 0.25rem;
}

/* ==========================================================================
   SECTION 5 &mdash; SAMPLE WORK (GRID)
   ========================================================================== */
.sample-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.grid-card {
  aspect-ratio: 4/5;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.grid-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 15px 30px rgba(183, 255, 56, 0.12);
}

.grid-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
  background: radial-gradient(circle at center, rgba(183, 255, 56, 0.03) 0%, transparent 80%);
}

.grid-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.15rem;
  margin-top: 0.75rem;
  margin-bottom: 0.25rem;
  color: var(--text-white);
}

.grid-desc {
  font-size: 0.85rem;
  color: var(--text-dark);
}

.sample-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sample-tag {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: rgba(7, 7, 9, 0.8);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-color);
  padding: 0.35rem 0.75rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* ==========================================================================
   SECTION 6 &mdash; BIO SECTION
   ========================================================================== */
.bio-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.bio-visual {
  display: flex;
  justify-content: center;
}

.bio-avatar-container {
  position: relative;
  width: 220px;
  height: 220px;
}

.avatar-glow {
  position: absolute;
  inset: -15px;
  background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
  filter: blur(20px);
  opacity: 0.4;
  z-index: 1;
}

.bio-avatar {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-card) 0%, #1e1e24 100%);
  border: 3px solid var(--border-color);
  z-index: 2;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.bio-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.bio-content h2 {
  margin-bottom: 1.5rem;
}

/* ==========================================================================
   SECTION 7 &mdash; THE OFFER CARD
   ========================================================================== */
.offer-section {
  padding: 5rem 0;
}

.offer-card {
  padding: clamp(3rem, 6vw, 4.5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.offer-glow {
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(183, 255, 56, 0.15) 0%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
}

.offer-card h2 {
  margin-bottom: 1.5rem;
}

.offer-card p {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem;
}

/* ==========================================================================
   SECTION 8 &mdash; FAQ (ACCORDION)
   ========================================================================== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 3rem;
}

.faq-item {
  border: 1px solid var(--border-color);
  background: rgba(255, 255, 255, 0.01);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.02);
  border-color: var(--border-hover);
}

.faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  color: var(--text-white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  text-align: left;
  cursor: pointer;
  outline: none;
}

.faq-icon {
  font-family: var(--font-mono);
  font-size: 1.35rem;
  color: var(--primary);
  font-weight: 400;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  line-height: 1;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-content p {
  padding: 0 1.5rem 1.5rem 1.5rem;
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Active FAQ Item State */
.faq-item.active {
  background: var(--bg-card);
  border-color: rgba(183, 255, 56, 0.2);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--text-white);
}

/* ==========================================================================
   FORMAT LIBRARY ENTRY
   ========================================================================== */
.format-entry-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 48%, rgba(183, 255, 56, 0.08), transparent 28rem),
    #070709;
}

.format-entry-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(400px, 0.75fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
  padding: clamp(2.5rem, 5vw, 5rem);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(19, 22, 17, 0.96), rgba(8, 9, 8, 0.98));
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.32);
}

.format-entry-copy {
  position: relative;
  z-index: 2;
}

.format-entry-copy h2 {
  max-width: 720px;
}

.format-entry-copy p {
  max-width: 650px;
  margin-bottom: 2rem;
}

.format-entry-visual {
  position: relative;
  min-height: 440px;
}

.format-entry-card {
  position: absolute;
  overflow: hidden;
  width: 190px;
  aspect-ratio: 9 / 16;
  border: 1px solid rgba(183, 255, 56, 0.22);
  border-radius: 16px;
  background: #11140e;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.44);
}

.format-entry-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.format-entry-card-one {
  z-index: 1;
  top: 2.8rem;
  left: 0;
  transform: rotate(-8deg);
  opacity: 0.72;
}

.format-entry-card-two {
  z-index: 3;
  top: 0;
  left: 50%;
  transform: translateX(-50%) rotate(2deg);
}

.format-entry-card-three {
  z-index: 2;
  top: 3.6rem;
  right: 0;
  transform: rotate(8deg);
  opacity: 0.8;
}

/* ==========================================================================
   BOOK A CALL
   ========================================================================== */
.booking-section {
  position: relative;
  background: #070709;
}

.booking-panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.7fr);
  align-items: end;
  gap: clamp(2.5rem, 6vw, 6rem);
  padding: clamp(2.4rem, 5vw, 4.8rem);
  border: 1px solid rgba(183, 255, 56, 0.2);
  border-radius: 24px;
  background:
    radial-gradient(circle at 82% 15%, rgba(183, 255, 56, 0.13), transparent 23rem),
    linear-gradient(145deg, #11140e, #090a09 62%);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.booking-panel::after {
  content: '';
  position: absolute;
  z-index: -1;
  right: -5rem;
  bottom: -8rem;
  width: 20rem;
  height: 20rem;
  border: 1px solid rgba(183, 255, 56, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 4rem rgba(183, 255, 56, 0.025);
}

.booking-heading,
.booking-copy {
  position: relative;
  z-index: 1;
}

.booking-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.booking-copy {
  max-width: 470px;
  justify-self: end;
}

.booking-copy p {
  margin-bottom: 0;
}

.cal-embed {
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
  width: 100%;
  min-height: 620px;
  margin-top: 1rem;
  /* Generous white gutter so the calendar isn't flush to the card edge */
  padding: clamp(1.25rem, 3vw, 2.5rem);
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.cal-embed noscript {
  display: flex;
  height: 620px;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   SECTION 9 &mdash; FOOTER & CTA
   ========================================================================== */
.site-footer {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 6rem 0 4rem 0;
  background: rgba(5, 5, 7, 0.8);
  border-top: 1px solid var(--border-color);
}

.footer-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  filter: blur(14px) brightness(0.5) saturate(0.85);
  transform: scale(1.12); /* hide blurred edge fringing */
}

.footer-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, #070709 0%, rgba(7, 7, 9, 0.45) 35%, rgba(7, 7, 9, 0.55) 100%);
  pointer-events: none;
}

.site-footer h2 {
  margin-bottom: 2rem;
}

.footer-cta-wrapper {
  margin-bottom: 2.5rem;
}

.footer-contact {
  margin-bottom: 2.5rem;
}

.email-link {
  color: var(--text-white);
  font-weight: 500;
  text-decoration: none;
  font-size: 1.1rem;
  position: relative;
  transition: var(--transition-fast);
}

.email-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--primary);
  transform: scaleX(0.5);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.email-link:hover {
  color: var(--primary);
}

.email-link:hover::after {
  transform: scaleX(1);
}

.copyright {
  font-size: 0.85rem;
  color: var(--text-dark);
}

/* ==========================================================================
   FORM MODAL OVERLAY
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7, 7, 9, 0.85);
  backdrop-filter: blur(12px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-box {
  width: 100%;
  max-width: 520px;
  padding: 2.5rem;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(20px);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.active .modal-box {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: transparent;
  border: none;
  font-size: 2rem;
  color: var(--text-dark);
  cursor: pointer;
  line-height: 1;
  transition: var(--transition-fast);
  outline: none;
}

.modal-close:hover {
  color: var(--text-white);
}

.modal-box h2 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.modal-subtitle {
  font-size: 0.9rem;
  margin-bottom: 2rem;
  line-height: 1.45;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  color: var(--text-white);
}

.field-hint {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-dark);
  line-height: 1.4;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="url"],
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-fast);
  outline: none;
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath fill='%23a7aa9f' d='M6 8.5L1.5 4h9z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px;
  padding-right: 2.5rem;
}

.form-group select option {
  background: var(--bg-dark);
  color: var(--text-white);
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="url"]:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 0 10px rgba(183, 255, 56, 0.15);
}

.form-error {
  color: #ff6b6b;
  font-size: 0.88rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 107, 107, 0.3);
  border-radius: 8px;
  background: rgba(255, 107, 107, 0.08);
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.file-dropzone {
  position: relative;
  width: 100%;
  border: 2px dashed var(--border-color);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.01);
  transition: var(--transition-smooth);
  cursor: pointer;
}

.file-dropzone:hover {
  border-color: var(--primary);
  background: rgba(183, 255, 56, 0.02);
}

.file-dropzone input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.dropzone-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  pointer-events: none;
}

.dropzone-icon {
  font-size: 1.75rem;
  color: var(--primary);
}

.file-size-limit {
  font-size: 0.75rem;
  color: var(--text-dark);
}

/* Success Overlay Styles */
.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(183, 255, 56, 0.1);
  color: var(--primary);
  border: 2px solid var(--primary);
  font-size: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-weight: bold;
}

.hidden {
  display: none !important;
}

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVENESS)
   ========================================================================== */
@media (max-width: 992px) {
  .hero-section {
    height: 820px;
  }

  .trust-box {
    margin: 0 auto;
  }
  
  .bio-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .bio-visual {
    order: -1;
  }
  
  .header-cta {
    display: none;
  }

  .menu-toggle {
    position: relative;
    display: block;
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    border: 1px solid var(--border-color);
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.035);
    color: var(--text-white);
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
  }

  .menu-toggle:hover {
    border-color: rgba(183, 255, 56, 0.35);
    background: rgba(183, 255, 56, 0.06);
  }

  .menu-toggle span {
    position: absolute;
    left: 12px;
    width: 20px;
    height: 2px;
    border-radius: 99px;
    background: currentColor;
    transition: transform 0.22s ease, top 0.22s ease;
  }

  .menu-toggle span:first-child {
    top: 17px;
  }

  .menu-toggle span:last-child {
    top: 26px;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    top: 21px;
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    top: 21px;
    transform: rotate(-45deg);
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 0.8rem);
    right: 0;
    left: 0;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 1rem;
    border: 1px solid rgba(183, 255, 56, 0.16);
    border-radius: 16px;
    background: rgba(12, 13, 12, 0.98);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.48);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  }

  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav > a {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 0 0.65rem;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-white);
  }

  .main-nav > .format-library-nav {
    min-height: 46px;
    justify-content: center;
    margin-top: 0.75rem;
    border: 1px solid rgba(183, 255, 56, 0.38);
    color: var(--primary);
  }

  .main-nav a + a {
    margin-left: 0;
  }

  .mobile-nav-actions {
    display: grid;
    gap: 0.75rem;
    padding-top: 1rem;
  }

  .mobile-nav-actions .btn {
    width: 100%;
    min-height: 48px;
    justify-content: center;
  }

  .main-nav .btn-primary,
  .main-nav .btn-primary:hover {
    color: var(--ink);
  }

  .main-nav .btn-secondary,
  .main-nav .btn-secondary:hover {
    color: var(--text-white);
  }

  .booking-panel {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .format-entry-panel {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .format-entry-visual {
    width: min(100%, 520px);
    min-height: 420px;
    margin: 0 auto;
  }

  .booking-copy {
    justify-self: start;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.25rem;
  }

  .hero-section {
    height: 760px;
    padding-top: 3rem;
  }

  .hero-hill-bg {
    background-size: auto 100%;
    background-position: center bottom;
  }
  
  .step-card {
    padding: 2rem 1.5rem;
  }
  
  .marquee-card {
    width: 200px; /* Slightly smaller on mobile to keep it smooth */
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .sample-grid {
    grid-template-columns: 1fr;
  }

  .booking-panel {
    padding: 2rem 1.5rem;
    border-radius: 18px;
  }

  .format-entry-panel {
    padding: 2rem 1.5rem;
    border-radius: 18px;
  }

  .format-entry-visual {
    min-height: 330px;
  }

  .format-entry-card {
    width: 145px;
    border-radius: 12px;
  }
}

@media (max-width: 420px) {
  .header-container {
    padding: 0 1rem;
  }

  .logo {
    font-size: 1.1rem;
    gap: 0.35rem;
  }

  .mobile-nav-actions .btn-secondary {
    padding: 0.65rem 1rem;
    font-size: 0.85rem;
  }

  .hero-section {
    height: 710px;
  }

}

/* ==========================================================================
   FORMAT LIBRARY PAGE
   ========================================================================== */
.formats-page {
  overflow-x: hidden;
  background:
    radial-gradient(circle at 85% 9%, rgba(183, 255, 56, 0.07), transparent 25rem),
    var(--bg-dark);
}

.formats-page .site-header {
  top: 0;
}

.formats-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-color);
}

.formats-hero::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 13rem;
  background: linear-gradient(transparent, var(--bg-dark));
  pointer-events: none;
}

.formats-hero-grid {
  min-height: min(760px, calc(100vh - 112px));
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
  padding-top: clamp(5rem, 9vw, 8rem);
  padding-bottom: clamp(6rem, 10vw, 9rem);
}

.formats-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.formats-hero-copy h1 {
  font-size: clamp(3.2rem, 6.2vw, 6.3rem);
  max-width: 850px;
}

.formats-hero-copy .subhead {
  max-width: 650px;
}

.formats-hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.format-text-link {
  border: 0;
  background: transparent;
  color: var(--text-muted);
  font: 600 0.95rem var(--font-body);
  cursor: pointer;
  padding: 0.8rem 0;
  transition: var(--transition-fast);
}

.format-text-link span {
  display: inline-block;
  color: var(--primary);
  margin-left: 0.3rem;
  transition: transform 0.2s ease;
}

.format-text-link:hover {
  color: var(--text-white);
}

.format-text-link:hover span {
  transform: translateX(4px);
}

.formats-meta-line {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 3rem;
  color: var(--text-dark);
  font: 700 0.68rem var(--font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.formats-meta-line span + span::before {
  content: '/';
  color: rgba(183, 255, 56, 0.45);
  margin: 0 0.75rem;
}

.formats-hero-visual {
  position: relative;
  z-index: 1;
  min-height: 540px;
  perspective: 1100px;
}

.formats-hero-visual::before {
  content: '';
  position: absolute;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(183, 255, 56, 0.1);
  filter: blur(85px);
}

.hero-grid-lines {
  position: absolute;
  inset: 1rem -7rem -1rem 0;
  opacity: 0.26;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 44px 44px;
  transform: rotateY(-18deg) rotateZ(4deg);
  mask-image: radial-gradient(circle, black 22%, transparent 72%);
}

.hero-format-card {
  position: absolute;
  width: 230px;
  aspect-ratio: 4 / 5.25;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.58);
}

.hero-format-card-back {
  top: 9%;
  right: 1%;
  padding: 1.15rem;
  transform: rotate(11deg) translateZ(-50px);
  background: linear-gradient(155deg, #2c302b, #111311 76%);
}

.hero-format-card-mid {
  left: 2%;
  top: 19%;
  transform: rotate(-10deg) translateZ(-20px);
  background: linear-gradient(160deg, #20241f, #0d0e0d 70%);
}

.hero-format-card-front {
  left: 31%;
  top: 29%;
  z-index: 3;
  padding: 1.6rem;
  transform: rotate(1.5deg) translateZ(25px);
  background: var(--primary);
  color: var(--ink);
  display: flex;
  flex-direction: column;
}

.hero-format-card-front::after {
  content: '';
  position: absolute;
  width: 10rem;
  height: 10rem;
  border: 1px solid rgba(10, 11, 9, 0.16);
  border-radius: 50%;
  right: -4rem;
  bottom: -3rem;
  box-shadow: 0 0 0 1.5rem rgba(10, 11, 9, 0.04), 0 0 0 3.2rem rgba(10, 11, 9, 0.025);
}

.hero-format-card-front strong {
  position: relative;
  z-index: 1;
  font-size: 1.7rem;
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.mini-kicker,
.mini-label {
  position: relative;
  z-index: 1;
  font: 700 0.62rem var(--font-mono);
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.mini-kicker {
  margin-bottom: auto;
}

.mini-label {
  display: block;
  color: var(--primary);
  margin-bottom: 1rem;
}

.mini-progress {
  position: relative;
  z-index: 1;
  height: 3px;
  margin-top: 1.4rem;
  background: rgba(10, 11, 9, 0.2);
}

.mini-progress i {
  display: block;
  width: 64%;
  height: 100%;
  background: var(--ink);
}

.mini-carousel-stack {
  height: calc(100% - 2rem);
  position: relative;
}

.mini-carousel-stack i {
  position: absolute;
  inset: 0.5rem 0.5rem 1rem;
  border-radius: 7px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #171a16;
}

.mini-carousel-stack i:nth-child(1) { transform: rotate(-7deg) translate(-0.55rem, 0.5rem); }
.mini-carousel-stack i:nth-child(2) { transform: rotate(5deg) translate(0.55rem, 0.2rem); }
.mini-carousel-stack i:nth-child(3) {
  background:
    linear-gradient(var(--primary), var(--primary)) 1.2rem 1.2rem / 54% 5px no-repeat,
    linear-gradient(rgba(255,255,255,.18), rgba(255,255,255,.18)) 1.2rem 2.15rem / 72% 3px no-repeat,
    linear-gradient(145deg, #333a2f, #121410);
}

.silhouette {
  position: relative;
}

.silhouette::before {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: #73796f;
}

.silhouette i {
  position: absolute;
  display: block;
  background: #5a6057;
}

.silhouette-hero {
  position: absolute;
  inset: 3rem 0 2.8rem;
}

.silhouette-hero::before {
  width: 64px;
  height: 64px;
  top: 17%;
  left: 50%;
  transform: translateX(-50%);
}

.silhouette-hero i {
  width: 130px;
  height: 130px;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  border-radius: 55% 55% 12% 12%;
}

.mini-caption {
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1.1rem;
  display: grid;
  gap: 0.35rem;
}

.mini-caption i {
  height: 4px;
  background: rgba(255, 255, 255, 0.48);
  border-radius: 99px;
}

.mini-caption i:last-child { width: 65%; }

.hero-orbit-label {
  position: absolute;
  z-index: 4;
  padding: 0.5rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(7, 7, 9, 0.82);
  backdrop-filter: blur(8px);
  border-radius: 4px;
  color: var(--text-muted);
  font: 700 0.62rem var(--font-mono);
  letter-spacing: 0.1em;
}

.hero-orbit-label-one { left: -2%; top: 13%; transform: rotate(-7deg); }
.hero-orbit-label-two { right: -3%; top: 48%; transform: rotate(7deg); }
.hero-orbit-label-three { left: 14%; bottom: 9%; transform: rotate(-3deg); }

.format-library {
  position: relative;
}

.format-library-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
  gap: 5rem;
  align-items: end;
  margin-bottom: clamp(3.5rem, 7vw, 6rem);
}

.format-library-intro h2,
.format-library-intro p {
  margin-bottom: 0;
}

.format-library-intro p {
  max-width: 500px;
  justify-self: end;
}

.formats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.format-card {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(190px, 0.83fr) minmax(0, 1.17fr);
  min-height: 365px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  background: rgba(14, 15, 15, 0.72);
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.format-card:hover {
  transform: translateY(-4px);
  border-color: rgba(183, 255, 56, 0.28);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.28);
}

.format-preview {
  position: relative;
  min-width: 0;
  min-height: 365px;
  overflow: hidden;
  isolation: isolate;
  border-right: 1px solid var(--border-color);
  background: #151715;
}

.format-art {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.format-preview > :not(.format-art) {
  display: none;
}

.format-preview::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 8;
  pointer-events: none;
  box-shadow: inset 0 0 45px rgba(0, 0, 0, 0.28);
}

.format-card-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.65rem;
}

.format-card h3 {
  font-size: 1.65rem;
  margin-bottom: 0.85rem;
}

.format-card-copy > p {
  font-size: 0.93rem;
  line-height: 1.52;
  margin-bottom: 0;
}

.preview-topline {
  position: absolute;
  top: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.72);
  font: 700 0.52rem var(--font-mono);
  letter-spacing: 0.08em;
}

.preview-topline i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 4px rgba(183, 255, 56, 0.12);
}

.founder-preview {
  background: linear-gradient(155deg, #2d322c 0%, #171a17 58%, #0b0c0b 100%);
}

.preview-scene {
  position: absolute;
  inset: 3.1rem 1rem 3.6rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(90deg, transparent 46%, rgba(255,255,255,.05) 46%, rgba(255,255,255,.05) 47%, transparent 47%),
    linear-gradient(#242a23, #121412);
  overflow: hidden;
}

.person-standing::before {
  width: 49px;
  height: 49px;
  left: 48%;
  top: 19%;
}

.person-standing i {
  width: 86px;
  height: 160px;
  left: 38%;
  top: 33%;
  border-radius: 40px 40px 8px 8px;
}

.scene-product {
  position: absolute;
  width: 32px;
  height: 63px;
  border: 2px solid rgba(183, 255, 56, 0.7);
  right: 1.2rem;
  bottom: 1.1rem;
  border-radius: 6px 6px 4px 4px;
  box-shadow: 0 18px 25px rgba(183, 255, 56, 0.1);
}

.preview-subtitles {
  position: absolute;
  z-index: 5;
  left: 1.15rem;
  right: 1.15rem;
  bottom: 1.15rem;
  display: grid;
  justify-items: center;
  gap: 0.3rem;
}

.preview-subtitles i {
  display: block;
  width: 85%;
  height: 5px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.66);
}

.preview-subtitles i:last-child { width: 55%; }

.raw-preview {
  background: radial-gradient(circle at 65% 28%, #3b413a, #181b18 52%, #0c0d0c);
}

.phone-status {
  position: absolute;
  z-index: 4;
  top: 1rem;
  left: 1rem;
  right: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255,255,255,.8);
  font: 700 0.58rem var(--font-mono);
}

.phone-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff5e5e;
  box-shadow: 0 0 0 4px rgba(255, 94, 94, 0.12);
}

.person-close::before {
  width: 92px;
  height: 92px;
  left: 50%;
  top: 4.8rem;
  transform: translateX(-50%);
  background: #777e74;
}

.person-close i {
  width: 190px;
  height: 190px;
  border-radius: 50% 50% 0 0;
  left: 50%;
  top: 9.2rem;
  transform: translateX(-50%);
}

.raw-badge {
  position: absolute;
  z-index: 5;
  top: 3rem;
  left: 1rem;
  color: rgba(255, 255, 255, 0.72);
  font: 700 0.5rem var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.raw-badge i {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  margin-right: 0.3rem;
  background: var(--primary);
}

.animation-preview {
  background: linear-gradient(145deg, #d5ff75, #9ae823 48%, #364819 100%);
}

.animation-orbit {
  position: absolute;
  border: 1px solid rgba(10, 11, 9, 0.25);
  border-radius: 50%;
}

.orbit-a { width: 210px; height: 210px; left: -75px; top: 35px; }
.orbit-b { width: 260px; height: 260px; right: -130px; bottom: -70px; }

.animation-character {
  position: absolute;
  width: 92px;
  height: 125px;
  left: 50%;
  top: 32%;
  transform: translateX(-50%) rotate(-4deg);
  border-radius: 46% 46% 35% 35%;
  background: #10120e;
  box-shadow: 12px 16px 0 rgba(10, 11, 9, 0.15);
}

.animation-character::before,
.animation-character::after {
  content: '';
  position: absolute;
  top: 35px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
}

.animation-character::before { left: 22px; }
.animation-character::after { right: 22px; }
.animation-character i { position: absolute; width: 31px; height: 4px; left: 30px; top: 62px; background: var(--primary); transform: rotate(5deg); }
.animation-character b { position: absolute; width: 38px; height: 38px; border: 3px solid #10120e; border-radius: 50%; right: -24px; top: 50px; }

.animation-spark { position: absolute; color: #11130f; font-size: 1.3rem; }
.spark-a { top: 25%; left: 16%; }
.spark-b { right: 14%; bottom: 28%; }
.animation-title { position: absolute; left: 1rem; bottom: 1rem; color: #10120e; font-weight: 900; font-size: 1.45rem; line-height: .9; letter-spacing: -.05em; }

.ugc-preview {
  background: linear-gradient(150deg, #4c514b, #1f231f 58%, #111311);
}

.story-progress {
  position: absolute;
  z-index: 5;
  top: 0.75rem;
  left: 0.75rem;
  right: 0.75rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}

.story-progress i { height: 2px; background: rgba(255,255,255,.33); }
.story-progress i:first-child { background: var(--primary); }
.ugc-handle { position: absolute; z-index: 5; top: 1.25rem; left: .8rem; display: flex; align-items: center; gap: .4rem; color: white; font: 600 .5rem var(--font-body); }
.ugc-handle b { width: 20px; height: 20px; border: 1px solid var(--primary); border-radius: 50%; background: #697067; }
.person-product::before { width: 75px; height: 75px; left: 50%; top: 4.7rem; transform: translateX(-50%); }
.person-product i { width: 160px; height: 185px; left: 50%; top: 8.5rem; transform: translateX(-50%); border-radius: 48% 48% 0 0; }
.person-product b { position: absolute; z-index: 2; width: 40px; height: 75px; top: 10.8rem; right: 1.2rem; border-radius: 6px; background: var(--primary); box-shadow: 0 12px 30px rgba(183, 255, 56, 0.2); }
.ugc-hook { position: absolute; z-index: 5; left: .85rem; right: .85rem; bottom: 1rem; color: white; text-align: center; font-weight: 800; font-size: 1rem; line-height: 1.05; text-shadow: 0 2px 12px black; }

.voiceless-preview { background: #0d0f0d; }
.voiceless-grid { position: absolute; inset: 0; display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 2px; }
.voiceless-grid i:nth-child(1) { background: linear-gradient(145deg, #394039, #111); }
.voiceless-grid i:nth-child(2) { background: radial-gradient(circle at 50% 42%, #697068 0 14%, #242824 15% 35%, #101210 36%); }
.voiceless-grid i:nth-child(3) { background: linear-gradient(55deg, #141714 30%, #4a5147 31% 53%, #181b18 54%); }
.voiceless-grid i:nth-child(4) { background: radial-gradient(ellipse at 50% 65%, #697068 0 11%, #212521 12% 40%, #101210 41%); }
.voiceless-copy { position: absolute; z-index: 5; inset: 50% .75rem auto; transform: translateY(-50%); color: white; text-align: center; font-weight: 900; font-size: 1.35rem; line-height: .95; text-shadow: 0 2px 13px black; }
.voiceless-copy span, .voiceless-copy b { display: block; }
.voiceless-copy b { color: var(--primary); }
.mute-icon { position: absolute; z-index: 5; right: .7rem; top: .7rem; padding: .25rem .35rem; border-radius: 4px; background: rgba(0,0,0,.55); color: white; font: 700 .6rem var(--font-mono); }

.listicle-preview { padding: 1.2rem; background: linear-gradient(155deg, #242824, #111311); }
.listicle-title { position: relative; z-index: 3; color: var(--primary); font-weight: 900; font-size: 1.45rem; line-height: .92; letter-spacing: -.05em; }
.listicle-row { position: relative; z-index: 3; display: flex; align-items: center; gap: .65rem; margin-top: 1rem; }
.listicle-row b { width: 28px; height: 28px; flex: 0 0 28px; display: grid; place-items: center; border: 1px solid rgba(183,255,56,.5); border-radius: 50%; color: var(--primary); font: 700 .7rem var(--font-mono); }
.listicle-row i { width: 72%; height: 5px; border-radius: 9px; background: rgba(255,255,255,.17); }
.listicle-row:nth-of-type(3) i { width: 55%; }
.listicle-row:nth-of-type(4) i { width: 66%; }
.listicle-product { position: absolute; width: 70px; height: 115px; right: -.3rem; bottom: -.5rem; border: 2px solid rgba(183,255,56,.5); border-radius: 9px 9px 5px 5px; transform: rotate(10deg); background: rgba(183,255,56,.05); }

.vsl-preview { padding: 1rem; background: #101210; }
.vsl-clock { color: var(--primary); font: 700 .6rem var(--font-mono); text-align: right; }
.vsl-screen { position: absolute; inset: 2.5rem 1rem 5rem; overflow: hidden; border: 1px solid rgba(255,255,255,.1); background: linear-gradient(155deg, #353b34, #171a17); }
.vsl-person::before { width: 56px; height: 56px; top: 2rem; left: 50%; transform: translateX(-50%); }
.vsl-person i { width: 125px; height: 130px; top: 5rem; left: 50%; transform: translateX(-50%); border-radius: 50% 50% 0 0; }
.vsl-copy { position: absolute; z-index: 2; left: .8rem; right: .8rem; bottom: .8rem; display: grid; gap: .25rem; }
.vsl-copy i { height: 4px; border-radius: 99px; background: rgba(255,255,255,.5); }
.vsl-copy i:nth-child(2) { width: 88%; }
.vsl-copy i:nth-child(3) { width: 70%; }
.vsl-copy i:nth-child(4) { width: 42%; }
.vsl-timeline { position: absolute; left: 1rem; right: 1rem; bottom: 3.3rem; height: 3px; background: rgba(255,255,255,.12); }
.vsl-timeline i { display: block; width: 63%; height: 100%; background: var(--primary); }
.vsl-chapters { position: absolute; left: 1rem; right: 1rem; bottom: 1.35rem; display: flex; justify-content: space-between; color: #777c74; font: 700 .47rem var(--font-mono); text-transform: uppercase; }

.camouflage-preview { padding: .85rem; background: #e7e4db; }
.organic-profile { display: flex; align-items: center; gap: .45rem; color: #1d1e1b; }
.organic-profile b { width: 22px; height: 22px; border-radius: 50%; background: #a4a79f; }
.organic-profile span { display: grid; flex: 1; gap: 3px; }
.organic-profile i { height: 3px; width: 45px; background: rgba(10,11,9,.5); }
.organic-profile i:last-child { width: 30px; opacity: .4; }
.organic-profile em { font-style: normal; font-weight: 900; }
.organic-photo { position: relative; height: 210px; margin: .75rem -.85rem .55rem; overflow: hidden; background: linear-gradient(145deg, #b7b4aa, #d5d0c3); }
.organic-photo::before { content: ''; position: absolute; inset: 0; background: linear-gradient(110deg, transparent 50%, rgba(255,255,255,.25) 50%); }
.organic-object { position: absolute; z-index: 2; width: 60px; height: 100px; left: 50%; top: 46%; transform: translate(-50%, -50%) rotate(-5deg); border-radius: 10px 10px 6px 6px; background: #575c54; }
.organic-shadow { position: absolute; width: 115px; height: 25px; border-radius: 50%; background: rgba(35,37,33,.2); left: 50%; bottom: 30px; transform: translateX(-50%); filter: blur(8px); }
.organic-actions { color: #22231f; font-size: .8rem; letter-spacing: .12em; }
.organic-caption { margin-top: .5rem; display: grid; gap: 3px; }
.organic-caption b, .organic-caption i { height: 3px; background: rgba(10,11,9,.55); }
.organic-caption i { width: 90%; opacity: .5; }
.organic-caption i:last-child { width: 63%; }

.broll-preview { background: #111311; }
.broll-grid { position: absolute; inset: 0; display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 3px; }
.broll-grid i:nth-child(1) { background: linear-gradient(145deg, #353b34, #151715); }
.broll-grid i:nth-child(2) { background: radial-gradient(circle, #646b61 0 18%, #222622 19%); }
.broll-grid i:nth-child(3) { background: linear-gradient(35deg, #151715 40%, #4d544a 41% 56%, #1b1e1b 57%); }
.broll-grid i:nth-child(4) { background: radial-gradient(ellipse at 50% 70%, #555d52 0 12%, #202420 13% 44%, #111311 45%); }
.broll-grid::after { content: ''; position: absolute; inset: 0; background: rgba(7,7,9,.18); }
.broll-product { position: absolute; z-index: 3; width: 62px; height: 98px; left: 50%; top: 43%; transform: translate(-50%, -50%); border-radius: 8px; border: 2px solid var(--primary); background: rgba(10,11,9,.76); box-shadow: 0 12px 35px rgba(0,0,0,.5); }
.broll-product b { position: absolute; width: 24px; height: 3px; background: var(--primary); left: 17px; top: 45px; }
.voice-wave { position: absolute; z-index: 4; left: 1rem; right: 1rem; bottom: 1.2rem; display: flex; height: 28px; align-items: center; justify-content: center; gap: 4px; }
.voice-wave i { width: 3px; height: 35%; background: var(--primary); border-radius: 9px; }
.voice-wave i:nth-child(2), .voice-wave i:nth-child(6) { height: 70%; }
.voice-wave i:nth-child(3), .voice-wave i:nth-child(5) { height: 100%; }
.voice-wave i:nth-child(4) { height: 55%; }
.broll-label { position: absolute; z-index: 4; top: .8rem; left: .8rem; padding: .35rem .5rem; background: var(--primary); color: var(--ink); font: 800 .55rem var(--font-mono); }

.native-preview { background: radial-gradient(circle at 55% 28%, #454b43, #171a17 56%, #0d0f0d); }
.native-comment { position: absolute; z-index: 5; left: .75rem; right: .75rem; top: .8rem; padding: .65rem; border-radius: 8px; background: white; box-shadow: 0 8px 25px rgba(0,0,0,.28); display: flex; align-items: center; gap: .5rem; }
.native-comment b { width: 24px; height: 24px; border-radius: 50%; background: #a8ada4; }
.native-comment span { display: grid; gap: 4px; flex: 1; }
.native-comment i { height: 3px; width: 75%; background: rgba(10,11,9,.48); }
.native-comment i:last-child { width: 50%; opacity: .5; }
.native-question { position: absolute; z-index: 6; left: 1.4rem; top: 3.9rem; color: #151713; font-weight: 800; font-size: .72rem; line-height: 1.05; }
.native-person::before { width: 75px; height: 75px; left: 50%; top: 7.2rem; transform: translateX(-50%); }
.native-person i { width: 165px; height: 175px; top: 11rem; left: 50%; transform: translateX(-50%); border-radius: 50% 50% 0 0; }
.native-reply { position: absolute; z-index: 5; left: .8rem; bottom: .8rem; color: white; font: 700 .58rem var(--font-mono); text-shadow: 0 2px 10px black; }

.carousel-preview { background: linear-gradient(145deg, #20231f, #0e100e); }
.carousel-card { position: absolute; width: 150px; height: 230px; left: 50%; top: 43%; border-radius: 8px; border: 1px solid rgba(255,255,255,.14); }
.carousel-card-three { transform: translate(-38%, -46%) rotate(8deg); background: #293027; }
.carousel-card-two { transform: translate(-58%, -48%) rotate(-6deg); background: #1d211c; }
.carousel-card-one { z-index: 3; transform: translate(-50%, -50%); padding: 1rem; background: var(--primary); color: var(--ink); display: flex; flex-direction: column; }
.carousel-card span { font: 700 .54rem var(--font-mono); }
.carousel-card-one strong { margin-top: auto; font-size: 1.05rem; line-height: .94; letter-spacing: -.04em; }
.carousel-card-one i { width: 54%; height: 4px; background: var(--ink); margin-top: .65rem; }
.carousel-dots { position: absolute; left: 0; right: 0; bottom: 1.1rem; display: flex; justify-content: center; gap: 5px; }
.carousel-dots i { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,.22); }
.carousel-dots i:first-child { background: var(--primary); }

.wall-preview { background: linear-gradient(145deg, #363c35, #101210); }
.wall-scene { position: absolute; inset: 0; overflow: hidden; opacity: .65; }
.wall-scene i { position: absolute; width: 90px; height: 90px; border-radius: 50%; background: #6a7167; left: 50%; top: 4rem; transform: translateX(-50%); }
.wall-scene b { position: absolute; width: 190px; height: 230px; border-radius: 50% 50% 0 0; background: #50564e; left: 50%; top: 8.2rem; transform: translateX(-50%); }
.wall-copy { position: absolute; z-index: 4; left: .8rem; right: .8rem; top: 50%; transform: translateY(-50%); color: white; text-align: center; font-weight: 900; font-size: 1.17rem; line-height: .98; letter-spacing: -.035em; text-shadow: 0 2px 16px black; }
.wall-copy span { color: var(--primary); }
.wall-time { position: absolute; z-index: 4; right: .75rem; bottom: .7rem; color: rgba(255,255,255,.7); font: 700 .52rem var(--font-mono); }

.review-preview { padding: 1.35rem; background: #e7e4db; color: #151713; }
.review-stars { color: #779d24; letter-spacing: .09em; font-size: .8rem; }
.review-quote { color: #a5d93c; font: 900 5rem/1 Georgia, serif; height: 4.7rem; }
.review-lines { display: grid; gap: .45rem; }
.review-lines i { height: 5px; background: rgba(10,11,9,.72); border-radius: 99px; }
.review-lines i:nth-child(2) { width: 88%; }
.review-lines i:nth-child(3) { width: 94%; }
.review-lines i:nth-child(4) { width: 55%; }
.review-author { position: absolute; left: 1.35rem; right: 1.35rem; bottom: 1.35rem; display: flex; align-items: center; gap: .6rem; color: rgba(10,11,9,.62); font: 700 .5rem var(--font-mono); letter-spacing: .07em; }
.review-author b { width: 26px; height: 26px; border-radius: 50%; background: #adb1a9; }

.lifestyle-preview { background: linear-gradient(#a4b2a0 0 45%, #555d51 46% 100%); }
.lifestyle-sun { position: absolute; width: 130px; height: 130px; border-radius: 50%; background: rgba(217,255,133,.48); left: -45px; top: -30px; }
.lifestyle-horizon { position: absolute; width: 260px; height: 120px; background: #30362f; border-radius: 50% 50% 0 0; right: -75px; bottom: 0; transform: rotate(-10deg); }
.lifestyle-product { position: absolute; z-index: 2; width: 58px; height: 120px; left: 50%; top: 46%; transform: translate(-50%,-50%) rotate(4deg); border-radius: 10px 10px 5px 5px; background: #171a17; box-shadow: 18px 30px 30px rgba(10,11,9,.28); }
.lifestyle-product i { position: absolute; width: 27px; height: 4px; background: var(--primary); top: 54px; left: 15px; }
.lifestyle-copy { position: absolute; z-index: 3; left: .9rem; bottom: .9rem; color: white; font-weight: 900; font-size: .9rem; line-height: .95; text-shadow: 0 2px 10px rgba(0,0,0,.5); }

.branded-video-preview { background: radial-gradient(circle at 50% 58%, #30382c, #10120f 65%); }
.brand-wordmark { position: absolute; top: 1rem; left: 0; right: 0; text-align: center; color: rgba(255,255,255,.75); font: 800 .55rem var(--font-mono); letter-spacing: .28em; }
.brand-beam { position: absolute; width: 160px; height: 260px; left: 50%; top: 35%; transform: translate(-50%,-50%); background: linear-gradient(90deg, transparent, rgba(183,255,56,.16), transparent); clip-path: polygon(43% 0, 57% 0, 100% 100%, 0 100%); }
.brand-pedestal { position: absolute; width: 135px; height: 38px; border-radius: 50%; left: 50%; top: 63%; transform: translate(-50%,-50%); background: linear-gradient(#4a5148, #191c19); box-shadow: 0 30px 42px rgba(0,0,0,.45); }
.brand-pedestal i { position: absolute; width: 48px; height: 112px; border-radius: 8px 8px 4px 4px; background: #0b0d0b; border: 1px solid rgba(183,255,56,.5); left: 44px; bottom: 19px; }
.brand-film-title { position: absolute; left: 0; right: 0; bottom: 3.2rem; text-align: center; color: white; font-weight: 800; font-size: .7rem; letter-spacing: .12em; }
.brand-timeline { position: absolute; left: 1rem; right: 1rem; bottom: 1.2rem; height: 2px; background: rgba(255,255,255,.12); }
.brand-timeline i { display: block; width: 72%; height: 100%; background: var(--primary); }

.branded-static-preview { padding: 1rem; background: var(--primary); color: var(--ink); }
.static-grid { position: absolute; inset: 0; opacity: .16; background-image: linear-gradient(#0a0b09 1px, transparent 1px), linear-gradient(90deg, #0a0b09 1px, transparent 1px); background-size: 32px 32px; }
.static-brand { position: relative; z-index: 2; font: 900 .7rem var(--font-mono); letter-spacing: .15em; }
.static-brand span { font-size: .38rem; vertical-align: top; }
.static-product { position: absolute; z-index: 2; width: 55px; height: 125px; right: 1.25rem; top: 50%; transform: translateY(-50%) rotate(7deg); background: var(--ink); border-radius: 10px 10px 5px 5px; box-shadow: 16px 22px 0 rgba(10,11,9,.12); }
.static-product i { position: absolute; width: 24px; height: 4px; left: 15px; top: 58px; background: var(--primary); }
.static-title { position: absolute; z-index: 2; left: 1rem; top: 44%; transform: translateY(-50%); font-weight: 900; font-size: 1.65rem; line-height: .84; letter-spacing: -.065em; }
.static-footer { position: absolute; z-index: 2; left: 1rem; right: 1rem; bottom: 1rem; display: flex; align-items: center; justify-content: space-between; font: 800 .52rem var(--font-mono); }
.static-footer i { width: 28px; height: 1px; background: var(--ink); }

.formats-closing {
  background: linear-gradient(145deg, rgba(183, 255, 56, 0.055), transparent 45%);
}

.formats-closing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.7fr);
  align-items: end;
  gap: 5rem;
}

.formats-closing h2,
.formats-closing-action p {
  margin-bottom: 0;
}

.formats-closing-action p {
  margin-bottom: 1.7rem;
}

.formats-footer {
  padding: 4rem 0 3rem;
  background:
    radial-gradient(circle at 50% 100%, rgba(183,255,56,.08), transparent 35%),
    #050507;
}

.formats-footer-logo {
  width: max-content;
  margin: 0 auto 2rem;
}

@media (max-width: 1120px) {
  .formats-hero-grid {
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 2.5rem;
  }

  .formats-hero-visual {
    transform: scale(0.9);
    transform-origin: center right;
  }

  .formats-grid {
    grid-template-columns: 1fr;
  }

  .format-card {
    grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  }
}

@media (max-width: 860px) {
  .formats-hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-top: 5rem;
  }

  .formats-hero-copy {
    max-width: 680px;
  }

  .formats-hero-visual {
    width: 440px;
    min-height: 480px;
    margin: -2rem auto -3rem;
    transform: scale(0.9);
    transform-origin: center;
  }

  .format-library-intro,
  .formats-closing-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .format-library-intro p {
    justify-self: start;
  }
}

@media (max-width: 620px) {
  .formats-hero-grid {
    padding-top: 3.75rem;
    padding-bottom: 5rem;
  }

  .formats-hero-copy h1 {
    font-size: clamp(3rem, 14.5vw, 4.5rem);
  }

  .formats-hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.35rem;
  }

  .formats-meta-line {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.35rem;
    margin-top: 2.3rem;
  }

  .formats-meta-line span + span::before {
    display: none;
  }

  .formats-hero-visual {
    width: 100%;
    max-width: 390px;
    margin-left: 50%;
    transform: translateX(-50%) scale(0.78);
  }

  .format-card {
    grid-template-columns: 1fr;
  }

  .format-preview {
    min-height: 330px;
    border-right: 0;
    border-bottom: 1px solid var(--border-color);
  }

  .format-card-copy {
    min-height: 220px;
    padding: 1.5rem;
  }

  .format-card h3 {
    font-size: 1.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .format-card,
  .hero-format-card,
  .format-text-link span {
    transition: none;
  }
}

