* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  height: 100%;
}

body {
  background: var(--bg-0);
  color: var(--fg-1);
  font-family: var(--font-body);
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow:hidden;
  position: relative;
}

/* ---- Stage photo backdrop ---- */
.stage {
  position: fixed;
  inset: 0;
  background: url("assets/port-sunset.webp") center 42% / cover no-repeat;
  opacity: 0.92;
  transform: scale(1.04);
  z-index: 0;
}

.scrim {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(120% 95% at 50% 18%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.25) 55%, rgba(0, 0, 0, 0.82) 100%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.05) 32%, rgba(0, 0, 0, 0.78) 100%);
  z-index: 1;
}

/* Signature beam sweep, faint */
.sweep {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: var(--beam-sweep);
  opacity: 0.9;
  z-index: 4;
}

/* ---- Layout ---- */
.wrap {
  position: relative;
  z-index: 3;
  flex: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px) clamp(24px, 5vw, 48px);
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  height: clamp(40px, 5vw, 58px);
  width: auto;
  display: block;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: var(--fg-2);
  border: 1px solid var(--line-2);
  border-radius: var(--r-pill);
  padding: 7px 14px 7px 12px;
  background: rgba(10, 10, 12, 0.5);
  backdrop-filter: blur(8px);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 0 rgba(47, 224, 138, 0.6);
  animation: pulse 2.4s var(--ease-out) infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(47, 224, 138, 0.55);
  }

  70% {
    box-shadow: 0 0 0 9px rgba(47, 224, 138, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(47, 224, 138, 0);
  }
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 780px;
  padding: clamp(32px, 8vh, 80px) 0;
}

.eyebrow {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(0.75rem, 1.4vw, 0.85rem);
  text-transform: uppercase;
  letter-spacing: 0.34em;
  color: var(--fg-2);
  margin: 0 0 clamp(22px, 3vh, 34px);
}

h1 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.6rem, 7vw, 5.3rem);
  line-height: 0.98;
  letter-spacing: 0.01em;
  margin: 0;
  text-wrap: balance;
}

h1 em {
  font-style: normal;
  background: var(--beam-sweep);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lede {
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  line-height: 1.55;
  color: var(--fg-2);
  margin: clamp(26px, 4vh, 38px) 0 0;
  max-width: 54ch;
  text-wrap: pretty;
}

.cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 28px;
  margin-top: clamp(34px, 5vh, 46px);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.875rem;
  text-decoration: none;
  color: var(--accent-contrast);
  background: var(--accent);
  padding: 15px 26px;
  border-radius: var(--r-sm);
  transition:
    transform var(--dur) var(--ease-out),
    box-shadow var(--dur) var(--ease-out),
    background var(--dur) var(--ease-out);
}

.btn:hover {
  background: var(--accent-bright);
  box-shadow: var(--glow-accent);
  transform: translateY(-2px);
}

.btn:focus-visible,
.phone:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}

.btn svg {
  width: 16px;
  height: 16px;
}

.phone {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--fg-2);
  text-decoration: none;
}

.phone span {
  color: var(--fg-3);
}

footer {
  position: relative;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  align-items: baseline;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  color: var(--fg-3);
  padding-top: clamp(24px, 4vh, 36px);
  border-top: 1px solid var(--line-1);
}

footer .sep {
  color: var(--fg-4);
}

footer strong {
  color: var(--fg-2);
  font-weight: 500;
}

@media (max-width:560px) {
  header .status .label {
    display: none;
  }

  .cta {
    gap: 18px;
  }
}

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

  .dot {
    animation: none;
  }

  .btn {
    transition: none;
  }
}
