:root {
  --ink: #0c1d1b;
  --muted: #4c5c58;
  --paper: #f4f1e8;
  --cream: #e9e4d7;
  --white: #fffdf7;
  --signal: #ff5a36;
  --acid: #cbdc5a;
  --line: rgba(12, 29, 27, 0.18);
  --font-geist-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-geist-mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-geist-sans), Arial, sans-serif;
}

[hidden] {
  display: none !important;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  padding: 0 clamp(24px, 5vw, 80px);
  color: var(--white);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.12em;
}

.brand-mark {
  position: relative;
  display: block;
  width: 29px;
  height: 25px;
}

.brand-mark span {
  position: absolute;
  left: 1px;
  width: 26px;
  height: 9px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
}

.brand-mark span:nth-child(1) {
  top: 0;
}

.brand-mark span:nth-child(2) {
  top: 7px;
}

.brand-mark span:nth-child(3) {
  top: 14px;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 650;
  transition: background 180ms ease, color 180ms ease;
}

.header-cta:hover {
  background: var(--white);
  color: var(--ink);
}

.header-cta svg,
.primary-button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.hero {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(440px, 0.95fr);
  align-items: center;
  gap: 56px;
  padding: 140px clamp(24px, 6.5vw, 104px) 92px;
  background:
    radial-gradient(circle at 70% 15%, rgba(203, 220, 90, 0.11), transparent 30%),
    var(--ink);
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 56%;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--signal);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(54px, 5.7vw, 88px);
  font-weight: 620;
  letter-spacing: -0.067em;
  line-height: 0.95;
}

.hero h1 em {
  color: var(--acid);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.hero-intro {
  max-width: 620px;
  margin: 32px 0 0;
  color: rgba(255, 253, 247, 0.74);
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 38px;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 56px;
  padding: 0 21px 0 24px;
  border-radius: 7px;
  background: var(--signal);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
  transition: transform 180ms ease, background 180ms ease;
}

.primary-button:hover {
  transform: translateY(-2px);
  background: #ff6c4b;
}

.text-link {
  padding: 8px 0 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
  font-size: 14px;
  font-weight: 620;
}

.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 19px;
  margin: 35px 0 0;
  padding: 0;
  color: rgba(255, 253, 247, 0.6);
  list-style: none;
  font-size: 12px;
}

.trust-line li {
  display: flex;
  align-items: center;
  gap: 6px;
}

.trust-line svg {
  width: 14px;
  fill: none;
  stroke: var(--acid);
  stroke-width: 2;
}

.hero-visual {
  position: relative;
  min-height: 500px;
}

.film-roll {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, transparent 0 24%, rgba(255, 255, 255, 0.2) 25% 26%, transparent 27% 41%, rgba(255, 255, 255, 0.15) 42% 43%, transparent 44% 59%, rgba(255, 255, 255, 0.1) 60% 61%, transparent 62%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.015));
  box-shadow: inset -20px -20px 80px rgba(0, 0, 0, 0.28);
}

.roll-back {
  top: -120px;
  right: -210px;
  width: 500px;
  height: 500px;
  opacity: 0.54;
}

.roll-front {
  right: -40px;
  bottom: -190px;
  width: 520px;
  height: 520px;
}

.roll-core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 112px;
  height: 112px;
  transform: translate(-50%, -50%);
  border: 26px solid rgba(203, 220, 90, 0.14);
  border-radius: 50%;
  background: var(--ink);
}

.spec-card {
  position: absolute;
  z-index: 2;
  top: 80px;
  left: 3%;
  width: min(390px, 92%);
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 12px;
  background: rgba(244, 241, 232, 0.94);
  color: var(--ink);
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.38);
  transform: rotate(-2deg);
  backdrop-filter: blur(12px);
}

.spec-label {
  margin: 0 0 23px;
  padding-bottom: 13px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
}

.spec-title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 26px;
}

.spec-title span {
  max-width: 180px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 29px;
  line-height: 1.05;
}

.spec-title strong {
  padding: 6px 8px;
  border-radius: 4px;
  background: var(--acid);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.spec-card dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 0;
}

.spec-card dl div {
  padding: 13px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.38);
}

.spec-card dt {
  margin-bottom: 6px;
  color: var(--muted);
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
}

.spec-card dd {
  margin: 0;
  font-size: 13px;
  font-weight: 650;
}

.spec-status {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 19px;
  color: var(--muted);
  font-size: 11px;
}

.spec-status span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4f8650;
  box-shadow: 0 0 0 4px rgba(79, 134, 80, 0.14);
}

.process-section {
  padding: 110px clamp(24px, 6.5vw, 104px) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.45fr) 1.55fr;
  gap: 48px;
  max-width: 1100px;
  margin-bottom: 64px;
}

.section-heading .eyebrow {
  margin-top: 10px;
}

.section-heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 4.1vw, 62px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.04;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink);
}

.steps article {
  padding: 30px 34px 40px 0;
  border-right: 1px solid var(--line);
}

.steps article + article {
  padding-left: 34px;
}

