:root {
  --bg: #000000;
  --panel: rgba(255, 255, 255, 0.025);
  --panel-strong: rgba(255, 255, 255, 0.04);
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.22);
  --text: rgba(255, 255, 255, 0.96);
  --muted: rgba(255, 255, 255, 0.72);
  --muted-soft: rgba(255, 255, 255, 0.52);
  --ring-glow: rgba(110, 231, 183, 0.12);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.65);
  --peak-green: #6ee7b7;
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100vh;
  background: #000000;
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

/* ------------------------------
   BUTTON STANDARD (GLOBAL)
-------------------------------- */

.tour-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  padding: 18px 32px;
  background: #000000;
  color: #ffffff;
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  font-family: "Inter", sans-serif;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1;
  cursor: pointer;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease,
    background 160ms ease;
}

.tour-button:hover {
  color: #ffffff;
  border-color: var(--peak-green);
  box-shadow: 0 0 0 4px var(--ring-glow);
}

.tour-button:active {
  transform: translateY(1px);
}

.tour-button:focus-visible {
  outline: none;
  color: #ffffff;
  border-color: var(--peak-green);
  box-shadow: 0 0 0 4px var(--ring-glow);
}

.tour-button--block {
  width: 100%;
}

.tour-button--lg-text {
  font-size: 1.28rem;
}

.tour-button--md-text {
  font-size: 1rem;
}

/* ------------------------------
   PAGE 1: LANDING / TOUR GATE
-------------------------------- */

.tour-gate {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 20px;
}

.tour-card {
  width: min(100%, 720px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  padding: 36px 36px 38px;
}

.logo-wrap {
  width: min(100%, 520px);
}

.logo {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 16px 36px rgba(255, 255, 255, 0.035));
}

.motto {
  margin: -6px 0 8px;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
}

.tour-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.field-label {
  font-size: 1.18rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text);
}

.field-input {
  width: 100%;
  min-height: 72px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  padding: 18px 20px;
  font: inherit;
  font-size: 1.18rem;
  outline: none;
  transition:
    border-color 140ms ease,
    box-shadow 140ms ease,
    background 140ms ease;
}

.field-input::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.field-input:focus {
  border-color: var(--peak-green);
  box-shadow: 0 0 0 4px var(--ring-glow);
  background: rgba(255, 255, 255, 0.045);
}

/* ------------------------------
   PAGE 2: VERIFY EMAIL
-------------------------------- */

.verify-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 20px;
}

