@import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=Manrope:wght@400;500;600;700&family=Newsreader:ital,opsz,wght@1,6..72,500&display=swap');

:root {
  --ink: #111619;
  --ink-soft: #263035;
  --paper: #f2f0e9;
  --paper-deep: #e7e3d9;
  --silver: #c7ced0;
  --silver-dark: #879195;
  --fire: #ee5b32;
  --fire-light: #ff8a51;
  --line: rgba(17, 22, 25, .14);
  --shell: min(1180px, calc(100% - 40px));
  --radius: 6px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
button { font: inherit; }
.shell { width: var(--shell); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: white;
  background: var(--ink);
  transform: translateY(-150%);
}
.skip-link:focus { transform: none; }

.site-header {
  position: fixed;
  z-index: 20;
  inset: 0 0 auto;
  border-bottom: 1px solid transparent;
  transition: background .2s, border-color .2s;
}
.site-header.is-scrolled {
  background: rgba(242, 240, 233, .92);
  border-color: var(--line);
  backdrop-filter: blur(14px);
}
.header-inner {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -.025em;
  text-decoration: none;
}
.brand-mark {
  width: 24px;
  height: 29px;
  fill: var(--fire);
}
.brand-mark .flame-core { fill: var(--fire-light); }
.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 14px;
  font-weight: 600;
}
.site-nav a { text-decoration: none; }
.site-nav a:not(.nav-cta):hover { color: var(--fire); }
.nav-cta {
  padding: 10px 16px;
  color: white;
  background: var(--ink);
  border-radius: 3px;
}
.nav-cta:hover { background: var(--fire); }
.menu-button { display: none; }

.hero {
  position: relative;
  min-height: 760px;
  padding: 180px 0 110px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(17,22,25,.03) 1px, transparent 1px) 0 0 / 84px 84px,
    linear-gradient(rgba(17,22,25,.03) 1px, transparent 1px) 0 0 / 84px 84px;
}
.hero-glow {
  position: absolute;
  width: 520px;
  height: 520px;
  right: -120px;
  top: 70px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(238, 91, 50, .23), rgba(238, 91, 50, 0) 68%);
  filter: blur(6px);
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, .7fr);
  gap: clamp(60px, 10vw, 150px);
  align-items: end;
}
.eyebrow, .service-label, .signal-kicker {
  margin: 0 0 22px;
  color: var(--fire);
  font: 500 12px/1.3 "DM Mono", monospace;
  letter-spacing: .1em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 800px;
  margin-bottom: 30px;
  font-size: clamp(58px, 7.4vw, 106px);
  line-height: .91;
  letter-spacing: -.065em;
}
h1 em {
  color: var(--fire);
  font-family: "Newsreader", serif;
  font-weight: 500;
}
.hero-intro {
  max-width: 670px;
  margin-bottom: 38px;
  color: var(--ink-soft);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}
.button {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 15px 20px;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}
.button-primary { color: white; background: var(--ink); }
.button-primary:hover { background: var(--fire); }
.text-link {
  font-size: 14px;
  font-weight: 700;
  text-underline-offset: 5px;
}

