:root {
  --bg: #050505;
  --bg-soft: #0d0d0d;
  --surface: rgba(12, 12, 12, 0.78);
  --surface-strong: #101010;
  --surface-elevated: linear-gradient(180deg, rgba(14, 14, 14, 0.9), rgba(8, 8, 8, 0.9));
  --text: #f8f3dd;
  --text-strong: #fff7c7;
  --muted: #b3ad93;
  --line: rgba(245, 197, 24, 0.12);
  --line-strong: rgba(245, 197, 24, 0.24);
  --accent: #f5c518;
  --accent-bright: #ffd84d;
  --accent-deep: #b18400;
  --accent-soft: rgba(245, 197, 24, 0.14);
  --danger-soft: rgba(255, 98, 66, 0.12);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  --glow: 0 0 0 1px rgba(245, 197, 24, 0.08), 0 18px 44px rgba(0, 0, 0, 0.34);
  --radius-lg: 32px;
  --radius-md: 24px;
  --radius-sm: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Bahnschrift", "Montserrat", "Pretendard", "Noto Sans KR", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 10%, rgba(245, 197, 24, 0.12), transparent 18%),
    radial-gradient(circle at 90% 18%, rgba(245, 197, 24, 0.07), transparent 14%),
    linear-gradient(180deg, #050505 0%, #040404 38%, #070707 100%);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
textarea {
  font: inherit;
}

.site-shell {
  position: relative;
  overflow: hidden;
}

.site-shell::before,
.site-shell::after {
  content: "";
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: -2;
}

.site-shell::before {
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  background-image:
    linear-gradient(rgba(245, 197, 24, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 197, 24, 0.025) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.92), transparent 78%);
}

.site-shell::after {
  top: -140px;
  right: -120px;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 197, 24, 0.24), transparent 65%);
  filter: blur(18px);
  opacity: 0.9;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 30;
  backdrop-filter: blur(14px);
  background: rgba(5, 5, 5, 0.64);
  border-bottom: 1px solid rgba(245, 197, 24, 0.05);
  transition: transform 220ms ease, opacity 220ms ease, background 220ms ease;
}

.topbar.is-hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 78px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-right: auto;
}

.brand-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
}

.brand-title {
  font-family: "Bahnschrift", "Montserrat", sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text-strong);
}

.topnav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 0.92rem;
}

.topnav a {
  position: relative;
}

.topnav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 180ms ease;
}

.topnav a:hover,
.topnav a:focus-visible {
  color: var(--text);
}

.topnav a:hover::after,
.topnav a:focus-visible::after {
  transform: scaleX(1);
}

.call-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-bright) 0%, var(--accent) 100%);
  color: #060606;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 10px 24px rgba(245, 197, 24, 0.18);
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 120px 0 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.36), rgba(5, 5, 5, 0.78)),
    radial-gradient(circle at center 32%, rgba(255, 216, 77, 0.08), transparent 22%);
  pointer-events: none;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  background: #060606;
}

.hero-background-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
  filter: saturate(0.88) brightness(0.62);
}

.hero-beam,
.hero-building {
  position: absolute;
  display: none;
}

.hero-beam {
  top: -10%;
  width: 32vw;
  height: 130%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
  opacity: 0.55;
}

.hero-beam-left {
  left: -8vw;
  transform: skewX(-24deg);
}

.hero-beam-right {
  right: -6vw;
  transform: skewX(24deg);
}

.hero-building {
  bottom: -8%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.01)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 18px),
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 16px),
    linear-gradient(180deg, rgba(34, 34, 34, 0.9), rgba(8, 8, 8, 1));
  border: 1px solid rgba(255, 255, 255, 0.04);
  filter: grayscale(1);
  opacity: 0.38;
}

.hero-building-left {
  left: -2%;
  width: 28vw;
  height: 82vh;
  transform: skewY(10deg) rotate(-8deg);
}

.hero-building-center {
  left: 36%;
  width: 24vw;
  height: 58vh;
  transform: skewY(8deg) rotate(2deg);
  opacity: 0.28;
}

