﻿:root {
  --ink: #16120f;
  --muted: #6e6259;
  --paper: #f4efe6;
  --paper-deep: #e5d7c1;
  --ember: #f05a28;
  --acid: #bfd936;
  --steel: #24333d;
  --white: #fffaf0;
  --line: rgba(22, 18, 15, 0.16);
  --shadow: 0 28px 80px rgba(36, 51, 61, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 10%, rgba(240, 90, 40, 0.22), transparent 32rem),
    radial-gradient(circle at 90% 5%, rgba(191, 217, 54, 0.22), transparent 28rem),
    linear-gradient(135deg, var(--paper), #f9f3e8 42%, var(--paper-deep));
  min-height: 100vh;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.32;
  z-index: 0;
  background-image: repeating-linear-gradient(45deg, rgba(22, 18, 15, 0.04) 0 1px, transparent 1px 8px);
  mix-blend-mode: multiply;
}

body > *:not(.noise) {
  position: relative;
  z-index: 1;
}

.site-header {
  width: min(1180px, calc(100% - 32px));
  margin: 24px auto 0;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 60px rgba(36, 51, 61, 0.08);
  position: sticky;
  top: 16px;
  z-index: 20;
}

.brand,
.site-nav a,
.site-footer a {
  color: var(--ink);
  text-decoration: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--white);
  background: var(--ink);
  box-shadow: inset 0 -4px 0 rgba(240, 90, 40, 0.55);
}

.site-nav {
  display: flex;
  gap: 6px;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
  color: var(--muted);
  transition: color 180ms ease, background 180ms ease;
}

.site-nav a:hover {
  color: var(--ink);
  background: rgba(22, 18, 15, 0.08);
}

.nav-toggle {
  display: none;
  border: 0;
  background: var(--ink);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  padding: 13px 11px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section-pad {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 96px 0;
}

.hero {
  min-height: calc(100vh - 96px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: 54px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--ember);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Archivo Black", sans-serif;
  letter-spacing: -0.07em;
  line-height: 0.94;
}

h1 {
  font-size: clamp(3.3rem, 9vw, 7.4rem);
  max-width: 950px;
  margin-bottom: 28px;
}

h2 {
  font-size: clamp(2.3rem, 5.4vw, 5rem);
  margin-bottom: 0;
}

h3 {
  font-size: 1.35rem;
  letter-spacing: -0.04em;
}

.hero-lede,
.split p,
.contact-section p {
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(22, 18, 15, 0.16);
}

.button.primary {
  color: var(--white);
  background: var(--ink);
}

.button.ghost {
  color: var(--ink);
  background: rgba(255, 250, 240, 0.58);
}

.hero-panel {
  min-height: 560px;
  position: relative;
  border-radius: 42px;
  background:
    linear-gradient(145deg, rgba(36, 51, 61, 0.96), rgba(22, 18, 15, 0.96)),
    radial-gradient(circle at 50% 50%, rgba(240, 90, 40, 0.25), transparent 24rem);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-panel::before,
.hero-panel::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 250, 240, 0.18);
  animation: spin 24s linear infinite;
}

.hero-panel::before {
  width: 520px;
  height: 520px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.hero-panel::after {
  width: 330px;
  height: 330px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  animation-duration: 16s;
  animation-direction: reverse;
}

.status-card,
.orbit-card,
.metric-card {
  position: absolute;
  border: 1px solid rgba(255, 250, 240, 0.18);
  background: rgba(255, 250, 240, 0.1);
  color: var(--white);
  backdrop-filter: blur(14px);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.24);
}

.status-card {
  top: 26px;
  left: 26px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 800;
}

.pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 0 8px rgba(191, 217, 54, 0.14);
}

.main-card {
  width: min(360px, calc(100% - 48px));
  left: 50%;
  top: 50%;
  padding: 34px;
  border-radius: 34px;
  transform: translate(-50%, -50%) rotate(-4deg);
}

.main-card p,
.main-card span,
.metric-card span {
  color: rgba(255, 250, 240, 0.72);
}

.main-card strong {
  display: block;
  margin: 10px 0 12px;
  font-family: "Archivo Black", sans-serif;
  font-size: 2.5rem;
  letter-spacing: -0.07em;
  line-height: 0.95;
}

.metric-card {
  padding: 20px;
  border-radius: 26px;
  max-width: 190px;
}

.metric-card strong {
  display: block;
  color: var(--acid);
  font-size: 2.6rem;
  line-height: 1;
}

.top-card {
  top: 132px;
  right: 34px;
}

.bottom-card {
  left: 38px;
  bottom: 46px;
}

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(255, 250, 240, 0.35);
}

.marquee div {
  display: flex;
  min-width: max-content;
  gap: 36px;
  padding: 22px 0;
  animation: marquee 22s linear infinite;
}

.marquee span {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(1.35rem, 3vw, 2.2rem);
  letter-spacing: -0.06em;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px rgba(22, 18, 15, 0.6);
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 56px;
  align-items: end;
}

.service-grid,
.benefit-grid,
.work-grid,
.proof-grid {
  display: grid;
  gap: 18px;
}

.service-grid,
.benefit-grid {
  grid-template-columns: repeat(2, 1fr);
  padding-top: 0;
}

.service-card,
.work-card,
.proof-card,
.contact-section,
.timeline-item {
  border: 1px solid var(--line);
  background: rgba(255, 250, 240, 0.62);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 50px rgba(36, 51, 61, 0.08);
}

