:root {
  --bg: #07111f;
  --bg-soft: #0c1930;
  --panel: rgba(9, 18, 36, 0.76);
  --panel-strong: #0d1830;
  --panel-alt: rgba(13, 26, 49, 0.94);
  --line: rgba(151, 185, 255, 0.16);
  --line-strong: rgba(151, 185, 255, 0.32);
  --text: #edf4ff;
  --muted: #9eb2d1;
  --accent: #77f2d5;
  --accent-strong: #4bc2ff;
  --accent-warm: #ffd979;
  --shadow: 0 30px 90px rgba(2, 6, 23, 0.45);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(1180px, calc(100vw - 40px));
}

/* Base */

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(57, 126, 255, 0.18), transparent 36%),
    radial-gradient(circle at 80% 20%, rgba(119, 242, 213, 0.18), transparent 25%),
    linear-gradient(180deg, #040914 0%, #07111f 28%, #081426 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
}

body::before {
  background:
    radial-gradient(circle at 12% 18%, rgba(75, 194, 255, 0.14), transparent 20%),
    radial-gradient(circle at 84% 14%, rgba(119, 242, 213, 0.1), transparent 16%),
    radial-gradient(circle at 78% 74%, rgba(255, 217, 121, 0.08), transparent 16%);
  filter: blur(24px);
}