.hero-building-right {
  right: -1%;
  width: 30vw;
  height: 84vh;
  transform: skewY(-10deg) rotate(9deg);
}

.hero-stage {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-copy,
.hero-panel,
.section-panel,
.story-card,
.feature-card,
.process-card,
.media-card,
.cta-panel,
.policy-panel,
.compare-card {
  background: var(--surface-elevated);
  border: 1px solid rgba(245, 197, 24, 0.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero-copy {
  position: relative;
  width: min(980px, 100%);
  padding: 110px 24px 88px;
  border-radius: 0;
  overflow: visible;
  text-align: center;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.hero-copy::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -24px;
  width: min(860px, 100%);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(245, 197, 24, 0.2), transparent);
  pointer-events: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(245, 197, 24, 0.05);
  border: 1px solid rgba(245, 197, 24, 0.12);
  color: var(--accent-bright);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.cta-panel h2,
.policy-panel h1,
.policy-panel h2,
.footer-title {
  font-family: "Bahnschrift", "Montserrat", sans-serif;
  letter-spacing: -0.04em;
}

.hero h1 {
  position: relative;
  margin: 24px auto 18px;
  font-size: clamp(2.9rem, 6.1vw, 5.4rem);
  line-height: 0.96;
  color: var(--text-strong);
  width: fit-content;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-tagline {
  position: relative;
  margin: 22px 0 0;
  color: rgba(255, 216, 77, 0.58);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.28em;
}

.hero-highlight {
  color: var(--accent-bright);
  text-shadow: 0 0 22px rgba(245, 197, 24, 0.22);
}

.hero-title-line {
  display: block;
  white-space: nowrap;
  width: auto;
  max-width: 100%;
}

@media (max-width: 900px) {
  .hero h1 {
    width: 100%;
  }

  .hero-title-line {
    white-space: normal;
    width: 100%;
  }
}

.hero-lead {
  position: relative;
  max-width: 620px;
  margin: 0 auto;
  font-size: 1rem;
  color: rgba(248, 243, 221, 0.82);
}

.hero-emphasis {
  position: relative;
  margin: 22px auto 0;
  padding: 16px 0 0;
  border-left: 0;
  border-top: 1px solid rgba(245, 197, 24, 0.14);
  background: transparent;
  border-radius: 0;
  font-size: 0.96rem;
  color: rgba(248, 243, 221, 0.92);
  max-width: 560px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 26px;
}

.scroll-cue {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
  color: rgba(248, 243, 221, 0.76);
  font-size: 0.9rem;
  text-align: center;
}

.scroll-cue::after {
  content: "";
  width: 14px;
  height: 14px;
  border-right: 1px solid var(--accent);
  border-bottom: 1px solid var(--accent);
  transform: rotate(45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-bright) 0%, var(--accent) 100%);
  color: #080808;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(245, 197, 24, 0.16);
}

.btn-secondary {
  border-color: rgba(245, 197, 24, 0.14);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-strong);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: rgba(245, 197, 24, 0.08);
}

.hero-overview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  position: relative;
  z-index: 1;
  margin-top: 34px;
}

.hero-overview-card {
  padding: 24px 22px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.94), rgba(9, 9, 9, 0.94));
  border: 1px solid rgba(245, 197, 24, 0.1);
  box-shadow: var(--shadow);
}

.metric-label {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 216, 77, 0.64);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.hero-overview-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.35rem;
  font-family: "Bahnschrift", "Montserrat", sans-serif;
  color: var(--text-strong);
}

.hero-overview-card p {
  margin: 0;
  color: var(--muted);
}

.hero-mini-note {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  margin-top: 4px;
}

.hero-mini-note p {
  margin: 0;
  color: rgba(248, 243, 221, 0.66);
  font-size: 0.84rem;
}

.landing-section {
  padding: 64px 0;
}

.landing-section-tight {
  padding-top: 44px;
}

.landing-shell {
  position: relative;
}

.landing-shell .section-heading h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.landing-shell .section-heading p {
  font-size: 0.92rem;
}

