:root {
  --ink: #10231f;
  --ink-deep: #091713;
  --paper: #f3f0e7;
  --paper-bright: #fffdf7;
  --cream: #ddd7c7;
  --orange: #ff6b35;
  --orange-dark: #d94a1d;
  --mint: #b9e2cc;
  --line-dark: rgba(255, 255, 255, 0.16);
  --line-light: rgba(16, 35, 31, 0.16);
  --shadow: 0 30px 80px rgba(3, 19, 14, 0.24);
  --shell: 1180px;
  --radius: 22px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  background: var(--orange);
  color: var(--paper-bright);
}

a {
  color: inherit;
}

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--paper-bright);
  color: var(--ink);
  font-weight: 800;
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: min(calc(100% - 40px), var(--shell));
  margin-inline: auto;
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--paper-bright);
}

.solid-header {
  position: relative;
  background: var(--ink);
}

.header-inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid var(--line-dark);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: inherit;
  font-size: 16px;
  font-weight: 850;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 8px 8px 8px 2px;
  display: grid;
  place-items: center;
  background: var(--orange);
  color: var(--paper-bright);
  font-size: 18px;
  line-height: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  color: inherit;
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0.055em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a:not(.nav-cta):hover {
  color: var(--mint);
}

.nav-cta {
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 999px;
}

.nav-cta:hover {
  background: var(--paper-bright);
  color: var(--ink);
}

.hero {
  min-height: 820px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  padding: 154px 0 100px;
  background:
    radial-gradient(circle at 87% 23%, rgba(185, 226, 204, 0.18), transparent 25%),
    radial-gradient(circle at 5% 95%, rgba(255, 107, 53, 0.17), transparent 28%),
    var(--ink);
  color: var(--paper-bright);
}

.hero::before {
  content: "";
  position: absolute;
  top: 126px;
  right: -80px;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(255, 255, 255, 0.025),
    0 0 0 140px rgba(255, 255, 255, 0.018);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  align-items: center;
  gap: clamp(48px, 7vw, 98px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--mint);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow-dark {
  color: var(--orange-dark);
}

.hero h1,
.legal-hero h1,
.not-found h1 {
  margin: 0;
  max-width: 780px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 6.1vw, 82px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hero-lede {
  max-width: 650px;
  margin: 32px 0 0;
  color: rgba(255, 253, 247, 0.78);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.65;
}

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

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 23px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.045em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--orange);
  color: var(--paper-bright);
}

.button-primary:hover {
  background: #ff7e51;
}

.button-light {
  background: var(--paper-bright);
  color: var(--ink);
}

.button-light:hover {
  background: var(--mint);
}

.text-link {
  color: var(--paper-bright);
  font-size: 14px;
  font-weight: 800;
  text-underline-offset: 5px;
}

.text-link span {
  display: inline-block;
  margin-left: 4px;
}

.hero-note {
  max-width: 480px;
  margin: 23px 0 0;
  color: rgba(255, 253, 247, 0.56);
  font-size: 13px;
}

.site-preview {
  position: relative;
  transform: rotate(1.2deg);
}

.preview-browser {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background: var(--paper-bright);
  box-shadow: var(--shadow);
  color: var(--ink);
}

.browser-bar {
  height: 43px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 13px;
  background: #dddcd3;
}

.browser-bar > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #aaa99f;
}

.browser-address {
  width: 55%;
  margin-inline: auto;
  padding: 5px 14px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.67);
  color: rgba(16, 35, 31, 0.52);
  font-size: 8px;
  text-align: center;
}

.preview-page {
  min-height: 430px;
}

.preview-nav {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  border-bottom: 1px solid var(--line-light);
}