body::after {
  background-image:
    linear-gradient(rgba(151, 185, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(151, 185, 255, 0.03) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: radial-gradient(circle at center, black 30%, transparent 82%);
  opacity: 0.65;
}

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

button,
input,
textarea {
  font: inherit;
}

svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Shell */

.site-shell {
  position: relative;
  overflow: clip;
}

.site-shell::before {
  content: "";
  position: absolute;
  inset: 180px -10% auto;
  height: 780px;
  background:
    radial-gradient(circle at 18% 26%, rgba(75, 194, 255, 0.08), transparent 18%),
    radial-gradient(circle at 82% 38%, rgba(119, 242, 213, 0.08), transparent 18%);
  filter: blur(26px);
  pointer-events: none;
  z-index: -1;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: var(--container);
  margin: 18px auto 0;
  padding: 12px 18px;
  border: 1px solid rgba(14, 28, 54, 0.12);
  border-radius: 999px;
  background: #fff;
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 50px rgba(4, 10, 23, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 82px;
  height: 58px;
  flex-shrink: 0;
}

.brand-logo {
  display: block;
  width: 82px;
  height: 58px;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-copy strong {
  font-size: 1rem;
  font-weight: 800;
  color: #07111f;
}

.brand-copy span {
  color: rgba(14, 28, 54, 0.66);
  font-size: 0.76rem;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
  color: rgba(14, 28, 54, 0.82);
}

.site-nav a {
  position: relative;
  font-size: 0.95rem;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.site-nav a[aria-current="page"] {
  color: #07111f;
  font-weight: 700;
}

.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(14, 28, 54, 0.14);
  border-radius: 50%;
  color: #07111f;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: #04111e;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  box-shadow: 0 16px 30px rgba(75, 194, 255, 0.2);
}

.button-secondary,
.button-ghost {
  border-color: rgba(151, 185, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
}

/* Layout */

.hero,
.section,
.metrics,
.footer {
  width: var(--container);
  margin: 0 auto;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 48px;
  padding: 86px 0 42px;
  min-height: calc(100vh - 110px);
  align-items: center;
}

/* Hero */

.hero::after {
  content: "";
  position: absolute;
  inset: -12%;
  background:
    radial-gradient(circle at var(--spot-x, 74%) var(--spot-y, 24%), rgba(119, 242, 213, 0.12), transparent 18%),
    radial-gradient(circle at calc(var(--spot-x, 74%) - 12%) calc(var(--spot-y, 24%) + 10%), rgba(75, 194, 255, 0.14), transparent 24%);
  z-index: -1;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.glow {
  position: absolute;
  filter: blur(60px);
  opacity: 0.65;
}

.glow-a {
  inset: 6% auto auto 8%;
  width: 280px;
  height: 280px;
  background: rgba(75, 194, 255, 0.32);
}

.glow-b {
  inset: auto 10% 5% auto;
  width: 260px;
  height: 260px;
  background: rgba(119, 242, 213, 0.25);
}

.grid-plane {
  position: absolute;
  inset: 12% 0 auto;
  height: 68%;
  border-radius: 40px;
  background-image:
    linear-gradient(rgba(151, 185, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(151, 185, 255, 0.08) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(180deg, transparent 0%, black 20%, black 80%, transparent 100%);
  opacity: 0.35;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(119, 242, 213, 0.15);
  border-radius: 50%;
  animation: pulse 8s ease-in-out infinite;
}

.orbit-a {
  top: 10%;
  right: 6%;
  width: 420px;
  height: 420px;
}

.orbit-b {
  bottom: 2%;
  left: 20%;
  width: 240px;
  height: 240px;
  animation-delay: -3s;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.82rem;
  font-weight: 800;
}

.hero h1,
.section-heading h2,
.about-copy h2,
.contact-copy h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  line-height: 0.98;
}

.hero h1 {
  max-width: 12ch;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  letter-spacing: -0.05em;
}

.hero-text,
.section-heading p,
.about-copy p,
.contact-copy p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.04rem;
}

.hero-text {
  max-width: 62ch;
  margin: 24px 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.hero-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(151, 185, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #dfe9f8;
  box-shadow: 0 10px 24px rgba(2, 6, 23, 0.18);
}

.mini-icon {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  color: var(--accent);
  background: linear-gradient(180deg, rgba(119, 242, 213, 0.14), rgba(75, 194, 255, 0.08));
  border: 1px solid rgba(119, 242, 213, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.mini-icon svg {
  width: 17px;
  height: 17px;
}

.proof-head,
.metric-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

:is(
    .hero-proof div,
    .floating-card,
    .service-card,
    .feature-panel,
    .timeline article,
    .trust-grid article,
    .contact-card,
    .metric,
    .hero-card-main
  ) {
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

:is(
    .service-card,
    .metric,
    .product-card,
    .detail-card,
    .info-card,
    .feature-panel,
    .page-panel,
    .cta-band,
    .hero-card-main
  ) {
  position: relative;
  overflow: hidden;
}

:is(
    .service-card,
    .metric,
    .product-card,
    .detail-card,
    .info-card,
    .feature-panel,
    .page-panel,
    .cta-band,
    .hero-card-main
  )
  > * {
  position: relative;
  z-index: 1;
}

:is(
    .service-card,
    .metric,
    .product-card,
    .detail-card,
    .info-card,
    .feature-panel,
    .page-panel,
    .cta-band,
    .hero-card-main
  )::after {
  content: "";
  position: absolute;
  inset: -20% auto auto 72%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(75, 194, 255, 0.2), transparent 68%);
  opacity: 0.75;
  pointer-events: none;
}

:is(
    .service-card,
    .metric,
    .product-card,
    .detail-card,
    .info-card,
    .feature-panel,
    .page-panel,
    .cta-band,
    .hero-card-main
  )::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.04), transparent 35%),
    linear-gradient(180deg, rgba(119, 242, 213, 0.04), transparent 44%);
  pointer-events: none;
}

.hero-proof div {
  padding: 18px;
  border-radius: var(--radius-md);
}

.hero-proof strong {
  display: block;
  margin-bottom: 0;
  font-size: 1rem;
}

.hero-proof span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.hero-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-content: start;
}

.hero-panel-database {
  grid-template-columns: 1fr;
  align-items: center;
}

.hero-database-stage {
  position: relative;
  min-height: 620px;
  animation: drift 8s ease-in-out infinite;
}

.hero-database-glow {
  position: absolute;
  inset: 8% 12% 12%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(75, 194, 255, 0.3) 0%, rgba(75, 194, 255, 0.08) 38%, transparent 68%);
  filter: blur(22px);
  pointer-events: none;
}

.hero-database-image {
  position: absolute;
  top: 65px;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  width: min(100%, 470px);
  height: auto;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 30px 60px rgba(2, 6, 23, 0.46));
}

.hero-database-callouts {
  position: absolute;
  inset: 0;
}

.hero-database-callout {
  position: absolute;
  width: min(240px, 42%);
  padding: 16px 18px 18px;
  border: 1px solid rgba(151, 185, 255, 0.14);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(10, 20, 38, 0.76), rgba(7, 16, 31, 0.9)),
    radial-gradient(circle at top right, rgba(75, 194, 255, 0.14), transparent 32%);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-database-callout::before,
.hero-database-callout::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.hero-database-callout::before {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  box-shadow: 0 0 0 6px rgba(119, 242, 213, 0.08);
}

.hero-database-callout::after {
  display: none;
}

.hero-database-callout strong {
  display: block;
  margin-bottom: 8px;
  color: var(--accent-warm);
  font-size: 1.45rem;
  font-family: "Space Grotesk", sans-serif;
}

.hero-database-callout span {
  color: var(--muted);
  line-height: 1.55;
}

.hero-database-callout-a {
  top: 15%;
  left: 0;
}

.hero-database-callout-a::before {
  right: -24px;
}

.hero-database-callout-b {
  top: 36%;
  right: 0;
}

.hero-database-callout-b::before {
  left: -24px;
}

.hero-database-callout-c {
  bottom: 14%;
  left: 2%;
}

.hero-database-callout-c::before {
  right: -24px;
}


.hero-card-main {
  position: relative;
  inset: auto;
  grid-column: 1 / -1;
  padding: 28px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(14, 28, 54, 0.96), rgba(7, 16, 31, 0.88)),
    radial-gradient(circle at top right, rgba(75, 194, 255, 0.18), transparent 30%);
}

.panel-heading,
.scoreboard,
.capability-list,
.feature-list,
.contact-details {
  display: grid;
}

.panel-heading {
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  color: var(--muted);
  font-size: 0.92rem;
}

.status-pill,
.card-kicker,
.panel-label,
.timeline article span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  color: #c2f7eb;
  background: rgba(119, 242, 213, 0.12);
  border: 1px solid rgba(119, 242, 213, 0.18);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.scoreboard {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.scoreboard article {
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(151, 185, 255, 0.08);
}

.scoreboard strong {
  display: block;
  margin-bottom: 10px;
  color: var(--accent-warm);
  font-size: 1.6rem;
  font-family: "Space Grotesk", sans-serif;
}

.scoreboard span,
.capability-list div,
.feature-list span,
.contact-details p {
  color: var(--muted);
  line-height: 1.6;
}

.capability-list {
  gap: 14px;
  margin-top: 26px;
}

.capability-list div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(151, 185, 255, 0.08);
}

.capability-list div:last-child {
  border-bottom: 0;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  box-shadow: 0 0 16px rgba(119, 242, 213, 0.6);
}

.floating-card {
  position: relative;
  width: auto;
  min-height: 100%;
  padding: 18px 18px 20px;
  border-radius: 22px;
  background: rgba(10, 20, 38, 0.85);
}

.floating-card strong {
  display: block;
  margin-top: 14px;
  font-size: 1.18rem;
}

.floating-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.floating-card-a {
  animation: drift 7s ease-in-out infinite;
}

.floating-card-b {
  animation: drift 8s ease-in-out infinite -2.2s;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 10px;
  padding-bottom: 28px;
}

.metric {
  padding: 24px;
  border-radius: var(--radius-lg);
}

.metric strong {
  display: block;
  margin-bottom: 0;
  color: var(--accent);
  font-size: 1.1rem;
  font-family: "Space Grotesk", sans-serif;
}

.metric span {
  color: var(--muted);
  line-height: 1.65;
}

/* Sections */

.section {
  padding: 72px 0;
}

.section-alt {
  position: relative;
}

.section-alt::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 40px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01)),
    rgba(255, 255, 255, 0.015);
  z-index: -1;
}

