/* ══════════════════════════════════════════════════ */
/* HERO                                              */
/* ══════════════════════════════════════════════════ */
#hero {
  min-height: 100vh;
  background: var(--alpine-night);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}
/* Subtle mountain silhouette via CSS */
#hero::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 45%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320' preserveAspectRatio='none'%3E%3Cpath fill='%23162340' d='M0,320 L0,200 L120,140 L240,180 L360,80 L480,120 L600,40 L720,90 L840,30 L960,100 L1080,60 L1200,130 L1320,90 L1440,150 L1440,320 Z'/%3E%3C/svg%3E") center bottom / cover no-repeat;
  opacity: 0.5;
  pointer-events: none;
}
/* Glow accent top-right */
#hero::after {
  content: '';
  position: absolute;
  top: -120px; right: -160px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232,67,26,0.14) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-text { color: var(--summit-white); }
.hero-text .eyebrow { color: var(--alpenglühen); }
.hero-text h1 {
  margin-bottom: 24px;
  color: var(--summit-white);
  text-shadow: 0 2px 24px rgba(0,0,0,0.4);
}
.hero-text h1 em {
  font-style: italic;
  color: var(--alpenglühen);
}
.hero-text .hero-sub {
  font-size: 1.125rem;
  color: rgba(245,245,240,0.72);
  margin-bottom: 40px;
  max-width: 440px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
/* Box mockup */
.box-mockup {
  width: 320px;
  height: 400px;
  background: linear-gradient(145deg, #243760 0%, #1B2B4B 60%, #162240 100%);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
}
.box-logo-img {
  height: 100px;
  width: 100px;
  object-fit: contain;
  border-radius: 12px;
}
.box-mockup::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--alpenglühen), var(--glacier-teal));
}
.box-title-mock {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--summit-white);
  text-align: center;
  line-height: 1.2;
}
.box-title-mock span { color: var(--alpenglühen); display: block; font-size: 2rem; }
.box-subtitle-mock {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--glacier-teal);
  font-weight: 600;
}
.box-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--alpenglühen);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.badge-logo-img {
  height: 16px;
  width: 16px;
  object-fit: contain;
  border-radius: 3px;
}
.box-lines {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  opacity: 0.06;
  background:
    repeating-linear-gradient(
      -45deg,
      rgba(255,255,255,0.5) 0px,
      rgba(255,255,255,0.5) 1px,
      transparent 1px,
      transparent 32px
    );
}
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }
  .hero-text .hero-sub { margin: 0 auto 40px; }
  .hero-actions { justify-content: center; }
  .hero-visual { order: -1; }
  .box-mockup { width: 240px; height: 300px; }
  .box-logo-img { height: 72px; width: 72px; }
}

/* ══════════════════════════════════════════════════ */
/* KEY MESSAGES BAR                                  */
/* ══════════════════════════════════════════════════ */
#messages-bar {
  background: var(--white);
  padding: 40px 0;
  border-bottom: 1px solid rgba(27,43,75,0.07);
}
.messages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.msg-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 16px;
}
.msg-icon {
  font-size: 1.75rem;
  margin-bottom: 10px;
}
.msg-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--alpine-night);
  line-height: 1.4;
}
@media (max-width: 680px) {
  .messages-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ══════════════════════════════════════════════════ */
/* HOW IT WORKS                                      */
/* ══════════════════════════════════════════════════ */
#how-it-works {
  background: var(--summit-white);
}
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}
.section-header p { margin-top: 16px; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  counter-reset: step-counter;
}
.step-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  box-shadow: var(--shadow-card);
  position: relative;
  counter-increment: step-counter;
}
.step-card::before {
  content: counter(step-counter);
  position: absolute;
  top: -18px;
  left: 28px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  background: var(--alpenglühen);
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 40px;
  text-align: center;
}
.step-icon {
  font-size: 2.25rem;
  margin-bottom: 16px;
  margin-top: 12px;
}
.step-card h3 {
  color: var(--alpine-night);
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .steps-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
}

/* ══════════════════════════════════════════════════ */
/* GAME FEATURES                                     */
/* ══════════════════════════════════════════════════ */
#features {
  background: var(--alpine-night);
  color: var(--summit-white);
}
#features .eyebrow { color: var(--glacier-teal); }
#features h2 { color: var(--summit-white); }
#features .section-header p { color: rgba(245,245,240,0.65); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: background 0.2s;
}
.feature-card:hover { background: rgba(255,255,255,0.09); }
.feature-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}
.feature-card h3 {
  color: var(--summit-white);
  font-size: 1.075rem;
  margin-bottom: 8px;
}
.feature-card p {
  color: rgba(245,245,240,0.60);
  font-size: 0.9rem;
}
@media (max-width: 900px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .features-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════ */
/* APP SECTION                                       */
/* ══════════════════════════════════════════════════ */
#app {
  background: var(--white);
}
.app-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.app-text h2 { margin-bottom: 20px; }
.app-text p  { margin-bottom: 24px; }
.app-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}
.app-bullets li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.9375rem;
  color: var(--alpine-night);
  font-weight: 500;
}
.app-bullets li::before {
  content: '✓';
  color: var(--glacier-teal);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.app-store-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
/* Phone mockup */
.phone-mockup {
  width: 240px;
  height: 480px;
  background: var(--alpine-night);
  border-radius: 40px;
  border: 8px solid #0e1d32;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 24px 64px rgba(27,43,75,0.28);
  overflow: hidden;
}
.phone-notch {
  position: absolute;
  top: 0;
  width: 100px;
  height: 24px;
  background: #0e1d32;
  border-radius: 0 0 16px 16px;
}
.phone-screen-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 12px;
  width: 100%;
}
.phone-label {
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--glacier-teal);
  font-weight: 600;
}
.phone-dice-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  width: 100%;
  padding: 0 8px;
}
.phone-die {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.phone-die.active {
  background: rgba(58, 138, 140, 0.25);
  border-color: var(--glacier-teal);
}
.phone-btn-row {
  display: flex;
  gap: 6px;
  padding: 0 8px;
  width: 100%;
}
.phone-btn-mock {
  flex: 1;
  background: var(--alpenglühen);
  border-radius: 8px;
  padding: 8px;
  font-size: 0.6rem;
  font-weight: 700;
  color: white;
  text-align: center;
}
.phone-caption {
  font-size: 0.6rem;
  color: rgba(245,245,240,0.45);
  text-align: center;
  padding: 0 12px;
}
@media (max-width: 768px) {
  .app-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .phone-mockup { order: -1; width: 180px; height: 360px; }
}

/* ══════════════════════════════════════════════════ */
/* BAD WEATHER CALLOUT                               */
/* ══════════════════════════════════════════════════ */
#bad-weather {
  background: linear-gradient(135deg, #1B2B4B 0%, #243665 100%);
  padding: 80px 0;
}
.callout-inner {
  display: flex;
  gap: 64px;
  align-items: center;
}
.callout-emoji {
  font-size: 5rem;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.3));
}
.callout-text h2 {
  color: var(--summit-white);
  margin-bottom: 16px;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}
