@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@400;500;600;700&family=Montserrat:wght@500;600;700;800&display=swap");

:root {
  --ink: #eef0ec;
  --muted: #c9cec8;
  --dim: #8d958e;
  --gold: #d8a33a;
  --gold-dark: #966818;
  --gold-soft: #f2c766;
  --black: #02090c;
  --panel: rgba(5, 15, 19, 0.86);
  --line: rgba(210, 151, 42, 0.68);
  --heading: "Cormorant Garamond", serif;
  --body: "Inter", sans-serif;
  --ui: "Montserrat", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--black);
  color: var(--ink);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--body);
  color: var(--ink);
  background:
    radial-gradient(circle at 50% 0%, rgba(28, 45, 44, 0.32), transparent 38rem),
    linear-gradient(180deg, #02080b 0%, #031015 54%, #02080b 100%);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.2;
}

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

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

.site {
  min-height: 100vh;
  overflow: hidden;
}

.shell {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
}

.site-header {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 88px;
  padding: 16px 28px 10px;
}

.brand {
  display: flex;
  align-items: center;
  min-width: 172px;
}

.brand-mark {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.brand-copy {
  margin-left: 8px;
  line-height: 0.84;
}

.brand-name {
  display: block;
  color: #f8f4ec;
  font-family: var(--heading);
  font-size: 39px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.brand-sub {
  display: block;
  margin-top: 6px;
  color: var(--gold);
  font-family: var(--heading);
  font-size: 13px;
  font-weight: 600;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex: 1;
  font-family: var(--ui);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav a {
  color: #f2f2ee;
  opacity: 0.95;
}

.nav a.active {
  color: var(--gold);
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 30px;
  border: 1px solid rgba(250, 204, 99, 0.45);
  border-radius: 3px;
  color: #070706;
  background: linear-gradient(135deg, #e5b34f, #b78022);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 10px 26px rgba(0, 0, 0, 0.38);
  font-family: var(--ui);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-label {
  margin: 0 0 10px;
  color: var(--gold);
  font-family: var(--ui);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.display {
  margin: 0;
  color: #f2eee8;
  font-family: var(--heading);
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 500;
  line-height: 0.93;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.58);
}

.display .gold,
.gold {
  color: var(--gold);
}

.page-title {
  margin: 0;
  font-family: var(--heading);
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 500;
  line-height: 0.98;
  color: #f1ece6;
  text-align: center;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.56);
}

.rule {
  width: 54px;
  height: 2px;
  margin: 25px auto 0;
  background: var(--gold);
}

.copy {
  color: #eef1ef;
  font-size: 18px;
  line-height: 1.78;
}

.placeholder {
  display: grid;
  min-height: 180px;
  place-items: center;
  border: 1px solid rgba(216, 163, 58, 0.44);
  color: var(--gold);
  background: linear-gradient(135deg, rgba(216, 163, 58, 0.1), rgba(0, 0, 0, 0.18));
  font-family: var(--ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.home-hero {
  position: relative;
  min-height: 730px;
  margin-top: -88px;
  padding-top: 88px;
  background:
    linear-gradient(90deg, rgba(0, 9, 13, 0.94) 0%, rgba(1, 10, 14, 0.82) 26%, rgba(1, 10, 14, 0.2) 58%, rgba(1, 10, 14, 0.06) 100%),
    url("images/hero-lion-cliff.png") right center / cover no-repeat;
}

.home-hero .shell {
  display: flex;
  align-items: center;
  min-height: 620px;
}

.hero-copy {
  width: min(600px, 52vw);
  padding-top: 64px;
}

.hero-copy .copy {
  max-width: 530px;
  margin: 28px 0 34px;
}

.asset-strip {
  border-top: 1px solid rgba(216, 163, 58, 0.56);
  border-bottom: 1px solid rgba(216, 163, 58, 0.18);
  background: rgba(2, 10, 13, 0.92);
}

.asset-strip-inner {
  padding: 30px 0 34px;
  text-align: center;
}

.asset-strip h2 {
  margin: 0;
  font-family: var(--heading);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 500;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 38px;
}

.service {
  min-height: 182px;
  padding: 0 25px;
  border-right: 1px solid rgba(216, 163, 58, 0.45);
  text-align: center;
}

.service:last-child {
  border-right: 0;
}

.service img {
  width: 70px;
  height: 70px;
  margin: 0 auto 12px;
  object-fit: contain;
}

.service h3 {
  margin: 0 0 10px;
  color: var(--gold);
  font-family: var(--heading);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.05;
}

.service p {
  margin: 0;
  color: #e9ece8;
  font-size: 12px;
  line-height: 1.75;
}

.featured {
  position: relative;
  min-height: 360px;
  padding: 38px 0 48px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(5, 22, 28, 0.92), rgba(3, 9, 12, 0.4)),
    url("images/golden-mountain-peak.png") center 34% / cover no-repeat;
}

.featured::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(1, 8, 12, 0.82));
}

.featured .shell {
  position: relative;
  z-index: 1;
  text-align: center;
}

.logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(42px, 8vw, 94px);
  margin: 18px 0 76px;
  color: rgba(255, 255, 255, 0.76);
}

.press-logo {
  font-family: Georgia, serif;
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
  filter: grayscale(1);
  opacity: 0.75;
}

.press-logo.fortune {
  font-family: var(--ui);
  font-size: 25px;
  letter-spacing: 0.08em;
}

.press-logo.cnbc {
  font-family: var(--ui);
  font-size: 22px;
  line-height: 0.95;
  text-align: center;
}

.footer-mark {
  width: 54px;
  margin: 0 auto 18px;
}

.brand-quote {
  margin: 0 auto;
  max-width: 720px;
  font-family: var(--heading);
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.18;
  color: #fbf7ef;
}

.difference-hero {
  position: relative;
  min-height: 575px;
  margin-top: -88px;
  padding-top: 88px;
  background:
    linear-gradient(90deg, rgba(1, 10, 14, 0.97) 0%, rgba(1, 10, 14, 0.86) 43%, rgba(1, 10, 14, 0.16) 100%),
    url("images/sphinx-lion-statue.png") right top / cover no-repeat;
}

.difference-hero .shell {
  padding-top: 105px;
}

.difference-hero .text-block {
  max-width: 570px;
}

.difference-hero .page-title {
  text-align: left;
}

.difference-hero .rule {
  margin-left: 0;
}

.comparison-wrap {
  position: relative;
  z-index: 3;
  margin-top: -30px;
  padding-bottom: 54px;
}

.comparison {
  display: grid;
  grid-template-columns: 250px 1fr 1fr;
  max-width: 1060px;
  margin: 0 auto;
  border: 1px solid var(--line);
  background: rgba(4, 14, 18, 0.9);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}

.comparison > div {
  min-height: 78px;
  padding: 18px 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.comparison > div:nth-last-child(-n+3) {
  border-bottom: 0;
}

.comparison .head {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 88px;
  font-family: var(--heading);
  font-size: 27px;
  font-weight: 700;
  text-transform: uppercase;
}

.comparison .simba-head,
.comparison .simba-cell {
  background: linear-gradient(150deg, rgba(226, 177, 80, 0.94), rgba(173, 116, 28, 0.94));
  color: #fff7e8;
}

.comparison .simba-head img {
  width: 25px;
  margin-right: 12px;
}

.comparison .row-label {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #f3f6f0;
  font-family: var(--ui);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.comparison .row-label img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.comparison .simba-cell,
.comparison .other-cell {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 18px;
  align-items: start;
  color: #fff9ef;
  font-size: 13px;
  line-height: 1.55;
}

.comparison .other-cell {
  color: #eef0ec;
}

.mark {
  color: #070707;
  font-size: 25px;
  line-height: 1;
}

.other-cell .mark {
  color: var(--gold);
}

.inner-page {
  min-height: 100vh;
  padding-bottom: 58px;
}

.center-intro {
  padding-top: 74px;
  text-align: center;
}

.center-intro .copy {
  max-width: 540px;
  margin: 16px auto 0;
  font-size: 15px;
  line-height: 1.65;
}

.process {
  max-width: 960px;
  margin: 56px auto 0;
  border: 1px solid var(--line);
  border-radius: 9px;
  overflow: hidden;
  background: rgba(4, 15, 19, 0.72);
}

.process-row {
  display: grid;
  grid-template-columns: 90px 130px 1fr;
  align-items: center;
  min-height: 150px;
  padding: 0 32px 0 22px;
  border-bottom: 1px solid var(--line);
}

.process-row:last-child {
  border-bottom: 0;
}

.process-num {
  color: var(--gold);
  font-family: var(--heading);
  font-size: 54px;
  font-weight: 500;
}

.process-icon {
  width: 86px;
  height: 86px;
  object-fit: contain;
}

.process h3,
.work-card h2 {
  margin: 0 0 10px;
  color: #f3f3ee;
  font-family: var(--ui);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
  text-transform: uppercase;
}

.process p,
.work-card p {
  margin: 0;
  color: #e0e5df;
  font-size: 14px;
  line-height: 1.8;
}

.method-note,
.work-note {
  max-width: 960px;
  margin: 56px auto 0;
  padding: 34px 28px;
  border: 1px solid var(--line);
  text-align: center;
  background: rgba(5, 14, 18, 0.5);
  font-family: var(--heading);
  font-size: 25px;
  line-height: 1.45;
}

.method-note .gold {
  display: block;
  margin-top: 6px;
}

.work-grid {
  max-width: 930px;
  margin: 34px auto 0;
}

.work-card {
  display: grid;
  grid-template-columns: 42% 58%;
  min-height: 188px;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  background: rgba(5, 14, 18, 0.75);
}

.work-card.reverse {
  grid-template-columns: 58% 42%;
}

.work-card img,
.work-card .placeholder {
  width: 100%;
  height: 100%;
  min-height: 188px;
  object-fit: cover;
}

.work-card .work-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 38px;
}

.work-card.reverse img,
.work-card.reverse .placeholder {
  order: 2;
}

.pricing-page {
  padding-bottom: 70px;
}

.pricing-list {
  max-width: 850px;
  margin: 48px auto 0;
}

.price-card {
  position: relative;
  min-height: 330px;
  margin-bottom: 42px;
  padding: 56px 60px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(5, 14, 18, 0.74);
  box-shadow: inset 0 0 80px rgba(216, 163, 58, 0.04);
}

.price-card::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(3, 10, 13, 0.04) 46%, rgba(2, 9, 12, 0.18) 100%);
}

.price-card .lion-bg {
  position: absolute;
  right: 22px;
  bottom: 0;
  z-index: 0;
  width: 52%;
  height: 92%;
  object-fit: contain;
  object-position: right center;
  opacity: 0.86;
  filter: saturate(1.08) contrast(1.08);
}

.price-card.trial .lion-bg {
  right: 30px;
  width: 50%;
  opacity: 0.42;
}

.price-card-content {
  position: relative;
  z-index: 2;
  max-width: 520px;
}

.price-card h2 {
  margin: 0 0 30px;
  color: var(--gold);
  font-family: var(--ui);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.price {
  margin: 0;
  color: var(--gold);
  font-family: var(--heading);
  font-size: 78px;
  font-weight: 500;
  line-height: 0.9;
}

.period {
  margin: 20px 0 24px;
  font-family: var(--ui);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.includes {
  margin: 0 0 9px;
  color: var(--gold);
  font-size: 15px;
  font-weight: 600;
}

.checks {
  padding: 0;
  margin: 0;
  list-style: none;
}

.checks li {
  position: relative;
  margin: 10px 0;
  padding-left: 30px;
  color: #ecefeb;
  font-size: 15px;
  line-height: 1.35;
}

.checks li::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "✓";
  color: var(--gold);
  font-weight: 800;
}

.pricing-cta {
  display: block;
  width: min(520px, 86vw);
  min-height: 78px;
  margin: 58px auto 0;
  font-size: 19px;
}

.spots {
  margin: 26px 0 0;
  color: #d8ddd8;
  text-align: center;
  font-size: 18px;
}

@media (max-width: 900px) {
  .site-header {
    flex-wrap: wrap;
    gap: 14px 20px;
    padding: 14px 18px 12px;
  }

  .brand {
    min-width: 150px;
  }

  .brand-name {
    font-size: 31px;
  }

  .brand-sub {
    font-size: 11px;
  }

  .brand-mark {
    width: 45px;
    height: 45px;
  }

  .nav {
    order: 3;
    flex-basis: 100%;
    gap: 15px;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 3px;
    font-size: 9px;
  }

  .site-header .cta {
    min-height: 44px;
    padding: 0 15px;
    font-size: 9px;
  }

  .home-hero,
  .difference-hero {
    margin-top: -123px;
    padding-top: 123px;
  }

  .home-hero {
    min-height: 700px;
    background:
      linear-gradient(90deg, rgba(0, 9, 13, 0.94) 0%, rgba(1, 10, 14, 0.72) 48%, rgba(1, 10, 14, 0.28) 100%),
      url("images/hero-lion-cliff.png") 65% center / cover no-repeat;
  }

  .home-hero .shell {
    min-height: 575px;
  }

  .hero-copy {
    width: 92%;
    padding-top: 30px;
  }

  .service-grid {
    grid-template-columns: 1fr 1fr;
    gap: 26px 0;
  }

  .service:nth-child(2) {
    border-right: 0;
  }

  .logo-row {
    flex-wrap: wrap;
    gap: 26px 38px;
    margin-bottom: 52px;
  }

  .comparison {
    grid-template-columns: 1fr;
  }

  .comparison > div {
    min-height: auto;
  }

  .comparison .head:first-child {
    display: none;
  }

  .comparison .row-label {
    background: rgba(4, 14, 18, 0.95);
  }

  .process-row {
    grid-template-columns: 54px 82px 1fr;
    min-height: 138px;
    padding: 18px;
  }

  .process-num {
    font-size: 42px;
  }

  .process-icon {
    width: 64px;
    height: 64px;
  }

  .work-card,
  .work-card.reverse {
    grid-template-columns: 1fr;
  }

  .work-card.reverse img,
  .work-card.reverse .placeholder {
    order: 0;
  }

  .price-card {
    padding: 36px 30px;
  }
}

@media (max-width: 560px) {
  .shell {
    width: min(100% - 32px, 1180px);
  }

  .site-header {
    min-height: 130px;
  }

  .home-hero {
    min-height: 690px;
    background-position: 66% center;
  }

  .display {
    font-size: 48px;
  }

  .copy {
    font-size: 16px;
  }

  .cta {
    min-height: 52px;
    padding: 0 22px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service {
    border-right: 0;
    border-bottom: 1px solid rgba(216, 163, 58, 0.32);
    padding: 20px 8px 26px;
  }

  .service:last-child {
    border-bottom: 0;
  }

  .difference-hero {
    min-height: 560px;
    background-position: 60% top;
  }

  .difference-hero .shell {
    padding-top: 58px;
  }

  .comparison-wrap {
    margin-top: 0;
  }

  .process-row {
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: center;
  }

  .process-num,
  .process-icon {
    margin: 0 auto;
  }

  .work-card .work-copy {
    padding: 24px;
  }

  .price {
    font-size: 60px;
  }

  .price-card .lion-bg {
    right: 0;
    width: 88%;
    opacity: 0.25;
  }

  .price-card:not(.trial) .lion-bg {
    opacity: 0.42;
  }
}