.steps article:last-child {
  border-right: 0;
}

.step-number {
  color: var(--signal);
  font-family: var(--font-geist-mono), monospace;
  font-size: 11px;
}

.steps h3 {
  margin: 48px 0 12px;
  font-size: 19px;
  letter-spacing: -0.02em;
}

.steps p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.product-strip {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 18px;
  padding: 23px 2px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  letter-spacing: 0.11em;
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(290px, 0.7fr) minmax(600px, 1.3fr);
  gap: clamp(42px, 7vw, 110px);
  margin-top: 110px;
  padding: 100px clamp(24px, 6.5vw, 104px);
  background: var(--cream);
}

.quote-aside {
  align-self: start;
  position: sticky;
  top: 34px;
}

.quote-aside h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(43px, 4.3vw, 65px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1;
}

.quote-intro {
  margin: 27px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.fit-card {
  margin-top: 38px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.48);
}

.fit-card > p {
  margin: 0 0 18px;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fit-card ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
  font-size: 13px;
  line-height: 1.45;
}

.fit-card li {
  position: relative;
  padding-left: 20px;
}

.fit-card li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--signal);
}

.response-note {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 10px;
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.response-note span {
  color: var(--signal);
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
}

.quote-form {
  padding: clamp(24px, 4vw, 50px);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 25px 80px rgba(12, 29, 27, 0.08);
}

.form-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--ink);
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
}

.form-heading p {
  margin: 0;
  color: var(--muted);
  letter-spacing: 0;
}

.form-heading b,
.quote-form label b {
  color: var(--signal);
}

.quote-form fieldset {
  margin: 0;
  padding: 36px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
}

.quote-form legend {
  margin-bottom: 24px;
  padding: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 21px 17px;
}

.quote-form label {
  display: grid;
  gap: 9px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.035em;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid rgba(12, 29, 27, 0.23);
  border-radius: 5px;
  outline: none;
  background: #fffefb;
  color: var(--ink);
  font-size: 14px;
  font-weight: 450;
  letter-spacing: 0;
  transition: border 160ms ease, box-shadow 160ms ease;
}

.quote-form input,
.quote-form select {
  height: 48px;
  padding: 0 13px;
}

.quote-form textarea {
  min-height: 108px;
  padding: 13px;
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(203, 220, 90, 0.45);
}

.quote-form ::placeholder {
  color: #929b98;
}

.full-field {
  grid-column: 1 / -1;
}

.form-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 30px;
}

.form-submit p {
  max-width: 320px;
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.form-submit button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 19px;
  min-height: 54px;
  padding: 0 20px;
  border: 0;
  border-radius: 6px;
  background: var(--signal);
  color: var(--white);
  cursor: pointer;
  font-size: 13px;
  font-weight: 750;
  transition: transform 180ms ease, background 180ms ease;
}

.form-submit button:hover {
  transform: translateY(-2px);
  background: #ff6c4b;
}

.form-submit svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.form-status {
  margin: 20px 0 0;
  padding: 13px;
  border-left: 3px solid var(--acid);
  background: rgba(203, 220, 90, 0.16);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  min-height: 116px;
  padding: 25px clamp(24px, 6.5vw, 104px);
  background: var(--ink);
  color: var(--white);
}

.footer-brand {
  justify-self: start;
}

footer > p {
  margin: 0;
  color: rgba(255, 253, 247, 0.56);
  font-size: 11px;
}

.draft-note {
  justify-self: end;
  text-align: right;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 132px;
  }

  .hero::before {
    display: none;
  }

  .hero-visual {
    min-height: 430px;
  }

  .spec-card {
    left: 50%;
    transform: translateX(-50%) rotate(-2deg);
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .quote-section {
    grid-template-columns: 1fr;
  }

  .quote-aside {
    position: static;
  }

  footer {
    grid-template-columns: 1fr;
  }

  footer > *,
  .draft-note {
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 680px) {
  .site-header {
    height: 72px;
  }

  .brand {
    max-width: 190px;
    font-size: 10px;
  }

  .header-cta {
    padding: 11px 13px;
  }

  .header-cta svg {
    display: none;
  }

  .hero {
    min-height: auto;
    gap: 28px;
    padding-bottom: 50px;
  }

  .hero h1 {
    font-size: 49px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

  .text-link {
    align-self: flex-start;
  }

  .trust-line {
    flex-direction: column;
    gap: 8px;
  }

  .hero-visual {
    min-height: 370px;
  }

  .roll-front {
    right: -190px;
  }

  .spec-card {
    top: 35px;
    width: 100%;
    padding: 19px;
  }

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

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

  .steps article,
  .steps article + article {
    padding: 26px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .steps h3 {
    margin-top: 22px;
  }

  .product-strip {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .quote-section {
    margin-top: 70px;
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .quote-form {
    padding: 24px 18px;
  }

  .form-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

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

  .full-field {
    grid-column: auto;
  }

  .form-submit {
    align-items: stretch;
    flex-direction: column;
  }

  .form-submit button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    transition: none !important;
  }
}
