:root {
  --sn-bg: #050505;
  --sn-gold: #d4af37;
  --sn-pink: #ff6b9d;
  --sn-purple: #8e44ad;
  --sn-orange: #e67e22;
  --sn-blue: #3498db;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--sn-bg);
  color: #fff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--sn-pink);
  outline-offset: 4px;
}

.sn-mx-auto{
  margin-inline-start: auto!important;
  margin-inline-end: auto!important;
}

.serif-title {
  font-family: "Playfair Display", Georgia, serif;
}

.gold-accent {
  background: linear-gradient(135deg, var(--sn-pink), var(--sn-purple), var(--sn-blue), var(--sn-orange));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sn-container {
  width: min(100% - 3rem, 72rem);
  margin-inline: auto;
}

.sn-container-narrow {
  width: min(100% - 3rem, 56rem);
  margin-inline: auto;
}

/* Nav */
.sn-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid rgb(255 255 255 / 5%);
  background: rgb(0 0 0 / 80%);
  backdrop-filter: blur(12px);
}

.sn-nav-inner {
  width: min(100% - 3rem, 80rem);
  margin-inline: auto;
  min-height: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.sn-nav-logo {
  display: block;
  width: auto;
  height: 2.25rem;
  object-fit: contain;
}

.sn-nav-links {
  display: none;
  align-items: center;
  gap: 2.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sn-nav-links a:hover {
  color: #eab308;
}

.sn-nav-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.sn-login {
  background: #fff;
  color: #171717;
  padding: 0.625rem 1.15rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 800;
  transition: background-color 180ms ease, transform 180ms ease;
}

.sn-login:hover {
  background: #f3f3f3;
  transform: scale(1.04);
}

.sn-btn-gradient {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--sn-pink), var(--sn-purple), var(--sn-orange));
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 180ms ease, transform 180ms ease;
}

.sn-btn-gradient:hover {
  opacity: 0.92;
  transform: scale(1.02);
}

.sn-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgb(255 255 255 / 20%);
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
  backdrop-filter: blur(4px);
  transition: border-color 180ms ease, background-color 180ms ease;
}

.sn-btn-outline:hover {
  border-color: rgb(255 255 255 / 40%);
  background: rgb(255 255 255 / 5%);
}

.sn-nav-cta {
  display: none;
  padding: 0.625rem 1rem;
  font-size: 0.75rem;
  line-height: 1.2;
  max-width: 11.5rem;
  text-align: center;
}