.signal-bar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.signal-item {
  padding: 20px 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(245, 197, 24, 0.04), rgba(11, 11, 11, 0.92));
  border: 1px solid rgba(245, 197, 24, 0.07);
}

.signal-label {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 216, 77, 0.68);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.signal-item strong {
  color: var(--text-strong);
  font-size: 1.02rem;
}

.section {
  padding: 46px 0;
}

.section-panel {
  position: relative;
  padding: 42px 36px 36px;
  border-radius: 36px;
  overflow: hidden;
}

.section-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245, 197, 24, 0.025), transparent 34%);
  pointer-events: none;
}

.section-panel::after {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, rgba(245, 197, 24, 0.48), transparent);
}

.section-heading {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
  margin-bottom: 28px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  color: var(--text-strong);
}

.section-heading p {
  margin: 0;
  max-width: 560px;
  color: var(--muted);
}

.section-heading-center {
  justify-content: center;
  text-align: center;
}

.section-heading-center > div {
  display: grid;
  gap: 10px;
  justify-items: center;
}

.section-heading-center p {
  max-width: none;
}

.section-heading-compact {
  margin-bottom: 22px;
}

.landing-shell .section-heading-compact {
  margin-bottom: 28px;
}

.compare-grid,
.feature-grid,
.media-grid,
.footer-grid {
  position: relative;
  display: grid;
  gap: 18px;
}

.compare-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.why-us-grid .compare-card {
  min-height: 250px;
}

.why-us-grid .compare-card h3 {
  margin-bottom: 18px;
  font-size: 1.34rem;
}

.negative {
  border-color: rgba(255, 98, 66, 0.28);
}

.positive {
  border-color: rgba(245, 197, 24, 0.2);
}

.compare-card {
  padding: 28px 24px 24px;
  border-radius: 18px;
  border-top-width: 2px;
}

.compare-card.negative {
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.98), rgba(12, 12, 12, 0.98));
}

.compare-card.positive {
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.98), rgba(12, 12, 12, 0.98));
}

.compare-card h3,
.feature-card h3,
.process-card h3,
.story-card h3,
.media-card h3 {
  margin-top: 0;
  margin-bottom: 14px;
  color: var(--text-strong);
}

.compare-card ul,
.feature-card ul,
.media-card ul,
.policy-panel ul {
  margin: 0;
  padding: 0;
}

.compare-card li,
.feature-card li,
.media-card li,
.policy-panel li {
  list-style: none;
  position: relative;
  padding-left: 18px;
  margin-top: 12px;
  color: var(--muted);
}

.compare-card li::before,
.feature-card li::before,
.media-card li::before,
.policy-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(245, 197, 24, 0.75);
}

.compare-card.negative li::before {
  content: "";
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff5f57;
  box-shadow: 0 0 10px rgba(255, 95, 87, 0.6);
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.process-grid-inline {
  align-items: stretch;
}

.process-grid-inline .process-card {
  min-height: 150px;
}

.process-grid-inline .process-card:not(:last-child)::before {
  content: "›";
  position: absolute;
  right: -14px;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  text-shadow: 0 0 10px rgba(245, 197, 24, 0.12);
}

.process-card {
  padding: 22px 16px 18px;
  border-radius: 16px;
  position: relative;
  overflow: visible;
  min-height: 180px;
  text-align: center;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.process-card > * {
  position: relative;
  z-index: 1;
}

.process-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 14px;
  border-radius: 50%;
  border: 1px solid rgba(245, 197, 24, 0.7);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--accent-bright);
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.process-card h3 {
  margin-bottom: 8px;
  font-size: 1.02rem;
  transition: color 220ms ease, transform 220ms ease;
}

.process-card p {
  font-size: 0.82rem;
  line-height: 1.55;
  transition: color 220ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .process-card:hover,
  .process-card:focus-within {
    transform: translateY(-8px);
    border-color: rgba(245, 197, 24, 0.28);
    box-shadow: 0 24px 40px rgba(0, 0, 0, 0.28);
    background: linear-gradient(180deg, rgba(245, 197, 24, 0.1), rgba(10, 10, 10, 0.98));
  }

  .process-card:hover .process-step,
  .process-card:focus-within .process-step {
    transform: scale(1.08);
    background: rgba(245, 197, 24, 0.12);
    border-color: rgba(255, 214, 64, 0.92);
    box-shadow: 0 0 22px rgba(245, 197, 24, 0.18);
  }

  .process-card:hover h3,
  .process-card:focus-within h3 {
    color: var(--accent-bright);
    transform: translateY(-1px);
  }

  .process-card:hover p,
  .process-card:focus-within p {
    color: rgba(248, 243, 221, 0.88);
  }
}

.process-card p,
.story-card p,
.feature-card p,
.media-card p,
.footer-copy,
.footer-meta,
.policy-panel p {
  color: var(--muted);
}

.feature-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-card {
  padding: 28px;
  border-radius: 26px;
  min-height: 210px;
}

.stories-wrap {
  position: relative;
  padding: 0 52px;
}

.story-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, calc((100% - 22px) / 2));
  gap: 22px;
  overflow-x: auto;
  padding-top: 10px;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  scroll-behavior: smooth;
}

