:root {
  --bg-deep: #1831c6;
  --bg-mid: #3f63f0;
  --bg-bright: #7db6ff;
  --bg-soft: #eef8ff;
  --surface: rgba(185, 216, 255, 0.12);
  --surface-strong: rgba(211, 231, 255, 0.2);
  --surface-soft: rgba(160, 198, 255, 0.08);
  --ink: #f7fbff;
  --ink-soft: rgba(232, 243, 255, 0.9);
  --ink-faint: rgba(205, 225, 255, 0.76);
  --ink-dark: #2b497f;
  --ink-dark-soft: rgba(43, 73, 127, 0.84);
  --ink-dark-faint: rgba(77, 107, 158, 0.82);
  --ink-glass-ruri: rgba(51, 79, 125, 0.9);
  --ink-glass-ruri-highlight: rgba(246, 250, 255, 0.72);
  --ink-glass-ruri-highlight-soft: rgba(255, 255, 255, 0.24);
  --ink-glass-ruri-shadow: rgba(88, 119, 173, 0.28);
  --text-gradient-bright: linear-gradient(
    135deg,
    #f7fbff 0%,
    #dce8ff 42%,
    #abc2f2 100%
  );
  --text-gradient-ruri: linear-gradient(
    135deg,
    #2f4b7e 0%,
    #4b648f 46%,
    #365484 100%
  );
  --line: rgba(225, 238, 255, 0.18);
  --line-strong: rgba(238, 245, 255, 0.34);
  --shadow: 0 28px 90px rgba(31, 54, 173, 0.24);
  --sans: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
  --mono: "IBM Plex Mono", "SF Mono", "Roboto Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(
      circle at 8% 10%,
      rgba(255, 255, 255, 0.3),
      transparent 20%
    ),
    radial-gradient(
      circle at 28% 78%,
      rgba(221, 235, 255, 0.24),
      transparent 28%
    ),
    radial-gradient(
      circle at 86% 14%,
      rgba(213, 231, 255, 0.28),
      transparent 25%
    ),
    radial-gradient(
      circle at 76% 86%,
      rgba(185, 212, 255, 0.2),
      transparent 30%
    ),
    linear-gradient(
      116deg,
      rgba(255, 255, 255, 0.11) 0%,
      rgba(255, 255, 255, 0) 34%
    ),
    linear-gradient(
      154deg,
      rgba(210, 228, 255, 0.2) 0%,
      rgba(193, 216, 255, 0) 42%
    ),
    linear-gradient(
      138deg,
      #eef5ff 0%,
      #dcebff 18%,
      #bfd6ff 38%,
      #92b2ff 56%,
      #7396fb 76%,
      #5b7ff2 100%
    );
  font-family: var(--sans);
  line-height: 1.7;
}

body.privacy-page {
  background:
    radial-gradient(
      circle at 12% 14%,
      rgba(226, 239, 255, 0.2),
      transparent 24%
    ),
    radial-gradient(
      circle at 84% 18%,
      rgba(176, 206, 255, 0.22),
      transparent 26%
    ),
    linear-gradient(
      144deg,
      #325399 0%,
      #3d64b1 28%,
      #4670bf 52%,
      #3559a2 76%,
      #23427c 100%
    );
}

a {
  color: inherit;
  text-decoration: none;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    opacity 180ms ease,
    transform 180ms ease;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  border-bottom: 1px solid var(--line);
  background: rgba(29, 55, 175, 0.72);
  backdrop-filter: blur(18px);
}

