:root {
  --bg: #0A0A0A;
  --bg-2: #111111;
  --fg: #FFFFFF;
  --fg-dim: #888888;
  --accent: #DC2626;
  --accent-glow: rgba(220, 38, 38, 0.15);
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}

.hero-shape-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(220,38,38,0.18) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  animation: drift1 8s ease-in-out infinite;
}

.hero-shape-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(220,38,38,0.08) 0%, transparent 70%);
  bottom: -100px;
  left: -50px;
  animation: drift2 10s ease-in-out infinite;
}

.hero-shape-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 70%);
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
  animation: pulse 4s ease-in-out infinite;
}

@keyframes drift1 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-30px, 20px); }
}

@keyframes drift2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -15px); }
}

@keyframes pulse {
  0%, 100% { opacity: 0.3; transform: translateX(-50%) scale(1); }
  50% { opacity: 0.6; transform: translateX(-50%) scale(1.1); }
}

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

.hero-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--accent);
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(7rem, 20vw, 16rem);
  line-height: 0.85;
  letter-spacing: 0.05em;
  color: var(--fg);
  margin-bottom: 2rem;
  text-shadow: 0 0 80px rgba(220, 38, 38, 0.2);
}

.hero-sub {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--fg-dim);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

.hero-scroll {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  z-index: 2;
}

.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-dim);
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--fg-dim), transparent);
  animation: scrollAnim 2s ease-in-out infinite;
}

@keyframes scrollAnim {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* WHAT */
.what {
  background: var(--bg-2);
  padding: 8rem 2rem;
}

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

.what-label {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.what-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 0.9;
  margin-bottom: 4rem;
}

.what-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.what-card {
  background: #1a1a1a;
  padding: 2.5rem 2rem;
  position: relative;
}

.what-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.what-card:hover::before {
  transform: scaleX(1);
}

.what-icon {
  margin-bottom: 1.5rem;
}

.what-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.what-card p {
  font-size: 0.9rem;
  color: var(--fg-dim);
  line-height: 1.6;
}

/* APPROACH */
.approach {
  padding: 8rem 2rem;
  background: var(--bg);
}

.approach-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.approach-tag {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.approach-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 0.9;
  margin-bottom: 2rem;
}

.approach-body {
  font-size: 0.95rem;
  color: var(--fg-dim);
  line-height: 1.8;
}

.approach-principles {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.principle {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.principle-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.85rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  flex-shrink: 0;
  padding-top: 0.1rem;
}

.principle strong {
  font-size: 1rem;
  font-weight: 500;
  display: block;
  margin-bottom: 0.5rem;
}

.principle p {
  font-size: 0.88rem;
  color: var(--fg-dim);
  line-height: 1.6;
}

/* FORMATS */
.formats {
  background: #0f0f0f;
  padding: 8rem 2rem;
}

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

.formats-label {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 3rem;
}

.formats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: #1a1a1a;
}

.format-card {
  background: #111111;
  padding: 3rem 2.5rem;
  position: relative;
  transition: background 0.3s ease;
}

.format-card:hover {
  background: #181818;
}

.format-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  color: var(--accent-glow);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.format-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.format-card p {
  font-size: 0.88rem;
  color: var(--fg-dim);
  line-height: 1.7;
}

/* CLOSING */
.closing {
  padding: 10rem 2rem;
  background: var(--bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.closing::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(220,38,38,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.closing-inner {
  position: relative;
  z-index: 2;
}

.closing-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 7vw, 6rem);
  line-height: 0.95;
  margin-bottom: 2.5rem;
}

.closing-body {
  font-size: 1rem;
  color: var(--fg-dim);
  max-width: 600px;
  margin: 0 auto 4rem;
  line-height: 1.8;
}

.closing-mark {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(5rem, 15vw, 12rem);
  color: rgba(255,255,255,0.04);
  letter-spacing: 0.1em;
  user-select: none;
  line-height: 1;
}

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

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

.footer-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.footer-sub {
  font-size: 0.8rem;
  color: var(--fg-dim);
  margin-bottom: 2rem;
}

.footer-copy {
  font-size: 0.7rem;
  color: #333;
}

/* MOBILE */
@media (max-width: 768px) {
  .what-grid {
    grid-template-columns: 1fr;
  }

  .approach-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

  .hero-scroll {
    display: none;
  }
}

@media (max-width: 480px) {
  .what-card {
    padding: 2rem 1.5rem;
  }

  .format-card {
    padding: 2rem 1.5rem;
  }

  .approach, .what, .formats, .closing {
    padding: 5rem 1.5rem;
  }
}