:root {
  --ink: #101114;
  --muted: #60636b;
  --line: rgba(16, 17, 20, 0.14);
  --paper: #f7f5f0;
  --ivory: #fffdf8;
  --mint: #9ee6cf;
  --red: #e6534d;
  --violet: #6f64ff;
  --gold: #d6b86a;
  --max: 1180px;
  --ease-out: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-soft: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", "Noto Sans KR", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  letter-spacing: 0;
  --page-progress: 0;
  --hero-shift: 0px;
  --hero-content-shift: 0px;
  --particle-shift: 0px;
}

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

.scroll-more-indicator {
  appearance: none;
  -webkit-appearance: none;
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 30;
  width: 28px;
  height: 24px;
  border: 0;
  padding: 0;
  background: transparent !important;
  box-shadow: none;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.scroll-more-indicator::before {
  position: absolute;
  left: 50%;
  top: 0;
  width: 20px;
  height: 20px;
  border-right: 4px solid #c6ff54;
  border-bottom: 4px solid #c6ff54;
  content: "";
  filter:
    drop-shadow(0 2px 0 #101114)
    drop-shadow(0 -2px 0 #101114)
    drop-shadow(2px 0 0 #101114)
    drop-shadow(-2px 0 0 #101114);
  transform: translateX(-50%) rotate(45deg);
}

.scroll-more-indicator.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  animation: scrollMoreBlink 1.05s ease-in-out infinite;
}

.scroll-more-indicator:hover,
.scroll-more-indicator:focus-visible {
  outline: none;
}

.scroll-more-indicator:hover::before,
.scroll-more-indicator:focus-visible::before {
  border-color: #e4ff91;
}

#top {
  position: relative;
  overflow: hidden;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px clamp(20px, 5vw, 56px);
  color: #fff;
  transition: background 420ms ease, color 420ms ease, border-color 420ms ease, padding 420ms var(--ease-soft);
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 253, 248, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  padding-block: 14px;
}

.brand-logo {
  display: block;
  width: 84px;
  height: auto;
  filter: brightness(0) invert(1);
  transition: filter 420ms ease;
}

.site-header.is-scrolled .brand-logo {
  filter: none;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

.nav > a {
  position: relative;
  transition: color 260ms ease;
}

.nav > a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 2px;
  content: "";
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 260ms var(--ease-soft);
}

.nav > a[aria-current] {
  color: var(--red);
}

.nav > a[aria-current]::after {
  transform: scaleX(1);
}

.family-menu {
  position: relative;
  margin-left: 100px;
}

.family-menu::after {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  height: 18px;
  content: "";
}

.family-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-transform: uppercase;
  cursor: pointer;
}

.family-toggle span {
  font-size: 10px;
  transform: translateY(-1px);
}

.family-dropdown {
  position: absolute;
  top: calc(100% + 16px);
  right: 0;
  min-width: 230px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(16, 17, 20, 0.78);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px) scale(0.98);
  transform-origin: top right;
  transition: opacity 240ms var(--ease-out), transform 240ms var(--ease-out), border-color 240ms ease, background 240ms ease, box-shadow 240ms ease;
}

.family-dropdown a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 12px;
  color: #fff;
  font-size: 12px;
  line-height: 1.2;
  text-transform: none;
  white-space: nowrap;
  transition: background 220ms ease, color 220ms ease, transform 220ms var(--ease-out);
}

.family-dropdown a:hover,
.family-dropdown a:focus {
  background: rgba(230, 83, 77, 0.28);
  color: #fff;
  transform: translateX(3px);
}

.family-menu.is-open .family-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-header.is-scrolled .family-dropdown {
  border-color: rgba(16, 17, 20, 0.12);
  background: rgba(255, 253, 248, 0.94);
  box-shadow: 0 24px 70px rgba(16, 17, 20, 0.14);
}

.site-header.is-scrolled .family-dropdown a {
  color: var(--ink);
}

.site-header.is-scrolled .family-dropdown a:hover,
.site-header.is-scrolled .family-dropdown a:focus {
  background: rgba(230, 83, 77, 0.18);
  color: var(--red);
}

.scroll-orbit {
  position: fixed;
  right: clamp(18px, 3vw, 38px);
  top: 50%;
  z-index: 18;
  display: grid;
  gap: 15px;
  padding: 10px 0;
  transform: translateY(-50%);
}

.scroll-orbit::before {
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 50%;
  width: 1px;
  content: "";
  background: linear-gradient(to bottom, var(--red), var(--mint), var(--gold));
  opacity: 0.45;
  transform: translateX(-50%) scaleY(var(--page-progress));
  transform-origin: top;
}