.header-inner,
.page-shell,
.footer-inner,
.footer-bottom {
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 36px;
  padding-right: 36px;
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 92px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.brand-mark,
.brand-copy strong,
.brand-copy small,
.eyebrow,
.news-date,
.news-tag,
.card-index,
.service-kicker,
.footer-heading,
h1,
h2,
h3,
dt,
dd,
p {
  margin: 0;
}

.brand-mark {
  position: relative;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 10px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.98),
    rgba(206, 232, 255, 0.72)
  );
  box-shadow: 0 0 24px rgba(171, 214, 255, 0.36);
  clip-path: polygon(50% 0, 96% 28%, 96% 72%, 50% 100%, 4% 72%, 4% 28%);
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 22%;
  border: 1px solid rgba(55, 111, 228, 0.26);
  clip-path: polygon(50% 0, 96% 28%, 96% 72%, 50% 100%, 4% 72%, 4% 28%);
}

.brand-mark::after {
  inset: auto 20% 18% auto;
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.92);
  border: none;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.brand-copy strong {
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-copy small,
.eyebrow,
.news-date,
.news-tag,
.card-index,
.service-kicker,
.footer-heading {
  color: var(--ink-faint);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav,
.header-links {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}

.site-nav {
  justify-content: center;
}

.site-nav a,
.header-links a,
.header-cta,
.footer-column a {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.site-nav a:hover,
.header-links a:hover,
.footer-column a:hover,
.news-row:hover strong,
.business-card:hover h3,
.policy-row:hover h2 {
  color: #ffffff;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: rgba(223, 237, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.header-cta:hover {
  background: rgba(236, 244, 255, 0.18);
}

.page-shell {
  padding-top: 0;
  padding-bottom: 88px;
}

.hero,
.news-section,
.business-section,
.service-section,
.product-section,
.company-section,
.subpage-hero,
.policy-section {
  position: relative;
  z-index: 1;
}

.hero {
  position: relative;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 64px 0 36px;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(
      90deg,
      rgba(28, 52, 186, 0.32) 0%,
      rgba(38, 66, 206, 0.22) 28%,
      rgba(56, 92, 235, 0.08) 52%,
      rgba(82, 123, 255, 0.02) 100%
    ),
    url("./public/hero-blue-chevron.png");
  background-position: center right;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: var(--shadow);
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 18% 36%,
      rgba(201, 228, 255, 0.18),
      transparent 30%
    ),
    linear-gradient(180deg, rgba(49, 81, 231, 0.02), rgba(31, 57, 180, 0.14));
  z-index: -1;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(380px, 1.16fr);
  gap: 28px;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
  min-height: 680px;
  padding: clamp(34px, 4vw, 54px) 36px;
}

h1,
h2,
h3 {
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1.02;
}

h1 {
  max-width: 8.3ch;
  font-size: clamp(2.2rem, 4.8vw, 4.15rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
}

h3 {
  font-size: 1.6rem;
}

.hero-lead,
.section-lead,
.business-card p,
.company-subtitle,
.company-table dd,
.policy-row p,
.footer-brand p,
.service-list li {
  color: var(--ink-soft);
}

.hero-copy h1 {
  max-width: 12.8ch;
  font-size: clamp(2.2rem, 4.8vw, 4.15rem);
}

.hero-lead {
  max-width: 52ch;
  margin-top: 22px;
  font-size: 0.92rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  font-size: 0.94rem;
  font-weight: 700;
}

.button-primary {
  background: rgba(233, 244, 255, 0.2);
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(31, 54, 173, 0.18);
}

.button-secondary {
  background: rgba(180, 212, 255, 0.1);
  color: var(--ink-soft);
}

.hero-art {
  position: relative;
  min-height: 480px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 26px;
}

.section-copy {
  max-width: 760px;
}

.section-lead {
  margin-top: 12px;
  max-width: 52ch;
}

.section-header-inverse .eyebrow,
.section-lead-inverse {
  color: var(--ink-soft);
}

.news-section,
.business-section,
.product-section,
.subpage-hero,
.policy-section {
  color: var(--ink-dark);
}

.news-section .eyebrow,
.business-section .eyebrow,
.product-section .eyebrow,
.subpage-hero .eyebrow,
.policy-section .eyebrow,
.news-section .news-date,
.news-section .news-tag,
.business-section .card-index {
  color: var(--ink-dark-faint);
}

.news-section .section-lead,
.business-section .section-lead,
.product-section .section-lead,
.business-section .business-card p,
.subpage-hero .hero-lead,
.policy-section .policy-row p {
  color: var(--ink-dark-soft);
}

.news-section .news-row:hover strong,
.business-section .business-card:hover h3,
.policy-section .policy-row:hover h2 {
  color: var(--ink-dark);
}

.hero :where(.eyebrow, h1, .hero-lead),
.service-section
  :where(.eyebrow, h2, .section-lead, .service-kicker, .service-list li),
.site-footer :where(.footer-heading, strong, p, a, .copyright) {
  color: transparent;
  background-image: var(--text-gradient-bright);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.news-section :where(h2),
.business-section :where(h2, h3),
.product-section :where(h2),
.subpage-hero :where(h1),
.policy-section :where(h2) {
  color: var(--ink-glass-ruri);
  text-shadow:
    0 -1px 0 rgba(255, 255, 255, 0.36),
    0 1px 0 var(--ink-glass-ruri-highlight),
    0 0 14px var(--ink-glass-ruri-highlight-soft),
    0 12px 28px var(--ink-glass-ruri-shadow);
}

.news-section :where(.eyebrow, .news-date, .news-tag),
.business-section :where(.eyebrow, .section-lead, .card-index, p),
.product-section :where(.eyebrow, .section-lead),
.subpage-hero :where(.eyebrow, .hero-lead),
.policy-section :where(p) {
  color: transparent;
  background-image: var(--text-gradient-ruri);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.news-section .news-row strong {
  color: transparent;
  background-image: var(--text-gradient-ruri);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
}

.news-section,
.business-section,
.product-section,
.company-section,
.policy-section {
  padding-top: 88px;
}

.news-board,
.business-card,
.service-panel,
.company-shell,
.policy-shell,
.subpage-banner {
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.news-board {
  display: grid;
  gap: 0;
  border: 1px solid rgba(198, 218, 248, 0.94);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(243, 249, 255, 0.97), rgba(223, 237, 255, 0.95) 56%, rgba(210, 228, 251, 0.95)),
    rgba(231, 241, 255, 0.95);
  backdrop-filter: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.62),
    0 18px 40px rgba(86, 118, 180, 0.1);
  overflow: hidden;
}

.news-row {
  display: grid;
  grid-template-columns: 120px 100px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 22px 24px;
  border-bottom: 1px solid rgba(190, 212, 246, 0.9);
  background: transparent;
  box-shadow: none;
}

.news-row:last-child {
  border-bottom: none;
}

.news-tag {
  color: rgba(238, 247, 255, 0.98);
}

.news-row strong {
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

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

.business-card {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  padding: 28px;
  border-radius: 28px;
  border-color: rgba(198, 218, 248, 0.94);
  background:
    linear-gradient(180deg, rgba(243, 249, 255, 0.97), rgba(223, 237, 255, 0.95) 56%, rgba(210, 228, 251, 0.95)),
    rgba(231, 241, 255, 0.95);
  backdrop-filter: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.62),
    0 18px 40px rgba(86, 118, 180, 0.1);
}

.business-card::before {
  content: "";
  position: absolute;
  inset: auto -20% -28% auto;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(
    circle,
    rgba(244, 249, 255, 0.34),
    transparent 70%
  );
}

.card-index {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
}

.business-card h3 {
  margin-top: 18px;
  max-width: none;
  white-space: nowrap;
  font-size: clamp(1.3rem, 2vw, 1.55rem);
}

.business-card p {
  max-width: 40ch;
  margin-top: 12px;
}

.service-section {
  padding-top: 96px;
}

.service-shell {
  position: relative;
  overflow: hidden;
  padding: 36px;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(49, 81, 231, 0.42), rgba(28, 54, 188, 0.44)),
    rgba(162, 199, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow);
}

.service-backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.service-chevron {
  position: absolute;
  top: 50%;
  right: -8%;
  width: 320px;
  aspect-ratio: 1.28 / 1;
  transform: translateY(-50%);
  clip-path: polygon(0 50%, 32% 0, 100% 0, 68% 50%, 100% 100%, 32% 100%);
  background: linear-gradient(
    135deg,
    rgba(239, 247, 255, 0.12),
    rgba(160, 206, 255, 0.26)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.service-chevron-2 {
  right: 4%;
  width: 260px;
}

.service-chevron-3 {
  right: 15%;
  width: 210px;
}

.service-columns {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.service-panel {
  padding: 26px;
  border-radius: 26px;
  background: rgba(213, 231, 255, 0.1);
}

.service-panel-alt {
  background: rgba(229, 240, 255, 0.14);
}

.service-list {
  display: grid;
  gap: 14px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.service-list li {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(239, 246, 255, 0.12);
}

.product-section {
  padding-top: 96px;
}

.product-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 24px;
  align-items: stretch;
}

.product-media {
  padding: 20px;
  border-radius: 34px;
  border: 1px solid rgba(198, 218, 248, 0.94);
  background:
    linear-gradient(180deg, rgba(243, 249, 255, 0.97), rgba(223, 237, 255, 0.95) 56%, rgba(210, 228, 251, 0.95)),
    rgba(231, 241, 255, 0.95);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.62),
    0 18px 40px rgba(86, 118, 180, 0.1);
}

.product-shot {
  display: block;
  width: 100%;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 18px 36px rgba(52, 84, 160, 0.12);
}

.product-caption {
  margin: 14px 4px 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--ink-dark-faint);
}

.product-caption a {
  color: var(--ink-dark);
  font-weight: 500;
  word-break: break-all;
}

.product-summary {
  position: relative;
  overflow: hidden;
  padding: 32px;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(165deg, rgba(29, 55, 175, 0.84) 0%, rgba(48, 79, 209, 0.72) 46%, rgba(92, 132, 255, 0.42) 100%),
    rgba(140, 181, 255, 0.08);
  box-shadow: var(--shadow);
}

.product-summary::before {
  content: "";
  position: absolute;
  inset: auto -14% -18% auto;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 68%);
}

.product-summary::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0) 38%);
}