.verify-card {
  width: min(100%, 720px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 38px 34px 40px;
  text-align: center;
}

.verify-logo-wrap {
  width: min(100%, 420px);
}

.verify-title {
  margin: 6px 0 0;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.verify-copy {
  max-width: 36rem;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.verify-email-line {
  margin: 0;
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 600;
}

.verify-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 22px;
  margin-top: 4px;
}

.verify-link {
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  padding-bottom: 2px;
}

.verify-link:hover {
  color: var(--peak-green);
  border-bottom-color: var(--peak-green);
}

/* ------------------------------
   PAGE 3: INTRODUCTION
-------------------------------- */

.ic-minimal-page {
  min-height: 100vh;
  background: #000000;
  color: #ffffff;
}

.intro-shell {
  min-height: 100vh;
  max-width: 1020px;
  margin: 0 auto;
  padding: 56px 24px 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.intro-logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 42px;
  width: 100%;
}

.intro-logo {
  width: min(420px, 80vw);
  height: auto;
  filter: drop-shadow(0 16px 36px rgba(255, 255, 255, 0.04));
}

.intro-copy {
  max-width: 920px;
  text-align: center;
  font-family: "Cinzel", Georgia, serif;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.72;
  font-size: clamp(1.02rem, 1.28vw, 1.34rem);
  text-transform: uppercase;
}

.intro-copy p {
  margin: 0 0 28px;
}

.intro-break {
  margin-top: 10px;
  margin-bottom: 34px;
  font-size: 1.16em;
  font-weight: 600;
  color: var(--text);
}

.intro-closing {
  margin-top: 36px;
  font-size: 1.18em;
  font-weight: 600;
  color: var(--text);
}

.intro-button-wrap {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.intro-button-wrap .tour-button {
  min-width: 220px;
}

/* ------------------------------
   PAGE 4: METRICS DEMO
-------------------------------- */

.metrics-page {
  min-height: 100vh;
  background: #000000;
  color: #ffffff;
}

.metrics-hero {
  height: 35vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 96px 24px 0;
}

.metric-block {
  width: 100%;
  opacity: 0;
  transition: opacity 1.15s ease;
}

.metric-block.visible {
  opacity: 0.92;
}

.metric-list {
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
  text-align: left;
  color: var(--peak-green);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: clamp(1.1rem, 1.8vw, 1.6rem);
  line-height: 1.95;
}

.metric-line {
  margin: 0 0 18px 0;
  white-space: nowrap;
}

.metrics-explainer {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 24px 72px;
  text-align: center;
  font-family: "Cinzel", Georgia, serif;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.72;
  font-size: clamp(1.02rem, 1.28vw, 1.34rem);
  text-transform: uppercase;
}

.metrics-explainer h2 {
  margin: 0 0 34px;
  font-family: "Cinzel", Georgia, serif;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.3;
  font-size: 1.18em;
  text-transform: uppercase;
  color: #fff;
}

.metrics-explainer p {
  margin: 0 0 28px;
}

.metrics-button-wrap {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.metrics-button-wrap .tour-button {
  min-width: 220px;
}

/* ------------------------------
   PAGE 5: SOCIAL SLIDESHOW
-------------------------------- */




/* ------------------------------
   PAGE 5: SOCIAL SLIDESHOW
-------------------------------- */

.social-page {
  min-height: 100vh;
  background: #000000;
  color: #ffffff;
}

.social-shell {
  min-height: 100vh;
  max-width: 1320px;
  margin: 0 auto;
  padding: 40px 24px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.social-hero {
  position: relative;
  /* NEW */
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) 92px;
  align-items: start;
  /* prevents vertical drift */
  gap: 20px;
  min-height: 62vh;
}

.slide-stage {
  width: 100%;
  display: flex;
  justify-content: center;
}

.slide-frame {
  width: min(100%, 760px);
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  box-shadow: var(--shadow);
}

.slide-image {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0;
  transition: opacity 220ms ease;
}

.slide-image.is-visible {
  opacity: 1;
}

/* ---------- FIXED ARROWS ---------- */

.slide-nav {
  position: sticky;
  /* keeps vertical position stable */
  top: 260px;
  /* anchor height */
  width: 72px;
  height: 72px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: #000000;
  color: #ffffff;
  font-size: 2.25rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.slide-nav:hover {
  border-color: var(--peak-green);
  box-shadow: 0 0 0 4px var(--ring-glow);
}

.slide-nav:active {
  transform: translateY(1px);
}

.slide-nav:focus-visible {
  outline: none;
  border-color: var(--peak-green);
  box-shadow: 0 0 0 4px var(--ring-glow);
}

.social-explainer {
  max-width: 920px;
  margin: 42px auto 0;
  padding: 0 24px;
  text-align: center;
  font-family: "Cinzel", Georgia, serif;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.72;
  font-size: clamp(1.02rem, 1.28vw, 1.34rem);
  text-transform: uppercase;
}

.social-explainer p {
  margin: 0 0 28px;
}

.social-button-wrap {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.social-button-wrap .tour-button {
  min-width: 220px;
}


/* ------------------------------
   SHARED HELPERS
-------------------------------- */

.subtle-muted {
  color: var(--muted-soft);
}

/* ------------------------------
   MOBILE
-------------------------------- */

@media (max-width: 900px) {
  .metrics-hero {
    height: 32vh;
    padding-top: 72px;
  }

  .metric-list {
    width: 100%;
    font-size: 1.05rem;
    line-height: 1.8;
  }

  .metric-line {
    white-space: normal;
    margin-bottom: 16px;
  }

  .social-shell {
    padding-top: 28px;
  }

  .social-hero {
    grid-template-columns: 68px minmax(0, 1fr) 68px;
    min-height: 52vh;
    gap: 12px;
  }

  .slide-nav {
    width: 56px;
    height: 56px;
    font-size: 1.8rem;
  }

  .slide-frame {
    width: min(100%, 680px);
  }
}

@media (max-width: 640px) {

  .tour-card,
  .verify-card {
    width: 100%;
    padding: 24px 18px 28px;
    gap: 20px;
  }

  .logo-wrap {
    width: min(100%, 420px);
  }

  .motto {
    font-size: 1.2rem;
    letter-spacing: 0.12em;
  }

  .field-label {
    font-size: 1rem;
  }

  .field-input {
    min-height: 60px;
    padding: 14px 16px;
    font-size: 1rem;
    border-radius: 16px;
  }

  .tour-button--xl {
    min-height: 60px;
    font-size: 1rem;
    border-radius: 16px;
    padding: 14px 18px;
  }

  .verify-copy {
    line-height: 1.65;
    font-size: 1rem;
  }

  .intro-shell {
    padding: 40px 20px 56px;
  }

  .intro-logo-wrap {
    margin-bottom: 32px;
  }

  .intro-copy,
  .metrics-explainer,
  .social-explainer {
    line-height: 1.62;
    letter-spacing: 0.03em;
  }

  .intro-copy p,
  .metrics-explainer p,
  .social-explainer p {
    margin-bottom: 22px;
  }

  .intro-break {
    margin-bottom: 28px;
  }

  .intro-closing {
    margin-top: 28px;
  }

  .metrics-hero {
    height: 30vh;
    padding: 72px 20px 0;
  }

  .metric-list {
    font-size: 1rem;
    line-height: 1.72;
  }

  .metric-line {
    margin-bottom: 14px;
  }

  .metrics-explainer {
    padding: 0 20px 56px;
  }

  .social-shell {
    padding: 24px 18px 56px;
  }

  .social-hero {
    grid-template-columns: 52px minmax(0, 1fr) 52px;
    min-height: auto;
    gap: 10px;
  }

  .slide-nav {
    width: 46px;
    height: 46px;
    font-size: 1.45rem;
  }

  .slide-frame {
    border-radius: 18px;
  }

  .social-explainer {
    padding: 0 8px;
  }
}

/* ------------------------------
   PAGE 6: FINAL CTA
-------------------------------- */

.cta-page {
  min-height: 100vh;
  background: #000000;
  color: #ffffff;
}

.cta-shell {
  min-height: 100vh;
  max-width: 1020px;
  margin: 0 auto;
  padding: 56px 24px 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.cta-logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 42px;
  width: 100%;
}

.cta-logo {
  width: min(420px, 80vw);
  height: auto;
  filter: drop-shadow(0 16px 36px rgba(255, 255, 255, 0.04));
}

.cta-copy {
  max-width: 920px;
  text-align: center;
  font-family: "Cinzel", Georgia, serif;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.72;
  font-size: clamp(1.02rem, 1.28vw, 1.34rem);
  text-transform: uppercase;
  margin-bottom: 34px;
}

.cta-copy p {
  margin: 0 0 28px;
}

.cta-form {
  width: min(100%, 760px);
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.cta-grid--single {
  grid-template-columns: 1fr;
}

.field-select,
.field-textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  padding: 18px 20px;
  font: inherit;
  font-size: 1.18rem;
  outline: none;
  transition:
    border-color 140ms ease,
    box-shadow 140ms ease,
    background 140ms ease;
}

.field-select {
  min-height: 72px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}

.field-textarea {
  min-height: 132px;
  resize: vertical;
  line-height: 1.55;
}

.field-textarea::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.field-select:focus,
.field-textarea:focus {
  border-color: var(--peak-green);
  box-shadow: 0 0 0 4px var(--ring-glow);
  background: rgba(255, 255, 255, 0.045);
}

.check-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  padding: 18px 20px;
}

.check-row input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--peak-green);
  flex: 0 0 auto;
}

.check-label {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text);
  line-height: 1.45;
  text-transform: uppercase;
}

.cta-button-wrap {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}

.cta-button-wrap .tour-button {
  min-width: 220px;
}

.text-center {
  text-align: center;
}

@media (max-width: 760px) {
  .cta-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .cta-shell {
    padding: 40px 20px 56px;
  }

  .cta-logo-wrap {
    margin-bottom: 32px;
  }

  .cta-copy {
    line-height: 1.62;
    letter-spacing: 0.03em;
    margin-bottom: 28px;
  }

  .cta-copy p {
    margin-bottom: 22px;
  }

  .field-select,
  .field-textarea {
    min-height: 60px;
    padding: 14px 16px;
    font-size: 1rem;
    border-radius: 16px;
  }

  .field-textarea {
    min-height: 120px;
  }

  .check-row {
    border-radius: 16px;
    padding: 14px 16px;
  }
}