/* ==========================================================================
   Kisler IT Consulting — style.css
   Design language: light bands, navy display type with tight tracking,
   periwinkle-blue action color, coral hover accent, blue-tinted shadows.
   ========================================================================== */

/* ---------- Fonts (self-hosted) ---------- */

@font-face {
  font-family: "General Sans";
  src: url("../assets/fonts/GeneralSans-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "General Sans";
  src: url("../assets/fonts/GeneralSans-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "General Sans";
  src: url("../assets/fonts/GeneralSans-Semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../assets/fonts/Inter-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../assets/fonts/Inter-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../assets/fonts/Inter-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* ---------- Tokens ---------- */

:root {
  /* brand */
  --navy: #1f1f47;
  --body-ink: #3d3d5c;
  --muted: rgba(61, 61, 92, 0.6);
  --blue: #576ddb;
  --blue-hover: #3d52b8;
  --coral: #f2545b;
  --green: #11d483;

  /* surfaces */
  --band-a: #f9f9fb;
  --band-b: #ffffff;
  --card-bg: #f8f9fb;
  --card-border: #eaedf6;
  --hairline: #e3e6e8;

  /* shadows — always blue/purple tinted */
  --shadow-card: 5px 5px 20px 0 rgba(71, 92, 133, 0.1),
    0 30px 60px 0 rgba(144, 138, 208, 0.1);
  --shadow-banner: 0 30px 60px rgba(144, 138, 208, 0.1),
    0 5px 20px rgba(71, 92, 133, 0.1);
  --shadow-input: 0 6px 16px 0 rgba(61, 75, 143, 0.15);

  /* type */
  --font-display: "General Sans", ui-sans-serif, system-ui, -apple-system,
    "Segoe UI", sans-serif;
  --font-body: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI",
    sans-serif;

  /* radii */
  --r-md: 0.75rem;
  --r-lg: 1rem;
  --r-xl: 2rem;
  --r-pill: 9999px;
}

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

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.5;
  color: var(--body-ink);
  background: var(--band-a);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.125;
  letter-spacing: -0.04em;
  text-wrap: balance;
  margin: 0;
}

p {
  text-wrap: pretty;
  margin: 0;
}

a {
  color: var(--blue);
  text-decoration: none;
  transition: color 0.3s;
}
a:hover {
  color: var(--blue-hover);
}

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

::selection {
  background: rgba(87, 109, 219, 0.2);
}

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

.container {
  width: 100%;
  max-width: 80rem;
  margin-inline: auto;
  padding-inline: 2rem;
}

@media (max-width: 64rem) {
  .container {
    padding-inline: 1.25rem;
  }
}
@media (max-width: 48rem) {
  .container {
    padding-inline: 1rem;
  }
}

/* Band colors: sections own their background, spacers carry the rhythm */
.band-a {
  background: var(--band-a);
}
.band-b {
  background: var(--band-b);
}

.spacer-lg {
  height: 10rem;
}
.spacer-md {
  height: 7.5rem;
}
.spacer-sm {
  height: 5rem;
}
.spacer-xs {
  height: 2.5rem;
}

@media (max-width: 64rem) {
  .spacer-lg {
    height: 7rem;
  }
  .spacer-md {
    height: 5.5rem;
  }
  .spacer-sm {
    height: 3.5rem;
  }
}
@media (max-width: 48rem) {
  .spacer-lg {
    height: 5rem;
  }
  .spacer-md {
    height: 4rem;
  }
  .spacer-sm {
    height: 2.5rem;
  }
  .spacer-xs {
    height: 1.5rem;
  }
}

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

.h1 {
  font-size: clamp(2.25rem, 4.5vw + 1rem, 3.75rem);
}
.h2 {
  font-size: clamp(1.875rem, 3vw + 0.75rem, 3.25rem);
}
.h3 {
  font-size: 1.125rem;
  letter-spacing: -0.02em;
}

.accent {
  color: var(--blue);
}
.accent-coral {
  color: var(--coral);
}

.lede {
  font-size: clamp(1.0625rem, 0.6vw + 0.9rem, 1.25rem);
  font-weight: 300;
  line-height: 1.45;
  color: var(--body-ink);
}

.section-head {
  max-width: 46rem;
}
.section-head--center {
  margin-inline: auto;
  text-align: center;
}
.section-head .lede {
  margin-top: 1.25rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--blue);
  background: rgba(87, 109, 219, 0.08);
  border: 1px solid rgba(87, 109, 219, 0.18);
  border-radius: var(--r-pill);
  padding: 0.45rem 1rem;
}
.eyebrow svg {
  width: 0.875rem;
  height: 0.875rem;
}

/* ---------- Buttons & links ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  width: fit-content;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
  height: 3rem;
  padding-inline: 1.75rem;
  border: 0;
  border-radius: var(--r-pill);
  background: var(--blue);
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s;
}
.btn:hover {
  background: var(--blue-hover);
  color: #fff;
}
.btn--sm {
  height: 2.75rem;
  font-size: 0.9375rem;
  padding-inline: 1.5rem;
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: -0.01em;
  color: var(--blue);
}
.arrow-link .chev {
  width: 0.4rem;
  height: 0.6rem;
  transition: transform 0.3s;
}
.arrow-link:hover {
  color: var(--blue-hover);
}
.arrow-link:hover .chev {
  transform: translateX(2px);
}

/* ---------- Header ---------- */

.site-header {
  background: var(--band-a);
  z-index: 20;
}
.site-header .container {
  display: flex;
  align-items: center;
  height: 4.5rem;
  gap: 1rem;
}

.logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.125rem;
  letter-spacing: -0.03em;
  color: var(--navy);
  white-space: nowrap;
}
.logo:hover {
  color: var(--navy);
}
.logo .logo-dot {
  color: var(--blue);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: 2.5rem;
}
.site-nav a {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--navy);
  padding: 0.75rem 0.875rem;
  transition: color 0.3s;
}
.site-nav a:hover {
  color: var(--coral);
}

