:root {
  --paper: #fffdf8;
  --cream: #f7efe2;
  --cream-deep: #efe0cc;
  --white: #ffffff;
  --ink: #211d18;
  --ink-soft: #4d4339;
  --muted: #74675b;
  --line: rgba(52, 42, 32, 0.14);
  --gold: #b7852e;
  --gold-light: #d7ad5b;
  --gold-pale: #f1dfb6;
  --coral: #d65f3c;
  --coral-dark: #a84026;
  --terracotta: #a95939;
  --espresso: #2b241e;
  --success: #8a6c2f;
  --shadow-sm: 0 12px 30px rgba(65, 45, 28, 0.08);
  --shadow-md: 0 28px 70px rgba(65, 45, 28, 0.13);
  --shadow-lg: 0 42px 100px rgba(50, 33, 21, 0.18);
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --radius-xl: 52px;
  --shell: min(1480px, calc(100vw - 64px));
  --scroll-progress: 0;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
  background: var(--paper);
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 8% 8%, rgba(215, 173, 91, 0.08), transparent 26rem),
    var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
select,
textarea {
  font-family: Arial, Helvetica, sans-serif;
}

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

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

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

img {
  display: block;
  max-width: 100%;
}

button {
  color: inherit;
}

::selection {
  background: var(--gold-pale);
  color: var(--espresso);
}

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

.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: 200;
  left: 20px;
  top: -80px;
  padding: 13px 18px;
  border-radius: 10px;
  background: var(--espresso);
  color: var(--white);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 20px;
}

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

.scroll-progress {
  position: fixed;
  z-index: 150;
  top: 0;
  left: 0;
  width: calc(var(--scroll-progress) * 100%);
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--coral));
  transform-origin: left;
}

.ambient {
  position: fixed;
  z-index: -1;
  width: 36rem;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
  opacity: 0.12;
}

.ambient-one {
  top: 12vh;
  right: -18rem;
  background: var(--coral);
}

.ambient-two {
  bottom: -20rem;
  left: -16rem;
  background: var(--gold);
}

.utility-bar {
  position: relative;
  z-index: 80;
  background: var(--espresso);
  color: rgba(255, 253, 248, 0.76);
  font-size: 12px;
  letter-spacing: 0.04em;
}

.utility-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.utility-inner p {
  margin: 0;
}

.utility-inner a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--paper);
  font-weight: 700;
  transition: color 0.2s ease;
}

.utility-inner a:hover {
  color: var(--gold-light);
}

.utility-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 0 5px rgba(215, 173, 91, 0.15);
}

.site-header {
  position: sticky;
  z-index: 70;
  top: 0;
  border-bottom: 1px solid rgba(52, 42, 32, 0.08);
  background: rgba(255, 253, 248, 0.88);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
}

.header-inner {
  min-height: 82px;
  display: grid;
  grid-template-columns: 260px 1fr auto;
  align-items: center;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 242px;
  overflow: hidden;
}

.brand img {
  width: 100%;
  height: 62px;
  object-fit: contain;
  object-position: left center;
  mix-blend-mode: multiply;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.2vw, 38px);
}

.main-nav a {
  position: relative;
  padding: 12px 0;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.035em;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 100%;
  height: 1px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}

.main-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-button {
  display: none;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

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

.button-small {
  min-height: 46px;
  padding-inline: 21px;
  background: var(--espresso);
  color: var(--paper);
  box-shadow: 0 10px 24px rgba(43, 36, 30, 0.16);
}

.button-small:hover {
  background: var(--coral-dark);
  box-shadow: 0 16px 30px rgba(168, 64, 38, 0.22);
}

.button-primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 15px 38px rgba(214, 95, 60, 0.25);
}

.button-primary:hover {
  background: var(--coral-dark);
  box-shadow: 0 22px 46px rgba(168, 64, 38, 0.3);
}

.button-ghost {
  border-color: var(--line);
  background: rgba(255, 253, 248, 0.68);
  color: var(--ink);
}

