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

html {
  scroll-behavior: smooth;
}

body,
h1,
h2,
h3,
p,
ul,
ol,
figure {
  margin: 0;
}

body {
  min-height: 100vh;
}

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

button,
a,
input,
textarea,
select {
  font: inherit;
}

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

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

:root {
  --canvas-width: 390px;
  --frame-gutter: 8px;
  --nav-gutter: 6px;
  --top-nav-height: 82px;
  --bottom-nav-height: 80px;
  --section-heading-inset: 10px;

  --hero-stage-max-width: 768px;
  --hero-stage-height: 224px;
  --hero-photo-offset-left: -65px;
  --hero-photo-offset-top: 10px;
  --hero-photo-width: 298px;
  --hero-copy-width: 236px;
  --hero-copy-vertical-align: end;
  --hero-copy-glow-size: clamp(240px, 72vw, 480px);

  --font-title: "Chiron Hei HK", "Do Hyeon", "Apple SD Gothic Neo", sans-serif;
  --font-serif: "Noto Serif KR", serif;
  --font-body: "Noto Sans KR", "Apple SD Gothic Neo", sans-serif;

  --color-deep: #08163d;
  --color-blue: #1b58a9;
  --color-blue-strong: #174098;
  --color-yellow: #ffd36a;
  --color-bg: #f8fbff;
  --color-bg-soft: #eef4fd;
  --color-surface: rgba(255, 255, 255, 0.92);
  --color-text: #142033;
  --color-muted: #5c6d88;
  --color-line: rgba(20, 32, 51, 0.08);
  --color-line-strong: rgba(20, 32, 51, 0.14);
  --color-inverse: rgba(255, 255, 255, 0.92);

  --shadow-card: 0 24px 50px rgba(7, 24, 51, 0.08);
  --shadow-strong: 0 24px 60px rgba(7, 24, 51, 0.18);

  --radius-xl: 40px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
}

body {
  overflow-x: hidden;
  font-family: var(--font-body);
  color: var(--color-text);
  background:
    radial-gradient(circle at top left, rgba(0, 86, 179, 0.1), transparent 26%),
    linear-gradient(180deg, #fefefb 0%, var(--color-bg) 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.42), transparent 36%),
    repeating-linear-gradient(
      90deg,
      rgba(18, 32, 56, 0.022) 0,
      rgba(18, 32, 56, 0.022) 1px,
      transparent 1px,
      transparent 48px
    );
  pointer-events: none;
}

.canvas-shell {
  width: min(calc(100vw - (var(--frame-gutter) * 2)), var(--canvas-width));
  margin-inline: auto;
}

.scroll-progress {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 70;
  height: 4px;
  background: rgba(0, 0, 0, 0.06);
}

.scroll-progress__bar {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--color-yellow), var(--color-blue));
}

.top-nav {
  display: none;
}

.page-canvas {
  display: grid;
  padding-bottom: 0;
}

.hero-shell,
.profile-section,
.policies-section,
.contact-section {
  padding-block: 28px;
}

.hero-shell {
  padding-bottom: 5px;
}

.bottom-nav {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 60;
  width: 100%;
  transform: none;
}

[data-section] {
  scroll-margin-bottom: calc(var(--bottom-nav-height) + 24px);
}

.site-footer {
  position: relative;
  padding: 18px 0 calc(var(--bottom-nav-height) + env(safe-area-inset-bottom, 0px) + 12px);
  background: linear-gradient(180deg, rgba(251, 247, 239, 0.94), rgba(246, 242, 233, 0.98));
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-card);
}

.brand-mark__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--color-blue);
}

.brand-mark__label {
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--color-blue-strong);
}

.top-nav__links,
.bottom-nav {
  display: grid;
  gap: 6px;
}

.top-nav__links {
  grid-template-columns: repeat(4, auto);
  padding: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--color-line);
  backdrop-filter: blur(18px);
}

.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 14px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 800;
  color: var(--color-muted);
  transition:
    color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.nav-link.is-active {
  color: #fff;
  background: linear-gradient(135deg, var(--color-blue-strong), var(--color-blue));
  box-shadow: 0 10px 20px rgba(0, 86, 179, 0.24);
}

.bottom-nav {
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 8px 8px calc(8px + env(safe-area-inset-bottom, 0px));
  padding-left: max(8px, env(safe-area-inset-left, 0px));
  padding-right: max(8px, env(safe-area-inset-right, 0px));
  border-radius: 0;
  background: linear-gradient(180deg, rgba(5, 24, 51, 0.992), rgba(7, 30, 63, 0.988));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 -6px 20px rgba(7, 24, 51, 0.12);
  backdrop-filter: blur(18px);
}