.service-card {
  min-height: 310px;
  padding: 30px;
  border-radius: 34px;
  transition: transform 180ms ease, background 180ms ease;
}

.service-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 250, 240, 0.88);
}

.service-card span,
.timeline-item span {
  display: inline-flex;
  margin-bottom: 58px;
  color: var(--ember);
  font-weight: 800;
}

.service-card p,
.work-card p,
.timeline-item p {
  color: var(--muted);
  line-height: 1.7;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 28px;
}

.work-section {
  padding-top: 20px;
}

.work-grid {
  grid-template-columns: 1.2fr 0.8fr;
}

.work-card {
  min-height: 280px;
  padding: 30px;
  border-radius: 34px;
  position: relative;
  overflow: hidden;
}

.work-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -70px;
  bottom: -70px;
  border-radius: 50%;
  background: rgba(240, 90, 40, 0.18);
}

.work-card.large {
  grid-row: span 2;
  min-height: 578px;
  background: var(--steel);
  color: var(--white);
}

.work-card.large p,
.work-card.large li {
  color: rgba(255, 250, 240, 0.72);
}

.work-card.large::after {
  width: 320px;
  height: 320px;
  background: rgba(191, 217, 54, 0.16);
}

.work-tag {
  display: inline-flex;
  margin-bottom: 78px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(191, 217, 54, 0.22);
  color: var(--ink);
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.work-card.large .work-tag {
  color: var(--white);
  background: rgba(255, 250, 240, 0.14);
}

.work-card h3 {
  max-width: 650px;
  font-size: clamp(1.55rem, 3vw, 2.6rem);
}

.work-card ul {
  margin: 28px 0 0;
  padding-left: 20px;
  line-height: 2;
}

.proof-grid {
  grid-template-columns: repeat(4, 1fr);
  padding-top: 0;
}

.proof-card {
  padding: 28px;
  border-radius: 28px;
}

.proof-card strong {
  display: block;
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(2.3rem, 4vw, 4.2rem);
  letter-spacing: -0.08em;
}

.proof-card span {
  color: var(--muted);
  font-weight: 700;
}

.process-section {
  padding-top: 20px;
}

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

.timeline-item {
  padding: 28px;
  border-radius: 28px;
}

.timeline-item span {
  margin-bottom: 86px;
}

.hero--narrow {
  grid-template-columns: 1fr;
  min-height: 60vh;
}

.hero--narrow .hero-copy {
  max-width: 860px;
}

.service-card--featured {
  border-color: var(--ember);
}

.service-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--ember);
  font-weight: 800;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.service-link:hover {
  text-decoration: underline;
}

.flow-section {
  padding-top: 0;
}

.flow-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  margin-top: 32px;
}

.flow-step {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 250, 240, 0.62);
  backdrop-filter: blur(12px);
}

.flow-num {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ember);
  color: var(--white);
  font-weight: 800;
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.flow-step h3 {
  margin-bottom: 10px;
}

.flow-step p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.flow-step code {
  font-family: monospace;
  font-size: 0.88em;
  background: rgba(22, 18, 15, 0.08);
  padding: 2px 6px;
  border-radius: 6px;
}

.flow-arrow {
  font-size: 1.8rem;
  color: var(--ember);
  font-weight: 800;
}

.include-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.include-item {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 250, 240, 0.62);
  backdrop-filter: blur(12px);
}

.include-item strong {
  display: block;
  margin-bottom: 10px;
  letter-spacing: -0.03em;
  font-size: 1.1rem;
}

.include-item p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.form-feedback {
  margin-top: 16px;
  font-weight: 700;
  line-height: 1.6;
}

.form-success {
  color: #2d7a3a;
}

.form-error {
  color: var(--ember);
}

.contact-section {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 44px;
  padding: 42px;
  border-radius: 42px;
  margin-bottom: 78px;
}

.contact-form {
  display: grid;
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 15px 16px;
  color: var(--ink);
  background: rgba(255, 250, 240, 0.86);
  font: inherit;
  outline: none;
}

input:focus,
textarea:focus {
  border-color: var(--ember);
  box-shadow: 0 0 0 4px rgba(240, 90, 40, 0.12);
}

textarea {
  resize: vertical;
}

.site-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 30px 0 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
}

.site-footer div {
  display: flex;
  gap: 18px;
  font-weight: 800;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

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

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}

@media (max-width: 920px) {
  .hero,
  .split,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 76px;
  }

  .hero-panel {
    min-height: 470px;
  }

  .service-grid,
  .benefit-grid,
  .timeline,
  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .flow-arrow {
    display: none;
  }

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

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

  .work-card.large {
    min-height: 420px;
  }
}

@media (max-width: 680px) {
  .site-header {
    border-radius: 28px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 88px 16px auto;
    display: grid;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: rgba(255, 250, 240, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .section-pad {
    padding: 68px 0;
  }

  .hero {
    padding-top: 54px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-panel {
    min-height: 420px;
    border-radius: 30px;
  }

  .top-card {
    top: 110px;
    right: 18px;
  }

  .bottom-card {
    left: 18px;
    bottom: 28px;
  }

  .service-grid,
  .benefit-grid,
  .proof-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .section-heading {
    display: block;
  }

  .contact-section {
    padding: 26px;
    border-radius: 30px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