.section-alt-roomy::before {
  inset: 0 -28px;
}

@media (max-width: 640px) {
  .section-alt-roomy::before {
    inset: 0 -10px;
  }
}

.section-heading {
  max-width: 820px;
}

.section-heading-compact {
  max-width: none;
}

.section-heading h2,
.about-copy h2,
.contact-copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  letter-spacing: -0.05em;
}

.section-heading p {
  margin: 20px 0 0;
}

.split-heading {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 30px;
  align-items: end;
}

.service-grid,
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 34px;
}

.service-card,
.trust-grid article {
  padding: 24px;
  border-radius: var(--radius-lg);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.service-card:hover,
.product-card:hover,
.detail-card:hover,
.info-card:hover,
.metric:hover {
  transform: translateY(-6px);
  border-color: rgba(119, 242, 213, 0.22);
  box-shadow: 0 24px 50px rgba(2, 8, 24, 0.32);
}

.icon-chip {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  color: var(--accent);
  background: rgba(119, 242, 213, 0.08);
  border: 1px solid rgba(119, 242, 213, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 12px 30px rgba(75, 194, 255, 0.12);
}

.service-card h3,
.solution-stack h3,
.feature-panel h3,
.timeline h3,
.about-copy h2,
.contact-copy h2 {
  margin: 18px 0 0;
}

.service-card p,
.solution-stack p,
.timeline p,
.trust-grid span {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.hero-subpage {
  min-height: auto;
  padding-top: 68px;
  padding-bottom: 22px;
  align-items: end;
}

.hero-subpage h1 {
  max-width: 11ch;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
}

.section-tight {
  padding-top: 22px;
  padding-bottom: 22px;
}

.page-panel,
.detail-card,
.product-card,
.info-card,
.cta-band,
.contact-form {
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.page-panel,
.contact-form,
.info-card,
.cta-band {
  border-radius: var(--radius-xl);
}

.page-panel {
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(14, 28, 54, 0.94), rgba(7, 16, 31, 0.9)),
    radial-gradient(circle at top right, rgba(75, 194, 255, 0.15), transparent 35%);
}

.hero-service-canvas {
  min-height: 340px;
}

.hero-product-visual {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-product-layer-wrap {
  position: relative;
  width: min(100%, 320px);
  animation: drift 8s ease-in-out infinite;
}

.hero-product-layer-wrap::before {
  content: "";
  position: absolute;
  inset: 10% 12%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(75, 194, 255, 0.24) 0%, rgba(75, 194, 255, 0.08) 38%, transparent 70%);
  filter: blur(24px);
  pointer-events: none;
}

.hero-product-layer-wrap::after {
  content: "";
  position: absolute;
  inset: 2% 4%;
  border-radius: 32px;
  background:
    radial-gradient(circle at 50% 50%, rgba(119, 242, 213, 0.1), transparent 44%),
    repeating-linear-gradient(90deg, rgba(151, 185, 255, 0.08) 0 1px, transparent 1px 24px),
    repeating-linear-gradient(180deg, rgba(151, 185, 255, 0.08) 0 1px, transparent 1px 24px);
  mask-image: radial-gradient(circle at center, transparent 28%, black 29%, black 62%, transparent 63%);
  opacity: 0.48;
  pointer-events: none;
}

.hero-product-layer {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter:
    saturate(1.08)
    contrast(1.04)
    hue-rotate(-8deg)
    drop-shadow(0 0 22px rgba(75, 194, 255, 0.16))
    drop-shadow(0 28px 56px rgba(2, 6, 23, 0.42));
}

.detail-grid,
.product-grid,
.info-grid,
.contact-layout,
.image-showcase,
.image-canvas-stack {
  display: grid;
  gap: 20px;
}

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

.detail-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.detail-card,
.product-card,
.info-card {
  padding: 24px;
  border-radius: var(--radius-lg);
}

.mini-card {
  padding: 20px 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(9, 18, 36, 0.74);
  box-shadow: var(--shadow);
}

.mini-card span {
  color: var(--muted);
  line-height: 1.65;
}

.detail-card h3,
.product-card h3,
.info-card h3 {
  margin: 0;
  font-size: 1.28rem;
}

.detail-card p,
.product-card p,
.info-card p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.icon-list {
  display: grid;
  gap: 16px;
}

.icon-list-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
}

.icon-list-item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}

.icon-list-item span {
  color: var(--muted);
  line-height: 1.6;
}

.principles-panel {
  padding: 24px;
}

.principle-bars {
  display: grid;
  gap: 12px;
}

.principle-bar {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  width: min(100%, var(--bar-width, 100%));
  padding: 16px 18px;
  border: 1px solid rgba(151, 185, 255, 0.14);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.principle-bar .mini-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}

.principle-bar strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1rem;
}

