/* ==========================================================================
   floorplaneditor.com — Landing page
   Design tokens mirror ../style.css (the web editor) so the marketing page and
   the product read as one product. No webfonts, no external requests.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Surfaces + ink (from the editor) */
  --bg:            #f4f5f7;
  --panel:         #ffffff;
  --panel-2:       #fbfcfe;
  --ink:           #1d2330;
  --ink-soft:      #4f5a6b;   /* 6.98:1 on --panel, 6.40:1 on --bg */
  --line:          #e2e5ea;
  --line-strong:   #c9ced6;

  /* Brand accent (editor --accent) + an accessible action variant */
  --accent:        #2f6fed;
  --accent-strong: #2560d8;   /* white on this = 5.61:1 */
  --accent-hover:  #1d51bd;
  --accent-ink:    #ffffff;
  --accent-soft:   #eaf1ff;

  /* Plan drawing (mirrors the editor's SVG palette) */
  --wall-outer:    #1d2330;
  --wall-inner:    #4a5260;
  --window-pane:   #2f6fed;
  --door-arc:      #8a6d3b;
  --room-ink:      #2a3140;
  --area-ink:      #9c5c06;   /* editor uses #ff9500; darkened for 5.32:1 text contrast */

  /* Depth */
  --shadow-sm: 0 1px 2px rgba(20,30,55,.06), 0 2px 8px rgba(20,30,55,.06);
  --shadow:    0 1px 2px rgba(20,30,55,.06), 0 8px 24px rgba(20,30,55,.08);
  --shadow-lg: 0 2px 6px rgba(20,30,55,.06), 0 26px 60px rgba(20,30,55,.14);
  --ring:      0 0 0 3px rgba(47,111,237,.34);

  --radius:    10px;
  --radius-lg: 18px;
  --radius-xl: 24px;

  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial,
          "Helvetica Neue", sans-serif;

  /* Fluid type scale */
  --step--1: clamp(0.8125rem, 0.79rem + 0.12vw, 0.875rem);
  --step-0:  clamp(1rem, 0.97rem + 0.16vw, 1.0625rem);
  --step-1:  clamp(1.0625rem, 1.01rem + 0.28vw, 1.1875rem);
  --step-2:  clamp(1.1875rem, 1.11rem + 0.4vw, 1.375rem);
  --step-3:  clamp(1.5rem, 1.3rem + 1vw, 2.125rem);
  --step-4:  clamp(2rem, 1.55rem + 2.2vw, 3.25rem);

  --gutter:  clamp(1.25rem, 4vw, 2rem);
  --section-y: clamp(3.75rem, 7vw, 6.5rem);

  color-scheme: light dark;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg:            #0f1420;
    --panel:         #1a2130;
    --panel-2:       #202839;
    --ink:           #e8ecf4;
    --ink-soft:      #a7b0c0;   /* 7.37:1 on --panel, 8.42:1 on --bg */
    --line:          #2a3345;
    --line-strong:   #3a4560;

    --accent:        #7ea6ff;
    --accent-strong: #5b8dff;   /* --accent-ink on this = 6.04:1 */
    --accent-hover:  #7ea6ff;
    --accent-ink:    #0b1020;
    --accent-soft:   #1b2740;

    --wall-outer:    #dbe2ef;
    --wall-inner:    #93a0b8;
    --window-pane:   #7ea6ff;
    --door-arc:      #c9a566;
    --room-ink:      #e8ecf4;
    --area-ink:      #ffb35c;   /* 9.09:1 on --panel */

    --shadow-sm: 0 1px 2px rgba(0,0,0,.4);
    --shadow:    0 2px 6px rgba(0,0,0,.42), 0 10px 30px rgba(0,0,0,.34);
    --shadow-lg: 0 4px 10px rgba(0,0,0,.45), 0 30px 70px rgba(0,0,0,.5);
    --ring:      0 0 0 3px rgba(126,166,255,.42);
  }
}

