:root {
  --ink: #122126;
  --ink-soft: #22343a;
  --paper: #f5f1e8;
  --paper-warm: #ebe4d6;
  --white: #fffdf8;
  --coral: #ff6b45;
  --coral-dark: #d84c2b;
  --blue: #6b8cff;
  --mint: #84d6b0;
  --violet: #a98be8;
  --line: rgba(18, 33, 38, 0.14);
  --muted: #647177;
  --shadow: 0 24px 70px rgba(18, 33, 38, 0.14);
  --radius-lg: 32px;
  --radius-md: 22px;
  --shell: min(1180px, calc(100% - 40px));
}

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

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

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

body.menu-open {
  overflow: hidden;
}

::selection {
  color: var(--white);
  background: var(--coral);
}

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

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

button,
select {
  cursor: pointer;
}

svg {
  display: block;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.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;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

:focus-visible {
  outline: 3px solid rgba(255, 107, 69, 0.65);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  transition: background 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.site-header.is-scrolled {
  background: rgba(245, 241, 232, 0.9);
  box-shadow: 0 1px 0 rgba(18, 33, 38, 0.08);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  line-height: 1;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--paper);
  background: var(--ink);
  border-radius: 12px;
}

.brand-mark svg {
  width: 31px;
  fill: currentColor;
}

.brand-mark circle {
  fill: var(--coral);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-copy strong {
  font-size: 16px;
  letter-spacing: -0.02em;
}

.brand-copy span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.site-navigation {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 36px);
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 650;
}

.site-navigation > a:not(.nav-cta) {
  position: relative;
  padding: 10px 0;
}

.site-navigation > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-navigation > a:not(.nav-cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 12px 18px;
  color: var(--white);
  background: var(--ink);
  border-radius: 999px;
  transition: transform 180ms ease, background 180ms ease;
}

.nav-cta:hover {
  background: var(--coral-dark);
  transform: translateY(-2px);
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.menu-toggle > span:not(.sr-only) {
  position: absolute;
  width: 18px;
  height: 2px;
  background: var(--ink);
  transition: transform 180ms ease;
}

.menu-toggle > span:nth-child(2) {
  transform: translateY(-4px);
}

.menu-toggle > span:nth-child(3) {
  transform: translateY(4px);
}

.menu-toggle[aria-expanded="true"] > span:nth-child(2) {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] > span:nth-child(3) {
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 820px;
  padding: 170px 0 0;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  z-index: -1;
  top: -200px;
  left: 52%;
  width: 760px;
  height: 760px;
  content: "";
  border: 1px solid rgba(18, 33, 38, 0.06);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(18, 33, 38, 0.02), 0 0 0 180px rgba(18, 33, 38, 0.015);
}

.hero-orb {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(2px);
}

.hero-orb-one {
  top: 145px;
  left: -140px;
  width: 300px;
  height: 300px;
  background: rgba(255, 107, 69, 0.09);
}

.hero-orb-two {
  right: -90px;
  bottom: 110px;
  width: 240px;
  height: 240px;
  background: rgba(107, 140, 255, 0.1);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  align-items: center;
  gap: clamp(60px, 8vw, 112px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 24px;
  height: 2px;
  background: var(--coral);
}

.hero h1,
.section h2,
.contact h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 700px;
  font-size: clamp(62px, 6.6vw, 102px);
}

.hero h1 em,
.section h2 em,
.contact h2 em {
  color: var(--coral-dark);
  font-weight: 400;
}

.hero-lead {
  max-width: 580px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.65;
}

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

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 14px 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

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

.button-primary {
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 14px 30px rgba(18, 33, 38, 0.16);
}

.button-primary:hover {
  background: var(--coral-dark);
  box-shadow: 0 17px 36px rgba(216, 76, 43, 0.2);
}

.text-link {
  padding: 10px 0;
  font-size: 14px;
  font-weight: 800;
  border-bottom: 1px solid var(--ink);
}

.text-link span {
  display: inline-block;
  margin-left: 5px;
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateY(3px);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 26px;
  padding: 0;
  margin: 32px 0 0;
  list-style: none;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero-points span {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: rgba(132, 214, 176, 0.6);
  border-radius: 50%;
  font-size: 11px;
}

.workbench-wrap {
  position: relative;
  padding: 30px 8px;
}

.workbench-glow {
  position: absolute;
  z-index: -1;
  inset: 5% -8%;
  background: linear-gradient(135deg, rgba(255, 107, 69, 0.18), rgba(107, 140, 255, 0.16));
  border-radius: 50%;
  filter: blur(40px);
}

.workbench {
  position: relative;
  overflow: hidden;
  background: rgba(255, 253, 248, 0.93);
  border: 1px solid rgba(18, 33, 38, 0.11);
  border-radius: 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.workbench-topbar {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  color: var(--muted);
  background: rgba(235, 228, 214, 0.4);
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  font-weight: 750;
}

.workbench-topbar > div {
  display: flex;
  align-items: center;
  gap: 9px;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #44b986;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(68, 185, 134, 0.12);
}

.workbench-status {
  padding: 5px 10px;
  color: #267c59;
  background: rgba(132, 214, 176, 0.2);
  border-radius: 999px;
}

.package-switcher {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 7px;
  margin: 22px;
  background: var(--paper);
  border-radius: 13px;
}

.package-switcher button {
  min-height: 41px;
  padding: 8px 14px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 9px;
  font-size: 12px;
  font-weight: 800;
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.package-switcher button.is-active {
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 4px 12px rgba(18, 33, 38, 0.08);
}

.task-list {
  padding: 0 22px;
}

.task-row {
  min-height: 70px;
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 13px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.task-row[hidden] {
  display: none;
}

.task-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  font-size: 10px;
  font-weight: 900;
}

.task-icon-coral {
  color: #aa371e;
  background: rgba(255, 107, 69, 0.2);
}

.task-icon-blue {
  color: #3454bd;
  background: rgba(107, 140, 255, 0.19);
}

.task-icon-mint {
  color: #247853;
  background: rgba(132, 214, 176, 0.23);
}

.task-icon-violet {
  color: #6546a3;
  background: rgba(169, 139, 232, 0.22);
}

.task-row strong,
.task-row span {
  display: block;
}

.task-row strong {
  font-size: 13px;
  line-height: 1.3;
}

.task-row div span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
}

.task-row time {
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 800;
}

.capacity {
  padding: 20px 22px 22px;
}

.capacity-copy {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 11px;
}

.capacity-copy strong {
  color: var(--ink);
}

.capacity-track {
  height: 7px;
  display: flex;
  gap: 3px;
  overflow: hidden;
  background: var(--paper-warm);
  border-radius: 999px;
}

.capacity-segment {
  height: 100%;
  border-radius: 999px;
}

.capacity-segment[hidden] {
  display: none;
}

.capacity-coral { width: 30%; background: var(--coral); }
.capacity-blue { width: 40%; background: var(--blue); }
.capacity-mint { width: 30%; background: var(--mint); }
.capacity-violet { width: 50%; background: var(--violet); }

.workbench-footer {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 22px;
  color: var(--white);
  background: var(--ink);
}

.workbench-footer div span,
.workbench-footer div strong {
  display: block;
}

.workbench-footer div span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.workbench-footer div strong {
  margin-top: 2px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 400;
}

.workbench-footer > span {
  padding: 6px 10px;
  color: var(--mint);
  border: 1px solid rgba(132, 214, 176, 0.3);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
}

.floating-note {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 13px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 14px 35px rgba(18, 33, 38, 0.13);
}

.floating-note > span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 9px;
  font-size: 12px;
  font-weight: 900;
}

.floating-note strong,
.floating-note small {
  display: block;
  white-space: nowrap;
}

.floating-note strong {
  font-size: 11px;
}

.floating-note small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 9px;
}

.floating-note-top {
  top: 92px;
  right: -67px;
}

.floating-note-top > span {
  color: #247853;
  background: rgba(132, 214, 176, 0.28);
}

.floating-note-bottom {
  bottom: 90px;
  left: -68px;
}

.floating-note-bottom > span {
  color: var(--white);
  background: var(--blue);
}

.proof-strip {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 4vw, 56px);
  margin-top: 90px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-align: center;
  text-transform: uppercase;
}

.proof-strip i {
  width: 4px;
  height: 4px;
  background: var(--coral);
  border-radius: 50%;
}

.section {
  padding: 125px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.6fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 62px;
}

.section-heading h2,
.pricing-heading h2,
.faq-heading h2 {
  max-width: 720px;
  font-size: clamp(48px, 5.3vw, 76px);
}

.section-heading > p,
.pricing-heading > p,
.faq-heading > p {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

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

.service-card {
  position: relative;
  min-height: 450px;
  display: flex;
  flex-direction: column;
  padding: 34px;
  overflow: hidden;
  background: rgba(255, 253, 248, 0.6);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: transform 250ms ease, box-shadow 250ms ease;
}

.service-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 50px rgba(18, 33, 38, 0.1);
}

.service-card-dark {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.service-card-dark::after {
  position: absolute;
  right: -90px;
  bottom: -90px;
  width: 220px;
  height: 220px;
  content: "";
  background: rgba(255, 107, 69, 0.15);
  border-radius: 50%;
}

.service-number {
  position: absolute;
  top: 28px;
  right: 30px;
  color: rgba(18, 33, 38, 0.28);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
}

.service-card-dark .service-number {
  color: rgba(255, 255, 255, 0.35);
}

.service-icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  margin-bottom: auto;
  color: var(--coral-dark);
  background: rgba(255, 107, 69, 0.1);
  border-radius: 17px;
}

.service-card-dark .service-icon {
  color: var(--coral);
  background: rgba(255, 255, 255, 0.08);
}

.service-icon svg {
  width: 31px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.service-card h3 {
  margin: 45px 0 13px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.025em;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.service-card-dark p {
  color: rgba(255, 255, 255, 0.62);
}

.service-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 0;
  margin: 25px 0 0;
  list-style: none;
}

.service-card li {
  padding: 6px 9px;
  color: var(--ink-soft);
  background: rgba(18, 33, 38, 0.055);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 750;
}

.service-card-dark li {
  color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.08);
}

.method {
  position: relative;
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
}

.method::before {
  position: absolute;
  top: -280px;
  left: -180px;
  width: 570px;
  height: 570px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(255, 255, 255, 0.015), 0 0 0 160px rgba(255, 255, 255, 0.01);
}

.method-layout {
  position: relative;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(70px, 10vw, 145px);
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.64);
}