.button-ghost:hover {
  border-color: rgba(183, 133, 46, 0.48);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.icon-arrow {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  transition: transform 0.3s var(--ease);
}

a:hover .icon-arrow,
button:hover .icon-arrow {
  transform: translateX(4px);
}

.icon-arrow-down {
  transform: rotate(90deg);
}

a:hover .icon-arrow-down {
  transform: rotate(90deg) translateX(4px);
}

.icon-spark {
  width: 100%;
  height: 100%;
}

.hero {
  position: relative;
  min-height: calc(100svh - 120px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 92px 0 104px;
  background:
    linear-gradient(rgba(84, 61, 37, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(84, 61, 37, 0.035) 1px, transparent 1px);
  background-size: 76px 76px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 72% 46%, rgba(215, 173, 91, 0.16), transparent 25rem),
    radial-gradient(circle at 88% 10%, rgba(214, 95, 60, 0.08), transparent 22rem),
    linear-gradient(90deg, rgba(255, 253, 248, 0.96), rgba(255, 253, 248, 0.3));
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(520px, 0.95fr);
  align-items: center;
  gap: clamp(56px, 7vw, 120px);
}

.hero-copy {
  max-width: 780px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 26px;
  color: var(--terracotta);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow-symbol {
  width: 25px;
  height: 25px;
  padding: 6px;
  border: 1px solid rgba(183, 133, 46, 0.3);
  border-radius: 50%;
  background: var(--white);
  color: var(--gold);
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--espresso);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 5.15vw, 88px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hero h1 em {
  display: inline;
  color: var(--coral);
  font-weight: 400;
}

.hero-lead {
  max-width: 670px;
  margin: 30px 0 0;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.25vw, 21px);
  line-height: 1.68;
}

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

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 35px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hero-proof span::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.hero-visual {
  position: relative;
  min-height: 650px;
  display: grid;
  place-items: center;
  perspective: 1400px;
}

.research-card {
  position: relative;
  z-index: 3;
  width: min(100%, 580px);
  padding: 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(22px);
  transform: rotateY(-4deg) rotateX(2deg);
  transition: transform 0.65s var(--ease), box-shadow 0.65s var(--ease);
}

.research-card:hover {
  transform: rotateY(0) rotateX(0) translateY(-8px);
  box-shadow: 0 55px 120px rgba(50, 33, 21, 0.22);
}

.research-card::after {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(215, 173, 91, 0.25), transparent 70%);
  pointer-events: none;
}

.research-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.micro-label {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.research-card-head h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 29px;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.live-badge {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 11px;
  border: 1px solid rgba(183, 133, 46, 0.18);
  border-radius: 999px;
  background: rgba(241, 223, 182, 0.3);
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.live-badge i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(183, 133, 46, 0.1);
}

.research-flow {
  display: grid;
  gap: 10px;
  padding: 25px 0 5px;
}

.flow-row {
  position: relative;
  display: grid;
  grid-template-columns: 34px 34px 1fr 30px;
  align-items: center;
  gap: 11px;
  min-height: 66px;
  padding: 8px 10px;
  border-radius: 14px;
  transition: background-color 0.25s ease, transform 0.3s var(--ease);
}

.flow-row:hover {
  background: rgba(247, 239, 226, 0.72);
  transform: translateX(4px);
}

.flow-number {
  color: var(--gold);
  font-size: 10px;
  font-weight: 900;
}

.flow-line {
  position: relative;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(183, 133, 46, 0.25);
  border-radius: 50%;
}

.flow-line::before,
.flow-line::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 1px;
  height: 19px;
  background: rgba(183, 133, 46, 0.2);
}

.flow-line::before {
  bottom: 100%;
}

.flow-line::after {
  top: 100%;
}

.flow-row:first-child .flow-line::before,
.flow-row:last-child .flow-line::after {
  display: none;
}

.flow-line i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
}

.flow-row strong {
  display: block;
  font-size: 14px;
}

.flow-row small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
}

.flow-check {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--cream);
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.research-note {
  margin-top: 22px;
  padding: 20px 22px;
  border-left: 3px solid var(--coral);
  border-radius: 3px 14px 14px 3px;
  background: var(--cream);
}

.research-note span {
  color: var(--terracotta);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.research-note p {
  margin: 7px 0 0;
  color: var(--ink-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  line-height: 1.5;
}

.orbital {
  position: absolute;
  border: 1px solid rgba(183, 133, 46, 0.2);
  border-radius: 50%;
}

.orbital::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 8px rgba(214, 95, 60, 0.08);
}

.orbital-one {
  width: 650px;
  height: 650px;
  animation: orbit 22s linear infinite;
}

.orbital-two {
  width: 530px;
  height: 530px;
  border-style: dashed;
  animation: orbit 30s linear infinite reverse;
}

.floating-note {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.9);
  box-shadow: var(--shadow-sm);
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 800;
  backdrop-filter: blur(14px);
}

.floating-note span {
  color: var(--coral);
  font-size: 9px;
}

.note-one {
  top: 105px;
  left: -30px;
  animation: float 6s ease-in-out infinite;
}

.note-two {
  right: -20px;
  bottom: 100px;
  animation: float 6s ease-in-out 1.4s infinite;
}

.scroll-cue {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 26px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue .icon-arrow {
  width: 16px;
}

@keyframes orbit {
  to { transform: rotate(360deg); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.9s var(--ease),
    transform 0.9s var(--ease);
}

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

.stage-section,
.services-section,
.method-section,
.example-section,
.coverage-section,
.founder-section,
.quote-section,
.faq-section {
  position: relative;
  padding: 130px 0;
}

.stage-section {
  background: var(--white);
}

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

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

.section-kicker {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--terracotta);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-heading h2,
.method-intro h2,
.example-header h2,
.coverage-grid h2,
.founder-copy h2,
.quote-copy h2,
.faq-intro h2,
.final-cta h2 {
  margin: 0;
  color: var(--espresso);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 4vw, 66px);
  font-weight: 500;
  letter-spacing: -0.048em;
  line-height: 1.06;
}

.split-heading > p,
.centered-heading > p,
.example-header > p,
.coverage-grid > div > p,
.founder-copy > p,
.faq-intro > p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.stage-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stage-card {
  position: relative;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px 27px 27px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  text-align: left;
  cursor: pointer;
  overflow: hidden;
  transition:
    background-color 0.4s var(--ease),
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
}

.stage-card:last-child {
  border-right: 0;
}

.stage-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--coral));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}

.stage-card:hover,
.stage-card.is-selected {
  z-index: 2;
  background: var(--paper);
  box-shadow: var(--shadow-md);
  transform: translateY(-8px);
}

.stage-card:hover::before,
.stage-card.is-selected::before {
  transform: scaleX(1);
}

.stage-code {
  margin-bottom: auto;
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
}

.stage-card strong {
  max-width: 190px;
  margin-top: 60px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.2;
}

.stage-card p {
  margin: 15px 0 22px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.stage-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--terracotta);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.stage-action .icon-arrow {
  width: 15px;
}

.services-section {
  overflow: hidden;
  background: var(--cream);
}

.services-section::before {
  content: "MAGNA";
  position: absolute;
  top: -46px;
  left: 50%;
  color: rgba(92, 66, 42, 0.035);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(160px, 24vw, 420px);
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: 1;
  transform: translateX(-50%);
  pointer-events: none;
}

.centered-heading {
  position: relative;
  z-index: 1;
  max-width: 850px;
  margin-inline: auto;
  text-align: center;
}

.centered-heading p {
  max-width: 660px;
  margin: 24px auto 0;
}

