/* Three modern landing pages built from the combined HTML/CSS lessons. */

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  margin: 0;
  min-width: 17.5rem;
  font-size: 1rem;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

button,
.button-link {
  min-height: 2.75rem;
  padding: 0.7rem 1.2rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
summary:focus-visible {
  box-shadow: 0 0 0 3px currentColor;
}

.landing-shell {
  width: 100%;
  overflow: hidden;
}

.content-wrap {
  width: 92%;
  max-width: 75rem;
  margin: 0 auto;
}

.landing-nav {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav-inner,
.nav-links,
.nav-actions,
.hero-actions,
.logo-strip,
.chip-row,
.metric-row,
.schedule-item,
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.nav-inner {
  min-height: 4.75rem;
  justify-content: space-between;
}

.brand {
  font-size: 1.35rem;
  font-weight: 700;
  text-decoration: none;
}

.nav-links {
  justify-content: center;
}

.nav-links a {
  padding: 0.45rem 0.2rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}

.mobile-menu {
  display: none;
}

.mobile-menu summary {
  width: 2.75rem;
  min-height: 2.75rem;
  padding: 0.7rem 0.85rem;
  background: transparent;
  border: 0;
  border-radius: 0.5rem;
  font-weight: 700;
  list-style: none;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.hamburger-icon {
  display: block;
}

.hamburger-icon span {
  width: 1rem;
  height: 2px;
  margin: 0.15rem 0;
  background: currentColor;
  display: block;
  transform-origin: center;
  transition:
    opacity 180ms ease,
    transform 220ms ease;
}

.mobile-menu[open] .hamburger-icon span:first-child {
  transform: translateY(0.3125rem) rotate(45deg);
}

.mobile-menu[open] .hamburger-icon span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-menu[open] .hamburger-icon span:last-child {
  transform: translateY(-0.3125rem) rotate(-45deg);
}

.mobile-menu-panel {
  width: 14rem;
  padding: 0.75rem;
  position: absolute;
  top: 3.5rem;
  right: 0;
  z-index: 30;
  border: 1px solid currentColor;
  border-radius: 1rem;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.22);
}

.mobile-menu-panel a {
  padding: 0.7rem 0.8rem;
  display: block;
  border-radius: 0.6rem;
  font-weight: 600;
  text-decoration: none;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    opacity 220ms ease,
    transform 220ms ease;
}

.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-copy h1,
.section-heading h2,
.cta-panel h2 {
  margin: 0;
  line-height: 1.05;
}

.hero-copy p,
.section-heading p {
  max-width: 42rem;
}

.hero-actions {
  margin-top: 1.75rem;
}

.section-heading {
  max-width: 45rem;
  margin: 0 0 2.5rem;
}

.section-heading h2 {
  font-size: 2.3rem;
}

.section-heading p {
  margin: 1rem 0 0;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.feature-grid,
.quote-grid,
.pricing-grid,
.destination-grid,
.experience-grid,
.program-grid,
.trainer-grid,
.footer-grid {
  display: grid;
  gap: 1.25rem;
}

.feature-grid,
.quote-grid,
.experience-grid,
.trainer-grid {
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
}

.pricing-grid {
  grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
  align-items: center;
}

.footer-grid {
  grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
}

.footer-column h2,
.footer-column h3 {
  margin: 0 0 1rem;
  font-size: 1rem;
}

.footer-column a {
  margin: 0 0 0.65rem;
  display: block;
  text-decoration: none;
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  justify-content: space-between;
}

.footer-bottom p {
  margin: 0;
}

/* Aurora */

.aurora {
  background: #080914;
  color: #f7f5ff;
  font-family: "Inter", Arial, Helvetica, sans-serif;
}

.aurora h1,
.aurora h2,
.aurora h3,
.aurora .brand {
  font-family: "Space Grotesk", Arial, Helvetica, sans-serif;
}

.aurora .landing-nav {
  background: rgba(8, 9, 20, 0.92);
  border-bottom: 1px solid #29263d;
}

.aurora .brand span,
.aurora .eyebrow {
  color: #8de8ff;
}

.aurora .nav-links {
  color: #c6c3d8;
}

.aurora .nav-links a:hover {
  color: #ffffff;
}

.aurora .mobile-menu-panel {
  background: #151525;
  border-color: #49445f;
}

.aurora .mobile-menu-panel a:hover {
  background: #25223b;
}

.aurora .button-primary {
  background: linear-gradient(135deg, #7657ff, #19c4ed);
  color: #ffffff;
}

.aurora .button-primary:hover {
  background: #8b70ff;
}

.aurora .button-secondary {
  background: #171626;
  border-color: #49445f;
  color: #ffffff;
}

.aurora .button-secondary:hover {
  border-color: #8de8ff;
}

.aurora-hero {
  min-height: 44rem;
  padding: 6rem 0 4rem;
  position: relative;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 78% 28%, rgba(74, 201, 255, 0.18), transparent 24rem),
    radial-gradient(circle at 20% 5%, rgba(132, 87, 255, 0.18), transparent 25rem);
}

.aurora-hero::before,
.aurora-hero::after {
  content: "";
  width: 10rem;
  height: 10rem;
  position: absolute;
  border: 1px solid rgba(141, 232, 255, 0.25);
  border-radius: 50%;
}

.aurora-hero::before {
  top: 5rem;
  left: -5rem;
}

.aurora-hero::after {
  right: -4rem;
  bottom: 3rem;
}

.aurora-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4rem;
}

.aurora .hero-copy {
  flex: 1 1 28rem;
}

.aurora .hero-copy h1 {
  max-width: 12ch;
  font-size: 3.8rem;
}

.gradient-text {
  color: #8de8ff;
  background: linear-gradient(90deg, #bca9ff, #8de8ff);
}

.aurora .hero-copy p {
  color: #b5b1c7;
  font-size: 1.1rem;
}

.dashboard-visual {
  flex: 1 1 25rem;
  min-height: 29rem;
  padding: 1rem;
  background: linear-gradient(145deg, rgba(38, 34, 65, 0.95), rgba(15, 18, 36, 0.96));
  position: relative;
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  grid-template-rows: auto 1fr auto;
  gap: 0.8rem;
  border: 1px solid #4a4269;
  border-radius: 1.5rem;
  box-shadow: 0 2rem 5rem rgba(57, 37, 129, 0.28);
}

.visual-topbar {
  grid-column: 1 / -1;
  padding: 0.75rem;
  background: #22203a;
  border-radius: 0.75rem;
  color: #aaa5bd;
  font-size: 0.8rem;
}

.visual-sidebar,
.visual-chart,
.visual-stat {
  padding: 1rem;
  background: rgba(10, 11, 25, 0.75);
  border: 1px solid #312e4a;
  border-radius: 0.9rem;
}

.visual-sidebar {
  grid-row: 2 / span 2;
}

.visual-sidebar span {
  margin-bottom: 0.8rem;
  padding: 0.55rem;
  display: block;
  background: #1c1a30;
  border-radius: 0.45rem;
  color: #aaa5bd;
  font-size: 0.75rem;
}

.visual-chart {
  min-height: 15rem;
  position: relative;
  overflow: hidden;
}

.visual-chart::after {
  content: "";
  height: 7rem;
  position: absolute;
  right: 1rem;
  bottom: 1.5rem;
  left: 1rem;
  background: linear-gradient(135deg, transparent 20%, #7657ff 21% 24%, transparent 25% 42%, #19c4ed 43% 47%, transparent 48%);
  border-bottom: 1px solid #47415e;
}

.visual-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}

.visual-stat strong {
  display: block;
  color: #8de8ff;
  font-size: 1.35rem;
}

.aurora-proof {
  padding: 2rem 0;
  border-top: 1px solid #211f32;
  border-bottom: 1px solid #211f32;
}

.logo-strip {
  justify-content: space-between;
  color: #777389;
  font-weight: 700;
}

.aurora-section {
  padding: 6rem 0;
}

.aurora-section.alt {
  background: #0d0f1d;
}

.aurora .section-heading p,
.aurora .feature-card p,
.aurora .quote-card p,
.aurora .price-card p,
.aurora .price-card li {
  color: #aaa6ba;
}

.aurora .feature-card,
.aurora .quote-card,
.aurora .price-card {
  padding: 1.5rem;
  background: linear-gradient(145deg, #151525, #10111e);
  border: 1px solid #2e2b43;
  border-radius: 1.1rem;
}

.aurora .feature-card:nth-child(2) {
  border-color: #6755b2;
}

.aurora .feature-card:hover,
.aurora .quote-card:hover {
  border-color: #8de8ff;
}

.feature-number {
  color: #8de8ff;
  font-size: 0.8rem;
  font-weight: 700;
}

.aurora-split {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4rem;
}

.aurora-split > * {
  flex: 1 1 25rem;
}

.workflow-grid {
  min-height: 24rem;
  padding: 1.25rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 1rem;
  background: #151525;
  border: 1px solid #37324e;
  border-radius: 1.25rem;
}

.workflow-grid article {
  padding: 1.2rem;
  background: #0c0d18;
  border-radius: 0.8rem;
}

.workflow-grid article:first-child {
  grid-row: 1 / span 2;
  background: linear-gradient(180deg, #6245ca, #241a4a);
}

.aurora .price-card {
  position: relative;
}

.aurora .price-card.featured {
  min-height: 26rem;
  border: 2px solid #7657ff;
}

.plan-badge {
  padding: 0.35rem 0.7rem;
  background: #8de8ff;
  position: absolute;
  top: -0.9rem;
  right: 1.2rem;
  color: #10111e;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
}

.price {
  margin: 1rem 0;
  font-size: 2.5rem;
  font-weight: 700;
}

.aurora-cta {
  padding: 0 0 6rem;
}

.aurora .cta-panel {
  padding: 3.5rem 2rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, #6945e8, #165f8d);
  border-radius: 1.5rem;
  text-align: center;
}

.aurora .cta-panel::after {
  content: "";
  width: 12rem;
  height: 12rem;
  position: absolute;
  right: -4rem;
  bottom: -6rem;
  border: 2rem solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.aurora .site-footer {
  padding: 4rem 0 2rem;
  background: #05060d;
  color: #8c899c;
}

.aurora .site-footer h2,
.aurora .site-footer h3 {
  color: #ffffff;
}

.aurora .footer-bottom {
  border-top: 1px solid #29263d;
}

/* Terra */

.terra {
  background: #f4f0e7;
  color: #1f3529;
  font-family: "Manrope", Arial, Helvetica, sans-serif;
}

.terra h1,
.terra h2,
.terra h3,
.terra .brand {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
}

.terra .landing-nav {
  background: rgba(244, 240, 231, 0.94);
  border-bottom: 1px solid #d8d0c0;
}

.terra .brand {
  font-size: 1.7rem;
}

.terra .nav-links a:hover,
.terra .footer-column a:hover {
  color: #b45d36;
}

.terra .mobile-menu-panel {
  background: #fffdf8;
  border-color: #d8d0c0;
}

.terra .mobile-menu-panel a:hover {
  background: #e7e1d4;
}

.terra .button-primary {
  background: #274f39;
  color: #ffffff;
}

.terra .button-primary:hover {
  background: #173625;
}

.terra .button-secondary {
  background: transparent;
  border-color: #274f39;
  color: #274f39;
}

.terra-hero {
  min-height: 47rem;
  position: relative;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(13, 35, 24, 0.78), rgba(13, 35, 24, 0.18)),
    url("https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?auto=format&fit=crop&w=1800&q=85") center center no-repeat;
  background-size: cover;
  color: #ffffff;
}

.terra .hero-copy {
  max-width: 43rem;
  padding: 5rem 0 7rem;
}

.terra .hero-copy h1 {
  max-width: 12ch;
  font-size: 4.7rem;
  font-weight: 600;
}

.terra .hero-copy p {
  max-width: 34rem;
  color: #edf2ec;
  font-size: 1.05rem;
}

.travel-search {
  max-width: 55rem;
  margin-top: -4rem;
  padding: 1rem;
  position: relative;
  z-index: 4;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  background: #fffdf8;
  border: 1px solid #d9d0be;
  border-radius: 1rem;
  box-shadow: 0 1rem 3rem rgba(32, 48, 37, 0.2);
}

.travel-field {
  flex: 1 1 11rem;
}

.travel-field span {
  display: block;
  color: #6d786f;
  font-size: 0.72rem;
  font-weight: 700;
}

.travel-field input {
  width: 100%;
  min-height: 2.5rem;
  padding: 0.35rem 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #cfc5b4;
  color: #1f3529;
}

.terra-section {
  padding: 7rem 0;
}

.terra-section.alt {
  background: #e7e1d4;
}

.terra .section-heading .eyebrow {
  color: #a95331;
}

.terra .section-heading h2 {
  font-size: 3rem;
  font-weight: 600;
}

.destination-grid {
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 16rem);
}

.destination-card {
  min-height: 16rem;
  position: relative;
  overflow: hidden;
  border-radius: 1.25rem;
}

.destination-card:first-child {
  grid-row: 1 / span 2;
}

.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.destination-copy {
  padding: 4rem 1.25rem 1.25rem;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(transparent, rgba(14, 34, 23, 0.86));
  color: #ffffff;
}

.destination-copy h3,
.destination-copy p {
  margin: 0;
}

.destination-copy h3 {
  font-size: 1.8rem;
}

.terra-story {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4rem;
}

.terra-story > * {
  flex: 1 1 25rem;
}

.story-images {
  min-height: 33rem;
  position: relative;
}

.story-images img {
  width: 78%;
  height: 29rem;
  border-radius: 12rem 12rem 1rem 1rem;
  object-fit: cover;
}

.story-note {
  width: 14rem;
  padding: 1.25rem;
  position: absolute;
  right: 0;
  bottom: 0;
  background: #c96f43;
  border-radius: 1rem;
  color: #ffffff;
}

.story-note strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
}

.experience-card {
  padding: 1.5rem;
  background: #fffdf8;
  border: 1px solid #d8d0c0;
  border-radius: 1rem;
}

.experience-card:nth-child(2) {
  background: #274f39;
  color: #ffffff;
}

.experience-card:hover {
  border-color: #a95331;
}

.experience-icon {
  font-size: 1.8rem;
}

.terra-stats {
  padding: 3rem 0;
  background: linear-gradient(100deg, #213f2e, #3d674d);
  color: #ffffff;
}

.terra .metric-row {
  justify-content: space-between;
}

.terra .metric {
  flex: 1 1 10rem;
  text-align: center;
}

.terra .metric strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.6rem;
}

.terra .quote-card {
  padding: 1.75rem;
  background: #fffdf8;
  border-left: 4px solid #c96f43;
  border-radius: 0 1rem 1rem 0;
}

.terra .cta-panel {
  padding: 4rem 2rem;
  background:
    linear-gradient(rgba(31, 53, 41, 0.8), rgba(31, 53, 41, 0.8)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1600&q=80") center center no-repeat;
  background-size: cover;
  border-radius: 1.25rem;
  color: #ffffff;
  text-align: center;
}

.newsletter-row {
  max-width: 35rem;
  margin: 1.5rem auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.newsletter-row input {
  min-height: 3rem;
  padding: 0.7rem 1rem;
  flex: 1 1 15rem;
  border: 1px solid #d8d0c0;
  border-radius: 999px;
}

.terra .site-footer {
  padding: 4rem 0 2rem;
  background: #172a20;
  color: #bec9c0;
}

.terra .site-footer h2,
.terra .site-footer h3 {
  color: #ffffff;
}

.terra .footer-bottom {
  border-top: 1px solid #3e5447;
}

/* Pulse */

.pulse {
  background: #f4f2ed;
  color: #171717;
  font-family: "DM Sans", Arial, Helvetica, sans-serif;
}

.pulse h1,
.pulse h2,
.pulse h3,
.pulse .brand {
  font-family: "Bebas Neue", Impact, sans-serif;
}

.pulse .landing-nav {
  background: #111111;
  border-bottom: 2px solid #fd5a3d;
  color: #ffffff;
}

.pulse .brand {
  font-size: 1.8rem;
}

.pulse .brand span,
.pulse .eyebrow {
  color: #ff6547;
}

.pulse .nav-links a:hover {
  color: #ff6547;
}

.pulse .mobile-menu-panel {
  background: #171717;
  border-color: #ff6547;
}

.pulse .mobile-menu-panel a:hover {
  background: #ff6547;
  color: #ffffff;
}

.pulse .button-primary {
  background: linear-gradient(100deg, #ff4f32, #ff2f78);
  color: #ffffff;
}

.pulse .button-primary:hover {
  background: #e93427;
}

.pulse .button-secondary {
  background: transparent;
  border-color: currentColor;
  color: inherit;
}

.pulse-hero {
  min-height: 45rem;
  position: relative;
  overflow: hidden;
  background: #121212;
  color: #ffffff;
}

.pulse-hero::before {
  content: "";
  width: 20rem;
  height: 60rem;
  position: absolute;
  top: -12rem;
  left: 48%;
  background: linear-gradient(#ff683f, #df245f);
}

.pulse-hero-inner {
  min-height: 45rem;
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.pulse .hero-copy {
  padding: 5rem 0;
  flex: 1 1 29rem;
}

.pulse .hero-copy h1 {
  max-width: 8ch;
  font-size: 5.7rem;
  font-weight: 400;
}

.pulse .hero-copy p {
  max-width: 32rem;
  color: #c8c8c8;
  font-size: 1.08rem;
}

.pulse-hero-figure {
  min-height: 38rem;
  margin: 0;
  position: relative;
  flex: 1 1 26rem;
  align-self: flex-end;
}

.pulse-hero-figure img {
  width: 100%;
  height: 38rem;
  object-fit: cover;
}

.pulse-badge {
  padding: 0.9rem 1.1rem;
  position: absolute;
  background: #ffffff;
  border: 3px solid #111111;
  color: #111111;
  border-radius: 1rem;
  font-size: 0.8rem;
  font-weight: 700;
}

.pulse-badge strong {
  display: block;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 1.8rem;
}

.pulse-badge.top {
  top: 20%;
  left: -2rem;
}

.pulse-badge.bottom {
  right: -1rem;
  bottom: 3rem;
}

.pulse-section {
  padding: 6rem 0;
}

.pulse-section.dark {
  background: #151515;
  color: #ffffff;
}

.pulse .section-heading h2 {
  font-size: 3.5rem;
  font-weight: 400;
}

.class-nav {
  padding: 1rem 0;
  background: #ff5b3d;
}

.pulse .chip-row {
  justify-content: center;
}

.pulse .chip {
  padding: 0.55rem 1rem;
  background: #151515;
  border: 1px solid #151515;
  border-radius: 999px;
  color: #ffffff;
  font-weight: 700;
}

.pulse .chip:hover,
.pulse .chip:first-child {
  background: #ffffff;
  color: #151515;
}

.program-grid {
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 13rem);
}

.program-card {
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  background: #272727;
  border: 1px solid #3b3b3b;
  border-radius: 1rem;
}

.program-card:first-child {
  grid-column: 1 / span 2;
  grid-row: 1 / span 2;
  background:
    linear-gradient(rgba(15, 15, 15, 0.2), rgba(15, 15, 15, 0.88)),
    url("https://images.unsplash.com/photo-1581009146145-b5ef050c2e1e?auto=format&fit=crop&w=1000&q=80") center center no-repeat;
  background-size: cover;
}

.program-card:nth-child(2) {
  grid-column: 3 / span 2;
  background: linear-gradient(120deg, #ee5335, #c72563);
}

.program-card h3 {
  margin: 0;
  position: absolute;
  bottom: 1.25rem;
  font-size: 2rem;
  font-weight: 400;
}

.trainer-card {
  margin: 0;
  position: relative;
}

.trainer-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 1rem;
}

.trainer-card figcaption {
  padding: 1rem;
  margin: -3.5rem 1rem 0;
  position: relative;
  z-index: 2;
  background: #ffffff;
  border: 2px solid #171717;
  border-radius: 0.75rem;
  text-align: center;
}

.trainer-card h3,
.trainer-card p {
  margin: 0;
}

.trainer-card h3 {
  font-size: 1.6rem;
}

.schedule-list {
  border-top: 2px solid #4a4a4a;
}

.schedule-item {
  padding: 1.1rem 0;
  justify-content: space-between;
  border-bottom: 1px solid #4a4a4a;
}

.schedule-item > * {
  flex: 1 1 8rem;
}

.schedule-item h3,
.schedule-item p {
  margin: 0;
}

.pulse .price-card {
  min-height: 23rem;
  padding: 1.75rem;
  position: relative;
  background: #ffffff;
  border: 2px solid #171717;
  border-radius: 1rem;
  box-shadow: 0.6rem 0.6rem 0 #171717;
}

.pulse .price-card:nth-child(2) {
  background: linear-gradient(145deg, #ff643e, #f02e72);
  color: #ffffff;
}

.app-split {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4rem;
}

.app-split > * {
  flex: 1 1 24rem;
}

.phone-mockup {
  max-width: 20rem;
  min-height: 36rem;
  margin: 0 auto;
  padding: 1rem;
  background: #101010;
  border: 0.6rem solid #2e2e2e;
  border-radius: 2.5rem;
  box-shadow: 1.5rem 1.5rem 0 #ff563d;
}

.phone-screen {
  min-height: 33rem;
  padding: 1.5rem;
  background: linear-gradient(180deg, #ee3f31, #7e153e);
  border-radius: 1.6rem;
  color: #ffffff;
}

.phone-screen h3 {
  margin-top: 12rem;
  font-size: 2.5rem;
}

.pulse .cta-panel {
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(105deg, #ff633e, #e42d6c);
  color: #ffffff;
  text-align: center;
}

.pulse .cta-panel::before,
.pulse .cta-panel::after {
  content: "";
  width: 8rem;
  height: 8rem;
  position: absolute;
  border: 1.5rem solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
}

.pulse .cta-panel::before {
  top: -4rem;
  left: -2rem;
}

.pulse .cta-panel::after {
  right: -2rem;
  bottom: -4rem;
}

.pulse .site-footer {
  padding: 4rem 0 2rem;
  background: #0f0f0f;
  color: #aaaaaa;
}

.pulse .site-footer h2,
.pulse .site-footer h3 {
  color: #ffffff;
}

.pulse .footer-bottom {
  border-top: 1px solid #353535;
}

@keyframes aurora-menu-open {
  from {
    opacity: 0;
    transform: translateY(-0.75rem) scale(0.92);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes terra-menu-open {
  from {
    opacity: 0;
    transform: scaleY(0.72);
  }

  to {
    opacity: 1;
    transform: scaleY(1);
  }
}

@keyframes pulse-menu-open {
  from {
    opacity: 0;
    transform: translateX(100%);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Content-driven responsive enhancements */

@media (max-width: 52rem) {
  .nav-inner {
    padding: 0.75rem 0;
  }

  .desktop-links,
  .nav-actions {
    display: none;
  }

  .mobile-menu {
    position: relative;
    display: block;
  }

  .aurora .mobile-menu-panel {
    transform-origin: top right;
  }

  .aurora .mobile-menu[open] .mobile-menu-panel {
    animation: aurora-menu-open 260ms ease-out both;
  }

  .aurora .mobile-menu-panel a:nth-child(odd) {
    transform: translateX(-0.25rem);
  }

  .aurora .mobile-menu-panel a:nth-child(even) {
    transform: translateX(0.25rem);
  }

  .aurora .mobile-menu-panel a:hover,
  .aurora .mobile-menu-panel a:focus-visible {
    transform: translateX(0);
  }

  .terra .mobile-menu {
    position: static;
  }

  .terra .mobile-menu-panel {
    width: 100%;
    top: 100%;
    right: 0;
    left: 0;
    border-width: 1px 0;
    border-radius: 0;
    box-shadow: 0 1rem 2rem rgba(39, 79, 57, 0.14);
    transform-origin: top;
  }

  .terra .mobile-menu[open] .mobile-menu-panel {
    animation: terra-menu-open 300ms ease-out both;
  }

  .terra .mobile-menu-panel a {
    width: 92%;
    margin: 0 auto;
    padding: 0.85rem 0;
    border-bottom: 1px solid #d8d0c0;
    border-radius: 0;
  }

  .pulse .mobile-menu-panel {
    width: min(20rem, 84vw);
    min-height: calc(100vh - 4.75rem);
    padding: 1.5rem;
    position: fixed;
    top: 4.75rem;
    right: 0;
    border-width: 1px 0 0 1px;
    border-radius: 0;
    box-shadow: -1rem 1rem 2rem rgba(0, 0, 0, 0.32);
  }

  .pulse .mobile-menu[open] .mobile-menu-panel {
    animation: pulse-menu-open 280ms ease-out both;
  }

  .pulse .mobile-menu-panel a {
    padding: 1rem;
    border-bottom: 1px solid #3b3b3b;
    border-radius: 0;
    font-family: "Bebas Neue", Impact, sans-serif;
    font-size: 1.5rem;
    letter-spacing: 0.04em;
  }

  .aurora .hero-copy h1,
  .terra .hero-copy h1,
  .pulse .hero-copy h1 {
    font-size: 3.6rem;
  }

  .destination-grid,
  .program-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .destination-card:first-child,
  .program-card:first-child,
  .program-card:nth-child(2) {
    min-height: 20rem;
    grid-column: auto;
    grid-row: auto;
  }

  .program-card {
    min-height: 12rem;
  }

  .pulse-hero::before {
    left: 65%;
  }
}

@media (max-width: 36rem) {
  .content-wrap {
    width: 90%;
  }

  .section-heading h2,
  .terra .section-heading h2,
  .pulse .section-heading h2 {
    font-size: 2.4rem;
  }

  .aurora .hero-copy h1,
  .terra .hero-copy h1,
  .pulse .hero-copy h1 {
    font-size: 3rem;
  }

  .aurora-hero,
  .terra-hero,
  .pulse-hero-inner {
    min-height: auto;
  }

  .aurora-hero {
    padding-top: 4rem;
  }

  .dashboard-visual {
    min-height: 24rem;
    grid-template-columns: 1fr;
  }

  .visual-sidebar {
    display: none;
  }

  .visual-topbar {
    grid-column: auto;
  }

  .story-images {
    min-height: 27rem;
  }

  .story-images img {
    height: 24rem;
  }

  .pulse-badge.top {
    left: 0;
  }

  .pulse-badge.bottom {
    right: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hamburger-icon span,
  .mobile-menu-panel a {
    transition-duration: 0.01ms;
  }

  .aurora .mobile-menu[open] .mobile-menu-panel,
  .terra .mobile-menu[open] .mobile-menu-panel,
  .pulse .mobile-menu[open] .mobile-menu-panel {
    animation: none;
  }
}
