@font-face {
  font-family: "Sora";
  src: url("/fonts/sora-latin.woff2") format("woff2");
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/fonts/inter-latin.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #0B1B2B;
  --ink-2: #132A40;
  --text: #0B1B2B;
  --text-2: #3D4B5C;
  --text-3: #5B6776;
  --paper: #F6F4EF;
  --card: #FFFFFF;
  --line: #E4E0D7;
  --line-2: #D3CEC3;
  --red: #D7372A;
  --red-hover: #BD2A1E;
  --red-on-dark: #FF5A4A;
  --on-dark: #FFFFFF;
  --on-dark-2: #B9C6D4;
  --on-dark-3: #8C9FB3;
  --radius: 18px;
  --shadow: 0 1px 2px rgba(11, 27, 43, .04), 0 12px 32px rgba(11, 27, 43, .07);
  --container: 1180px;
  --font-display: "Sora", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-body: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font: 400 17px/1.65 var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--font-display); margin: 0; color: inherit; letter-spacing: -.02em; text-wrap: balance; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button, input, select, textarea { font: inherit; }
:focus-visible { outline: 3px solid rgba(215, 55, 42, .45); outline-offset: 3px; border-radius: 6px; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 28px; }
section[id] { scroll-margin-top: 88px; }

.skip-link { position: absolute; left: -9999px; top: 12px; z-index: 100; background: #fff; padding: 10px 14px; border-radius: 10px; font-weight: 600; }
.skip-link:focus { left: 16px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 54px; padding: 0 26px; border-radius: 999px;
  font: 600 16px/1 var(--font-body); letter-spacing: -.005em;
  text-decoration: none; white-space: nowrap; cursor: pointer;
  border: 1.5px solid transparent;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.btn .arrow { display: inline-block; transition: transform .18s ease; }
.btn:hover .arrow { transform: translateX(3px); }
.btn-primary { background: var(--red); color: #fff; box-shadow: 0 6px 18px rgba(215, 55, 42, .22); }
.btn-primary:hover { background: var(--red-hover); }
.btn-ghost { border-color: var(--line-2); color: var(--text); background: transparent; }
.btn-ghost:hover { border-color: var(--text); }
.btn-sm { height: 44px; padding: 0 20px; font-size: 15px; box-shadow: none; }
.btn[disabled] { opacity: .7; cursor: progress; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(246, 244, 239, .86);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease;
}
.site-header.is-scrolled { border-bottom-color: var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 80px; }
.brand img { height: 44px; width: auto; }
.nav { display: flex; align-items: center; gap: 34px; }
.nav a:not(.btn) { font-weight: 500; font-size: 15.5px; color: var(--text-2); text-decoration: none; }
.nav a:not(.btn):hover { color: var(--text); }

/* ---------- Shared ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font: 600 13px/1.3 var(--font-body); letter-spacing: .09em; text-transform: uppercase;
  color: var(--text-3);
}
.eyebrow::before { content: ""; flex: none; width: 8px; height: 8px; border-radius: 50%; background: var(--red); }

.section { padding: 112px 0; }
.section-head { max-width: 760px; margin-bottom: 56px; }
.section-head h2 { font-size: clamp(34px, 4.4vw, 54px); line-height: 1.06; letter-spacing: -.035em; font-weight: 700; margin-top: 18px; }
.section-head p:not(.eyebrow) { margin-top: 18px; font-size: 18.5px; color: var(--text-2); }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: 72px 0 64px; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr); gap: 40px; align-items: center; }
.hero h1 {
  font-size: clamp(44px, 5.6vw, 76px); line-height: 1.02; letter-spacing: -.045em; font-weight: 700;
  margin: 26px 0 28px;
}
.hero h1 .accent { color: var(--red); }
.lede { font-size: clamp(18px, 1.55vw, 20.5px); line-height: 1.6; color: var(--text-2); max-width: 34em; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 38px; }

.hero-art { position: relative; width: 100%; max-width: 520px; justify-self: end; }
.hero-art svg { width: 100%; height: auto; overflow: visible; }
.hero-art .guides { stroke: #D9D3C7; }
.hero-art .big { fill: var(--ink); }
.hero-art .small { fill: var(--red); }
.hero-art .node { fill: var(--paper); stroke: var(--ink); stroke-width: 2; }
.hero-art .node-red { stroke: var(--red); }

.audience {
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px 18px;
  margin-top: 64px; padding-top: 28px; border-top: 1px solid var(--line);
}
.audience-label { font: 600 13px/1 var(--font-body); letter-spacing: .09em; text-transform: uppercase; color: var(--text-3); }
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chips li {
  font-size: 14.5px; font-weight: 500; line-height: 1; color: var(--text-2);
  background: rgba(255, 255, 255, .7); border: 1px solid var(--line);
  padding: 10px 15px; border-radius: 999px;
}

/* ---------- What we offer (accordion) ---------- */
.offer-grid { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.4fr); gap: 64px; align-items: start; }
.offer .section-head { margin-bottom: 0; position: sticky; top: 120px; }
.offer .section-head h2 { font-size: clamp(32px, 3.5vw, 44px); }
.section-head p.offer-note { margin-top: 26px; font-size: 16px; color: var(--text-2); }
.offer-note a { color: var(--text); font-weight: 600; text-decoration: none; border-bottom: 1.5px solid var(--red); padding-bottom: 1px; }
.offer-note a:hover { color: var(--red); }
.offer-list { border-top: 1px solid var(--line-2); interpolate-size: allow-keywords; }
.offer-item { border-bottom: 1px solid var(--line-2); }
.offer-item summary {
  display: grid; grid-template-columns: 44px minmax(0, 1fr) 40px; align-items: center; gap: 16px;
  padding: 24px 0; cursor: pointer; list-style: none;
}
.offer-item summary::-webkit-details-marker { display: none; }
.offer-num { font: 700 14px/1 var(--font-display); letter-spacing: .04em; color: var(--red); }
.offer-head { display: grid; gap: 5px; min-width: 0; }
.offer-title { font: 600 21px/1.25 var(--font-display); letter-spacing: -.02em; color: var(--text); }
.offer-sub { font-size: 15.5px; line-height: 1.45; color: var(--text-3); }
.offer-tag {
  display: inline-block; vertical-align: 3px; margin-left: 8px;
  font: 600 10.5px/1 var(--font-body); letter-spacing: .08em; text-transform: uppercase;
  color: var(--text-3); border: 1px solid var(--line-2); border-radius: 999px; padding: 5px 8px;
}
.offer-toggle {
  position: relative; justify-self: end; width: 40px; height: 40px; border-radius: 50%;
  border: 1.5px solid var(--line-2); transition: background-color .2s ease, border-color .2s ease;
}
.offer-toggle::before, .offer-toggle::after {
  content: ""; position: absolute; left: 50%; top: 50%; width: 13px; height: 2px; border-radius: 2px;
  background: var(--text); transform: translate(-50%, -50%); transition: transform .25s ease, background-color .2s ease;
}
.offer-toggle::after { transform: translate(-50%, -50%) rotate(90deg); }
.offer-item summary:hover .offer-toggle { border-color: var(--text); }
.offer-item[open] .offer-toggle { background: var(--ink); border-color: var(--ink); }
.offer-item[open] .offer-toggle::before, .offer-item[open] .offer-toggle::after { background: #fff; }
.offer-item[open] .offer-toggle::after { transform: translate(-50%, -50%) rotate(0deg); }
.offer-body { padding: 0 56px 28px 60px; }
.offer-body ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 28px; margin-bottom: 22px; }
.offer-body li { display: flex; gap: 12px; font-size: 15.5px; line-height: 1.45; color: var(--text); }
.offer-body li::before { content: ""; flex: none; width: 6px; height: 6px; margin-top: 8px; border-radius: 50%; background: var(--red); }
.offer-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 15px; color: var(--text); text-decoration: none; transition: color .18s ease; }
.offer-link .arrow { transition: transform .18s ease; }
.offer-link:hover { color: var(--red); }
.offer-link:hover .arrow { transform: translateX(3px); }
/* Smooth open/close in browsers that support animating <details> */
.offer-item::details-content { block-size: 0; overflow: hidden; transition: block-size .3s ease, content-visibility .3s allow-discrete; }
.offer-item[open]::details-content { block-size: auto; }

/* ---------- Approach ---------- */
.approach { background: var(--card); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.approach .section-head { margin-bottom: 44px; }
.steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); }
.step { padding: 36px 36px 8px 0; }
.step + .step { padding-left: 36px; border-left: 1px solid var(--line); }
.step-num { font: 700 15px/1 var(--font-display); color: var(--red); letter-spacing: .04em; }
.step h3 { font-size: 23px; line-height: 1.2; letter-spacing: -.025em; font-weight: 600; margin: 22px 0 12px; }
.step p { color: var(--text-2); }