.services-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  padding: 34px;
  border: 1px solid rgba(84, 61, 37, 0.1);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 248, 0.84);
  box-shadow: 0 0 0 rgba(65, 45, 28, 0);
  transition:
    transform 0.5s var(--ease),
    border-color 0.3s ease,
    box-shadow 0.5s var(--ease),
    background-color 0.3s ease;
}

.service-card:hover {
  border-color: rgba(183, 133, 46, 0.36);
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-10px);
}

.service-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 56px;
}

.service-top > span {
  color: var(--gold);
  font-size: 10px;
  font-weight: 900;
}

.service-mark {
  width: 44px;
  height: 44px;
  padding: 13px;
  border: 1px solid rgba(183, 133, 46, 0.22);
  border-radius: 50%;
  color: var(--gold);
  transition: transform 0.5s var(--ease), background-color 0.3s ease, color 0.3s ease;
}

.service-card:hover .service-mark {
  background: var(--coral);
  color: var(--white);
  transform: rotate(45deg);
}

.service-card h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.2;
}

.service-card > p {
  margin: 16px 0 28px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: auto;
}

.tag-row span {
  padding: 7px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.integrity-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 74px minmax(0, 0.9fr) minmax(320px, 1fr);
  align-items: center;
  gap: 30px;
  margin-top: 18px;
  padding: 34px 38px;
  border-radius: var(--radius-md);
  background: var(--espresso);
  color: var(--paper);
  box-shadow: var(--shadow-md);
}

.integrity-icon {
  width: 64px;
  height: 64px;
  padding: 20px;
  border: 1px solid rgba(215, 173, 91, 0.35);
  border-radius: 50%;
  color: var(--gold-light);
}

.integrity-panel h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 2vw, 34px);
  font-weight: 500;
  line-height: 1.22;
}

.integrity-panel p {
  margin: 0;
  color: rgba(255, 253, 248, 0.68);
  font-size: 14px;
  line-height: 1.7;
}

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

.method-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(520px, 1.18fr);
  gap: clamp(70px, 10vw, 170px);
  align-items: start;
}

.method-intro {
  position: sticky;
  top: 145px;
}

.method-intro > p {
  margin: 27px 0 31px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gold);
  color: var(--terracotta);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

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

.process-list li {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 26px;
  padding: 37px 0;
  border-bottom: 1px solid var(--line);
}

.process-list li:first-child {
  padding-top: 0;
}

.process-number {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(183, 133, 46, 0.3);
  border-radius: 50%;
  color: var(--gold);
  font-size: 10px;
  font-weight: 900;
  transition: transform 0.45s var(--ease), background-color 0.3s ease, color 0.3s ease;
}

.process-list li:hover .process-number {
  background: var(--coral);
  color: var(--white);
  transform: rotate(10deg) scale(1.08);
}

.process-list h3 {
  margin: 2px 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  font-weight: 500;
}

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

.example-section {
  overflow: hidden;
  background: var(--espresso);
  color: var(--paper);
}

.example-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 82% 20%, rgba(214, 95, 60, 0.18), transparent 28rem),
    radial-gradient(circle at 12% 85%, rgba(215, 173, 91, 0.12), transparent 30rem);
}

.example-header {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.55fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 52px;
}

.example-header h2 {
  color: var(--paper);
}

.example-header > p {
  color: rgba(255, 253, 248, 0.62);
}

.example-workspace {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 570px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.25);
}

.example-sidebar {
  padding: 30px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.12);
}

.example-sidebar button {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 16px;
  border: 0;
  border-radius: 14px;
  background: transparent;
  color: rgba(255, 253, 248, 0.55);
  text-align: left;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.3s var(--ease);
}

.example-sidebar button:hover,
.example-sidebar button.is-active {
  background: rgba(255, 255, 255, 0.08);
  color: var(--paper);
  transform: translateX(4px);
}

.example-sidebar button span {
  color: var(--gold-light);
  font-size: 9px;
}

.example-content {
  min-width: 0;
}

.workspace-toolbar {
  min-height: 62px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 0 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 253, 248, 0.45);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.toolbar-dots {
  display: flex;
  gap: 6px;
}

.toolbar-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.toolbar-dots i:nth-child(2) {
  opacity: 0.55;
}

.toolbar-dots i:nth-child(3) {
  opacity: 0.28;
}

.workspace-status {
  padding: 7px 10px;
  border: 1px solid rgba(215, 173, 91, 0.25);
  border-radius: 999px;
  color: var(--gold-light);
}

.workspace-body {
  padding: clamp(34px, 5vw, 70px);
}

.workspace-body h3 {
  max-width: 760px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 3.2vw, 53px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.07;
}

.example-topic {
  max-width: 700px;
  margin: 20px 0 34px;
  color: rgba(255, 253, 248, 0.58);
  font-size: 15px;
  line-height: 1.7;
}

.example-items {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.example-items > div {
  min-height: 150px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.045);
  transition: transform 0.35s var(--ease), border-color 0.25s ease, background-color 0.25s ease;
}

.example-items > div:hover {
  border-color: rgba(215, 173, 91, 0.3);
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-5px);
}

.example-items span {
  color: var(--gold-light);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.example-items p {
  margin: 13px 0 0;
  color: rgba(255, 253, 248, 0.74);
  font-size: 12px;
  line-height: 1.7;
}

.coverage-section {
  padding-bottom: 0;
  background: var(--white);
}

.coverage-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.75fr) minmax(540px, 1.25fr);
  align-items: start;
  gap: clamp(70px, 10vw, 160px);
  padding-bottom: 110px;
}

.coverage-grid > div > p {
  margin-top: 25px;
}

.discipline-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.discipline-grid > div {
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 12px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 800;
  transition: padding-left 0.35s var(--ease), color 0.25s ease;
}

.discipline-grid > div:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.discipline-grid > div:hover {
  padding-left: 20px;
  color: var(--coral-dark);
}

.discipline-grid span {
  color: var(--gold);
  font-size: 9px;
}

