/* ==========================================================================
   One Degree AI — stylesheet
   Light, clean and current. Deliberately restrained: no glassmorphism, no
   gradient meshes, no animation for its own sake. Small business owners are
   buying trust, not a showreel.

   Sections: 1 Tokens · 2 Reset · 3 Layout · 4 Typography · 5 Buttons
             6 Header/Nav · 7 Hero · 8 Components · 9 Report panel
             10 Forms · 11 Footer · 12 Utilities · 13 Responsive/Motion
   ========================================================================== */

/* 1 · Design tokens ------------------------------------------------------ */
:root {
  /* Surfaces */
  --bg:        #FFFFFF;
  --bg-soft:   #F7F8FA;
  --bg-tint:   #FBFCFD;
  --surface:   #FFFFFF;

  /* Lines */
  --line:      #E4E8EE;
  --line-soft: #EEF1F5;
  --line-loud: #D3D9E2;

  /* Text */
  --text:      #0F1822;
  --text-2:    #3F4C5A;
  --muted:     #66717F;
  --muted-2:   #909AA7;

  /* Brand — a deeper, calmer red than a warning colour */
  --accent:       #D2333E;
  --accent-hover: #B4262F;
  --accent-soft:  #FDF2F3;
  --accent-line:  #F3CDD0;

  /* Secondary — teal, used on AI pages only */
  --teal:       #0E7A88;
  --teal-hover: #0A626E;
  --teal-soft:  #EFF9FA;
  --teal-line:  #BFE3E7;

  /* Status */
  --green:      #15803D;
  --green-soft: #ECFDF3;
  --green-line: #BBF0CD;
  --amber:      #B45309;
  --amber-soft: #FFFAEB;
  --amber-line: #FCE7B2;

  /* Dark footer */
  --dark:       #0F1822;
  --dark-2:     #1A2532;
  --dark-line:  rgba(255, 255, 255, 0.11);
  --dark-text:  #E9EDF2;
  --dark-muted: #96A2B0;

  /* Type */
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
          Arial, "Noto Sans", "PingFang SC", "Microsoft YaHei", sans-serif;
  --mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas,
          "Liberation Mono", monospace;

  /* Rhythm */
  --wrap: 1160px;
  --wrap-narrow: 740px;
  --gutter: 24px;

  /* Shape */
  --radius:    16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --radius-pill: 100px;

  /* Depth — soft and low-contrast, the way current UI reads */
  --shadow-xs: 0 1px 2px rgba(15, 24, 34, .05);
  --shadow-sm: 0 1px 3px rgba(15, 24, 34, .07), 0 1px 2px rgba(15, 24, 34, .04);
  --shadow:    0 2px 6px rgba(15, 24, 34, .05), 0 12px 28px -10px rgba(15, 24, 34, .13);
  --shadow-lg: 0 4px 10px rgba(15, 24, 34, .05), 0 28px 56px -18px rgba(15, 24, 34, .20);

  --ease: cubic-bezier(.4, 0, .2, 1);
}

/* 2 · Reset -------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text-2);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg, video { max-width: 100%; height: auto; display: block; }
button, input, textarea, select { font: inherit; color: inherit; }

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--accent); color: #fff; }

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 999;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-weight: 600;
}
.skip-link:focus { top: 0; text-decoration: none; }

/* 3 · Layout ------------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wrap--narrow { max-width: var(--wrap-narrow); }

section { position: relative; }
.section { padding: 100px 0; }
.section--tight { padding: 68px 0; }
.section--alt { background: var(--bg-soft); }

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.split {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 64px;
  align-items: center;
}

/* Grid/flex children default to min-width:auto, which lets wide content
   stretch its track past the viewport. Pin to 0 so overflow stays internal. */
.grid > *, .split > *, .tiers > *, .stats > *, .steps > * { min-width: 0; }

/* 4 · Typography --------------------------------------------------------- */
h1, h2, h3, h4 {
  margin: 0 0 .5em;
  line-height: 1.18;
  letter-spacing: -.021em;
  font-weight: 660;
  color: var(--text);
}
h1 {
  font-size: clamp(2.3rem, 5vw, 3.6rem);
  letter-spacing: -.033em;
  line-height: 1.09;
}
h2 {
  font-size: clamp(1.75rem, 3.3vw, 2.45rem);
  letter-spacing: -.027em;
  line-height: 1.16;
}
h3 { font-size: 1.14rem; letter-spacing: -.014em; }
h4 { font-size: 1rem; }

