/* ===== Design System — Editorial Brutalist Vibe ===== */
:root {
  --bg: #0b0a08;
  --bg-alt: #12100d;
  --surface: rgba(245, 235, 220, 0.03);
  --surface-hover: rgba(245, 235, 220, 0.06);
  --border: rgba(245, 235, 220, 0.1);
  --border-strong: rgba(245, 235, 220, 0.18);
  --text: #f2ebe2;
  --text-muted: #9c9488;
  --accent: #d8ff59;
  --accent-2: #ff5a3c;
  --accent-dim: rgba(216, 255, 89, 0.12);
  --accent-glow: rgba(216, 255, 89, 0.22);
  --font-display: "Syne", sans-serif;
  --font-body: "Instrument Sans", sans-serif;
  --heading-weight: 800;
  --heading-tracking: -0.03em;
  --heading-leading: 1.1;
  --heading-xl: clamp(36px, 5.8vw, 68px);
  --heading-lg: clamp(28px, 4.2vw, 48px);
  --heading-md: clamp(20px, 2.2vw, 24px);
  --heading-sm: clamp(16px, 1.6vw, 18px);
  --radius: 4px;
  --radius-lg: 12px;
  --container: 1180px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --transition: 0.35s var(--ease-out);
}

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

html {
  scroll-behavior: smooth;
}

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

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

ul,
ol {
  list-style: none;
}

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

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

/* ===== Heading System ===== */
h1,
h2,
h3,
.hero__title,
.section__title,
.card__title,
.step__title,
.project__title,
.cta__title,
.quote,
.why__intro p,
.about__list-title,
.why__formula span,
.logo {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  letter-spacing: var(--heading-tracking);
  line-height: var(--heading-leading);
}

h1,
.hero__title {
  font-size: var(--heading-xl);
}

h2,
.section__title,
.cta__title,
.why__intro p,
.quote {
  font-size: var(--heading-lg);
}

h3,
.card__title,
.step__title,
.project__title,
.why__formula span {
  font-size: var(--heading-md);
}

.about__list-title {
  font-size: var(--heading-sm);
}

.logo {
  font-size: 20px;
}

/* ===== Background Layers ===== */
.bg-layer {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.bg-layer__mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 85% 10%, rgba(255, 90, 60, 0.09) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 5% 80%, rgba(216, 255, 89, 0.07) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(255, 180, 100, 0.04) 0%, transparent 60%);
}

.bg-layer__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245, 235, 220, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 235, 220, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 30%, black 20%, transparent 75%);
}

