:root {
  --paper: #faf4ea;
  --vellum: #fff9ef;
  --stone: #e5d8c6;
  --line: #c7b7a0;
  --ink: #1f1d19;
  --soft-ink: #484037;
  --muted: #796c5b;
  --bronze: #976732;
  --clay: #964835;
  --moss: #4d5841;
  --blue-ink: #2b363e;
  --dawn: #cb8f50;
  --ease-out-premium: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-heavy: cubic-bezier(0.32, 0.72, 0, 1);
  color: var(--ink);
  background: var(--paper);
  font-family: "Avenir Next", "Satoshi", "Plus Jakarta Sans", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 9% 12%, rgba(203, 143, 80, 0.14), transparent 28rem),
    radial-gradient(circle at 83% 5%, rgba(77, 88, 65, 0.12), transparent 32rem),
    var(--paper);
}

body,
button,
a {
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

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

button {
  font: inherit;
}

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

.paper-grain {
  position: fixed;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(31, 29, 25, 0.13) 0 1px, transparent 1.5px),
    radial-gradient(circle at 80% 65%, rgba(31, 29, 25, 0.09) 0 1px, transparent 1.5px);
  background-size: 23px 29px, 31px 37px;
  mix-blend-mode: multiply;
}

.site-shell {
  width: min(100% - 48px, 1328px);
  margin-inline: auto;
}