p { margin: 0 0 1.05em; }
p:last-child { margin-bottom: 0; }

.lede {
  font-size: clamp(1.05rem, 1.7vw, 1.2rem);
  line-height: 1.6;
  color: var(--muted);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 640;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.eyebrow--teal { color: var(--teal); }

.section-head { max-width: 640px; margin-bottom: 52px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }

.accent { color: var(--accent); }
.mono { font-family: var(--mono); }

/* 5 · Buttons ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: -.008em;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background .16s var(--ease), border-color .16s var(--ease),
              box-shadow .16s var(--ease), color .16s var(--ease);
}
.btn:hover { text-decoration: none; }
.btn svg { flex: none; }

.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-xs);
}
.btn--primary:hover { background: var(--accent-hover); box-shadow: var(--shadow-sm); }

.btn--ghost {
  background: var(--surface);
  border-color: var(--line-loud);
  color: var(--text);
  box-shadow: var(--shadow-xs);
}
.btn--ghost:hover { background: var(--bg-soft); border-color: var(--muted-2); }

.btn--teal { background: var(--teal); color: #fff; }
.btn--teal:hover { background: var(--teal-hover); }

.btn--lg { padding: 15px 28px; font-size: 1rem; }
.btn--sm { padding: 9px 16px; font-size: .875rem; }
.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
.btn-row--center { justify-content: center; }

/* 6 · Header / nav ------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  border-bottom: 1px solid transparent;
  transition: border-color .22s var(--ease), box-shadow .22s var(--ease);
}
.site-header.is-stuck {
  border-bottom-color: var(--line);
  box-shadow: 0 1px 3px rgba(15, 24, 34, .04);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -.028em;
  text-decoration: none;
  flex: none;
}
.brand:hover { text-decoration: none; }
.brand__mark { width: 32px; height: 32px; flex: none; }
.brand__name small {
  display: block;
  font-size: .61rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-top: -2px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
  list-style: none;
  padding: 0;
  margin-block: 0;
}
.nav__links a {
  display: block;
  padding: 8px 13px;
  border-radius: 8px;
  color: var(--text-2);
  font-size: .925rem;
  font-weight: 550;
  text-decoration: none;
  transition: color .14s var(--ease), background .14s var(--ease);
}
.nav__links a:hover { color: var(--text); background: var(--bg-soft); text-decoration: none; }
.nav__links a[aria-current="page"] { color: var(--accent); background: var(--accent-soft); }

.nav__cta { flex: none; }

.nav__toggle {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.nav__toggle span {
  display: block;
  position: relative;
  width: 17px; height: 1.6px;
  background: var(--text);
  border-radius: 2px;
  transition: background .2s var(--ease);
}
.nav__toggle span::before,
.nav__toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 17px; height: 1.6px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .22s var(--ease);
}
.nav__toggle span::before { top: -5.5px; }
.nav__toggle span::after  { top:  5.5px; }
.nav__toggle[aria-expanded="true"] span { background: transparent; }
.nav__toggle[aria-expanded="true"] span::before { transform: translateY(5.5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span::after  { transform: translateY(-5.5px) rotate(-45deg); }

/* 7 · Hero --------------------------------------------------------------- */
.hero {
  position: relative;
  padding: 104px 0 92px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg-tint) 0%, var(--bg) 62%);
}
.hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
/* A whisper of a dot grid — texture, not decoration */
.hero__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(15,24,34,.06) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(ellipse 70% 60% at 78% 18%, #000, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 78% 18%, #000, transparent 72%);
}
.hero__bg::after {
  content: "";
  position: absolute;
  top: -260px; right: -180px;
  width: 760px; height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(210, 51, 62, .07), transparent 66%);
}
.hero .wrap { position: relative; z-index: 1; }