.story-track::-webkit-scrollbar {
  display: none;
}

.story-card {
  scroll-snap-align: start;
  padding: 30px;
  border-radius: 28px;
  min-height: 500px;
  opacity: 0.68;
  transition: transform 180ms ease, opacity 180ms ease, border-color 180ms ease, background 180ms ease;
}

.story-card.is-active {
  opacity: 1;
  transform: translateY(-4px);
  border-color: rgba(245, 197, 24, 0.32);
  background: linear-gradient(180deg, rgba(245, 197, 24, 0.05), rgba(10, 10, 10, 0.96));
}

.story-card {
  border-radius: 18px;
}

.story-card h3 {
  font-size: 1.2rem;
}

.story-card p {
  font-size: 0.9rem;
  line-height: 1.8;
}

.story-key {
  margin-top: 18px;
  color: var(--accent-bright);
  font-weight: 800;
}

.story-label,
.media-meta {
  margin: 0 0 14px;
  color: rgba(255, 216, 77, 0.7);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.story-result {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(245, 197, 24, 0.08);
  border: 1px solid rgba(245, 197, 24, 0.18);
  font-weight: 800;
  color: var(--text-strong);
}

.story-result strong {
  color: var(--accent-bright);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

.story-dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 18px;
}

.story-dot {
  width: 12px;
  height: 12px;
  border: 0;
  padding: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  cursor: pointer;
}

.story-dot.is-active {
  background: var(--accent);
  box-shadow: 0 0 14px rgba(245, 197, 24, 0.65);
}

.story-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 0;
  padding: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 20, 20, 0.94);
  color: var(--accent);
  font-size: 2.4rem;
  line-height: 1;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  transform: translateY(-50%);
}

.story-nav:hover,
.story-nav:focus-visible {
  color: var(--accent-bright);
  background: rgba(32, 32, 32, 0.98);
}

.story-nav:disabled {
  opacity: 0.28;
  cursor: default;
  box-shadow: none;
}

.story-nav-prev {
  left: 0;
}

.story-nav-next {
  right: 0;
}

.media-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.media-card {
  padding: 24px;
  border-radius: 24px;
  min-height: 320px;
}

.media-grid-compact .media-card {
  min-height: auto;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.media-card-video {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.media-card-body {
  padding: 0 4px;
}

.media-card-video h3 {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.55;
}

.media-card-video h3 a {
  color: var(--text-strong);
}

.media-card-video h3 a:hover,
.media-card-video h3 a:focus-visible {
  color: var(--accent-bright);
}

.media-thumb-link {
  display: block;
}

.media-card .hero-actions {
  margin-top: 20px;
}

.media-thumb {
  aspect-ratio: 16 / 10;
  margin-bottom: 18px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.68)),
    linear-gradient(135deg, rgba(245, 197, 24, 0.72), rgba(129, 93, 0, 0.42));
  display: grid;
  place-items: center;
  color: #080808;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.media-thumb-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.media-thumb-link:hover .media-thumb-image,
.media-thumb-link:focus-visible .media-thumb-image {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.26);
}

