:root {
  --paper: #f7f5f2;
  --surface: #071a17;
  --ink: #0e231f;
  --orange: #f05223;
  --white-card: rgba(255, 255, 255, 0.75);
  --line: rgba(0, 0, 0, 0.1);
  --muted: rgba(14, 35, 31, 0.55);
  --glow: rgba(240, 82, 35, 0.05);
  --cream: #ebe3d4;
  --green: #91ad95;
  --blue: #a9bdc4;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 76% 14%, var(--glow), transparent 28rem),
    linear-gradient(180deg, var(--paper) 0%, #f3efe7 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
  text-rendering: geometricPrecision;
}

body.has-open-kit,
body.is-dragging-card {
  overflow: hidden;
}

body::selection {
  color: var(--paper);
  background: var(--orange);
}

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

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

button {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  padding: 18px clamp(20px, 4.8vw, 72px);
  background: rgba(7, 26, 23, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
  transition: height 220ms ease, background 220ms ease;
}

.site-header.is-scrolled {
  height: 68px;
  background: rgba(7, 26, 23, 0.96);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
}

.brand img,
.footer-brand img {
  width: clamp(160px, 12vw, 214px);
  height: auto;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 17px;
  height: 1px;
  margin: 4px auto;
  background: currentColor;
  transform-origin: center;
  transition: transform 220ms ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-5px) rotate(-45deg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 34px);
}

.site-nav a {
  color: rgba(247, 245, 242, 0.74);
  font-size: 0.78rem;
  font-weight: 760;
  transition: color 180ms ease;
}

.site-nav a:hover {
  color: var(--paper);
}

.site-nav .nav-cta {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--surface);
  background: var(--orange);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(rgba(14, 35, 31, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 35, 31, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 68% 44%, #000 0%, transparent 62%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 72% 38%, rgba(240, 82, 35, 0.12), transparent 24rem),
    linear-gradient(90deg, rgba(247, 245, 242, 0.98) 0%, rgba(247, 245, 242, 0.92) 42%, rgba(247, 245, 242, 0.46) 100%);
}

.hero-inner {
  position: relative;
  z-index: 4;
  display: grid;
  align-content: center;
  width: min(100%, 1460px);
  min-height: 100svh;
  margin: 0 auto;
  padding: 128px clamp(20px, 4.8vw, 72px) 64px;
  pointer-events: none;
}

.hero-inner a,
.hero-inner button {
  pointer-events: auto;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--orange);
  font-size: clamp(0.8rem, 1vw, 0.94rem);
  font-weight: 840;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  margin-bottom: 0;
  color: var(--ink);
  font-weight: 840;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-size: clamp(4.1rem, 6.5vw, 8rem);
  line-height: 0.88;
}

h2 {
  max-width: 980px;
  font-size: clamp(2.7rem, 5.6vw, 6.6rem);
  line-height: 0.93;
}

h3 {
  font-size: clamp(1.28rem, 1.85vw, 1.72rem);
  line-height: 1.02;
}

p {
  color: var(--muted);
  font-size: clamp(1rem, 1.16vw, 1.13rem);
  line-height: 1.58;
}

.hero-copy {
  max-width: 620px;
  margin: 28px 0 30px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.52vw, 1.36rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 840;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button-primary {
  color: var(--surface);
  background: var(--orange);
  box-shadow: 0 18px 54px rgba(240, 82, 35, 0.24);
}

.button-secondary {
  border-color: rgba(14, 35, 31, 0.18);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(14px);
}

.hero-trustline {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  max-width: 780px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.hero-trustline span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 720;
}

.hero-trustline strong {
  color: var(--ink);
  font-weight: 860;
}

.hero-proof-wall {
  position: absolute;
  inset: 78px 0 0;
  z-index: 2;
  pointer-events: none;
}

.hero-proof-card {
  position: absolute;
  z-index: 1;
  left: var(--x);
  top: var(--y);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 13px;
  align-items: center;
  width: clamp(230px, 21vw, 330px);
  min-height: 92px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white-card);
  box-shadow: 0 24px 70px rgba(7, 26, 23, 0.12);
  backdrop-filter: blur(18px);
  cursor: pointer;
  pointer-events: auto;
  transform: translate(-50%, -50%) rotate(var(--rotate, 0deg));
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.hero-proof-card:nth-child(1) {
  --rotate: -2deg;
}

.hero-proof-card:nth-child(2) {
  --rotate: 2deg;
}

.hero-proof-card:nth-child(3) {
  --rotate: -1deg;
}

.hero-proof-card:nth-child(4) {
  --rotate: 2.5deg;
}

.hero-proof-card:nth-child(5) {
  --rotate: -3deg;
}

.hero-proof-card:hover,
.hero-proof-card.is-dragging {
  border-color: rgba(240, 82, 35, 0.35);
  box-shadow: 0 30px 90px rgba(7, 26, 23, 0.18);
  transform: translate(-50%, -50%) rotate(0deg) translateY(-4px);
}

.hero-proof-main {
  width: clamp(270px, 24vw, 380px);
  min-height: 112px;
}

.hero-proof-soft {
  opacity: 0.62;
}

.proof-avatar,
.creator-photo,
.avatar,
.founder-portrait,
.media-kit-avatar {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 8px;
  color: var(--surface);
  font-weight: 900;
}

.proof-avatar {
  width: 62px;
  height: 62px;
}

.hero-proof-card strong {
  display: block;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.08;
}

.hero-proof-card small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 760;
}

.connection-field {
  position: absolute;
  right: 4vw;
  bottom: 10vh;
  width: min(45vw, 680px);
  height: 34vh;
  pointer-events: none;
}

.connection-field::before {
  content: "";
  position: absolute;
  inset: 8% 0 10%;
  background:
    linear-gradient(90deg, transparent, rgba(240, 82, 35, 0.22), transparent),
    radial-gradient(circle at 16% 50%, rgba(240, 82, 35, 0.24) 0 4px, transparent 5px),
    radial-gradient(circle at 50% 50%, rgba(14, 35, 31, 0.2) 0 4px, transparent 5px),
    radial-gradient(circle at 84% 50%, rgba(240, 82, 35, 0.24) 0 4px, transparent 5px);
  clip-path: polygon(0 48%, 16% 39%, 33% 48%, 50% 35%, 68% 48%, 84% 39%, 100% 48%, 100% 52%, 84% 43%, 68% 52%, 50% 39%, 33% 52%, 16% 43%, 0 52%);
  opacity: 0.7;
}

.connection-field::after {
  content: "";
  position: absolute;
  right: 4%;
  bottom: 0;
  width: 62%;
  height: 62%;
  border: 1px solid rgba(14, 35, 31, 0.08);
  border-radius: 50%;
  transform: rotate(-12deg);
}

.connection-field span {
  position: absolute;
  top: 50%;
  width: 1px;
  height: 70%;
  background: linear-gradient(180deg, rgba(14, 35, 31, 0.12), transparent);
  transform-origin: top;
}

.connection-field span:nth-child(1) {
  left: 24%;
  transform: rotate(18deg);
}

.connection-field span:nth-child(2) {
  left: 50%;
  transform: rotate(-4deg);
}

.connection-field span:nth-child(3) {
  left: 76%;
  transform: rotate(-18deg);
}

.section-pad {
  width: min(100%, 1460px);
  margin: 0 auto;
  padding: clamp(86px, 12vw, 168px) clamp(20px, 4.8vw, 72px);
}

.section-heading {
  display: grid;
  gap: 22px;
  margin-bottom: clamp(36px, 6vw, 76px);
}

.section-heading p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 0;
}