.hero__inner { max-width: 880px; }
.hero h1 { margin-bottom: 20px; }
.hero .lede { max-width: 610px; margin-bottom: 32px; }
.hero .btn-row { margin-bottom: 34px; }

.hero__note {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .875rem;
  color: var(--muted);
}
.hero__note svg { flex: none; color: var(--green); }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 6px 15px 6px 12px;
  margin-bottom: 24px;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius-pill);
  font-size: .82rem;
  font-weight: 550;
  color: var(--text-2);
  box-shadow: var(--shadow-xs);
}
.pill__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px var(--green-soft);
  flex: none;
}

/* Inner page hero */
.page-hero {
  position: relative;
  padding: 80px 0 64px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg-tint), var(--bg));
  border-bottom: 1px solid var(--line-soft);
}
.page-hero::before {
  content: "";
  position: absolute;
  top: -220px; right: -140px;
  width: 620px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(210,51,62,.06), transparent 68%);
  pointer-events: none;
}
.page-hero--teal::before { background: radial-gradient(circle at center, rgba(14,122,136,.07), transparent 68%); }
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2.05rem, 4.2vw, 2.95rem); max-width: 800px; }
.page-hero .lede { max-width: 640px; }

.crumbs { font-size: .82rem; color: var(--muted-2); margin-bottom: 18px; }
.crumbs a { color: var(--muted); }
.crumbs span { margin-inline: 7px; opacity: .55; }

/* 8 · Components --------------------------------------------------------- */

/* Trust strip */
.trust {
  border-block: 1px solid var(--line-soft);
  background: var(--bg-soft);
  padding: 22px 0;
}
.trust__inner {
  display: flex;
  align-items: center;
  gap: 12px 34px;
  flex-wrap: wrap;
  justify-content: center;
}
.trust__label {
  font-size: .74rem;
  font-weight: 640;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.trust__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .875rem;
  font-weight: 550;
  color: var(--text-2);
}
.trust__item svg { color: var(--muted-2); flex: none; }

/* Card */
.card {
  position: relative;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-xs);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease),
              transform .2s var(--ease);
}
.card:hover {
  border-color: var(--line-loud);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.card h3 { margin-bottom: 9px; }
.card p { font-size: .94rem; color: var(--muted); margin-bottom: 0; }

.card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  margin-bottom: 18px;
  border-radius: 11px;
  background: var(--accent-soft);
  color: var(--accent);
}
.card__icon--teal { background: var(--teal-soft); color: var(--teal); }

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 16px;
  font-size: .9rem;
  font-weight: 620;
  color: var(--accent);
}
.card__link svg { transition: transform .16s var(--ease); }
.card:hover .card__link svg { transform: translateX(3px); }
.card--link::after { content: ""; position: absolute; inset: 0; border-radius: inherit; }

.card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
}
.tag {
  font-size: .74rem;
  font-weight: 550;
  padding: 3px 9px;
  border-radius: 6px;
  background: var(--bg-soft);
  border: 1px solid var(--line-soft);
  color: var(--muted);
}

/* Tick list */
.ticks { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.ticks li {
  position: relative;
  padding-left: 29px;
  font-size: .95rem;
  color: var(--text-2);
}
.ticks li::before {
  content: "";
  position: absolute;
  left: 0; top: 6px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--accent-soft);
}
.ticks li::after {
  content: "";
  position: absolute;
  left: 6px; top: 10px;
  width: 5px; height: 8px;
  border-right: 1.9px solid var(--accent);
  border-bottom: 1.9px solid var(--accent);
  transform: rotate(42deg);
}
.ticks--teal li::before { background: var(--teal-soft); }
.ticks--teal li::after  { border-color: var(--teal); }

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow-xs);
}
.stat__num {
  font-size: clamp(1.85rem, 3.2vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -.035em;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 6px;
}
.stat__num span { color: var(--accent); }
.stat__label { font-size: .87rem; color: var(--muted); margin: 0; }

/* Steps */
.steps { display: grid; gap: 16px; }
.step {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 28px 26px 78px;
  box-shadow: var(--shadow-xs);
  counter-increment: step;
}
.steps { counter-reset: step; }
.step::before {
  content: counter(step);
  position: absolute;
  left: 26px; top: 26px;
  width: 32px; height: 32px;
  display: grid;
  place-items: center;
  font-size: .88rem;
  font-weight: 700;
  color: var(--accent);
  border-radius: 50%;
  background: var(--accent-soft);
}
.step h3 { margin-bottom: 6px; font-size: 1.06rem; }
.step p { font-size: .94rem; color: var(--muted); margin: 0; }

/* Panel */
.panel {
  padding: 30px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-xs);
}
.panel--accent { background: var(--accent-soft); border-color: var(--accent-line); }
.panel--teal   { background: var(--teal-soft);   border-color: var(--teal-line); }