.standards-marquee {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}

.marquee-track {
  width: max-content;
  display: flex;
  align-items: center;
  animation: marquee 32s linear infinite;
}

.marquee-track span {
  min-height: 78px;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 0 32px;
  color: var(--ink-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  white-space: nowrap;
}

.marquee-track i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

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

.founder-grid {
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(500px, 1.1fr);
  align-items: center;
  gap: clamp(70px, 10vw, 170px);
}

.founder-seal {
  position: relative;
  min-height: 550px;
  display: grid;
  place-items: center;
}

.founder-seal::before,
.founder-seal::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.founder-seal::before {
  width: 480px;
  height: 480px;
  border: 1px solid rgba(183, 133, 46, 0.22);
}

.founder-seal::after {
  width: 380px;
  height: 380px;
  border: 1px dashed rgba(214, 95, 60, 0.2);
  animation: orbit 35s linear infinite;
}

.seal-orbit {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  animation: orbit 18s linear infinite;
}

.seal-orbit::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 10px rgba(214, 95, 60, 0.08);
}

.seal-core {
  position: relative;
  z-index: 2;
  width: 290px;
  height: 290px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 20px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.9), transparent 40%),
    var(--cream);
  box-shadow: var(--shadow-lg);
}

.seal-core span {
  color: var(--espresso);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 112px;
  line-height: 0.8;
}

.seal-core small {
  color: var(--terracotta);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.founder-copy > p {
  max-width: 650px;
  margin-top: 26px;
}

.founder-signature {
  margin-top: 34px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.founder-signature span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.founder-signature strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(19px, 1.7vw, 25px);
  font-weight: 500;
  line-height: 1.4;
}

.email-feature {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 5px 20px;
  margin-top: 18px;
  padding: 22px 24px;
  border-radius: 16px;
  background: var(--espresso);
  color: var(--paper);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.email-feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.email-feature > span {
  color: var(--gold-light);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.email-feature strong {
  font-size: clamp(16px, 1.5vw, 22px);
  word-break: break-word;
}

.email-feature .icon-arrow {
  grid-column: 2;
  grid-row: 1 / 3;
}

.quote-section {
  overflow: hidden;
  background: var(--espresso);
  color: var(--paper);
}

.quote-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    radial-gradient(circle at 10% 20%, rgba(215, 173, 91, 0.14), transparent 24rem);
  background-size: 64px 64px, 64px 64px, auto;
  pointer-events: none;
}

.quote-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(580px, 1.22fr);
  align-items: start;
  gap: clamp(60px, 8vw, 130px);
}

.section-kicker-light {
  color: var(--gold-light);
}

.quote-copy {
  position: sticky;
  top: 145px;
}

.quote-copy h2 {
  color: var(--paper);
}

.quote-copy > p {
  margin: 28px 0 34px;
  color: rgba(255, 253, 248, 0.66);
  font-size: 16px;
  line-height: 1.8;
}

.quote-facts {
  display: grid;
  gap: 0;
}

.quote-facts > div {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  padding: 17px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.quote-facts span {
  color: var(--gold-light);
  font-size: 9px;
  font-weight: 900;
}

.quote-facts p {
  margin: 0;
  color: rgba(255, 253, 248, 0.62);
  font-size: 12px;
  line-height: 1.6;
}

.direct-contact {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 14px;
  align-items: center;
  margin-top: 30px;
  padding: 21px 22px;
  border: 1px solid rgba(215, 173, 91, 0.22);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.045);
  transition: background-color 0.25s ease, transform 0.35s var(--ease);
}

.direct-contact:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
}

.direct-contact span {
  color: rgba(255, 253, 248, 0.45);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.direct-contact strong {
  font-size: 15px;
}

.direct-contact .icon-arrow {
  grid-column: 2;
  grid-row: 1 / 3;
}

.quote-form {
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: 0 48px 100px rgba(0, 0, 0, 0.28);
  color: var(--ink);
}

.form-heading {
  margin-bottom: 30px;
}

.form-heading > span {
  color: var(--gold);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-heading h3 {
  margin: 8px 0 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 36px;
  font-weight: 500;
}

.form-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 16px;
}

.form-grid label {
  display: grid;
  gap: 8px;
}

.form-grid label > span {
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.035em;
}

.form-grid input,
.form-grid select,
.form-grid textarea,
.chat-input input {
  width: 100%;
  border: 1px solid rgba(52, 42, 32, 0.16);
  border-radius: 12px;
  background: var(--white);
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.form-grid input,
.form-grid select {
  min-height: 51px;
  padding: 0 14px;
}

.form-grid textarea {
  padding: 14px;
  resize: vertical;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus,
.chat-input input:focus {
  border-color: var(--gold);
  outline: none;
  box-shadow: 0 0 0 4px rgba(183, 133, 46, 0.11);
  background: var(--paper);
}

.form-grid input::placeholder,
.form-grid textarea::placeholder {
  color: #aa9e92;
}

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

.file-field {
  padding: 16px;
  border: 1px dashed rgba(183, 133, 46, 0.4);
  border-radius: 14px;
  background: rgba(241, 223, 182, 0.17);
}

.file-field input {
  padding: 10px;
  background: var(--white);
}

.file-field small {
  color: var(--muted);
  font-size: 9px;
  line-height: 1.5;
}

.consent-field {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 11px;
  margin: 22px 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.55;
}

.consent-field input {
  width: 17px;
  height: 17px;
  margin: 0;
  accent-color: var(--coral);
}

.button-submit {
  width: 100%;
  border: 0;
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 15px 34px rgba(214, 95, 60, 0.22);
}

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

.button-submit:disabled {
  cursor: wait;
  opacity: 0.7;
  transform: none;
}

.form-status {
  min-height: 0;
  margin-top: 14px;
  border-radius: 10px;
  font-size: 11px;
  line-height: 1.55;
}

.form-status.success,
.form-status.error {
  padding: 12px 14px;
}

.form-status.success {
  background: rgba(183, 133, 46, 0.12);
  color: #71501d;
}

.form-status.error {
  background: rgba(214, 95, 60, 0.1);
  color: #87321e;
}

.form-routing {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.5;
  text-align: center;
}

.faq-section {
  background: var(--white);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(540px, 1.22fr);
  align-items: start;
  gap: clamp(70px, 10vw, 160px);
}

.faq-intro {
  position: sticky;
  top: 145px;
}

.faq-intro > p {
  margin-top: 25px;
}

.accordion {
  border-top: 1px solid var(--line);
}

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

.faq-item > button {
  width: 100%;
  min-height: 84px;
  display: grid;
  grid-template-columns: 1fr 24px;
  align-items: center;
  gap: 20px;
  padding: 22px 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
}

.faq-item > button i {
  position: relative;
  width: 22px;
  height: 22px;
}

.faq-item > button i::before,
.faq-item > button i::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 1px;
  background: var(--coral);
  transform: translate(-50%, -50%);
  transition: transform 0.3s var(--ease);
}

.faq-item > button i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open > button i::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 0.45s var(--ease), opacity 0.3s ease;
}

.faq-answer p {
  min-height: 0;
  overflow: hidden;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
  opacity: 1;
}

.faq-item.is-open .faq-answer p {
  padding: 0 50px 26px 0;
}

.final-cta {
  padding: 85px 0;
  background: var(--cream);
}

.final-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
}