.network {
  padding-top: clamp(76px, 10vw, 132px);
}

.creator-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(220px, 1fr));
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x proximity;
}

.creator-card,
.why-card,
.founder-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white-card);
  box-shadow: 0 18px 60px rgba(7, 26, 23, 0.06);
  backdrop-filter: blur(18px);
}

.creator-card {
  display: grid;
  align-content: space-between;
  min-height: 360px;
  padding: clamp(20px, 2.6vw, 30px);
  scroll-snap-align: start;
}

.creator-card-top {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
}

.creator-card h3,
.why-card h3,
.founder-card h3 {
  color: var(--ink);
}

.creator-card-top p {
  margin: 8px 0 0;
}

.avatar {
  width: 76px;
  height: 76px;
  border: 0;
  font-size: 1.05rem;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.avatar:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(7, 26, 23, 0.14);
}

.avatar-orange {
  background: var(--orange);
}

.avatar-green {
  background: var(--green);
}

.avatar-cream {
  background: var(--cream);
}

.avatar-blue {
  background: var(--blue);
}

.creator-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 40px 0 22px;
}

.creator-stats span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 11px;
  border: 1px solid rgba(14, 35, 31, 0.14);
  border-radius: 999px;
  color: rgba(14, 35, 31, 0.68);
  font-size: 0.78rem;
  font-weight: 780;
}