.principle-bar span:last-child {
  color: rgba(237, 244, 255, 0.84);
  line-height: 1.5;
}

.principle-bar-blue {
  background:
    linear-gradient(135deg, rgba(49, 92, 182, 0.42), rgba(15, 32, 68, 0.9)),
    rgba(9, 18, 36, 0.82);
  border-color: rgba(98, 146, 255, 0.24);
}

.principle-bar-mint {
  background:
    linear-gradient(135deg, rgba(28, 124, 115, 0.42), rgba(8, 35, 39, 0.9)),
    rgba(9, 18, 36, 0.82);
  border-color: rgba(119, 242, 213, 0.22);
}

.principle-bar-gold {
  background:
    linear-gradient(135deg, rgba(143, 103, 24, 0.4), rgba(41, 25, 6, 0.9)),
    rgba(9, 18, 36, 0.82);
  border-color: rgba(255, 217, 121, 0.22);
}

.mini-cta {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.align-left {
  justify-content: flex-start;
}

/* Media canvases */

.product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.section-alt-roomy .product-card {
  padding-top: 28px;
  padding-bottom: 30px;
}

.section-alt-roomy .product-card .card-kicker {
  margin-bottom: 16px;
}

.product-grid-large {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-grid-large .product-card .card-kicker {
  margin-bottom: 16px;
}

.image-showcase-home {
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  margin-top: 34px;
}

.about-showcase,
.about-showcase-stack {
  display: grid;
  gap: 20px;
}

.about-showcase {
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  margin-top: 34px;
  align-items: stretch;
}

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

.image-showcase-single {
  grid-template-columns: 1fr;
}

.about-story-canvas {
  min-height: 720px;
}

.about-story-frame {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 720px;
  padding: 28px;
}

.about-story-header,
.about-story-card {
  border: 1px solid rgba(151, 185, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(7, 16, 31, 0.64), rgba(7, 16, 31, 0.86)),
    rgba(7, 16, 31, 0.54);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.about-story-header {
  max-width: 520px;
  padding: 24px 26px;
  border-radius: 28px;
}

.about-story-header .eyebrow {
  margin-bottom: 14px;
}

.about-story-header h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  letter-spacing: -0.05em;
}

.about-story-header p:last-child {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

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

.about-story-card {
  padding: 22px;
  border-radius: 24px;
}

.about-story-card .metric-top {
  margin-bottom: 18px;
}

.about-story-card h3 {
  margin: 0;
  font-size: 1.22rem;
}

.about-story-card p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.image-canvas {
  position: relative;
  overflow: hidden;
  border: 1px dashed rgba(151, 185, 255, 0.26);
  border-radius: var(--radius-xl);
  background-color: rgba(6, 13, 27, 0.52);
  background-image:
    linear-gradient(180deg, rgba(10, 20, 38, 0.12), rgba(6, 13, 27, 0.36)),
    radial-gradient(circle at top right, rgba(119, 242, 213, 0.06), transparent 28%),
    var(--canvas-image);
  background-position: center, center, var(--canvas-position, center);
  background-size: auto, auto, var(--canvas-size, cover);
  background-repeat: no-repeat;
  box-shadow: var(--shadow);
}

.image-canvas::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(151, 185, 255, 0.12);
  border-radius: calc(var(--radius-xl) - 8px);
  background-image:
    linear-gradient(rgba(151, 185, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(151, 185, 255, 0.07) 1px, transparent 1px);
  background-size: 34px 34px;
  pointer-events: none;
}

.image-canvas::after {
  content: "";
  position: absolute;
  inset: auto 28px 92px auto;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 1px solid rgba(119, 242, 213, 0.16);
  box-shadow: 0 0 0 18px rgba(119, 242, 213, 0.04);
  pointer-events: none;
}

.image-canvas--hero {
  min-height: 520px;
}

.image-canvas--wide {
  min-height: 320px;
}

.image-canvas--square {
  min-height: 250px;
}

.image-canvas--tall {
  min-height: 420px;
}

.image-canvas-copy {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 1;
  max-width: 360px;
  padding: 18px 20px;
  border: 1px solid rgba(151, 185, 255, 0.12);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(7, 16, 31, 0.34), rgba(7, 16, 31, 0.58)),
    rgba(7, 16, 31, 0.24);
  backdrop-filter: blur(16px);
}

.image-canvas-copy--wide {
  max-width: 520px;
}

.product-card .metric-top {
  margin-bottom: 18px;
}

.image-canvas-copy h3 {
  margin: 14px 0 0;
  font-size: 1.35rem;
}

.image-canvas-copy p {
  margin: 12px 0 0;
  max-width: 34ch;
  color: var(--muted);
  line-height: 1.65;
}

.canvas-point-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.canvas-point {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(151, 185, 255, 0.14);
  border-radius: 999px;
  background: rgba(7, 16, 31, 0.6);
  color: #f2f7ff;
  font-size: 0.95rem;
  font-weight: 700;
}

.canvas-point .mini-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(119, 242, 213, 0.1);
}

/* Canvas fallbacks */

.canvas-scene-command {
  background-image:
    linear-gradient(180deg, rgba(10, 20, 38, 0.42), rgba(6, 13, 27, 0.88)),
    radial-gradient(circle at 24% 24%, rgba(75, 194, 255, 0.24), transparent 14%),
    linear-gradient(180deg, transparent 0 54%, rgba(4, 11, 22, 0.92) 54% 100%),
    linear-gradient(90deg, rgba(151, 185, 255, 0.15) 0 17%, transparent 17% 21%, rgba(151, 185, 255, 0.12) 21% 45%, transparent 45% 52%, rgba(151, 185, 255, 0.16) 52% 78%, transparent 78% 84%, rgba(151, 185, 255, 0.12) 84% 100%),
    repeating-linear-gradient(180deg, rgba(119, 242, 213, 0.08) 0 2px, transparent 2px 24px),
    var(--canvas-image);
}

.canvas-scene-network {
  background-image:
    linear-gradient(180deg, rgba(10, 20, 38, 0.4), rgba(6, 13, 27, 0.82)),
    radial-gradient(circle at 20% 28%, rgba(75, 194, 255, 0.26), transparent 12%),
    radial-gradient(circle at 76% 22%, rgba(119, 242, 213, 0.22), transparent 12%),
    radial-gradient(circle at 48% 56%, rgba(255, 217, 121, 0.12), transparent 10%),
    linear-gradient(130deg, transparent 0 26%, rgba(151, 185, 255, 0.12) 26% 27%, transparent 27% 49%, rgba(151, 185, 255, 0.12) 49% 50%, transparent 50% 100%),
    linear-gradient(52deg, transparent 0 38%, rgba(119, 242, 213, 0.1) 38% 39%, transparent 39% 64%, rgba(119, 242, 213, 0.1) 64% 65%, transparent 65% 100%),
    var(--canvas-image);
}

.canvas-scene-observe {
  background-image:
    linear-gradient(180deg, rgba(10, 20, 38, 0.38), rgba(6, 13, 27, 0.82)),
    radial-gradient(circle at 18% 22%, rgba(75, 194, 255, 0.22), transparent 14%),
    linear-gradient(180deg, rgba(151, 185, 255, 0.08) 0 12%, transparent 12% 100%),
    linear-gradient(90deg, transparent 0 46%, rgba(151, 185, 255, 0.12) 46% 47%, transparent 47% 100%),
    repeating-linear-gradient(180deg, rgba(151, 185, 255, 0.09) 0 1px, transparent 1px 26px),
    repeating-linear-gradient(90deg, rgba(151, 185, 255, 0.07) 0 1px, transparent 1px 38px),
    var(--canvas-image);
}

.canvas-scene-threat {
  background-image:
    linear-gradient(180deg, rgba(10, 20, 38, 0.44), rgba(6, 13, 27, 0.88)),
    radial-gradient(circle at 24% 30%, rgba(75, 194, 255, 0.16), transparent 16%),
    radial-gradient(circle at 68% 22%, rgba(255, 217, 121, 0.16), transparent 10%),
    radial-gradient(circle at 76% 66%, rgba(119, 242, 213, 0.12), transparent 12%),
    repeating-linear-gradient(0deg, rgba(151, 185, 255, 0.08) 0 1px, transparent 1px 22px),
    linear-gradient(135deg, transparent 0 36%, rgba(255, 217, 121, 0.12) 36% 37%, transparent 37% 54%, rgba(75, 194, 255, 0.12) 54% 55%, transparent 55% 100%),
    var(--canvas-image);
}

.canvas-scene-office {
  background-image:
    linear-gradient(180deg, rgba(10, 20, 38, 0.4), rgba(6, 13, 27, 0.86)),
    radial-gradient(circle at 22% 24%, rgba(75, 194, 255, 0.18), transparent 14%),
    linear-gradient(180deg, transparent 0 58%, rgba(6, 13, 27, 0.88) 58% 100%),
    linear-gradient(90deg, rgba(151, 185, 255, 0.08) 0 20%, transparent 20% 24%, rgba(151, 185, 255, 0.06) 24% 46%, transparent 46% 54%, rgba(151, 185, 255, 0.08) 54% 76%, transparent 76% 82%, rgba(151, 185, 255, 0.06) 82% 100%),
    linear-gradient(180deg, transparent 0 72%, rgba(255, 255, 255, 0.05) 72% 74%, transparent 74% 100%),
    var(--canvas-image);
}

.card-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.card-list li {
  position: relative;
  margin-top: 12px;
  padding-left: 18px;
  color: #d7e2f5;
  line-height: 1.55;
}

.card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
}

