/* ==========================================================================
   Morningstar Media — the front of the house.

   A light scheme carrying the brand's own orange. The palette comes off the
   logo: the orange is sampled from the arc (#ff7a18 at its highlight, #e8500a
   at the shadow), and the graphite from the wordmark.

   One rule runs through the colour choices: --flare is a *graphic* colour, used
   for fills, rules, bars and circles. It does not clear 4.5:1 against white, so
   anything that is text — eyebrows, links, numerals, chip labels — uses
   --flare-ink instead. Reach for --flare on a letterform and the contrast goes
   with it.
   ========================================================================== */

:root {
  --page:       #ffffff;
  --page-2:     #f6f7f9;  /* alternating slab */
  --panel:      #ffffff;
  --panel-2:    #fbfcfd;
  --line:       rgba(20, 22, 26, .11);
  --line-soft:  rgba(20, 22, 26, .06);

  --flare:      #ff7a18;  /* graphics only */
  --flare-lit:  #ffa04f;
  --flare-deep: #d2450a;
  /* Text orange. Deep enough to clear 4.5:1 not only on white but on
     --flare-wash, which is where the scope notes and doc callouts put it. */
  --flare-ink:  #b03f08;
  --flare-wash: rgba(255, 122, 24, .07);

  --ink:        #14161a;  /* headings */
  --body:       #4b525b;  /* running text — 7.9:1 on white */
  --dim:        #676e76;  /* secondary — 5.2:1 on white, 4.8:1 on the tint.
                             Carries a lot of small text (stat labels, footer,
                             form hints), so it cannot be lighter than this. */

  --ok:         #15803d;
  --bad:        #c2321f;

  --shadow-sm:  0 1px 2px rgba(16, 20, 28, .05), 0 2px 8px rgba(16, 20, 28, .04);
  --shadow-md:  0 2px 4px rgba(16, 20, 28, .06), 0 12px 28px rgba(16, 20, 28, .09);
  --shadow-flare: 0 8px 22px -10px rgba(210, 69, 10, .55);

  --display: 'Sora', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --text:    'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;

  --shell:  1200px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --slab:   clamp(4.5rem, 9vw, 8rem);

  --round:  14px;
  --round-lg: 22px;

  --ease: cubic-bezier(.2, .7, .3, 1);
}

/* --------------------------------------------------------------------------
   Reset
   -------------------------------------------------------------------------- */

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

html {
  scroll-behavior: smooth;
  /* Anchors land below the fixed masthead rather than under it. */
  scroll-padding-top: 6rem;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--body);
  font-family: var(--text);
  font-size: 1.0625rem;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: rgba(255, 122, 24, .22); color: var(--ink); }

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

a { color: var(--flare-ink); text-decoration-color: rgba(194, 72, 10, .35); text-underline-offset: .18em; }
a:hover { color: var(--flare-deep); }

h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--ink);
  line-height: 1.14;
  letter-spacing: -.02em;
  margin: 0 0 .6em;
  font-weight: 600;
}

p { margin: 0 0 1.1em; }
ul, ol { margin: 0 0 1.2em; padding-left: 1.2em; }

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

.sr,
.skip:not(:focus) {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip:focus {
  position: fixed; inset: 1rem auto auto 1rem; z-index: 100;
  background: var(--flare-deep); color: #fff;
  padding: .7rem 1.1rem; border-radius: 8px;
  font-weight: 600; text-decoration: none;
}

/* --------------------------------------------------------------------------
   Layout primitives
   -------------------------------------------------------------------------- */

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.shell--narrow { max-width: 820px; }

.slab { padding-block: var(--slab); position: relative; }
.slab--tint { background: var(--page-2); border-block: 1px solid var(--line-soft); }

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.split--flip .split__body { order: 2; }

@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
  .split--flip .split__body { order: 0; }
}

.cluster { display: flex; flex-wrap: wrap; gap: .75rem; }

/* --------------------------------------------------------------------------
   Type
   -------------------------------------------------------------------------- */