.creator-note {
  margin-bottom: 0;
}

.text-button {
  justify-self: start;
  margin-top: 26px;
  padding: 0;
  border: 0;
  color: var(--orange);
  background: transparent;
  font-size: 0.9rem;
  font-weight: 840;
  cursor: pointer;
}

.process {
  width: 100%;
  max-width: none;
  padding-right: max(20px, calc((100vw - 1460px) / 2 + 72px));
  padding-left: max(20px, calc((100vw - 1460px) / 2 + 72px));
  background: var(--surface);
  color: var(--paper);
}

.process h2,
.process h3 {
  color: var(--paper);
}

.process p {
  color: rgba(247, 245, 242, 0.62);
}

.process-flow {
  display: grid;
  grid-template-columns: minmax(190px, 1fr) 58px minmax(190px, 1fr) 58px minmax(190px, 1fr) 58px minmax(190px, 1fr);
  align-items: stretch;
}

.process-step {
  position: relative;
  display: grid;
  grid-template-rows: 150px 1fr;
  gap: 24px;
  min-height: 430px;
  padding: 12px clamp(18px, 2.4vw, 26px) clamp(22px, 3vw, 34px);
  border: 1px solid rgba(247, 245, 242, 0.14);
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 12%, rgba(240, 82, 35, 0.1), transparent 12rem),
    rgba(255, 255, 255, 0.045);
}

.step-visual {
  position: relative;
  overflow: hidden;
  min-height: 150px;
  border: 1px solid rgba(247, 245, 242, 0.12);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
}

.step-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.84) contrast(1.05);
  opacity: 0.55;
}

.step-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 0%, rgba(7, 26, 23, 0.48) 100%),
    radial-gradient(circle at 18% 22%, rgba(240, 82, 35, 0.24), transparent 44%);
}

.visual-match img,
.visual-report img {
  object-position: 55% 45%;
}

.visual-execute img {
  object-position: 65% 50%;
}

.visual-token {
  position: absolute;
  z-index: 1;
  right: 12px;
  bottom: 12px;
  min-height: 32px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(247, 245, 242, 0.18);
  border-radius: 999px;
  color: var(--paper);
  background: rgba(7, 26, 23, 0.58);
  font-size: 0.76rem;
  font-weight: 840;
}

.process-step span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 34px;
  border: 1px solid rgba(240, 82, 35, 0.58);
  border-radius: 50%;
  color: var(--orange);
  font-weight: 860;
}

.process-step p {
  margin: 18px 0 0;
  font-size: 1rem;
}

.flow-arrow {
  position: relative;
  min-height: 300px;
}

.flow-arrow::before,
.flow-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.flow-arrow::before {
  right: 9px;
  left: 9px;
  height: 1px;
  background: rgba(240, 82, 35, 0.72);
}

.flow-arrow::after {
  right: 7px;
  width: 12px;
  height: 12px;
  border-top: 1px solid rgba(240, 82, 35, 0.82);
  border-right: 1px solid rgba(240, 82, 35, 0.82);
  transform: translateY(-50%) rotate(45deg);
}