/* 9 · Report panel — replaces the old terminal block ---------------------- */
.report {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.report__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  border-bottom: 1px solid var(--line-soft);
  background: var(--bg-tint);
}
.report__head h3 { margin: 0 0 2px; font-size: .98rem; }
.report__head p { margin: 0; font-size: .82rem; color: var(--muted-2); }

.report__list { list-style: none; margin: 0; padding: 0; }
.report__list li {
  display: grid;
  grid-template-columns: 26px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px 22px;
  border-bottom: 1px solid var(--line-soft);
}
.report__list li:last-child { border-bottom: 0; }
.report__ico {
  width: 24px; height: 24px;
  display: grid; place-items: center;
  border-radius: 50%;
  flex: none;
}
.report__ico svg { width: 13px; height: 13px; }
.report__ico--ok   { background: var(--green-soft); color: var(--green); }
.report__ico--warn { background: var(--amber-soft); color: var(--amber); }
.report__ico--bad  { background: var(--accent-soft); color: var(--accent); }

.report__text strong {
  display: block;
  font-size: .91rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
}
.report__text span { font-size: .82rem; color: var(--muted); }

.badge {
  font-size: .71rem;
  font-weight: 640;
  letter-spacing: .02em;
  padding: 3px 9px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}
.badge--ok   { background: var(--green-soft);  color: var(--green);  }
.badge--warn { background: var(--amber-soft);  color: var(--amber);  }
.badge--bad  { background: var(--accent-soft); color: var(--accent); }

.report__foot {
  padding: 14px 22px;
  background: var(--bg-tint);
  border-top: 1px solid var(--line-soft);
  font-size: .82rem;
  color: var(--muted);
}

/* One-degree figure — the brand idea, drawn */
.degree-fig { width: 100%; height: auto; display: block; }
.degree-fig .df-base { stroke: var(--line-loud); }
.degree-fig .df-path { stroke: var(--accent); }
.degree-fig .df-arc  { stroke: var(--accent); fill: none; }
.degree-fig .df-dot  { fill: var(--accent); }
.degree-fig .df-dot-muted { fill: var(--muted-2); }
.degree-fig text { font-family: var(--font); font-size: 13px; }
.degree-fig .df-label { fill: var(--muted); }
.degree-fig .df-mark  { fill: var(--accent); font-weight: 700; font-size: 14px; }

/* Accordion */
.faq { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  padding: 22px 0;
  background: none;
  border: 0;
  text-align: left;
  cursor: pointer;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -.014em;
}
.faq__q:hover { color: var(--accent); }
.faq__icon { position: relative; flex: none; width: 20px; height: 20px; margin-top: 3px; }
.faq__icon::before, .faq__icon::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  background: var(--accent);
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform .24s var(--ease), opacity .24s var(--ease);
}
.faq__icon::before { width: 12px; height: 1.9px; }
.faq__icon::after  { width: 1.9px; height: 12px; }
.faq__q[aria-expanded="true"] .faq__icon::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }
.faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .28s var(--ease); }
.faq__q[aria-expanded="true"] + .faq__a { grid-template-rows: 1fr; }
.faq__a > div { overflow: hidden; }
.faq__a p { padding-bottom: 22px; font-size: .95rem; color: var(--muted); max-width: 72ch; }
.faq__a p + p { padding-bottom: 22px; margin-top: -8px; }