.bg-layer__grain {
  position: absolute;
  inset: 0;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ===== Motion ===== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes vibeGlow {
  0%, 100% {
    text-shadow:
      0 0 16px rgba(216, 255, 89, 0.15),
      0 0 32px rgba(216, 255, 89, 0.08);
  }
  50% {
    text-shadow:
      0 0 24px rgba(216, 255, 89, 0.55),
      0 0 48px rgba(216, 255, 89, 0.25),
      0 0 72px rgba(255, 90, 60, 0.12);
  }
}

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

.reveal {
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) forwards;
  animation-delay: var(--d, 0s);
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-on-scroll {
    animation: none;
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero__title em,
  .hero__vibe {
    animation: none;
  }

  .hero__photo-wrap {
    transform: rotate(1.5deg);
    will-change: auto;
  }

  .hero__photo img {
    will-change: auto;
  }
}

/* ===== Layout ===== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

.section {
  position: relative;
  z-index: 1;
  padding: clamp(80px, 10vw, 120px) 0;
}

.section--alt {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section__header {
  margin-bottom: clamp(40px, 6vw, 64px);
}

.section__header--split {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}

.section__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.section__label::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--accent);
}

.section__title {
  max-width: 680px;
}

.section__index {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(245, 235, 220, 0.08);
  flex-shrink: 0;
  user-select: none;
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0;
  background: rgba(11, 10, 8, 0.82);
  backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid var(--border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo span {
  color: var(--accent);
}

.nav {
  display: flex;
  gap: 36px;
}

.nav a {
  position: relative;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
}

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

.nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.btn--sm {
  padding: 10px 20px;
  font-size: 13px;
}

.btn--primary {
  background: var(--accent);
  color: var(--bg);
  box-shadow: 0 0 0 0 var(--accent-glow);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--accent-glow);
  background: #e4ff70;
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
}

.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
}

.btn--outline {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 0 80px;
}

.hero__layout {
  display: grid;
  grid-template-columns: 1.05fr 0.72fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.eyebrow__line {
  width: 40px;
  height: 1px;
  background: var(--accent-2);
  flex-shrink: 0;
}

.hero__title {
  max-width: 920px;
  margin-bottom: 28px;
  min-height: clamp(120px, 18vw, 220px);
}

.hero__title-type {
  display: inline;
}

.hero__title em,
.hero__vibe {
  font-style: normal;
  position: relative;
  display: inline-block;
  color: var(--accent);
  animation: vibeGlow 3.2s ease-in-out infinite;
}

.hero__title em::after,
.hero__vibe::after {
  content: "";
  position: absolute;
  left: -2%;
  bottom: 8%;
  width: 104%;
  height: 38%;
  background: var(--accent-dim);
  z-index: -1;
  transform: skewX(-8deg);
}

.hero__subtitle {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 44px;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero__media {
  position: relative;
  justify-self: end;
  width: min(100%, 420px);
  perspective: 900px;
}

.hero__photo-wrap {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --magnetic-x: 0px;
  --magnetic-y: 0px;
  --parallax-y: 0px;
  --img-parallax-y: 0px;
  --img-magnetic-x: 0px;
  --img-magnetic-y: 0px;
  --img-scale: 1;
  --base-rotate: 1.5deg;
  position: relative;
  transform:
    translate3d(var(--magnetic-x), calc(var(--parallax-y) + var(--magnetic-y)), 0)
    rotateX(var(--tilt-y))
    rotateY(var(--tilt-x))
    rotate(var(--base-rotate));
  transform-style: preserve-3d;
  will-change: transform;
}

.hero__photo-wrap.is-magnetic {
  transition: transform 0.14s var(--ease-out);
}

.hero__photo-accent {
  position: absolute;
  inset: -14px -14px 14px 14px;
  border: 1px solid rgba(216, 255, 89, 0.35);
  pointer-events: none;
  z-index: 0;
  transform: rotate(-2deg) translateZ(-12px);
  transition: border-color var(--transition);
}

.hero__photo-wrap.is-active .hero__photo-accent {
  border-color: rgba(216, 255, 89, 0.6);
}

.hero__photo {
  position: relative;
  z-index: 1;
  margin: 0;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  background: var(--bg-alt);
}

.hero__photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(to top, rgba(11, 10, 8, 0.92) 0%, rgba(11, 10, 8, 0.15) 38%, transparent 62%),
    linear-gradient(135deg, rgba(216, 255, 89, 0.08) 0%, transparent 45%),
    linear-gradient(to bottom right, rgba(255, 90, 60, 0.12), transparent 50%);
  pointer-events: none;
  mix-blend-mode: multiply;
}

.hero__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  opacity: 0.18;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.15) 2px,
    rgba(0, 0, 0, 0.15) 4px
  );
  pointer-events: none;
}

.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
  display: block;
  filter: contrast(1.08) saturate(0.82) brightness(0.88);
  transform:
    translate3d(var(--img-magnetic-x), calc(var(--img-parallax-y) + var(--img-magnetic-y)), 0)
    scale(var(--img-scale));
  transition: filter var(--transition);
  will-change: transform;
}

.hero__photo-wrap.is-active .hero__photo img {
  filter: contrast(1.1) saturate(0.9) brightness(0.92);
}

.hero__photo-tag {
  position: absolute;
  left: -18px;
  bottom: 36px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 18px;
  background: var(--bg);
  border: 1px solid var(--border);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.hero__photo-tag-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero__photo-tag-value {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  letter-spacing: var(--heading-tracking);
  line-height: var(--heading-leading);
  font-size: var(--heading-sm);
  color: var(--accent);
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero__scroll i {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
  transform-origin: top;
}

/* ===== About ===== */
.about__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.75fr;
  gap: 0;
  align-items: start;
}

.about__text {
  padding-right: 48px;
}

.about__text p {
  color: var(--text-muted);
  margin-bottom: 22px;
  font-size: 17px;
  line-height: 1.75;
}

.about__approach {
  color: var(--text) !important;
  font-weight: 500;
  font-size: 18px !important;
  padding-left: 20px;
  border-left: 2px solid var(--accent);
}