.eyebrow {
  font-family: var(--display);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--flare-ink);
  margin: 0 0 1rem;
}

.lead { font-size: 1.2rem; color: var(--ink); }

.fine { font-size: .9rem; color: var(--dim); }
.fine--center { text-align: center; }

/* The line that separates the licensed marketing file from anything collected
   about a visitor. Set apart, because a reader who misses it reads the privacy
   notice as contradicting the page it sits on. */
.note-scope {
  margin-top: 1.25rem;
  padding: .9rem 1.15rem;
  border-left: 2px solid var(--flare);
  background: var(--flare-wash);
  border-radius: 0 8px 8px 0;
  max-width: 68ch;
  color: var(--body);
}
.note-scope.fine--center { margin-inline: auto; text-align: left; }

.only-route {
  margin: 1.75rem 0 0;
  padding: 1.15rem 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--round);
  background: var(--page-2);
  font-size: .92rem;
  color: var(--dim);
}
.only-route strong { color: var(--ink); }

.mini {
  font-family: var(--display);
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--dim);
  margin: 2rem 0 .9rem;
}

/* The wordmark's metallic roll, inverted for a light ground: graphite with the
   highlight in the middle rather than chrome with a shadow there. */
.chrome {
  background: linear-gradient(180deg, #2b3037 6%, #545c66 40%, #8b939d 58%, #23272d 92%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.sechead { margin-bottom: 2.4rem; }
.sechead--center { text-align: center; margin-inline: auto; max-width: 720px; }
.sechead__title { font-size: clamp(1.75rem, 3.4vw, 2.6rem); }
.sechead__lead { color: var(--body); margin: 0; }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  --btn-edge: var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--display);
  font-size: .95rem;
  font-weight: 600;
  line-height: 1;
  padding: .95rem 1.5rem;
  border: 1px solid var(--btn-edge);
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s var(--ease), background .18s var(--ease),
              border-color .18s var(--ease), box-shadow .18s var(--ease);
}

.btn:hover { transform: translateY(-2px); color: var(--btn-fg); }
.btn:active { transform: translateY(0); }

/* Near-black on bright orange rather than white on dark orange. White would
   force the gradient down to roughly #c2480a before it cleared 4.5:1, which
   drains exactly the colour the brand is built on; dark ink on the vivid orange
   clears 5.8:1 at the darkest end and 8:1 at the lightest. */
.btn--flare {
  --btn-bg: linear-gradient(135deg, #ff9440, #f26b0c);
  --btn-fg: #2b1100;
  --btn-edge: transparent;
  box-shadow: var(--shadow-flare);
}
.btn--flare:hover { box-shadow: 0 12px 30px -10px rgba(210, 69, 10, .7); }

.btn--ghost { --btn-bg: var(--panel); box-shadow: var(--shadow-sm); }
.btn--ghost:hover { --btn-edge: rgba(210, 69, 10, .45); }

.btn--quiet { --btn-edge: transparent; --btn-fg: var(--body); padding-inline: .4rem; }
.btn--quiet:hover { --btn-fg: var(--flare-ink); }

.btn--lg { padding: 1.1rem 1.9rem; font-size: 1rem; }
.btn--block { width: 100%; }

.btn[disabled], .btn[aria-disabled="true"] { opacity: .55; pointer-events: none; }

/* --------------------------------------------------------------------------
   Masthead
   -------------------------------------------------------------------------- */

.masthead {
  position: sticky;
  top: 0;
  z-index: 60;
  transition: background .25s var(--ease), border-color .25s var(--ease),
              box-shadow .25s var(--ease);
  border-bottom: 1px solid transparent;
}

.masthead.is-stuck {
  background: rgba(255, 255, 255, .86);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
  box-shadow: 0 1px 12px rgba(16, 20, 28, .05);
}

.masthead__in {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: 5rem;
}

.brand { margin-right: auto; display: block; line-height: 0; }
.brand img { width: auto; height: clamp(30px, 4.4vw, 42px); }

.nav { display: flex; align-items: center; gap: clamp(1rem, 2.4vw, 2rem); }
.nav ul { display: flex; gap: clamp(1rem, 2.2vw, 2rem); list-style: none; margin: 0; padding: 0; }

.nav a:not(.btn) {
  font-family: var(--display);
  font-size: .95rem;
  font-weight: 500;
  color: var(--body);
  text-decoration: none;
  padding-block: .35rem;
  position: relative;
}

.nav a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--flare-deep), var(--flare));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s var(--ease);
}