.final-cta h2 {
  max-width: 870px;
  font-size: clamp(38px, 3.4vw, 58px);
}

.final-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.final-actions > a:last-child {
  color: var(--terracotta);
  font-size: 12px;
  font-weight: 800;
}

footer {
  padding: 58px 0 26px;
  background: #1d1915;
  color: var(--paper);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 1fr 0.9fr;
  gap: 60px;
  padding-bottom: 64px;
}

.footer-brand img {
  width: 260px;
  height: auto;
  max-height: 84px;
  object-fit: contain;
  object-position: left center;
  filter: brightness(1.55) saturate(0.85);
  opacity: 1;
}

.footer-brand p,
.footer-grid > div:last-child p {
  max-width: 360px;
  margin: 18px 0 0;
  color: rgba(255, 253, 248, 0.5);
  font-size: 12px;
  line-height: 1.75;
}

.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer-grid > div > span {
  margin-bottom: 8px;
  color: var(--gold-light);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-grid a {
  color: rgba(255, 253, 248, 0.65);
  font-size: 11px;
  line-height: 1.45;
  overflow-wrap: anywhere;
  transition: color 0.2s ease, transform 0.25s var(--ease);
}

.footer-grid a:hover {
  color: var(--paper);
  transform: translateX(3px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 253, 248, 0.38);
  font-size: 9px;
  line-height: 1.6;
}

.footer-bottom p {
  margin: 0;
}

.whatsapp-float {
  position: fixed;
  z-index: 65;
  right: 28px;
  bottom: 28px;
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 999px;
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 18px 45px rgba(168, 64, 38, 0.3);
  font-size: 11px;
  font-weight: 900;
  transition: transform 0.35s var(--ease), background-color 0.25s ease;
}

.whatsapp-float:hover {
  background: var(--coral-dark);
  transform: translateY(-5px);
}

.whatsapp-float svg {
  width: 24px;
  height: 24px;
}

.chat-widget {
  position: fixed;
  z-index: 90;
  left: 28px;
  bottom: 28px;
}

.chat-trigger {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 17px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 999px;
  background: var(--espresso);
  color: var(--paper);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  font-size: 11px;
  font-weight: 900;
  transition: transform 0.35s var(--ease), background-color 0.25s ease;
}

.chat-trigger:hover {
  background: var(--coral-dark);
  transform: translateY(-5px);
}

.chat-trigger .icon-spark {
  width: 19px;
  height: 19px;
  color: var(--gold-light);
}

.chat-trigger > span:only-child {
  width: 18px;
  font-size: 24px;
  line-height: 1;
}

.chat-panel {
  position: absolute;
  left: 0;
  bottom: 66px;
  width: min(460px, calc(100vw - 32px));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 28px;
  background: var(--paper);
  box-shadow: 0 32px 90px rgba(43, 36, 30, 0.27);
  color: var(--ink);
  transform-origin: bottom left;
  animation: chatIn 0.42s var(--ease);
}

@keyframes chatIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.94);
  }
}

.chat-panel > header {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  gap: 11px;
  padding: 18px 19px;
  background: linear-gradient(135deg, var(--espresso), #5a3929);
  color: var(--paper);
}

.chat-avatar {
  width: 40px;
  height: 40px;
  padding: 12px;
  border-radius: 50%;
  background: var(--coral);
  color: var(--white);
}

.chat-panel header strong {
  display: block;
  font-size: 13px;
}

.chat-panel header span {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 4px;
  color: rgba(255, 253, 248, 0.58);
  font-size: 9px;
}

.chat-panel header span i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-light);
}

.chat-panel header button {
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--paper);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

.chat-header-actions { display: flex; gap: 6px; }
.chat-header-actions button:first-child { font-size: 17px; }
.chat-header-actions button:hover { background: rgba(255,255,255,.16); transform: rotate(5deg); }

.chat-trust {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 9px 16px;
  border-bottom: 1px solid var(--line);
  background: #fffdf8;
  color: var(--muted);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .02em;
}

.chat-trust span::before { content: "✓"; margin-right: 4px; color: var(--terracotta); }

.chat-progress-card {
  padding: 11px 16px 10px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.chat-progress-card > div:first-child { display: flex; justify-content: space-between; font-size: 9px; color: var(--muted); }
.chat-progress-card strong { color: var(--terracotta); }
.chat-progress-track { height: 4px; margin-top: 8px; overflow: hidden; border-radius: 99px; background: rgba(183,133,46,.12); }
.chat-progress-track i { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--gold), var(--coral)); transition: width .45s var(--ease); }