/* --------------------------------------------------------------------------
   2. Base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

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

h1, h2, h3 { margin: 0; color: var(--ink); line-height: 1.15; letter-spacing: -0.02em; text-wrap: balance; }
h1 { font-size: var(--step-4); font-weight: 800; letter-spacing: -0.033em; }
h2 { font-size: var(--step-3); font-weight: 750; }
h3 { font-size: var(--step-1); font-weight: 700; letter-spacing: -0.012em; }
p  { margin: 0; text-wrap: pretty; }
ul, ol { margin: 0; padding: 0; list-style: none; }

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

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

.skip-link {
  position: absolute; left: 12px; top: -64px; z-index: 100;
  background: var(--panel); color: var(--ink);
  border: 1px solid var(--line-strong); border-radius: var(--radius);
  padding: 10px 16px; font-weight: 650; box-shadow: var(--shadow);
  transition: top .18s ease;
}
.skip-link:focus { top: 12px; text-decoration: none; }

.wrap {
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wrap-narrow { max-width: 820px; }

.section { padding-block: var(--section-y); }
.section-alt { background: var(--panel-2); border-block: 1px solid var(--line); }
@media (prefers-color-scheme: dark) { .section-alt { background: #131a27; } }

.section-head { max-width: 62ch; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.section-sub { margin-top: .9rem; color: var(--ink-soft); font-size: var(--step-1); }

.eyebrow {
  margin: 0 0 .85rem;
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

/* --------------------------------------------------------------------------
   3. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font: inherit; font-weight: 650; font-size: var(--step-0);
  line-height: 1.2;
  padding: .85rem 1.4rem;
  border-radius: 12px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color .16s ease, border-color .16s ease,
              box-shadow .16s ease, transform .12s ease;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }
.btn:focus-visible { outline: none; box-shadow: var(--ring); }

.btn-cta {
  background: var(--accent-strong);
  color: var(--accent-ink);
  border-color: var(--accent-strong);
  box-shadow: 0 1px 2px rgba(20,30,55,.10), 0 10px 22px rgba(37,96,216,.26);
}
.btn-cta:hover { background: var(--accent-hover); border-color: var(--accent-hover); }
@media (prefers-color-scheme: dark) {
  .btn-cta { box-shadow: 0 1px 2px rgba(0,0,0,.4), 0 10px 26px rgba(91,141,255,.24); }
}

.btn-ghost {
  background: var(--panel);
  color: var(--ink);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-sm);
}
.btn-ghost:hover { background: var(--accent-soft); border-color: var(--accent); }

.btn-sm { padding: .58rem 1rem; font-size: var(--step--1); border-radius: 10px; }
.btn-block { display: flex; width: 100%; }

/* --------------------------------------------------------------------------
   4. Header
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  border-bottom: 1px solid var(--line);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
}
@supports not (background: color-mix(in srgb, red 50%, blue)) {
  .site-header { background: var(--bg); }
}

.header-inner {
  display: flex; align-items: center; gap: clamp(1rem, 3vw, 2.5rem);
  min-height: 66px;
}

.brand { display: inline-flex; align-items: center; gap: .6rem; color: var(--ink); }
.brand:hover { text-decoration: none; }
.brand-mark { display: block; width: 32px; height: 32px; flex: 0 0 auto; }
.brand-mark svg { display: block; width: 100%; height: 100%; border-radius: 8px; }
.brand-word {
  font-size: 1.0625rem; font-weight: 500; letter-spacing: -.015em; color: var(--ink);
}
.brand-word strong { font-weight: 800; }

.site-nav { display: flex; align-items: center; gap: clamp(.9rem, 2vw, 1.6rem); margin-inline-start: auto; }
.site-nav a {
  color: var(--ink-soft); font-size: var(--step--1); font-weight: 600;
  padding: .35rem 0; border-bottom: 2px solid transparent;
}
.site-nav a:hover { color: var(--ink); text-decoration: none; border-bottom-color: var(--accent); }

.header-cta { margin-inline-start: auto; }
.site-nav + .header-cta { margin-inline-start: 0; }

@media (max-width: 900px) {
  .site-nav { display: none; }
}

/* --------------------------------------------------------------------------
   5. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  padding-block: clamp(3rem, 6.5vw, 5.75rem) clamp(3.5rem, 7vw, 6rem);
  overflow: hidden;
}
/* Gradient mesh — pure CSS, no assets, no layout impact. */
.hero::before {
  content: "";
  position: absolute; inset: -30% -10% auto -10%; height: 130%;
  z-index: 0; pointer-events: none;
  background:
    radial-gradient(46% 42% at 14% 16%, rgba(47,111,237,.15), transparent 68%),
    radial-gradient(40% 40% at 88% 6%,  rgba(255,149,0,.11), transparent 66%),
    radial-gradient(52% 48% at 72% 78%, rgba(47,111,237,.10), transparent 70%);
}
@media (prefers-color-scheme: dark) {
  .hero::before {
    background:
      radial-gradient(46% 42% at 14% 16%, rgba(91,141,255,.20), transparent 68%),
      radial-gradient(40% 40% at 88% 6%,  rgba(255,149,0,.09), transparent 66%),
      radial-gradient(52% 48% at 72% 78%, rgba(91,141,255,.13), transparent 70%);
  }
}