.why {
  width: 100%;
  max-width: none;
  padding-right: max(20px, calc((100vw - 1460px) / 2 + 72px));
  padding-left: max(20px, calc((100vw - 1460px) / 2 + 72px));
  background:
    radial-gradient(circle at 15% 24%, rgba(240, 82, 35, 0.08), transparent 22rem),
    var(--paper);
}

.why-story {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(42px, 8vw, 130px);
  align-items: start;
}

.story-portrait {
  position: sticky;
  top: 108px;
  display: grid;
  align-content: end;
  min-height: 570px;
  overflow: hidden;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--paper);
  background:
    linear-gradient(180deg, transparent 20%, rgba(7, 26, 23, 0.96) 100%),
    url("assets/creatora-cinematic-infrastructure.png") center / cover;
  box-shadow: 0 24px 80px rgba(7, 26, 23, 0.12);
}

.story-portrait-mark {
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  margin-bottom: 24px;
  border: 1px solid rgba(247, 245, 242, 0.22);
  border-radius: 8px;
  color: var(--surface);
  background: var(--orange);
  font-size: 2rem;
  font-weight: 920;
}

.story-portrait strong,
.story-portrait span {
  display: block;
}

.story-portrait strong {
  font-size: clamp(1.45rem, 2.5vw, 2.2rem);
}

.story-portrait span {
  margin-top: 7px;
  color: rgba(247, 245, 242, 0.62);
  font-size: 0.92rem;
  font-weight: 720;
}

.story-copy h2 {
  max-width: 870px;
}

.story-copy > p:not(.eyebrow) {
  max-width: 760px;
  margin: 28px 0 0;
}

.story-copy .story-lead {
  color: rgba(14, 35, 31, 0.82);
  font-size: clamp(1.2rem, 1.8vw, 1.62rem);
  line-height: 1.48;
}

.story-copy blockquote {
  max-width: 760px;
  margin: clamp(36px, 6vw, 72px) 0 0;
  padding: 28px 0 0;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: clamp(1.7rem, 3.1vw, 3.25rem);
  font-weight: 820;
  line-height: 1.08;
}

.story-principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(68px, 10vw, 130px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.story-principles div {
  display: grid;
  gap: 32px;
  min-height: 160px;
  padding: clamp(22px, 3vw, 34px);
  background: var(--white-card);
}

.story-principles span {
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 860;
}

.story-principles strong {
  align-self: end;
  color: var(--ink);
  font-size: clamp(1.15rem, 1.7vw, 1.55rem);
}

.proof {
  width: 100%;
  max-width: none;
  padding-right: max(20px, calc((100vw - 1460px) / 2 + 72px));
  padding-left: max(20px, calc((100vw - 1460px) / 2 + 72px));
  background: #efeae1;
}

.proof-case {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 7vw, 110px);
  align-items: center;
}

.proof-visual {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 24px 80px rgba(7, 26, 23, 0.12);
}

.proof-visual img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  opacity: 0.64;
}

.proof-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 25%, rgba(7, 26, 23, 0.94) 100%);
}

.proof-metric {
  position: absolute;
  z-index: 1;
  right: clamp(24px, 4vw, 44px);
  bottom: clamp(24px, 4vw, 44px);
  left: clamp(24px, 4vw, 44px);
}

.proof-metric strong,
.proof-metric span {
  display: block;
}

.proof-metric strong {
  color: var(--paper);
  font-size: clamp(4rem, 8vw, 8rem);
  line-height: 0.85;
}

.proof-metric span {
  margin-top: 16px;
  color: rgba(247, 245, 242, 0.66);
  font-weight: 760;
}

.proof-copy p:not(.eyebrow) {
  max-width: 680px;
  margin: 28px 0 0;
}

.proof-facts {
  display: grid;
  margin: 38px 0 0;
  border-top: 1px solid var(--line);
}

.proof-facts span {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.proof-facts strong {
  color: var(--ink);
}

.founder-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.founder-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(20px, 4vw, 34px);
  align-items: start;
  min-height: 300px;
  padding: clamp(24px, 4vw, 42px);
}