/* Content layouts */

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

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 32px;
  background:
    linear-gradient(135deg, rgba(10, 20, 38, 0.88), rgba(7, 16, 31, 0.96)),
    radial-gradient(circle at top right, rgba(119, 242, 213, 0.14), transparent 32%);
}

.cta-band h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.cta-band p:last-child {
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.75;
}

.contact-layout {
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  align-items: start;
}

.contact-form {
  padding: 30px;
}

.contact-stack {
  display: grid;
  gap: 20px;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field span {
  font-size: 0.92rem;
  color: #d7e2f5;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid rgba(151, 185, 255, 0.16);
  border-radius: 16px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  outline: none;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(119, 242, 213, 0.5);
  box-shadow: 0 0 0 4px rgba(119, 242, 213, 0.1);
}

.field textarea {
  resize: vertical;
}

.field-full {
  grid-column: 1 / -1;
}

.service-card ul {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  margin-top: 12px;
  padding-left: 18px;
  color: #d7e2f5;
  line-height: 1.55;
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
}

.solution-layout,
.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 400px);
  gap: 28px;
  margin-top: 34px;
}

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

.solution-stack article,
.feature-panel {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--panel-alt);
  border: 1px solid rgba(151, 185, 255, 0.14);
}

.solution-stack article span {
  color: var(--accent);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
}

