/* Where is it marketing — travel blue + pin orange */

:root {
  --navy: #071530;
  --deep: #0a1b4a;
  --mid: #12356e;
  --sky: #3d7fd6;
  --foam: #e8f2ff;
  --ink: #f4f8ff;
  --muted: #a8c2e6;
  --pin: #ff6a2b;
  --pin-deep: #e4551a;
  --gold: #ffd23a;
  --display: "Fredoka", "Nunito", system-ui, sans-serif;
  --body: "Nunito", "Avenir Next", system-ui, sans-serif;
  --shell: 68rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100%;
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  background: var(--navy);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: var(--gold);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
  font-family: var(--display);
}

.shell {
  width: min(100% - 2rem, var(--shell));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 50%;
  top: -4rem;
  transform: translateX(-50%);
  z-index: 100;
  padding: 0.55rem 1rem;
  background: var(--pin);
  color: #fff;
  font-weight: 800;
  border-radius: 999px;
}

.skip-link:focus {
  top: 0.75rem;
}

.top {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  padding: 0.85rem 0;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.top.is-solid {
  background: rgba(7, 21, 48, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
}

.top__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.mark {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: #fff;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.15rem;
  text-decoration: none;
}

.mark img {
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

.top__nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.top__nav a {
  color: var(--foam);
  font-weight: 800;
  text-decoration: none;
}

.top__cta {
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: var(--pin);
  color: #fff !important;
  box-shadow: 0 8px 18px rgba(255, 106, 43, 0.35);
}

.top__cta:hover {
  background: var(--pin-deep);
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 21, 48, 0.35) 0%, rgba(7, 21, 48, 0.18) 40%, rgba(7, 21, 48, 0.88) 100%),
    radial-gradient(ellipse at 70% 40%, transparent 0%, rgba(7, 21, 48, 0.35) 70%);
}

.hero__stage {
  position: relative;
  z-index: 1;
  padding: 7.5rem 0 3.5rem;
  max-width: 38rem;
  margin-inline: 0 auto 0 0;
}

@media (min-width: 900px) {
  .hero__stage {
    padding: 8.5rem 0 4.5rem;
    margin-left: max(1rem, calc((100vw - var(--shell)) / 2));
  }
}

.kicker {
  margin: 0 0 0.55rem;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.brand-lockup {
  font-size: clamp(2.8rem, 8vw, 4.6rem);
  font-weight: 700;
  color: #fff;
  text-shadow: 0 4px 0 rgba(7, 21, 48, 0.45);
}

.hero__lede {
  margin: 0.9rem 0 0;
  max-width: 28rem;
  color: var(--foam);
  font-size: 1.15rem;
  font-weight: 700;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.85rem 1.15rem;
  border-radius: 16px;
  font-weight: 800;
  text-decoration: none;
  border: 0;
}

.btn small {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  opacity: 0.85;
  line-height: 1.1;
}

.btn--pin {
  background: linear-gradient(180deg, #ff8a4a 0%, var(--pin) 55%, var(--pin-deep) 100%);
  color: #fff;
  box-shadow: 0 12px 28px rgba(255, 106, 43, 0.38);
}

.btn--pin:hover {
  text-decoration: none;
  filter: brightness(1.05);
}

.btn--quiet {
  background: rgba(255, 255, 255, 0.1);
  color: var(--muted);
  border: 1px solid rgba(255, 255, 255, 0.18);
  cursor: default;
}

.phone {
  padding: 4.5rem 0 3rem;
  background: linear-gradient(180deg, var(--navy) 0%, var(--deep) 100%);
}

.phone__inner {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 860px) {
  .phone__inner {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 3rem;
  }
}

.phone__frame {
  margin: 0;
  justify-self: center;
  width: min(100%, 280px);
  border-radius: 28px;
  overflow: hidden;
  box-shadow:
    0 0 0 3px rgba(255, 255, 255, 0.12),
    0 24px 60px rgba(0, 0, 0, 0.45);
  animation: floaty 5.5s ease-in-out infinite;
}

.phone__copy .section-title {
  margin-bottom: 0.75rem;
}

.phone__copy p {
  margin: 0;
  color: var(--muted);
  max-width: 34rem;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: #fff;
}

.path {
  padding: 2rem 0 4.5rem;
  background: var(--deep);
}

.path__grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 860px) {
  .path__grid {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
  }
}

.path__beats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.path__beats li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
}

.path__num {
  width: 2.2rem;
  height: 2.2rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--pin);
  color: #fff;
  font-family: var(--display);
  font-weight: 700;
}

.path__beats h3 {
  margin-bottom: 0.2rem;
  color: #fff;
}

.path__beats p {
  margin: 0;
  color: var(--muted);
}

.close {
  padding: 1rem 0 4.5rem;
  background: linear-gradient(180deg, var(--deep), #061028);
}

.close__inner {
  text-align: center;
  max-width: 32rem;
  margin-inline: auto;
}

.close__icon {
  margin: 0 auto 1rem;
  border-radius: 22px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
}

.close__inner h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: #fff;
}

.close__inner p {
  color: var(--muted);
  margin: 0.7rem 0 1.3rem;
}

.close__inner .btn {
  margin-inline: auto;
}

.foot {
  padding: 2rem 0 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #050d1c;
}

.foot__inner {
  display: grid;
  gap: 1rem;
}

.foot__brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--display);
  font-weight: 700;
}

.foot__brand img {
  border-radius: 8px;
}

.foot__by {
  color: var(--muted);
  font-family: var(--body);
  font-weight: 700;
  font-size: 0.9rem;
}

.foot__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.foot__links a {
  color: var(--foam);
  font-weight: 700;
}

.foot__note {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.motion-rise {
  opacity: 0;
  transform: translateY(18px);
  animation: rise 0.7s ease forwards;
}

.motion-rise--2 { animation-delay: 0.1s; }
.motion-rise--3 { animation-delay: 0.2s; }
.motion-rise--4 { animation-delay: 0.3s; }

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 640px) {
  .top__nav a:not(.top__cta) {
    display: none;
  }

  .hero__stage {
    padding-top: 6.5rem;
  }
}