/* Pricing */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: start; }
.tier {
  display: flex;
  flex-direction: column;
  padding: 30px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-xs);
  height: 100%;
}
.tier--featured {
  border-color: var(--accent);
  border-width: 1.5px;
  box-shadow: var(--shadow);
}
.tier__flag {
  align-self: flex-start;
  font-size: .7rem;
  font-weight: 640;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: #fff;
  background: var(--accent);
  padding: 4px 11px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}
.tier h3 { margin-bottom: 5px; font-size: 1.2rem; }
.tier__who { font-size: .875rem; color: var(--muted); margin-bottom: 18px; }
.tier__from { font-size: .7rem; font-weight: 640; letter-spacing: .07em;
              text-transform: uppercase; color: var(--muted-2); display: block; margin-bottom: 1px; }
.tier__price {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -.035em;
  color: var(--text);
  line-height: 1.2;
}
.tier__price small { font-size: .84rem; font-weight: 500; color: var(--muted); letter-spacing: 0; }
.tier hr { border: 0; border-top: 1px solid var(--line-soft); margin: 20px 0; }
.tier .ticks { margin-bottom: 24px; }
.tier .ticks li { font-size: .895rem; }
.tier .btn { margin-top: auto; }

/* CTA band */
.cta-band {
  position: relative;
  padding: 84px 0;
  overflow: hidden;
  background: var(--bg-soft);
  border-top: 1px solid var(--line-soft);
}
.cta-band::before {
  content: "";
  position: absolute;
  top: -180px; left: 50%;
  width: 760px; height: 460px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(210,51,62,.07), transparent 68%);
  pointer-events: none;
}
.cta-band .wrap { position: relative; z-index: 1; text-align: center; }
.cta-band h2 { max-width: 640px; margin-inline: auto; }
.cta-band p { max-width: 560px; margin-inline: auto; margin-bottom: 28px; }

/* Callout note */
.note {
  display: flex;
  gap: 13px;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  background: var(--amber-soft);
  border: 1px solid var(--amber-line);
  font-size: .9rem;
  color: var(--text-2);
}
.note svg { flex: none; color: var(--amber); margin-top: 2px; }
.note p { font-size: .9rem; margin: 0; }
.note strong { color: var(--text); }

/* Definition rows */
.rows { border-top: 1px solid var(--line-soft); }
.row {
  display: grid;
  grid-template-columns: 168px 1fr;
  gap: 26px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-soft);
}
.row dt {
  font-size: .78rem;
  font-weight: 640;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--muted-2);
  padding-top: 2px;
}
.row dd { margin: 0; font-size: .93rem; color: var(--text-2); }

/* Logo mark */
.mark-shield { fill: var(--accent); }
.mark-inner  { fill: #fff; }

/* 10 · Forms ------------------------------------------------------------- */
.form { display: grid; gap: 17px; }
.field { display: grid; gap: 6px; }
.field label { font-size: .865rem; font-weight: 600; color: var(--text); }
.field label .req { color: var(--accent); }
.field .hint { font-size: .8rem; color: var(--muted-2); }

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 11px 14px;
  background: var(--surface);
  border: 1px solid var(--line-loud);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: .95rem;
  transition: border-color .14s var(--ease), box-shadow .14s var(--ease);
}
.field textarea { resize: vertical; min-height: 128px; line-height: 1.6; }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2366717F' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }

.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.field.has-error input,
.field.has-error select,
.field.has-error textarea { border-color: var(--accent); }
.field .error { font-size: .8rem; color: var(--accent); display: none; }
.field.has-error .error { display: block; }

.field--check { grid-template-columns: auto 1fr; gap: 10px; align-items: start; }
.field--check input { width: 17px; height: 17px; margin-top: 3px; accent-color: var(--accent); }
.field--check label { font-size: .855rem; font-weight: 400; color: var(--muted); line-height: 1.55; }

/* Honeypot — hidden from humans, visible to naive bots */
.hp {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0; height: 0; width: 0; overflow: hidden;
}

.form-status {
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  display: none;
}
.form-status.is-ok  { display: block; background: var(--green-soft);  border: 1px solid var(--green-line);  color: var(--green); }
.form-status.is-err { display: block; background: var(--accent-soft); border: 1px solid var(--accent-line); color: var(--accent); }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 52px; align-items: start; }

