:root {
  --primary: #7A2E6E;
  --accent: #FF2D6F;
  --bg: #0B0B0B;
  --surface: #121212;
  --surface-2: #181818;
  --text: #EAEAEA;
  --muted: #A7A7A7;
  --border: rgba(255, 255, 255, 0.12);
  --border-strong: rgba(255, 45, 111, 0.34);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.48);
  --glow: 0 0 26px rgba(255, 45, 111, 0.4);
  --card-glow: 0 22px 44px -32px rgba(255, 45, 111, 0.16), 0 40px 80px -52px rgba(255, 45, 111, 0.1);
  --read-scale: 1;
  --max: 1180px;
}

html[data-theme="light"] {
  --bg: #F5F5F7;
  --surface: #FFFFFF;
  --surface-2: #ECECF0;
  --text: #151217;
  --muted: #5F5D66;
  --border: rgba(11, 11, 11, 0.12);
  --border-strong: rgba(255, 45, 111, 0.32);
  --shadow: 0 28px 80px rgba(27, 18, 28, 0.12);
  --glow: 0 0 28px rgba(255, 45, 111, 0.28);
  --card-glow: 0 22px 46px -34px rgba(255, 45, 111, 0.12), 0 40px 82px -54px rgba(255, 45, 111, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html[data-text-size="small"] {
  --read-scale: 0.92;
}

html[data-text-size="large"] {
  --read-scale: 1.14;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 75% 8%, rgba(122, 46, 110, 0.12), transparent 34rem),
    radial-gradient(circle at 12% 38%, rgba(255, 45, 111, 0.055), transparent 30rem),
    var(--bg);
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  overflow-x: hidden;
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Cpath fill='rgba(11,11,11,0.8)' stroke='%23FF2D6F' stroke-width='2.2' d='M16 3 6.5 7v7.8c0 6.4 4 11.4 9.5 14 5.5-2.6 9.5-7.6 9.5-14V7L16 3Z'/%3E%3Cpath fill='%23FF2D6F' d='M15 10h2v9h-2z'/%3E%3C/svg%3E") 16 16, auto;
}

body.menu-open {
  overflow: hidden;
}

body.settings-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

a,
button,
.client-logo,
.service-card,
.value-card,
.cert-item {
  cursor: pointer;
}

body .container {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 24px;
  left: 50%;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 36px;
  width: min(1180px, calc(100% - 48px));
  min-height: 72px;
  padding: 14px 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(8, 8, 10, 0.74);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(22px);
  transform: translateX(-50%);
  transition: background 400ms ease, border-color 400ms ease, box-shadow 400ms ease, top 400ms ease, backdrop-filter 400ms ease;
}

.site-header.is-scrolled {
  top: 12px;
  background: rgba(8, 8, 10, 0.9);
  border-color: rgba(255, 45, 111, 0.24);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(30px) saturate(1.25);
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 174px;
}

.brand img {
  width: 174px;
  height: auto;
  filter: drop-shadow(0 0 14px rgba(255, 45, 111, 0.18));
}

.brand span,
.footer-brand span {
  display: block;
  margin-top: -4px;
  color: rgba(234, 234, 234, 0.84);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 26px;
}

.site-nav a {
  position: relative;
  color: rgba(234, 234, 234, 0.82);
  font-size: 14px;
  font-weight: 600;
  transition: color 300ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 360ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: #fff;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.theme-toggle {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 45, 111, 0.36);
  border-radius: 6px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 0 18px rgba(255, 45, 111, 0.05);
  transition: transform 300ms ease, border-color 300ms ease, box-shadow 300ms ease, background 300ms ease;
}

.theme-toggle:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 45, 111, 0.72);
  box-shadow: 0 0 24px rgba(255, 45, 111, 0.24);
}

.theme-icon {
  position: absolute;
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: opacity 260ms ease, transform 260ms ease;
}

.theme-icon-sun {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.theme-icon-moon {
  opacity: 0;
  transform: rotate(-30deg) scale(0.72);
}

html[data-theme="light"] .theme-icon-sun {
  opacity: 0;
  transform: rotate(30deg) scale(0.72);
}

html[data-theme="light"] .theme-icon-moon {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.settings-toggle {
  position: relative;
  display: none;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 45, 111, 0.36);
  border-radius: 6px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 0 18px rgba(255, 45, 111, 0.05);
  transition: transform 300ms ease, border-color 300ms ease, box-shadow 300ms ease, background 300ms ease;
}

.settings-toggle:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 45, 111, 0.72);
  box-shadow: 0 0 24px rgba(255, 45, 111, 0.24);
}

.settings-toggle svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.75;
}

.header-cta,
.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid rgba(255, 45, 111, 0.52);
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(255, 45, 111, 0.95), rgba(122, 46, 110, 0.68));
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 0 0 rgba(255, 45, 111, 0);
  transition: transform 360ms ease, box-shadow 360ms ease, border-color 360ms ease;
  white-space: nowrap;
}

.header-cta svg,
.primary-button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.header-cta:hover,
.primary-button:hover {
  transform: translateY(-2px) scale(1.035);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 42px rgba(255, 45, 111, 0.58);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 100vh;
  --parallax-x: 0px;
  --parallax-y: 0px;
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(90deg, rgba(7, 8, 10, 0.98) 0%, rgba(8, 8, 11, 0.94) 32%, rgba(12, 7, 13, 0.7) 58%, rgba(8, 8, 10, 0.98) 100%),
    radial-gradient(circle at 72% 38%, rgba(255, 45, 111, 0.12), transparent 34rem),
    radial-gradient(circle at 26% 12%, rgba(122, 46, 110, 0.14), transparent 28rem),
    var(--bg);
}

.hero::before {
  content: "";
  position: absolute;
  inset: -25%;
  z-index: -4;
  background:
    radial-gradient(circle at 35% 42%, rgba(255, 45, 111, 0.14), transparent 19rem),
    radial-gradient(circle at 14% 36%, rgba(55, 90, 150, 0.12), transparent 22rem),
    conic-gradient(from 160deg at 72% 42%, transparent 0deg, rgba(255, 45, 111, 0.18) 38deg, rgba(122, 46, 110, 0.1) 72deg, transparent 112deg);
  filter: blur(18px);
  opacity: 0.55;
  animation: heroGradient 14s ease-in-out infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at var(--x, 58%) var(--y, 48%), rgba(255, 45, 111, 0.12), transparent 40%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.78)),
    radial-gradient(circle at 50% 112%, rgba(255, 45, 111, 0.1), transparent 34rem);
  pointer-events: none;
}

.hero-media {
  position: absolute;
  z-index: -3;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.74;
  pointer-events: none;
  will-change: transform;
  transition: transform 500ms ease-out;
}