.media-thumb-dark {
  margin-bottom: 0;
  border: 1px solid rgba(245, 197, 24, 0.08);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(6, 6, 6, 0.98), rgba(2, 2, 2, 1));
}

.section-cta-link {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

.section-cta-link a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-bright) 0%, var(--accent) 100%);
  color: #070707;
  font-weight: 900;
  letter-spacing: 0.01em;
  box-shadow: 0 12px 24px rgba(245, 197, 24, 0.22);
}

.section-cta-link a:hover,
.section-cta-link a:focus-visible {
  color: #070707;
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(245, 197, 24, 0.28);
}


.feature-spotlight {
  position: relative;
  min-height: 100svh;
  padding: 0;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background-color: #090909;
}

.feature-spotlight::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.92) 0%, rgba(5, 5, 5, 0.74) 32%, rgba(5, 5, 5, 0.38) 66%, rgba(5, 5, 5, 0.54) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.72)),
    url("assets/feature-lounge-photo.webp") center center / cover no-repeat;
  transform: scale(1.02);
}

.feature-spotlight::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 24% 38%, rgba(245, 197, 24, 0.12), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 26%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 52px),
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.014) 0 1px, transparent 1px 48px);
  opacity: 0.42;
  pointer-events: none;
}

.feature-spotlight .landing-shell {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  width: min(calc(100% - 56px), 1280px);
  min-height: 100svh;
  margin: 0 auto;
  padding: 122px 0 84px;
}

.feature-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 492px);
  gap: clamp(36px, 6vw, 88px);
  width: 100%;
  min-height: min(76svh, 760px);
}

.feature-hero-copy,
.feature-highlight-list {
  position: relative;
  z-index: 1;
}

.feature-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  padding-left: 10px;
}

.feature-hero-copy h2 {
  margin: 18px 0 16px;
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  line-height: 1.05;
  color: var(--text-strong);
}

.feature-hero-copy p {
  max-width: 540px;
  font-size: 1.08rem;
  line-height: 1.75;
  color: rgba(248, 243, 221, 0.82);
}

.feature-highlight-list {
  display: grid;
  gap: 14px;
  align-self: center;
}

.feature-highlight-card {
  padding: 22px 28px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(38, 38, 38, 0.42), rgba(18, 18, 18, 0.34));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
}

.feature-highlight-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--accent-bright);
  font-size: 1.1rem;
}

.feature-highlight-card p {
  margin: 0;
  color: rgba(248, 243, 221, 0.76);
  line-height: 1.65;
}

.feature-highlight-card p {
  margin: 0;
  color: var(--muted);
}

.cta {
  padding: 52px 0 56px;
}

.cta-panel {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 860px;
  margin: 0 auto;
  padding: 42px 40px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(14, 14, 14, 0.98), rgba(8, 8, 8, 0.98));
  border: 1px solid rgba(245, 197, 24, 0.42);
  box-shadow: var(--glow);
  color: var(--text);
  text-align: center;
}

.cta-copy {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
}

.cta-panel p {
  color: rgba(248, 243, 221, 0.74);
}

.footer {
  padding: 0 0 52px;
}

.footer-panel {
  padding: 48px 56px 38px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(15, 15, 15, 0.96), rgba(8, 8, 8, 0.96));
  border: 1px solid rgba(245, 197, 24, 0.07);
  box-shadow: var(--shadow);
}

.footer-grid {
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 430px);
  grid-template-areas:
    "brand info"
    "brand address";
  column-gap: clamp(48px, 8vw, 140px);
  row-gap: 18px;
  align-items: start;
}

.footer-brand-block {
  grid-area: brand;
}

.footer-info-block {
  grid-area: info;
}

.footer-address-block {
  grid-area: address;
}

.footer-brand-block,
.footer-info-block,
.footer-address-block {
  display: flex;
  flex-direction: column;
}

.footer-info-block,
.footer-address-block {
  justify-self: end;
  width: min(100%, 430px);
}

.footer-title {
  font-size: 1.9rem;
  margin: 0 0 10px;
  color: var(--text-strong);
}