.scroll-orbit span {
  position: relative;
  width: 9px;
  height: 9px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: rgba(16, 17, 20, 0.26);
  transform: rotate(45deg);
  transition: background 420ms ease, border-color 420ms ease, transform 560ms var(--ease-out);
}

.site-header.is-scrolled ~ .scroll-orbit span {
  border-color: rgba(16, 17, 20, 0.45);
  background: rgba(255, 253, 248, 0.7);
}

.scroll-orbit span.is-active {
  border-color: var(--red);
  background: var(--red);
  transform: rotate(45deg) scale(1.45);
}

.site-header.is-scrolled ~ .scroll-orbit span.is-active {
  border-color: var(--red);
  background: var(--red);
}

.hero {
  position: relative;
  min-height: 600px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: #111;
}

.hero-image,
.hero-overlay,
.particle-stage {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  transform: translate3d(0, var(--hero-shift), 0) scale(1.05);
  will-change: transform;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 6, 8, 0.78), rgba(5, 6, 8, 0.18) 58%, rgba(5, 6, 8, 0.5)),
    linear-gradient(0deg, rgba(5, 6, 8, 0.8), rgba(5, 6, 8, 0.02) 38%);
}

.particle-stage {
  z-index: 1;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.78;
  transform: translate3d(0, var(--particle-shift), 0);
  will-change: transform;
}

.particle-stage canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.astronaut-layer {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  width: clamp(92px, 10vw, 152px);
  pointer-events: none;
  opacity: 0;
  transform-origin: 50% 50%;
  will-change: transform;
  transition: opacity 900ms var(--ease-out);
}

.astronaut-layer.is-visible {
  opacity: 0.95;
}

.space-trail {
  position: absolute;
  z-index: 2;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  pointer-events: none;
  background: currentColor;
  box-shadow: 0 0 12px currentColor;
  opacity: 0;
  transform: translate3d(0, 0, 0) scale(1);
  transition: transform var(--trail-life, 2400ms) var(--ease-out), opacity 1200ms ease;
}

.space-trail.is-active {
  opacity: var(--trail-opacity, 0.82);
}

.space-trail.is-fading {
  opacity: 0;
}

.astronaut-layer img {
  display: block;
  width: 100%;
  height: auto;
}

.spaceman-image {
  opacity: 0;
  transition: opacity 520ms ease;
  transform-origin: 50% 50%;
}

.spaceman-image + .spaceman-image {
  position: absolute;
  inset: 0;
}

.spaceman-image.is-flipped {
  transform: scaleX(-1);
}

.spaceman-image.is-active {
  opacity: 1;
}

.hero-inner {
  position: relative;
  z-index: 4;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 160px 0 118px;
  transform: translate3d(0, var(--hero-content-shift), 0);
  will-change: transform;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 900px;
  font-size: clamp(76px, 17vw, 214px);
  line-height: 0.82;
  letter-spacing: 0;
}

.hero-logo-title img {
  display: block;
  width: min(42vw, 300px);
  min-width: 210px;
  height: auto;
  filter: brightness(0) invert(1);
}

.hero-copy {
  max-width: 720px;
  margin: 34px 0 0;
  font-size: clamp(24px, 4vw, 48px);
  line-height: 1.18;
  font-weight: 700;
}

.hero-line {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(17px, 2vw, 24px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 5px;
  border: 1px solid currentColor;
  font-size: 14px;
  font-weight: 800;
  transition: transform 520ms var(--ease-out), background 420ms ease, color 420ms ease, border-color 420ms ease, box-shadow 520ms var(--ease-out);
}

.button:hover,
.button:focus-visible {
  box-shadow: 0 12px 32px rgba(16, 17, 20, 0.16);
  transform: translateY(-2px);
}

.button.primary {
  border-color: #fff;
  background: #fff;
  color: var(--ink);
}

.button.secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 12px 36px rgba(255, 255, 255, 0.08);
}

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

.brand-selector {
  position: relative;
  padding: clamp(48px, 7vw, 86px) clamp(20px, 5vw, 56px);
  color: #fff;
  background:
    radial-gradient(circle at 14% 20%, rgba(230, 83, 77, 0.18), transparent 24%),
    radial-gradient(circle at 86% 18%, rgba(158, 230, 207, 0.16), transparent 26%),
    linear-gradient(180deg, #121317 0%, #111 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.brand-selector-inner {
  position: relative;
  z-index: 4;
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
}

.selector-heading h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
  letter-spacing: 0;
  word-break: keep-all;
}

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

