/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Space Grotesk', sans-serif;
  background: #000;
  color: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; border: 0; background: none; color: inherit; cursor: pointer; }

/* ============================================
   DESIGN TOKENS
   ============================================ */
:root {
  --ice: #7DD3FC;
  --ice-deep: #38BDF8;
  --ice-glow: rgba(125, 211, 252, 0.12);
  --violet: #a855f7;
  --muted: #6B7280;
  --dim: #1F2937;
  --border: rgba(255,255,255,0.06);
  --border-strong: rgba(255,255,255,0.1);
  --surface: #0a0a0a;
  --surface-2: #0f0f10;
}

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to bottom, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.6) 60%, transparent 100%);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 4px;
}

.logo-diamond {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-diamond-outer {
  width: 26px;
  height: 26px;
  transform: rotate(45deg);
  background: linear-gradient(135deg, #60a5fa 0%, #a855f7 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-diamond-inner {
  width: 10px;
  height: 10px;
  background: #000;
}

.logo-text {
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.4px;
}

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

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: #9CA3AF;
  letter-spacing: 0.3px;
  position: relative;
  transition: color 0.2s;
}

.nav-links a:hover { color: #fff; }

.nav-links a.active { color: #fff; }

.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -8px;
  height: 1px;
  background: var(--ice);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: #fff;
  color: #000;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 700;
  border-radius: 5px;
  letter-spacing: 0.2px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.nav-cta:hover {
  background: var(--ice);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(125, 211, 252, 0.25);
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 20px;
  height: 1.5px;
  background: #fff;
  position: relative;
  transition: transform 0.25s ease;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: '';
  position: absolute;
  left: 0;
}

.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top: 6px; }

/* ============================================
   GLOBAL UTILITY
   ============================================ */
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--ice);
  margin-bottom: 48px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--ice);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

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

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

/* ============================================
   HERO (homepage)
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 48px 100px;
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  animation: gridDrift 30s linear infinite;
}

@keyframes gridDrift {
  0% { transform: translateY(0); }
  100% { transform: translateY(72px); }
}

.hero-glow-tr {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(125,211,252,0.07) 0%, transparent 65%);
  pointer-events: none;
  animation: pulse 8s ease-in-out infinite;
}

.hero-glow-bl {
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(168,85,247,0.06) 0%, transparent 65%);
  pointer-events: none;
  animation: pulse 10s ease-in-out infinite reverse;
}

@keyframes pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

.hero-content {
  position: relative;
  max-width: 1280px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--ice);
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.2s;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--ice);
}

.hero-headline {
  font-size: clamp(64px, 9.5vw, 152px);
  font-weight: 700;
  line-height: 0.93;
  letter-spacing: -0.04em;
  margin-bottom: 52px;
}

.hero-headline .sub-line {
  display: block;
  color: var(--dim);
  font-size: 0.45em;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 0.3em;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.4s;
}

.hero-headline .main-line {
  display: block;
  color: #fff;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.65s;
}

.hero-headline .ice-word { color: var(--ice); }

.hero-body {
  max-width: 580px;
  font-size: 17px;
  line-height: 1.75;
  color: #9CA3AF;
  margin-bottom: 52px;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 1s;
}

.hero-body strong { color: #fff; font-weight: 500; }

.hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 1.2s;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--ice);
  color: #000;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 700;
  border-radius: 5px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 20px 48px rgba(125, 211, 252, 0.2);
}

.btn-primary .arrow { transition: transform 0.2s; }
.btn-primary:hover .arrow { transform: translateX(4px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 0;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  border-bottom: 1px solid var(--border-strong);
  transition: color 0.2s, border-color 0.2s;
}

.btn-ghost:hover { color: var(--ice); border-color: var(--ice); }
.btn-ghost .arrow { transition: transform 0.2s; }
.btn-ghost:hover .arrow { transform: translateX(4px); }

.hero-scroll-hint {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-scroll-hint::after {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: var(--muted);
}

/* ============================================
   TICKER
   ============================================ */
.ticker {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  animation: tickerScroll 40s linear infinite;
}

.ticker-track:hover { animation-play-state: paused; }

.ticker-word {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0 28px;
  transition: color 0.2s;
}

.ticker-word:hover { color: var(--ice); }
.ticker-sep { color: var(--ice); padding: 0 4px; }

@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   STORY
   ============================================ */