.hero-grid {
  position: relative; z-index: 1;
  display: grid;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
}
@media (min-width: 980px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr); }
}

.hero-copy { max-width: 38rem; }
.lede {
  margin-top: 1.25rem;
  font-size: var(--step-2);
  line-height: 1.55;
  color: var(--ink-soft);
}

.hero-actions {
  display: flex; flex-wrap: wrap; gap: .85rem;
  margin-top: 2rem;
}

.hero-meta {
  display: flex; flex-wrap: wrap; gap: .5rem 1.4rem;
  margin-top: 1.6rem;
  font-size: var(--step--1);
  color: var(--ink-soft);
}
.hero-meta li { display: inline-flex; align-items: center; gap: .45rem; }
.hero-meta li::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); flex: 0 0 auto;
}

/* --- Hero plan card ------------------------------------------------------ */
.hero-visual { position: relative; }

.plan-card {
  position: relative;
  margin: 0;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: clamp(1rem, 2.4vw, 1.75rem);
}
/* Faint construction grid, exactly like the editor canvas. */
.plan-card::before {
  content: "";
  position: absolute; inset: 1px;
  border-radius: calc(var(--radius-xl) - 1px);
  background:
    linear-gradient(var(--line) 1px, transparent 1px) 0 0 / 26px 26px,
    linear-gradient(90deg, var(--line) 1px, transparent 1px) 0 0 / 26px 26px;
  opacity: .55;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(72% 66% at 50% 46%, #000 40%, transparent 100%);
          mask-image: radial-gradient(72% 66% at 50% 46%, #000 40%, transparent 100%);
}

.plan-svg {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 740 / 540;   /* reserves the box → no layout shift */
}

/* Plan geometry */
.fp-outer path { stroke: var(--wall-outer); stroke-width: 9; }
.fp-inner path { stroke: var(--wall-inner); stroke-width: 5.5; }
.fp-glass path { stroke: var(--window-pane); stroke-width: 3; }
.fp-glass-cap path { stroke: var(--wall-outer); stroke-width: 2.6; }
.fp-door  path { stroke: var(--door-arc); stroke-width: 2.2; }
.fp-dim   path { stroke: var(--ink-soft); stroke-width: 1.5; opacity: .85; }

.fp-label text { font-family: var(--font); }
.fp-name    { font-size: 17px; font-weight: 650; fill: var(--room-ink); }
.fp-area    { font-size: 15px; font-weight: 700; fill: var(--area-ink); }
.fp-dim-text{ font-size: 13px; font-weight: 650; fill: var(--ink-soft); }

/* Draw-in animation (CSS only, pathLength="1" normalises every segment) */
.fp-draw { stroke-dasharray: 1; stroke-dashoffset: 1; animation: fpDraw .85s cubic-bezier(.42,0,.2,1) forwards; }
.fp-draw.d1 { animation-delay: .05s; }
.fp-draw.d2 { animation-delay: .18s; }
.fp-draw.d3 { animation-delay: .31s; }
.fp-draw.d4 { animation-delay: .44s; }
.fp-draw.d5 { animation-delay: .60s; }
.fp-draw.d6 { animation-delay: .74s; }

.fp-glass, .fp-glass-cap, .fp-door { opacity: 0; animation: fpFade .5s ease-out 1.30s forwards; }
.fp-label { opacity: 0; animation: fpFade .5s ease-out 1.55s forwards; }
.fp-dim   { opacity: 0; animation: fpFade .5s ease-out 1.72s forwards; }

@keyframes fpDraw { to { stroke-dashoffset: 0; } }
@keyframes fpFade { to { opacity: 1; } }

.plan-legend {
  display: flex; flex-wrap: wrap; gap: .5rem;
  margin-top: clamp(.75rem, 1.6vw, 1.15rem);
  position: relative;
}
.pill {
  font-size: var(--step--1); font-weight: 650;
  color: var(--ink-soft);
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .3rem .75rem;
}

.plan-badge {
  position: absolute; top: -14px; right: 14px; z-index: 2;
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: var(--step--1); font-weight: 700;
  color: var(--ink);
  background: var(--panel);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: .45rem .95rem;
  box-shadow: var(--shadow);
}
.plan-badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #1f9d63; flex: 0 0 auto;
}
@media (max-width: 560px) { .plan-badge { display: none; } }

/* --------------------------------------------------------------------------
   6. Cards (shared)
   -------------------------------------------------------------------------- */
.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: clamp(1.25rem, 2.2vw, 1.75rem);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

/* --------------------------------------------------------------------------
   7. Steps
   -------------------------------------------------------------------------- */
.steps {
  display: grid;
  gap: clamp(1.25rem, 2.4vw, 1.75rem);
  counter-reset: step;
}
@media (min-width: 760px) { .steps { grid-template-columns: repeat(3, 1fr); } }

.step {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: clamp(1.4rem, 2.4vw, 1.9rem);
}
.step-num {
  display: grid; place-items: center;
  width: 38px; height: 38px;
  border-radius: 11px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 1.0625rem; font-weight: 800;
  margin-bottom: 1rem;
}
.step h3 { margin-bottom: .6rem; }
.step p { color: var(--ink-soft); font-size: var(--step--1); line-height: 1.7; }

/* --------------------------------------------------------------------------
   8. Feature grid
   -------------------------------------------------------------------------- */
.features {
  display: grid;
  gap: clamp(1rem, 2vw, 1.4rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 17.5rem), 1fr));
}
.feature:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--line-strong); }
.feature h3 { margin-bottom: .5rem; }
.feature p { color: var(--ink-soft); font-size: var(--step--1); line-height: 1.68; }