/* ---------- Contact ---------- */
.contact { background: var(--ink); color: var(--on-dark); position: relative; overflow: hidden; }
.contact::before {
  content: ""; position: absolute; width: 760px; height: 760px; left: -330px; bottom: -420px;
  border-radius: 50%; border: 1px solid rgba(255, 255, 255, .07);
  box-shadow: 0 0 0 110px rgba(255, 255, 255, .018), 0 0 0 220px rgba(255, 255, 255, .012);
  pointer-events: none;
}
.contact-grid { position: relative; display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 72px; align-items: start; }
.contact .eyebrow { color: var(--on-dark-3); }
.contact .eyebrow::before { background: var(--red-on-dark); }
.contact h2 { font-size: clamp(34px, 4.2vw, 52px); line-height: 1.06; letter-spacing: -.035em; font-weight: 700; margin-top: 18px; }
.contact-copy > p:not(.eyebrow) { margin-top: 20px; font-size: 18.5px; color: var(--on-dark-2); max-width: 30em; }
.contact-points { display: grid; gap: 14px; margin-top: 36px; }
.contact-points li { display: flex; gap: 12px; align-items: flex-start; color: var(--on-dark-2); font-size: 16px; line-height: 1.5; }
.contact-points li::before {
  content: ""; flex: none; width: 20px; height: 20px; margin-top: 1px; border-radius: 50%;
  background: rgba(255, 90, 74, .16) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M6 10.2l2.6 2.6L14 7.4' fill='none' stroke='%23FF5A4A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 20px no-repeat;
}