.founder-portrait {
  width: clamp(96px, 11vw, 150px);
  height: clamp(96px, 11vw, 150px);
  background: linear-gradient(145deg, var(--orange), #f7b38f);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
}

.founder-card:nth-child(2) .founder-portrait {
  background: linear-gradient(145deg, var(--blue), var(--cream));
}

.founder-card p {
  margin: 22px 0 0;
  max-width: 560px;
}

.contact {
  padding: clamp(86px, 12vw, 160px) clamp(20px, 4.8vw, 72px);
  color: var(--paper);
  background:
    radial-gradient(circle at 20% 30%, rgba(240, 82, 35, 0.16), transparent 20rem),
    var(--surface);
}

.contact-inner {
  width: min(100%, 1080px);
  margin: 0 auto;
}

.contact h2 {
  color: var(--paper);
}

.contact p:not(.eyebrow) {
  max-width: 680px;
  margin: 24px 0 30px;
  color: rgba(247, 245, 242, 0.62);
  font-size: clamp(1.08rem, 1.5vw, 1.34rem);
}

.media-kit {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
}

.media-kit[hidden] {
  display: none;
}

.media-kit-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(7, 26, 23, 0.72);
  backdrop-filter: blur(16px);
  cursor: pointer;
}

.media-kit-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 920px);
  max-height: min(760px, calc(100svh - 40px));
  overflow: auto;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid rgba(247, 245, 242, 0.16);
  border-radius: 8px;
  color: var(--paper);
  background:
    radial-gradient(circle at 82% 12%, rgba(240, 82, 35, 0.16), transparent 16rem),
    var(--surface);
  box-shadow: 0 34px 110px rgba(7, 26, 23, 0.5);
}

.media-kit-close {
  position: absolute;
  top: 18px;
  right: 18px;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(247, 245, 242, 0.18);
  border-radius: 999px;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  font-weight: 820;
  cursor: pointer;
}

.media-kit-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(18px, 4vw, 32px);
  align-items: center;
  padding-right: 86px;
}

.media-kit-avatar {
  width: clamp(104px, 16vw, 164px);
  height: clamp(104px, 16vw, 164px);
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.media-kit h2 {
  color: var(--paper);
  font-size: clamp(2.4rem, 5.4vw, 5.4rem);
}

.media-kit-head p:not(.eyebrow) {
  margin: 16px 0 0;
  color: rgba(247, 245, 242, 0.68);
}

.media-kit-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin: clamp(28px, 5vw, 54px) 0;
  border: 1px solid rgba(247, 245, 242, 0.14);
  border-radius: 8px;
  background: rgba(247, 245, 242, 0.14);
}

.media-kit-stats div,
.media-kit-grid div {
  padding: 22px;
  background: rgba(255, 255, 255, 0.06);
}

.media-kit-stats strong {
  display: block;
  margin-bottom: 8px;
  color: var(--paper);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.9;
}