.ficon {
  display: grid; place-items: center;
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  margin-bottom: 1rem;
}
.ficon svg { width: 22px; height: 22px; display: block; }

/* --------------------------------------------------------------------------
   9. German-market section
   -------------------------------------------------------------------------- */
/* Four cards: a deliberate 2x2 block, not a 3+1 orphan row. */
.market {
  display: grid;
  gap: clamp(1rem, 2vw, 1.4rem);
  grid-template-columns: 1fr;
}
@media (min-width: 760px) { .market { grid-template-columns: repeat(2, 1fr); } }
.market-card {
  border-inline-start: 3px solid var(--accent);
  padding-inline-start: clamp(1.1rem, 2vw, 1.6rem);
}
.market-card h3 { margin-bottom: .6rem; }
.market-card p { color: var(--ink-soft); font-size: var(--step--1); line-height: 1.7; }

/* --------------------------------------------------------------------------
   10. Pricing
   -------------------------------------------------------------------------- */
.pricing {
  display: grid;
  gap: clamp(1.1rem, 2.2vw, 1.75rem);
  align-items: start;
  max-width: 62rem;
}
@media (min-width: 800px) { .pricing { grid-template-columns: repeat(2, 1fr); } }

.plan { position: relative; padding: clamp(1.5rem, 2.6vw, 2.1rem); }
.plan-featured {
  border-color: var(--accent);
  box-shadow: var(--shadow);
}
.plan-flag {
  position: absolute; top: -.75rem; inset-inline-end: 1.5rem;
  background: var(--accent-strong); color: var(--accent-ink);
  font-size: .75rem; font-weight: 750; letter-spacing: .05em; text-transform: uppercase;
  border-radius: 999px; padding: .28rem .8rem;
}
.plan-name { font-size: var(--step-1); }

.price { display: flex; flex-direction: column; gap: .3rem; margin: 1rem 0 .35rem; }
.price-amount {
  font-size: clamp(2.25rem, 1.9rem + 1.4vw, 3rem);
  font-weight: 800; letter-spacing: -.035em; line-height: 1;
  color: var(--ink);
}
.price-unit { font-size: var(--step--1); color: var(--ink-soft); }
.plan-note { font-size: var(--step--1); color: var(--ink-soft); margin-bottom: 1.35rem; }

.plan-list { margin-top: 1.5rem; display: grid; gap: .6rem; }
.plan-list li {
  position: relative;
  padding-inline-start: 1.7rem;
  font-size: var(--step--1);
  color: var(--ink-soft);
  line-height: 1.55;
}
.plan-list li::before {
  content: "";
  position: absolute; inset-inline-start: 0; top: .42em;
  width: 1rem; height: .58rem;
  border-inline-start: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}