.nav a:not(.btn):hover,
.nav a[aria-current="page"] { color: var(--ink); }
.nav a:not(.btn):hover::after,
.nav a[aria-current="page"]::after { transform: scaleX(1); }

.burger {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0 10px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
}
.burger span:not(.sr) {
  display: block; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform .22s var(--ease), opacity .22s var(--ease);
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px) {
  .burger { display: flex; }

  .nav {
    position: fixed;
    inset: 5rem 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem var(--gutter) 2rem;
    background: rgba(255, 255, 255, .98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 24px rgba(16, 20, 28, .08);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
  }

  .nav.is-open { opacity: 1; transform: none; visibility: visible; }

  .nav ul { flex-direction: column; gap: 0; }
  .nav ul a { display: block; padding: .95rem 0; border-bottom: 1px solid var(--line-soft); font-size: 1.05rem; }
  .nav__cta { margin-top: 1.25rem; }
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero { position: relative; padding-block: clamp(3.5rem, 9vw, 7rem) clamp(4rem, 8vw, 6.5rem); }

.hero__sky {
  position: absolute;
  inset: -5rem 0 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.hero__sky--short { inset: -5rem 0 0; opacity: .85; }

/* The sunrise the mark is drawn from: one warm wash, low and centred. Held
   well below the text — on a light ground the tint only has to be felt. */
.hero__bloom {
  position: absolute;
  left: 50%;
  bottom: -34%;
  width: min(140vw, 1500px);
  aspect-ratio: 2 / 1;
  transform: translateX(-50%);
  background:
    radial-gradient(ellipse at 50% 100%,
      rgba(255, 143, 51, .26) 0%,
      rgba(255, 154, 79, .14) 34%,
      rgba(255, 190, 140, .06) 56%,
      transparent 72%);
  filter: blur(6px);
}

/* A faint plotted grid — the data, not a stock photograph of it. */
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(20, 22, 26, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 22, 26, .045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 20%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 20%, transparent 78%);
}

.hero__horizon {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 122, 24, .6), transparent);
}

.hero__in { position: relative; z-index: 1; text-align: center; }

/* The lockup leads the page, above the company name and the claim. It is
   decorative here — the name follows immediately as the h1 — so it carries no
   alt text and nothing is announced twice. */
.hero__lockup {
  width: clamp(220px, 34vw, 430px);
  height: auto;
  margin: 0 auto clamp(1.25rem, 2.5vw, 2rem);
}

.hero__name {
  font-size: clamp(.85rem, 1.5vw, 1.05rem);
  font-weight: 600;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--dim);
  margin: 0 0 .75rem;
  /* The last letter's tracking would otherwise push the line off centre. */
  text-indent: .34em;
}

.hero__eyebrow { letter-spacing: .3em; }

.hero__title {
  font-size: clamp(2.1rem, 5.6vw, 4rem);
  font-weight: 700;
  max-width: 16ch;
  margin-inline: auto;
  color: var(--ink);
}

.hero__lead {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  max-width: 62ch;
  margin: 1.6rem auto 2.4rem;
}

.hero__acts { display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; }

/* --------------------------------------------------------------------------
   Stats
   -------------------------------------------------------------------------- */

.stats {
  list-style: none;
  margin: clamp(3rem, 6vw, 4.5rem) 0 0;
  padding: 1.75rem 0 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.stats__n {
  display: block;
  font-family: var(--display);
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -.03em;
}
.stats__n em { font-style: normal; color: var(--flare-ink); }

.stats__l {
  display: block;
  margin-top: .5rem;
  font-size: .82rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--dim);
}

