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

:root {
  --black: #0A0A0A;
  --white: #FFFFFF;
  --grey: #F5F5F5;
  --mid-grey: #E0E0E0;
  --text-muted: #888888;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--white);
  color: var(--black);
  font-family: var(--sans);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
}

.tm {
  font-size: 0.35em;
  opacity: 0.7;
  vertical-align: super;
  margin-left: 2px;
}

.nav-cta {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--black);
  padding: 0.7rem 1.5rem;
  text-decoration: none;
  border: 1px solid var(--black);
  transition: background 0.28s, color 0.28s;
}

.nav-cta:hover { background: var(--white); color: var(--black); }

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 8rem 2rem 4rem;
  background-color: #0A0A0A;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 30%, rgba(255,255,255,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-eyebrow {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.8rem;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 8vw, 6rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 1.6rem;
  max-width: 14ch;
  color: var(--white);
}

.hero h1 em {
  font-style: italic;
  font-weight: 300;
}

.hero-sub {
  font-family: var(--sans);
  font-size: clamp(0.9rem, 2.2vw, 1.05rem);
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  max-width: 38ch;
  line-height: 1.7;
  margin-bottom: 0.8rem;
}

.hero-support {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(255,255,255,0.38);
  letter-spacing: 0.04em;
  margin-bottom: 2.8rem;
  max-width: 42ch;
  line-height: 1.6;
}

.btn-primary {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--white);
  padding: 1.1rem 2.4rem;
  text-decoration: none;
  border: 1px solid var(--white);
  transition: background 0.28s, color 0.28s, border-color 0.28s;
  width: fit-content;
}

.btn-primary:hover {
  background: transparent;
  color: var(--white);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  writing-mode: vertical-rl;
}

/* POSITIONING BAR */
.positioning-bar {
  background-color: #F5F5F5;
  padding: 2rem;
  text-align: center;
  border-bottom: 1px solid #E0E0E0;
}

.positioning-bar p {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.positioning-bar strong {
  font-weight: 500;
  color: var(--black);
}

/* SECTIONS COMMON */
section {
  padding: 6rem 2rem;
}

.section-label {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 5.5vw, 3.4rem);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

h2 em { font-style: italic; }

/* PROBLEM */
.problem {
  background-color: #FFFFFF;
  border-top: 1px solid #E0E0E0;
}

.problem-inner { max-width: 580px; }
.problem h2 { margin-bottom: 3rem; }

.problem-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.problem-item {
  padding: 1.4rem 0;
  border-bottom: 1px solid #E0E0E0;
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}

.problem-item:first-child { border-top: 1px solid #E0E0E0; }

.problem-num {
  font-family: var(--serif);
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-top: 0.1rem;
  min-width: 1.6rem;
}

.problem-text {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--black);
}

/* SOLUTION */
.solution {
  background-color: #0A0A0A;
  color: var(--white);
}

.solution .section-label { color: rgba(255,255,255,0.35); }
.solution h2 { color: var(--white); margin-bottom: 2rem; }

.solution p {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
  max-width: 48ch;
}

/* INCLUDED */
.included {
  background-color: #F5F5F5;
  border-top: 1px solid #E0E0E0;
  border-bottom: 1px solid #E0E0E0;
}

.included h2 { margin-bottom: 3rem; }

.included-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.included-item {
  padding: 1.3rem 0;
  border-bottom: 1px solid #E0E0E0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.included-item:first-child { border-top: 1px solid #E0E0E0; }

.included-item span {
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--black);
  letter-spacing: 0.01em;
}

.included-check {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--text-muted);
}

/* PRICING */
.pricing {
  background-color: #FFFFFF;
  text-align: center;
}

.pricing .section-label { text-align: center; }

.price-display {
  font-family: var(--serif);
  font-size: clamp(3.2rem, 12vw, 7rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 1.5rem 0 1rem;
  color: var(--black);
}

.price-note {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 3rem;
}

.pricing-divider {
  width: 1px;
  height: 60px;
  background: #E0E0E0;
  margin: 0 auto 3rem;
}

/* ADD-ONS */
.addons {
  background-color: #F5F5F5;
  border-top: 1px solid #E0E0E0;
}

.addons h2 { margin-bottom: 0.8rem; }

.addons-sub {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  margin-bottom: 3rem;
}

.addons-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.addon-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid #E0E0E0;
}

.addon-item:first-child { border-top: 1px solid #E0E0E0; }

.addon-name {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 0.3rem;
}

.addon-desc {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

/* CTA */
.cta-section {
  background-color: #0A0A0A;
  color: var(--white);
  text-align: center;
  padding: 7rem 2rem;
}

.cta-section .section-label { color: rgba(255,255,255,0.3); text-align: center; }

.cta-section h2 {
  color: var(--white);
  font-size: clamp(2.2rem, 6vw, 4rem);
  margin-bottom: 3rem;
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
}

.btn-outline {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  background: transparent;
  padding: 1.1rem 2.6rem;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.5);
  transition: background 0.28s, border-color 0.28s;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--white);
}

/* FOOTER */
footer {
  background-color: #0A0A0A;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  height: 36px;
  width: auto;
  object-fit: contain;
  filter: invert(1);
  opacity: 0.85;
}

.footer-copy {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 300;
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* TABLET */
@media (min-width: 700px) {
  nav { padding: 1.6rem 3.5rem; }
  .hero { padding: 10rem 3.5rem 5rem; }
  section { padding: 7rem 3.5rem; }
  .positioning-bar { padding: 2.2rem 3.5rem; }
  .addons { padding: 7rem 3.5rem; }
  .cta-section { padding: 9rem 3.5rem; }
  footer { padding: 2rem 3.5rem; }
}

/* DESKTOP */
@media (min-width: 1024px) {
  nav { padding: 1.6rem 6rem; }
  .hero { padding: 12rem 6rem 6rem; }
  section { padding: 8rem 6rem; }
  .positioning-bar { padding: 2.2rem 6rem; }
  .addons { padding: 8rem 6rem; }
  .cta-section { padding: 10rem 6rem; }
  footer { padding: 2.2rem 6rem; }

  .problem-inner, .solution-inner { max-width: 620px; }
  .included-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .included-item { padding: 1.3rem 0; }
}

/* URGENCY TEXT */
.urgency-text {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.38);
  margin-top: 1rem;
}

.urgency-text--light {
  color: rgba(255,255,255,0.38);
  margin-top: 1.2rem;
}

/* SCROLL ANIMATIONS */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* CTA SUBTEXT */
.cta-sub {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 2.5rem;
  margin-top: -1.5rem;
}