.bottom-nav .nav-link {
  min-height: 54px;
  padding: 8px 4px;
  border-radius: 16px;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.66);
}

.bottom-nav .nav-link.is-active {
  background: linear-gradient(135deg, rgba(255, 211, 106, 0.24), rgba(27, 88, 169, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.site-footer__copy {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(20, 32, 51, 0.52);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--color-yellow);
  box-shadow: 0 0 0 5px rgba(255, 211, 106, 0.18);
}

.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
  padding-inline: var(--section-heading-inset);
}

.section-heading--invert .eyebrow,
.section-heading--invert .section-title,
.section-heading--invert .section-copy {
  color: var(--color-inverse);
}

.section-title {
  width: 100%;
  max-width: none;
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 6vw, 3.4rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.05em;
  color: var(--color-text);
}

.section-copy {
  max-width: 40ch;
  font-size: 0.94rem;
  line-height: 1.62;
  color: var(--color-muted);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.76rem;
  font-weight: 700;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 11px 16px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button--primary {
  background: linear-gradient(135deg, var(--color-yellow), rgba(255, 255, 255, 0.92));
  color: var(--color-deep);
  box-shadow: 0 14px 26px rgba(7, 24, 51, 0.22);
}

.button--secondary {
  background: rgba(255, 255, 255, 0.84);
  color: var(--color-text);
  border: 1px solid var(--color-line-strong);
}

.hero-copy__logo {
  display: flex;
  justify-content: flex-end;
}

.hero-copy__logo-image {
  width: min(23vw, 102px);
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.22));
}

.hero-copy__logo-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.96);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.hero-copy__party {
  display: flex;
  width: 100%;
  justify-content: flex-end;
}

.hero-stage-bar {
  position: absolute;
  left: 50%;
  bottom: 2px;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.34em;
  width: calc(100% - 24px);
  max-width: 100%;
  min-height: 36px;
  padding: 7px 12px 8px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.09));
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 12px 24px rgba(6, 22, 54, 0.18);
  backdrop-filter: blur(12px);
  text-align: center;
  font-size: clamp(0.92rem, 3.95vw, 1.08rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: rgba(255, 255, 255, 0.97);
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.24);
  transform: translateX(-50%);
  pointer-events: none;
}

.hero-stage-bar__emphasis {
  font-family: var(--font-title);
  font-weight: 900;
  color: var(--color-yellow);
  letter-spacing: -0.04em;
}

.hero-stage-bar__text {
  font-weight: 800;
  color: rgba(255, 255, 255, 0.97);
}

.hero-copy__role {
  width: 100%;
  max-width: none;
  display: grid;
  gap: 5px;
  justify-items: end;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.hero-copy__role-line {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: baseline;
  gap: 6px;
  max-width: 100%;
  font-size: clamp(1.04rem, 4.45vw, 1.38rem);
  line-height: 1.04;
  white-space: nowrap;
}

.hero-copy__role-prefix {
  font-size: 0.9em;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.76);
}

.hero-copy__role-emphasis {
  font-family: var(--font-title);
  font-size: 1.08em;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--color-yellow);
}

.hero-copy__role-line--camp .hero-copy__role-emphasis {
  color: var(--color-yellow);
}

.hero-copy__role-line--hq .hero-copy__role-emphasis {
  color: rgba(255, 255, 255, 0.98);
}

.hero-copy__promise {
  max-width: 19ch;
  font-family: var(--font-serif);
  font-size: clamp(1.02rem, 4.7vw, 1.34rem);
  line-height: 1.4;
  letter-spacing: -0.03em;
  white-space: pre-line;
  color: var(--color-yellow);
}

.hero-description {
  display: grid;
  gap: 12px;
  padding: clamp(14px, 4vw, 24px) clamp(16px, 4.5vw, 28px) 0;
}

.hero-description__roles {
  display: grid;
  gap: 10px;
}

.hero-description__role {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: clamp(0.96rem, 3.8vw, 1.05rem);
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.96);
}

.hero-description__role::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 0.52em;
  border-radius: 999px;
  background: var(--color-yellow);
  flex: 0 0 auto;
}

.hero-description__copy {
  font-size: clamp(0.94rem, 3.8vw, 1.02rem);
  line-height: 1.72;
  color: rgba(235, 243, 255, 0.88);
}

