:root {
  --ink: #12100d;
  --ink-2: #211c16;
  --cream: #f4efe6;
  --paper: #fbf7ef;
  --sand: #d8e7ff;
  --sand-soft: #e8f1ff;
  --bronze: #1f66d1;
  --bronze-2: #75a9ff;
  --blue: #0d4fb5;
  --blue-deep: #062c68;
  --charcoal: #0d1110;
  --charcoal-2: #0b1422;
  --muted: #73675b;
  --muted-dark: #b9aa96;
  --line: rgba(82, 65, 45, 0.18);
  --line-dark: rgba(255, 255, 255, 0.16);
  --shadow: 0 30px 90px rgba(20, 16, 10, 0.18);
  --max: 1180px;
  --gutter: clamp(18px, 4vw, 48px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 8%, rgba(31, 102, 209, 0.18), transparent 28rem),
    linear-gradient(180deg, #f4f8ff, #f8fbff 42%, #e6eefb 100%);
  font-family: "Aptos", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100%;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(13, 79, 181, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 79, 181, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.82) 15%, transparent 82%);
}

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

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

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 50;
  width: min(calc(100% - 36px), var(--max));
  min-height: 70px;
  padding: 12px 14px 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #fff;
  background: rgba(13, 17, 16, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(22px);
  transform: translateX(-50%);
  transition: background-color 260ms ease, color 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(251, 247, 239, 0.9);
  border-color: rgba(82, 65, 45, 0.18);
  box-shadow: 0 18px 44px rgba(20, 16, 10, 0.16);
}

.brand {
  min-width: 238px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--charcoal);
  background: linear-gradient(145deg, #dbeafe, var(--bronze-2));
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.brand-mark svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.brand strong,
.site-footer strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.brand small,
.site-footer span {
  display: block;
  color: currentColor;
  opacity: 0.68;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-width: 0;
  font-size: 0.86rem;
  font-weight: 800;
}

.site-nav a,
.header-cta,
.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
}

.site-nav a {
  padding: 0 13px;
  opacity: 0.86;
}

.site-nav a:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.12);
}

.site-header.is-scrolled .site-nav a:hover {
  background: rgba(167, 122, 67, 0.12);
}

.header-cta {
  padding: 0 18px;
  color: var(--charcoal);
  background: var(--paper);
  font-size: 0.84rem;
  font-weight: 900;
}

.site-header.is-scrolled .header-cta {
  color: #fff;
  background: var(--charcoal);
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  color: currentColor;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  cursor: pointer;
}

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

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 92px 18px auto;
  z-index: 45;
  display: none;
}

.mobile-menu-panel {
  padding: 12px;
  display: grid;
  gap: 8px;
  color: #fff;
  background: rgba(6, 20, 40, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(22px);
}

.mobile-menu a {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  border-radius: 16px;
  font-weight: 900;
}

.mobile-menu a:hover {
  background: rgba(117, 169, 255, 0.14);
}

.hero {
  position: relative;
  min-height: 100dvh;
  padding: 150px var(--gutter) 44px;
  display: grid;
  align-items: center;
  justify-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--charcoal);
}

.hero-media,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(calc(1.06 - (var(--scroll, 0) * 0.00005)));
  filter: saturate(0.9) contrast(1.08);
}

.hero-shade {
  z-index: 1;
  background:
    radial-gradient(circle at 50% 38%, rgba(13, 79, 181, 0.1), rgba(6, 20, 40, 0.54) 46rem, rgba(6, 20, 40, 0.8) 70rem),
    linear-gradient(0deg, rgba(6, 20, 40, 0.92), rgba(6, 20, 40, 0.22) 48%, rgba(6, 20, 40, 0.78));
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.15;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.8) 1px, transparent 1px);
  background-size: 4px 4px;
  mix-blend-mode: soft-light;
}

.hero-content,
.arrival-board,
.hero-scroll {
  position: relative;
  z-index: 3;
}

.hero-content {
  width: min(980px, 100%);
  display: grid;
  justify-items: center;
  margin-inline: auto;
  padding-bottom: 96px;
  text-align: center;
}

.section-label {
  width: fit-content;
  margin: 0 0 20px;
  color: var(--bronze-2);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

h1 {
  max-width: 980px;
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 6.2vw, 5.9rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.5rem, 5vw, 5rem);
}