@media (max-width: 640px) {
  .stats { grid-template-columns: repeat(2, 1fr); gap: 1.75rem 1rem; }
}

/* --------------------------------------------------------------------------
   Ticker
   -------------------------------------------------------------------------- */

.ticker {
  border-block: 1px solid var(--line-soft);
  background: var(--page-2);
  overflow: hidden;
  padding-block: 1.1rem;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.ticker__track { display: flex; width: max-content; animation: drift 46s linear infinite; }

.ticker__set {
  display: flex;
  gap: 3rem;
  list-style: none;
  margin: 0;
  padding: 0 1.5rem;
}

.ticker__set li {
  font-family: var(--display);
  font-size: .82rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--dim);
  white-space: nowrap;
}

.ticker__set li::after { content: ' ·'; color: var(--flare); margin-left: 3rem; }

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

/* --------------------------------------------------------------------------
   Figures
   -------------------------------------------------------------------------- */

.figures {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--round-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.figures li { background: var(--panel); padding: 1.75rem 1.5rem; }

.figures__n {
  display: block;
  font-family: var(--display);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--flare-ink);
  line-height: 1.1;
}

.figures__l { display: block; margin-top: .35rem; font-size: .88rem; color: var(--dim); }

.figures--tight li { padding: 1.1rem 1rem; }
.figures--tight .figures__n { font-size: 1.4rem; }

/* --------------------------------------------------------------------------
   Cards
   -------------------------------------------------------------------------- */

.cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.25rem;
}

.card > a {
  display: block;
  height: 100%;
  padding: 2rem 1.75rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--round-lg);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  transition: transform .22s var(--ease), border-color .22s var(--ease),
              box-shadow .22s var(--ease);
}

/* The sunrise again, a quarter of it, in the corner on hover. */
.card > a::before {
  content: '';
  position: absolute;
  inset: auto -40% -60% auto;
  width: 260px; height: 260px;
  background: radial-gradient(circle at 50% 50%, rgba(255, 122, 24, .16), transparent 68%);
  opacity: 0;
  transition: opacity .3s var(--ease);
}

.card > a:hover {
  transform: translateY(-4px);
  border-color: rgba(210, 69, 10, .3);
  box-shadow: var(--shadow-md);
}
.card > a:hover::before { opacity: 1; }

.card__n {
  display: block;
  font-family: var(--display);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--flare-ink);
  margin-bottom: 1rem;
}

.card__t { font-size: 1.3rem; margin-bottom: .5rem; position: relative; }
.card__l { color: var(--body); margin-bottom: 1.4rem; position: relative; }

.card__go {
  font-family: var(--display);
  font-size: .85rem;
  font-weight: 600;
  color: var(--flare-ink);
  position: relative;
}
.card__go::after { content: ' →'; transition: margin .2s var(--ease); }
.card > a:hover .card__go::after { margin-left: .3rem; }

/* --------------------------------------------------------------------------
   Panel
   -------------------------------------------------------------------------- */

.panel {
  background: linear-gradient(160deg, #fff, var(--page-2));
  border: 1px solid var(--line);
  border-radius: var(--round-lg);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.panel::before {
  content: '';
  position: absolute;
  inset: -60% -30% auto auto;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(255, 122, 24, .13), transparent 66%);
  pointer-events: none;
}

.panel__t { font-size: 1.25rem; position: relative; }
.panel > p { position: relative; }

.panel__facts { margin: 1.5rem 0 0; display: grid; gap: .85rem; position: relative; }
.panel__facts > div { display: flex; justify-content: space-between; gap: 1rem; align-items: baseline;
  padding-bottom: .85rem; border-bottom: 1px solid var(--line-soft); }
.panel__facts > div:last-child { border-bottom: 0; padding-bottom: 0; }
.panel__facts dt { font-size: .88rem; color: var(--dim); margin: 0; }
.panel__facts dd { margin: 0; font-family: var(--display); font-size: .95rem; color: var(--ink); text-align: right; }

.panel__list { list-style: none; margin: 1.25rem 0 0; padding: 0; position: relative; display: grid; gap: .85rem; }
.panel__list li { padding-left: 1.85rem; position: relative; font-size: .98rem; }
.panel__list li::before {
  content: '';
  position: absolute;
  left: 0; top: .55em;
  width: 11px; height: 6px;
  border-left: 2px solid var(--flare-deep);
  border-bottom: 2px solid var(--flare-deep);
  transform: rotate(-45deg);
}

/* --------------------------------------------------------------------------
   Chips
   -------------------------------------------------------------------------- */

.chips { list-style: none; margin: 0 0 1.25rem; padding: 0; display: flex; flex-wrap: wrap; gap: .6rem; }
.chips--center { justify-content: center; margin-inline: auto; max-width: 900px; }

.chips li {
  font-size: .88rem;
  padding: .5rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel);
  color: var(--body);
  box-shadow: var(--shadow-sm);
}