.about__list {
  position: relative;
  margin-top: 24px;
  padding: 36px;
  background: var(--surface);
  border: 1px solid var(--border);
  transform: translateX(-32px) rotate(-1deg);
  transition: transform var(--transition);
}

.about__list:hover {
  transform: translateX(-32px) rotate(0deg);
}

.about__list-title {
  margin-bottom: 20px;
}

.about__list ul li {
  position: relative;
  padding-left: 18px;
  color: var(--text-muted);
  margin-bottom: 10px;
  font-size: 15px;
  transition: color var(--transition), transform var(--transition);
}

.about__list ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent-2);
  font-size: 13px;
}

.about__list ul li:hover {
  color: var(--text);
  transform: translateX(4px);
}

/* ===== Cards ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.card {
  padding: 36px 32px;
  background: var(--bg-alt);
  transition: background var(--transition), color var(--transition);
  position: relative;
  overflow: hidden;
}

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

.card:hover {
  background: var(--surface-hover);
}

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

.card--accent {
  background: var(--accent-dim);
}

.card--accent:hover {
  background: rgba(216, 255, 89, 0.18);
}

.card__num {
  display: block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-2);
  margin-bottom: 20px;
  letter-spacing: 0.1em;
}

.card__title {
  margin-bottom: 14px;
}

.card__text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== Steps ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
}

.step {
  padding: 40px 36px;
  border-right: 1px solid var(--border);
  position: relative;
  transition: background var(--transition);
}

.step:last-child {
  border-right: none;
}

.step:hover {
  background: var(--surface);
}

.step__num {
  display: block;
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(216, 255, 89, 0.35);
  margin-bottom: 24px;
}

.step__title {
  margin-bottom: 12px;
}

.step__text {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}

/* ===== Projects ===== */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}

.project {
  grid-column: span 6;
  background: var(--bg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}

.project--featured {
  grid-column: span 7;
  grid-row: span 1;
}

.project:nth-child(2) {
  grid-column: span 5;
  margin-top: 48px;
}

.project:nth-child(3) {
  grid-column: span 5;
}

.project:nth-child(4) {
  grid-column: span 7;
  margin-top: -32px;
}

.project:hover {
  border-color: var(--accent);
  transform: translateY(-6px);
}

.project__visual {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.project--featured .project__visual {
  height: 280px;
}

.project__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.03) 2px,
    rgba(0, 0, 0, 0.03) 4px
  );
  mix-blend-mode: overlay;
}

.project__visual--1 {
  background:
    linear-gradient(135deg, rgba(11, 10, 8, 0.3), transparent),
    conic-gradient(from 210deg at 60% 40%, #ff5a3c, #d8ff59, #1a1814, #ff5a3c);
}

.project__visual--2 {
  background:
    linear-gradient(160deg, rgba(11, 10, 8, 0.5), transparent),
    radial-gradient(circle at 30% 70%, #d8ff59 0%, transparent 45%),
    linear-gradient(135deg, #1a1814, #2a2620);
}

.project__visual--3 {
  background:
    linear-gradient(135deg, rgba(11, 10, 8, 0.4), transparent),
    repeating-linear-gradient(45deg, #1a1814 0, #1a1814 8px, #222018 8px, #222018 16px);
}

.project__visual--4 {
  background:
    linear-gradient(135deg, rgba(11, 10, 8, 0.3), transparent),
    radial-gradient(ellipse at 80% 20%, #ff5a3c 0%, transparent 50%),
    linear-gradient(180deg, #12100d, #0b0a08);
}

.project__tag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1;
  padding: 6px 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--accent);
  color: var(--bg);
}

.project__body {
  padding: 28px 32px 32px;
}

.project__title {
  margin-bottom: 10px;
}

.project__desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 18px;
  line-height: 1.65;
}

.project__done {
  font-size: 13px;
  color: var(--text-muted);
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

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

/* ===== Why ===== */
.why__grid {
  max-width: 860px;
}

.why__intro p {
  margin-bottom: 48px;
}

.why__columns {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 48px;
  margin-bottom: 48px;
  padding: 36px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.why__col-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent-2);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.why__col ul li {
  position: relative;
  padding-left: 16px;
  color: var(--text-muted);
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.5;
}

.why__col ul li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.why__formula {
  font-size: 17px;
  padding: 32px 36px;
  background: var(--surface);
  border: 1px solid var(--border);
  position: relative;
}

.why__formula::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 36px;
  width: 48px;
  height: 3px;
  background: var(--accent);
}

.why__formula span {
  display: block;
  margin-top: 10px;
  color: var(--accent);
}

/* ===== Badges ===== */
.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.badge {
  display: inline-block;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 500;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-muted);
  transition: all var(--transition);
  cursor: default;
}

.badge:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
  transform: translateY(-2px);
}

.stack__note {
  font-size: 17px;
  color: var(--text-muted);
  font-style: italic;
  max-width: 580px;
  line-height: 1.75;
  padding-left: 20px;
  border-left: 1px solid var(--border-strong);
}

/* ===== Audience ===== */
.audience-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.audience-list li {
  padding: 22px 28px;
  background: var(--bg);
  font-size: 15px;
  color: var(--text-muted);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 14px;
}

.audience-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--accent-2);
  flex-shrink: 0;
  transition: background var(--transition);
}