.header-cta {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-size: 0.875rem;
  color: var(--muted);
}
.lang-switch a {
  color: var(--navy);
  opacity: 0.55;
  transition: color 0.3s, opacity 0.3s;
}
.lang-switch a:hover {
  color: var(--coral);
  opacity: 1;
}
.lang-switch .active {
  opacity: 1;
  font-weight: 500;
  cursor: default;
}
.lang-switch .active:hover {
  color: var(--navy);
}

@media (max-width: 56rem) {
  .site-nav {
    display: none;
  }
  .header-cta .btn--sm {
    display: none;
  }
}

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

.hero {
  padding-top: 4.5rem;
}
.hero .container {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: 4rem;
  align-items: center;
}
@media (max-width: 64rem) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero {
    padding-top: 3rem;
  }
}

.hero h1 {
  margin-top: 1.5rem;
}
.hero .lede {
  margin-top: 1.25rem;
  max-width: 34rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.75rem;
  margin-top: 2rem;
}

/* stat row with hairline dividers */
.stat-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 2.75rem;
}
.stat-row .stat {
  padding-block: 0.25rem;
}
.stat-row .divider {
  width: 1px;
  height: 3.5rem;
  background: var(--hairline);
  margin-inline: 1.5rem;
}
.stat .stat-number {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--blue);
  line-height: 1.2;
}
.stat .stat-label {
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--body-ink);
  margin-top: 0.125rem;
}
@media (max-width: 30rem) {
  .stat-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .stat-row .divider {
    display: none;
  }
}

/* hero visual — abstract layered "voice + agents" illustration card */
.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 30rem;
  margin-inline: auto;
  width: 100%;
  filter: drop-shadow(0 20px 60px rgba(144, 138, 208, 0.12))
    drop-shadow(0 5px 20px rgba(144, 138, 208, 0.1));
}
.hero-visual svg {
  width: 100%;
  height: 100%;
}
@media (max-width: 64rem) {
  .hero-visual {
    max-width: 22rem;
  }
}

/* ---------- Logo / trust strip ---------- */

.trust-strip {
  text-align: center;
}
.trust-strip .trust-title {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.logo-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  column-gap: 3.5rem;
  row-gap: 1.25rem;
  margin-top: 1.75rem;
}
.logo-cloud .cloud-logo {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--body-ink);
  opacity: 0.6;
  transition: opacity 0.3s;
  cursor: default;
}
.logo-cloud:hover .cloud-logo {
  opacity: 0.35;
}
.logo-cloud .cloud-logo:hover {
  opacity: 1;
}
.trust-strip .trust-now {
  margin-top: 1.75rem;
  font-size: 1rem;
  color: var(--muted);
}
.trust-strip .trust-now strong {
  font-weight: 500;
  color: var(--body-ink);
}

/* ---------- Service cards ---------- */

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}
@media (max-width: 64rem) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (max-width: 40rem) {
  .card-grid {
    grid-template-columns: 1fr;
  }
}

.card {
  border: 1px solid var(--card-border);
  border-radius: var(--r-lg);
  background: var(--card-bg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  transition: box-shadow 0.3s, transform 0.3s;
}
.card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}