.trust-grid,
.policy-accordion,
.policies-layout,
.contact-shell {
  display: grid;
  gap: 18px;
}

.trust-grid--lead {
  margin-bottom: 18px;
}

.accordion-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(20, 32, 51, 0.08);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-card);
}

.accordion-card--policy {
  border-color: rgba(255, 211, 106, 0.16);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 38px rgba(5, 16, 39, 0.16);
}

.accordion-trigger {
  position: relative;
  width: 100%;
  display: block;
  padding: 20px clamp(12px, 3.2vw, 22px) 24px clamp(12px, 3.2vw, 18px);
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
  transition:
    background-color 240ms ease,
    transform 240ms ease;
}

.accordion-trigger__index {
  position: absolute;
  top: 8px;
  right: 12px;
  z-index: 0;
  font-family: ui-monospace, "SFMono-Regular", "Roboto Mono", "Menlo", "Monaco", "Consolas", monospace;
  font-size: clamp(4.4rem, 17vw, 6.6rem);
  font-weight: 800;
  line-height: 0.8;
  letter-spacing: -0.08em;
  color: rgba(20, 32, 51, 0.08);
  pointer-events: none;
  user-select: none;
}

.accordion-card--policy .accordion-trigger__index {
  color: rgba(255, 255, 255, 0.1);
}

.accordion-trigger__body {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  min-width: 0;
}

.accordion-trigger__title {
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.34;
  letter-spacing: -0.03em;
  color: var(--color-text);
}

.accordion-card--policy .accordion-trigger__title {
  color: rgba(255, 255, 255, 0.96);
}

.accordion-trigger__summary {
  font-size: 0.96rem;
  line-height: 1.55;
  font-weight: 700;
  color: var(--color-blue-strong);
}

.accordion-card--policy .accordion-trigger__summary {
  color: var(--color-yellow);
}

.accordion-trigger__icon {
  position: absolute;
  width: 18px;
  height: 18px;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  opacity: 0.68;
  transition:
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 220ms ease;
}

.accordion-trigger__icon::before,
.accordion-trigger__icon::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: rgba(27, 88, 169, 0.78);
  transform: translate(-50%, -50%);
  transition: transform 220ms ease, opacity 220ms ease;
}

.accordion-trigger__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.accordion-card {
  color: var(--color-text);
}

.accordion-card--policy {
  color: rgba(255, 255, 255, 0.92);
}

.accordion-card.is-open .accordion-trigger__icon {
  transform: scale(1.06);
  opacity: 0.9;
}

.accordion-card.is-open .accordion-trigger__icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
  opacity: 0;
}

.accordion-panel[hidden] {
  display: none;
}

.accordion-panel__inner {
  display: grid;
  gap: 14px;
  padding: 0 18px 18px;
}

.accordion-points {
  display: grid;
  gap: 8px;
}

.accordion-points li {
  position: relative;
  padding-left: 14px;
  font-size: 0.92rem;
  line-height: 1.6;
}

.accordion-points li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--color-yellow);
}

.policy-detail-list {
  display: grid;
  gap: 12px;
}

.policy-detail {
  display: grid;
  gap: 8px;
  padding: 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.policy-detail__header {
  display: grid;
  gap: 6px;
}

.policy-detail__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  min-height: 28px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 211, 106, 0.14);
  border: 1px solid rgba(255, 211, 106, 0.24);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-yellow);
}

.policy-detail__headline {
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: -0.03em;
}

.policy-detail__blocks {
  display: grid;
  gap: 10px;
}

.policy-detail__block {
  display: grid;
  gap: 6px;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.policy-detail__block--solution {
  background: rgba(255, 211, 106, 0.1);
  border-color: rgba(255, 211, 106, 0.18);
}

.policy-detail__label {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  min-height: 22px;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.9);
}

.policy-detail__block--solution .policy-detail__label {
  background: rgba(255, 211, 106, 0.18);
  color: var(--color-yellow);
}

.policy-detail__text {
  font-size: 0.92rem;
  line-height: 1.66;
  color: rgba(255, 255, 255, 0.82);
}

.profile-photo-slider {
  position: relative;
  display: grid;
  gap: 0;
  margin-top: 18px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.profile-photo-slider__viewport {
  overflow: hidden;
  touch-action: pan-y pinch-zoom;
}

.profile-photo-slider__track {
  display: flex;
  transition: transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.profile-photo-slide {
  flex: 0 0 100%;
  min-width: 0;
}

.profile-photo-slide__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.profile-photo-slide__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgba(10, 24, 48, 0.18));
  pointer-events: none;
}