.footer-copy {
  margin: 0;
}

.footer-phone {
  margin: 28px 0 0;
  font-family: "Bahnschrift", "Montserrat", sans-serif;
  font-size: clamp(2.3rem, 4vw, 3.8rem);
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 900;
  color: var(--text-strong);
}

.footer-meta {
  margin: 8px 0 0;
}

.footer-copyright {
  width: min(100%, 430px);
  margin: 26px 0 0 auto;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: start;
}

.footer-links a {
  color: var(--accent-bright);
  font-weight: 800;
}

.policy-page {
  padding: 60px 0;
}

.policy-panel {
  padding: 40px;
  border-radius: 36px;
}

.policy-panel h1 {
  margin-top: 0;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  color: var(--text-strong);
}

.policy-meta {
  margin: 10px 0 24px;
  color: rgba(248, 243, 221, 0.72);
  font-size: 0.95rem;
}

.policy-panel h2 {
  margin-top: 34px;
  font-size: 1.45rem;
  color: var(--text-strong);
}

.policy-panel h2[id],
.policy-panel h3[id] {
  scroll-margin-top: 110px;
}

.policy-panel h3 {
  margin-top: 24px;
  color: rgba(255, 247, 199, 0.9);
  font-size: 1.08rem;
}

.policy-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 18px;
  overflow: hidden;
}

.policy-table th,
.policy-table td {
  border: 1px solid rgba(245, 197, 24, 0.12);
  padding: 14px;
  text-align: left;
  vertical-align: top;
}

.policy-table th {
  background: rgba(245, 197, 24, 0.1);
  color: var(--text-strong);
}

@media (max-width: 1080px) {
  .compare-grid,
  .feature-grid,
  .cta-panel,
  .footer-grid,
  .media-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-panel {
    justify-items: start;
  }

  .hero-overview,
  .signal-bar {
    grid-template-columns: 1fr;
  }

  .feature-spotlight {
    min-height: auto;
  }

  .feature-spotlight .landing-shell {
    width: min(calc(100% - 40px), 1120px);
    min-height: auto;
    padding: 120px 0 72px;
  }

  .feature-hero {
    min-height: auto;
    gap: 26px;
  }

  .feature-highlight-list {
    max-width: 720px;
  }

  .footer-grid {
    grid-template-areas:
      "brand"
      "info"
      "address";
    row-gap: 22px;
  }

  .footer-info-block,
  .footer-address-block,
  .footer-copyright {
    justify-self: start;
    width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 760px) {
  .topbar-inner,
  .section-heading {
    flex-direction: column;
    align-items: flex-start;
  }

  .topnav {
    flex-wrap: wrap;
    gap: 12px;
  }

  .hero {
    padding-top: 58px;
  }

  .feature-spotlight .landing-shell {
    width: min(calc(100% - 24px), 100%);
    padding: 96px 0 48px;
  }

  .feature-hero {
    grid-template-columns: 1fr;
    gap: 22px;
    min-height: auto;
  }

  .feature-hero-copy {
    padding-left: 0;
  }

  .feature-hero-copy p {
    max-width: 100%;
    font-size: 1rem;
  }

  .feature-highlight-card {
    padding: 18px 18px;
    border-radius: 18px;
  }

  .hero-copy,
  .section-panel,
  .cta-panel,
  .footer-panel,
  .policy-panel {
    padding: 24px;
  }

  .hero-copy {
    padding: 40px 8px 24px;
  }

  .hero-overview,
  .signal-bar,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 96px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 13vw, 4.4rem);
  }

  .hero-building-left,
  .hero-building-right {
    width: 46vw;
    height: 58vh;
  }

  .hero-building-center {
    display: none;
  }

  .story-track {
    grid-auto-columns: calc(100vw - 118px);
  }

  .stories-wrap {
    padding: 0 44px;
  }

  .story-nav {
    width: 36px;
    height: 36px;
    font-size: 2rem;
  }

  .cta-call {
    width: 100%;
  }
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(245, 197, 24, 0.16);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-strong);
}

.site-nav {
  display: flex;
  align-items: center;
  margin-left: auto;
  justify-content: flex-end;
}

