@charset "UTF-8";

:root {
  color-scheme: light;
  --ink: #171725;
  --muted: #666574;
  --orange: #be5417;
  --coral: #bd344e;
  --purple: #5d38d6;
  --mint: #56e0b6;
  --cream: #fffaf5;
  --soft: #fff4e8;
  --line: #eae5df;
  --shadow: 0 24px 60px rgb(35 25 51 / 10%);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
[id] {
  scroll-margin-top: 94px;
}
body {
  margin: 0;
  color: var(--ink);
  background: white;
  font-family:
    -apple-system, BlinkMacSystemFont, "SF Pro Display", "PingFang SC",
    "Microsoft YaHei", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
a {
  color: inherit;
  text-decoration: none;
}
img,
svg {
  display: block;
  max-width: 100%;
}
svg {
  width: 100%;
  height: 100%;
}
em {
  font-style: normal;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  letter-spacing: -0.045em;
}
h1 {
  font-size: clamp(3rem, 4.45vw, 4.65rem);
  line-height: 1.18;
  font-weight: 800;
}
h2 {
  font-size: clamp(2.2rem, 3.35vw, 3.5rem);
  line-height: 1.2;
  font-weight: 800;
}
h3 {
  font-size: 1.32rem;
  line-height: 1.35;
  font-weight: 750;
}
p {
  line-height: 1.8;
}
:focus-visible {
  outline: 3px solid var(--purple);
  outline-offset: 4px;
}
.container {
  width: min(100% - 64px, 1200px);
  margin-inline: auto;
}
.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  padding: 10px 16px;
  z-index: 100;
  background: var(--ink);
  color: white;
  border-radius: 8px;
}
.skip-link:focus {
  top: 12px;
}

.eyebrow-bar {
  min-height: 32px;
  background: #14131b;
  color: #eeeaf0;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}
.eyebrow-bar-inner {
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.eyebrow-bar span span {
  color: var(--mint);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgb(255 255 255 / 95%);
  border-bottom: 1px solid #eee9e3;
  backdrop-filter: blur(18px);
}
.nav-shell {
  height: 78px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.7rem;
  line-height: 1;
  font-weight: 850;
  letter-spacing: -0.08em;
  white-space: nowrap;
}
.brand img {
  border-radius: 12px;
}
.brand-dot {
  color: var(--orange);
}
.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 3vw, 42px);
  margin-left: auto;
}
.desktop-nav a,
.footer-main nav a {
  color: #363541;
  font-size: 0.92rem;
  font-weight: 600;
  transition: color 0.2s ease;
}
.desktop-nav a:hover,
.footer-main nav a:hover {
  color: var(--orange);
}
.nav-cta {
  margin-left: 18px;
  display: inline-flex;
  gap: 12px;
  align-items: center;
  padding: 12px 20px;
  border-radius: 9px;
  color: white;
  background: linear-gradient(110deg, var(--orange), var(--coral));
  box-shadow: 0 8px 22px rgb(241 113 58 / 21%);
  font-size: 0.88rem;
  font-weight: 750;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.nav-cta:hover,
.button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgb(241 113 58 / 29%);
}
.mobile-nav {
  display: none;
}

.hero {
  background:
    radial-gradient(circle at 74% 40%, #fff3d9 0, transparent 33%),
    linear-gradient(130deg, #fffbf5 0%, #fff7ee 52%, #fff6ef 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  width: 640px;
  height: 640px;
  border: 1px solid rgb(248 170 109 / 17%);
  border-radius: 50%;
  right: 3%;
  top: 4%;
  box-shadow:
    0 0 0 85px rgb(248 170 109 / 3%),
    0 0 0 170px rgb(248 170 109 / 3%);
  pointer-events: none;
}
.hero-grid {
  min-height: 640px;
  display: grid;
  grid-template-columns: 51% 49%;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-copy {
  padding: 64px 0 68px;
}
.hero-kicker {
  display: inline-flex;
  gap: 11px;
  align-items: center;
  padding: 8px 14px;
  border-radius: 100px;
  background: #fff0dd;
  color: #a45a2b;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.spark {
  color: #fca63e;
  font-size: 1rem;
  line-height: 0;
}
.kicker-divider {
  height: 13px;
  width: 1px;
  background: #d3aa8a;
}
.hero h1 {
  margin: 24px 0 23px;
  max-width: 620px;
}
.hero h1 em,
.story-copy h2 em,
.evidence-section h2 em {
  color: #b65019;
}
.hero-lede {
  color: #4c4a55;
  max-width: 495px;
  font-size: 1.08rem;
  font-weight: 460;
  line-height: 1.9;
  margin-bottom: 31px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 58px;
  padding: 0 25px;
  border-radius: 11px;
  font-size: 0.98rem;
  font-weight: 750;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}
.button-primary {
  color: white;
  background: linear-gradient(110deg, #be5417, #bd344e);
  box-shadow: 0 8px 20px rgb(241 113 58 / 18%);
}
.button-outline {
  color: #98401b;
  border: 1.5px solid #d6905d;
  background: rgb(255 255 255 / 65%);
}
.button-outline:hover {
  background: white;
  transform: translateY(-2px);
}
.button span {
  font-size: 1.2rem;
  line-height: 1;
}
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 29px;
  color: #5a5863;
  font-size: 0.79rem;
  font-weight: 550;
}
.hero-proof > span {
  white-space: nowrap;
  display: inline-flex;
  gap: 6px;
  align-items: center;
}
.proof-check {
  display: inline-grid;
  place-items: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  color: white;
  background: #52ba98;
  font-size: 0.65rem;
  font-weight: 900;
}
.hero-bottom-wave {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  height: 10px;
  background: linear-gradient(90deg, #fcb84f, #f88637, #f26d61);
}

.hero-art {
  height: 580px;
  min-width: 0;
  position: relative;
}
.art-orbit {
  position: absolute;
  border: 1px solid rgb(239 152 97 / 18%);
  border-radius: 50%;
  pointer-events: none;
}
.art-orbit-one {
  width: 500px;
  height: 500px;
  left: 24px;
  top: 37px;
}
.art-orbit-two {
  width: 390px;
  height: 390px;
  left: 78px;
  top: 92px;
}
.floating-logo {
  position: absolute;
  left: 60px;
  top: 130px;
  z-index: 4;
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border-radius: 26px;
  background: white;
  box-shadow: 0 20px 38px rgb(72 41 92 / 15%);
  transform: rotate(-12deg);
  animation: float 5s ease-in-out infinite;
}
.floating-logo img {
  border-radius: 19px;
}
.orbit-star {
  position: absolute;
  color: #f6af47;
}
.orbit-star-one {
  left: 186px;
  top: 45px;
  font-size: 27px;
}
.orbit-star-two {
  right: 20px;
  bottom: 72px;
  color: #f17f5d;
  font-size: 18px;
}
.phone {
  position: absolute;
  right: 94px;
  top: 33px;
  z-index: 2;
  width: 250px;
  height: 520px;
  padding: 8px;
  border: 5px solid #292335;
  border-radius: 43px;
  background: #17131d;
  box-shadow:
    24px 32px 40px rgb(46 28 37 / 20%),
    0 0 0 2px #7e7282;
  transform: rotate(8deg);
}
.phone-island {
  position: absolute;
  z-index: 5;
  width: 72px;
  height: 18px;
  border-radius: 0 0 12px 12px;
  background: #201d28;
  top: 7px;
  left: calc(50% - 36px);
}
.phone-screen {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 31px;
  background: #fffaf5;
  padding: 12px 12px 0;
}
.phone-status {
  display: flex;
  justify-content: space-between;
  margin-bottom: 23px;
  padding: 0 5px;
  color: #3d3544;
  font-size: 8px;
  font-weight: 800;
}
.phone-greeting {
  color: #8c8390;
  font-size: 9px;
  font-weight: 700;
}
.phone-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 5px 0 12px;
  font-size: 19px;
  font-weight: 850;
  letter-spacing: -0.07em;
}
.phone-title span {
  color: #f48d4b;
  font-size: 15px;
}
.featured-poster {
  position: relative;
  height: 230px;
  overflow: hidden;
  border-radius: 15px;
  background: #7158a5;
  box-shadow: 0 9px 20px rgb(30 20 52 / 15%);
}
.poster-art-main {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, #6051a7 0%, #e58a7e 60%, #f8ba75 100%);
}
.poster-sun {
  position: absolute;
  width: 106px;
  height: 106px;
  right: 24px;
  top: 18px;
  border-radius: 50%;
  background: #ffe8b6;
  box-shadow: 0 0 34px rgb(255 235 178 / 65%);
}
.poster-hill {
  position: absolute;
  height: 140px;
  width: 340px;
  bottom: 0;
  border-radius: 50% 50% 0 0;
}
.poster-hill-back {
  background: #6d527e;
  left: -100px;
  transform: rotate(-14deg);
  bottom: -52px;
}
.poster-hill-front {
  background: #342f58;
  left: 50px;
  transform: rotate(17deg);
  bottom: -78px;
}
.featured-overlay {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 45px 14px 15px;
  color: white;
  background: linear-gradient(transparent, rgb(25 21 45 / 90%));
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.featured-overlay small {
  letter-spacing: 0.12em;
  font-size: 7px;
  font-weight: 700;
  opacity: 0.85;
}
.featured-overlay strong {
  font-size: 15px;
  font-weight: 800;
}
.featured-overlay span {
  font-size: 8px;
  opacity: 0.9;
}
.phone-progress-label {
  display: flex;
  justify-content: space-between;
  margin: 18px 0 8px;
  font-size: 10px;
  font-weight: 800;
}
.phone-progress-label span:last-child {
  color: #e7854a;
}
.progress-track,
.story-inline-progress,
.watch-progress {
  display: block;
  height: 5px;
  border-radius: 8px;
  background: #eee4da;
  overflow: hidden;
}
.progress-track span,
.story-inline-progress i,
.watch-progress span {
  display: block;
  height: 100%;
  width: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #f5ae48, #f4785b);
}
.phone-cards {
  display: flex;
  gap: 7px;
  margin-top: 18px;
}
.mini-poster {
  width: 61px;
  height: 82px;
  border-radius: 9px;
  background: linear-gradient(150deg, #463676, #d17078 65%, #f9c694);
}
.mini-poster-two {
  background: linear-gradient(155deg, #203a55, #67b4ab 61%, #f4d698);
}
.mini-poster-three {
  background: linear-gradient(155deg, #673b66, #bd6d8c 57%, #ffd79f);
}
.phone-bottom {
  height: 49px;
  margin: 19px -12px 0;
  border-top: 1px solid #eee8e3;
  display: flex;
  justify-content: space-around;
  color: #9b9199;
  font-size: 16px;
  text-align: center;
}
.phone-bottom span {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.phone-bottom span:first-child {
  color: var(--orange);
}
.phone-bottom small {
  font-size: 7px;
  font-weight: 600;
}
.float-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgb(255 255 255 / 85%);
  border-radius: 15px;
  padding: 10px 14px;
  background: rgb(255 255 255 / 94%);
  box-shadow: 0 16px 35px rgb(82 56 73 / 15%);
  white-space: nowrap;
}
.float-card strong,
.float-card small {
  display: block;
}
.float-card strong {
  font-size: 0.81rem;
}
.float-card small {
  color: #8c8491;
  font-size: 0.67rem;
  margin-top: 4px;
}
.float-icon {
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  border-radius: 10px;
  color: white;
  background: linear-gradient(145deg, #f6af4d, #f37c59);
  font-size: 20px;
  font-weight: 800;
}
.float-card-download {
  right: 0;
  top: 184px;
  transform: rotate(4deg);
}
.float-card-resume {
  left: 13px;
  bottom: 58px;
  transform: rotate(-5deg);
}
.resume-ring {
  width: 35px;
  height: 35px;
  border: 3px solid #b5e9d7;
  border-left-color: var(--mint);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #4fbe9d;
  font-size: 12px;
}
.art-caption {
  position: absolute;
  bottom: 8px;
  right: 100px;
  color: #a0989b;
  font-size: 10px;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(-12deg);
  }
  50% {
    transform: translateY(-10px) rotate(-12deg);
  }
}

.section-label {
  color: #a94c13;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.18em;
  margin-bottom: 13px;
}
.section-intro {
  max-width: 710px;
  text-align: center;
  margin: 0 auto 48px;
}
.section-intro h2 {
  margin-bottom: 15px;
}
.section-intro > p:last-child {
  color: var(--muted);
  font-size: 1.02rem;
  margin-bottom: 0;
}
.benefits {
  padding: 105px 0 115px;
}
.compact-intro {
  margin-bottom: 43px;
}
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.benefit-card {
  padding: 28px 24px 26px;
  min-height: 258px;
  border: 1px solid #f0ebe8;
  border-radius: 18px;
  background: white;
  box-shadow: 0 10px 28px rgb(40 35 62 / 4%);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}
.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.benefit-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  padding: 10px;
  border-radius: 15px;
  margin-bottom: 25px;
}
.icon-peach {
  background: #fff0e4;
  color: #ee8a42;
}
.icon-lilac {
  background: #f0ecff;
  color: #765cce;
}
.icon-mint {
  background: #e8faf3;
  color: #45b98e;
}
.icon-yellow {
  background: #fff6dc;
  color: #e9a728;
}
.benefit-card h3 {
  margin-bottom: 10px;
  font-size: 1.17rem;
}
.benefit-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 0;
}

.story-section {
  padding: 105px 0;
  background: #fff9f3;
  overflow: hidden;
}
.story-grid {
  display: grid;
  grid-template-columns: 52% 48%;
  align-items: center;
  gap: 20px;
}
.story-art {
  min-height: 470px;
  position: relative;
  display: flex;
  align-items: center;
}
.story-art-halo {
  width: 445px;
  height: 445px;
  border-radius: 50%;
  position: absolute;
  background: linear-gradient(145deg, #ffe6ca, #f9eee9);
  left: 2%;
  top: 0;
}
.story-window {
  width: min(490px, 95%);
  position: relative;
  z-index: 1;
  border-radius: 20px;
  background: white;
  box-shadow: 0 27px 50px rgb(102 67 76 / 13%);
  transform: rotate(-4deg);
  overflow: hidden;
}
.story-window-top {
  height: 49px;
  border-bottom: 1px solid #f1eeed;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  color: #5d5662;
  font-size: 0.74rem;
  font-weight: 750;
}
.window-dots {
  display: flex;
  gap: 4px;
}
.window-dots i {
  width: 7px;
  height: 7px;
  background: #f5c9ad;
  border-radius: 50%;
}
.window-dots i:nth-child(2) {
  background: #f7daaa;
}
.window-dots i:nth-child(3) {
  background: #bae7d5;
}
.story-window-body {
  padding: 25px 27px 22px;
}
.story-window-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 19px;
}
.story-window-heading span {
  font-size: 1.08rem;
  font-weight: 800;
}
.story-window-heading strong {
  color: #ee8c4d;
  font-size: 0.74rem;
}
.story-row {
  display: grid;
  grid-template-columns: 54px 1fr 28px;
  gap: 15px;
  align-items: center;
  margin-bottom: 10px;
  padding: 8px;
  border: 1px solid #f0ebe9;
  border-radius: 11px;
}
.story-thumb {
  height: 55px;
  border-radius: 7px;
  background: linear-gradient(150deg, #4a4277, #db857e, #f5ce9a);
}
.thumb-b {
  background: linear-gradient(150deg, #4a4556, #ce8d8b, #efcdb6);
}
.thumb-c {
  background: linear-gradient(150deg, #48448b, #8377c4, #efb2a5);
}
.story-row strong,
.story-row small {
  display: block;
}
.story-row strong {
  font-size: 0.78rem;
  margin-bottom: 4px;
}
.story-row small {
  font-size: 0.64rem;
  color: #948d95;
}
.story-inline-progress {
  height: 3px;
  margin-top: 8px;
}
.story-row:nth-child(3) .story-inline-progress i {
  width: 36%;
}
.story-row:nth-child(4) .story-inline-progress i {
  width: 0;
}
.story-play {
  color: #f1854e;
  font-size: 12px;
}
.story-badge {
  position: absolute;
  z-index: 3;
  right: 24px;
  bottom: 31px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 17px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 13px 32px rgb(70 46 73 / 14%);
  transform: rotate(5deg);
  font-size: 0.8rem;
}
.story-badge span {
  color: white;
  background: #54bf96;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
}
.story-copy {
  max-width: 510px;
  padding-left: 20px;
}
.story-copy h2 {
  margin-bottom: 22px;
}
.story-copy > p:not(.section-label) {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
}
.story-points {
  margin-top: 30px;
  border-top: 1px solid #e9ded6;
}
.story-points > div {
  display: grid;
  grid-template-columns: 34px 1fr;
  column-gap: 13px;
  padding: 16px 0;
  border-bottom: 1px solid #e9ded6;
}
.story-points span {
  grid-row: span 2;
  color: #a94c13;
  font-size: 0.85rem;
  font-weight: 800;
}
.story-points strong {
  font-size: 0.94rem;
}
.story-points small {
  color: var(--muted);
  font-size: 0.78rem;
  margin-top: 4px;
}

.formats-section {
  padding: 105px 0 90px;
}
.format-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.format-card {
  min-height: 305px;
  overflow: hidden;
  border-radius: 20px;
  position: relative;
  display: flex;
  justify-content: space-between;
  background: #f8f1ec;
}
.format-card-wide {
  grid-column: span 2;
  min-height: 330px;
  background: linear-gradient(105deg, #f9eaf8, #f7f1fa 57%, #f9f0e7);
}
.format-card-dark {
  color: white;
  background: #201b35;
}
.format-card-mp4 {
  background: #eaf9f3;
}
.format-copy {
  position: relative;
  z-index: 2;
  max-width: 410px;
  padding: 44px;
}
.format-card-wide .format-copy {
  max-width: 470px;
  padding: 55px;
}
.format-tag {
  color: #a94c13;
  font-size: 0.73rem;
  font-weight: 850;
  letter-spacing: 0.14em;
}
.format-card-dark .format-tag {
  color: #7ee7c3;
}
.format-card h3 {
  margin: 15px 0 14px;
  font-size: clamp(1.55rem, 2vw, 2.15rem);
  line-height: 1.35;
}
.format-card p {
  color: #625d6d;
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 0;
}
.format-card-dark p {
  color: #c4bfd1;
}
.episode-art {
  align-self: center;
  display: flex;
  gap: 10px;
  margin-right: 41px;
  transform: rotate(-9deg) translateY(27px);
}
.episode-card {
  width: 82px;
  height: 178px;
  flex: none;
  padding: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 12px;
  color: white;
  background: linear-gradient(155deg, #342963, #b16d95 55%, #f1aa85);
  box-shadow: 8px 16px 20px rgb(65 39 79 / 17%);
  font-size: 9px;
  font-weight: 800;
}
.episode-card:nth-child(2) {
  background: linear-gradient(155deg, #18324c, #719aa8 55%, #f3c18c);
  transform: translateY(-17px);
}
.episode-card:nth-child(3) {
  background: linear-gradient(155deg, #65355d, #d1778b 55%, #f2b47c);
  transform: translateY(8px);
}
.episode-card:nth-child(4) {
  background: linear-gradient(155deg, #3b4d6b, #7da4ad 55%, #f0c49a);
  transform: translateY(-11px);
}
.episode-card i {
  width: 29px;
  height: 29px;
  align-self: center;
  border: 1px solid rgb(255 255 255 / 80%);
  border-radius: 50%;
  background: rgb(255 255 255 / 20%);
}
.episode-card strong {
  font-size: 10px;
}
.offline-art {
  flex: 1;
  min-width: 140px;
  position: relative;
  display: grid;
  place-items: center;
}
.offline-glow {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, #5b519a, transparent 70%);
}
.offline-play {
  z-index: 1;
  display: grid;
  place-items: center;
  width: 85px;
  height: 85px;
  border: 1px solid rgb(255 255 255 / 44%);
  border-radius: 50%;
  box-shadow:
    0 0 0 13px rgb(255 255 255 / 8%),
    0 0 0 34px rgb(255 255 255 / 4%);
  color: #81ebc3;
  font-size: 24px;
}
.offline-caption {
  position: absolute;
  bottom: 39px;
  color: #9eeacb;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.17em;
}
.file-art {
  flex: 1;
  min-width: 145px;
  position: relative;
  display: grid;
  place-items: center;
}
.file-fold {
  position: absolute;
  color: #b3e8d4;
  font-size: 143px;
  bottom: 5px;
}
.file-sheet {
  position: relative;
  z-index: 1;
  width: 115px;
  height: 143px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: #2a6959;
  background: white;
  border-radius: 11px;
  box-shadow: 0 14px 29px rgb(41 102 72 / 16%);
  transform: rotate(9deg);
}
.file-sheet span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: white;
  background: #55bd95;
  border-radius: 50%;
  font-size: 14px;
}
.file-sheet strong {
  font-size: 0.76rem;
}
.file-sheet small {
  font-size: 0.64rem;
  color: #89a99b;
}
.source-note {
  text-align: center;
  margin: 22px auto 0;
  color: #625d68;
  font-size: 0.8rem;
}

.steps-section {
  padding: 105px 0 112px;
  background: #fff9f4;
}
.step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.step-card {
  padding: 24px 27px 33px;
  border: 1px solid #f0e6de;
  border-radius: 19px;
  background: white;
  box-shadow: 0 10px 28px rgb(83 50 59 / 5%);
}
.step-number {
  display: flex;
  justify-content: space-between;
  color: #a94c13;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}
.step-number span {
  font-size: 1.15rem;
}
.step-visual {
  height: 170px;
  margin: 9px 0 20px;
  position: relative;
  overflow: hidden;
  border-radius: 14px;
}
.step-visual-share {
  background: linear-gradient(135deg, #f5effb, #fff1e9);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.share-link {
  width: 75%;
  display: flex;
  justify-content: space-between;
  padding: 10px;
  border-radius: 9px;
  background: white;
  box-shadow: 0 7px 16px rgb(94 66 104 / 9%);
  color: #877c89;
  font-size: 0.65rem;
}
.share-link span {
  color: #ed8550;
}
.share-target {
  width: 65%;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px;
  border-radius: 10px;
  background: white;
  box-shadow: 0 10px 19px rgb(94 66 104 / 10%);
  font-size: 0.76rem;
  font-weight: 800;
}
.share-target img {
  border-radius: 9px;
}
.share-target b {
  margin-left: auto;
  color: #4cb692;
}
.step-visual-queue {
  background: #eee9fa;
  padding: 24px 45px;
}
.queue-title {
  display: flex;
  justify-content: space-between;
  font-size: 0.83rem;
  font-weight: 850;
  margin-bottom: 13px;
}
.queue-title span {
  color: #8d6ad2;
  font-size: 0.71rem;
}
.queue-row {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 8px;
  padding: 7px 10px;
  border-radius: 8px;
  background: white;
  font-size: 0.65rem;
  font-weight: 700;
}
.queue-row i {
  width: 12px;
  height: 18px;
  border-radius: 3px;
  background: linear-gradient(#6a5e9c, #de948b);
}
.queue-row b {
  margin-left: auto;
  color: #53b993;
}
.step-visual-watch {
  background: #26203d;
  padding: 12px 36px;
}
.watch-scene {
  height: 110px;
  position: relative;
  border-radius: 7px;
  overflow: hidden;
  background: linear-gradient(155deg, #2c3059, #765984 65%, #df948b);
}
.watch-moon {
  position: absolute;
  right: 43px;
  top: 10px;
  width: 49px;
  height: 49px;
  border-radius: 50%;
  background: #ffe0ab;
}
.watch-play {
  position: absolute;
  left: calc(50% - 19px);
  top: calc(50% - 19px);
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: rgb(255 255 255 / 30%);
  font-size: 11px;
}
.watch-progress {
  margin-top: 10px;
  height: 4px;
  background: #777080;
}
.watch-progress span {
  width: 46%;
}
.watch-caption {
  margin-top: 7px;
  color: #eee6f1;
  font-size: 0.63rem;
}
.step-card h3 {
  margin-bottom: 10px;
  font-size: 1.16rem;
}
.step-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.89rem;
}

.evidence-section {
  padding: 95px 0;
  color: white;
  background: #211d33;
  position: relative;
  overflow: hidden;
}
.evidence-section .section-label {
  color: #ffb976;
}
.evidence-section h2 em {
  color: #ffb976;
}
.evidence-section::before {
  content: "";
  position: absolute;
  right: -150px;
  top: -260px;
  width: 590px;
  height: 590px;
  border: 1px solid rgb(255 255 255 / 8%);
  border-radius: 50%;
  box-shadow:
    0 0 0 90px rgb(255 255 255 / 3%),
    0 0 0 180px rgb(255 255 255 / 2%);
}
.evidence-grid {
  display: grid;
  grid-template-columns: 46% 54%;
  gap: 30px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.evidence-section h2 {
  margin-bottom: 18px;
}
.evidence-section > .container > div:first-child > p:last-child {
  max-width: 425px;
  color: #c7c2d4;
  font-size: 0.96rem;
}
.evidence-panel {
  max-width: 520px;
  padding: 30px 34px;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 20px;
  background: rgb(255 255 255 / 7%);
  box-shadow: 0 24px 52px rgb(0 0 0 / 12%);
  backdrop-filter: blur(8px);
}
.evidence-stat {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-bottom: 23px;
  border-bottom: 1px solid rgb(255 255 255 / 13%);
}
.evidence-stat strong {
  color: #ffd28b;
  font-size: 4.3rem;
  line-height: 1;
  letter-spacing: -0.08em;
}
.evidence-stat small {
  color: white;
  font-size: 1.8rem;
}
.evidence-stat span {
  font-size: 0.91rem;
  line-height: 1.5;
}
.evidence-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 22px 0;
  font-size: 0.88rem;
}
.evidence-list span {
  display: flex;
  align-items: center;
  gap: 11px;
}
.evidence-list b {
  display: grid;
  place-items: center;
  width: 21px;
  height: 21px;
  flex: none;
  color: #0c4c39;
  background: #82e6bd;
  border-radius: 50%;
  font-size: 0.73rem;
}
.evidence-panel p {
  margin: 0;
  padding-top: 17px;
  border-top: 1px solid rgb(255 255 255 / 13%);
  color: #aca6bd;
  font-size: 0.76rem;
  line-height: 1.7;
}

.faq-section {
  padding: 108px 0 110px;
}
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 32fr) minmax(0, 68fr);
  gap: 50px;
}
.faq-grid > div:first-child > p:last-child {
  color: var(--muted);
  font-size: 0.95rem;
}
.faq-list {
  border-top: 1px solid #e7e4e4;
}
.faq-list details {
  border-bottom: 1px solid #e7e4e4;
}
.faq-list summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 21px 2px;
  font-size: 0.98rem;
  font-weight: 750;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary span {
  color: #e98245;
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 400;
  transition: transform 0.2s ease;
}
.faq-list details[open] summary span {
  transform: rotate(45deg);
}
.faq-list details p {
  margin: -3px 44px 21px 2px;
  color: var(--muted);
  font-size: 0.88rem;
}

.closing-section {
  padding: 0 0 96px;
}
.closing-card {
  min-height: 248px;
  padding: 48px 65px;
  border-radius: 22px;
  background: linear-gradient(115deg, #7a4bd3, #553cbe 48%, #363087);
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  position: relative;
  overflow: hidden;
}
.closing-card::after {
  content: "";
  width: 410px;
  height: 410px;
  position: absolute;
  right: -110px;
  top: -240px;
  border-radius: 50%;
  border: 1px solid rgb(255 255 255 / 15%);
  box-shadow:
    0 0 0 70px rgb(255 255 255 / 4%),
    0 0 0 140px rgb(255 255 255 / 3%);
}
.closing-card > * {
  position: relative;
  z-index: 1;
}
.closing-stars {
  position: absolute;
  top: 26px;
  right: 44px;
  color: #b7f6d9;
  font-size: 1.3rem;
}
.closing-stars span {
  color: #ffe4a2;
}
.closing-card .section-label {
  color: #bcebd5;
}
.closing-card h2 {
  margin: 0 0 8px;
  font-size: clamp(2rem, 3vw, 3rem);
}
.closing-card p:last-child {
  margin: 0;
  color: #e4dff8;
}
.button-light {
  flex: none;
  color: #5342a9;
  background: white;
  box-shadow: 0 12px 24px rgb(18 13 61 / 12%);
}
.button-light:hover {
  transform: translateY(-2px);
  background: #fffaf3;
}

.site-footer {
  background: #f9f8fa;
  border-top: 1px solid #ede9ed;
}
.footer-main {
  padding: 62px 0 50px;
  display: flex;
  justify-content: space-between;
  gap: 35px;
}
.footer-brand p {
  margin: 18px 0 0;
  color: #625d68;
  font-size: 0.87rem;
}
.footer-main nav {
  display: flex;
  gap: 115px;
}
.footer-main nav div {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-main nav strong {
  margin-bottom: 8px;
  font-size: 0.91rem;
}
.footer-main nav a {
  font-size: 0.86rem;
  font-weight: 500;
  color: #5d5963;
}
.footer-bottom {
  min-height: 58px;
  border-top: 1px solid #e9e5e9;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: #625d68;
  font-size: 0.75rem;
}
.not-found {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 35px;
  background: var(--cream);
}
.not-found img {
  border-radius: 18px;
  margin-bottom: 28px;
}
.not-found h1 {
  margin-bottom: 10px;
}
.not-found > p:not(.section-label) {
  color: var(--muted);
}
.not-found .button {
  margin-top: 15px;
}

@media (max-width: 1120px) {
  .container {
    width: min(100% - 48px, 1000px);
  }
  .desktop-nav {
    gap: 20px;
  }
  .nav-cta {
    margin-left: 0;
  }
  .hero-grid {
    grid-template-columns: 50% 50%;
  }
  .hero-art {
    transform: scale(0.88);
    transform-origin: center right;
  }
  .hero h1 {
    font-size: clamp(2.8rem, 4.3vw, 3.8rem);
  }
  .benefit-card {
    padding: 25px 20px;
  }
  .format-copy {
    padding: 35px;
  }
  .format-card-wide .format-copy {
    padding: 45px;
  }
}

@media (max-width: 850px) {
  .eyebrow-bar-inner span:last-child {
    display: none;
  }
  .desktop-nav,
  .nav-cta {
    display: none;
  }
  .nav-shell {
    height: 68px;
    justify-content: space-between;
  }
  .mobile-nav {
    display: block;
    position: relative;
    margin-left: auto;
  }
  .mobile-nav summary {
    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    cursor: pointer;
  }
  .mobile-nav summary::-webkit-details-marker {
    display: none;
  }
  .mobile-nav summary span {
    display: block;
    height: 2px;
    width: 23px;
    background: #282336;
    border-radius: 5px;
  }
  .mobile-nav nav {
    position: absolute;
    top: 53px;
    right: 0;
    width: 220px;
    display: flex;
    flex-direction: column;
    padding: 12px;
    border-radius: 12px;
    background: white;
    box-shadow: 0 15px 36px rgb(31 27 42 / 15%);
    border: 1px solid var(--line);
  }
  .mobile-nav nav a {
    padding: 11px 10px;
    border-radius: 7px;
    font-size: 0.91rem;
    font-weight: 600;
  }
  .mobile-nav nav a:hover {
    background: #fff3e9;
  }
  .hero-grid {
    min-height: 0;
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-copy {
    min-width: 0;
    padding: 67px 0 25px;
    text-align: center;
  }
  .hero h1,
  .hero-lede {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions,
  .hero-proof {
    justify-content: center;
  }
  .hero-art {
    min-width: 0;
    transform: none;
    margin: 0 auto;
    width: min(100%, 555px);
  }
  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .story-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .story-art {
    order: 2;
    min-width: 0;
    width: min(100%, 590px);
    margin: 20px auto 0;
  }
  .story-copy {
    order: 1;
    min-width: 0;
    padding: 0;
    max-width: 630px;
  }
  .step-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: auto;
  }
  .step-visual {
    height: 190px;
  }
  .step-card {
    padding: 24px 28px 30px;
  }
  .evidence-grid {
    grid-template-columns: 1fr;
  }
  .evidence-panel {
    max-width: none;
  }
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .footer-main nav {
    gap: 50px;
  }
}

@media (max-width: 600px) {
  .container {
    width: min(100% - 36px, 500px);
  }
  .eyebrow-bar {
    font-size: 0.64rem;
  }
  .nav-shell {
    height: 64px;
  }
  .brand {
    font-size: 1.5rem;
  }
  .brand img {
    width: 37px;
    height: 37px;
  }
  .hero-copy {
    padding: 52px 0 17px;
  }
  .hero-kicker {
    font-size: 0.57rem;
    gap: 7px;
    padding: 7px 10px;
  }
  .hero h1 {
    font-size: clamp(2.45rem, 10vw, 3.65rem);
    line-height: 1.22;
    margin: 22px 0 18px;
  }
  .hero-lede {
    font-size: 0.96rem;
    line-height: 1.8;
    margin-bottom: 25px;
  }
  .hero-actions {
    gap: 9px;
  }
  .button {
    min-height: 51px;
    gap: 9px;
    padding: 0 17px;
    font-size: 0.86rem;
  }
  .hero-proof {
    gap: 10px 15px;
    font-size: 0.71rem;
    margin-top: 23px;
  }
  .hero-art {
    height: 460px;
    width: 360px;
    max-width: 100%;
    transform: scale(0.78);
    transform-origin: top center;
    margin-bottom: -93px;
  }
  .art-orbit-one {
    left: -65px;
  }
  .art-orbit-two {
    left: -10px;
  }
  .phone {
    right: 61px;
  }
  .floating-logo {
    left: 5px;
  }
  .float-card-download {
    right: -52px;
  }
  .float-card-resume {
    left: -26px;
  }
  .art-caption {
    right: 53px;
  }
  .benefits,
  .formats-section,
  .steps-section,
  .faq-section {
    padding: 76px 0;
  }
  .section-intro {
    margin-bottom: 30px;
  }
  .section-label {
    font-size: 0.69rem;
  }
  .section-intro h2,
  .story-copy h2,
  .evidence-section h2,
  .faq-section h2 {
    font-size: clamp(2rem, 8vw, 2.7rem);
  }
  .section-intro > p:last-child {
    font-size: 0.9rem;
  }
  .benefit-grid {
    grid-template-columns: 1fr;
    gap: 13px;
  }
  .benefit-card {
    min-height: 0;
    padding: 22px;
    display: grid;
    grid-template-columns: 55px 1fr;
    column-gap: 15px;
  }
  .benefit-icon {
    grid-row: span 2;
    width: 52px;
    height: 52px;
    margin: 0;
  }
  .benefit-card h3 {
    margin: 0 0 5px;
    align-self: end;
    font-size: 1.08rem;
  }
  .benefit-card p {
    font-size: 0.81rem;
    line-height: 1.65;
  }
  .story-section {
    padding: 75px 0 50px;
  }
  .story-art {
    min-height: 360px;
    transform: scale(0.81);
    transform-origin: center top;
    margin-bottom: -54px;
  }
  .story-art-halo {
    width: 350px;
    height: 350px;
  }
  .story-window {
    min-width: 0;
    width: min(395px, 100%);
  }
  .story-badge {
    right: -15px;
  }
  .story-copy > p:not(.section-label) {
    font-size: 0.9rem;
  }
  .format-grid {
    grid-template-columns: 1fr;
    gap: 13px;
  }
  .format-card-wide {
    grid-column: span 1;
  }
  .format-card {
    min-height: 350px;
    flex-direction: column;
  }
  .format-copy,
  .format-card-wide .format-copy {
    padding: 29px;
  }
  .format-card h3 {
    font-size: 1.48rem;
    margin: 10px 0;
  }
  .format-card p {
    font-size: 0.83rem;
  }
  .format-card-wide {
    min-height: 375px;
  }
  .episode-art {
    align-self: flex-end;
    margin-right: 28px;
    margin-top: -3px;
    transform: rotate(-8deg) translateY(42px) scale(0.85);
    transform-origin: top right;
  }
  .format-card-dark,
  .format-card-mp4 {
    min-height: 330px;
  }
  .offline-art {
    position: absolute;
    right: 20px;
    bottom: 20px;
    height: 160px;
  }
  .file-art {
    position: absolute;
    right: 20px;
    bottom: 10px;
    height: 150px;
  }
  .source-note {
    font-size: 0.73rem;
    line-height: 1.7;
  }
  .step-card {
    padding: 20px 21px 28px;
  }
  .step-card h3 {
    font-size: 1.09rem;
  }
  .step-card p {
    font-size: 0.83rem;
  }
  .step-visual {
    height: 172px;
  }
  .step-visual-queue {
    padding: 20px 38px;
  }
  .evidence-section {
    padding: 77px 0;
  }
  .evidence-section > .container > div:first-child > p:last-child {
    font-size: 0.86rem;
  }
  .evidence-panel {
    padding: 24px;
  }
  .evidence-stat strong {
    font-size: 3.45rem;
  }
  .evidence-stat small {
    font-size: 1.4rem;
  }
  .evidence-stat span {
    font-size: 0.78rem;
  }
  .evidence-list {
    font-size: 0.77rem;
  }
  .evidence-panel p {
    font-size: 0.69rem;
  }
  .faq-section {
    padding-bottom: 83px;
  }
  .faq-list summary {
    font-size: 0.86rem;
    padding: 19px 0;
  }
  .faq-list details p {
    margin-right: 18px;
    font-size: 0.8rem;
  }
  .closing-section {
    padding-bottom: 58px;
  }
  .closing-card {
    padding: 36px 26px;
    min-height: 260px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
  }
  .closing-card h2 {
    font-size: 2rem;
  }
  .closing-card p:last-child {
    font-size: 0.85rem;
  }
  .closing-stars {
    top: 18px;
    right: 20px;
  }
  .footer-main {
    padding: 45px 0 32px;
    flex-direction: column;
  }
  .footer-main nav {
    gap: 62px;
  }
  .footer-main nav a {
    font-size: 0.79rem;
  }
  .footer-bottom {
    padding: 17px 0;
    align-items: flex-start;
    flex-direction: column;
    font-size: 0.68rem;
  }
}

@media (max-width: 360px) {
  .hero-art {
    transform: scale(0.69);
    margin-bottom: -132px;
  }
  .hero-proof {
    gap: 9px;
  }
  .hero-proof > span {
    font-size: 0.65rem;
  }
  .story-art {
    transform: scale(0.7);
    margin-bottom: -95px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