.profile-photo-slide__frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

.profile-photo-slider__footer {
  position: relative;
  z-index: 2;
  display: block;
  height: 6px;
}

.profile-photo-slider__dots {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  z-index: 3;
  display: flex;
  gap: 7px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(28, 41, 120, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.62),
    0 10px 24px rgba(7, 24, 51, 0.18);
  backdrop-filter: blur(5px);
  transform: translateX(-50%);
}

.profile-photo-slider__dot {
  appearance: none;
  border: 0;
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 999px;
  background: rgba(27, 88, 169, 0.8);
  cursor: pointer;
  transition:
    width 220ms ease,
    background-color 220ms ease,
    transform 220ms ease;
}

.profile-photo-slider__dot.is-active {
  width: 24px;
  background: linear-gradient(135deg, var(--color-blue-strong), var(--color-blue));
}

.profile-photo-slider__progress {
  display: block;
  height: 100%;
  overflow: hidden;
  background: rgba(27, 88, 169, 0.12);
}

.profile-photo-slider__progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-yellow), var(--color-blue));
  transform: scaleX(0.3334);
  transform-origin: left center;
  transition: transform 420ms ease;
}

.profile-photo-slider--empty {
  display: block;
}

.profile-photo-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06)),
    linear-gradient(135deg, rgba(18, 58, 125, 0.24), rgba(10, 24, 48, 0.12));
  border-top: 1px solid rgba(255, 255, 255, 0.58);
  border-bottom: 1px solid rgba(28, 41, 120, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.44),
    0 20px 44px rgba(7, 24, 51, 0.08);
}

.contact-body {
  position: relative;
  display: grid;
  gap: 10px;
  padding: 12px;
  border-radius: calc(var(--radius-xl) - 4px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.92));
  border: 1px solid rgba(28, 41, 120, 0.12);
  box-shadow:
    0 18px 40px rgba(7, 24, 51, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
}

.contact-primary {
  display: grid;
  gap: 8px;
  padding: 4px 0 0;
}

.contact-primary__item {
  display: inline-flex;
  width: 100%;
  justify-content: flex-start;
  min-height: 56px;
  padding: 9px 16px 9px 10px;
}

.contact-button-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  width: 100%;
  margin-top: 0;
  padding-top: 8px;
  border-top: 1px solid rgba(20, 32, 51, 0.08);
}

.contact-link-button {
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 7px 14px 7px 8px;
  border-radius: 999px;
  border: 1px solid rgba(28, 41, 120, 0.12);
  background: rgba(255, 255, 255, 0.78);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 10px 24px rgba(7, 24, 51, 0.08);
}

.contact-link-button--contact {
  justify-content: flex-start;
}

.contact-link-button__icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-blue-strong);
}

.contact-link-button__icon svg {
  width: 18px;
  height: 18px;
  display: block;
}

.contact-link-button__label {
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

.hero-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 16% 18%, rgba(104, 196, 255, 0.3), transparent 26%),
    radial-gradient(circle at 86% 16%, rgba(108, 182, 255, 0.2), transparent 20%),
    linear-gradient(118deg, #0d3470 0%, #15539a 44%, #2b7dce 100%);
  background-size: 140% 140%, 140% 140%, 100% 100%;
  animation: heroGradientShift 20s ease-in-out infinite alternate;
  color: var(--color-inverse);
}

.hero-section::before,
.hero-section::after {
  content: "";
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(32px);
}

.hero-section::before {
  top: 6%;
  right: -14%;
  width: clamp(220px, 68vw, 420px);
  height: clamp(220px, 68vw, 420px);
  background: radial-gradient(circle, rgba(130, 214, 255, 0.36) 0%, rgba(70, 176, 255, 0.24) 42%, transparent 72%);
  opacity: 0.96;
  animation: heroAuroraDrift 18s ease-in-out infinite alternate;
}

.hero-section::after {
  left: 26%;
  bottom: -36%;
  width: clamp(260px, 82vw, 520px);
  height: clamp(260px, 82vw, 520px);
  background: radial-gradient(circle, rgba(120, 196, 255, 0.2) 0%, rgba(66, 130, 228, 0.14) 40%, transparent 72%);
  opacity: 0.74;
  animation: heroOrbFloat 22s ease-in-out infinite;
}

.hero-shell,
.profile-section > .canvas-shell,
.policies-section > .canvas-shell,
.contact-section > .canvas-shell {
  position: relative;
  z-index: 2;
}