h3 {
  margin-bottom: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.hero-text {
  max-width: 760px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.45vw, 1.2rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

.button {
  padding: 0 22px;
  border: 1px solid transparent;
  font-size: 0.88rem;
  font-weight: 900;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.button:hover,
.header-cta:hover {
  transform: translateY(-2px);
}

.button-light {
  color: var(--charcoal);
  background: var(--paper);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.button-ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.24);
}

.button-dark {
  color: #fff;
  background: var(--charcoal);
}

.arrival-board {
  position: absolute;
  right: var(--gutter);
  bottom: 44px;
  width: min(390px, calc(100% - 2 * var(--gutter)));
  padding: 20px;
  background: rgba(251, 247, 239, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 28px;
  color: var(--ink);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(24px);
}

.arrival-board-top,
.arrival-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.arrival-board-top span,
.arrival-status span,
.flow-step span,
.report-preview-head span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.arrival-board-top strong {
  color: var(--bronze);
  font-size: 1.45rem;
}

.arrival-person {
  margin: 18px 0;
  padding: 18px 0;
  display: flex;
  align-items: center;
  gap: 14px;
  border-block: 1px solid rgba(82, 65, 45, 0.16);
}

.arrival-person > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--charcoal);
  border-radius: 50%;
  font-weight: 900;
}

.arrival-person strong {
  display: block;
}

.arrival-person p {
  margin: 3px 0 0;
  color: var(--muted);
}

.arrival-status span {
  width: calc(50% - 5px);
  padding: 10px;
  text-align: center;
  background: #fff;
  border-radius: 999px;
}

.hero-scroll {
  display: none;
}

.hero-scroll span {
  width: 58px;
  height: 1px;
  background: currentColor;
}

.standard-section,
.flow-section,
.residence-section,
.scenario-section,
.reports-section,
.pricing-section,
.privacy-section,
.final-cta,
.site-footer {
  width: min(calc(100% - 2 * var(--gutter)), var(--max));
  margin-inline: auto;
}

.standard-section {
  padding: 112px 0 78px;
}

.standard-intro {
  max-width: 850px;
  margin-bottom: 42px;
}

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

.standard-card {
  min-height: 300px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(251, 247, 239, 0.78);
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.standard-card span {
  color: var(--bronze);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.standard-card p,
.flow-copy p,
.flow-step p,
.residence-copy > p,
.role-list p,
.reports-panel p,
.report-preview p,
.section-heading p,
.price-card p,
.price-card li,
.pricing-note,
.privacy-copy p,
.final-cta p {
  color: var(--muted);
}

.flow-section {
  padding: 74px 0 112px;
  display: grid;
  grid-template-columns: minmax(330px, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(38px, 6vw, 86px);
}

.flow-copy {
  position: sticky;
  top: 132px;
  height: fit-content;
}

.flow-copy p {
  max-width: 520px;
}

.flow-dots {
  margin-top: 32px;
  display: flex;
  gap: 8px;
}

.flow-dots span {
  width: 42px;
  height: 3px;
  border-radius: 999px;
  background: rgba(82, 65, 45, 0.22);
  transition: background-color 180ms ease, width 180ms ease;
}

.flow-dots span.is-active {
  width: 72px;
  background: var(--bronze);
}

.flow-track {
  display: grid;
  gap: 18px;
}

.flow-step {
  min-height: 275px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(140deg, rgba(13, 17, 16, 0.92), rgba(13, 17, 16, 0.62)),
    url("/assets/entrada-lobby-access.jpg") center / cover;
  border: 1px solid var(--line-dark);
  border-radius: 34px;
  color: #fff;
  box-shadow: 0 24px 70px rgba(16, 12, 8, 0.22);
}

.flow-step:nth-child(2) {
  background:
    linear-gradient(140deg, rgba(13, 17, 16, 0.9), rgba(13, 17, 16, 0.54)),
    url("/assets/entrada-premium-entrance.jpg") center / cover;
}

.flow-step:nth-child(3) {
  background:
    linear-gradient(140deg, rgba(13, 17, 16, 0.92), rgba(13, 17, 16, 0.52)),
    url("/assets/entrada-residential-entrance.jpg") center / cover;
}

.flow-step:nth-child(4) {
  background:
    linear-gradient(140deg, rgba(13, 17, 16, 0.92), rgba(13, 17, 16, 0.48)),
    url("/assets/entrada-residential-tower.jpg") center / cover;
}

.flow-step span {
  color: var(--sand);
  margin-bottom: 16px;
}

.flow-step p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 0;
}

.residence-section {
  padding: 96px 0;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  align-items: center;
  gap: clamp(36px, 6vw, 84px);
}

.residence-media {
  overflow: hidden;
  border-radius: 42px;
  box-shadow: var(--shadow);
}

.residence-media img {
  width: 100%;
  height: 660px;
  object-fit: cover;
  object-position: center;
  transform: scale(1.03);
}

.role-list {
  margin-top: 32px;
  display: grid;
  gap: 12px;
}

.role-list article {
  padding: 22px 0;
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 22px;
  border-top: 1px solid var(--line);
}

.role-list article:last-child {
  border-bottom: 1px solid var(--line);
}

.role-list h3,
.role-list p {
  margin-bottom: 0;
}

.scenario-section {
  padding: 88px 0 110px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.scenario-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(180px, 1fr));
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.scenario-card {
  min-height: 260px;
  padding: 22px;
  display: flex;
  align-items: flex-end;
  color: #fff;
  background:
    linear-gradient(180deg, transparent, rgba(13, 17, 16, 0.78)),
    url("/assets/entrada-residential-shell.jpg") center / cover;
  border-radius: 28px;
  box-shadow: 0 18px 50px rgba(20, 16, 10, 0.14);
}

.scenario-card:nth-child(2),
.scenario-card:nth-child(5) {
  background:
    linear-gradient(180deg, transparent, rgba(13, 17, 16, 0.78)),
    url("/assets/entrada-premium-entrance.jpg") center / cover;
}

.scenario-card:nth-child(3),
.scenario-card:nth-child(6) {
  background:
    linear-gradient(180deg, transparent, rgba(13, 17, 16, 0.78)),
    url("/assets/entrada-lobby-access.jpg") center / cover;
}

.scenario-card span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  letter-spacing: -0.04em;
  line-height: 1.04;
}

.reports-section {
  padding: 58px;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1fr);
  align-items: center;
  gap: 46px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(13, 17, 16, 0.96), rgba(42, 31, 20, 0.9)),
    url("/assets/entrada-premium-entrance.jpg") center / cover;
  border-radius: 46px;
  box-shadow: 0 36px 100px rgba(13, 17, 16, 0.28);
}