.signal-card {
  color: white;
  background: var(--ink);
  border-radius: var(--radius);
  box-shadow: 24px 24px 0 var(--paper-deep);
}
.signal-top {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 15px 20px;
  color: var(--silver);
  border-bottom: 1px solid rgba(255,255,255,.12);
  font: 400 11px "DM Mono", monospace;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.signal-dot {
  width: 7px;
  height: 7px;
  background: var(--fire);
  border-radius: 50%;
  box-shadow: 0 0 14px var(--fire-light);
}
.signal-body { padding: 34px 32px 30px; }
.signal-kicker { margin-bottom: 14px; }
.signal-body h2 {
  margin-bottom: 18px;
  font-size: 31px;
  line-height: 1.12;
  letter-spacing: -.04em;
}
.signal-body p:last-child { margin: 0; color: var(--silver); font-size: 15px; }
.signal-details {
  display: grid;
  gap: 1px;
  background: rgba(255,255,255,.11);
  border-top: 1px solid rgba(255,255,255,.11);
}
.signal-details span {
  padding: 13px 32px;
  color: #e3e7e8;
  background: var(--ink);
  font: 400 11px "DM Mono", monospace;
}
.signal-details span::before { content: "✓"; margin-right: 10px; color: var(--fire-light); }

.trust-strip { color: white; background: var(--ink); }
.trust-grid {
  min-height: 120px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.trust-grid p { max-width: 560px; margin: 0; color: var(--silver); font-size: 14px; }
.trust-grid ul {
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
  font: 400 11px "DM Mono", monospace;
  text-transform: uppercase;
}
.trust-grid li::before { content: "◆"; margin-right: 10px; color: var(--fire); font-size: 8px; }

.section { padding: 120px 0; }
.section-heading { max-width: 740px; }
.section-heading h2, .fit h2, .contact h2 {
  margin-bottom: 24px;
  font-size: clamp(40px, 5vw, 66px);
  line-height: 1.02;
  letter-spacing: -.055em;
}
.section-heading > p:last-child { max-width: 620px; color: #4d585d; font-size: 18px; }

.service-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr .85fr;
  gap: 1px;
  margin-top: 70px;
  background: var(--line);
  border: 1px solid var(--line);
}
.service-card {
  min-height: 420px;
  padding: 34px;
  background: var(--paper);
}
.service-featured { background: #e9e6dc; }
.service-number {
  display: block;
  margin-bottom: 75px;
  color: var(--silver-dark);
  font: 400 12px "DM Mono", monospace;
}
.service-label { margin-bottom: 12px; }
.service-card h3 {
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -.035em;
}
.service-card > p:not(.service-label) { color: #4d585d; }
.service-card ul {
  margin: 26px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
  font-size: 13px;
}
.service-card li { margin-top: 7px; }
.service-card li::before { content: "—"; margin-right: 10px; color: var(--fire); }

.upgrade-callout {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) auto;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  margin-top: 28px;
  padding: 32px 36px;
  color: white;
  background: var(--ink);
  border-radius: var(--radius);
  box-shadow: 12px 12px 0 var(--paper-deep);
}
.upgrade-deadline {
  display: grid;
  gap: 5px;
  padding-right: 28px;
  border-right: 1px solid rgba(255,255,255,.16);
}
.upgrade-deadline span {
  color: var(--silver);
  font: 400 10px/1.4 "DM Mono", monospace;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.upgrade-deadline strong { color: var(--fire-light); font-size: 20px; }
.upgrade-copy .service-label { margin-bottom: 8px; }
.upgrade-copy h3 {
  margin-bottom: 8px;
  font-size: 25px;
  line-height: 1.2;
  letter-spacing: -.035em;
}
.upgrade-copy > p:last-child { max-width: 700px; margin: 0; color: var(--silver); font-size: 14px; }
.button-light {
  flex-shrink: 0;
  color: var(--ink);
  background: var(--paper);
  white-space: nowrap;
}
.button-light:hover { color: white; background: var(--fire); }

.approach { color: white; background: var(--ink); }
.approach-grid {
  display: grid;
  grid-template-columns: .85fr 1fr;
  gap: clamp(60px, 10vw, 140px);
}
.approach .section-heading > p:last-child { color: var(--silver); }
.steps { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.16); }
.steps li {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 10px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,.16);
}
.steps > li > span { color: var(--fire-light); font: 400 12px "DM Mono", monospace; }
.steps h3 { margin-bottom: 8px; font-size: 24px; }
.steps p { margin: 0; color: var(--silver); font-size: 14px; }

.fit { background: var(--paper-deep); }
.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(60px, 10vw, 150px);
}
.fit-list { padding-top: 35px; }
.fit-list p {
  position: relative;
  margin: 0;
  padding: 25px 0 25px 34px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 17px;
}
.fit-list p:last-child { border-bottom: 1px solid var(--line); }
.fit-list p::before { content: ""; position: absolute; left: 0; top: 34px; width: 9px; height: 9px; background: var(--fire); transform: rotate(45deg); }

.contact { background: var(--paper); }
.contact-card {
  display: grid;
  grid-template-columns: 1.2fr .65fr;
  gap: 100px;
  padding: clamp(40px, 7vw, 80px);
  color: white;
  background: linear-gradient(135deg, #151b1e, #202a2e);
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(17,22,25,.13);
}
.contact h2 { max-width: 680px; font-size: clamp(38px, 5vw, 62px); }
.contact-card > div:first-child > p:last-child { max-width: 650px; margin-bottom: 0; color: var(--silver); }
.contact-action {
  align-self: end;
  padding-top: 25px;
  border-top: 1px solid rgba(255,255,255,.15);
}
.status-pill {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 11px;
  color: #ffd9c8;
  background: rgba(238,91,50,.16);
  border: 1px solid rgba(255,138,81,.3);
  border-radius: 99px;
  font: 500 10px "DM Mono", monospace;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.contact-action p { margin: 0; color: var(--silver); font-size: 13px; }

.site-footer { padding: 38px 0; border-top: 1px solid var(--line); }
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  color: #5f696d;
  font: 400 11px "DM Mono", monospace;
}
.footer-inner p { margin: 0; }
.footer-inner p:last-child { text-align: right; }
.brand-small { font-family: "Manrope", sans-serif; font-size: 14px; }
.brand-small .brand-mark { width: 17px; height: 20px; }

@media (max-width: 900px) {
  .hero { min-height: auto; }
  .hero-grid, .approach-grid, .fit-grid, .contact-card { grid-template-columns: 1fr; }
  .hero-grid { gap: 70px; }
  .signal-card { max-width: 520px; }
  .trust-grid { grid-template-columns: 1fr; padding: 26px 0; }
  .trust-grid ul { flex-wrap: wrap; gap: 10px 24px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 0; }
  .service-number { margin-bottom: 40px; }
  .upgrade-callout { grid-template-columns: 1fr; align-items: start; }
  .upgrade-deadline { padding: 0 0 20px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.16); }
  .upgrade-callout .button { justify-self: start; }
  .contact-card { gap: 50px; }
}

@media (max-width: 680px) {
  :root { --shell: min(100% - 28px, 1180px); }
  .header-inner { height: 68px; }
  .menu-button {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 6px;
    padding: 10px 5px;
    background: none;
    border: 0;
  }
  .menu-button span:not(.sr-only) { display: block; width: 24px; height: 2px; background: var(--ink); }
  .site-nav {
    position: fixed;
    inset: 0;
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 26px;
    background: var(--paper);
    font-size: 20px;
  }
  .site-nav.is-open { display: flex; }
  .nav-cta { font-size: 16px; }
  .hero { padding: 135px 0 80px; }
  h1 { font-size: clamp(52px, 16vw, 76px); }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .signal-card { box-shadow: 12px 12px 0 var(--paper-deep); }
  .trust-grid ul { display: grid; }
  .section { padding: 85px 0; }
  .section-heading h2, .fit h2, .contact h2 { font-size: 40px; }
  .service-grid { margin-top: 45px; }
  .service-card { padding: 28px 24px; }
  .upgrade-callout { margin-top: 18px; padding: 28px 24px; box-shadow: 8px 8px 0 var(--paper-deep); }
  .button-light { white-space: normal; }
  .fit-list { padding-top: 0; }
  .contact-card { padding: 34px 25px; }
  .footer-inner { grid-template-columns: 1fr; text-align: left; }
  .footer-inner p:last-child { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