.hero-shell {
  display: grid;
  gap: 0;
  padding-top: 8px;
}

.hero-shell--stage {
  width: min(100%, var(--hero-stage-max-width));
}

.hero-grid {
  position: relative;
  min-height: var(--hero-stage-height);
}

.hero-grid::before {
  content: none;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-media::before {
  content: none;
}

.hero-media__frame {
  position: absolute;
  left: var(--hero-photo-offset-left);
  top: var(--hero-photo-offset-top);
  width: var(--hero-photo-width);
  aspect-ratio: 4 / 5;
  display: block;
  overflow: visible;
}

.hero-media__photo {
  width: 100%;
  height: auto;
  display: block;
  filter: saturate(1.02) contrast(1.03) drop-shadow(0 24px 44px rgba(7, 24, 51, 0.2));
}

.hero-copy {
  position: relative;
  z-index: 3;
  display: grid;
  align-content: var(--hero-copy-vertical-align);
  justify-items: end;
  justify-self: end;
  gap: 10px;
  min-height: inherit;
  width: min(100%, var(--hero-copy-width));
  margin-left: auto;
  padding: clamp(22px, 6vw, 44px) clamp(16px, 5vw, 34px) clamp(58px, 16vw, 84px);
  text-align: right;
}

.hero-copy::before {
  content: none;
}

.hero-copy::after {
  content: none;
}

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

.hero-section__name {
  width: 100%;
  max-width: none;
  font-family: var(--font-title);
  font-weight: 900;
  font-size: clamp(3.25rem, 14vw, 5.2rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
  white-space: nowrap;
  color: #fff;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.hero-section__cta {
  padding-top: 6px;
}

.hero-description-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 0 0 22px;
  color: var(--color-inverse);
  background:
    linear-gradient(180deg, rgba(7, 22, 61, 0.96) 0%, rgba(10, 31, 74, 0.98) 44%, rgba(18, 53, 125, 0.98) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-description-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 22%),
    radial-gradient(circle at 84% 16%, rgba(255, 211, 106, 0.14), transparent 18%),
    radial-gradient(circle at 12% 92%, rgba(52, 118, 219, 0.2), transparent 24%);
}

.hero-description-section > .canvas-shell {
  position: relative;
  z-index: 2;
}

@keyframes heroGradientShift {
  0% {
    background-position: 8% 18%, 92% 10%, 50% 0%;
  }

  50% {
    background-position: 18% 30%, 82% 18%, 50% 0%;
  }

  100% {
    background-position: 12% 46%, 74% 0%, 50% 0%;
  }
}

@keyframes heroAuroraDrift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(-5%, 4%, 0) scale(1.06);
  }

  100% {
    transform: translate3d(4%, -3%, 0) scale(1.1);
  }
}

@keyframes heroOrbFloat {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.76;
  }

  50% {
    transform: translate3d(6%, -8%, 0) scale(1.05);
    opacity: 0.92;
  }

  100% {
    transform: translate3d(-4%, 5%, 0) scale(0.98);
    opacity: 0.82;
  }
}

@keyframes heroGridDrift {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-24px, 12px, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-section,
  .hero-section::before,
  .hero-section::after,
  .hero-grid::before {
    animation: none;
  }
}

.profile-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(ellipse at 80% 0%, rgba(27, 88, 169, 0.08), transparent 50%),
    linear-gradient(180deg, #ffffff, #f6f8fb);
  color: var(--color-text);
  box-shadow:
    inset 0 14px 0 var(--color-blue-strong),
    inset 0 -1px 0 rgba(20, 32, 51, 0.08);
}

.profile-section::after {
  content: "";
  position: absolute;
  inset: -12% -10%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.82;
  background:
    radial-gradient(circle at 78% 16%, rgba(27, 88, 169, 0.12), transparent 24%),
    radial-gradient(circle at 12% 88%, rgba(255, 211, 106, 0.14), transparent 20%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0));
}

.policies-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at top left, rgba(255, 211, 106, 0.12), transparent 30%),
    radial-gradient(circle at bottom right, rgba(27, 88, 169, 0.1), transparent 30%),
    linear-gradient(180deg, var(--color-deep), #071a3a);
  box-shadow:
    inset 0 14px 0 rgba(255, 255, 255, 0.08),
    inset 0 -1px 0 rgba(255, 255, 255, 0.08);
}