.site-button {
  position: relative;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  padding: 28px;
  border-radius: 5px;
  border: 1px solid rgba(255, 253, 248, 0.8);
  background: rgba(255, 253, 248, 0.94);
  color: var(--ink);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(20px);
  isolation: isolate;
  transition: transform 420ms var(--ease-soft), box-shadow 560ms ease, border-color 320ms ease, background 320ms ease;
}

.site-button::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    radial-gradient(circle at 82% 18%, rgba(158, 230, 207, 0.22), transparent 30%),
    linear-gradient(135deg, rgba(16, 17, 20, 0.04), rgba(255, 255, 255, 0.02));
  opacity: 1;
}

.site-button.solution-site::before {
  background:
    radial-gradient(circle at 82% 18%, rgba(214, 184, 106, 0.24), transparent 30%),
    linear-gradient(135deg, rgba(111, 100, 255, 0.12), rgba(255, 255, 255, 0.02));
}

.site-button:hover,
.site-button:focus-visible {
  border-color: rgba(255, 253, 248, 0.96);
  background: #fffdf8;
  color: var(--ink);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.34);
  transform: translate(-3px, -3px);
}

.site-button.reveal-item.is-visible:hover,
.site-button.reveal-item.is-visible:focus-visible {
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.34);
  transform: translate(-3px, -3px);
}

.site-button:hover::before,
.site-button:focus-visible::before {
  opacity: 0.86;
}

.site-button:hover .site-button-kicker,
.site-button:hover .site-button-copy,
.site-button:focus-visible .site-button-kicker,
.site-button:focus-visible .site-button-copy {
  color: rgba(16, 17, 20, 0.58);
}

.site-button:hover .site-button-arrow,
.site-button:focus-visible .site-button-arrow,
.site-button:hover strong,
.site-button:focus-visible strong {
  color: var(--ink);
}

.site-button-kicker,
.site-button-copy {
  color: rgba(16, 17, 20, 0.62);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.site-button strong {
  margin: 10px 0 12px;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1;
  letter-spacing: 0;
}

.site-button-copy {
  font-family: "Noto Sans KR", "Inter", sans-serif;
  font-size: 15px;
  line-height: 1.35;
  text-transform: none;
  white-space: normal;
  word-break: keep-all;
  overflow-wrap: normal;
}

.site-button-arrow {
  position: absolute;
  top: 22px;
  right: 24px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(16, 17, 20, 0.24);
  color: var(--ink);
  font-size: 22px;
  line-height: 1;
}

.section {
  position: relative;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(86px, 12vw, 150px) 0;
}

.section-heading {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: clamp(28px, 7vw, 86px);
  align-items: start;
}

.section-heading h2,
.approach-copy h2,
.contact h2 {
  margin: 0;
  font-size: clamp(34px, 6vw, 55px);
  line-height: 1.02;
  letter-spacing: 0;
}

.intro-grid {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(24px, 6vw, 72px);
  margin-top: 58px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.intro-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.72;
  word-break: keep-all;
}

.signal-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
}

.signal-list span {
  min-height: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  color: var(--ink);
  font-size: clamp(17px, 2vw, 23px);
  font-weight: 800;
}

.signal-list span::before {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  content: "";
  background: var(--red);
  transform: rotate(45deg);
}

.portfolio {
  position: relative;
  width: 100%;
  max-width: none;
  padding-inline: clamp(20px, 5vw, 56px);
  background: var(--ink);
  color: #fff;
}

.portfolio .section-heading {
  width: min(var(--max), 100%);
  margin: 0 auto 46px;
}

.portfolio .eyebrow {
  color: var(--mint);
}

.brand-grid {
  position: relative;
  z-index: 4;
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.brand-card {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 4vw, 48px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)),
    rgba(21, 22, 26, 0.88);
  transition: border-color 520ms ease, box-shadow 680ms var(--ease-out), transform 680ms var(--ease-out), background 520ms ease;
}

.brand-card.solution {
  background:
    linear-gradient(135deg, rgba(158, 230, 207, 0.14), rgba(255, 255, 255, 0)),
    rgba(21, 22, 26, 0.88);
}

.card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: auto;
}

.card-index {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  font-weight: 800;
}