.sn-eyebrow {
  display: block;
  margin-bottom: 1.5rem;
  color: var(--sn-gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.sn-eyebrow-line {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.sn-eyebrow-line .sn-eyebrow {
  margin-bottom: 0;
}

.sn-eyebrow-line::before {
  content: "";
  width: 3rem;
  height: 1px;
  flex-shrink: 0;
  background: linear-gradient(90deg, var(--sn-pink), var(--sn-orange));
}

/* Hero — shared background layers with main Discovering You landing */
.hero-stage {
  background: #050505;
}

.sn-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-start;
  padding: 7.75rem 0 3.5rem;
  overflow: hidden;
}

.sn-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-text-background {
  position: absolute;
  inset: 0 auto 0 0;
  width: 68%;
  background:
    radial-gradient(circle at 18% 30%, rgb(255 0 128 / 28%), transparent 48%),
    radial-gradient(circle at 54% 70%, rgb(121 40 202 / 30%), transparent 52%),
    linear-gradient(135deg, #050505 8%, #1a0b2e 58%, #2d0a1f 100%);
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 74%, transparent 100%);
  mask-image: linear-gradient(90deg, #000 0%, #000 74%, transparent 100%);
  z-index: 2;
}

.hero-portrait {
  position: absolute;
  inset: 0 0 0 auto;
  width: 52%;
  overflow: hidden;
}

.hero-portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #2d0a1f 0%, rgb(45 10 31 / 82%) 10%, transparent 35%),
    linear-gradient(180deg, rgb(5 5 5 / 10%), rgb(5 5 5 / 28%));
}

.hero-colour-wash {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(115deg, rgb(255 0 128 / 14%), rgb(121 40 202 / 8%) 47%, transparent 66%);
  pointer-events: none;
}

@media (max-width: 767px) {
  .hero-text-background {
    width: 100%;
    background:
      linear-gradient(180deg, rgb(5 5 5 / 94%) 0%, rgb(26 11 46 / 90%) 62%, rgb(45 10 31 / 76%) 100%);
    -webkit-mask-image: none;
    mask-image: none;
  }

  .hero-portrait {
    inset: auto 0 0;
    width: 100%;
    height: 48%;
    opacity: 0.58;
  }

  .hero-portrait img {
    object-position: center 28%;
  }

  .hero-portrait::after {
    background: linear-gradient(180deg, #2d0a1f 0%, rgb(45 10 31 / 52%) 28%, rgb(5 5 5 / 18%));
  }
}

.sn-hero-content {
  position: relative;
  z-index: 20;
  max-width: 42rem;
}

.sn-hero-title {
  margin: 0 0 1.25rem;
  font-size: clamp(2.75rem, 8.5vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: #fff;
}

.sn-hero-job {
  font-style: italic;
}

.sn-hero-subtitle {
  margin: 0 0 1.75rem;
  font-size: clamp(1.85rem, 4.8vw, 3.75rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: rgb(255 255 255 / 92%);
}

.sn-hero-lede {
  margin: 0 0 2.5rem;
  max-width: 38rem;
  font-size: clamp(1.05rem, 2.2vw, 1.5rem);
  line-height: 1.65;
  color: #d4d4d4;
  font-weight: 300;
}

.sn-hero-lede-emphasis {
  color: #fff;
  font-weight: 500;
}

.sn-section-intro {
  margin: 0 auto 2.5rem;
  max-width: 36rem;
  font-size: 1.125rem;
}

.sn-hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sn-hero-cta-primary,
.sn-hero-cta-secondary {
  padding: 1.125rem 1.5rem;
  font-size: 0.9375rem;
  text-align: center;
}

.sn-hero-cta-primary {
  white-space: normal;
  text-align: center;
  max-width: 38rem;
}

.sn-hero-cta-arrow {
  display: inline-block;
  margin-left: 0.15rem;
  transition: transform 180ms ease;
}

.sn-hero-cta-primary:hover .sn-hero-cta-arrow {
  transform: translateX(4px);
}

/* Sections */
.sn-section {
  padding: clamp(4rem, 10vw, 8rem) 0;
}

.sn-section-light {
  background: linear-gradient(135deg, #fff5f8, #fce4ec, #fff0e6);
  color: #171717;
}

.sn-section-dark {
  background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
}

.sn-section-white {
  background: #fff;
  color: #171717;
}

.sn-section-night {
  background: linear-gradient(180deg, #050505, #120a1f, #050505);
}

.sn-section-final {
  position: relative;
  overflow: hidden;
  background: #fff;
  color: #171717;
  text-align: center;
}

.sn-section h2 {
  margin: 0 0 2rem;
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

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

.sn-copy {
  margin: 0;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.75;
}

.sn-copy-muted {
  color: #525252;
}

.sn-copy-light {
  color: #d4d4d4;
}

.sn-copy-stack > * + * {
  margin-top: 1.5rem;
}

.sn-highlight {
  text-decoration: underline;
  text-decoration-color: var(--sn-pink);
  text-decoration-thickness: 4px;
  text-underline-offset: 6px;
}

.sn-emphasis {
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: #171717;
}

/* Five elements */
.sn-elements-intro {
  margin-bottom: 3rem;
}

.sn-elements-intro p {
  margin: 2rem 0 0;
  max-width: 36rem;
  font-size: 1.25rem;
  color: #d4d4d4;
}

.sn-element-row {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 0.5rem 1.25rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgb(255 255 255 / 10%);
}

.sn-element-row:hover {
  background: rgb(255 255 255 / 5%);
}

.sn-element-num {
  grid-row: span 2;
  font-weight: 700;
  font-size: 1.125rem;
}

.sn-element-num-1 { color: var(--sn-pink); }
.sn-element-num-2 { color: var(--sn-purple); }
.sn-element-num-3 { color: var(--sn-blue); }
.sn-element-num-4 { color: var(--sn-orange); }
.sn-element-num-5 { color: var(--sn-pink); }

.sn-element-title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
}

.sn-element-desc {
  margin: 0;
  grid-column: 2;
  font-size: 1rem;
  line-height: 1.65;
  color: #a3a3a3;
}

.sn-elements-close {
  margin-top: 3rem;
  font-size: 1.125rem;
  font-style: italic;
  color: #a3a3a3;
  max-width: 48rem;
}

/* Program */
.sn-program-header {
  text-align: center;
  margin-bottom: 3rem;
}

.sn-program-header p {
  margin: 1.5rem auto 0;
  max-width: 40rem;
  font-size: 1.25rem;
  color: #525252;
}

.sn-coach-note {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.9375rem;
  font-style: italic;
  color: #8e44ad;
}

.sn-program-list {
  margin: 2rem auto 0;
  max-width: 44rem;
  padding: 0;
  list-style: none;
}

.sn-program-list li {
  position: relative;
  padding: 1rem 0 1rem 2rem;
  border-bottom: 1px solid #f0f0f0;
  font-size: 1.125rem;
  color: #404040;
}

.sn-program-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.35rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sn-pink), var(--sn-purple));
}

.sn-program-close {
  margin: 2.5rem auto 0;
  max-width: 40rem;
  text-align: center;
  font-size: 1.125rem;
  color: #525252;
}

.sn-program-close strong {
  display: block;
  margin-top: 0.75rem;
  font-size: 1.25rem;
  color: #171717;
}

/* Future */
.sn-future-header {
  margin-bottom: 5rem;
  text-align: center;
}

.sn-future-header h2 {
  margin-bottom: 0;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
}

.sn-future-grid {
  display: grid;
  gap: 2rem;
}

.sn-future-card {
  padding: 3rem;
  border: 1px solid rgb(255 255 255 / 5%);
  border-radius: 1.5rem;
  background: rgb(23 23 23 / 30%);
  text-align: center;
}

.sn-future-label {
  margin: 0 0 1.5rem;
  font-size: 1.25rem;
  color: #a3a3a3;
}

.sn-future-before {
  margin: 0 0 2rem;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.35;
  color: #fff;
}

.sn-future-divider {
  width: 100%;
  height: 1px;
  margin: 0 0 2rem;
  background: rgb(255 255 255 / 10%);
}

.sn-future-after {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 800;
  line-height: 1.3;
}

.sn-future-close {
  margin: 5rem auto 0;
  max-width: 48rem;
  text-align: center;
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  line-height: 1.65;
  color: #a3a3a3;
}

.sn-future-close strong {
  color: #fff;
}

.sn-final-copy {
  margin: 0 auto 2.5rem;
  max-width: 36rem;
  font-size: 1.25rem;
  color: #525252;
}

.sn-final-cta {
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 25%);
}

.sn-final-grid {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  pointer-events: none;
}

/* Still deciding — discovery call */
.sn-section-callback {
  background: linear-gradient(180deg, #120a1f, #050505);
  text-align: center;
}

.sn-callback-copy {
  margin: 0 auto 2.5rem;
  max-width: 34rem;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.7;
  color: #a3a3a3;
}

.sn-callback-cta {
  padding: 1.125rem 2.25rem;
  font-size: 1.0625rem;
}

/* Footer */
.sn-footer {
  padding: 5rem 0;
  border-top: 1px solid rgb(255 255 255 / 5%);
  background: var(--sn-bg);
}

.sn-footer-inner {
  width: min(100% - 3rem, 80rem);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}

.sn-footer-logo {
  height: 2.25rem;
  width: auto;
}

.sn-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
  color: #737373;
  font-size: 1rem;
}

.sn-footer-links a:hover {
  color: #fff;
}

.sn-footer-copy {
  color: #525252;
  font-size: 0.75rem;
}

@media (min-width: 640px) {
  .sn-hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .sn-hero-cta-primary,
  .sn-hero-cta-secondary {
    font-size: 1.125rem;
    padding: 1.25rem 2.5rem;
  }
}

@media (min-width: 768px) {
  .sn-nav-links {
    display: flex;
  }

  .sn-hero {
    align-items: center;
    padding: 5rem 0;
    min-height: 100vh;
  }

  .sn-element-row {
    grid-template-columns: 3rem 14rem 1fr;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 0;
  }

  .sn-element-num {
    grid-row: auto;
  }

  .sn-element-desc {
    grid-column: auto;
  }

  .sn-future-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .sn-footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

@media (max-width: 420px) {
  .sn-nav-cta {
    display: none;
  }
}

/* Transformation — testimonials */
.sn-section-transformation {
  background: linear-gradient(135deg, #fff, #fff5f8, #f0f8ff);
  color: #171717;
}

.sn-testimonials-header {
  margin-bottom: 3.5rem;
}

.sn-testimonials-header h2 {
  margin-bottom: 0;
}

.sn-testimonials {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

.sn-testimonial {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 2.5rem;
  border: 1px solid #f5f5f5;
  border-radius: 1.5rem;
  background: #fafafa;
}

.sn-testimonial-quote {
  margin: 0 0 2.5rem;
  font-size: 1.125rem;
  font-style: italic;
  line-height: 1.65;
  color: #262626;
}

.sn-testimonial-author {
  margin-top: auto;
}

.sn-testimonial-name {
  display: block;
  font-weight: 700;
  color: #171717;
}

.sn-testimonial-role {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.875rem;
  color: #737373;
}

@media (min-width: 768px) {
  .sn-testimonials {
    grid-template-columns: repeat(3, 1fr);
  }
}