.preview-logo {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.preview-menu {
  color: rgba(16, 35, 31, 0.55);
  font-size: 6px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.preview-content {
  min-height: 298px;
  padding: 54px 40px 42px;
  background:
    linear-gradient(90deg, rgba(243, 240, 231, 0.92), rgba(243, 240, 231, 0.62)),
    repeating-linear-gradient(-45deg, transparent 0 12px, rgba(16, 35, 31, 0.05) 12px 13px);
}

.preview-kicker {
  margin: 0 0 13px;
  color: var(--orange-dark);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.preview-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(29px, 3.4vw, 43px);
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.preview-lines {
  margin-top: 19px;
  display: grid;
  gap: 7px;
}

.preview-lines span {
  height: 5px;
  width: 68%;
  border-radius: 99px;
  background: rgba(16, 35, 31, 0.2);
}

.preview-lines span:last-child {
  width: 49%;
}

.preview-button {
  width: fit-content;
  margin-top: 22px;
  padding: 9px 14px;
  border-radius: 99px;
  background: var(--ink);
  color: var(--paper-bright);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.09em;
}

.preview-proof {
  min-height: 72px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  padding: 0 25px;
  background: var(--ink);
  color: var(--paper-bright);
  font-size: 6px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-align: center;
}

.preview-proof span + span {
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.preview-tag {
  position: absolute;
  padding: 9px 13px;
  border-radius: 10px;
  box-shadow: 0 13px 30px rgba(0, 0, 0, 0.24);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.02em;
}

.tag-one {
  top: 80px;
  left: -38px;
  background: var(--mint);
  color: var(--ink);
  transform: rotate(-4deg);
}

.tag-two {
  right: -25px;
  bottom: 57px;
  background: var(--orange);
  color: var(--paper-bright);
  transform: rotate(3deg);
}

.signal-strip {
  background: var(--orange);
  color: var(--paper-bright);
}

.signal-grid {
  min-height: 86px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
}

.signal-grid p {
  margin: 0;
  padding: 8px 30px;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.065em;
  text-align: center;
  text-transform: uppercase;
}

.signal-grid p + p {
  border-left: 1px solid rgba(255, 255, 255, 0.34);
}

.signal-grid span {
  margin-right: 9px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 10px;
}

.section {
  padding: clamp(84px, 10vw, 138px) 0;
}

.section-light {
  background: var(--paper-bright);
}

.section-dark {
  background: var(--ink-deep);
  color: var(--paper-bright);
}

.section-paper {
  background: var(--paper);
}

.section-heading h2,
.process-intro h2,
.cta-panel h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5vw, 66px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.62fr);
  align-items: end;
  gap: 70px;
}

.split-heading > p {
  margin: 0 0 5px;
  color: rgba(16, 35, 31, 0.66);
}

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

.service-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  padding: 32px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: var(--paper);
}

.featured-card {
  background: var(--mint);
}

.card-number {
  color: var(--orange-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.service-card h3 {
  max-width: 240px;
  margin: auto 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.service-card p {
  margin: 0;
  color: rgba(16, 35, 31, 0.66);
  font-size: 15px;
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(520px, 1.22fr);
  gap: clamp(70px, 11vw, 160px);
}

.process-intro {
  position: sticky;
  top: 55px;
  align-self: start;
}

.process-intro p:last-child {
  margin: 27px 0 0;
  color: rgba(255, 253, 247, 0.64);
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 22px;
  padding: 12px 0 45px;
  border-bottom: 1px solid var(--line-dark);
}

.process-list li + li {
  padding-top: 45px;
}

.step-number {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.27);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--mint);
  font-size: 11px;
  font-weight: 850;
}

.process-list h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.process-list p {
  margin: 10px 0 0;
  color: rgba(255, 253, 247, 0.62);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(560px, 1fr);
  gap: clamp(70px, 11vw, 150px);
}

.faq-list {
  border-top: 1px solid var(--line-light);
}

.faq-list details {
  border-bottom: 1px solid var(--line-light);
}

.faq-list summary {
  position: relative;
  padding: 25px 42px 25px 0;
  cursor: pointer;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.025em;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  color: var(--orange-dark);
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 26px;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 660px;
  margin: -7px 42px 25px 0;
  color: rgba(16, 35, 31, 0.68);
}

.faq-list details a {
  text-underline-offset: 3px;
}

.cta-section {
  padding: 0 0 34px;
  background: var(--paper);
}

.cta-panel {
  padding: clamp(55px, 8vw, 95px);
  border-radius: calc(var(--radius) + 10px);
  background:
    radial-gradient(circle at 100% 0%, rgba(185, 226, 204, 0.22), transparent 29%),
    var(--orange-dark);
  color: var(--paper-bright);
  text-align: center;
}

.cta-panel .eyebrow {
  color: rgba(255, 253, 247, 0.68);
}

.cta-panel h2 {
  max-width: 800px;
  margin-inline: auto;
}

.cta-panel .button {
  margin-top: 32px;
}

.site-footer {
  padding: 64px 0 34px;
  background: var(--ink-deep);
  color: var(--paper-bright);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 58px;
}

.footer-brand {
  margin-bottom: 13px;
}

.footer-grid p {
  margin: 0;
  color: rgba(255, 253, 247, 0.55);
  font-size: 13px;
}

.footer-grid .legal-identity {
  max-width: 520px;
  margin-top: 8px;
  color: rgba(255, 253, 247, 0.72);
}

.footer-links {
  display: flex;
  align-items: flex-start;
  gap: 26px;
}

.footer-links a {
  color: rgba(255, 253, 247, 0.78);
  font-size: 13px;
  font-weight: 700;
  text-underline-offset: 4px;
}

.footer-links a:hover {
  color: var(--mint);
}

.copyright {
  grid-column: 1 / -1;
  padding-top: 28px;
  border-top: 1px solid var(--line-dark);
}

.legal-main {
  background: var(--paper-bright);
}

.legal-hero {
  padding: 95px 0;
  background:
    radial-gradient(circle at 90% 0%, rgba(185, 226, 204, 0.17), transparent 28%),
    var(--ink);
  color: var(--paper-bright);
}

.legal-hero h1 {
  font-size: clamp(52px, 7vw, 88px);
}

.legal-hero p:last-child {
  margin: 27px 0 0;
  color: rgba(255, 253, 247, 0.62);
  font-size: 14px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 310px minmax(0, 760px);
  justify-content: space-between;
  gap: 80px;
  padding-top: 82px;
  padding-bottom: 120px;
}

.legal-summary {
  position: sticky;
  top: 40px;
  align-self: start;
  padding: 26px;
  border-radius: 18px;
  background: var(--paper);
  color: rgba(16, 35, 31, 0.7);
  font-size: 14px;
}

.legal-summary p {
  margin: 0;
}

.legal-summary p + p {
  margin-top: 17px;
}

.legal-summary .summary-label {
  color: var(--orange-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.summary-list {
  margin: 18px 0 22px;
  padding-left: 19px;
}

.summary-list li + li {
  margin-top: 8px;
}

.legal-summary .legal-download {
  display: inline-flex;
  padding: 11px 14px;
  border: 1px solid rgba(189, 75, 42, 0.25);
  border-radius: 10px;
  background: var(--paper-bright);
  text-decoration: none;
}

.legal-summary .legal-download:hover {
  border-color: var(--orange-dark);
}

.legal-summary a,
.legal-copy a {
  color: var(--orange-dark);
  font-weight: 750;
  text-underline-offset: 3px;
}

.legal-copy {
  color: rgba(16, 35, 31, 0.78);
}

.legal-copy > p:first-child {
  margin-top: 0;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.65;
}

.legal-copy h2 {
  margin: 55px 0 13px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.legal-copy p,
.legal-copy li {
  font-size: 15px;
}

.legal-copy ul {
  padding-left: 22px;
}

.legal-copy li + li {
  margin-top: 7px;
}

.legal-caps {
  font-size: 12px !important;
  font-weight: 700;
  letter-spacing: 0.025em;
}

.not-found-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 30px;
  background:
    radial-gradient(circle at 80% 15%, rgba(185, 226, 204, 0.18), transparent 25%),
    var(--ink);
  color: var(--paper-bright);
}

.not-found {
  width: min(100%, 720px);
}

.not-found .brand {
  margin-bottom: 80px;
}

.not-found h1 {
  font-size: clamp(52px, 10vw, 90px);
}

.not-found > p:not(.eyebrow) {
  margin: 25px 0 32px;
  color: rgba(255, 253, 247, 0.7);
}

@media (max-width: 980px) {
  .site-nav a:not(.nav-cta) {
    display: none;
  }

  .hero {
    padding-top: 170px;
  }

  .hero-grid,
  .split-heading,
  .process-layout,
  .faq-layout,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 80px;
  }

  .site-preview {
    width: min(100%, 620px);
    margin-inline: auto;
  }

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

  .service-card:last-child {
    grid-column: 1 / -1;
  }

  .process-layout,
  .faq-layout {
    gap: 60px;
  }

  .process-intro,
  .legal-summary {
    position: static;
  }

  .legal-layout {
    gap: 55px;
  }

  .legal-summary {
    max-width: 640px;
  }
}

@media (max-width: 680px) {
  .shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  .header-inner {
    min-height: 76px;
  }

  .site-nav {
    gap: 0;
  }

  .nav-cta {
    padding: 8px 13px;
    font-size: 11px !important;
  }

  .hero {
    min-height: auto;
    padding: 135px 0 83px;
  }

  .hero h1 {
    font-size: clamp(46px, 14vw, 64px);
  }

  .hero-lede {
    margin-top: 25px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .hero-grid {
    gap: 62px;
  }

  .site-preview {
    transform: none;
  }

  .preview-page {
    min-height: 335px;
  }

  .preview-content {
    min-height: 230px;
    padding: 38px 25px 30px;
  }

  .preview-title {
    font-size: 31px;
  }

  .preview-menu,
  .tag-one {
    display: none;
  }

  .tag-two {
    right: -4px;
    bottom: 48px;
  }

  .signal-grid {
    grid-template-columns: 1fr;
    padding: 15px 0;
  }

  .signal-grid p {
    padding: 8px;
  }

  .signal-grid p + p {
    border-left: 0;
  }

  .section {
    padding: 82px 0;
  }

  .split-heading {
    gap: 27px;
  }

  .service-grid {
    margin-top: 43px;
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card:last-child {
    min-height: 275px;
    grid-column: auto;
  }

  .process-list li {
    grid-template-columns: 48px 1fr;
    gap: 14px;
  }

  .step-number {
    width: 40px;
    height: 40px;
  }

  .faq-list summary {
    font-size: 21px;
  }

  .cta-section {
    padding-bottom: 14px;
  }

  .cta-panel {
    width: calc(100% - 28px);
    padding: 60px 24px;
  }

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

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }

  .copyright {
    grid-column: 1;
  }

  .legal-hero {
    padding: 72px 0;
  }

  .legal-layout {
    padding-top: 55px;
    padding-bottom: 85px;
  }

  .legal-copy > p:first-child {
    font-size: 18px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