.story { padding: 160px 48px; }
.story-inner { max-width: 1280px; margin: 0 auto; }

.story-intro {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--ice);
  margin-bottom: 64px;
}

.story-line {
  font-size: clamp(44px, 6.5vw, 100px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.035em;
  margin-bottom: 12px;
}

.story-line .faded { color: var(--dim); }
.story-line .ice   { color: var(--ice); }

.story-divider {
  width: 64px;
  height: 1px;
  background: var(--border);
  margin: 64px 0;
}

.story-body {
  max-width: 640px;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.8;
  color: #9CA3AF;
}

.story-body strong { color: #fff; font-weight: 500; }

/* ============================================
   TRUSTED BY
   ============================================ */
.trusted {
  padding: 64px 48px;
  border-top: 1px solid var(--border);
}

.trusted-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 48px;
}

.trusted-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  flex-shrink: 0;
}

.trusted-logos {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
  flex: 1;
}

.trusted-logo {
  display: flex;
  align-items: center;
  opacity: 0.4;
  transition: opacity 0.3s;
}

.trusted-logo:hover { opacity: 0.7; }

.trusted-logo img {
  height: 26px;
  width: auto;
  object-fit: contain;
}

.trusted-logo-text img {
  height: 20px;
}

.trusted-logo-invert img {
  filter: brightness(0) invert(1);
}

@media (max-width: 960px) {
  .trusted { padding: 48px 24px; }
  .trusted-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .trusted-logos { gap: 32px; }
}

/* ============================================
   SERVICES GRID
   ============================================ */
.services {
  border-top: 1px solid var(--border);
  padding: 100px 48px 140px;
}

.services-inner { max-width: 1280px; margin: 0 auto; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}

.svc {
  background: #000;
  padding: 52px 40px 48px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
  display: flex;
  flex-direction: column;
}

.svc::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ice), transparent);
  transform: scaleX(0);
  transition: transform 0.5s ease;
}

.svc:hover { background: #0a0a0a; }
.svc:hover::before { transform: scaleX(1); }

.svc-featured {
  background: linear-gradient(180deg, rgba(125,211,252,0.04) 0%, #000 100%);
}

.svc-num {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--muted);
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.svc-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--ice);
  padding: 4px 8px;
  border: 1px solid rgba(125,211,252,0.3);
  border-radius: 3px;
}

.svc-title {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
}

.svc-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 40px;
  flex: 1;
}

.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ice);
  letter-spacing: 0.3px;
  transition: gap 0.2s;
}

.svc:hover .svc-link { gap: 14px; }

/* ============================================
   PRICING
   ============================================ */
.pricing {
  background: var(--surface);
  padding: 140px 48px;
  position: relative;
  overflow: hidden;
}

.pricing-glow {
  position: absolute;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(125,211,252,0.05) 0%, transparent 65%);
  pointer-events: none;
}

.pricing-inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
}

.pricing-headline {
  font-size: clamp(52px, 8vw, 120px);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.04em;
  margin-bottom: 80px;
}

.pricing-headline .cross {
  color: #2D3748;
  text-decoration: line-through;
  text-decoration-color: rgba(239,68,68,0.7);
  text-decoration-thickness: 4px;
}

.pricing-headline .bright { color: var(--ice); }

.pricing-compare {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  max-width: 960px;
}

.compare-card { background: var(--surface); padding: 52px 48px; }

.compare-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.compare-tag.them { color: #4B5563; }
.compare-tag.us   { color: var(--ice); }

.compare-amount {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 16px;
}

.compare-amount.them {
  color: #374151;
  text-decoration: line-through;
  text-decoration-color: rgba(239,68,68,0.6);
}

.compare-amount.us { color: var(--ice); }

.compare-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 320px;
}

.pricing-footnote {
  margin-top: 40px;
  font-size: 14px;
  color: var(--muted);
  max-width: 560px;
}
.pricing-footnote strong { color: #fff; font-weight: 500; }

/* Offer card (flat-rate assessment) */
.offer-card {
  margin-top: 40px;
  width: 100%;
  max-width: 760px;
  background:
    linear-gradient(180deg, rgba(125,211,252,0.04) 0%, rgba(125,211,252,0) 60%),
    var(--surface);
  border: 1px solid var(--border);
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.offer-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, transparent, rgba(125,211,252,0.6), transparent);
}