.reports-panel .section-label {
  color: var(--sand);
}

.reports-panel p {
  color: rgba(255, 255, 255, 0.72);
}

.report-preview {
  padding: 28px;
  color: var(--ink);
  background: rgba(251, 247, 239, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 32px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(22px);
}

.report-preview-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.report-preview-head strong {
  color: var(--bronze);
}

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

.report-metrics div {
  padding: 16px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.report-metrics strong,
.price {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.15rem;
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1;
}

.report-metrics span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
}

.report-bars {
  display: grid;
  gap: 11px;
  margin-bottom: 22px;
}

.report-bars span {
  width: var(--w);
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--bronze), var(--sand));
}

.pricing-section {
  padding: 118px 0 64px;
}

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

.price-card {
  min-height: 590px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(251, 247, 239, 0.8);
  border: 1px solid var(--line);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.price-card.is-featured {
  color: #fff;
  background:
    linear-gradient(180deg, rgba(13, 17, 16, 0.74), rgba(13, 17, 16, 0.96)),
    url("/assets/entrada-lobby-access.jpg") center / cover;
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-20px);
}

.price-card.is-featured p,
.price-card.is-featured li,
.price-card.is-featured .price span {
  color: rgba(255, 255, 255, 0.76);
}

.price {
  margin: 0 0 16px;
  font-size: 2.55rem;
}

.price span {
  color: var(--muted);
  font-family: "Aptos", "Segoe UI", sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0;
}

.price-card ul {
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.price-card li {
  padding: 13px 0;
  border-top: 1px solid var(--line);
}

.price-card.is-featured li {
  border-top-color: rgba(255, 255, 255, 0.18);
}

.pricing-note {
  margin: 20px 0 0;
  text-align: center;
  font-weight: 750;
}

.privacy-section {
  padding: 84px 0 112px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: clamp(36px, 6vw, 80px);
}

.privacy-image {
  min-height: 560px;
  overflow: hidden;
  border-radius: 42px;
  box-shadow: var(--shadow);
}

.privacy-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center top;
}

.privacy-copy p {
  max-width: 600px;
  margin-bottom: 26px;
}