.chips--lg li { font-size: .95rem; padding: .65rem 1.25rem; }

/* --------------------------------------------------------------------------
   Steps
   -------------------------------------------------------------------------- */

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  counter-reset: step;
}

.steps__item {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--round-lg);
  box-shadow: var(--shadow-sm);
  padding: 1.75rem;
  position: relative;
}

.steps__n {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem; height: 2.4rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff9440, #f26b0c);
  color: #2b1100;
  font-family: var(--display);
  font-weight: 700;
  font-size: .95rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-flare);
}

.steps__t { font-size: 1.1rem; margin-bottom: .35rem; }
.steps__item p { margin: 0; font-size: .96rem; }

/* --------------------------------------------------------------------------
   Ticks
   -------------------------------------------------------------------------- */

.ticks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem 2.5rem;
}

.ticks li { padding-left: 2.5rem; position: relative; }

.ticks li::before {
  content: '';
  position: absolute;
  left: 0; top: .1em;
  width: 1.6rem; height: 1.6rem;
  border-radius: 50%;
  border: 1px solid rgba(210, 69, 10, .28);
  background: var(--flare-wash);
}

.ticks li::after {
  content: '';
  position: absolute;
  left: .48rem; top: .55em;
  width: 9px; height: 5px;
  border-left: 2px solid var(--flare-deep);
  border-bottom: 2px solid var(--flare-deep);
  transform: rotate(-45deg);
}

.ticks h3 { font-size: 1.05rem; margin-bottom: .3rem; }
.ticks p { margin: 0; font-size: .96rem; }

/* --------------------------------------------------------------------------
   Reasons
   -------------------------------------------------------------------------- */

.reasons {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--round-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.reasons__item {
  background: var(--panel);
  padding: 2rem 1.75rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: background .22s var(--ease);
}
.reasons__item:hover { background: var(--page-2); }

.reasons__n {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 700;
  color: rgba(210, 69, 10, .55);
  line-height: 1.2;
  flex: none;
}

.reasons__t { font-size: 1.12rem; margin-bottom: .35rem; }
.reasons__item p { margin: 0; font-size: .97rem; }

.bonus {
  margin: 2rem 0 0;
  padding: 1.5rem 1.75rem;
  border: 1px dashed rgba(210, 69, 10, .4);
  border-radius: var(--round-lg);
  background: var(--flare-wash);
  color: var(--body);
}

.bonus__tag {
  display: block;
  font-family: var(--display);
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--flare-ink);
  margin-bottom: .4rem;
}

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */

.faq { display: grid; gap: .75rem; }

.faq__item {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--round);
  box-shadow: var(--shadow-sm);
  padding: 0 1.5rem;
}

.faq__item summary {
  font-family: var(--display);
  font-weight: 600;
  color: var(--ink);
  padding: 1.25rem 2rem 1.25rem 0;
  cursor: pointer;
  list-style: none;
  position: relative;
}

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