.offer-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
}

.offer-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ice);
  margin-bottom: 10px;
}

.offer-name {
  font-size: 18px;
  color: #fff;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.offer-amount {
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--ice);
  white-space: nowrap;
}

.offer-list {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.offer-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

.offer-list li strong { color: #fff; font-weight: 500; }

.offer-check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(125,211,252,0.4);
  color: var(--ice);
  font-size: 11px;
  margin-top: 2px;
}

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

@media (max-width: 640px) {
  .offer-card { padding: 32px 24px; }
  .offer-head { flex-direction: column; gap: 16px; }
}

/* ============================================
   WORK / PROJECTS
   ============================================ */
.work { padding: 140px 48px; }
.work-inner { max-width: 1280px; margin: 0 auto; }

.work-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 72px;
  gap: 40px;
}

.work-title {
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.work-sub {
  margin-top: 20px;
  font-size: 17px;
  color: #9CA3AF;
  max-width: 560px;
  line-height: 1.65;
}

.work-count {
  font-size: 96px;
  font-weight: 700;
  letter-spacing: -0.05em;
  color: #111;
  line-height: 1;
  user-select: none;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
}

.proj {
  background: #000;
  display: block;
  color: inherit;
  position: relative;
  overflow: hidden;
}

.proj-image {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.proj-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%) brightness(0.75);
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              filter 0.5s ease;
}

.proj:hover .proj-image img {
  transform: scale(1.05);
  filter: grayscale(0%) brightness(0.9);
}

.proj-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 35%, rgba(0,0,0,0.88) 100%);
}

.proj-body { padding: 28px 32px 36px; }

.proj-type {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ice);
  margin-bottom: 10px;
}

.proj-name {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.proj-arrow {
  font-size: 18px;
  color: var(--ice);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.3s, transform 0.3s;
}

.proj:hover .proj-arrow {
  opacity: 1;
  transform: translateX(0);
}

.proj-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

.proj-disabled { cursor: default; }
.proj-disabled .proj-image img { filter: grayscale(60%) brightness(0.45); }
.proj-disabled:hover .proj-image img {
  transform: none;
  filter: grayscale(60%) brightness(0.45);
}

.cs-badge {
  display: inline-block;
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 3px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

/* ============================================
   FINAL CTA
   ============================================ */
.final {
  padding: 200px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(125,211,252,0.055) 0%, transparent 65%);
  pointer-events: none;
}

.final-inner {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
}

.final-headline {
  font-size: clamp(52px, 9vw, 128px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 36px;
}

.final-headline .ice { color: var(--ice); }

.final-sub {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 56px;
  letter-spacing: 0.2px;
}

.final-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 52px;
  background: var(--ice);
  color: #000;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px;
  font-weight: 700;
  border-radius: 5px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.final-btn:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 24px 64px rgba(125, 211, 252, 0.25);
}

.final-btn .arrow { transition: transform 0.2s; }
.final-btn:hover .arrow { transform: translateX(5px); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  border-top: 1px solid var(--border);
  padding: 28px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-left { display: flex; align-items: center; gap: 20px; }
.footer-copy { font-size: 12px; color: var(--muted); }
.footer-tagline { font-size: 12px; color: var(--muted); letter-spacing: 1px; }

/* ============================================
   INTERIOR PAGE HERO (shorter)
   ============================================ */
.page-hero {
  position: relative;
  padding: 180px 48px 100px;
  overflow: hidden;
}

.page-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 72px 72px;
  mask: radial-gradient(ellipse at center, #000 0%, transparent 80%);
  -webkit-mask: radial-gradient(ellipse at center, #000 0%, transparent 80%);
}

.page-hero-glow {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(125,211,252,0.08) 0%, transparent 65%);
  pointer-events: none;
  animation: pulse 9s ease-in-out infinite;
}

.page-hero-inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
}

.page-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--ice);
  margin-bottom: 36px;
}

.page-hero-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--ice);
}