.hero-guard {
  left: 0;
  bottom: 0;
  width: 42%;
  min-width: 500px;
  height: 88vh;
  background-image:
    radial-gradient(circle at 18% 43%, rgba(255, 255, 255, 0.13), transparent 17rem),
    radial-gradient(circle at 0% 50%, rgba(255, 45, 111, 0.18), transparent 24rem),
    linear-gradient(90deg, rgba(5, 6, 8, 0), rgba(5, 6, 8, 0.1) 44%, rgba(5, 6, 8, 0.82)),
    url("../assets/images/hero-guard.jpg");
  background-position: left bottom;
  filter: brightness(1.74) contrast(1.18) saturate(1.08);
  opacity: 0.98;
  -webkit-mask-image: linear-gradient(90deg, black 0 70%, transparent 100%);
  mask-image: linear-gradient(90deg, black 0 70%, transparent 100%);
  transform: translate3d(calc(var(--parallax-x) * -0.45), calc(var(--parallax-y) * -0.28), 0);
}

.hero-guard::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 28% 43%, rgba(255, 255, 255, 0.11), transparent 10rem),
    linear-gradient(90deg, rgba(255, 45, 111, 0.08), transparent 38%);
  mix-blend-mode: screen;
  opacity: 0.5;
}

.hero-city {
  right: 0;
  bottom: 0;
  width: 52%;
  min-width: 420px;
  height: 100%;
  background-image:
    linear-gradient(90deg, rgba(11, 11, 11, 0.95), rgba(11, 11, 11, 0.1) 42%, rgba(11, 11, 11, 0.04)),
    url("../assets/images/hero-city.jpg");
  background-position: center bottom;
  filter: brightness(1.16) contrast(1.1) saturate(1.16);
  opacity: 0.76;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 20%, black 100%);
  mask-image: linear-gradient(90deg, transparent 0%, black 20%, black 100%);
  transform: translate3d(calc(var(--parallax-x) * 0.55), calc(var(--parallax-y) * 0.34), 0);
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(90deg, transparent, black 28%, black 70%, transparent);
  opacity: 0.35;
  transform: translate3d(calc(var(--parallax-x) * 0.16), calc(var(--parallax-y) * 0.12), 0);
}

.hero-radar {
  position: absolute;
  right: 7%;
  top: 13%;
  z-index: -2;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background:
    radial-gradient(circle, transparent 0 43%, rgba(255, 45, 111, 0.12) 44%, transparent 45% 62%, rgba(255, 45, 111, 0.08) 63%, transparent 64%),
    conic-gradient(from 0deg, rgba(255, 45, 111, 0.13), rgba(255, 45, 111, 0.04) 38deg, transparent 76deg);
  mask-image: radial-gradient(circle, black 0 62%, transparent 74%);
  opacity: 0.12;
  transform: rotate(0deg) scaleX(1.26);
  transform-origin: center;
  animation: radarSweep 11s linear infinite;
  will-change: transform;
}

.hero-scanline {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, transparent, rgba(255, 45, 111, 0.12), transparent);
  height: 36%;
  opacity: 0.12;
  transform: translateY(-100%);
  animation: scanLine 9s ease-in-out infinite;
  pointer-events: none;
}

.hero-light-zone {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  filter: blur(28px);
  opacity: 0.38;
  pointer-events: none;
  will-change: transform, opacity;
  animation: lightPulse 6.8s ease-in-out infinite;
}

.hero-light-zone-a {
  left: 7%;
  top: 24%;
  width: 270px;
  height: 270px;
  background: rgba(255, 45, 111, 0.1);
}

.hero-light-zone-b {
  right: 18%;
  top: 18%;
  width: 360px;
  height: 360px;
  background: rgba(122, 46, 110, 0.12);
  animation-delay: 1.6s;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding-top: 116px;
  padding-bottom: 96px;
}

.hero-copy {
  grid-column: 2;
  max-width: 600px;
  margin-left: 0;
}

.hero h1 {
  max-width: 650px;
  margin: 0;
  color: #fff;
  font-size: clamp(48px, 6vw, 72px);
  line-height: 0.95;
  letter-spacing: -1.5px;
  font-weight: 800;
  text-wrap: balance;
  text-shadow: 0 20px 70px rgba(0, 0, 0, 0.7);
}

.hero p {
  max-width: 510px;
  margin: 30px 0 38px;
  color: rgba(234, 234, 234, 0.8);
  font-size: 22px;
  line-height: 1.55;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 2;
  display: grid;
  place-items: start center;
  width: 18px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  transform: translateX(-50%);
  opacity: 0.9;
}

.scroll-cue span {
  width: 3px;
  height: 7px;
  margin-top: 7px;
  border-radius: 999px;
  background: var(--accent);
  animation: scrollCue 2.4s ease-in-out infinite;
}

.cert-strip {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(18, 18, 18, 0.84);
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.cert-item {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 116px;
  padding: 22px 24px;
  border-right: 1px solid var(--border);
  transition: background 360ms ease, transform 360ms ease;
}

.cert-item:last-child {
  border-right: 0;
}

.cert-item img {
  width: 70px;
  height: 52px;
  object-fit: contain;
  filter: grayscale(1) brightness(1.18) contrast(1.1);
  opacity: 0.82;
  transition: filter 360ms ease, opacity 360ms ease, transform 360ms ease;
}

.cert-item strong {
  display: block;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
}

.cert-item span {
  display: block;
  max-width: 190px;
  color: rgba(234, 234, 234, 0.62);
  font-size: 13px;
  line-height: 1.35;
}

.cert-item:hover {
  background: rgba(255, 45, 111, 0.06);
  transform: translateY(-2px);
}

.cert-item:hover img {
  filter: none;
  opacity: 1;
  transform: scale(1.04);
}

.section {
  position: relative;
  padding: 92px 0;
}

section[id] {
  scroll-margin-top: 120px;
}

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

.section-label {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.section-heading h2,
.about-copy h2,
.cta-panel h2 {
  margin: 0;
  color: #fff;
  font-size: 42px;
  line-height: 1.12;
  font-weight: 700;
}

.section-intro {
  max-width: 690px;
  margin: 18px 0 0;
  color: rgba(234, 234, 234, 0.68);
  font-size: 18px;
}

.services-section {
  background:
    radial-gradient(circle at 78% 18%, rgba(122, 46, 110, 0.14), transparent 30rem),
    linear-gradient(180deg, rgba(11, 11, 11, 1), rgba(12, 12, 13, 0.98));
}

.services-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.3fr;
  gap: 34px;
  align-items: start;
}

.feature-card {
  position: sticky;
  top: 116px;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 0.12), rgba(10, 10, 10, 0.82) 56%, rgba(10, 10, 10, 0.9)),
    linear-gradient(180deg, transparent, rgba(255, 45, 111, 0.08));
  pointer-events: none;
}

.feature-card img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.08);
}

.feature-card-copy {
  position: absolute;
  z-index: 2;
  right: 30px;
  bottom: 34px;
  max-width: 300px;
}

.icon-shell {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 28px;
  border: 1px solid rgba(255, 45, 111, 0.34);
  border-radius: 8px;
  color: var(--accent);
  background: rgba(255, 45, 111, 0.08);
}

.icon-shell svg,
.service-card svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.icon-shell svg {
  width: 25px;
  height: 25px;
}

.feature-card h3,
.service-card h3,
.value-card h3,
.insight-card h3 {
  margin: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}