.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

.has-submenu {
  padding-bottom: 14px;
  margin-bottom: -14px;
}

.nav-link,
.submenu-link {
  display: inline-flex;
  align-items: center;
  color: var(--muted);
}

.nav-link {
  min-height: 40px;
  padding: 0 12px;
  font-size: 0.94rem;
}

.nav-item:hover > .nav-link,
.nav-item:focus-within > .nav-link,
.nav-link:hover,
.nav-link:focus-visible {
  color: var(--text-strong);
}

.submenu {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  min-width: 260px;
  padding: 12px;
  display: grid;
  gap: 4px;
  border-radius: 18px;
  border: 1px solid rgba(245, 197, 24, 0.1);
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.98), rgba(7, 7, 7, 0.98));
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(4px);
  transition: opacity 160ms ease, transform 160ms ease;
  z-index: 40;
}

.submenu-link {
  min-height: 40px;
  padding: 0 12px;
  border-radius: 12px;
  font-size: 0.9rem;
}

.submenu-link:hover,
.submenu-link:focus-visible {
  color: var(--text-strong);
  background: rgba(245, 197, 24, 0.08);
}

.has-submenu:hover > .submenu,
.has-submenu:focus-within > .submenu,
.has-submenu.is-open > .submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-caret {
  display: inline-flex;
  width: 8px;
  height: 8px;
  margin-left: 8px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.footer-links-group {
  display: grid;
  gap: 8px;
}

.footer-links-group a {
  color: var(--muted);
}

.footer-links-group a:hover,
.footer-links-group a:focus-visible {
  color: var(--text-strong);
}

.page-main {
  padding: 120px 0 64px;
}

.page-hero {
  padding: 0 0 28px;
}

.policy-hero {
  padding-bottom: 14px;
}

.page-hero-panel {
  position: relative;
  padding: 44px 38px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(15, 15, 15, 0.96), rgba(8, 8, 8, 0.96));
  border: 1px solid rgba(245, 197, 24, 0.08);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.page-hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245, 197, 24, 0.06), transparent 38%);
  pointer-events: none;
}

.page-kicker {
  position: relative;
  margin: 0 0 12px;
  color: rgba(255, 216, 77, 0.68);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.page-title {
  position: relative;
  margin: 0;
  font-family: "Bahnschrift", "Montserrat", sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 0.96;
  color: var(--text-strong);
}

.page-summary {
  position: relative;
  max-width: 760px;
  margin: 18px 0 0;
  font-size: 1.06rem;
  color: var(--muted);
}

.breadcrumb {
  position: relative;
  display: inline-flex;
  gap: 10px;
  margin-top: 22px;
  color: rgba(248, 243, 221, 0.72);
  font-size: 0.9rem;
}

.stats-strip,
.content-grid,
.split-grid,
.support-grid,
.faq-grid,
.listing-grid,
.contact-grid {
  display: grid;
  gap: 18px;
}

.stats-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 24px;
}

.content-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.content-grid.two,
.split-grid,
.support-grid,
.faq-grid,
.contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.listing-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat-card,
.content-card,
.faq-card,
.listing-card,
.contact-card {
  padding: 24px 22px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(15, 15, 15, 0.96), rgba(9, 9, 9, 0.96));
  border: 1px solid rgba(245, 197, 24, 0.08);
  box-shadow: var(--shadow);
}

.stat-card strong,
.content-card h3,
.faq-card h3,
.listing-card h3,
.contact-card h3,
.section-anchor h3 {
  color: var(--text-strong);
}

.stat-card strong {
  display: block;
  margin-top: 8px;
  font-size: 1.4rem;
}

.stat-card p,
.content-card p,
.faq-card p,
.listing-card p,
.contact-card p,
.section-anchor p,
.bullet-list li,
.timeline-list li,
.resource-list li {
  color: var(--muted);
}

.section-stack {
  display: grid;
  gap: 18px;
}

.section-anchor {
  padding: 28px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(15, 15, 15, 0.96), rgba(8, 8, 8, 0.96));
  border: 1px solid rgba(245, 197, 24, 0.08);
  box-shadow: var(--shadow);
}