.final-cta {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 118px var(--gutter);
  display: grid;
  justify-items: center;
  text-align: center;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(13, 17, 16, 0.9), rgba(13, 17, 16, 0.42)),
    url("/assets/entrada-residential-tower.jpg") center / cover;
}

.final-cta .section-label {
  color: var(--sand);
}

.final-cta h2,
.final-cta p {
  max-width: 860px;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  padding: 30px 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  color: var(--muted);
  font-weight: 800;
}

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

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

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

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

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

@media (max-width: 1080px) {
  .site-header {
    align-items: flex-start;
    border-radius: 28px;
    flex-wrap: wrap;
  }

  .brand {
    min-width: 0;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .hero {
    padding-top: 150px;
  }

  .arrival-board {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 34px;
  }

  .hero-scroll {
    display: none;
  }

  .standard-grid,
  .pricing-grid,
  .flow-section,
  .residence-section,
  .reports-section,
  .privacy-section {
    grid-template-columns: 1fr;
  }

  .flow-copy {
    position: relative;
    top: auto;
  }

  .price-card.is-featured {
    transform: none;
  }

  .residence-media img {
    height: 520px;
  }
}

@media (max-width: 720px) {
  :root {
    --gutter: 14px;
  }

  .site-header {
    top: 10px;
    left: 10px;
    right: 10px;
    width: calc(100% - 20px);
    max-width: calc(100vw - 20px);
    min-height: 0;
    padding: 10px;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 44px;
    align-items: center;
    transform: none;
  }

  .brand-copy small {
    display: none;
  }

  .brand {
    min-width: 0;
    overflow: hidden;
  }

  .brand-copy {
    min-width: 0;
  }

  .brand-copy strong {
    white-space: nowrap;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .header-cta {
    display: none;
  }

  .site-nav {
    display: none;
  }

  .menu-toggle {
    position: fixed;
    top: 22px;
    right: 22px;
    z-index: 80;
    display: inline-flex !important;
    color: #fff;
    background: rgba(6, 20, 40, 0.74);
    border-color: rgba(255, 255, 255, 0.22);
  }

  .site-header.is-scrolled .menu-toggle {
    background: rgba(13, 79, 181, 0.08);
    border-color: rgba(13, 79, 181, 0.18);
  }

  .mobile-menu.is-open {
    display: block;
  }

  .hero {
    min-height: auto;
    padding: 190px var(--gutter) 34px;
    width: 100%;
    max-width: 100vw;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
    padding-bottom: 26px;
  }

  .hero-text {
    max-width: 100%;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.2rem, 9vw, 2.55rem);
    line-height: 1.08;
    letter-spacing: -0.05em;
  }

  h2 {
    font-size: clamp(2.35rem, 11vw, 3.4rem);
    line-height: 1.02;
  }

  .hero-text {
    font-size: 1rem;
  }

  .button {
    width: 100%;
  }

  .arrival-board {
    width: 100%;
    max-width: 100%;
    padding: 16px;
    border-radius: 22px;
    overflow: hidden;
  }

  .arrival-board-top strong {
    font-size: 1.1rem;
  }

  .arrival-person {
    align-items: flex-start;
  }

  .arrival-person p {
    max-width: 220px;
  }

  .arrival-status {
    gap: 8px;
  }

  .arrival-status span {
    width: calc(50% - 4px);
    padding-inline: 6px;
    font-size: 0.62rem;
    letter-spacing: 0.1em;
  }

  .standard-section,
  .flow-section,
  .residence-section,
  .scenario-section,
  .pricing-section,
  .privacy-section {
    padding-block: 62px;
  }

  .standard-grid {
    gap: 12px;
  }

  .standard-card,
  .flow-step,
  .price-card {
    min-height: auto;
    padding: 24px;
    border-radius: 26px;
  }

  .flow-step {
    min-height: 340px;
  }

  .residence-media,
  .privacy-image {
    border-radius: 28px;
  }

  .residence-media img,
  .privacy-image,
  .privacy-image img {
    min-height: 0;
    height: 420px;
  }

  .role-list article {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .scenario-grid {
    grid-template-columns: repeat(6, minmax(220px, 1fr));
  }

  .reports-section {
    width: calc(100% - 2 * var(--gutter));
    padding: 26px;
    border-radius: 30px;
  }

  .report-metrics {
    grid-template-columns: 1fr;
  }

  .price {
    font-size: 2.25rem;
  }

  .final-cta {
    padding: 72px var(--gutter);
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

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