.feature-card p,
.service-card p,
.value-card p,
.insight-card p {
  margin: 12px 0 0;
  color: rgba(234, 234, 234, 0.63);
}

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

.service-card {
  position: relative;
  min-height: 190px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
  transition: transform 420ms ease, border-color 420ms ease, box-shadow 420ms ease, background 420ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 420ms ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(circle at top left, rgba(255, 45, 111, 0.15), transparent 58%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 400ms ease;
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card svg {
  width: 34px;
  height: 34px;
  margin-bottom: 24px;
  color: var(--accent);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 45, 111, 0.24);
  background: linear-gradient(145deg, rgba(255, 45, 111, 0.08), rgba(255, 255, 255, 0.024));
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34), var(--card-glow);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover::after {
  opacity: 1;
}

.values-section {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(180deg, rgba(12, 12, 13, 0.98), rgba(9, 9, 10, 1)),
    var(--bg);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}

.value-card {
  min-height: 230px;
  padding: 28px 22px;
  border-right: 1px solid var(--border);
  text-align: center;
  transition: transform 420ms ease, background 420ms ease, box-shadow 420ms ease;
}

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

.value-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 45, 111, 0.045);
  box-shadow: inset 0 0 0 1px rgba(255, 45, 111, 0.2);
}

.value-icon {
  position: relative;
  display: block;
  width: 52px;
  height: 52px;
  margin: 0 auto 20px;
  color: var(--accent);
}

.value-icon::before,
.value-icon::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 2px solid currentColor;
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(255, 45, 111, 0.22);
}

.value-icon.target::after {
  inset: 22px;
}

.value-icon.book::before {
  inset: 7px 10px;
  border-radius: 2px;
  transform: skewY(-8deg);
}

.value-icon.book::after {
  inset: 7px 10px;
  border-left: 0;
  border-radius: 2px;
  transform: skewY(8deg);
}

.value-icon.sliders::before {
  inset: 12px 5px auto;
  height: 2px;
  border: 0;
  border-radius: 0;
  background: currentColor;
  box-shadow: 0 13px 0 currentColor, 0 26px 0 currentColor;
}

.value-icon.sliders::after {
  inset: 8px 28px auto auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  box-shadow: -17px 13px 0 -1px currentColor, 5px 26px 0 -1px currentColor;
}

.value-icon.shield::before {
  inset: 5px 11px;
  border-radius: 10px 10px 16px 16px;
  transform: perspective(80px) rotateX(12deg);
}

.value-icon.shield::after {
  display: none;
}

.value-icon.eye::before {
  inset: 14px 4px;
  border-radius: 50%;
  transform: scaleX(1.55);
}

.value-icon.eye::after {
  inset: 22px;
  background: currentColor;
}

.value-icon.heart::before {
  inset: 10px 11px;
  border-radius: 14px 14px 4px 14px;
  transform: rotate(45deg);
}

.value-icon.heart::after {
  display: none;
}

.about-section {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #090909;
}

.about-media {
  position: absolute;
  inset: 0 0 0 38%;
  background-image:
    linear-gradient(90deg, #090909 0%, rgba(9, 9, 9, 0.78) 18%, rgba(9, 9, 9, 0.08) 54%, rgba(9, 9, 9, 0.08)),
    linear-gradient(180deg, rgba(9, 9, 9, 0.02), rgba(9, 9, 9, 0.54)),
    url("../assets/images/operations-room.jpg");
  background-size: cover;
  background-position: center right;
  filter: brightness(1.2) saturate(1.06) contrast(1.08);
}

.about-inner {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: center;
}

.about-copy {
  max-width: 560px;
  padding: 90px 0;
}

.about-copy p:not(.section-label) {
  color: rgba(234, 234, 234, 0.72);
  font-size: 17px;
}

.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.about-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(255, 45, 111, 0.28);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 45, 111, 0.07);
  font-size: 13px;
  font-weight: 700;
}

.clients-section {
  padding-bottom: 72px;
  background: var(--bg);
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.client-logo {
  display: grid;
  place-items: center;
  min-height: 128px;
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.018));
  transition: transform 360ms ease, border-color 360ms ease, box-shadow 360ms ease;
}

.client-logo img {
  max-width: 160px;
  max-height: 70px;
  filter: grayscale(1) brightness(1.18);
  opacity: 0.68;
  transition: filter 360ms ease, opacity 360ms ease, transform 360ms ease;
}

.client-logo:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 45, 111, 0.3);
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.38);
}

.client-logo:hover img {
  filter: none;
  opacity: 1;
  transform: scale(1.04);
}

.blog-section {
  padding-top: 54px;
  background:
    radial-gradient(circle at 15% 0%, rgba(122, 46, 110, 0.16), transparent 30rem),
    var(--bg);
}

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

.insight-card {
  display: block;
  min-height: 250px;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 45, 111, 0.055), rgba(255, 255, 255, 0.02)),
    var(--surface);
  transition: transform 400ms ease, border-color 400ms ease, box-shadow 400ms ease;
}

.insight-card span {
  display: block;
  margin-bottom: 42px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.insight-card h3 {
  font-size: 22px;
  line-height: 1.22;
}

.insight-card strong,
.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 26px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
}

.insight-card strong::after,
.text-link::after {
  content: "";
  width: 22px;
  height: 1px;
  margin-left: 10px;
  background: currentColor;
  transition: transform 300ms ease;
}

.insight-card:hover strong::after,
.text-link:hover::after {
  transform: translateX(5px);
}

.insight-card:hover {
  transform: translateY(-7px);
  border-color: rgba(255, 45, 111, 0.24);
  box-shadow: var(--card-glow);
}

.text-link {
  margin-top: 28px;
}

.page-main {
  padding-top: 132px;
}

.page-hero {
  position: relative;
  padding: 96px 0 70px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(circle at 70% 18%, rgba(255, 45, 111, 0.14), transparent 30rem),
    radial-gradient(circle at 10% 0%, rgba(122, 46, 110, 0.18), transparent 24rem),
    linear-gradient(180deg, rgba(11, 11, 11, 0.92), var(--bg));
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(180deg, black, transparent 70%);
  opacity: 0.34;
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-kicker,
.article-meta,
.blog-card-meta {
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.page-hero h1 {
  max-width: 850px;
  margin: 0;
  color: #fff;
  font-size: 68px;
  line-height: 0.98;
  font-weight: 800;
}

.page-hero p {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(234, 234, 234, 0.72);
  font-size: 20px;
}

.blog-index-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.blog-card,
.related-card {
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 45, 111, 0.06), rgba(255, 255, 255, 0.02)),
    var(--surface);
  box-shadow: var(--shadow);
  transition: transform 380ms ease, border-color 380ms ease, box-shadow 380ms ease;
}

.blog-card h2,
.related-card h3 {
  margin: 40px 0 0;
  color: #fff;
  font-size: 28px;
  line-height: 1.13;
}

.blog-card p,
.related-card p {
  color: rgba(234, 234, 234, 0.66);
}

.blog-card:hover,
.related-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 45, 111, 0.24);
  box-shadow: var(--card-glow);
}