.faq__item summary::after {
  content: '';
  position: absolute;
  right: 0; top: 1.65rem;
  width: 9px; height: 9px;
  border-right: 2px solid var(--flare-deep);
  border-bottom: 2px solid var(--flare-deep);
  transform: rotate(45deg);
  transition: transform .22s var(--ease);
}

.faq__item[open] summary::after { transform: rotate(-135deg); }
.faq__item p { margin: 0 0 1.35rem; font-size: .98rem; }

/* --------------------------------------------------------------------------
   CTA band
   -------------------------------------------------------------------------- */

.band {
  padding-block: clamp(3rem, 6vw, 5rem);
  background:
    radial-gradient(ellipse 70% 140% at 50% 120%, rgba(255, 143, 51, .18), transparent 70%),
    var(--page);
  border-block: 1px solid var(--line);
}

.band__in {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
}

.band__title { font-size: clamp(1.6rem, 3.2vw, 2.3rem); margin-bottom: .35rem; }
.band__lead { margin: 0; max-width: 52ch; }
.band__acts { display: flex; flex-wrap: wrap; gap: .75rem; }

/* --------------------------------------------------------------------------
   Page heads
   -------------------------------------------------------------------------- */

.pagehead { position: relative; padding-block: clamp(3rem, 7vw, 5.5rem) clamp(2rem, 4vw, 3.5rem); }
.pagehead__in { position: relative; z-index: 1; max-width: 780px; }
.pagehead__title { font-size: clamp(2rem, 4.8vw, 3.4rem); font-weight: 700; }
.pagehead__lead { font-size: 1.1rem; margin: 0; }
.pagehead--doc { border-bottom: 1px solid var(--line); }

.crumbs {
  display: flex;
  gap: .6rem;
  font-size: .85rem;
  color: var(--dim);
  margin-bottom: 1.25rem;
  align-items: center;
}
.crumbs a { color: var(--body); text-decoration: none; }
.crumbs a:hover { color: var(--flare-ink); }

/* --------------------------------------------------------------------------
   Jump nav
   -------------------------------------------------------------------------- */

.jump {
  position: sticky;
  top: 5rem;
  z-index: 40;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(12px);
  border-block: 1px solid var(--line);
}

.jump__in {
  display: flex;
  gap: 1.75rem;
  overflow-x: auto;
  padding-block: .9rem;
  scrollbar-width: none;
}
.jump__in::-webkit-scrollbar { display: none; }

.jump a {
  font-family: var(--display);
  font-size: .88rem;
  color: var(--dim);
  text-decoration: none;
  white-space: nowrap;
}
.jump a:hover { color: var(--flare-ink); }

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */

.contact {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

@media (max-width: 900px) { .contact { grid-template-columns: 1fr; } }

.contact__facts { margin: 0 0 2rem; display: grid; gap: 1.1rem; }
.contact__facts > div { display: grid; gap: .2rem; }
.contact__facts dt {
  font-family: var(--display);
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--dim);
}
.contact__facts dd { margin: 0; color: var(--ink); }
.stack { display: block; }

.desk-state { display: flex; align-items: center; gap: .6rem; font-size: .95rem; margin-bottom: 1.5rem; }

.dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--dim);
  box-shadow: 0 0 0 3px rgba(117, 124, 133, .16);
  flex: none;
}
.dot--on { background: var(--ok); box-shadow: 0 0 0 3px rgba(21, 128, 61, .16); }

.aside-note {
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--round);
  background: var(--page-2);
}
.aside-note h2 { font-size: .95rem; margin-bottom: .75rem; }
.aside-note ul { margin: 0; padding-left: 1.1rem; font-size: .93rem; }
.aside-note li { margin-bottom: .4rem; }

.formcard {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--round-lg);
  box-shadow: var(--shadow-md);
  padding: clamp(1.5rem, 3.5vw, 2.5rem);
}
.formcard__t { font-size: 1.4rem; margin-bottom: .3rem; }
.formcard__l { color: var(--dim); font-size: .95rem; margin-bottom: 2rem; }

/* --------------------------------------------------------------------------
   The desk form
   -------------------------------------------------------------------------- */

.desk__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