.card .card-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(87, 109, 219, 0.1);
  color: var(--blue);
}
.card .card-icon svg {
  width: 1.375rem;
  height: 1.375rem;
}
.card h3 {
  font-size: 1.1875rem;
}
.card p {
  font-size: 1rem;
  line-height: 1.45;
}
.card .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 0.5rem;
}
.card .tag {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--body-ink);
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: var(--r-pill);
  padding: 0.3rem 0.75rem;
}

/* ---------- Stat tiles (gradient border) ---------- */

/* Centered + evenly distributed for any number of tiles: each tile grows
   from the same basis, so 3, 4 or 5 tiles always share the row equally and
   any leftover row stays centered. */
.tile-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.tile-grid > * {
  /* one column of the old 4-up grid: (76rem container - 3 x 1.5rem gap) / 4 */
  flex: 0 1 17.875rem;
  min-width: 0;
}
@media (max-width: 64rem) {
  .tile-grid > * {
    flex-basis: 20rem;
  }
}
@media (max-width: 30rem) {
  .tile-grid > * {
    flex-basis: 100%;
  }
}

.stat-tile {
  position: relative;
  overflow: hidden;
  /* tiles stretch to the tallest label: the number stays pinned to the top,
     the label centres in whatever space is left below it. */
  display: flex;
  flex-direction: column;
  border: 1px solid transparent;
  border-radius: var(--r-lg);
  padding: 2rem 1.75rem;
  background: linear-gradient(var(--band-a), var(--band-a)) padding-box,
    linear-gradient(135deg, rgba(184, 194, 224, 1) 0%, rgba(234, 237, 246, 0) 100%)
      border-box,
    linear-gradient(var(--card-border), var(--card-border)) border-box;
}
/* Accent cycles every four tiles, so a 4th (or 5th) tile keeps the rhythm. */
.stat-tile:nth-child(4n + 2) {
  background: linear-gradient(var(--band-a), var(--band-a)) padding-box,
    linear-gradient(135deg, rgba(224, 184, 184, 1) 0%, rgba(234, 237, 246, 0) 100%)
      border-box,
    linear-gradient(var(--card-border), var(--card-border)) border-box;
}
.stat-tile:nth-child(4n + 3) {
  background: linear-gradient(var(--band-a), var(--band-a)) padding-box,
    linear-gradient(135deg, rgba(184, 224, 207, 1) 0%, rgba(234, 237, 246, 0) 100%)
      border-box,
    linear-gradient(var(--card-border), var(--card-border)) border-box;
}
.stat-tile:nth-child(4n) {
  background: linear-gradient(var(--band-a), var(--band-a)) padding-box,
    linear-gradient(135deg, rgba(224, 211, 184, 1) 0%, rgba(234, 237, 246, 0) 100%)
      border-box,
    linear-gradient(var(--card-border), var(--card-border)) border-box;
}
.stat-tile::before {
  content: "";
  position: absolute;
  top: -6rem;
  left: -6rem;
  width: 18rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #c1c9f6;
  opacity: 0.08;
  filter: blur(48px);
  pointer-events: none;
}
.stat-tile .tile-number {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 2.5vw + 1rem, 3rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  color: var(--blue);
  line-height: 1.1;
}
.stat-tile .tile-label {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  margin-top: 0.625rem;
  font-size: 0.9875rem;
  line-height: 1.4;
  color: var(--body-ink);
}

/* pull-quote line under the tiles */
.pull-quote {
  margin-top: 4.5rem;
  max-width: 52rem;
  margin-inline: auto;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 1.5vw + 0.9rem, 1.875rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.3;
  color: var(--navy);
}
.pull-quote .accent-coral {
  font-weight: 500;
}
.pull-quote-sub {
  margin-top: 1.25rem;
  text-align: center;
  color: var(--muted);
  font-size: 1rem;
}

/* ---------- Process strip ---------- */

.process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}
@media (max-width: 48rem) {
  .process {
    grid-template-columns: 1fr;
  }
}
.step {
  text-align: center;
  padding-inline: 1rem;
}
.step .step-num {
  width: 3rem;
  height: 3rem;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.125rem;
}
.step h3 {
  margin-top: 1.25rem;
  font-size: 1.1875rem;
}
.step p {
  margin-top: 0.5rem;
  font-size: 1rem;
  line-height: 1.45;
}

/* ---------- About ---------- */

