:root {
  --font-body: "Manrope", "Noto Sans SC", "PingFang SC", "Hiragino Sans GB", sans-serif;
  --font-condensed: "Bebas Neue", "Impact", "Arial Narrow", sans-serif;
  --paper: #f4f0e9;
  --paper-warm: #fffaf2;
  --ink: #070707;
  --ink-soft: #262626;
  --muted: #68645e;
  --line: rgba(7, 7, 7, 0.16);
  --line-strong: rgba(7, 7, 7, 0.32);
  --red: #bc0c12;
  --red-dark: #83070b;
  --white: #fffaf2;
  --ok: #0f8c52;
  --error: #bc0c12;
  --shadow: 0 22px 54px rgba(15, 12, 10, 0.18);
  --shadow-hard: 0 26px 70px rgba(15, 12, 10, 0.32);
}

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

html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 12%, rgba(188, 12, 18, 0.08), transparent 24rem),
    linear-gradient(180deg, var(--paper-warm), var(--paper) 56%, #eee9df);
  line-height: 1.45;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(7, 7, 7, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 7, 7, 0.03) 1px, transparent 1px);
  background-size: 34px 34px;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  width: min(1500px, calc(100% - 2.5rem));
  margin: 1rem auto 0;
  padding: 0.7rem 0.75rem 0.7rem 1rem;
  border: 1px solid rgba(7, 7, 7, 0.18);
  border-radius: 6px;
  background: rgba(255, 250, 242, 0.82);
  backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  gap: 1rem;
  position: sticky;
  top: 0.75rem;
  z-index: 30;
}

.brand-wrap {
  display: inline-flex;
  align-items: baseline;
  gap: 0.44rem;
  text-decoration: none;
  min-width: 0;
}

.brand-word {
  font-family: var(--font-condensed);
  font-size: 2.2rem;
  line-height: 0.86;
  letter-spacing: 0;
}

.brand-sub {
  font-size: 0.64rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 3.4rem);
}

.site-nav a {
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  border-bottom: 2px solid transparent;
  padding: 0.25rem 0;
}

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

.header-controls {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.header-cta,
.btn-primary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-cta,
.btn-primary {
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper-warm);
  padding: 0.72rem 1.05rem;
  cursor: pointer;
}

.btn-primary:hover,
.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(7, 7, 7, 0.2);
}

.btn-ghost {
  border: 1px solid var(--ink);
  background: rgba(255, 250, 242, 0.75);
  color: var(--ink);
  padding: 0.68rem 1.05rem;
}

.btn-ghost:hover {
  transform: translateY(-2px);
  background: #fff;
}

.lang-switch {
  display: inline-flex;
  border: 1px solid var(--line-strong);
  border-radius: 5px;
  overflow: hidden;
  background: rgba(255, 250, 242, 0.7);
}

.lang-btn {
  border: 0;
  background: transparent;
  color: var(--ink);
  padding: 0.54rem 0.68rem;
  cursor: pointer;
  font-weight: 900;
  font-size: 0.75rem;
}

.lang-btn.active {
  color: var(--paper-warm);
  background: var(--red);
}

main {
  width: 100%;
}