.floating-nav {
  position: fixed;
  top: 24px;
  left: 50%;
  z-index: 3;
  width: min(500px, calc(100% - 32px));
  height: 64px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 8px 8px 8px 28px;
  border: 1px solid rgba(199, 183, 160, 0.9);
  border-radius: 999px;
  background: rgba(255, 249, 239, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.64),
    0 24px 80px rgba(72, 64, 55, 0.12);
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-logo {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  border: 1px solid rgba(199, 183, 160, 0.74);
  border-radius: 14px;
  background: var(--vellum);
  box-shadow: 0 8px 20px rgba(31, 29, 25, 0.1);
  object-fit: cover;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 26px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.nav-links a {
  transition: color 450ms var(--ease-out-premium), transform 450ms var(--ease-out-premium);
}

.nav-links a:hover {
  color: var(--ink);
  transform: translateY(-1px);
}

.nav-action {
  min-width: 48px;
  height: 48px;
  display: grid;
  grid-auto-flow: column;
  place-items: center;
  gap: 8px;
  padding: 0 14px;
  border-radius: 50%;
  background: var(--ink);
  transition: transform 650ms var(--ease-heavy);
}

.nav-action-label {
  display: none;
  color: var(--vellum);
  font-size: 14px;
  font-weight: 900;
}

.arrow-icon {
  width: 21px;
  height: 21px;
  display: block;
  flex: 0 0 auto;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-action .arrow-icon {
  color: var(--vellum);
}

.nav-action:hover {
  transform: scale(1.04) rotate(-4deg);
}

.hero-section {
  min-height: 100dvh;
  padding: 124px 0 70px;
}

.hero-field {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  border-radius: 44px;
  background: var(--ink);
  box-shadow: 0 42px 110px rgba(31, 29, 25, 0.18);
}

.hero-field::before {
  content: "";
  position: absolute;
  inset: 1px;
  border: 1px solid rgba(255, 249, 239, 0.08);
  border-radius: 43px;
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(590px, 48%);
  padding: 62px 0 0 48px;
}

.eyebrow {
  margin: 0 0 42px;
  color: var(--bronze);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.hero-field .eyebrow {
  color: var(--dawn);
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
.manifesto h2,
.section-heading h2,
.experience-copy h2,
.closing h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.045em;
}

h1 {
  color: var(--vellum);
  font-size: clamp(4.4rem, 8vw, 7rem);
  line-height: 0.94;
}

.hero-lede {
  width: min(100%, 540px);
  margin-top: 42px;
  color: var(--stone);
  font-size: 22px;
  font-weight: 650;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 48px;
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  min-height: 58px;
  padding: 10px 10px 10px 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 850;
  transition:
    transform 650ms var(--ease-heavy),
    background-color 650ms var(--ease-heavy),
    color 650ms var(--ease-heavy);
}

.cta.primary {
  background: var(--vellum);
  color: var(--ink);
}

.cta.secondary {
  border: 1px solid rgba(199, 183, 160, 0.7);
  background: rgba(255, 249, 239, 0.08);
  color: var(--vellum);
}

.cta .arrow-island {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--vellum);
  background: var(--bronze);
  transition: transform 650ms var(--ease-heavy);
}

.cta.secondary .arrow-island {
  color: var(--ink);
  background: var(--stone);
}

.cta:hover {
  transform: translateY(-2px);
}

.cta:active {
  transform: scale(0.98);
}

.cta:hover .arrow-island {
  transform: translate(3px, -1px) scale(1.04);
}

.hero-note {
  margin-top: 48px;
  color: var(--line);
  font-size: 15px;
  font-weight: 700;
}

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

.tarot-card {
  position: absolute;
  width: 280px;
  aspect-ratio: 2 / 3;
  padding: 8px;
  border: 1px solid rgba(199, 183, 160, 0.95);
  border-radius: 20px;
  background: var(--stone);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
}

.tarot-card img {
  width: 100%;
  height: 100%;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.tarot-card h2 {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.card-one {
  top: 74px;
  right: 320px;
  transform: rotate(-4deg);
}

.card-two {
  top: 154px;
  right: 94px;
  transform: rotate(3deg);
}

.phone-mock {
  width: 288px;
  padding: 8px;
  border: 1px solid rgba(199, 183, 160, 0.28);
  border-radius: 44px;
  background: var(--blue-ink);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.24);
}

.phone-screen {
  position: relative;
  min-height: 568px;
  padding: 52px 24px 22px;
  border-radius: 36px;
  background: var(--paper);
}

.phone-screen::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 50%;
  width: 62px;
  height: 5px;
  border-radius: 99px;
  background: rgba(31, 29, 25, 0.18);
  transform: translateX(-50%);
}

.phone-topline {
  display: flex;
  justify-content: space-between;
  color: var(--bronze);
  font-size: 12px;
  font-weight: 900;
}

.phone-count {
  margin-top: 30px;
}

.phone-count strong {
  display: block;
  color: var(--ink);
  font-size: 68px;
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.phone-count span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 850;
}

.rank-seal {
  position: absolute;
  top: 110px;
  right: 28px;
  width: 52px;
  height: 52px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--dawn);
}

.phone-screen h2 {
  margin-top: 32px;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.progress-rail {
  height: 8px;
  margin-top: 30px;
  overflow: hidden;
  border-radius: 99px;
  background: var(--line);
}

.progress-rail span {
  display: block;
  width: 67%;
  height: 100%;
  border-radius: inherit;
  background: var(--bronze);
}

.phone-card {
  margin-top: 30px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--vellum);
}

.phone-card small,
.progress-panel small,
.feature-list small {
  color: var(--bronze);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.phone-card p {
  margin-top: 16px;
  color: var(--soft-ink);
  font-weight: 750;
  line-height: 1.34;
}

.phone-screen button {
  width: 100%;
  min-height: 56px;
  margin-top: 24px;
  border: 0;
  border-radius: 28px;
  background: var(--ink);
  color: var(--vellum);
  font-weight: 900;
}

.manifesto {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 0.9fr 360px;
  gap: 64px;
  align-items: start;
  padding: 96px 0 120px;
}

.manifesto h2 {
  max-width: 620px;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 1.04;
}

.manifesto p {
  max-width: 520px;
  padding-top: 20px;
  color: var(--muted);
  font-size: 20px;
  font-weight: 650;
  line-height: 1.5;
}

.progress-panel {
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--stone);
}

.progress-panel > * {
  margin-inline: 26px;
}

.progress-panel small {
  display: block;
  margin-top: 28px;
}

.progress-panel strong {
  display: block;
  margin-top: 12px;
  color: var(--ink);
  font-size: 38px;
  letter-spacing: -0.04em;
}

.progress-panel > span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 750;
}

.progress-grid {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 8px;
  margin: 28px 26px 26px;
}

.progress-grid span {
  aspect-ratio: 1;
  border-radius: 2px;
  background: var(--ink);
}

.progress-grid span:nth-child(n + 45) {
  background: var(--stone);
}

.progress-grid span:nth-child(44) {
  background: var(--bronze);
}

.rank-path {
  padding: 100px 0 140px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 740px) minmax(280px, 1fr);
  gap: 80px;
  align-items: end;
}