.page-hero-title {
  font-size: clamp(48px, 7vw, 104px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.035em;
  max-width: 1100px;
  margin-bottom: 36px;
}

.page-hero-title .ice { color: var(--ice); }
.page-hero-title .faded { color: var(--dim); }

.page-hero-body {
  max-width: 640px;
  font-size: 19px;
  line-height: 1.7;
  color: #9CA3AF;
  margin-bottom: 48px;
}

.page-hero-body strong { color: #fff; font-weight: 500; }

.page-hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

/* ============================================
   TIMELINE (assessment "how it works")
   ============================================ */
.timeline {
  padding: 140px 48px;
  border-top: 1px solid var(--border);
}
.timeline-inner { max-width: 1280px; margin: 0 auto; }

.timeline-header {
  max-width: 760px;
  margin-bottom: 96px;
}

.timeline-title {
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin-bottom: 24px;
}

.timeline-title .ice { color: var(--ice); }

.timeline-sub {
  font-size: 18px;
  color: #9CA3AF;
  line-height: 1.7;
}

.timeline-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.timeline-steps::before {
  content: '';
  position: absolute;
  top: 44px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-strong) 20%, var(--border-strong) 80%, transparent);
}

.tl-step {
  padding: 0 28px;
  position: relative;
}

.tl-step-dot {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
}

.tl-step-dot::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent, var(--ice) 40%, transparent 50%);
  opacity: 0;
  transition: opacity 0.6s;
  animation: spin 4s linear infinite;
}

.tl-step.in .tl-step-dot::before { opacity: 0.55; }

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.tl-step-dot-inner {
  position: relative;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ice);
}

.tl-step-num {
  position: absolute;
  top: -2px;
  right: -8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--muted);
}

.tl-step-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #fff;
  line-height: 1.25;
}

.tl-step-desc {
  font-size: 15px;
  color: #9CA3AF;
  line-height: 1.7;
}

/* ============================================
   REPORT / WHAT YOU GET
   ============================================ */
.report {
  padding: 140px 48px;
  background: var(--surface);
  position: relative;
  overflow: hidden;
}
.report-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 96px;
  align-items: start;
}

.report-title {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.08;
  margin-bottom: 24px;
}

.report-title .ice { color: var(--ice); }

.report-desc {
  font-size: 17px;
  color: #9CA3AF;
  line-height: 1.7;
  margin-bottom: 32px;
}

.report-example {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ice);
  padding: 12px 20px;
  border: 1px solid rgba(125,211,252,0.25);
  border-radius: 5px;
  transition: background 0.2s, border-color 0.2s;
}

.report-example:hover {
  background: rgba(125,211,252,0.08);
  border-color: rgba(125,211,252,0.5);
}

.report-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
}

.report-list li {
  background: #000;
  padding: 28px 32px;
  display: flex;
  gap: 22px;
  align-items: flex-start;
}

.report-list li:hover { background: #0a0a0a; }

.report-list-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--ice);
  min-width: 26px;
  padding-top: 4px;
}

.report-list-title {
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}

.report-list-desc {
  font-size: 14px;
  color: #9CA3AF;
  line-height: 1.65;
}

/* ============================================
   PROOF CASES
   ============================================ */
.cases {
  padding: 140px 48px;
  border-top: 1px solid var(--border);
}

.cases-inner { max-width: 1280px; margin: 0 auto; }

.cases-header {
  max-width: 780px;
  margin-bottom: 100px;
}

.cases-title {
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin-bottom: 24px;
}

.cases-title .ice { color: var(--ice); }

.cases-sub {
  font-size: 18px;
  color: #9CA3AF;
  line-height: 1.7;
}

.case {
  padding: 80px 0;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.case:first-of-type { border-top: 0; padding-top: 0; }

.case-reverse { grid-template-columns: 1.2fr 1fr; }
.case-reverse .case-copy { order: 2; }
.case-reverse .case-visual { order: 1; }

.case-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--muted);
  margin-bottom: 16px;
}

.case-client {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--ice);
  padding: 4px 10px;
  border: 1px solid rgba(125,211,252,0.28);
  border-radius: 3px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.case-title {
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 28px;
}

.case-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px 20px;
  margin-bottom: 32px;
}

.case-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--ice);
  text-transform: uppercase;
  padding-top: 4px;
}

.case-text {
  font-size: 15px;
  color: #cbd5e1;
  line-height: 1.65;
}

.case-text strong { color: #fff; font-weight: 600; }

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.chip {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 6px 12px;
  color: #cbd5e1;
  background: rgba(255,255,255,0.035);
  border: 1px solid var(--border);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.chip-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ice);
  box-shadow: 0 0 8px rgba(125,211,252,0.6);
}

/* ============================================
   DIAGRAM
   ============================================ */