.media-kit-stats span,
.media-kit-grid span {
  color: rgba(247, 245, 242, 0.52);
  font-size: 0.76rem;
  font-weight: 820;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.media-kit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.media-kit-grid div {
  border: 1px solid rgba(247, 245, 242, 0.12);
  border-radius: 8px;
}

.media-kit-grid p {
  margin: 14px 0 0;
  color: rgba(247, 245, 242, 0.66);
}

.site-editor {
  position: fixed;
  z-index: 120;
  right: 18px;
  bottom: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 10px;
  align-items: center;
  width: min(560px, calc(100vw - 36px));
  padding: 12px;
  border: 1px solid rgba(247, 245, 242, 0.18);
  border-radius: 8px;
  color: var(--paper);
  background: rgba(7, 26, 23, 0.94);
  box-shadow: 0 24px 70px rgba(7, 26, 23, 0.32);
  backdrop-filter: blur(18px);
}

.site-editor[hidden] {
  display: none;
}

.site-editor strong,
.site-editor span {
  display: block;
}

.site-editor span {
  margin-top: 3px;
  color: rgba(247, 245, 242, 0.62);
  font-size: 0.82rem;
}

.site-editor button {
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid rgba(247, 245, 242, 0.18);
  border-radius: 999px;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  font-weight: 820;
  cursor: pointer;
}

[contenteditable="true"] {
  outline: 2px dashed rgba(240, 82, 35, 0.42);
  outline-offset: 6px;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(20px, 4.8vw, 72px);
  color: var(--paper);
  background: var(--surface);
  border-top: 1px solid rgba(247, 245, 242, 0.12);
}

.footer span {
  color: rgba(247, 245, 242, 0.54);
  font-size: 0.92rem;
}

.reveal {
  transform: translateY(18px);
  opacity: 1;
}

.can-reveal .reveal {
  opacity: 0;
  transition: opacity 560ms ease, transform 560ms ease;
}

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

@media (max-width: 1220px) {
  .hero-proof-card {
    opacity: 0.72;
  }

  .creator-grid {
    grid-template-columns: repeat(5, minmax(260px, 1fr));
  }

  .process-flow {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .flow-arrow {
    min-height: 46px;
  }

  .flow-arrow::before {
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    height: auto;
  }

  .flow-arrow::after {
    top: auto;
    right: auto;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%) rotate(135deg);
  }

  .process-step {
    min-height: 230px;
  }
}

@media (max-width: 820px) {
  .site-header {
    height: 72px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 72px;
    right: 14px;
    left: 14px;
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid rgba(247, 245, 242, 0.14);
    border-radius: 8px;
    background: rgba(7, 26, 23, 0.96);
    box-shadow: 0 24px 70px rgba(7, 26, 23, 0.34);
    backdrop-filter: blur(18px);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 14px;
    border-radius: 6px;
    font-size: 0.9rem;
  }

  .site-nav .nav-cta {
    justify-content: center;
    margin-top: 8px;
  }

  .hero {
    min-height: 96svh;
  }

  .hero-inner {
    min-height: 96svh;
    padding-top: 116px;
    padding-bottom: 240px;
  }

  h1 {
    font-size: clamp(3.15rem, 15vw, 4.6rem);
  }

  h2 {
    font-size: clamp(2.32rem, 11vw, 3.8rem);
  }

  .hero-proof-wall {
    inset: auto 0 0;
    height: 300px;
  }

  .hero-proof-card {
    width: 240px;
    min-height: 84px;
    opacity: 0.95;
  }

  .hero-proof-card:nth-child(1) {
    left: 54%;
    top: 35%;
  }

  .hero-proof-card:nth-child(2) {
    left: 86%;
    top: 66%;
  }

  .hero-proof-card:nth-child(3) {
    left: 23%;
    top: 70%;
  }

  .hero-proof-card:nth-child(4),
  .hero-proof-card:nth-child(5) {
    display: none;
  }

  .connection-field {
    right: -14vw;
    bottom: 0;
    width: 125vw;
    height: 230px;
  }

  .why-story,
  .proof-case,
  .story-principles,
  .founder-grid,
  .media-kit-head,
  .media-kit-stats,
  .media-kit-grid {
    grid-template-columns: 1fr;
  }

  .story-portrait {
    position: relative;
    top: auto;
    min-height: 470px;
  }

  .proof-visual,
  .proof-visual img {
    min-height: 440px;
  }

  .hero-trustline {
    display: grid;
    gap: 9px;
  }

  .founder-card {
    grid-template-columns: 1fr;
  }

  .media-kit-head {
    padding-right: 0;
  }

  .media-kit-close {
    position: static;
    justify-self: end;
    margin-bottom: 18px;
  }

  .site-editor {
    grid-template-columns: 1fr 1fr;
  }

  .site-editor div {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .brand img,
  .footer-brand img {
    width: 154px;
  }

  .button {
    width: 100%;
  }

  .creator-card {
    min-height: 0;
  }

  .creator-card-top {
    grid-template-columns: 1fr;
  }

  .process-step {
    min-height: 0;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