.product-summary > * {
  position: relative;
  z-index: 1;
}

.product-tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: var(--ink-faint);
  font-family: var(--mono);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-summary h3 {
  margin-top: 18px;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  color: var(--ink);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.12);
}

.product-description {
  max-width: 36ch;
  margin-top: 14px;
  color: var(--ink-soft);
}

.product-points {
  display: grid;
  gap: 0;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.product-points li {
  display: grid;
  gap: 6px;
  padding: 16px 0;
  border-top: 1px solid rgba(239, 246, 255, 0.14);
}

.product-points li:first-child {
  padding-top: 0;
  border-top: none;
}

.product-points strong {
  color: var(--ink);
  font-size: 1rem;
}

.product-points span {
  color: var(--ink-soft);
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.product-summary .button-primary {
  background: rgba(244, 249, 255, 0.22);
  box-shadow: 0 12px 30px rgba(17, 34, 120, 0.24);
}

.product-summary .button-secondary {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(180, 212, 255, 0.08);
  color: var(--ink);
}

.company-shell {
  display: grid;
  grid-template-columns: minmax(360px, 0.96fr) minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 28px;
  border-radius: 30px;
  border: 1px solid rgba(238, 245, 255, 0.16);
  background:
    linear-gradient(180deg, rgba(47, 74, 201, 0.36), rgba(29, 52, 154, 0.42)),
    rgba(141, 180, 255, 0.08);
}

.company-section
  :where(.eyebrow, h2, h3, dt, dd, .company-subtitle, .company-badge) {
  background-image: none;
  background-clip: border-box;
  -webkit-background-clip: border-box;
  -webkit-text-fill-color: inherit;
}

.company-section :where(h2, h3, dt) {
  color: var(--ink);
  -webkit-text-fill-color: var(--ink);
}

.company-section :where(dd, .company-subtitle) {
  color: var(--ink-soft);
  -webkit-text-fill-color: var(--ink-soft);
}

.company-section .eyebrow {
  color: var(--ink-faint);
  -webkit-text-fill-color: var(--ink-faint);
}

.company-section .company-badge {
  color: var(--ink);
  -webkit-text-fill-color: var(--ink);
}

.company-page .subpage-hero :where(.eyebrow, h1, .hero-lead),
.company-page
  .company-section
  :where(.eyebrow, h2, h3, dt, dd, .company-subtitle, .company-badge) {
  background-image: none;
  background-clip: border-box;
  -webkit-background-clip: border-box;
  -webkit-text-fill-color: inherit;
}

.company-page .subpage-hero .eyebrow,
.company-page .company-section .eyebrow {
  color: var(--ink-faint);
  -webkit-text-fill-color: var(--ink-faint);
}

.company-page .subpage-hero :where(h1),
.company-page .company-section :where(h2, h3, dt, .company-badge) {
  color: var(--ink);
  -webkit-text-fill-color: var(--ink);
}

.company-page .subpage-hero .hero-lead,
.company-page .company-section :where(dd, .company-subtitle) {
  color: var(--ink-soft);
  -webkit-text-fill-color: var(--ink-soft);
}

.privacy-stack {
  margin-top: 64px;
  padding: 40px 44px;
  border-radius: 34px;
}

.privacy-page .privacy-stack {
  border: 1px solid rgba(238, 245, 255, 0.16);
  background:
    linear-gradient(180deg, rgba(111, 144, 238, 0.34), rgba(63, 92, 195, 0.36)),
    rgba(181, 208, 255, 0.14);
  box-shadow: var(--shadow);
}

.privacy-page .subpage-banner,
.privacy-page .policy-shell {
  border: none;
  background: transparent;
  box-shadow: none;
}

.privacy-page .subpage-banner {
  padding: 0 0 24px;
  border-radius: 0;
  border-bottom: 1px solid rgba(238, 245, 255, 0.12);
}

.privacy-page .policy-shell {
  border-radius: 0;
  overflow: visible;
}

.privacy-page .subpage-banner :where(.eyebrow, h1, .hero-lead),
.privacy-page .policy-shell :where(h2, p) {
  background-image: none;
  background-clip: border-box;
  -webkit-background-clip: border-box;
  -webkit-text-fill-color: inherit;
}

.privacy-page .subpage-banner .eyebrow {
  color: var(--ink-faint);
  -webkit-text-fill-color: var(--ink-faint);
}

.privacy-page .subpage-banner :where(h1),
.privacy-page .policy-shell :where(h2) {
  color: var(--ink);
  -webkit-text-fill-color: var(--ink);
  text-shadow: none;
}

.privacy-page .subpage-banner .hero-lead,
.privacy-page .policy-shell :where(p) {
  color: var(--ink-soft);
  -webkit-text-fill-color: var(--ink-soft);
}

.privacy-page .policy-row {
  padding: 28px 0;
  border-top-color: rgba(238, 245, 255, 0.12);
}

.company-identity {
  display: grid;
  gap: 18px;
  align-content: center;
  padding: 0;
}

.company-visual {
  display: block;
  width: 60%;
  max-width: none;
  aspect-ratio: 1070 / 1070;
  object-fit: contain;
  object-position: center left;
  justify-self: center;
  filter: drop-shadow(0 16px 34px rgba(42, 72, 191, 0.14));
}

.company-identity h3 {
  max-width: 13ch;
  color: var(--ink);
}

.company-subtitle {
  font-family: var(--mono);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.company-badge {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.company-table {
  margin: 0;
}

.company-table div {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(236, 244, 255, 0.1);
}

.company-table div:first-child {
  padding-top: 0;
}

.company-table div:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.company-table dt {
  font-weight: 700;
}

.subpage-hero {
  padding-top: 64px;
}

.subpage-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.9fr);
  gap: 24px;
  align-items: center;
  padding: 28px;
  border-radius: 30px;
}

.subpage-art {
  position: relative;
  min-height: 220px;
}

.mini-chevron {
  position: absolute;
  top: 50%;
  right: 0;
  width: 220px;
  aspect-ratio: 1.28 / 1;
  transform: translateY(-50%);
  clip-path: polygon(0 50%, 32% 0, 100% 0, 68% 50%, 100% 100%, 32% 100%);
  background: linear-gradient(
    135deg,
    rgba(244, 249, 255, 0.22),
    rgba(178, 217, 255, 0.34)
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.mini-chevron-2 {
  right: 12%;
  width: 180px;
}

.mini-chevron-3 {
  right: 24%;
  width: 146px;
}

.policy-section {
  padding-top: 82px;
}

.policy-shell {
  border-radius: 30px;
  overflow: hidden;
}

.policy-row {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: 24px;
  padding: 24px 28px;
  border-top: 1px solid rgba(236, 244, 255, 0.1);
}

.policy-row:first-child {
  border-top: none;
}

.policy-row h2 {
  font-size: 1.28rem;
}

.site-footer {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 112px;
  border-top: 1px solid var(--line);
  background: rgba(41, 66, 191, 0.34);
  backdrop-filter: blur(12px);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr repeat(2, minmax(180px, 1fr));
  gap: 28px;
  padding-top: 30px;
  padding-bottom: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-brand strong {
  display: block;
  font-size: 1rem;
}

.footer-brand p {
  margin-top: 8px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-bottom {
  padding-bottom: 20px;
}

.copyright {
  padding-top: 18px;
  border-top: 1px solid rgba(237, 245, 255, 0.12);
  color: var(--ink-faint);
  font-size: 0.88rem;
}

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

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

@media (max-width: 1180px) {
  .header-inner,
  .hero-grid,
  .business-grid,
  .service-columns,
  .product-showcase,
  .company-shell,
  .subpage-banner,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .header-inner {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .hero-art {
    min-height: 260px;
  }

  .subpage-art {
    min-height: 180px;
  }
}

@media (max-width: 800px) {
  .header-inner,
  .page-shell,
  .footer-inner,
  .footer-bottom {
    padding-left: 18px;
    padding-right: 18px;
  }

  h1 {
    font-size: clamp(1.9rem, 8.2vw, 3rem);
  }

  h2 {
    font-size: clamp(1.9rem, 10vw, 2.8rem);
  }

  .hero,
  .news-section,
  .business-section,
  .service-section,
  .product-section,
  .company-section,
  .subpage-hero,
  .policy-section {
    padding-top: 72px;
  }

  .hero-actions {
    flex-direction: column;
  }

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

  .news-row,
  .company-table div,
  .policy-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero {
    padding-top: 44px;
  }

  .hero-grid {
    min-height: 0;
    padding: 28px 22px 30px;
  }

  .hero-copy h1 {
    font-size: clamp(1.9rem, 8.2vw, 3rem);
    max-width: 100%;
  }

  .hero-art {
    min-height: 160px;
  }

  .service-shell,
  .product-media,
  .product-summary,
  .subpage-banner,
  .company-shell,
  .privacy-stack,
  .business-card,
  .news-row,
  .policy-row {
    padding-left: 20px;
    padding-right: 20px;
  }

  .privacy-page .privacy-stack {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .privacy-page .subpage-banner {
    padding-bottom: 18px;
  }

  .privacy-page .policy-row {
    padding-top: 22px;
    padding-bottom: 22px;
  }

  .product-actions {
    flex-direction: column;
  }
}