.chat-body {
  height: min(330px, 38vh);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 17px;
  background:
    radial-gradient(circle at 80% 10%, rgba(215, 173, 91, 0.1), transparent 14rem),
    var(--cream);
}

.chat-line { display: flex; align-items: flex-end; gap: 7px; width: 100%; }
.chat-line.user { justify-content: flex-end; }
.message-avatar { flex: 0 0 24px; width: 24px; height: 24px; display: grid; place-items: center; border-radius: 8px; background: var(--espresso); color: var(--gold-light); }
.message-avatar .icon-spark { width: 11px; height: 11px; }

.chat-message {
  max-width: 84%;
  padding: 11px 13px;
  border-radius: 14px;
  font-size: 11px;
  line-height: 1.55;
  white-space: pre-line;
}

.chat-message.bot {
  max-width: calc(88% - 31px);
  border-bottom-left-radius: 4px;
  background: var(--white);
  color: var(--ink-soft);
  box-shadow: 0 7px 18px rgba(65, 45, 28, 0.06);
}

.chat-message.user {
  align-self: flex-end;
  border-bottom-right-radius: 4px;
  background: var(--coral);
  color: var(--white);
}

.typing {
  align-self: flex-start;
  display: flex;
  gap: 4px;
  padding: 12px 14px;
  border-radius: 14px;
  background: var(--white);
}

.typing i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  animation: typing 0.8s ease-in-out infinite alternate;
}

.typing i:nth-child(2) {
  animation-delay: 0.15s;
}

.typing i:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes typing {
  to { transform: translateY(-4px); opacity: 0.45; }
}

.chat-quick {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  padding: 11px 13px 5px;
  background: var(--paper);
  scrollbar-width: none;
}

.chat-quick::-webkit-scrollbar {
  display: none;
}

.chat-quick button {
  min-height: 35px;
  padding: 7px 10px;
  border: 1px solid rgba(183, 133, 46, 0.24);
  border-radius: 11px;
  background: var(--white);
  color: var(--terracotta);
  cursor: pointer;
  font-size: 9px;
  font-weight: 800;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.chat-quick button:hover { transform: translateY(-2px); border-color: var(--coral); background: rgba(198,91,62,.05); }
.chat-quick button:first-child { background: var(--espresso); border-color: var(--espresso); color: var(--paper); }

.chat-input {
  display: grid;
  grid-template-columns: 1fr 39px;
  gap: 8px;
  padding: 9px 13px;
  background: var(--paper);
}

.chat-input input {
  min-height: 39px;
  padding: 0 12px;
  font-size: 11px;
}

.chat-input button {
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--coral);
  color: var(--white);
  cursor: pointer;
}

.chat-input button .icon-arrow {
  width: 16px;
}