.contact-item {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-soft);
}
.contact-item:last-child { border-bottom: 0; }
.contact-item__ico {
  flex: none;
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
}
.contact-item h4 { margin: 0 0 2px; font-size: .9rem; }
.contact-item p { margin: 0; font-size: .9rem; color: var(--muted); }
.contact-item a { font-size: .9rem; }

/* 11 · Footer — dark, to ground the page --------------------------------- */
.site-footer {
  background: var(--dark);
  color: var(--dark-muted);
  padding: 66px 0 28px;
}
.site-footer .brand { color: #fff; }
.site-footer .brand__name small { color: var(--dark-muted); }
.site-footer .mark-inner { fill: var(--dark); }

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 44px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--dark-line);
}
.footer__about p {
  font-size: .9rem;
  color: var(--dark-muted);
  max-width: 34ch;
  margin: 16px 0 18px;
}
.footer__col h4 {
  font-size: .74rem;
  font-weight: 640;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 15px;
}
.footer__col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer__col a { font-size: .91rem; color: var(--dark-muted); text-decoration: none; }
.footer__col a:hover { color: #fff; text-decoration: none; }
.site-footer .muted { color: var(--dark-muted); }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  align-items: center;
  justify-content: space-between;
  padding-top: 26px;
  font-size: .83rem;
}
.footer__bottom p { margin: 0; font-size: .83rem; color: var(--dark-muted); }
.footer__legal { display: flex; gap: 18px; flex-wrap: wrap; }
.footer__legal a { color: var(--dark-muted); font-size: .83rem; }
.footer__legal a:hover { color: #fff; }

.socials { display: flex; gap: 8px; }
.socials a {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: 9px;
  border: 1px solid var(--dark-line);
  color: var(--dark-muted);
  transition: color .15s var(--ease), border-color .15s var(--ease), background .15s var(--ease);
}
.socials a:hover { color: #fff; border-color: rgba(255,255,255,.28); background: var(--dark-2); }

/* 12 · Utilities --------------------------------------------------------- */
.center { text-align: center; }
.mt-1 { margin-top: 12px; }
.mt-2 { margin-top: 24px; }
.mt-3 { margin-top: 34px; }
.mt-4 { margin-top: 46px; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 24px; }
.mb-3 { margin-bottom: 34px; }
.small { font-size: .875rem; }
.muted { color: var(--muted); }
.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;
}
.anchor { scroll-margin-top: 92px; }

/* 13 · Motion ------------------------------------------------------------ */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .55s var(--ease), transform .55s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }

/* Responsive ------------------------------------------------------------- */
@media (max-width: 1024px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }

  .nav.is-open { height: auto; flex-wrap: wrap; padding-bottom: 18px; }
  .nav.is-open .nav__links {
    display: grid;
    gap: 2px;
    width: 100%;
    order: 3;
    margin: 10px 0 0;
    padding-top: 14px;
    border-top: 1px solid var(--line);
  }
  .nav.is-open .nav__links a { padding: 12px 14px; font-size: 1rem; }
  .nav.is-open .nav__cta { display: block; width: 100%; order: 4; margin-top: 10px; }
  .nav.is-open .nav__cta .btn { width: 100%; }

  .grid-4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .stats  { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer__about { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 42px; }
  .grid-3 { grid-template-columns: 1fr; }
  .tiers { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 42px; }
  .section { padding: 72px 0; }
  .hero { padding: 68px 0 62px; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  :root { --gutter: 18px; }
  .grid-2, .grid-4 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .row { grid-template-columns: 1fr; gap: 6px; }
  .step { padding: 24px 22px; }
  .step::before { position: static; margin-bottom: 12px; }
  .card, .panel, .tier { padding: 22px; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .btn { width: 100%; }
  .btn-row { flex-direction: column; }
  .trust__inner { justify-content: flex-start; gap: 10px 22px; }
  .report__list li { grid-template-columns: 26px 1fr; }
  .report__list .badge { grid-column: 2; justify-self: start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .site-header, .cta-band, .nav__toggle, .hero__bg { display: none !important; }
  body { background: #fff; color: #000; }
  .card, .panel, .tier { border: 1px solid #ccc; box-shadow: none; }
}