.blog-card .text-link,
.related-card .text-link {
  margin-top: auto;
}

.article-shell {
  max-width: 900px;
}

.article-content {
  padding: 78px 0;
}

.article-content article {
  max-width: 820px;
}

.article-content h2 {
  margin: 42px 0 14px;
  color: #fff;
  font-size: 32px;
  line-height: 1.16;
}

.article-content h3 {
  margin: 30px 0 10px;
  color: #fff;
  font-size: 22px;
  line-height: 1.22;
}

.article-content p,
.article-content li {
  color: rgba(234, 234, 234, 0.72);
  font-size: 18px;
}

.article-content a {
  color: var(--accent);
  font-weight: 700;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 10px;
}

.legal-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(255, 45, 111, 0.28);
  border-radius: 999px;
  color: rgba(234, 234, 234, 0.78);
  background: rgba(255, 45, 111, 0.045);
  font-size: 13px;
  font-weight: 800;
}

.article-content ul {
  display: grid;
  gap: 12px;
  padding-left: 22px;
}

.article-callout {
  margin: 44px 0;
  padding: 30px;
  border: 1px solid rgba(255, 45, 111, 0.28);
  border-radius: 8px;
  background:
    radial-gradient(circle at 85% 10%, rgba(255, 45, 111, 0.18), transparent 18rem),
    var(--surface);
}

.article-callout p {
  margin: 0;
  color: var(--text);
  font-size: 20px;
  font-weight: 700;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.about-page {
  padding-top: 0;
}

.about-hero-page {
  position: relative;
  min-height: 760px;
  padding: 190px 0 96px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(circle at 78% 20%, rgba(255, 45, 111, 0.18), transparent 30rem),
    radial-gradient(circle at 12% 36%, rgba(122, 46, 110, 0.22), transparent 28rem),
    linear-gradient(180deg, #080808, var(--bg));
}

.about-hero-page::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 24%;
  background: linear-gradient(180deg, transparent, var(--bg));
  pointer-events: none;
}

.about-hero-bg {
  position: absolute;
  inset: 0 0 0 46%;
  background-image:
    linear-gradient(90deg, #080808 0%, rgba(8, 8, 8, 0.92) 12%, rgba(8, 8, 8, 0.12) 52%, rgba(8, 8, 8, 0.62)),
    linear-gradient(180deg, rgba(8, 8, 8, 0.1), rgba(8, 8, 8, 0.88)),
    url("../assets/images/operations-room.jpg");
  background-size: cover;
  background-position: center;
  filter: saturate(0.92) contrast(1.12) brightness(0.9);
  opacity: 0.9;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 18%, black 100%);
  mask-image: linear-gradient(90deg, transparent 0%, black 18%, black 100%);
}

.about-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 84px 84px;
  opacity: 0.24;
  mask-image: linear-gradient(180deg, black, transparent 78%);
}

.about-hero-sweep {
  position: absolute;
  right: 2%;
  top: 13%;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(255, 45, 111, 0.14);
  border-radius: 50%;
  opacity: 0.48;
  transform: rotate(-22deg) scaleX(1.42);
  box-shadow:
    inset 0 0 50px rgba(255, 45, 111, 0.09),
    0 0 80px rgba(122, 46, 110, 0.16);
  animation: slowPulse 8s ease-in-out infinite;
}

.about-hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 56px;
  align-items: center;
}

.about-hero-copy h1 {
  max-width: 780px;
  margin: 0;
  color: #fff;
  font-size: 72px;
  line-height: 0.98;
  font-weight: 800;
  text-wrap: balance;
}

.about-hero-copy > p:not(.page-kicker) {
  max-width: 710px;
  margin: 28px 0 0;
  color: rgba(234, 234, 234, 0.74);
  font-size: 20px;
}

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

.about-hero-actions .text-link {
  margin-top: 0;
}

.about-hero-panel {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(255, 45, 111, 0.25);
  border-radius: 8px;
  background:
    radial-gradient(circle at 80% 0%, rgba(255, 45, 111, 0.2), transparent 19rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    rgba(18, 18, 18, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.about-hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 45, 111, 0.1), transparent);
  opacity: 0.45;
  transform: translateX(-100%);
  animation: scanLineHorizontal 7s ease-in-out infinite;
}

.about-hero-panel > * {
  position: relative;
  z-index: 1;
}

.panel-kicker {
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.about-hero-panel h2 {
  margin: 18px 0 28px;
  color: #fff;
  font-size: 28px;
  line-height: 1.13;
}

.profile-list {
  display: grid;
  gap: 14px;
}

.profile-list div {
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.profile-list strong,
.protection-grid h3,
.process-card h3,
.standard-cards h3,
.expanded-value-card h3 {
  display: block;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
}

.profile-list span,
.protection-grid p,
.process-card p,
.standard-cards p,
.expanded-value-card p {
  color: rgba(234, 234, 234, 0.66);
}

.about-story-deep {
  background:
    radial-gradient(circle at 12% 20%, rgba(122, 46, 110, 0.13), transparent 28rem),
    linear-gradient(180deg, var(--bg), #080808);
}

.about-story-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 68px;
  align-items: start;
}

.story-lead {
  position: sticky;
  top: 130px;
}

.story-lead h2,
.mission-panel h2,
.standards-copy h2 {
  margin: 0;
  color: #fff;
  font-size: 46px;
  line-height: 1.08;
  font-weight: 800;
  text-wrap: balance;
}

.story-copy p,
.mission-text p,
.standards-copy p {
  margin: 0 0 22px;
  color: rgba(234, 234, 234, 0.72);
  font-size: 18px;
}

.protection-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 54px;
}

.protection-grid article,
.process-card,
.expanded-value-card {
  position: relative;
  min-height: 240px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 45, 111, 0.055), rgba(255, 255, 255, 0.02)),
    var(--surface);
  transition: transform 380ms ease, border-color 380ms ease, box-shadow 380ms ease;
}

.protection-grid article::before,
.process-card::before,
.expanded-value-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 380ms ease;
}

.protection-grid article:hover,
.process-card:hover,
.expanded-value-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 45, 111, 0.24);
  box-shadow: var(--card-glow);
}

.protection-grid article:hover::before,
.process-card:hover::before,
.expanded-value-card:hover::before {
  opacity: 1;
}

.protection-grid span,
.process-card span {
  display: block;
  margin-bottom: 54px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
}

.about-mission-band {
  padding: 82px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(circle at 72% 35%, rgba(255, 45, 111, 0.14), transparent 26rem),
    linear-gradient(135deg, rgba(255, 45, 111, 0.08), rgba(255, 255, 255, 0.02) 42%, rgba(122, 46, 110, 0.1)),
    var(--surface);
}

.mission-layout {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 56px;
  align-items: center;
}

.mission-panel {
  max-width: 720px;
}

.mission-text {
  padding-left: 34px;
  border-left: 1px solid rgba(255, 45, 111, 0.3);
}

.operating-model-section {
  background:
    radial-gradient(circle at 82% 20%, rgba(122, 46, 110, 0.16), transparent 28rem),
    var(--bg);
}

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

