:root {
  --ink: #111528;
  --ink-soft: #40455c;
  --navy: #0b1226;
  --navy-light: #141e39;
  --blue: #5d8ff5;
  --blue-strong: #3977f3;
  --blue-soft: #eaf1ff;
  --coral: #ff7b5d;
  --coral-soft: #fff0eb;
  --line: #dfe4ec;
  --muted: #687086;
  --surface: #f5f7fb;
  --white: #ffffff;
  --container: 1496px;
  --shadow: 0 24px 60px rgba(28, 43, 79, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Pretendard, Inter, "Noto Sans KR", "Apple SD Gothic Neo", system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  word-break: keep-all;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.is-transitioning {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

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

p,
h1,
h2,
h3,
ul,
dl,
dd {
  margin: 0;
}

ul {
  padding: 0;
  list-style: none;
}

address {
  font-style: normal;
}

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

.section {
  padding: 132px 0;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

/* Page transition */
.page-transition {
  position: fixed;
  z-index: 9998;
  inset: 0;
  overflow: hidden;
  visibility: hidden;
  pointer-events: none;
}

.page-transition::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: var(--page-transition-color, #182a58);
  opacity: 0;
  content: "";
}

.page-transition.is-covering,
.has-page-transition .page-transition {
  visibility: visible;
  pointer-events: auto;
}

.transition-shards {
  position: absolute;
  z-index: 1;
  inset: 0;
  overflow: hidden;
}

.transition-shards span {
  position: absolute;
  bottom: calc(10vh - 21vmax);
  left: calc(10vw - 21vmax);
  width: 42vmax;
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: 0;
  background: var(--page-transition-color, #182a58);
  backface-visibility: hidden;
  transform: scale(0.12);
  transform-origin: center;
  will-change: opacity, transform;
}

.page-transition.is-covering .transition-shards span {
  animation: circleTakeover 650ms cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

.has-page-transition .transition-shards span {
  display: none;
}

.has-page-transition .page-transition::before {
  opacity: 1;
  animation: transitionVeilOut 350ms ease-out forwards;
}

@keyframes circleTakeover {
  from {
    opacity: 0;
    transform: scale(0.12);
  }
  to {
    opacity: 1;
    transform: scale(6.5);
  }
}

@keyframes transitionVeilOut {
  from { opacity: 1; }
  to { opacity: 0; }
}

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

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: var(--blue-strong);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 28px;
  height: 2px;
  background: currentColor;
}

.eyebrow-light {
  color: #89adff;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 25px;
  border: 0;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 750;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.button:hover {
  color: var(--white);
  background: var(--coral);
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(255, 123, 93, 0.3);
}

.button svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.button-small {
  min-height: 42px;
  padding: 0 19px;
  border-radius: 9px;
  font-size: 15px;
}

.button-primary {
  color: var(--white);
  background: var(--blue-strong);
  box-shadow: 0 14px 28px rgba(57, 119, 243, 0.24);
}

.button-primary:hover {
  background: var(--coral);
  box-shadow: 0 18px 34px rgba(255, 123, 93, 0.3);
}

.button-dark {
  color: var(--white);
  background: var(--ink);
}

.button-light {
  color: var(--ink);
  background: var(--white);
}

.button-coral {
  color: var(--white);
  background: var(--coral);
  box-shadow: 0 14px 30px rgba(255, 123, 93, 0.2);
}

.button-coral:hover {
  background: #f06b4d;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  color: var(--ink-soft);
  border-bottom: 1px solid #9aa2b5;
  font-size: 16px;
  font-weight: 700;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.text-link:hover {
  color: var(--blue-strong);
  border-color: var(--blue-strong);
}

.text-link-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

/* Header */
.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  height: 78px;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: height 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  height: 70px;
  border-color: rgba(18, 24, 46, 0.08);
  box-shadow: 0 8px 28px rgba(21, 34, 65, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  width: 185px;
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
}

.site-nav,
.nav-list {
  display: flex;
  align-items: center;
}

.site-nav {
  gap: 0;
}

.nav-list {
  gap: 16px;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 44px;
  padding: 0 16px;
  color: #454b60;
  background: none;
  border: 0;
  cursor: pointer;
  font-size: clamp(20px, 1.3vw, 22px);
  font-weight: 700;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--coral);
}

.nav-link svg {
  width: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
  transition: transform 0.2s ease;
}

.nav-item-dropdown {
  position: relative;
}

.nav-item-dropdown.is-open .nav-link svg {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  display: grid;
  width: 340px;
  padding: 10px;
  background: var(--white);
  border: 1px solid rgba(17, 21, 40, 0.08);
  border-radius: 16px;
  box-shadow: 0 22px 55px rgba(18, 30, 63, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.dropdown-menu-compact {
  width: 280px;
}

.nav-item-dropdown.is-open .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 15px;
  border-radius: 11px;
  transition: background 0.2s ease;
}

.dropdown-menu a:hover,
.dropdown-menu a.is-current {
  background: var(--surface);
}

.dropdown-menu a.is-current strong {
  color: var(--coral);
}

.dropdown-menu strong,
.dropdown-menu small {
  display: block;
}

.dropdown-menu strong {
  color: var(--ink);
  font-size: 16px;
}

.dropdown-menu small {
  margin-top: 1px;
  color: var(--muted);
  font-size: 14px;
}

.mobile-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: 0;
  cursor: pointer;
}

.mobile-menu-button span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.mobile-menu-button[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-button[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-button[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Home hero */
.section-shell {
  position: relative;
  overflow: hidden;
}

.hero {
  min-height: 720px;
  padding: 86px 0 100px;
  background:
    linear-gradient(rgba(89, 134, 237, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(89, 134, 237, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, #fbfcff 0%, #fff 85%);
  background-size: 54px 54px, 54px 54px, auto;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 70px;
}

.hero-copy h1 {
  max-width: 680px;
  color: var(--ink);
  font-size: clamp(45px, 5.1vw, 72px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1.12;
}

.hero-copy h1 em {
  color: var(--blue-strong);
  font-style: normal;
}

.hero-description {
  max-width: 580px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.8;
}

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

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  pointer-events: none;
}

.hero-glow-one {
  top: 40px;
  right: -170px;
  width: 520px;
  height: 520px;
  background: rgba(83, 139, 255, 0.11);
}

.hero-glow-two {
  bottom: 10px;
  left: -240px;
  width: 420px;
  height: 420px;
  background: rgba(126, 164, 255, 0.08);
}

.hero-visual {
  position: relative;
  min-height: 520px;
}

.visual-orbit {
  position: absolute;
  border: 1px solid rgba(72, 117, 215, 0.16);
  border-radius: 50%;
}

.orbit-one {
  top: 28px;
  right: 0;
  width: 460px;
  height: 460px;
}

.orbit-two {
  top: 95px;
  right: 68px;
  width: 325px;
  height: 325px;
  border-style: dashed;
}

.data-console {
  position: absolute;
  top: 42px;
  right: 22px;
  width: min(100%, 645px);
  overflow: hidden;
  color: var(--white);
  background: rgba(11, 18, 38, 0.97);
  border: 1px solid rgba(124, 162, 255, 0.22);
  border-radius: 24px;
  box-shadow: 0 38px 80px rgba(21, 36, 75, 0.26);
  transform: perspective(1100px) rotateY(-3deg) rotateX(1deg);
}

.console-topbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 52px;
  padding: 0 18px;
  color: #8d9ab9;
  background: rgba(255, 255, 255, 0.035);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.window-dots {
  display: flex;
  gap: 5px;
}

.window-dots i {
  width: 6px;
  height: 6px;
  background: #62708f;
  border-radius: 50%;
}

.live-status {
  justify-self: end;
  color: #87efc4;
}

.live-status i {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 5px;
  background: #5be3ad;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(91, 227, 173, 0.11);
}

.console-body {
  padding: 30px;
}

.console-heading span,
.console-heading strong {
  display: block;
}

.console-heading span {
  margin-bottom: 8px;
  color: #6f8ed1;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
}

.console-heading strong {
  font-size: 20px;
  letter-spacing: -0.03em;
}

.signal-list {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.signal-row {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 15px 14px;
  background: rgba(255, 255, 255, 0.038);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
}

.signal-row-highlight {
  background: linear-gradient(90deg, rgba(255, 123, 93, 0.11), rgba(255, 255, 255, 0.03));
  border-color: rgba(255, 123, 93, 0.22);
}

.signal-code {
  color: #62708f;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
}

.signal-row small,
.signal-row b {
  display: block;
}

.signal-row small {
  color: #7787a7;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  letter-spacing: 0.11em;
}

.signal-row b {
  margin-top: 2px;
  color: #dce4f8;
  font-size: 14px;
}

.status-chip {
  padding: 5px 7px;
  border-radius: 5px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.status-blue {
  color: #8cb1ff;
  background: rgba(76, 126, 238, 0.15);
}

.status-coral {
  color: #ff997f;
  background: rgba(255, 123, 93, 0.13);
}

.console-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  color: #667493;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
}

.console-footer strong {
  color: #85a8f7;
  font-size: 10px;
}

.pulse-line {
  position: relative;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
}

.pulse-line i {
  position: absolute;
  width: 34%;
  height: 1px;
  background: var(--blue);
  animation: scanLine 2.8s ease-in-out infinite;
}

.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 202px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(37, 63, 120, 0.1);
  border-radius: 15px;
  box-shadow: 0 16px 42px rgba(26, 42, 81, 0.17);
  backdrop-filter: blur(12px);
}

.floating-policy {
  bottom: 48px;
  left: -8px;
}

.floating-insight {
  right: -18px;
  bottom: 94px;
}

.floating-card small,
.floating-card b {
  display: block;
}

.floating-card small {
  color: #8990a2;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.floating-card b {
  margin-top: 2px;
  font-size: 13px;
}

@keyframes scanLine {
  from { left: -35%; }
  to { left: 105%; }
}

.value-strip {
  color: var(--white);
  background: var(--navy);
}

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

.value-grid > div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 16px;
  padding: 30px 36px;
  border-right: 1px solid rgba(255, 255, 255, 0.09);
}

.value-grid > div:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.09);
}

.value-grid span {
  grid-row: 1 / 3;
  color: #6689d9;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
}

.value-grid strong {
  font-size: 16px;
  letter-spacing: 0.01em;
}

.value-grid small {
  margin-top: 2px;
  color: #8e98af;
  font-size: 14px;
}

/* Home solutions */
.solutions-section {
  background: #f8f9fc;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.05fr 0.65fr;
  align-items: end;
  gap: 100px;
  margin-bottom: 58px;
}

.section-heading h2,
.center-heading h2 {
  font-size: clamp(36px, 4.2vw, 54px);
  letter-spacing: -0.055em;
  line-height: 1.2;
}

.section-heading > p {
  padding-bottom: 5px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

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

.solution-card {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  padding: 42px;
  border-radius: 26px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.solution-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.policy-card {
  background: var(--white);
  border: 1px solid #e0e4ec;
}

.insight-card {
  color: var(--white);
  background: var(--navy);
}

.solution-card-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-index {
  color: #7f8798;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.insight-card .product-index {
  color: #6d7a99;
}

.solution-card-copy {
  position: relative;
  z-index: 2;
  max-width: 450px;
  margin-top: 65px;
}

.product-category {
  margin-bottom: 9px;
  color: var(--blue-strong);
  font-size: 14px;
  font-weight: 800;
}

.solution-card-copy h3 {
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -0.055em;
  line-height: 1.1;
}

.solution-card-copy > p:last-child {
  margin-top: 22px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.85;
}

.insight-card .solution-card-copy > p:last-child {
  color: #aeb8ce;
}

.insight-card .product-category {
  color: #ff9b83;
}

.feature-tags {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}

.feature-tags li {
  padding: 8px 12px;
  color: #596076;
  background: #f2f4f8;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 700;
}

.insight-card .feature-tags li {
  color: #aab7d4;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.card-link {
  position: absolute;
  z-index: 3;
  bottom: 38px;
  left: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  min-height: 48px;
  padding: 0 19px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #dbe1eb;
  border-radius: 11px;
  font-size: 15px;
  font-weight: 800;
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.card-link:hover {
  color: var(--white);
  background: var(--coral);
  border-color: var(--coral);
  box-shadow: 0 15px 30px rgba(255, 123, 93, 0.25);
  transform: translateY(-3px);
}

.insight-card .card-link {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
}

.insight-card .card-link:hover {
  background: var(--coral);
  border-color: var(--coral);
}

.card-link span {
  font-size: 18px;
  transition: transform 0.25s ease;
}

.card-link:hover span {
  transform: translate(3px, -3px);
}

.card-pattern {
  position: absolute;
  right: -120px;
  bottom: -155px;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(66, 117, 230, 0.09);
  border-radius: 50%;
}

.card-pattern::before,
.card-pattern::after {
  position: absolute;
  content: "";
  border: inherit;
  border-radius: inherit;
}

.card-pattern::before { inset: 48px; }
.card-pattern::after { inset: 96px; }

.insight-pattern {
  border-color: rgba(94, 143, 245, 0.11);
}

/* Approach */
.approach-section {
  color: var(--white);
  background: var(--navy);
}

.approach-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 120px;
}

.approach-intro h2 {
  font-size: clamp(38px, 4.3vw, 56px);
  letter-spacing: -0.055em;
  line-height: 1.18;
}

.approach-intro > p:not(.eyebrow) {
  max-width: 460px;
  margin: 28px 0;
  color: #9ca7bd;
  font-size: 18px;
  line-height: 1.85;
}

.approach-steps {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.approach-step {
  display: grid;
  grid-template-columns: 135px 1fr;
  gap: 24px;
  padding: 31px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.approach-step > span {
  padding-top: 4px;
  color: #7395df;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  letter-spacing: 0.11em;
}

.approach-step strong {
  font-size: 20px;
}

.approach-step p {
  margin-top: 7px;
  color: #8f9ab1;
  font-size: 16px;
}

/* Contact */
.contact-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 100px 0;
  background: var(--white);
  border-top: 1px solid #edf0f5;
}

.contact-section::before,
.contact-section::after {
  display: none;
}

.contact-section::before {
  top: -250px;
  right: 4%;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(255, 123, 93, 0.42) 0%, rgba(255, 123, 93, 0.09) 46%, transparent 70%);
  animation: contactAuraOne 8s ease-in-out infinite alternate;
}

.contact-section::after {
  bottom: -300px;
  left: 8%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(255, 147, 122, 0.28) 0%, rgba(255, 123, 93, 0.06) 48%, transparent 72%);
  animation: contactAuraTwo 10s ease-in-out infinite alternate;
}

.contact-panel {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 1fr;
  align-items: end;
  overflow: hidden;
  padding: 65px 70px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #e6e9f0;
  border-radius: 26px;
  box-shadow: 0 30px 75px rgba(28, 43, 79, 0.08);
}

.contact-panel::before {
  position: absolute;
  z-index: -1;
  top: -145px;
  right: -75px;
  width: 420px;
  height: 420px;
  content: "";
  border: 1px dashed rgba(255, 123, 93, 0.3);
  border-radius: 50%;
  box-shadow:
    0 0 0 58px rgba(255, 123, 93, 0.035),
    0 0 0 116px rgba(255, 123, 93, 0.018);
  animation: contactOrbit 18s linear infinite;
}

.contact-panel h2 {
  max-width: 760px;
  font-size: clamp(34px, 4vw, 50px);
  letter-spacing: -0.055em;
  line-height: 1.22;
}

.contact-eyebrow {
  color: #ff9b83;
}

@keyframes contactAuraOne {
  from { transform: translate3d(0, -18px, 0) scale(0.94); }
  to { transform: translate3d(-120px, 72px, 0) scale(1.12); }
}

@keyframes contactAuraTwo {
  from { transform: translate3d(-25px, 30px, 0) scale(1); }
  to { transform: translate3d(135px, -55px, 0) scale(1.16); }
}

@keyframes contactBackground {
  from { background-position: 100% 0, 0 0; }
  to { background-position: 40% 80%, 0 0; }
}

@keyframes contactOrbit {
  to { transform: rotate(360deg); }
}

/* Footer */
.site-footer {
  padding: 72px 0 28px;
  color: var(--white);
  background: #080d1d;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  min-height: 170px;
}

.footer-brand {
  width: 150px;
}

.footer-links {
  display: grid;
  grid-template-columns: 170px 130px minmax(235px, 285px);
  gap: 45px;
}

.footer-links div {
  display: grid;
  gap: 8px;
}

.footer-links strong {
  margin-bottom: 8px;
  color: #6f7b96;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links a {
  color: #b5bed0;
  font-size: 15px;
  transition: color 0.2s ease;
}

.footer-email {
  color: #b5bed0;
  font-size: 15px;
  user-select: all;
}

.footer-contact address {
  margin-top: 7px;
  color: #7c879f;
  font-size: 14px;
  line-height: 1.7;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-top: 25px;
  color: #66718b;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 13px;
}

/* Shared product pages */
.product-hero {
  position: relative;
  overflow: hidden;
  min-height: 700px;
  padding: 92px 0 105px;
}

.product-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 90px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 50px;
  color: #949bac;
  font-size: 13px;
}

.breadcrumb b {
  color: var(--ink);
}

.breadcrumb-light b {
  color: var(--white);
}

.product-kicker {
  margin-bottom: 17px;
  color: var(--blue-strong);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.product-hero-copy h1 {
  font-size: clamp(42px, 5vw, 65px);
  letter-spacing: -0.06em;
  line-height: 1.12;
}

.product-hero-copy h1 > span {
  display: block;
  margin-bottom: 15px;
  color: var(--blue-strong);
  font-size: 0.43em;
  letter-spacing: -0.02em;
}

.product-hero-copy > p:not(.product-kicker) {
  max-width: 560px;
  margin: 26px 0 34px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.85;
}

.policy-product-hero {
  background:
    radial-gradient(circle at 80% 30%, rgba(77, 133, 248, 0.12), transparent 35%),
    linear-gradient(rgba(77, 133, 248, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(77, 133, 248, 0.035) 1px, transparent 1px),
    #fbfcff;
  background-size: auto, 50px 50px, 50px 50px, auto;
}

.policy-preview {
  position: relative;
  min-height: 530px;
}

.policy-screen {
  position: absolute;
  z-index: 1;
  overflow: hidden;
  margin: 0;
  padding: 9px;
  background: var(--white);
  border: 1px solid rgba(49, 82, 150, 0.14);
  border-radius: 18px;
  box-shadow: 0 28px 65px rgba(37, 67, 126, 0.17);
}

.policy-screen img {
  width: 100%;
  height: auto;
}

.policy-screen-main {
  top: 0;
  right: 0;
  width: 70%;
}

.policy-screen-secondary {
  z-index: 2;
  bottom: 0;
  left: 0;
  width: 54%;
  box-shadow: 0 24px 58px rgba(37, 67, 126, 0.22);
}

.product-problem-section {
  background: var(--white);
}

.center-heading {
  margin-bottom: 58px;
  text-align: center;
}

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

.benefit-card {
  position: relative;
  min-height: 270px;
  padding: 30px 26px;
  background: var(--surface);
  border: 1px solid transparent;
  border-radius: 18px;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.benefit-card:hover {
  background: var(--white);
  border-color: #dce5f8;
  transform: translateY(-4px);
}

.benefit-card > span {
  display: grid;
  width: 33px;
  height: 33px;
  place-items: center;
  color: var(--blue-strong);
  background: var(--blue-soft);
  border-radius: 8px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  font-weight: 800;
}

.benefit-card h3 {
  margin-top: 42px;
  font-size: 18px;
  letter-spacing: -0.03em;
}

.benefit-card p {
  margin-top: 13px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.benefit-card.coral-accent > span {
  color: var(--coral);
  background: var(--coral-soft);
}

.benefit-card.coral-accent:hover {
  border-color: #f7d9d1;
}

.feature-section {
  color: var(--white);
  background: var(--navy);
}

.feature-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 120px;
}

.feature-sticky {
  align-self: start;
  position: sticky;
  top: 115px;
}

.feature-sticky h2 {
  font-size: clamp(38px, 4.5vw, 56px);
  letter-spacing: -0.055em;
  line-height: 1.18;
}

.feature-sticky > p:last-child {
  max-width: 420px;
  margin-top: 24px;
  color: #929db4;
  font-size: 17px;
  line-height: 1.8;
}

.feature-list {
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.feature-row {
  display: grid;
  grid-template-columns: 50px 1fr;
  align-items: center;
  gap: 18px;
  min-height: 145px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.feature-row > span {
  color: #617fbf;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
}

.feature-row h3 {
  font-size: 19px;
}

.feature-row p {
  margin-top: 7px;
  color: #8c98b1;
  font-size: 15px;
}

.product-contact-section {
  padding: 90px 0;
  background: var(--blue-strong);
}

.product-contact {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  color: var(--white);
}

.product-contact > div > span {
  color: #c5d8ff;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  letter-spacing: 0.11em;
}

.product-contact h2 {
  margin-top: 14px;
  font-size: clamp(36px, 4.4vw, 54px);
  letter-spacing: -0.055em;
  line-height: 1.17;
}

/* RealPII product */
.insight-product-hero {
  color: var(--white);
  background:
    linear-gradient(rgba(107, 144, 220, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(107, 144, 220, 0.05) 1px, transparent 1px),
    var(--navy);
  background-size: 52px 52px, 52px 52px, auto;
}

.product-hero-glow {
  position: absolute;
  top: -200px;
  right: -60px;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(45, 127, 184, 0.23), transparent 67%);
}

.insight-product-hero .product-hero-copy h1 em {
  color: #79a9ff;
  font-style: normal;
}

.insight-product-hero .product-hero-copy > p {
  color: #a6b1c8;
}

.pii-hero-logo {
  width: min(100%, 370px);
  margin-bottom: 35px;
}

.insight-scanner {
  padding: 28px;
  background: rgba(13, 24, 50, 0.88);
  border: 1px solid rgba(103, 156, 255, 0.24);
  border-radius: 22px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.3), inset 0 0 60px rgba(54, 122, 196, 0.06);
}

.scanner-top,
.scanner-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #71809f;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
}

.scanner-top {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.scanner-top b {
  color: #7bd6ba;
  font-size: 10px;
}

.scanner-top b i {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 5px;
  background: #5fe0b7;
  border-radius: 50%;
}

.scanner-score {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 22px 0;
  padding: 22px;
  background: linear-gradient(90deg, rgba(255, 123, 93, 0.12), rgba(255, 123, 93, 0.025));
  border: 1px solid rgba(255, 123, 93, 0.18);
  border-radius: 12px;
}

.scanner-score small,
.scanner-score strong {
  display: block;
}

.scanner-score small {
  color: #a57972;
  font-size: 9px;
  letter-spacing: 0.1em;
}

.scanner-score strong {
  margin-top: 3px;
  color: #ff9b83;
  font-size: 22px;
}

.scanner-score > span {
  color: #ff9b83;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
}

.scanner-log {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  padding: 14px 15px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 9px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
}

.scanner-log > span { color: #72809e; }
.scanner-log code { color: #d5def2; }
.scanner-log b { color: #ff9278; font-size: 9px; letter-spacing: 0.07em; }
.scanner-log.muted { opacity: 0.5; }
.scanner-log.muted b { color: #8593af; }

.scanner-wave {
  display: flex;
  align-items: center;
  gap: 5px;
  height: 60px;
  margin: 16px 0;
  padding: 0 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.scanner-wave i {
  width: 11.11%;
  height: 20%;
  background: linear-gradient(180deg, #3987c6, #315385);
  border-radius: 3px;
  animation: wave 1.8s ease-in-out infinite alternate;
}

.scanner-wave i:nth-child(2n) { height: 55%; animation-delay: -0.4s; }
.scanner-wave i:nth-child(3n) { height: 80%; animation-delay: -0.8s; background: linear-gradient(180deg, #ff7b5d, #6e4858); }
.scanner-wave i:nth-child(5n) { height: 35%; animation-delay: -1.1s; }

@keyframes wave {
  from { transform: scaleY(0.65); opacity: 0.55; }
  to { transform: scaleY(1); opacity: 1; }
}

.scanner-footer {
  padding-top: 3px;
}

.pii-contact {
  background: #142b4d;
}

/* About */
.about-hero {
  position: relative;
  overflow: hidden;
  min-height: 650px;
  color: var(--white);
  background: var(--navy);
}

.about-grid-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 38%, rgba(82, 141, 255, 0.2), transparent 24%),
    linear-gradient(rgba(107, 144, 220, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(107, 144, 220, 0.05) 1px, transparent 1px);
  background-size: auto, 55px 55px, 55px 55px;
}

.about-grid-pattern::after {
  position: absolute;
  top: 80px;
  right: 10%;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(99, 150, 255, 0.18);
  border-radius: 50%;
  box-shadow: inset 0 0 0 78px rgba(77, 124, 225, 0.035), inset 0 0 0 156px rgba(77, 124, 225, 0.025);
  content: "";
}

.about-hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 75px;
}

.about-hero .breadcrumb {
  margin-bottom: 70px;
}

.about-hero h1 {
  max-width: 920px;
  font-size: clamp(48px, 6.4vw, 82px);
  letter-spacing: -0.065em;
  line-height: 1.12;
}

.about-hero h1 em {
  color: #78a6ff;
  font-style: normal;
}

.about-hero-inner > p:last-child {
  max-width: 650px;
  margin-top: 32px;
  color: #9da9c0;
  font-size: 19px;
  line-height: 1.85;
}

.about-story-section {
  background: var(--white);
}

.about-story-grid {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 100px;
}

.story-label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.story-label span {
  display: inline-block;
  padding: 9px 11px;
  color: var(--white);
  background: var(--blue-strong);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.story-label small {
  margin-top: 13px;
  color: #8e96a8;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
}

.story-copy > p:first-child {
  margin-bottom: 24px;
  color: var(--blue-strong);
  font-size: 17px;
  font-weight: 700;
}

.story-copy h2 {
  font-size: clamp(38px, 4.5vw, 58px);
  letter-spacing: -0.058em;
  line-height: 1.2;
}

.story-copy > p:last-child {
  max-width: 680px;
  margin-top: 35px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.9;
}

.focus-section {
  background: var(--surface);
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.focus-card {
  display: grid;
  grid-template-columns: 45px 1fr auto;
  gap: 22px;
  min-height: 300px;
  padding: 40px;
  background: var(--white);
  border: 1px solid #e1e5ed;
  border-radius: 22px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.focus-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.focus-card > span {
  color: var(--blue-strong);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
}

.focus-card small {
  color: #8b93a5;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  letter-spacing: 0.09em;
}

.focus-card h3 {
  margin-top: 33px;
  font-size: 25px;
  letter-spacing: -0.04em;
}

.focus-card p {
  margin-top: 15px;
  color: var(--muted);
  font-size: 16px;
}

.focus-card > i {
  font-size: 20px;
  font-style: normal;
}

.focus-card-dark {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.focus-card-dark > span { color: #ff937a; }
.focus-card-dark p { color: #98a4bb; }

.company-info-section {
  background: var(--white);
}

.company-info-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
}

.company-info-grid h2 {
  font-size: clamp(44px, 5vw, 64px);
  letter-spacing: -0.06em;
}

.company-info-grid dl {
  border-top: 1px solid var(--line);
}

.company-info-grid dl > div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 20px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}

.company-info-grid dt {
  color: #8d94a4;
  font-size: 14px;
  font-weight: 700;
}

.company-info-grid dd {
  color: var(--ink);
  font-size: 16px;
  font-weight: 650;
}

.company-info-grid dd span {
  margin-left: 8px;
  color: #8c93a2;
  font-weight: 500;
}

.company-email {
  color: var(--blue-strong);
  user-select: all;
}

/* Responsive */
@media (min-width: 1800px) {
  .container {
    width: min(
      calc(100% - clamp(96px, 12vw, 320px)),
      clamp(1496px, 72vw, 2300px)
    );
  }

  .site-header {
    height: clamp(78px, 3vw, 96px);
  }

  .site-header.is-scrolled {
    height: clamp(70px, 2.7vw, 86px);
  }

  .brand {
    width: clamp(185px, 7vw, 240px);
  }

  .nav-link {
    font-size: clamp(22px, 0.9vw, 28px);
  }

  .hero-grid {
    gap: clamp(70px, 4.2vw, 130px);
  }

  .hero-copy h1 {
    max-width: clamp(680px, 28vw, 920px);
    font-size: clamp(72px, 2.85vw, 96px);
  }

  .hero-description {
    max-width: clamp(580px, 24vw, 760px);
    font-size: clamp(20px, 0.78vw, 26px);
  }

  .hero-visual {
    min-height: clamp(520px, 21vw, 680px);
  }

  .data-console {
    width: min(100%, clamp(645px, 28vw, 860px));
  }

  .section-heading h2,
  .center-heading h2 {
    font-size: clamp(54px, 2.2vw, 70px);
  }

  .section-heading > p {
    font-size: clamp(18px, 0.75vw, 24px);
  }

  .solution-card {
    min-height: clamp(590px, 25vw, 720px);
    padding: clamp(42px, 2vw, 58px);
  }

  .solution-card-copy {
    max-width: clamp(450px, 21vw, 620px);
  }

  .solution-card-copy h3 {
    font-size: clamp(48px, 2vw, 62px);
  }

  .solution-card-copy > p:last-child {
    font-size: clamp(17px, 0.72vw, 22px);
  }

  .product-hero-grid {
    gap: clamp(90px, 4vw, 140px);
  }

  .product-hero-copy h1 {
    font-size: clamp(65px, 2.75vw, 86px);
  }

  .product-hero-copy > p:not(.product-kicker),
  .about-hero-inner > p:last-child {
    max-width: clamp(650px, 25vw, 780px);
    font-size: clamp(19px, 0.78vw, 25px);
  }

  .about-hero h1 {
    max-width: 1120px;
    font-size: clamp(82px, 3.2vw, 102px);
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .product-hero-grid {
    gap: 42px;
  }

  .hero-visual {
    transform: scale(0.92);
    transform-origin: center right;
  }

  .approach-grid,
  .feature-layout {
    gap: 70px;
  }

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

@media (max-width: 960px) {
  .section {
    padding: 100px 0;
  }

  .site-header,
  .site-header.is-scrolled {
    height: 70px;
    background: var(--white);
    backdrop-filter: none;
  }

  .mobile-menu-button {
    position: relative;
    z-index: 2;
    display: block;
  }

  .site-nav {
    position: absolute;
    z-index: 1;
    top: 100%;
    right: 0;
    bottom: auto;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 25px;
    width: 100%;
    height: calc(100vh - 70px);
    height: calc(100dvh - 70px);
    padding: 24px;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: #ffffff;
    border-top: 1px solid #edf0f5;
    box-shadow: 0 22px 45px rgba(18, 30, 63, 0.1);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0.25s;
  }

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

  .nav-list {
    display: grid;
    gap: 4px;
  }

  .nav-link {
    justify-content: space-between;
    width: 100%;
    min-height: 54px;
    padding: 0 4px;
    border-bottom: 1px solid #edf0f5;
    font-size: 20px;
  }

  .dropdown-menu,
  .dropdown-menu-compact {
    position: static;
    display: none;
    width: 100%;
    padding: 8px 0 10px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    transform: none;
  }

  .nav-item-dropdown.is-open .dropdown-menu {
    display: grid;
    transform: none;
  }

  .dropdown-menu a {
    padding: 12px 8px;
  }

  .hero {
    padding-top: 72px;
  }

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

  .hero-visual {
    width: min(100%, 620px);
    margin-inline: auto;
    transform: none;
  }

  .value-grid {
    grid-template-columns: 1fr;
  }

  .value-grid > div,
  .value-grid > div:first-child {
    border-right: 1px solid rgba(255, 255, 255, 0.09);
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    border-left: 1px solid rgba(255, 255, 255, 0.09);
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .solution-grid,
  .focus-grid {
    grid-template-columns: 1fr;
  }

  .approach-grid,
  .feature-layout,
  .contact-panel,
  .about-story-grid,
  .company-info-grid {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .feature-sticky {
    position: static;
  }

  .contact-panel {
    padding: 50px;
  }

  .product-hero {
    padding-top: 65px;
  }

  .product-hero-copy {
    max-width: 720px;
  }

  .policy-preview,
  .insight-scanner {
    width: min(100%, 620px);
    margin-inline: auto;
  }

  .about-hero-inner {
    padding-top: 55px;
  }

  .about-story-grid {
    gap: 40px;
  }
}

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

  .section {
    padding: 78px 0;
  }

  .brand {
    width: 125px;
  }

  .hero {
    min-height: auto;
    padding: 58px 0 75px;
  }

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

  .hero-description,
  .product-hero-copy > p:not(.product-kicker) {
    font-size: 17px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .hero-visual {
    min-height: 430px;
  }

  .data-console {
    top: 30px;
    right: 0;
    transform: none;
  }

  .console-body {
    padding: 20px;
  }

  .console-topbar > span:nth-child(2) {
    display: none;
  }

  .console-topbar {
    grid-template-columns: 1fr 1fr;
  }

  .signal-row {
    grid-template-columns: 25px 1fr auto;
    gap: 7px;
    padding: 13px 10px;
  }

  .floating-card {
    min-width: 172px;
    padding: 10px;
  }

  .floating-policy {
    bottom: 7px;
    left: -5px;
  }

  .floating-insight {
    right: -5px;
    bottom: 58px;
  }

  .orbit-one {
    width: 360px;
    height: 360px;
  }

  .orbit-two {
    width: 250px;
    height: 250px;
  }

  .section-heading h2,
  .center-heading h2 {
    font-size: 36px;
  }

  .solution-card {
    min-height: 600px;
    padding: 29px;
    border-radius: 21px;
  }

  .solution-card-copy {
    margin-top: 50px;
  }

  .card-link {
    right: auto;
    left: 29px;
  }

  .approach-step {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .contact-section {
    padding: 65px 0;
  }

  .contact-panel {
    gap: 38px;
    padding: 36px 25px;
  }

  .footer-top {
    flex-direction: column;
    gap: 50px;
    padding-bottom: 45px;
  }

  .footer-links {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .footer-contact {
    grid-column: 1 / -1;
    margin-top: 15px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .product-hero {
    min-height: auto;
    padding: 46px 0 75px;
  }

  .breadcrumb {
    margin-bottom: 42px;
  }

  .product-hero-copy h1 {
    font-size: 41px;
  }

  .policy-preview {
    display: grid;
    gap: 14px;
    min-height: 0;
  }

  .policy-screen,
  .policy-screen-main,
  .policy-screen-secondary {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    min-height: 235px;
  }

  .feature-row {
    grid-template-columns: 36px 1fr;
  }

  .product-contact {
    align-items: flex-start;
    flex-direction: column;
  }

  .scanner-log {
    grid-template-columns: 80px 1fr;
  }

  .scanner-log b {
    display: none;
  }

  .about-hero {
    min-height: 600px;
  }

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

  .about-grid-pattern::after {
    top: 260px;
    right: -140px;
    width: 340px;
    height: 340px;
  }

  .focus-card {
    grid-template-columns: 32px 1fr auto;
    min-height: 280px;
    gap: 12px;
    padding: 28px 22px;
  }

  .company-info-grid dl > div {
    grid-template-columns: 90px 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

}