.method-copy h2 {
  font-size: clamp(48px, 5.2vw, 72px);
}

.method-copy h2 em,
.contact-copy h2 em {
  color: var(--coral);
}

.method-copy > p:not(.eyebrow) {
  max-width: 480px;
  margin: 30px 0 35px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 17px;
}

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

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

.steps {
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: steps;
}

.steps li {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 26px;
  padding: 29px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.steps li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.step-number {
  color: var(--coral);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-style: italic;
}

.steps h3 {
  margin: 0 0 7px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 29px;
  font-weight: 400;
}

.steps p {
  max-width: 470px;
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 14px;
}

.pricing-heading {
  max-width: 760px;
  margin: 0 auto 65px;
  text-align: center;
}

.pricing-heading .eyebrow {
  justify-content: center;
}

.pricing-heading > p {
  max-width: 610px;
  margin: 24px auto 0;
}

.pricing-grid {
  max-width: 950px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 22px;
  margin: 0 auto;
}

.price-card {
  position: relative;
  padding: 42px;
  background: rgba(255, 253, 248, 0.72);
  border: 1px solid var(--line);
  border-radius: 26px;
}

.price-card-featured {
  background: var(--white);
  border: 2px solid var(--ink);
  box-shadow: 0 25px 60px rgba(18, 33, 38, 0.12);
}

.popular-label {
  position: absolute;
  top: 0;
  left: 50%;
  padding: 7px 15px;
  color: var(--white);
  background: var(--ink);
  border-radius: 0 0 12px 12px;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.price-card-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}

.package-label {
  color: var(--coral-dark);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.price-card h3 {
  margin: 7px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 33px;
  font-weight: 400;
}

.package-tag {
  padding: 6px 10px;
  color: var(--muted);
  background: var(--paper);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
  white-space: nowrap;
}

.price {
  display: flex;
  align-items: start;
  gap: 5px;
  margin-top: 40px;
}

.price strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 78px;
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.85;
}

.price span {
  margin-top: 3px;
  color: var(--coral-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 29px;
}

.price-note {
  margin: 15px 0 30px;
  color: var(--muted);
  font-size: 11px;
}

.feature-list {
  min-height: 158px;
  display: grid;
  gap: 13px;
  padding: 24px 0;
  margin: 0 0 28px;
  list-style: none;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 650;
}

.feature-list span {
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #247853;
  background: rgba(132, 214, 176, 0.25);
  border-radius: 50%;
  font-size: 10px;
}

.price-card .button {
  width: 100%;
}

.button-outline {
  color: var(--ink);
  border-color: var(--ink);
}

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

.pricing-footnote {
  max-width: 690px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.faq {
  background: var(--paper-warm);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(70px, 10vw, 140px);
}

.faq-heading > p:not(.eyebrow) {
  margin-top: 27px;
}

.faq-list {
  border-top: 1px solid rgba(18, 33, 38, 0.22);
}

.faq-list details {
  border-bottom: 1px solid rgba(18, 33, 38, 0.22);
}

.faq-list summary {
  min-height: 83px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 20px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
  list-style: none;
}

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

.faq-list summary span {
  position: relative;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  border: 1px solid var(--ink);
  border-radius: 50%;
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  content: "";
  background: var(--ink);
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.faq-list summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-list details p {
  max-width: 670px;
  padding: 0 55px 25px 0;
  margin: -5px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.contact {
  padding: 90px 0;
  color: var(--white);
  background: var(--paper);
}

.contact-panel {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(55px, 8vw, 110px);
  padding: clamp(42px, 6vw, 80px);
  overflow: hidden;
  background: var(--ink);
  border-radius: var(--radius-lg);
}

.contact-panel::after {
  position: absolute;
  right: -170px;
  bottom: -220px;
  width: 500px;
  height: 500px;
  content: "";
  background: radial-gradient(circle, rgba(255, 107, 69, 0.16), transparent 66%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.contact-copy,
.contact-form {
  position: relative;
  z-index: 1;
}

.contact-copy h2 {
  font-size: clamp(47px, 5vw, 70px);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 510px;
  margin: 28px 0;
  color: rgba(255, 255, 255, 0.6);
}

.contact-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.contact-meta div {
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-meta span,
.contact-meta strong {
  display: block;
}

.contact-meta span {
  color: rgba(255, 255, 255, 0.42);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-meta strong {
  margin-top: 6px;
  font-size: 12px;
}

.contact-form {
  display: grid;
  gap: 17px;
  padding: 32px;
  color: var(--ink);
  background: var(--white);
  border-radius: 22px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.16);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form label > span {
  display: block;
  margin-bottom: 7px;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  background: var(--paper);
  border: 1px solid transparent;
  border-radius: 10px;
  outline: none;
  font-size: 13px;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.contact-form input,
.contact-form select {
  min-height: 48px;
}

.contact-form textarea {
  min-height: 126px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  background: var(--white);
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(255, 107, 69, 0.12);
}

.button-coral {
  width: 100%;
  margin-top: 3px;
  color: var(--white);
  background: var(--coral-dark);
}

.button-coral:hover {
  background: var(--ink);
}

.form-note,
.form-status {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
  text-align: center;
}

.form-status:not(:empty) {
  padding: 8px 10px;
  color: #247853;
  background: rgba(132, 214, 176, 0.18);
  border-radius: 8px;
  font-weight: 750;
}

.site-footer {
  padding: 55px 0 25px;
  color: var(--white);
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 50px;
  padding-bottom: 45px;
}

.brand-footer .brand-mark {
  color: var(--ink);
  background: var(--paper);
}

.brand-footer .brand-copy span {
  color: rgba(255, 255, 255, 0.44);
}

.footer-main > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 13px;
}

.footer-main nav {
  display: flex;
  gap: 26px;
  font-size: 12px;
  font-weight: 700;
}

.footer-main nav a:hover {
  color: var(--coral);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.36);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 10px;
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-short { transition-delay: 90ms; }
.reveal-delay { transition-delay: 160ms; }
.reveal-delay-long { transition-delay: 180ms; }

@media (max-width: 1080px) {
  .hero-layout {
    grid-template-columns: 1fr 0.9fr;
    gap: 48px;
  }

  .floating-note-top {
    right: -15px;
  }

  .floating-note-bottom {
    left: -22px;
  }

  .service-card {
    padding: 28px;
  }

  .contact-panel {
    gap: 45px;
  }
}

@media (max-width: 900px) {
  :root {
    --shell: min(100% - 32px, 720px);
  }

  .menu-toggle {
    display: grid;
  }

  .site-navigation {
    position: fixed;
    top: 76px;
    right: 16px;
    left: 16px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 20px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

  .site-navigation a {
    padding: 13px 14px !important;
  }

  .site-navigation > a::after {
    display: none;
  }

  .nav-cta {
    margin-top: 8px;
    text-align: center;
  }

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

  .hero {
    padding-top: 135px;
  }

  .hero-layout,
  .method-layout,
  .faq-layout,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy .eyebrow,
  .hero-actions,
  .hero-points {
    justify-content: center;
  }

  .hero-lead {
    margin-inline: auto;
  }

  .workbench-wrap {
    max-width: 580px;
    width: calc(100% - 40px);
    margin: 30px auto 0;
  }

  .proof-strip {
    margin-top: 45px;
  }

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

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

  .service-card {
    min-height: 390px;
  }

  .method-layout,
  .faq-layout {
    gap: 65px;
  }

  .method-copy {
    max-width: 640px;
  }

  .contact-panel {
    gap: 55px;
  }

  .footer-main {
    grid-template-columns: 1fr auto;
  }

  .footer-main > p {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

@media (max-width: 680px) {
  :root {
    --shell: calc(100% - 24px);
  }

  html {
    scroll-padding-top: 82px;
  }

  .hero {
    min-height: 0;
    padding-top: 120px;
  }

  .hero h1 {
    font-size: clamp(47px, 13.5vw, 58px);
  }

  .eyebrow {
    gap: 8px;
    font-size: 9px;
    letter-spacing: 0.1em;
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 13px;
  }

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

  .hero-points {
    gap: 10px 15px;
    font-size: 11px;
  }

  .workbench-wrap {
    width: 100%;
    padding-top: 10px;
  }

  .floating-note {
    display: none;
  }

  .task-list,
  .capacity {
    padding-right: 16px;
    padding-left: 16px;
  }

  .package-switcher {
    margin-right: 16px;
    margin-left: 16px;
  }

  .proof-strip {
    min-height: 110px;
    flex-wrap: wrap;
    gap: 10px 17px;
    padding: 26px 0;
    font-size: 9px;
  }

  .section {
    padding: 88px 0;
  }

  .section-heading h2,
  .pricing-heading h2,
  .faq-heading h2,
  .method-copy h2,
  .contact-copy h2 {
    font-size: clamp(43px, 13vw, 58px);
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .service-card {
    min-height: 410px;
  }

  .steps li {
    grid-template-columns: 46px 1fr;
    gap: 15px;
  }

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

  .price-card {
    padding: 34px 25px;
  }

  .price strong {
    font-size: 68px;
  }

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

  .contact {
    padding: 40px 0;
  }

  .contact-panel {
    padding: 42px 20px 20px;
    border-radius: 24px;
  }

  .contact-meta,
  .field-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 24px 17px;
  }

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

  .footer-main nav {
    flex-wrap: wrap;
  }

  .footer-main > p {
    grid-column: auto;
    grid-row: auto;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 9px;
  }
}

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

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

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