.process-card {
  min-height: 310px;
}

.standards-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(12, 12, 13, 0.98), rgba(9, 9, 10, 1)),
    var(--bg);
}

.standards-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 56px;
  align-items: center;
}

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

.standard-cards article {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 20px;
  align-items: center;
  min-height: 156px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.018));
  transition: transform 360ms ease, border-color 360ms ease, box-shadow 360ms ease;
}

.standard-cards article:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 45, 111, 0.24);
  box-shadow: var(--card-glow);
}

.standard-cards img {
  width: 76px;
  height: 58px;
  object-fit: contain;
  filter: grayscale(1) brightness(1.18) contrast(1.08);
  opacity: 0.76;
  transition: filter 360ms ease, opacity 360ms ease, transform 360ms ease;
}

.standard-cards article:hover img {
  filter: none;
  opacity: 1;
  transform: scale(1.04);
}

.standard-cards h3,
.standard-cards p {
  margin: 0;
}

.expanded-values-section {
  background:
    radial-gradient(circle at 20% 8%, rgba(255, 45, 111, 0.1), transparent 28rem),
    var(--bg);
}

.expanded-values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.expanded-value-card {
  min-height: 220px;
}

.expanded-value-card h3 {
  margin-bottom: 16px;
}

.settings-backdrop {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(0, 0, 0, 0.54);
  backdrop-filter: blur(9px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 360ms ease;
}

.settings-sheet {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 91;
  max-height: min(86vh, 760px);
  padding: 16px 0 max(22px, env(safe-area-inset-bottom));
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 0;
  border-radius: 34px 34px 0 0;
  background:
    radial-gradient(circle at 78% 10%, rgba(255, 45, 111, 0.13), transparent 22rem),
    linear-gradient(180deg, rgba(20, 20, 21, 0.98), rgba(10, 10, 11, 0.98));
  box-shadow: 0 -22px 70px rgba(0, 0, 0, 0.5);
  transform: translateY(calc(100% + 24px));
  transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.settings-sheet.is-dragging {
  transition: none;
}

.settings-open .settings-backdrop {
  opacity: 1;
  pointer-events: auto;
}

.settings-open .settings-sheet {
  transform: translateY(var(--sheet-drag-y, 0));
}

.settings-shell {
  width: min(100% - 32px, 640px);
  margin: 0 auto;
}

.settings-handle {
  display: block;
  width: 64px;
  height: 6px;
  margin: 6px auto 18px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
}

.settings-title {
  margin: 0 0 26px;
  color: rgba(234, 234, 234, 0.62);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-align: center;
  text-transform: uppercase;
}

.settings-section {
  margin-top: 28px;
}

.settings-section:first-of-type {
  margin-top: 0;
}

.settings-label {
  margin: 0 0 10px;
  color: rgba(234, 234, 234, 0.48);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.settings-group {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.settings-row {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 16px;
  align-items: center;
  width: 100%;
  min-height: 78px;
  padding: 14px 20px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: inherit;
  background: transparent;
  text-align: left;
  transition: background 260ms ease;
}

.settings-row:last-child {
  border-bottom: 0;
}

.settings-row:hover {
  background: rgba(255, 45, 111, 0.055);
}

.settings-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 45, 111, 0.18);
  border-radius: 13px;
  color: var(--accent);
  background: rgba(255, 45, 111, 0.08);
}

.settings-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.settings-row strong {
  display: block;
  color: #fff;
  font-size: 18px;
  line-height: 1.2;
}

.settings-row > span:nth-child(2) > span {
  display: block;
  margin-top: 4px;
  color: rgba(234, 234, 234, 0.56);
  font-size: 13px;
  line-height: 1.28;
}

.settings-arrow {
  color: rgba(234, 234, 234, 0.5);
  font-size: 18px;
}

.settings-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 64px;
  height: 34px;
  padding: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  transition: background 260ms ease, box-shadow 260ms ease;
}

.settings-switch .settings-knob {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.38);
  transform: translateX(0);
  transition: transform 260ms ease;
}

.settings-switch.is-on {
  background: linear-gradient(135deg, var(--accent), var(--primary));
  box-shadow: 0 0 20px rgba(255, 45, 111, 0.22);
}

.settings-switch.is-on .settings-knob {
  transform: translateX(30px);
}

.settings-size {
  display: inline-grid;
  grid-template-columns: repeat(3, 36px);
  gap: 8px;
}

.settings-size button {
  display: grid;
  place-items: center;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  color: rgba(234, 234, 234, 0.74);
  background: rgba(255, 255, 255, 0.035);
  font-size: 13px;
  font-weight: 800;
}

.settings-size button.is-active {
  color: #fff;
  border-color: rgba(255, 45, 111, 0.7);
  box-shadow: inset 0 0 0 1px rgba(255, 45, 111, 0.28);
}

.settings-about {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: center;
  padding: 16px 20px;
}

.settings-about img {
  width: 48px;
  height: auto;
  filter: drop-shadow(0 0 12px rgba(255, 45, 111, 0.18));
}

.settings-about strong {
  display: block;
  color: #fff;
  font-size: 18px;
  line-height: 1.2;
}

.settings-about span span {
  display: block;
  margin-top: 4px;
  color: rgba(234, 234, 234, 0.56);
  font-size: 13px;
  line-height: 1.28;
}

.settings-footnote {
  margin: 30px 0 4px;
  color: rgba(234, 234, 234, 0.42);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
}

html[data-theme="light"] body {
  background:
    radial-gradient(circle at 75% 8%, rgba(122, 46, 110, 0.12), transparent 34rem),
    radial-gradient(circle at 12% 38%, rgba(255, 45, 111, 0.08), transparent 30rem),
    var(--bg);
}

html[data-theme="light"] .site-header {
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(122, 46, 110, 0.18);
  box-shadow: 0 20px 70px rgba(27, 18, 28, 0.14);
}

html[data-theme="light"] .site-header.is-scrolled,
html[data-theme="light"] .site-nav.is-open {
  background: rgba(255, 255, 255, 0.99);
}

html[data-theme="light"] .settings-toggle {
  color: #151217;
  background: rgba(255, 255, 255, 0.72);
}

html[data-theme="light"] .menu-toggle {
  color: #151217;
  background: rgba(255, 255, 255, 0.72);
}

html[data-theme="light"] .site-nav a,
html[data-theme="light"] .brand span,
html[data-theme="light"] .footer-brand span {
  color: rgba(21, 18, 23, 0.78);
}

html[data-theme="light"] .site-nav a:hover,
html[data-theme="light"] .site-nav a.is-active,
html[data-theme="light"] .section-heading h2,
html[data-theme="light"] .about-copy h2,
html[data-theme="light"] .cta-panel h2,
html[data-theme="light"] .feature-card h3,
html[data-theme="light"] .service-card h3,
html[data-theme="light"] .value-card h3,
html[data-theme="light"] .insight-card h3,
html[data-theme="light"] .site-footer h3,
html[data-theme="light"] .page-hero h1,
html[data-theme="light"] .blog-card h2,
html[data-theme="light"] .related-card h3,
html[data-theme="light"] .article-content h2,
html[data-theme="light"] .article-content h3,
html[data-theme="light"] .story-lead h2,
html[data-theme="light"] .mission-panel h2,
html[data-theme="light"] .standards-copy h2,
html[data-theme="light"] .protection-grid h3,
html[data-theme="light"] .process-card h3,
html[data-theme="light"] .standard-cards h3,
html[data-theme="light"] .expanded-value-card h3 {
  color: #151217;
}