.about .container {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  gap: 4.5rem;
  align-items: center;
}
@media (max-width: 56rem) {
  .about .container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.portrait {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  max-width: 22rem;
  box-shadow: var(--shadow-card);
  background: linear-gradient(160deg, #eef0fa 0%, #f9f9fb 60%, #eef2f9 100%);
}
.portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* placeholder shown until portrait.jpg exists */
.portrait .portrait-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--blue);
  opacity: 0.7;
}
.portrait .portrait-fallback svg {
  width: 4rem;
  height: 4rem;
}
.portrait .portrait-fallback span {
  font-family: var(--font-display);
  font-size: 0.875rem;
  color: var(--muted);
}

.about-body p + p {
  margin-top: 1rem;
}
.about-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-top: 1.75rem;
}
.about-chips .chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--body-ink);
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: var(--r-pill);
  padding: 0.45rem 0.9rem;
}
.about-chips .chip svg {
  width: 0.875rem;
  height: 0.875rem;
  color: var(--green);
}

/* ---------- CTA banner ---------- */

.cta-banner {
  border: 1px solid transparent;
  border-radius: var(--r-lg);
  background: linear-gradient(var(--band-a), var(--band-a)) padding-box,
    linear-gradient(97.6deg, rgba(234, 237, 246, 0.2) 4%, rgba(119, 165, 245, 0.35) 102%)
      border-box,
    linear-gradient(#ebeef4, #ebeef4) border-box;
  box-shadow: var(--shadow-banner);
  padding: 3.5rem 3rem;
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 3rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}
@media (max-width: 56rem) {
  .cta-banner {
    grid-template-columns: 1fr;
    padding: 2.5rem 1.75rem;
  }
}
.cta-banner::after {
  content: "";
  position: absolute;
  right: -8rem;
  bottom: -10rem;
  width: 24rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #c1c9f6;
  opacity: 0.12;
  filter: blur(64px);
  pointer-events: none;
}
.cta-banner h2 {
  font-size: clamp(1.75rem, 2vw + 1rem, 2.5rem);
  letter-spacing: -0.03em;
}
.cta-banner .lede {
  margin-top: 1rem;
}
.cta-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  z-index: 1;
}
.cta-contact .contact-line {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--navy);
}
.cta-contact .contact-line svg {
  width: 1.125rem;
  height: 1.125rem;
  color: var(--blue);
  flex-shrink: 0;
}
.cta-contact .contact-line a {
  color: var(--navy);
}
.cta-contact .contact-line a:hover {
  color: var(--coral);
}
.cta-contact .btn {
  margin-top: 0.5rem;
}
/* decoy text inside contact addresses — never rendered, never copied, poisons
   harvesters that strip tags without evaluating CSS */
.nospam {
  display: none;
}

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

.site-footer {
  background: var(--band-a);
  padding: 5rem 0 3rem;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 3rem;
}
.footer-brand {
  max-width: 20rem;
}
.footer-brand p {
  margin-top: 0.875rem;
  font-size: 0.9375rem;
  color: var(--muted);
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy);
  margin: 0 0 1rem;
}
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}
.footer-col a {
  font-size: 0.875rem;
  color: rgba(31, 31, 71, 0.75);
}
.footer-col a:hover {
  color: var(--coral);
}
.footer-col li {
  font-size: 0.875rem;
  color: rgba(31, 31, 71, 0.75);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 4rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--hairline);
  font-size: 0.875rem;
  color: var(--muted);
}
.footer-bottom .legal-links {
  display: flex;
  gap: 1.5rem;
}
.footer-bottom a {
  color: rgba(31, 31, 71, 0.75);
}
.footer-bottom a:hover {
  color: var(--coral);
}

/* ---------- Legal pages ---------- */

.legal-page {
  max-width: 44rem;
  margin-inline: auto;
  padding-block: 4rem 6rem;
}
.legal-page h1 {
  font-size: 2.25rem;
}
.legal-page h2 {
  font-size: 1.375rem;
  letter-spacing: -0.02em;
  margin-top: 2.5rem;
}
.legal-page p,
.legal-page ul {
  margin-top: 0.875rem;
  font-size: 1rem;
  line-height: 1.6;
}
.legal-page .placeholder {
  background: rgba(242, 84, 91, 0.08);
  border: 1px dashed var(--coral);
  border-radius: 0.375rem;
  padding: 0.05rem 0.4rem;
  color: var(--coral);
  font-family: var(--font-display);
  font-size: 0.9375rem;
}

/* ---------- Scroll reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  filter: blur(3px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
  filter: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
  .card,
  .arrow-link .chev {
    transition: none;
  }
}