.chat-whatsapp {
  width: calc(100% - 26px);
  min-height: 37px;
  margin: 0 13px 8px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: linear-gradient(135deg, var(--espresso), #5a3929);
  color: var(--paper);
  cursor: pointer;
  font-size: 9px;
  font-weight: 900;
}

.chat-whatsapp::before { content: "●"; margin-right: 7px; color: var(--gold-light); }

.chat-panel > small {
  display: block;
  padding: 0 15px 12px;
  color: var(--muted);
  font-size: 8px;
  line-height: 1.45;
  text-align: center;
}

.routes-section { padding: 120px 0; background: #f4eee4; }
.route-switch { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; max-width: 850px; margin: 42px auto 24px; }
.route-switch button { padding: 18px 22px; border: 1px solid rgba(183,133,46,.24); border-radius: 17px; background: rgba(255,255,255,.7); color: var(--ink); cursor: pointer; text-align: left; transition: .3s var(--ease); }
.route-switch button span { display: block; margin-bottom: 5px; color: var(--muted); font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.route-switch button strong { font-family: var(--font-display); font-size: 22px; }
.route-switch button.is-active { transform: translateY(-4px); border-color: var(--coral); background: var(--espresso); color: var(--paper); box-shadow: var(--shadow-md); }
.route-switch button.is-active span { color: var(--gold-light); }
.route-board { overflow: hidden; border: 1px solid rgba(183,133,46,.2); border-radius: 30px; background: var(--paper); box-shadow: var(--shadow-sm); }
.route-intro { display: grid; grid-template-columns: 150px 1fr 1fr; align-items: center; gap: 25px; padding: 30px; border-bottom: 1px solid var(--line); background: linear-gradient(120deg, rgba(215,173,91,.13), transparent); }
.route-badge { width: fit-content; padding: 8px 11px; border-radius: 99px; background: var(--coral); color: white; font-size: 9px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.route-intro h3 { font-family: var(--font-display); font-size: clamp(22px,2.3vw,34px); line-height: 1.1; }
.route-intro p { color: var(--muted); font-size: 12px; line-height: 1.7; }
.route-timeline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin: 0; padding: 0; list-style: none; }
.route-timeline li { position: relative; display: grid; grid-template-columns: 38px 1fr; gap: 12px; min-height: 170px; padding: 28px 24px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.route-timeline li:nth-child(3n) { border-right: 0; }
.route-timeline li > span { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: var(--espresso); color: var(--gold-light); font-size: 10px; font-weight: 900; }
.route-timeline h4 { margin: 5px 0 9px; font-size: 14px; }
.route-timeline p { color: var(--muted); font-size: 10px; line-height: 1.65; }
.route-result { display: flex; align-items: center; gap: 16px; padding: 22px 30px; background: var(--espresso); color: var(--paper); }
.route-result .icon-spark { flex: 0 0 24px; width: 24px; color: var(--gold-light); }
.route-result strong { display: block; margin-bottom: 3px; color: var(--gold-light); font-size: 9px; text-transform: uppercase; letter-spacing: .1em; }
.route-result p { font-size: 11px; line-height: 1.55; }
.career-guide-section { padding: 120px 0; background: var(--paper); }
.career-guide-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 50px; }
.career-guide-card { padding: 27px; border: 1px solid var(--line); border-radius: 20px; background: white; transition: transform .3s var(--ease), box-shadow .3s ease; }
.career-guide-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-sm); }
.career-guide-card > div { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.career-guide-card > div span { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 10px; background: var(--gold-light); color: var(--espresso); font-size: 9px; font-weight: 900; }
.career-guide-card h3 { font-family: var(--font-display); font-size: 20px; line-height: 1.15; }
.career-guide-card p { margin-top: 15px; color: var(--muted); font-size: 10px; line-height: 1.65; }
.career-guide-card p strong { display: block; margin-bottom: 4px; color: var(--terracotta); font-size: 9px; text-transform: uppercase; letter-spacing: .08em; }
.topic-checker { display: grid; grid-template-columns: .7fr 1.3fr; gap: 45px; align-items: center; margin-top: 22px; padding: 35px; border-radius: 22px; background: var(--espresso); color: var(--paper); }
.topic-checker h3 { margin-top: 9px; font-family: var(--font-display); font-size: 29px; }
.topic-checker ol { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; counter-reset: checks; list-style: none; }
.topic-checker li { counter-increment: checks; display: flex; gap: 9px; font-size: 10px; line-height: 1.5; }
.topic-checker li::before { content: counter(checks); flex: 0 0 22px; width: 22px; height: 22px; display: grid; place-items: center; border-radius: 50%; background: var(--coral); color: white; font-size: 8px; font-weight: 900; }

@media (max-width: 900px) {
  .route-intro { grid-template-columns: 1fr; gap: 12px; }
  .route-timeline { grid-template-columns: repeat(2,1fr); }
  .route-timeline li:nth-child(3n) { border-right: 1px solid var(--line); }
  .route-timeline li:nth-child(2n) { border-right: 0; }
  .career-guide-grid { grid-template-columns: repeat(2,1fr); }
  .topic-checker { grid-template-columns: 1fr; gap: 22px; }
}

@media (max-width: 560px) {
  .routes-section, .career-guide-section { padding: 80px 0; }
  .route-switch, .route-timeline, .career-guide-grid, .topic-checker ol { grid-template-columns: 1fr; }
  .route-timeline li, .route-timeline li:nth-child(3n), .route-timeline li:nth-child(2n) { border-right: 0; min-height: auto; }
  .route-switch button strong { font-size: 18px; }
  .chat-trust span:nth-child(2) { display: none; }
}

@media (max-width: 1260px) {
  :root {
    --shell: min(1180px, calc(100vw - 48px));
  }

  .header-inner {
    grid-template-columns: 220px 1fr auto;
    gap: 18px;
  }

  .brand {
    width: 210px;
  }

  .main-nav {
    gap: 20px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(430px, 0.82fr);
    gap: 45px;
  }

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

  .research-card {
    padding: 28px;
  }

  .orbital-one {
    width: 540px;
    height: 540px;
  }

  .orbital-two {
    width: 450px;
    height: 450px;
  }

  .stage-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-bottom: 0;
  }

  .stage-card {
    border-bottom: 1px solid var(--line);
  }

  .stage-card:nth-child(3) {
    border-right: 0;
  }

  .integrity-panel {
    grid-template-columns: 64px 1fr;
  }

  .integrity-panel > p {
    grid-column: 2;
  }

  .founder-seal::before,
  .seal-orbit {
    width: 420px;
    height: 420px;
  }

  .founder-seal::after {
    width: 340px;
    height: 340px;
  }
}

@media (max-width: 1024px) {
  :root {
    --shell: min(940px, calc(100vw - 40px));
  }

  .header-inner {
    grid-template-columns: 1fr auto auto;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 20px;
    right: 20px;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 0 0 20px 20px;
    background: rgba(255, 253, 248, 0.98);
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.25s ease, transform 0.35s var(--ease), visibility 0.25s ease;
  }

  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 14px;
    border-bottom: 1px solid var(--line);
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .main-nav a::after {
    display: none;
  }

  .menu-button {
    width: 45px;
    height: 45px;
    display: grid;
    place-content: center;
    gap: 6px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--white);
    cursor: pointer;
  }

  .menu-button span {
    width: 17px;
    height: 1.5px;
    background: var(--ink);
    transition: transform 0.3s var(--ease);
  }

  .menu-button.is-open span:first-child {
    transform: translateY(3.8px) rotate(45deg);
  }

  .menu-button.is-open span:last-child {
    transform: translateY(-3.8px) rotate(-45deg);
  }

  .hero {
    padding-top: 76px;
  }

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

  .hero-copy {
    max-width: 820px;
  }

  .hero-visual {
    width: min(100%, 670px);
    margin-inline: auto;
  }

  .split-heading,
  .example-header,
  .coverage-grid,
  .founder-grid,
  .quote-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .split-heading > p,
  .example-header > p,
  .coverage-grid > div > p,
  .founder-copy > p,
  .faq-intro > p {
    max-width: 720px;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .method-grid {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .method-intro,
  .quote-copy,
  .faq-intro {
    position: static;
  }

  .method-intro {
    max-width: 740px;
  }

  .example-workspace {
    grid-template-columns: 210px 1fr;
  }

  .founder-seal {
    min-height: 500px;
  }

  .founder-copy {
    max-width: 760px;
  }

  .quote-copy {
    max-width: 760px;
  }

  .quote-form {
    max-width: 840px;
  }

  .final-cta-inner {
    grid-template-columns: 1fr;
  }

  .final-actions {
    align-items: flex-start;
  }

  .footer-grid {
    grid-template-columns: 1.3fr 0.7fr 1fr;
  }

  .footer-grid > div:last-child {
    grid-column: 2 / 4;
  }
}

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

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

  .utility-inner {
    min-height: 34px;
    justify-content: center;
  }

  .utility-inner p {
    display: none;
  }

  .site-header {
    top: 0;
  }

  .header-inner {
    min-height: 72px;
    grid-template-columns: 1fr auto;
  }

  .brand {
    width: 194px;
  }

  .brand img {
    height: 54px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 65px 0 90px;
  }

  .hero::before {
    background:
      radial-gradient(circle at 50% 72%, rgba(215, 173, 91, 0.16), transparent 20rem),
      linear-gradient(90deg, rgba(255, 253, 248, 0.96), rgba(255, 253, 248, 0.42));
  }

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

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

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

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

  .hero-proof {
    gap: 10px 17px;
  }

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

  .research-card {
    transform: none;
  }

  .orbital-one {
    width: 500px;
    height: 500px;
  }

  .orbital-two {
    width: 410px;
    height: 410px;
  }

  .note-one {
    top: 40px;
    left: -5px;
  }

  .note-two {
    right: 0;
    bottom: 35px;
  }

  .scroll-cue {
    display: none;
  }

  .stage-section,
  .services-section,
  .method-section,
  .example-section,
  .coverage-section,
  .founder-section,
  .quote-section,
  .faq-section {
    padding: 90px 0;
  }

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

  .stage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stage-card,
  .stage-card:nth-child(3) {
    min-height: 300px;
    border-right: 1px solid var(--line);
  }

  .stage-card:nth-child(even) {
    border-right: 0;
  }

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

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

  .integrity-panel {
    grid-template-columns: 54px 1fr;
    padding: 28px;
  }

  .integrity-icon {
    width: 52px;
    height: 52px;
    padding: 16px;
  }

  .example-workspace {
    display: block;
    min-height: auto;
  }

  .example-sidebar {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 12px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    scrollbar-width: none;
  }

  .example-sidebar button {
    flex: 0 0 auto;
    width: auto;
  }

  .workspace-toolbar {
    grid-template-columns: auto 1fr;
  }

  .workspace-toolbar > span:nth-child(2) {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .workspace-status {
    display: none;
  }

  .example-items {
    grid-template-columns: 1fr;
  }

  .example-items > div {
    min-height: auto;
  }

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

  .discipline-grid > div:nth-child(odd) {
    border-right: 0;
  }

  .founder-seal {
    min-height: 430px;
  }

  .founder-seal::before,
  .seal-orbit {
    width: 380px;
    height: 380px;
  }

  .founder-seal::after {
    width: 315px;
    height: 315px;
  }

  .seal-core {
    width: 250px;
    height: 250px;
  }

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

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

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-grid > div:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 52px;
    padding: 0;
    justify-content: center;
  }

  .whatsapp-float span {
    display: none;
  }

  .chat-widget {
    left: 16px;
    bottom: 16px;
  }

  .chat-trigger {
    width: 52px;
    padding: 0;
    justify-content: center;
  }

  .chat-trigger > span:not(:only-child) {
    display: none;
  }
}

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

  .utility-inner {
    font-size: 10px;
  }

  .brand {
    width: 172px;
  }

  .hero {
    padding-top: 48px;
  }

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

  .hero h1 {
    font-size: clamp(42px, 13vw, 56px);
    letter-spacing: -0.05em;
  }

  .hero-proof {
    font-size: 9px;
  }

  .hero-visual {
    min-height: 480px;
    margin-top: 20px;
  }

  .research-card {
    padding: 20px;
    border-radius: 22px;
  }

  .research-card-head {
    display: block;
  }

  .live-badge {
    margin-top: 14px;
  }

  .flow-row {
    grid-template-columns: 25px 29px 1fr 26px;
    gap: 7px;
    padding-inline: 2px;
  }

  .flow-row strong {
    font-size: 12px;
  }

  .flow-row small {
    font-size: 9px;
  }

  .floating-note {
    padding: 10px 12px;
    font-size: 9px;
  }

  .orbital-one {
    width: 430px;
    height: 430px;
  }

  .orbital-two {
    width: 360px;
    height: 360px;
  }

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

  .stage-card,
  .stage-card:nth-child(3),
  .stage-card:nth-child(even) {
    min-height: 270px;
    border-right: 0;
  }

  .stage-card strong {
    max-width: none;
  }

  .integrity-panel {
    display: block;
  }

  .integrity-icon {
    margin-bottom: 20px;
  }

  .integrity-panel > p {
    margin-top: 16px;
  }

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

  .process-number {
    width: 50px;
    height: 50px;
  }

  .process-list h3 {
    font-size: 22px;
  }

  .workspace-toolbar {
    padding-inline: 16px;
  }

  .workspace-body {
    padding: 28px 20px;
  }

  .founder-seal {
    min-height: 350px;
  }

  .founder-seal::before,
  .seal-orbit {
    width: 310px;
    height: 310px;
  }

  .founder-seal::after {
    width: 260px;
    height: 260px;
  }

  .seal-core {
    width: 210px;
    height: 210px;
  }

  .seal-core span {
    font-size: 86px;
  }

  .seal-core small {
    font-size: 6px;
  }

  .email-feature {
    padding: 18px;
  }

  .email-feature strong {
    font-size: 14px;
  }

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

  .faq-item > button {
    font-size: 18px;
  }

  .final-actions,
  .final-actions .button {
    width: 100%;
  }

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

  .footer-grid > div:last-child {
    grid-column: auto;
  }

  .chat-panel {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 80px;
    width: auto;
  }

  .chat-body {
    height: min(310px, 42vh);
  }
}

@media (min-width: 2000px) {
  :root {
    --shell: min(1760px, calc(100vw - 160px));
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(650px, 0.9fr);
  }

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

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

  .research-card {
    width: 650px;
  }

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

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