.callout-text p {
  color: rgba(245,245,240,0.70);
  font-size: 1.05rem;
  max-width: 520px;
}
@media (max-width: 680px) {
  .callout-inner { flex-direction: column; gap: 24px; text-align: center; }
}

/* ══════════════════════════════════════════════════ */
/* TESTIMONIALS                                      */
/* ══════════════════════════════════════════════════ */
#testimonials {
  background: var(--summit-white);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
}
.stars {
  color: var(--alpenglühen);
  font-size: 0.875rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.testimonial-card blockquote {
  font-size: 0.9375rem;
  color: var(--alpine-night);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 18px;
}
.testimonial-author {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--rock-grey);
}
.testimonial-author span {
  display: block;
  font-weight: 400;
  color: var(--glacier-teal);
}
@media (max-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}

/* ══════════════════════════════════════════════════ */
/* BUY SECTION                                       */
/* ══════════════════════════════════════════════════ */
#buy {
  background: var(--white);
}
.buy-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}
.buy-card {
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.buy-card.physical {
  background: var(--alpine-night);
  color: var(--summit-white);
  box-shadow: var(--shadow-lg);
}
.buy-card.app {
  background: var(--summit-white);
  border: 2px solid rgba(27,43,75,0.12);
}
.buy-card .buy-icon { font-size: 2.5rem; }
.buy-card h3 {
  font-size: 1.375rem;
  font-family: var(--font-display);
}
.buy-card.physical h3 { color: var(--summit-white); }
.buy-card.app h3     { color: var(--alpine-night); }
.buy-card p { font-size: 0.9rem; }
.buy-card.physical p { color: rgba(245,245,240,0.65); }
.buy-card.app p      { color: var(--rock-grey); }
.buy-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.75rem;
}
.buy-card.physical .buy-price { color: var(--summit-white); }
.buy-card.app .buy-price      { color: var(--alpine-night); }
.buy-price small {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  opacity: 0.6;
}
.store-badge-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.store-badge {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--summit-white);
  letter-spacing: 0.03em;
}
.store-badge.dark {
  background: rgba(27,43,75,0.08);
  border-color: rgba(27,43,75,0.18);
  color: var(--alpine-night);
}
@media (max-width: 620px) {
  .buy-inner { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════ */
/* PHILOSOPHY                                        */
/* ══════════════════════════════════════════════════ */
#philosophy {
  background: var(--summit-white);
}
.philosophy-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.philosophy-text h2 { margin-bottom: 20px; }
.philosophy-text p  { margin-bottom: 18px; }
.philosophy-text p:last-child { margin-bottom: 0; }
.philosophy-accent {
  background: var(--alpine-night);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.philosophy-quote {
  font-family: var(--font-display);
  font-size: 1.375rem;
  color: var(--summit-white);
  line-height: 1.45;
  font-style: italic;
}
.philosophy-quote-attr {
  font-size: 0.8rem;
  color: var(--glacier-teal);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .philosophy-inner { grid-template-columns: 1fr; gap: 40px; }
}

/* ══════════════════════════════════════════════════ */
/* TEAM                                              */
/* ══════════════════════════════════════════════════ */
#team {
  background: var(--white);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}
.team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--summit-white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-card);
}
.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(145deg, #243760 0%, #1B2B4B 100%);
  border: 3px solid rgba(27,43,75,0.10);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(245,245,240,0.25);
  overflow: hidden;
  flex-shrink: 0;
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.team-card h3 {
  color: var(--alpine-night);
  margin-bottom: 6px;
}
.team-role {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--glacier-teal);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.team-card p {
  font-size: 0.9rem;
  color: var(--rock-grey);
  line-height: 1.65;
}
@media (max-width: 600px) {
  .team-grid { grid-template-columns: 1fr; max-width: 380px; }
}

/* ══════════════════════════════════════════════════ */
/* MOCKUP BANNER                                     */
/* ══════════════════════════════════════════════════ */
.mockup-banner {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--alpenglühen);
  color: white;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  z-index: 999;
  white-space: nowrap;
  pointer-events: none;
}