.card-pill {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.brand-card h3 {
  margin: 90px 0 18px;
  font-size: clamp(31px, 4vw, 54px);
  line-height: 1;
  letter-spacing: 0;
}

.brand-card p {
  max-width: 520px;
  margin: 0 0 34px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
  line-height: 1.68;
  word-break: keep-all;
}

.brand-card a.card-button {
  width: fit-content;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border-radius: 5px;
  border: 1px solid rgba(158, 230, 207, 0.7);
  background: rgba(158, 230, 207, 0.12);
  color: var(--mint);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  transition: background 420ms ease, color 420ms ease, border-color 420ms ease, transform 520ms var(--ease-out);
}

.brand-card a.card-button:hover {
  background: var(--mint);
  border-color: var(--mint);
  color: var(--ink);
  transform: translateY(-2px);
}

.brand-card.is-visible {
  box-shadow: inset 0 0 0 1px rgba(158, 230, 207, 0.18), 0 18px 48px rgba(0, 0, 0, 0.16);
}

.approach {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(34px, 8vw, 100px);
  align-items: start;
}

.timeline {
  position: relative;
  z-index: 4;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.timeline div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.timeline span {
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.timeline strong {
  font-size: clamp(20px, 3vw, 34px);
  line-height: 1.22;
  word-break: keep-all;
}

.contact {
  position: relative;
  padding: clamp(52px, 8vw, 88px) clamp(20px, 5vw, 56px);
  color: #fff;
  background:
    radial-gradient(circle at 16% 18%, rgba(230, 83, 77, 0.16), transparent 24%),
    radial-gradient(circle at 82% 24%, rgba(158, 230, 207, 0.14), transparent 26%),
    linear-gradient(180deg, #121317 0%, #101114 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact h2 {
  color: #fff;
}

.contact .button.dark {
  border-color: rgba(255, 255, 255, 0.78);
  background: #fff;
  color: var(--ink);
}

.contact .button.dark:hover,
.contact .button.dark:focus-visible {
  border-color: #fff;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 12px 36px rgba(255, 255, 255, 0.08);
}

.contact-inner {
  position: relative;
  z-index: 4;
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.footer {
  position: relative;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 56px);
  color: var(--muted);
  background: var(--paper);
  font-size: 13px;
  opacity: 1;
  transform: none;
}

.footer-logo {
  display: block;
  width: 52px;
  height: auto;
  opacity: 0.72;
}

.reveal-item {
  position: relative;
  z-index: 4;
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 980ms ease, transform 980ms var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}

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

.site-button.reveal-item {
  transition: opacity 980ms ease, transform 920ms var(--ease-soft), box-shadow 560ms ease;
}

.signal-list span.reveal-item {
  transform: translateY(14px) scale(0.985);
}

.signal-list span.reveal-item.is-visible {
  transform: translateY(0) scale(1);
}

.timeline div.reveal-item {
  transform: translateX(24px);
}

.timeline div.reveal-item.is-visible {
  transform: translateX(0);
}

@keyframes scrollMoreBlink {
  0%,
  100% {
    opacity: 0.55;
    filter: brightness(0.7);
  }

  50% {
    opacity: 1;
    filter: brightness(2.2) drop-shadow(0 0 12px rgba(198, 255, 84, 0.95));
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .scroll-more-indicator,
  .hero-image,
  .hero-inner,
  .particle-stage,
  .astronaut-layer,
  .reveal-item,
  .timeline div.reveal-item,
  .signal-list span.reveal-item {
    transform: none;
    transition: none;
    animation: none;
  }
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
  }

  .nav {
    gap: 12px;
    font-size: 11px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .family-dropdown {
    top: calc(100% + 10px);
    min-width: 196px;
  }

  .family-menu {
    margin-left: 18px;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-inner {
    padding-bottom: 92px;
  }

  .astronaut-layer {
    width: clamp(78px, 20vw, 112px);
    opacity: 0.78;
  }

  .section-heading,
  .intro-grid,
  .brand-grid,
  .brand-selector-inner,
  .selector-actions,
  .approach {
    grid-template-columns: 1fr;
  }

  .brand-card {
    min-height: 360px;
  }

  .contact-inner,
  .footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .scroll-orbit {
    display: none;
  }
}

@media (max-width: 540px) {
  .site-header {
    position: absolute;
    padding: 18px 18px;
  }

  .nav {
    max-width: 190px;
  }

  .hero-inner,
  .section {
    width: calc(100% - 32px);
  }

  .hero-copy {
    font-size: 28px;
  }

  .signal-list,
  .timeline div {
    grid-template-columns: 1fr;
  }

  .timeline div {
    gap: 10px;
  }

  .button {
    width: 100%;
  }

  .site-button {
    min-height: 178px;
  }
}