.pricing-foot {
  margin-top: clamp(1.5rem, 3vw, 2.25rem);
  max-width: 62ch;
  font-size: var(--step--1);
  color: var(--ink-soft);
}

/* --------------------------------------------------------------------------
   11. FAQ
   -------------------------------------------------------------------------- */
.faq { display: grid; gap: .75rem; }
.faq-item {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq-item summary {
  display: flex; align-items: flex-start; gap: 1rem;
  list-style: none; cursor: pointer;
  padding: 1.15rem clamp(1.1rem, 2.2vw, 1.6rem);
  font-size: var(--step-1); font-weight: 650;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  flex: 0 0 auto;
  width: .58rem; height: .58rem;
  margin-top: .5em; margin-inline-start: auto;
  border-inline-end: 2px solid var(--ink-soft);
  border-bottom: 2px solid var(--ink-soft);
  transform: rotate(45deg);
  transition: transform .2s ease;
}
.faq-item[open] summary::after { transform: rotate(-135deg); }
.faq-item summary:hover { background: var(--panel-2); }
.faq-item[open] summary { color: var(--accent-strong); }

.faq-body {
  padding: 0 clamp(1.1rem, 2.2vw, 1.6rem) 1.35rem;
  display: grid; gap: .8rem;
}
.faq-body p { color: var(--ink-soft); font-size: var(--step-0); line-height: 1.7; }

/* --------------------------------------------------------------------------
   12. Closing CTA band
   -------------------------------------------------------------------------- */
.cta-band {
  position: relative;
  background:
    radial-gradient(70% 120% at 50% 0%, rgba(255,255,255,.14), transparent 62%),
    linear-gradient(135deg, #23304a 0%, #1d2330 52%, #16283f 100%);
  overflow: hidden;
}
.cta-inner { position: relative; text-align: center; }
.cta-inner h2 { color: #ffffff; }
.cta-inner > p {
  margin: 1.1rem auto 0;
  max-width: 52ch;
  color: #cfd6e4;          /* 10.4:1 on #1d2330 */
  font-size: var(--step-1);
}
.cta-actions { justify-content: center; }
.btn-on-dark {
  background: transparent;
  color: #ffffff;          /* 12.9:1 on the band's mid tone */
  border-color: rgba(255,255,255,.42);
  box-shadow: none;
}
.btn-on-dark:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.7); }

/* --------------------------------------------------------------------------
   13. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--panel);
  border-top: 1px solid var(--line);
  padding-block: clamp(2.75rem, 5vw, 4rem) 1.75rem;
}
.footer-grid {
  display: grid;
  gap: clamp(1.75rem, 4vw, 3rem);
  /* 9.5rem keeps the link columns two-up on a 375px phone instead of one
     very tall stack; the 900px rule takes over on desktop. */
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 9.5rem), 1fr));
}
@media (min-width: 900px) {
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; }
}
.footer-brand .brand { margin-bottom: .9rem; }
.footer-blurb { color: var(--ink-soft); font-size: var(--step--1); max-width: 34ch; }

.footer-head {
  font-size: var(--step--1); font-weight: 750;
  letter-spacing: .07em; text-transform: uppercase;
  color: var(--ink); margin-bottom: .85rem;
}
.footer-col ul { display: grid; gap: .5rem; }
.footer-col a { color: var(--ink-soft); font-size: var(--step--1); }
.footer-col a:hover { color: var(--accent-strong); }
.lang-list a[aria-current="page"] { color: var(--ink); font-weight: 650; }

.footer-bottom {
  display: flex; flex-wrap: wrap; gap: .5rem 1.5rem;
  justify-content: space-between; align-items: center;
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-top: 1.35rem;
  border-top: 1px solid var(--line);
}
.copyright, .footer-fine { color: var(--ink-soft); font-size: var(--step--1); }

/* --------------------------------------------------------------------------
   14. Motion preferences
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .fp-draw { stroke-dasharray: none; stroke-dashoffset: 0; animation: none; }
  .fp-glass, .fp-glass-cap, .fp-door, .fp-label, .fp-dim { opacity: 1; animation: none; }
  .feature:hover { transform: none; }
  .btn:active { transform: none; }
}

/* --------------------------------------------------------------------------
   15. Print
   -------------------------------------------------------------------------- */
@media print {
  .site-header, .cta-band, .hero-actions { display: none; }
  body { background: #fff; color: #000; }
  .card, .step, .faq-item { box-shadow: none; border-color: #999; }
}