html[data-theme="light"] .hero h1,
html[data-theme="light"] .hero p,
html[data-theme="light"] .about-hero-copy h1,
html[data-theme="light"] .about-hero-copy > p:not(.page-kicker),
html[data-theme="light"] .about-hero-panel h2,
html[data-theme="light"] .about-hero-panel .profile-list strong,
html[data-theme="light"] .about-hero-panel .profile-list span {
  color: #fff;
}

html[data-theme="light"] .cert-strip,
html[data-theme="light"] .services-section,
html[data-theme="light"] .values-section,
html[data-theme="light"] .clients-section,
html[data-theme="light"] .blog-section,
html[data-theme="light"] .about-story-deep,
html[data-theme="light"] .operating-model-section,
html[data-theme="light"] .expanded-values-section,
html[data-theme="light"] .cta-section,
html[data-theme="light"] .site-footer,
html[data-theme="light"] .page-hero {
  background:
    radial-gradient(circle at 80% 18%, rgba(255, 45, 111, 0.09), transparent 28rem),
    var(--bg);
}

html[data-theme="light"] .about-section {
  background: #F1F1F4;
}

html[data-theme="light"] .about-mission-band,
html[data-theme="light"] .standards-section {
  background:
    radial-gradient(circle at 78% 22%, rgba(255, 45, 111, 0.1), transparent 28rem),
    var(--bg);
}

html[data-theme="light"] .about-hero-page {
  background:
    radial-gradient(circle at 78% 20%, rgba(255, 45, 111, 0.18), transparent 30rem),
    radial-gradient(circle at 12% 36%, rgba(122, 46, 110, 0.22), transparent 28rem),
    linear-gradient(180deg, #080808, #0B0B0B);
}

html[data-theme="light"] .about-hero-page::after {
  height: 18%;
  background: linear-gradient(180deg, transparent, var(--bg));
}

html[data-theme="light"] .about-media {
  background-image:
    linear-gradient(90deg, #F1F1F4 0%, rgba(241, 241, 244, 0.92) 18%, rgba(241, 241, 244, 0.16) 55%, rgba(241, 241, 244, 0.28)),
    linear-gradient(180deg, rgba(241, 241, 244, 0.06), rgba(241, 241, 244, 0.8)),
    url("../assets/images/operations-room.jpg");
}

html[data-theme="light"] .service-card,
html[data-theme="light"] .insight-card,
html[data-theme="light"] .blog-card,
html[data-theme="light"] .related-card,
html[data-theme="light"] .client-logo,
html[data-theme="light"] .article-callout,
html[data-theme="light"] .protection-grid article,
html[data-theme="light"] .process-card,
html[data-theme="light"] .standard-cards article,
html[data-theme="light"] .expanded-value-card,
html[data-theme="light"] .cta-panel {
  background:
    linear-gradient(145deg, rgba(255, 45, 111, 0.08), rgba(255, 255, 255, 0.72)),
    var(--surface);
}

html[data-theme="light"] .feature-card {
  background: #151217;
}

html[data-theme="light"] .feature-card h3,
html[data-theme="light"] .feature-card p {
  color: #fff;
}

html[data-theme="light"] .cert-item span,
html[data-theme="light"] .section-intro,
html[data-theme="light"] .service-card p,
html[data-theme="light"] .value-card p,
html[data-theme="light"] .insight-card p,
html[data-theme="light"] .about-copy p:not(.section-label),
html[data-theme="light"] .cta-panel p:not(.section-label),
html[data-theme="light"] .blog-card p,
html[data-theme="light"] .related-card p,
html[data-theme="light"] .article-content p,
html[data-theme="light"] .article-content li,
html[data-theme="light"] .story-copy p,
html[data-theme="light"] .mission-text p,
html[data-theme="light"] .standards-copy p,
html[data-theme="light"] .protection-grid p,
html[data-theme="light"] .process-card p,
html[data-theme="light"] .standard-cards p,
html[data-theme="light"] .expanded-value-card p,
html[data-theme="light"] .site-footer a,
html[data-theme="light"] .site-footer p {
  color: rgba(21, 18, 23, 0.68);
}

html[data-theme="light"] .legal-meta span {
  color: rgba(21, 18, 23, 0.72);
  background: rgba(255, 45, 111, 0.06);
}

html[data-theme="light"] .feature-card p {
  color: rgba(255, 255, 255, 0.72);
}

html[data-theme="light"] .settings-sheet {
  background:
    radial-gradient(circle at 78% 10%, rgba(255, 45, 111, 0.12), transparent 22rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 245, 247, 0.98));
}

html[data-theme="light"] .settings-title,
html[data-theme="light"] .settings-label,
html[data-theme="light"] .settings-arrow,
html[data-theme="light"] .settings-footnote {
  color: rgba(21, 18, 23, 0.5);
}

html[data-theme="light"] .settings-group,
html[data-theme="light"] .settings-size button {
  border-color: rgba(21, 18, 23, 0.1);
  background: rgba(255, 255, 255, 0.76);
}

html[data-theme="light"] .settings-row {
  border-color: rgba(21, 18, 23, 0.08);
}

html[data-theme="light"] .settings-row strong {
  color: #151217;
}

html[data-theme="light"] .settings-about strong {
  color: #151217;
}

html[data-theme="light"] .settings-row > span:nth-child(2) > span {
  color: rgba(21, 18, 23, 0.58);
}

html[data-theme="light"] .settings-about span span {
  color: rgba(21, 18, 23, 0.58);
}

html[data-theme="light"] .scroll-top-button {
  color: #fff;
  background:
    linear-gradient(145deg, rgba(255, 45, 111, 0.9), rgba(122, 46, 110, 0.88)),
    var(--accent);
  box-shadow: 0 18px 48px rgba(27, 18, 28, 0.18), 0 0 24px rgba(255, 45, 111, 0.22);
}

.cta-section {
  padding: 42px 0 72px;
  background:
    linear-gradient(180deg, var(--bg), #070707);
}

.cta-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  overflow: hidden;
  padding: 48px;
  border: 1px solid rgba(255, 45, 111, 0.26);
  border-radius: 8px;
  background:
    radial-gradient(circle at 72% 42%, rgba(255, 45, 111, 0.22), transparent 22rem),
    linear-gradient(135deg, rgba(255, 45, 111, 0.12), rgba(255, 255, 255, 0.035) 48%, rgba(122, 46, 110, 0.12)),
    var(--surface);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
}

.cta-panel::after {
  content: "";
  position: absolute;
  right: -10%;
  top: -40%;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 45, 111, 0.16);
  border-radius: 50%;
  transform: rotate(-18deg) scaleX(1.7);
  pointer-events: none;
}