.section-heading h2,
.experience-copy h2,
.closing h2 {
  font-size: clamp(3rem, 5.2vw, 5rem);
  line-height: 1.02;
}

.section-heading p {
  color: var(--muted);
  font-size: 20px;
  font-weight: 650;
  line-height: 1.48;
}

.rank-gallery {
  display: grid;
  grid-template-columns: repeat(5, minmax(160px, 1fr));
  gap: 26px;
  align-items: start;
  margin-top: 92px;
}

.mini-card {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 8px 8px 22px;
  border: 1px solid var(--ink);
  border-radius: 18px;
  background: var(--stone);
  box-shadow: 0 30px 90px rgba(72, 64, 55, 0.11);
  transition: transform 700ms var(--ease-heavy);
}

.mini-card:hover {
  transform: translateY(-10px) rotate(0deg);
}

.mini-card img {
  width: 100%;
  border-radius: 11px;
  object-fit: cover;
}

.mini-card b {
  display: block;
  padding: 20px 14px 0;
  font-size: 20px;
  line-height: 1.05;
}

.tilt-left {
  transform: rotate(-2deg);
}

.tilt-right {
  transform: rotate(2deg);
}

.lift {
  margin-top: -48px;
  transform: rotate(1deg);
}

.lift-low {
  margin-top: -58px;
  transform: rotate(2deg);
}

.rank-tease {
  display: grid;
  grid-template-columns: minmax(220px, 0.55fr) minmax(320px, 0.95fr);
  gap: 64px;
  align-items: start;
  max-width: 940px;
  margin: 96px auto 0;
  padding-top: 42px;
  border-top: 1px solid rgba(199, 183, 160, 0.72);
}

.rank-tease-kicker {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 4.8vw, 4.75rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.rank-tease p:not(.rank-tease-kicker) {
  color: var(--muted);
  font-size: 20px;
  font-weight: 650;
  line-height: 1.5;
}

.experience {
  padding: 90px 0 120px;
}

.experience-field {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  border-radius: 42px;
  background: var(--stone);
}

.experience-copy {
  width: min(560px, 48%);
  padding: 70px 0 0 48px;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 56px;
  width: calc(100% - 430px);
  margin: 86px 0 0 48px;
  padding-bottom: 96px;
}

.feature-list article {
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

.feature-list h3 {
  margin-top: 24px;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.feature-list p {
  margin-top: 20px;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.45;
}

.experience-phone {
  position: absolute;
  right: 72px;
  top: 74px;
}

.closing {
  display: grid;
  grid-template-columns: minmax(0, 760px) auto;
  gap: 80px;
  align-items: center;
  padding: 80px 0 48px;
}

.closing p {
  max-width: 570px;
  margin-top: 30px;
  color: var(--muted);
  font-size: 20px;
  font-weight: 650;
  line-height: 1.45;
}

.closing .cta.primary {
  background: var(--ink);
  color: var(--vellum);
}

.notify-form {
  width: min(100%, 470px);
  justify-self: end;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--vellum);
  box-shadow: 0 24px 70px rgba(72, 64, 55, 0.12);
}

.notify-form label {
  display: block;
  padding: 20px 22px 14px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.08;
}

.notify-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  border: 1px solid rgba(199, 183, 160, 0.9);
  border-radius: 999px;
  background: var(--paper);
}

.notify-row input {
  min-width: 0;
  min-height: 58px;
  border: 0;
  padding: 0 0 0 22px;
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 16px;
  font-weight: 750;
  outline: none;
}

.notify-row input::placeholder {
  color: var(--muted);
}

.notify-row input:focus-visible {
  box-shadow: inset 0 0 0 2px var(--bronze);
}

.notify-row button {
  min-height: 58px;
  border: 0;
  border-radius: 999px;
  padding: 0 22px;
  background: var(--ink);
  color: var(--vellum);
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 650ms var(--ease-heavy), background-color 650ms var(--ease-heavy);
}

.notify-row button:hover {
  transform: translateY(-1px);
  background: var(--bronze);
}

.notify-row button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.notify-note {
  margin: 14px 22px 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.38;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 0 0 48px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.site-footer a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--line);
  text-underline-offset: 4px;
}