.section-anchor-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
  margin-bottom: 18px;
}

.section-anchor-header h3 {
  margin: 0;
  font-size: 1.6rem;
}

.section-badge {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(245, 197, 24, 0.16);
  color: rgba(255, 216, 77, 0.7);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.bullet-list,
.timeline-list,
.resource-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.bullet-list li,
.timeline-list li,
.resource-list li {
  position: relative;
  padding-left: 18px;
}

.bullet-list li::before,
.timeline-list li::before,
.resource-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.faq-card strong,
.listing-card strong,
.contact-card strong {
  display: block;
  margin: 0 0 8px;
  color: var(--accent-bright);
}

.cta-band {
  margin-top: 28px;
  padding: 30px;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(245, 197, 24, 0.1), rgba(10, 10, 10, 0.98));
  border: 1px solid rgba(245, 197, 24, 0.14);
  box-shadow: var(--glow);
}

.cta-band h3 {
  margin: 0 0 12px;
  color: var(--text-strong);
  font-size: 1.8rem;
}

.cta-band p {
  margin: 0 0 18px;
  color: var(--muted);
}

.page-nav-block {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.page-nav-block a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(245, 197, 24, 0.05);
  border: 1px solid rgba(245, 197, 24, 0.1);
  color: var(--muted);
}

.page-nav-block a:hover,
.page-nav-block a:focus-visible {
  color: var(--text-strong);
  background: rgba(245, 197, 24, 0.1);
}

.policy-hero .page-hero-panel {
  padding: 30px 34px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 500ms ease, transform 500ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.landing-page .hero {
  min-height: 100vh;
}

.landing-page .hero::before {
  background:
    linear-gradient(180deg, rgba(4, 4, 4, 0.24), rgba(4, 4, 4, 0.84)),
    radial-gradient(circle at center 22%, rgba(255, 216, 77, 0.06), transparent 16%);
}

.landing-cards .content-card,
.landing-results .section-anchor {
  min-height: 220px;
}

.app-install-grid .content-card {
  min-height: 220px;
}

#app-install,
#observer-app,
#tenant-app {
  scroll-margin-top: 110px;
}

.landing-cards .content-card h3 {
  margin-bottom: 12px;
  font-size: 1.4rem;
}

.accent-card {
  background: linear-gradient(180deg, rgba(245, 197, 24, 0.08), rgba(10, 10, 10, 0.96));
  border-color: rgba(245, 197, 24, 0.16);
}

.landing-process .process-card {
  min-height: 200px;
}

.contact-actions {
  justify-content: center;
}

.contact-note {
  margin-top: 14px;
  color: rgba(248, 243, 221, 0.58);
  font-size: 0.9rem;
}

.install-link {
  margin-top: 18px;
}

@media (max-width: 1080px) {
  .stats-strip,
  .content-grid.three,
  .listing-grid,
  .content-grid.two,
  .split-grid,
  .support-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .feature-hero,
  .story-grid {
    grid-template-columns: 1fr;
  }

  .process-grid-inline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid-inline .process-card:not(:last-child)::before {
    display: none;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 20px;
    right: 20px;
    display: none;
    padding: 14px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(14, 14, 14, 0.98), rgba(8, 8, 8, 0.98));
    border: 1px solid rgba(245, 197, 24, 0.1);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: block;
  }

  .nav-list {
    align-items: stretch;
    flex-direction: column;
    gap: 2px;
  }

  .nav-link {
    width: 100%;
    justify-content: space-between;
    padding: 0 12px;
  }

  .has-submenu {
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .submenu {
    position: static;
    min-width: 0;
    padding: 8px 0 12px 12px;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    display: none;
  }

  .has-submenu.is-open > .submenu {
    display: grid;
  }

  .nav-item:hover > .submenu,
  .nav-item:focus-within > .submenu {
    display: none;
  }

  .call-chip {
    display: none;
  }

  .page-main {
    padding-top: 100px;
  }

  .page-hero-panel {
    padding: 28px 24px;
  }
}