.section,
.trust-strip,
.site-footer {
  width: min(1340px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.section {
  padding-top: clamp(4.5rem, 8vw, 8rem);
}

.section-first {
  width: min(1600px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero {
  min-height: 820px;
  padding: clamp(4rem, 7vw, 7.2rem) clamp(1rem, 4vw, 4rem) 3rem;
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(680px, 1.28fr);
  gap: clamp(1.2rem, 3vw, 3rem);
  align-items: center;
  overflow: hidden;
}

.hero-splatter {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.9;
  filter: saturate(1.03) contrast(1.02);
}

.hero-copy {
  max-width: 620px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow.red,
.kicker {
  color: var(--red);
}

.hero h1 {
  margin: 0.62rem 0 0;
  font-family: var(--font-condensed);
  font-size: clamp(5rem, 10.5vw, 12.4rem);
  line-height: 0.78;
  letter-spacing: 0;
  max-width: 7ch;
}

.hero-sub {
  margin: 1.1rem 0 0;
  color: var(--ink-soft);
  max-width: 54ch;
  font-size: clamp(1rem, 1.22vw, 1.16rem);
  font-weight: 600;
}

.hero-actions {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.campaign-collage {
  min-height: 670px;
  position: relative;
}

.float-card {
  position: absolute;
  overflow: hidden;
  border-radius: 9px;
  box-shadow: var(--shadow-hard);
  z-index: 1;
}

.metric-card,
.poster-card,
.credential-panel,
.system-card,
.contact-wrap,
.lead-form {
  border: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.9);
}

.metric-card {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.metric-card h2,
.poster-card h3,
.credential-panel h3,
.origin-copy h2,
.section-head h2,
.contact-copy h2,
.system-card h3 {
  margin: 0;
  font-family: var(--font-condensed);
  line-height: 0.95;
  letter-spacing: 0;
}

.metric-card h2 {
  font-size: clamp(2rem, 2.7vw, 3rem);
  overflow-wrap: anywhere;
}

.metric-card p:not(.massive) {
  margin: 1rem 0 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 800;
}

.massive {
  margin: 0;
  font-family: var(--font-condensed);
  font-size: clamp(4.2rem, 7vw, 8rem);
  line-height: 0.82;
  letter-spacing: 0;
}

.metric-left {
  width: 290px;
  height: 330px;
  left: 0;
  top: 175px;
  z-index: 2;
}

.metric-top {
  width: 292px;
  height: 355px;
  left: 340px;
  top: 24px;
  z-index: 1;
}

.metric-right {
  width: 315px;
  height: 350px;
  right: 0;
  top: 286px;
  z-index: 4;
}

.image-card {
  background: #111;
}

.image-card img,
.credential-image img,
.origin-media img,
.creator-wall img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.image-card p {
  position: absolute;
  left: 1rem;
  bottom: 0.9rem;
  right: 1rem;
  color: #fff;
  margin: 0;
  font-size: 0.8rem;
  font-weight: 900;
  line-height: 1.12;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.65);
}

.portrait-card {
  width: 245px;
  height: 330px;
  right: 360px;
  top: 310px;
  z-index: 5;
}

.studio-card {
  width: 255px;
  height: 220px;
  left: 208px;
  bottom: 18px;
  z-index: 6;
}

.logo-card {
  width: 350px;
  height: 188px;
  left: 255px;
  top: 440px;
  background: #050505;
  display: grid;
  place-items: center;
  z-index: 8;
}

.logo-card img {
  width: 92%;
  height: 92%;
  object-fit: contain;
}

.red-card {
  width: 240px;
  height: 175px;
  right: 150px;
  top: 66px;
  padding: 1.28rem;
  background: linear-gradient(145deg, var(--red), var(--red-dark));
  color: #fff;
  display: flex;
  align-items: flex-start;
  z-index: 9;
}

.red-card h2 {
  margin: 0;
  font-family: var(--font-condensed);
  font-size: 2.3rem;
  line-height: 0.95;
}

.trust-strip {
  margin-top: -1.5rem;
  padding: 1rem 1.15rem;
  border-block: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.trust-strip p {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  flex: 0 0 auto;
}

.trust-items {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.trust-items span {
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 0.32rem 0.72rem;
  font-size: 0.78rem;
  font-weight: 900;
  background: rgba(255, 250, 242, 0.58);
}

.section-head {
  max-width: 760px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head h2,
.contact-copy h2,
.origin-copy h2 {
  margin-top: 0.52rem;
  font-size: clamp(3.4rem, 6.5vw, 7rem);
}

.section-head p,
.origin-copy > p,
.contact-copy > p {
  margin: 0.9rem 0 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  font-weight: 600;
}

.result-metrics {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.poster-card {
  min-height: 305px;
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow);
}

.poster-card.dark {
  background: #050505;
  color: #fff;
}

.poster-card.red-fill {
  background: var(--red);
  color: #fff;
  border-color: transparent;
}

.poster-card .massive {
  font-size: clamp(4rem, 6.8vw, 7.1rem);
}

.poster-card h3 {
  font-size: 2.6rem;
}

.poster-card p:not(.massive) {
  margin: 0.55rem 0 0;
  color: currentColor;
  font-weight: 800;
}

.split-section {
  position: relative;
}

.credential-grid {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: 1fr 1fr 0.78fr;
  gap: 1rem;
  align-items: stretch;
}

.credential-panel {
  min-height: 420px;
  padding: clamp(1.1rem, 2vw, 1.8rem);
  box-shadow: var(--shadow);
}

.credential-panel h3 {
  margin-top: 0.75rem;
  font-size: clamp(3.1rem, 5vw, 5.8rem);
}

.credential-panel ul {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.credential-panel li {
  padding: 0.86rem 0;
  border-top: 1px solid var(--line);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  font-weight: 800;
}

.credential-image {
  min-height: 420px;
  border-radius: 9px;
  overflow: hidden;
  box-shadow: var(--shadow-hard);
}

.origin-section {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  gap: clamp(1rem, 3vw, 3rem);
  align-items: center;
}

.origin-media {
  position: relative;
  min-height: 500px;
  border-radius: 9px;
  overflow: hidden;
  box-shadow: var(--shadow-hard);
  background: #111;
}

.origin-stamp {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  color: #fff;
  font-family: var(--font-condensed);
  font-size: clamp(3.5rem, 7vw, 7.8rem);
  line-height: 0.82;
  transform: rotate(-3deg);
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.48);
}

.origin-facts {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.origin-facts article {
  border-top: 5px solid var(--ink);
  padding-top: 0.72rem;
}

.origin-facts .massive {
  color: var(--red);
  font-size: clamp(3.6rem, 5vw, 5.2rem);
}

.origin-facts span {
  display: block;
  margin-top: 0.3rem;
  font-weight: 900;
}

.system-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.system-card {
  padding: 1rem;
  min-height: 230px;
  box-shadow: var(--shadow);
}

.system-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-weight: 900;
  font-size: 0.82rem;
}

.system-card h3 {
  margin-top: 1rem;
  font-size: clamp(2.3rem, 3.4vw, 3.8rem);
}

.system-card p {
  margin: 0.7rem 0 0;
  color: var(--ink-soft);
  font-weight: 700;
}

.creator-wall {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
}

.creator-wall figure {
  margin: 0;
  border-radius: 9px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #111;
}

.creator-wall img {
  aspect-ratio: 3 / 4.1;
  object-position: top center;
}

.contact-wrap {
  padding: clamp(1rem, 2.4vw, 2rem);
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(1rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-hard);
}

.contact-methods {
  margin-top: 1.2rem;
  display: grid;
  gap: 0.45rem;
}

.contact-methods a,
.contact-methods p {
  margin: 0;
  color: var(--ink);
  font-weight: 900;
  word-break: break-word;
}

.contact-qr {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 0.75rem;
  align-items: center;
  max-width: 420px;
}

.contact-qr img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border: 1px solid var(--line-strong);
}

.contact-qr p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.lead-form {
  padding: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.72rem;
}

.lead-form label {
  display: grid;
  gap: 0.32rem;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.full-field,
.form-submit,
.form-result {
  grid-column: 1 / -1;
}

input,
select,
textarea,
button {
  font: inherit;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  background: #fff;
  color: var(--ink);
  padding: 0.74rem 0.78rem;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(188, 12, 18, 0.22);
  border-color: var(--red);
}

.form-result {
  margin: 0;
  min-height: 22px;
  font-size: 0.88rem;
  font-weight: 900;
}

.form-result.ok {
  color: var(--ok);
}

.form-result.error {
  color: var(--error);
}

.site-footer {
  margin-top: 4rem;
  padding: 1.5rem 0 2rem;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  color: var(--ink);
}

.site-footer strong {
  font-family: var(--font-condensed);
  font-size: 2.2rem;
  line-height: 0.9;
}

.site-footer p {
  margin: 0.28rem 0;
  color: var(--muted);
  font-weight: 800;
}

.footer-icp,
.admin-link {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
}

.footer-icp:hover,
.admin-link:hover {
  color: var(--red);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (max-width: 1220px) {
  .site-nav {
    gap: 1rem;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero h1 {
    max-width: 9ch;
  }

  .campaign-collage {
    min-height: 640px;
    max-width: 960px;
    width: 100%;
    margin: 0 auto;
  }

  .credential-grid,
  .origin-section,
  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .result-metrics,
  .system-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .site-header {
    width: min(100% - 1rem, 760px);
    flex-wrap: wrap;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    overflow-x: auto;
    padding-top: 0.45rem;
    border-top: 1px solid var(--line);
  }

  .header-controls {
    margin-left: auto;
  }

  .brand-sub {
    display: none;
  }

  .section,
  .trust-strip,
  .site-footer {
    width: min(100% - 1.2rem, 760px);
  }

  .hero {
    width: min(100% - 0.6rem, 760px);
    padding-inline: 0;
    padding-top: 3rem;
  }

  .hero-copy {
    padding: 0 0.6rem;
  }

  .campaign-collage {
    min-height: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
  }

  .float-card {
    position: relative;
    inset: auto;
    width: auto;
    height: auto;
    min-height: 190px;
  }

  .logo-card {
    grid-column: 1 / -1;
    min-height: 220px;
    order: 1;
  }

  .metric-left {
    order: 2;
  }

  .metric-top {
    order: 3;
  }

  .studio-card {
    order: 4;
    min-height: 230px;
  }

  .portrait-card {
    order: 5;
    min-height: 330px;
  }

  .red-card {
    order: 6;
    min-height: 180px;
  }

  .metric-right {
    grid-column: 1 / -1;
    order: 7;
  }

  .metric-card h2 {
    font-size: 2.3rem;
  }

  .massive,
  .poster-card .massive {
    font-size: clamp(4rem, 18vw, 6.8rem);
  }

  .trust-strip {
    margin-top: 1rem;
    align-items: flex-start;
    flex-direction: column;
  }

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

@media (max-width: 640px) {
  .site-header {
    top: 0.35rem;
    padding: 0.55rem;
  }

  .brand-word {
    font-size: 1.8rem;
  }

  .header-cta {
    min-height: 36px;
    padding: 0.55rem 0.7rem;
    font-size: 0.72rem;
  }

  .lang-btn {
    padding: 0.44rem 0.52rem;
  }

  .site-nav a {
    font-size: 0.72rem;
    flex: 0 0 auto;
  }

  .hero h1 {
    font-size: clamp(4.4rem, 27vw, 7.8rem);
  }

  .hero-sub {
    font-size: 0.98rem;
  }

  .campaign-collage,
  .result-metrics,
  .system-grid,
  .origin-facts,
  .lead-form {
    grid-template-columns: 1fr;
  }

  .section-head h2,
  .contact-copy h2,
  .origin-copy h2 {
    font-size: clamp(3.2rem, 16vw, 5.5rem);
  }

  .credential-panel {
    min-height: auto;
  }

  .credential-panel h3 {
    font-size: clamp(3rem, 15vw, 5rem);
  }

  .credential-image,
  .origin-media {
    min-height: 380px;
  }

  .logo-card {
    height: 210px;
    min-height: 210px;
  }

  .logo-card img {
    height: 86%;
  }

  .float-card {
    min-height: 172px;
  }

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

  .site-footer {
    display: block;
  }

  .admin-link {
    display: inline-block;
    margin-top: 1rem;
  }
}

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

/* Admin keeps the original dark working surface. */
.admin-page {
  min-height: 100vh;
  color: #eff3fb;
  background: #06080d;
}

.admin-container {
  width: min(1280px, calc(100% - 28px));
  margin: 26px auto;
}

.admin-card {
  border: 1px solid rgba(190, 212, 237, 0.2);
  border-radius: 14px;
  background: rgba(13, 24, 38, 0.95);
  padding: 16px;
}

.admin-card.hidden {
  display: none;
}

.admin-form {
  display: grid;
  max-width: 380px;
  gap: 10px;
}

.admin-page .muted {
  color: #9ea8bc;
}

.admin-page input,
.admin-page select,
.admin-page textarea {
  border: 1px solid rgba(190, 212, 237, 0.2);
  border-radius: 10px;
  background: rgba(5, 9, 15, 0.82);
  color: #eff3fb;
  padding: 0.56rem 0.62rem;
}

.admin-page input:focus,
.admin-page select:focus,
.admin-page textarea:focus {
  outline: 2px solid rgba(88, 211, 255, 0.35);
  border-color: rgba(88, 211, 255, 0.6);
}

.dashboard-head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.dashboard-actions {
  display: inline-flex;
  gap: 8px;
}

.dashboard-actions button,
.save-btn {
  border: 1px solid rgba(190, 212, 237, 0.2);
  border-radius: 8px;
  background: rgba(8, 16, 28, 0.9);
  color: #eff3fb;
  padding: 5px 8px;
  cursor: pointer;
}

.admin-page .stats {
  margin: 10px 0;
  display: flex;
  gap: 14px;
  color: #9ea8bc;
  flex-wrap: wrap;
}

.table-wrap {
  overflow: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 1200px;
}

th,
td {
  border-bottom: 1px solid rgba(190, 212, 237, 0.2);
  padding: 8px;
  text-align: left;
  vertical-align: top;
  font-size: 13px;
}

th {
  color: #d6e9fc;
  position: sticky;
  top: 0;
  background: #0f1a2b;
}

.message-col {
  max-width: 260px;
  white-space: pre-wrap;
}

.notes-input {
  min-width: 200px;
}