.cta-panel > * {
  position: relative;
  z-index: 1;
}

.cta-panel p:not(.section-label) {
  max-width: 660px;
  margin: 18px 0 0;
  color: rgba(234, 234, 234, 0.72);
  font-size: 18px;
}

.contact-lines {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.contact-lines a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(0, 0, 0, 0.18);
  font-size: 14px;
  font-weight: 700;
  transition: border-color 300ms ease, color 300ms ease;
}

.contact-lines a:hover {
  color: #fff;
  border-color: rgba(255, 45, 111, 0.48);
}

.site-footer {
  padding: 58px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  background:
    radial-gradient(circle at 15% 15%, rgba(122, 46, 110, 0.13), transparent 24rem),
    #070707;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.7fr 0.8fr 1fr;
  gap: 44px;
  padding-bottom: 44px;
}

.footer-brand img {
  width: 178px;
  margin-bottom: 0;
}

.footer-brand span {
  width: 178px;
  margin-bottom: 24px;
  text-align: center;
}

.footer-brand p,
.site-footer p {
  color: rgba(234, 234, 234, 0.64);
}

.site-footer h3 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.site-footer a {
  display: block;
  width: fit-content;
  margin: 8px 0;
  color: rgba(234, 234, 234, 0.66);
  font-size: 14px;
  transition: color 300ms ease;
}

.site-footer a:hover {
  color: var(--accent);
}

.scroll-top-button {
  position: fixed;
  right: clamp(18px, 4vw, 44px);
  bottom: clamp(18px, 4vw, 42px);
  z-index: 45;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 45, 111, 0.78);
  border-radius: 4px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(255, 45, 111, 0.94), rgba(122, 46, 110, 0.9)),
    var(--accent);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.42), 0 0 24px rgba(255, 45, 111, 0.28);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(0.94);
  transition: opacity 280ms ease, transform 280ms ease, border-color 280ms ease, box-shadow 280ms ease, background 280ms ease;
}

.scroll-top-button.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.scroll-top-button:hover,
.scroll-top-button:focus-visible {
  border-color: rgba(255, 45, 111, 0.74);
  background:
    linear-gradient(145deg, rgba(255, 45, 111, 1), rgba(122, 46, 110, 0.96)),
    var(--accent);
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.48), 0 0 34px rgba(255, 45, 111, 0.36);
  transform: translateY(-3px) scale(1.02);
}

.scroll-top-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

body.settings-open .scroll-top-button,
body.menu-open .scroll-top-button {
  opacity: 0;
  pointer-events: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(234, 234, 234, 0.52);
  font-size: 13px;
}

.footer-bottom p {
  margin: 0;
}