.policy-page {
  min-height: 100dvh;
}

.policy-shell {
  width: min(100% - 48px, 820px);
  margin: 0 auto;
  padding: 96px 0 112px;
}

.policy-back {
  display: inline-block;
  margin-bottom: 72px;
  color: var(--bronze);
  font-size: 14px;
  font-weight: 900;
}

.policy-shell h1 {
  max-width: 720px;
  color: var(--ink);
}

.policy-updated {
  margin-top: 22px;
  color: var(--bronze);
  font-size: 15px;
  font-weight: 850;
}

.policy-section {
  margin-top: 48px;
  padding-top: 34px;
  border-top: 1px solid rgba(199, 183, 160, 0.8);
}

.policy-section h2 {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.policy-section p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 650;
  line-height: 1.62;
}

.policy-section a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--line);
  text-underline-offset: 4px;
}

.reveal {
  opacity: 0;
  transform: translateY(42px);
  transition:
    opacity 900ms var(--ease-out-premium),
    transform 900ms var(--ease-out-premium);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1024px) {
  .hero-field {
    min-height: 900px;
  }

  .hero-copy {
    width: auto;
    padding-right: 48px;
  }

  .hero-art {
    top: 470px;
  }

  .card-one {
    right: 42%;
  }

  .card-two {
    right: 8%;
  }

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

  .section-heading,
  .closing {
    grid-template-columns: 1fr;
  }

  .notify-form {
    justify-self: start;
  }

  .rank-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lift,
  .lift-low {
    margin-top: 0;
  }

  .experience-field {
    min-height: 980px;
  }

  .experience-copy,
  .feature-list {
    width: auto;
    margin-right: 48px;
  }

  .feature-list {
    grid-template-columns: 1fr;
    max-width: 560px;
  }

  .experience-phone {
    top: auto;
    bottom: 48px;
  }
}

@media (max-width: 768px) {
  .site-shell {
    width: min(100% - 32px, 1328px);
  }

  .floating-nav {
    grid-template-columns: 1fr auto;
    gap: 14px;
    padding-left: 20px;
  }

  .nav-action {
    border-radius: 999px;
  }

  .nav-action-label {
    display: inline;
  }

  .nav-links {
    display: none;
  }

  .hero-section {
    padding-top: 104px;
  }

  .hero-field {
    display: flex;
    flex-direction: column;
    min-height: auto;
    padding-bottom: 28px;
    border-radius: 30px;
  }

  .hero-copy {
    padding: 42px 24px 0;
    width: auto;
  }

  h1 {
    font-size: clamp(3.7rem, 15vw, 5rem);
  }

  .hero-lede {
    font-size: 18px;
  }

  .cta {
    width: 100%;
    justify-content: space-between;
  }

  .hero-art {
    position: relative;
    inset: auto;
    height: 420px;
    margin-top: 26px;
  }

  .tarot-card {
    width: 208px;
  }

  .card-one {
    top: 0;
    left: 22px;
    right: auto;
  }

  .card-two {
    top: 96px;
    right: 18px;
    width: 198px;
  }

  .manifesto,
  .rank-path,
  .experience,
  .closing {
    padding-block: 72px;
  }

  .manifesto h2,
  .section-heading h2,
  .experience-copy h2,
  .closing h2 {
    font-size: clamp(2.6rem, 12vw, 4rem);
  }

  .rank-gallery {
    grid-template-columns: 1fr;
  }

  .rank-tease {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 72px;
  }

  .notify-form {
    width: 100%;
    border-radius: 26px;
  }

  .notify-row {
    grid-template-columns: 1fr;
    border-radius: 22px;
    padding: 8px;
  }

  .notify-row input {
    padding-inline: 16px;
  }

  .notify-row button {
    width: 100%;
  }

  .mini-card,
  .tilt-left,
  .tilt-right {
    min-height: auto;
    transform: none;
  }

  .site-footer {
    flex-direction: column;
  }

  .experience-field {
    min-height: 1260px;
    border-radius: 30px;
  }

  .experience-copy {
    width: auto;
    padding: 44px 24px 0;
    margin: 0;
  }

  .feature-list {
    margin: 58px 24px 0;
  }

  .experience-phone {
    right: 50%;
    transform: translateX(50%);
  }
}