@media (max-width: 620px) { .desk__grid { grid-template-columns: 1fr; } }

.field { margin: 0; display: grid; gap: .45rem; }
.field--wide { grid-column: 1 / -1; }

.field label {
  font-family: var(--display);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--body);
}

.req { color: var(--flare-ink); }

.field input,
.field textarea,
.field select {
  width: 100%;
  font: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(20, 22, 26, .18);
  border-radius: 10px;
  padding: .85rem 1rem;
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}

.field textarea { resize: vertical; min-height: 8rem; line-height: 1.6; }

.field input::placeholder,
.field textarea::placeholder { color: #9aa1a9; }

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--flare-deep);
  box-shadow: 0 0 0 3px rgba(255, 122, 24, .18);
}

.field.is-bad input,
.field.is-bad textarea { border-color: var(--bad); }

.field__fault { font-size: .84rem; color: var(--bad); min-height: 0; }
.field__fault:empty { display: none; }

/* Native selects cannot be styled reliably, so the arrow is drawn on a wrapper
   and the control itself made transparent. */
.select { position: relative; display: block; }
.select::after {
  content: '';
  position: absolute;
  right: 1.1rem; top: 50%;
  width: 8px; height: 8px;
  margin-top: -6px;
  border-right: 2px solid var(--flare-deep);
  border-bottom: 2px solid var(--flare-deep);
  transform: rotate(45deg);
  pointer-events: none;
}
.select select { appearance: none; -webkit-appearance: none; padding-right: 2.6rem; }

/* The honeypot. Off-screen rather than display:none — some bots skip anything
   explicitly hidden, and that is the point of it being here. */
.trap {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px; overflow: hidden;
}

.human {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--round);
  background: var(--page-2);
}

/* The CAPTCHA is drawn on its own light ground (see inc/captcha.php), so it
   needs a border to read as a distinct object on the form card. */
.human__img { border-radius: 8px; border: 1px solid var(--line); }
.human__answer { flex: 1 1 12rem; }

.human__again {
  font: inherit;
  font-size: .82rem;
  color: var(--flare-ink);
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: .2em;
}

.desk__foot {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
}

.desk__fine { margin: 0; font-size: .85rem; color: var(--dim); flex: 1 1 16rem; }

.desk[aria-busy="true"] { opacity: .7; pointer-events: none; }

.note {
  margin: 0 0 1.5rem;
  padding: .95rem 1.15rem;
  border-radius: 10px;
  font-size: .95rem;
  border: 1px solid var(--line);
  background: var(--page-2);
  color: var(--ink);
}
.note[hidden] { display: none; }
.note--ok { border-color: rgba(21, 128, 61, .35); background: rgba(21, 128, 61, .07); }
.note--fault { border-color: rgba(194, 50, 31, .35); background: rgba(194, 50, 31, .06); }
.note strong { color: var(--flare-ink); font-family: var(--display); letter-spacing: .04em; }

/* --------------------------------------------------------------------------
   Documents (privacy, terms)
   -------------------------------------------------------------------------- */

.slab--doc { padding-top: clamp(2.5rem, 5vw, 4rem); }

.doc {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

@media (max-width: 900px) { .doc { grid-template-columns: 1fr; } }

.doc__toc {
  position: sticky;
  top: 7rem;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--round);
  background: var(--panel);
  box-shadow: var(--shadow-sm);
  font-size: .9rem;
}

@media (max-width: 900px) { .doc__toc { position: static; } }

.doc__toc h2 {
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--flare-ink);
  margin-bottom: .9rem;
}

/* The section headings carry their own numbers, so the contents list does not
   repeat them — an ordered list here drifts out of step the moment an
   unnumbered preamble section is added. */
.doc__toc ul { margin: 0; padding: 0; list-style: none; display: grid; gap: .5rem; }
.doc__toc a { color: var(--body); text-decoration: none; }
.doc__toc a:hover { color: var(--flare-ink); }