.diagram {
  position: relative;
  aspect-ratio: 5 / 4;
  border: 1px solid var(--border);
  border-radius: 16px;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(125,211,252,0.05), transparent 70%),
    linear-gradient(180deg, #060606 0%, #000 100%);
  overflow: hidden;
}

.diagram::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

.diagram-corner {
  position: absolute;
  width: 14px;
  height: 14px;
  border: 1px solid var(--border-strong);
}
.diagram-corner.tl { top: 12px; left: 12px; border-right: 0; border-bottom: 0; }
.diagram-corner.tr { top: 12px; right: 12px; border-left: 0; border-bottom: 0; }
.diagram-corner.bl { bottom: 12px; left: 12px; border-right: 0; border-top: 0; }
.diagram-corner.br { bottom: 12px; right: 12px; border-left: 0; border-top: 0; }

.diagram-label {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--muted);
  text-transform: uppercase;
  z-index: 5;
}

.diagram svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* diagram SVG primitives */
.d-node-bg {
  fill: #0a0a0a;
  stroke: rgba(255,255,255,0.12);
  stroke-width: 1;
}

.d-node-bg.glow {
  fill: rgba(125,211,252,0.06);
  stroke: rgba(125,211,252,0.5);
}

.d-node-label {
  fill: #fff;
  font-size: 11px;
  font-weight: 600;
  font-family: 'Space Grotesk', sans-serif;
  text-anchor: middle;
  dominant-baseline: middle;
}

.d-node-sub {
  fill: #6B7280;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 1.5px;
  font-family: 'Space Grotesk', sans-serif;
  text-anchor: middle;
  text-transform: uppercase;
}

.d-path {
  fill: none;
  stroke: rgba(125,211,252,0.28);
  stroke-width: 1.4;
  stroke-dasharray: 4 4;
}

.d-path.solid { stroke-dasharray: none; stroke: rgba(125,211,252,0.4); }

.d-claude-core {
  fill: url(#claudeGradient);
  stroke: rgba(125,211,252,0.5);
  stroke-width: 1;
}

.d-list-row {
  fill: rgba(255,255,255,0.03);
  stroke: rgba(255,255,255,0.07);
  stroke-width: 1;
  rx: 3;
}

.d-list-text {
  fill: #cbd5e1;
  font-size: 9px;
  font-weight: 500;
  font-family: 'Space Grotesk', sans-serif;
  dominant-baseline: middle;
}

.d-list-chip {
  fill: rgba(125,211,252,0.12);
  stroke: rgba(125,211,252,0.3);
  stroke-width: 1;
  rx: 2;
}

.d-list-chip-text {
  fill: var(--ice);
  font-size: 8px;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  dominant-baseline: middle;
}

/* animation states added by JS */
.d-anim .d-node {
  opacity: 0;
  transition: opacity 0.6s ease;
}

.d-anim .d-node.on { opacity: 1; }

.d-anim .d-node.pulse.on .d-node-bg.glow,
.d-anim .d-node.pulse.on circle.glow {
  animation: nodePulse 2.6s ease-in-out infinite;
}

@keyframes nodePulse {
  0%, 100% { filter: drop-shadow(0 0 0 rgba(125,211,252,0)); }
  50% { filter: drop-shadow(0 0 12px rgba(125,211,252,0.6)); }
}

.d-anim .d-path {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.d-anim .d-path.on {
  opacity: 1;
  animation: pathFlow 1.6s linear infinite;
}

.d-anim .d-path.solid.on {
  animation: none;
}

@keyframes pathFlow {
  from { stroke-dashoffset: 16; }
  to { stroke-dashoffset: 0; }
}

/* ============================================
   TEASER (home proof peek cards)
   ============================================ */
.teasers {
  padding: 140px 48px;
  border-top: 1px solid var(--border);
}

.teasers-inner { max-width: 1280px; margin: 0 auto; }

.teasers-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 64px;
}

.teasers-title {
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.1;
  max-width: 720px;
}

.teasers-title .ice { color: var(--ice); }

.teasers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
}

.teaser {
  background: #000;
  padding: 44px 40px 44px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  overflow: hidden;
  color: inherit;
  transition: background 0.3s;
}

.teaser:hover { background: #0a0a0a; }

.teaser-mini {
  aspect-ratio: 16 / 9;
  border: 1px solid var(--border);
  border-radius: 10px;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(125,211,252,0.05), transparent 70%),
    #060606;
  position: relative;
  overflow: hidden;
}