.form-card {
  background: var(--card); color: var(--text);
  border-radius: 22px; padding: 38px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, .28);
}
.field { display: grid; gap: 8px; margin-bottom: 20px; min-width: 0; }
.field-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
label { font-weight: 600; font-size: 14.5px; line-height: 1.3; color: var(--text); }
.optional { font-weight: 400; color: var(--text-3); }
input, select, textarea {
  width: 100%; font-size: 16px; line-height: 1.4; color: var(--text);
  background: #FAF9F6; border: 1.5px solid var(--line-2); border-radius: 12px;
  padding: 13px 15px;
  transition: border-color .15s ease, box-shadow .15s ease, background-color .15s ease;
}
input:hover, select:hover, textarea:hover { border-color: #BDB6A8; }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--ink); background: #fff; box-shadow: 0 0 0 4px rgba(11, 27, 43, .08); }
input:user-invalid, textarea:user-invalid { border-color: var(--red); }
textarea { min-height: 150px; resize: vertical; }
select {
  appearance: none; -webkit-appearance: none; padding-right: 44px; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M5 7.5l5 5 5-5' fill='none' stroke='%230B1B2B' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 18px;
}
textarea::placeholder { color: #8E97A3; }
.hp { position: absolute !important; left: -10000px !important; width: 1px; height: 1px; overflow: hidden; }
.turnstile:not(:empty) { margin-bottom: 16px; }
.form-footer { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px 20px; margin-top: 6px; }
.form-note { font-size: 13.5px; line-height: 1.5; color: var(--text-3); max-width: 24em; }
.form-note a { color: var(--text-2); }
.form-status:empty { display: none; }
.form-status { margin-top: 18px; font-size: 15px; line-height: 1.5; border-radius: 12px; padding: 12px 14px; }
.form-status.is-error { background: #FDEDEB; color: #8C1D13; border: 1px solid #F4C7C1; }
.form-status.is-info { background: #F1F4F7; color: var(--text-2); border: 1px solid #DDE3EA; }

.form-success { text-align: center; padding: 34px 8px 26px; }
.form-success .tick {
  width: 64px; height: 64px; margin: 0 auto 22px; border-radius: 50%;
  background: #E8F5EE; display: grid; place-items: center;
}
.form-success .tick svg { width: 30px; height: 30px; fill: none; stroke: #1D7A4B; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.form-success h3 { font-size: 26px; letter-spacing: -.025em; }
.form-success p { margin-top: 10px; color: var(--text-2); }

/* ---------- Footer ---------- */
.site-footer { background: #07131F; color: var(--on-dark-3); padding: 48px 0 36px; font-size: 14.5px; }
.footer-top { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px 40px; }
.footer-brand img { height: 36px; width: auto; }
.footer-links { display: flex; flex-wrap: wrap; gap: 8px 26px; }
.site-footer a { color: var(--on-dark-2); text-decoration: none; }
.site-footer a:hover { color: #fff; }
.footer-legal {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 6px 24px;
  margin-top: 32px; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, .08);
  font-size: 13.5px; letter-spacing: .01em;
}

/* ---------- Simple pages (privacy, 404) ---------- */
.page { padding: 88px 0 112px; }
.page .container { max-width: 780px; }
.page h1 { font-size: clamp(38px, 5vw, 56px); line-height: 1.05; letter-spacing: -.04em; font-weight: 700; margin: 18px 0 12px; }
.page .meta { color: var(--text-3); font-size: 15px; }
.prose { margin-top: 44px; }
.prose h2 { font-size: 22px; letter-spacing: -.02em; font-weight: 600; margin: 40px 0 12px; }
.prose p, .prose li { color: var(--text-2); }
.prose p + p { margin-top: 14px; }
.prose ul { list-style: disc; padding-left: 22px; display: grid; gap: 8px; margin-top: 12px; }
.prose a { color: var(--text); }
.page .btn { margin-top: 36px; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .offer-grid { grid-template-columns: 1fr; gap: 36px; }
  .offer .section-head { position: static; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-copy > p:not(.eyebrow) { max-width: 36em; }
}
@media (max-width: 900px) {
  .hero { padding: 48px 0 48px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { display: none; }
  .audience { margin-top: 48px; }
  .section { padding: 84px 0; }
  .steps { grid-template-columns: 1fr; border-top: 0; }
  .step, .step + .step { padding: 28px 0 28px; border-left: 0; border-top: 1px solid var(--line); }
  .step h3 { margin-top: 14px; }
}
@media (max-width: 720px) {
  .nav a:not(.btn) { display: none; }
  .header-inner { height: 68px; }
  .brand img { height: 36px; }
  section[id] { scroll-margin-top: 76px; }
}
@media (max-width: 640px) {
  .offer-item summary { grid-template-columns: minmax(0, 1fr) 36px; gap: 12px; padding: 20px 0; }
  .offer-num { display: none; }
  .offer-toggle { width: 36px; height: 36px; }
  .offer-title { font-size: 19px; }
  .offer-body { padding: 0 0 24px; }
  .offer-body ul { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .container { padding: 0 18px; }
  body { font-size: 16.5px; }
  .hero h1 { font-size: 11.2vw; letter-spacing: -.04em; }
  .hero-cta .btn { width: 100%; }
  .section { padding: 72px 0; }
  .section-head { margin-bottom: 40px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .form-card { padding: 26px 20px; border-radius: 18px; }
  .form-footer .btn { width: 100%; }
  .chips li { font-size: 14px; padding: 9px 13px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