.audience-list li:hover {
  color: var(--text);
  background: var(--surface);
  padding-left: 36px;
}

.audience-list li:hover::before {
  background: var(--accent);
}

/* ===== Quote ===== */
.quote-section {
  position: relative;
  z-index: 1;
  padding: clamp(64px, 10vw, 100px) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.quote {
  max-width: 900px;
  position: relative;
  padding-left: clamp(24px, 4vw, 48px);
}

.quote::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 3px;
  background: linear-gradient(to bottom, var(--accent), var(--accent-2));
}

/* ===== CTA ===== */
.cta-section {
  padding: clamp(64px, 8vw, 96px) 0;
}

.cta {
  position: relative;
  padding: clamp(48px, 8vw, 72px);
  border: 1px solid var(--border);
  background:
    linear-gradient(135deg, var(--surface), transparent),
    var(--bg-alt);
  overflow: hidden;
}

.cta::before {
  content: "GO";
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(120px, 20vw, 240px);
  font-weight: 800;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(245, 235, 220, 0.04);
  pointer-events: none;
  user-select: none;
}

.cta__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 20px;
}

.cta__title {
  max-width: 680px;
  margin-bottom: 20px;
}

.cta__text {
  color: var(--text-muted);
  font-size: 17px;
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ===== Contacts ===== */
.contacts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 720px;
}

.contact-link {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  min-width: 0;
}

.contact-link::after {
  content: "→";
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  opacity: 0;
  font-size: 20px;
  color: var(--accent);
  transition: all var(--transition);
}

.contact-link:hover {
  border-color: var(--accent);
  background: var(--accent-dim);
  padding-right: 48px;
}

.contact-link:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.contact-link__label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
}

.contact-link__value {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: clamp(15px, 1.6vw, 17px);
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--text);
  transition: color var(--transition);
  word-break: break-word;
  overflow-wrap: anywhere;
  max-width: 100%;
}

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

/* ===== Footer ===== */
.footer {
  position: relative;
  z-index: 1;
  padding: 36px 0;
  border-top: 1px solid var(--border);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer__copy {
  font-size: 13px;
  color: var(--text-muted);
}

.footer__top {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
}

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

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero__layout {
    grid-template-columns: 1fr;
  }

  .hero__media {
    justify-self: center;
    order: -1;
    width: min(100%, 320px);
    margin-bottom: 12px;
  }

  .hero__photo-tag {
    left: 12px;
    bottom: 20px;
  }

  .hero__photo-accent {
    inset: -10px -10px 10px 10px;
  }

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

  .about__text {
    padding-right: 0;
  }

  .about__list {
    transform: none;
    margin-top: 0;
  }

  .about__list:hover {
    transform: none;
  }

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

  .step {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .step:last-child {
    border-bottom: none;
  }

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

  .project,
  .project--featured,
  .project:nth-child(2),
  .project:nth-child(3),
  .project:nth-child(4) {
    grid-column: span 1;
    margin-top: 0;
  }

  .section__index {
    display: none;
  }
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }

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

  .why__columns {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .audience-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 20px;
  }

  .hero {
    padding: 120px 0 72px;
  }

  .hero__scroll {
    display: none;
  }

  .header .btn--outline {
    display: none;
  }

  .cta {
    padding: 36px 24px;
  }

  .footer__inner {
    flex-direction: column;
    text-align: center;
  }
}