.panel-label {
  margin-bottom: 18px;
}

.feature-panel {
  display: flex;
  flex-direction: column;
}

.feature-panel h3 {
  font-size: 1.9rem;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.feature-list {
  gap: 20px;
  margin-top: 26px;
}

.feature-list strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.timeline article {
  padding: 24px;
  border-radius: var(--radius-lg);
}

.timeline article span {
  margin-bottom: 20px;
}

.timeline-flow {
  position: relative;
  gap: 24px;
  align-items: start;
}

.timeline-flow article {
  position: relative;
  padding: 70px 12px 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  transform: none;
}

.timeline-flow article::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 24px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  box-shadow:
    0 0 0 8px rgba(119, 242, 213, 0.08),
    0 10px 24px rgba(75, 194, 255, 0.22);
}

.timeline-flow article::after {
  content: "";
  position: absolute;
  top: 36px;
  left: calc(24px + 22px);
  width: calc(100% - 24px);
  height: 1px;
  background: linear-gradient(90deg, rgba(119, 242, 213, 0.5), rgba(151, 185, 255, 0.05));
}

.timeline-flow article:last-child::after {
  display: none;
}

.timeline-flow article span {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 14px;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: var(--accent);
  background: transparent;
  box-shadow: none;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
}

.timeline-flow h3 {
  margin-top: 0;
}