.policies-section::after {
  content: "";
  position: absolute;
  inset: -14% -12%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.9;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 211, 106, 0.18), transparent 24%),
    radial-gradient(circle at 82% 78%, rgba(27, 88, 169, 0.16), transparent 26%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent 54%);
}

.contact-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(255, 211, 106, 0.12), transparent 50%),
    linear-gradient(180deg, #ffffff, #fbf7ef);
  color: var(--color-text);
  box-shadow:
    inset 0 14px 0 var(--color-deep),
    inset 0 -1px 0 rgba(20, 32, 51, 0.08);
}

.contact-section::after {
  content: "";
  position: absolute;
  inset: -12% -10%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.82;
  background:
    radial-gradient(circle at 18% 18%, rgba(20, 32, 51, 0.08), transparent 22%),
    radial-gradient(circle at 84% 74%, rgba(255, 211, 106, 0.16), transparent 24%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.44), rgba(255, 255, 255, 0));
}

.js .hero-section.reveal,
.js .hero-description-section.reveal,
.js .profile-section.reveal,
.js .policies-section.reveal,
.js .contact-section.reveal {
  opacity: 0;
  transform: translate3d(0, 22px, 0) scale(1.01);
  transition:
    opacity 760ms ease,
    transform 960ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js .hero-section.reveal.is-visible,
.js .hero-description-section.reveal.is-visible,
.js .profile-section.reveal.is-visible,
.js .policies-section.reveal.is-visible,
.js .contact-section.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

@media (max-width: 393px) {
  :root {
    --canvas-width: 390px;
    --frame-gutter: 8px;
    --nav-gutter: 6px;
    --section-heading-inset: 10px;
  }

  .hero-media__frame {
    top: 18px;
    width: 310px;
  }

  .hero-copy {
    padding-top: 26px;
  }
}

@media (min-width: 460px) {
  :root {
    --canvas-width: 430px;
    --frame-gutter: 12px;
    --nav-gutter: 10px;
    --section-heading-inset: 12px;
    --hero-stage-height: 242px;
    --hero-photo-offset-left: -42px;
    --hero-photo-width: 332px;
    --hero-copy-width: 252px;
    --hero-copy-glow-size: clamp(250px, 62vw, 340px);
  }

  .hero-shell,
  .profile-section,
  .policies-section,
  .contact-section {
    padding-block: 36px;
  }

  .hero-shell {
    padding-bottom: 5px;
  }
}

@media (min-width: 620px) {
  :root {
    --canvas-width: 560px;
    --frame-gutter: 18px;
    --nav-gutter: 16px;
    --section-heading-inset: 14px;
    --hero-stage-height: 294px;
    --hero-photo-offset-left: -22px;
    --hero-photo-width: 430px;
    --hero-copy-width: 300px;
    --hero-copy-glow-size: clamp(280px, 56vw, 380px);
  }

  .hero-section__name {
    font-size: clamp(4.2rem, 6.8vw, 5.2rem);
  }
}

@media (min-width: 860px) {
  :root {
    --canvas-width: 680px;
    --frame-gutter: 24px;
    --nav-gutter: 20px;
    --section-heading-inset: 16px;
    --hero-stage-height: 352px;
    --hero-photo-offset-left: -18px;
    --hero-photo-width: 518px;
    --hero-copy-width: 348px;
    --hero-copy-glow-size: clamp(320px, 52vw, 420px);
  }

  .hero-section__name {
    font-size: clamp(4.8rem, 5.5vw, 5.7rem);
  }
}

@media (min-width: 768px) {

  .top-nav {
    position: fixed;
    inset: 4px 0 auto 0;
    z-index: 50;
    display: block;
  }

  .nav-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: var(--top-nav-height);
  }

  .hero-shell,
  .profile-section,
  .policies-section,
  .contact-section {
    padding-block: 54px;
  }

  .hero-shell {
    padding-top: calc(var(--top-nav-height) + 40px);
    padding-bottom: 5px;
  }

  .hero-section {
    padding-top: calc(var(--top-nav-height) + 6px);
  }

  .profile-section,
  .policies-section,
  .contact-section {
    scroll-margin-top: calc(var(--top-nav-height) + 24px);
  }

  .bottom-nav {
    display: none;
  }

  .page-canvas {
    padding-bottom: 0;
  }

  .site-footer {
    padding: 18px 0 28px;
  }

  .hero-copy__logo-pill {
    min-height: 38px;
    padding-inline: 16px;
  }

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

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

  .contact-button-row {
    grid-template-columns: repeat(2, minmax(0, 180px));
    justify-content: start;
  }
}