.teaser-mini svg { position: absolute; inset: 0; width: 100%; height: 100%; }

.teaser-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--ice);
  text-transform: uppercase;
}

.teaser-title {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
}

.teaser-desc {
  font-size: 14px;
  color: #9CA3AF;
  line-height: 1.65;
}

.teaser-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--ice);
  text-transform: uppercase;
  transition: gap 0.2s;
}

.teaser:hover .teaser-link { gap: 14px; }

/* ============================================
   CTA STRIP (compact)
   ============================================ */
.strip {
  padding: 100px 48px;
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.strip-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.strip-text {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  max-width: 680px;
}

.strip-text .ice { color: var(--ice); }

/* ============================================
   SAMPLE OUTPUTS
   ============================================ */
.samples {
  padding: 100px 80px;
  border-top: 1px solid var(--border);
}

.samples-inner { max-width: 1200px; margin: 0 auto; }

.samples-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
  background: var(--border);
  margin-top: 40px;
}

.sample-card {
  background: var(--bg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: background 0.2s;
}

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

.sample-card-type {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ice);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sample-card-type::before {
  content: '';
  display: block;
  width: 14px;
  height: 14px;
  background: rgba(125,211,252,0.1);
  border: 1px solid rgba(125,211,252,0.25);
  border-radius: 2px;
}

.sample-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.sample-card-meta {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.5;
}

.sample-card-stat {
  font-size: 14px;
  color: var(--ice);
  font-weight: 600;
  margin-bottom: 20px;
}

.sample-card-dl {
  margin-top: auto;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.sample-card:hover .sample-card-dl { color: var(--ice); }

.sample-card-dl .arrow {
  font-size: 14px;
  transition: transform 0.2s;
}

.sample-card:hover .sample-card-dl .arrow { transform: translateX(3px); }

.dl-inline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ice);
  text-decoration: none;
  transition: opacity 0.2s;
  opacity: 0.8;
}

.dl-inline:hover { opacity: 1; }

.dl-inline .arrow { font-size: 12px; transition: transform 0.2s; }
.dl-inline:hover .arrow { transform: translateX(2px); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .report-inner { grid-template-columns: 1fr; gap: 56px; }
  .case, .case-reverse { grid-template-columns: 1fr; gap: 48px; }
  .case-reverse .case-copy { order: 1; }
  .case-reverse .case-visual { order: 2; }
}

@media (max-width: 960px) {
  .nav { padding: 18px 24px; }
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav.nav-open .nav-links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 16px 24px 24px;
    background: #000;
    border-bottom: 1px solid var(--border);
  }
  .nav.nav-open .nav-links a {
    padding: 14px 0;
    width: 100%;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
    color: #fff;
  }
  .nav.nav-open .nav-links a.active::after { display: none; }
  .nav.nav-open .nav-links a.active { color: var(--ice); }

  .hero      { padding: 120px 24px 80px; }
  .story     { padding: 100px 24px; }
  .services  { padding: 80px 24px 100px; }
  .services-grid { grid-template-columns: 1fr; }
  .pricing   { padding: 100px 24px; }
  .pricing-compare { grid-template-columns: 1fr; }
  .work      { padding: 100px 24px; }
  .projects-grid { grid-template-columns: 1fr; }
  .final     { padding: 120px 24px; }
  .footer    { padding: 24px; flex-direction: column; gap: 12px; text-align: center; }
  .work-count { display: none; }

  .page-hero { padding: 140px 24px 80px; }
  .timeline  { padding: 100px 24px; }
  .timeline-steps { grid-template-columns: 1fr; gap: 56px; }
  .timeline-steps::before { display: none; }
  .report    { padding: 100px 24px; }
  .cases     { padding: 100px 24px; }
  .case      { padding: 60px 0; }
  .teasers   { padding: 100px 24px; }
  .teasers-grid { grid-template-columns: 1fr; }
  .teasers-header { flex-direction: column; align-items: flex-start; }
  .strip     { padding: 72px 24px; }
  .strip-inner { flex-direction: column; align-items: flex-start; }
  .work-header { flex-direction: column; align-items: flex-start; }
  .samples { padding: 80px 24px; }
  .samples-grid { grid-template-columns: 1fr; }
}