.footer-legal {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.footer-legal a {
  display: inline-flex;
  width: auto;
  margin: 0;
}

.footer-legal span {
  opacity: 0.5;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 900ms ease, transform 900ms ease;
}

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

.hero-copy.reveal {
  opacity: 1;
  transform: none;
}

.hero-copy h1,
.hero-copy p,
.hero-copy .primary-button {
  animation: heroIntro 900ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-copy p {
  animation-delay: 180ms;
}

.hero-copy .primary-button {
  animation-delay: 360ms;
}

@keyframes heroIntro {
  0% {
    opacity: 0;
    transform: translateY(22px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes radarSweep {
  0% {
    transform: rotate(0deg) scaleX(1.26);
  }
  100% {
    transform: rotate(360deg) scaleX(1.26);
  }
}

@keyframes scanLine {
  0%,
  18% {
    transform: translateY(-120%);
    opacity: 0;
  }
  42% {
    opacity: 0.12;
  }
  72%,
  100% {
    transform: translateY(260%);
    opacity: 0;
  }
}

@keyframes scanLineHorizontal {
  0%,
  22% {
    transform: translateX(-110%);
    opacity: 0;
  }
  48% {
    opacity: 0.45;
  }
  78%,
  100% {
    transform: translateX(110%);
    opacity: 0;
  }
}

@keyframes lightPulse {
  0%,
  100% {
    opacity: 0.34;
    transform: scale(0.96);
  }
  50% {
    opacity: 0.62;
    transform: scale(1.04);
  }
}

@keyframes heroGradient {
  0% {
    transform: translate3d(-2%, 0, 0) rotate(0deg) scale(1);
  }
  100% {
    transform: translate3d(3%, 2%, 0) rotate(6deg) scale(1.08);
  }
}

@keyframes slowPulse {
  0%,
  100% {
    opacity: 0.34;
    transform: rotate(-28deg) scaleX(1.55) scale(0.96);
  }
  50% {
    opacity: 0.62;
    transform: rotate(-25deg) scaleX(1.58) scale(1);
  }
}

@keyframes scrollCue {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.42;
  }
  50% {
    transform: translateY(13px);
    opacity: 1;
  }
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto auto auto;
    justify-content: space-between;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .theme-toggle {
    display: none;
  }

  .settings-toggle {
    display: inline-grid;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
    gap: 6px;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 45, 111, 0.3);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
  }

  .menu-toggle span {
    display: block;
    width: 19px;
    height: 2px;
    background: currentColor;
    transition: transform 300ms ease;
  }

  .menu-open .menu-toggle span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-open .menu-toggle span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .site-nav.is-open {
    position: fixed;
    left: 24px;
    right: 24px;
    top: 104px;
    z-index: 80;
    display: grid;
    gap: 0;
    padding: 18px;
    border: 1px solid rgba(255, 45, 111, 0.28);
    border-radius: 8px;
    background: rgba(8, 8, 10, 0.99);
    box-shadow: var(--shadow);
    backdrop-filter: blur(22px);
  }

  .site-nav.is-open a {
    padding: 16px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    font-size: 16px;
  }

  .site-nav.is-open a:last-child {
    border-bottom: 0;
  }

  .hero-copy {
    margin-left: 0;
    max-width: 600px;
  }

  .hero h1 {
    font-size: clamp(48px, 6vw, 72px);
  }

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

  .cert-item:nth-child(2) {
    border-right: 0;
  }

  .cert-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--border);
  }

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

  .feature-card {
    position: relative;
    top: auto;
    min-height: 440px;
  }

  .feature-card img {
    min-height: 440px;
  }

  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

  .value-card:nth-last-child(-n + 3) {
    border-bottom: 0;
  }

  .about-hero-layout,
  .about-story-layout,
  .mission-layout,
  .standards-layout {
    grid-template-columns: 1fr;
  }

  .about-hero-bg {
    inset: 0 0 0 34%;
    opacity: 0.66;
  }

  .about-hero-panel {
    max-width: 640px;
  }

  .story-lead {
    position: relative;
    top: auto;
  }

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

  .mission-text {
    padding-left: 0;
    border-left: 0;
  }

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

@media (max-width: 760px) {
  body .container {
    width: min(100% - 32px, var(--max));
  }

  .site-header {
    top: 12px;
    width: calc(100% - 24px);
    min-height: 64px;
    padding: 9px 10px 9px 14px;
    gap: 10px;
  }

  .brand {
    min-width: 145px;
  }

  .brand img {
    width: 145px;
  }

  .menu-toggle,
  .settings-toggle {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
  }

  .hero {
    min-height: 100vh;
  }

  .hero-guard {
    width: 62%;
    min-width: 280px;
    height: 54vh;
    opacity: 0.46;
  }

  .hero-city {
    width: 70%;
    min-width: 280px;
    height: 58vh;
    opacity: 0.36;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 126px;
    padding-bottom: 84px;
  }

  .hero-copy {
    grid-column: 1;
    margin-left: 0;
    max-width: 100%;
  }

  .hero h1 {
    font-size: 46px;
    line-height: 1;
  }

  .hero p {
    margin: 24px 0 30px;
    font-size: 18px;
  }

  .section {
    padding: 70px 0;
  }

  .section-heading h2,
  .about-copy h2,
  .cta-panel h2,
  .story-lead h2,
  .mission-panel h2,
  .standards-copy h2 {
    font-size: 32px;
  }

  .cert-grid,
  .service-grid,
  .values-grid,
  .client-grid,
  .insight-grid,
  .blog-index-grid,
  .protection-grid,
  .process-grid,
  .standard-cards,
  .expanded-values-grid,
  .related-grid,
  .cta-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .page-main {
    padding-top: 98px;
  }

  .about-page {
    padding-top: 0;
  }

  .about-hero-page {
    min-height: auto;
    padding: 136px 0 72px;
  }

  .about-hero-bg {
    inset: 0;
    opacity: 0.32;
    -webkit-mask-image: linear-gradient(180deg, black, transparent 92%);
    mask-image: linear-gradient(180deg, black, transparent 92%);
  }

  .about-hero-sweep {
    right: -55%;
    top: 14%;
    width: 460px;
    height: 460px;
  }

  .about-hero-copy h1 {
    font-size: 44px;
    line-height: 1;
  }

  .about-hero-copy > p:not(.page-kicker) {
    font-size: 18px;
  }

  .about-hero-panel,
  .protection-grid article,
  .process-card,
  .expanded-value-card {
    padding: 26px;
  }

  .standard-cards article {
    grid-template-columns: 72px 1fr;
  }

  .page-hero {
    padding: 74px 0 54px;
  }

  .page-hero h1 {
    font-size: 42px;
  }

  .page-hero p,
  .article-content p,
  .article-content li {
    font-size: 17px;
  }

  .blog-card,
  .related-card {
    min-height: auto;
  }

  .cert-item,
  .cert-item:nth-child(2),
  .value-card,
  .value-card:nth-child(3n) {
    border-right: 0;
  }

  .cert-item:not(:last-child),
  .value-card:not(:last-child) {
    border-bottom: 1px solid var(--border);
  }

  .feature-card {
    min-height: 520px;
  }

  .feature-card img {
    min-height: 520px;
  }

  .feature-card::after {
    background:
      linear-gradient(180deg, rgba(10, 10, 10, 0.08), rgba(10, 10, 10, 0.88) 62%, rgba(10, 10, 10, 0.95)),
      linear-gradient(180deg, transparent, rgba(255, 45, 111, 0.08));
  }

  .feature-card-copy {
    right: 24px;
    left: 24px;
    bottom: 28px;
    max-width: none;
  }

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

  .about-media {
    inset: 24% 0 0;
    opacity: 0.76;
  }

  .about-inner {
    min-height: 620px;
    align-items: start;
  }

  .about-copy {
    padding-top: 72px;
  }

  .cta-panel {
    padding: 30px;
  }

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

  .scroll-top-button {
    right: 18px;
    bottom: 34px;
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 430px) {
  .hero h1 {
    font-size: 40px;
  }

  .primary-button,
  .header-cta {
    width: 100%;
  }

  .cert-item {
    padding: 20px 0;
  }

  .service-card,
  .insight-card,
  .about-hero-panel,
  .protection-grid article,
  .process-card,
  .expanded-value-card {
    padding: 24px;
  }

  .settings-shell {
    width: min(100% - 28px, 640px);
  }

  .settings-sheet {
    max-height: 88vh;
    border-radius: 28px 28px 0 0;
  }

  .settings-row {
    grid-template-columns: 44px minmax(0, 1fr) auto;
    gap: 12px;
    min-height: 74px;
    padding: 14px 16px;
  }

  .settings-icon {
    width: 44px;
    height: 44px;
  }

  .settings-row strong {
    font-size: 17px;
  }

  .settings-size {
    grid-template-columns: repeat(3, 32px);
    gap: 6px;
  }

  .about-hero-copy h1 {
    font-size: 38px;
  }

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

  .about-hero-actions .text-link {
    width: fit-content;
  }
}

html[data-text-size] body {
  font-size: calc(16px * var(--read-scale));
}

html[data-text-size] .hero p {
  font-size: clamp(calc(18px * var(--read-scale)), 1.6vw, calc(22px * var(--read-scale)));
}

html[data-text-size] .section-intro,
html[data-text-size] .page-hero p,
html[data-text-size] .about-hero-copy > p:not(.page-kicker),
html[data-text-size] .mission-text p,
html[data-text-size] .story-copy p,
html[data-text-size] .contact-text p {
  font-size: clamp(calc(17px * var(--read-scale)), 1.35vw, calc(20px * var(--read-scale)));
}

html[data-text-size] .service-card p,
html[data-text-size] .value-card p,
html[data-text-size] .insight-card p,
html[data-text-size] .blog-card p,
html[data-text-size] .related-card p,
html[data-text-size] .protection-grid article p,
html[data-text-size] .process-card p,
html[data-text-size] .expanded-value-card p,
html[data-text-size] .feature-card p,
html[data-text-size] .contact-lines a,
html[data-text-size] .site-footer a,
html[data-text-size] .site-footer p {
  font-size: calc(16px * var(--read-scale));
}

html[data-text-size] .article-content p,
html[data-text-size] .article-content li,
html[data-text-size] .story-lead p {
  font-size: calc(18px * var(--read-scale));
}

html[data-text-size] .blog-card h2,
html[data-text-size] .related-card h3,
html[data-text-size] .article-content h2,
html[data-text-size] .article-content h3 {
  font-size: clamp(26px, 2.2vw, calc(32px * var(--read-scale)));
}

html[data-text-size] .settings-row strong,
html[data-text-size] .settings-about strong {
  font-size: calc(18px * var(--read-scale));
}

html[data-text-size] .settings-row > span:nth-child(2) > span,
html[data-text-size] .settings-about span span {
  font-size: calc(13px * var(--read-scale));
}

html[data-text-size] .settings-size button {
  font-size: calc(13px * var(--read-scale));
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

html[data-reduce-motion="true"] {
  scroll-behavior: auto;
}

html[data-reduce-motion="true"] *,
html[data-reduce-motion="true"] *::before,
html[data-reduce-motion="true"] *::after {
  animation-duration: 0.001ms !important;
  animation-iteration-count: 1 !important;
  scroll-behavior: auto !important;
  transition-duration: 0.001ms !important;
}

html[data-reduce-motion="true"] .reveal {
  opacity: 1;
  transform: none;
}