.timeline-flow p {
  max-width: 26ch;
}

.timeline-flow article:hover {
  transform: none;
  border-color: transparent;
  box-shadow: none;
}

.about-copy {
  max-width: 700px;
}

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

.trust-grid article {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 188px;
}

.trust-grid strong,
.contact-details a {
  font-size: 1.05rem;
  font-weight: 800;
}

.contact-section {
  padding-bottom: 92px;
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 28px;
  padding: 34px;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(10, 20, 38, 0.9), rgba(7, 16, 31, 0.94)),
    radial-gradient(circle at top right, rgba(75, 194, 255, 0.18), transparent 32%);
}

.contact-details {
  align-content: start;
  gap: 14px;
}

.contact-details a {
  display: inline-flex;
  width: fit-content;
}

.contact-details a:first-child {
  color: var(--accent-warm);
}

.contact-details p {
  margin: 10px 0 0;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 0 0 40px;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer a {
  color: var(--text);
}

.footer-links {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 18px;
}

/* Motion */

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

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

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.75;
  }
  50% {
    transform: scale(1.06);
    opacity: 0.25;
  }
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -12px, 0);
  }
}

/* Responsive */

@media (max-width: 1080px) {
  .topbar {
    border-radius: 26px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 62px;
  }

  .hero h1 {
    max-width: 14ch;
  }

  .hero-panel {
    grid-template-columns: 1fr;
  }

  .hero-database-stage {
    min-height: 560px;
  }

  .hero-database-image {
    top: 14px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: min(100%, 430px);
  }

  .hero-database-callout {
    width: min(220px, 40%);
  }

  .hero-database-callout-a::after {
    right: -92px;
    width: 68px;
  }

  .hero-database-callout-b::after {
    left: -92px;
    width: 68px;
  }

  .hero-database-callout-c::after {
    right: -110px;
    width: 86px;
  }

  .hero-product-layer-wrap {
    width: min(100%, 280px);
  }

  .service-grid,
  .timeline,
  .detail-grid,
  .inner-metrics,
  .product-grid,
  .product-grid-large,
  .info-grid,
  .image-showcase-dual {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-heading,
  .solution-layout,
  .about-layout,
  .contact-card,
  .contact-layout,
  .cta-band,
  .image-showcase-home,
  .about-showcase {
    grid-template-columns: 1fr;
  }

  .about-story-grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 860px) {
  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 8px;
    border: 1px solid rgba(14, 28, 54, 0.12);
    border-radius: 24px;
    background: #fff;
    backdrop-filter: blur(20px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .site-nav a {
    padding: 14px 16px;
    border-radius: 16px;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: rgba(7, 17, 31, 0.05);
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero-proof,
  .metrics,
  .scoreboard,
  .hero-pill-row,
  .service-grid,
  .solution-stack,
  .timeline,
  .trust-grid,
  .detail-grid,
  .inner-metrics,
  .product-grid,
  .product-grid-large,
  .info-grid,
  .form-grid,
  .image-showcase-dual,
  .about-showcase-stack {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    grid-template-columns: 1fr;
  }

  .hero-database-stage {
    min-height: auto;
    padding-bottom: 20px;
  }

  .hero-database-image {
    position: relative;
    display: block;
    margin: 0 auto;
  }

  .hero-database-callouts {
    position: relative;
    display: grid;
    gap: 14px;
    margin-top: 250px;
  }

  .hero-database-callout {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
  }

  .hero-database-callout::before,
  .hero-database-callout::after {
    display: none;
  }

  .field-full {
    grid-column: auto;
  }

  .hero-product-visual {
    justify-content: flex-start;
  }

  .hero-product-layer-wrap {
    width: min(100%, 240px);
  }

  .about-story-canvas,
  .about-story-frame {
    min-height: auto;
  }

  .timeline-flow article {
    padding: 0;
  }

  .timeline-flow article::before,
  .timeline-flow article::after {
    display: none;
  }

  .timeline-flow article span {
    margin-bottom: 10px;
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(1180px, calc(100vw - 24px));
  }

  .topbar {
    margin-top: 12px;
    padding: 12px 14px;
  }

  .hero {
    padding-top: 40px;
    gap: 28px;
  }

  .hero-database-stage {
    min-height: 440px;
  }

  .hero-database-image {
    top: 10px;
    width: min(100%, 316px);
  }

  .hero-database-callouts {
    margin-top: 214px;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 13vw, 3.6rem);
  }

  .hero-product-layer-wrap {
    width: min(100%, 200px);
  }

  .hero-text,
  .section-heading p,
  .about-copy p,
  .contact-copy p {
    font-size: 0.98rem;
  }

  .image-canvas-copy {
    left: 20px;
    right: 20px;
    bottom: 20px;
    padding: 16px 18px;
  }

  .about-story-frame {
    padding: 20px;
    gap: 18px;
  }

  .about-story-header,
  .about-story-card {
    padding: 18px;
  }

  .canvas-point-grid {
    gap: 10px;
  }

  .canvas-point {
    width: 100%;
    justify-content: flex-start;
  }

  .hero-card-main,
  .service-card,
  .feature-panel,
  .timeline article,
  .trust-grid article,
  .contact-card,
  .metric {
    padding: 20px;
  }

  .section {
    padding: 58px 0;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 28px;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0ms !important;
    transition-delay: 0ms !important;
  }

  .reveal,
  .reveal.is-visible {
    opacity: 1;
    transform: none;
  }
}