.doc__body { max-width: 72ch; }
.doc__body h2 { font-size: 1.45rem; margin-top: 2.75rem; scroll-margin-top: 7rem; }
.doc__body h3 { font-size: 1.05rem; margin-top: 1.9rem; color: var(--ink); }
.doc__body ul { padding-left: 1.3rem; }
.doc__body li { margin-bottom: .5rem; }

.doc__lead { font-size: 1.1rem; color: var(--ink); }

.doc__short {
  padding: .85rem 1.15rem;
  border-left: 2px solid var(--flare);
  background: var(--flare-wash);
  border-radius: 0 8px 8px 0;
  font-size: .96rem;
}

.doc__summary { margin: 1.5rem 0; display: grid; gap: 1.25rem; }
.doc__summary dt { font-family: var(--display); font-weight: 600; color: var(--ink); }
.doc__summary dd { margin: .3rem 0 0; font-size: .97rem; }

.doc__tablewrap {
  overflow-x: auto;
  margin: 1.5rem 0;
  border: 1px solid var(--line);
  border-radius: var(--round);
  background: var(--panel);
}

.doc__table { border-collapse: collapse; width: 100%; min-width: 640px; font-size: .92rem; }
.doc__table caption { text-align: left; padding: 1rem 1.25rem; color: var(--dim); font-size: .85rem; }
.doc__table th, .doc__table td { padding: .85rem 1.25rem; text-align: left; vertical-align: top;
  border-top: 1px solid var(--line); }
.doc__table thead th { color: var(--ink); font-family: var(--display); font-size: .8rem;
  letter-spacing: .1em; text-transform: uppercase; background: var(--page-2); }
.doc__table tbody th { font-weight: 500; color: var(--ink); }

.doc__address { font-style: normal; display: grid; gap: .15rem; margin: 1rem 0 0; color: var(--ink); }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.foot {
  border-top: 1px solid var(--line);
  background: var(--page-2);
  padding-top: clamp(3rem, 6vw, 4.5rem);
}

.foot__grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 2.5rem;
  padding-bottom: 3rem;
}

@media (max-width: 900px) { .foot__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .foot__grid { grid-template-columns: 1fr; } }

.foot__brand img { width: auto; height: 34px; margin-bottom: 1.25rem; }
.foot__line { font-size: .93rem; color: var(--dim); max-width: 42ch; }

.foot__desk { display: flex; align-items: center; flex-wrap: wrap; gap: .55rem; font-size: .88rem; margin: 0; }
.foot__desk em { font-style: normal; color: var(--dim); flex-basis: 100%; padding-left: 1.1rem; }

.foot__col h2 {
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--flare-ink);
  margin-bottom: 1.1rem;
}

.foot__col ul { list-style: none; margin: 0 0 1.25rem; padding: 0; display: grid; gap: .55rem; }
.foot__col a { color: var(--body); text-decoration: none; font-size: .93rem; }
.foot__col a:hover { color: var(--flare-ink); }

.foot__only { font-size: .85rem; color: var(--dim); margin: 0 0 1rem; max-width: 26ch; }

.foot__address { font-style: normal; display: grid; gap: .1rem; font-size: .9rem; color: var(--dim); }
.foot__social { display: flex; gap: 1rem; margin: 1rem 0 0; }

.foot__base {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  padding-block: 1.5rem;
  border-top: 1px solid var(--line);
  font-size: .85rem;
  color: var(--dim);
}
.foot__base p { margin: 0; }
.foot__legal { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.foot__legal a { color: var(--dim); text-decoration: none; }
.foot__legal a:hover { color: var(--flare-ink); }

/* --------------------------------------------------------------------------
   Reveal on scroll
   -------------------------------------------------------------------------- */

/* Only applied once the script confirms it can observe; without JavaScript the
   attribute is inert and everything is visible from the start. */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
  transition-delay: calc(var(--i, 0) * 60ms);
}

.js [data-reveal].is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js [data-reveal] { opacity: 1; transform: none; transition: none; }
  .ticker__track { animation: none; }
  .btn:hover, .card > a:hover { transform: none; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
