@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #05080b;
  --bg-2: #081018;
  --panel: rgba(10, 17, 23, .82);
  --panel-2: rgba(15, 24, 31, .78);
  --line: rgba(227, 184, 108, .18);
  --line-soft: rgba(255, 255, 255, .08);
  --gold: #d8b06a;
  --gold-2: #f0d49b;
  --gold-3: #9f7134;
  --text: #f4efe6;
  --muted: #aaa49b;
  --muted-2: #d0c4b2;
  --black: #020405;
  --shadow: 0 30px 90px rgba(0,0,0,.45);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 6%, rgba(216,176,106,.11), transparent 27%),
    radial-gradient(circle at 85% 18%, rgba(87,139,164,.08), transparent 28%),
    linear-gradient(180deg, #05080b 0%, #081018 48%, #05080b 100%);
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .28;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
p, h1, h2, h3 { margin-top: 0; }

.ambient {
  position: fixed;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(20px);
  opacity: .55;
}
.ambient-one {
  width: 420px;
  height: 420px;
  background: rgba(216,176,106,.08);
  left: -160px;
  top: 80px;
}
.ambient-two {
  width: 360px;
  height: 360px;
  background: rgba(88,144,172,.06);
  right: -120px;
  top: 220px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 86px;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(5, 8, 11, .78);
  border-bottom: 1px solid var(--line-soft);
  backdrop-filter: blur(20px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand img { width: 56px; height: 56px; }
.brand strong {
  display: block;
  font-family: Cinzel, serif;
  font-size: 1.42rem;
  line-height: 1;
  letter-spacing: .01em;
}
.brand small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .62rem;
  font-weight: 700;
}
.main-nav {
  display: flex;
  gap: 34px;
  align-items: center;
  font-size: .92rem;
}
.main-nav a {
  color: #e7dfd2;
  position: relative;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .25s ease;
}
.main-nav a:hover::after,
.main-nav a.active::after { width: 100%; }

.header-cta {
  padding: 13px 20px;
  border-radius: 6px;
  color: #090907;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  font-weight: 800;
  box-shadow: 0 12px 35px rgba(216,176,106,.2);
}

main, .footer {
  width: min(1280px, calc(100% - 56px));
  margin: 0 auto;
}
.hero {
  min-height: calc(100vh - 86px);
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 52px;
  align-items: center;
  padding: 52px 0 58px;
}
.kicker {
  color: var(--gold);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .19em;
  font-weight: 800;
  margin-bottom: 18px;
}
h1, h2 {
  font-family: Cinzel, serif;
  line-height: .98;
  letter-spacing: -.045em;
}
h1 {
  max-width: 680px;
  font-size: clamp(3.6rem, 6.5vw, 6.8rem);
  margin-bottom: 26px;
}
h1 span, h2 span {
  color: var(--gold);
}
.lead {
  max-width: 600px;
  color: var(--muted-2);
  font-size: 1.1rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 36px 0 50px;
}
.btn {
  min-height: 54px;
  padding: 0 24px;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.btn:hover, .header-cta:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #090907;
  box-shadow: 0 18px 45px rgba(216,176,106,.18);
}
.btn-secondary {
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255,255,255,.025);
}

.trust-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 760px;
}
.trust-items div {
  display: grid;
  grid-template-columns: 36px 1fr;
  column-gap: 14px;
  align-items: start;
}
.trust-items img {
  width: 34px;
  height: 34px;
  grid-row: span 2;
}
.trust-items strong {
  font-size: .92rem;
}
.trust-items span {
  color: var(--muted);
  font-size: .83rem;
}

.hero-art {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
  perspective: 1000px;
}
.glass-case {
  position: relative;
  width: min(520px, 92vw);
  height: 500px;
  border: 2px solid rgba(202,220,230,.36);
  background:
    linear-gradient(135deg, rgba(255,255,255,.10), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.005));
  box-shadow:
    inset 0 0 40px rgba(255,255,255,.05),
    0 40px 120px rgba(0,0,0,.55);
  transform: rotateY(-8deg) rotateX(3deg);
}
.glass-case::before,
.glass-case::after {
  content: "";
  position: absolute;
  pointer-events: none;
}
.glass-case::before {
  inset: 20px;
  border: 1px solid rgba(255,255,255,.18);
}
.glass-case::after {
  width: 65%;
  height: 1px;
  top: 24px;
  left: 18%;
  background: linear-gradient(90deg, transparent, rgba(240,212,155,.95), transparent);
  box-shadow: 0 0 18px rgba(240,212,155,.6);
}
.verified-card {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 300px;
  min-height: 365px;
  padding: 28px;
  transform: translate(-50%, -50%);
  border-radius: 12px;
  border: 1px solid rgba(240,212,155,.18);
  background:
    linear-gradient(145deg, rgba(255,255,255,.06), rgba(255,255,255,.01)),
    #0c1116;
  box-shadow: 0 24px 70px rgba(0,0,0,.55);
}
.card-code {
  color: var(--gold);
  font-size: .76rem;
  letter-spacing: .12em;
  font-weight: 800;
}
.verified-card h2 {
  font-size: 2rem;
  color: var(--gold-2);
  margin: 14px 0 20px;
}
.badge-line {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 12px;
  border-radius: 7px;
  border: 1px solid var(--line);
  color: var(--gold-2);
  font-weight: 800;
}
.badge-line img { width: 30px; height: 30px; }
.score {
  margin: 22px 0 18px;
}
.score strong {
  font-size: 3.2rem;
  line-height: 1;
}
.score span {
  display: block;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .62rem;
}
.mini-scores {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.mini-scores span {
  padding: 7px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 6px;
  color: var(--muted-2);
  font-size: .68rem;
}
.plinth {
  width: 520px;
  max-width: 94vw;
  min-height: 90px;
  margin-top: -84px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #11161b, #050607);
  border: 1px solid rgba(240,212,155,.16);
  box-shadow: 0 30px 80px rgba(0,0,0,.55);
}
.plinth img { width: 62px; height: 62px; }
.plinth span {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .66rem;
  margin-top: -6px;
}

.split-section {
  display: grid;
  grid-template-columns: .85fr 1.55fr .85fr;
  gap: 34px;
  padding: 70px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.split-section h2,
.process h2,
.community h2,
.waitlist h2 {
  font-size: clamp(2.1rem, 3.6vw, 4rem);
}
.split-section p,
.process p,
.community p,
.waitlist p {
  color: var(--muted-2);
}
.problem-block,
.solution-block,
.problem-cards article,
.system-card,
.community,
.waitlist {
  background: rgba(7, 12, 16, .68);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow);
}
.problem-block,
.solution-block {
  padding: 30px;
}
.problem-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.problem-cards article {
  padding: 30px;
  border-right: none;
}
.problem-cards article:last-child { border-right: 1px solid var(--line-soft); }
.x-mark {
  width: 38px;
  height: 38px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--gold);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  margin-bottom: 28px;
}

.process {
  padding: 78px 0 54px;
  text-align: center;
}
.centered { justify-content: center; }
.process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-top: 52px;
}
.process-line::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 34px;
  height: 1px;
  border-top: 1px dashed rgba(216,176,106,.32);
}
.process-line article {
  position: relative;
  padding: 0 10px;
}
.step-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 22px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: var(--gold);
  background: #071017;
  font-weight: 800;
}

.brand-system {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 38px 0 72px;
}
.system-card {
  padding: 24px;
  border-radius: 12px;
}
.system-head {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .68rem;
  font-weight: 800;
  margin-bottom: 20px;
}
.system-head img { width: 44px; height: 44px; }
.system-card h3 { font-size: 1.15rem; }
.system-card p { color: var(--muted); margin-bottom: 0; }

.community {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 38px;
  padding: 42px;
  border-radius: 16px;
}
.text-link {
  display: inline-block;
  margin-top: 12px;
  color: var(--gold);
  font-weight: 800;
}
.levels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.levels article {
  min-height: 150px;
  display: grid;
  align-content: end;
  gap: 7px;
  padding: 22px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 0%, rgba(216,176,106,.16), transparent 42%),
    rgba(255,255,255,.025);
  border-radius: 12px;
}
.levels strong { color: var(--gold-2); }
.levels span { color: var(--muted); }

.waitlist {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: .8fr 1fr;
  gap: 34px;
  align-items: center;
  margin: 70px 0 34px;
  padding: 48px;
  border-radius: 16px;
}
.waitlist-copy { position: relative; z-index: 2; }
.signup {
  position: relative;
  z-index: 2;
  padding: 24px;
  border: 1px solid var(--line-soft);
  background: rgba(0,0,0,.25);
  border-radius: 12px;
}
.signup label {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .7rem;
}
.signup div {
  display: flex;
  gap: 12px;
}
.signup input {
  flex: 1;
  min-width: 0;
  height: 58px;
  border-radius: 7px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(4,7,10,.84);
  color: var(--text);
  padding: 0 18px;
  outline: none;
  font: inherit;
}
.signup input:focus {
  border-color: var(--gold);
}
.signup button {
  border: none;
  height: 58px;
  border-radius: 7px;
  padding: 0 22px;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #090907;
  font-weight: 900;
  cursor: pointer;
}
.signup p {
  font-size: .85rem;
  margin: 14px 0 0;
  text-align: center;
}
.tree-watermark {
  position: absolute;
  right: 30px;
  bottom: -30px;
  width: 310px;
  opacity: .22;
  filter: sepia(1) saturate(1.7);
}

.footer {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 24px 0 34px;
  border-top: 1px solid var(--line-soft);
  color: var(--muted);
}
.footer .brand img { width: 48px; height: 48px; }
.footer nav {
  display: flex;
  gap: 26px;
  color: var(--muted-2);
  font-size: .9rem;
}
.footer p { margin-bottom: 0; }

@media (max-width: 1050px) {
  .main-nav { display: none; }
  .hero,
  .split-section,
  .community,
  .waitlist {
    grid-template-columns: 1fr;
  }
  .problem-cards,
  .brand-system,
  .levels {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-line {
    grid-template-columns: 1fr;
  }
  .process-line::before { display: none; }
  .hero-art { min-height: 540px; }
}

@media (max-width: 680px) {
  .site-header {
    height: auto;
    padding: 14px;
  }
  .brand img { width: 46px; height: 46px; }
  .brand strong { font-size: 1.12rem; }
  .brand small { display: none; }
  .header-cta { padding: 11px 14px; font-size: .84rem; }
  main, .footer { width: min(100% - 26px, 1280px); }
  .hero { padding-top: 36px; }
  h1 { font-size: clamp(3rem, 13vw, 4.4rem); }
  .trust-items,
  .problem-cards,
  .brand-system,
  .levels {
    grid-template-columns: 1fr;
  }
  .glass-case {
    height: 430px;
    transform: none;
  }
  .verified-card { width: 270px; }
  .plinth { width: 94vw; }
  .signup div { flex-direction: column; }
  .signup button { width: 100%; }
  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer nav {
    flex-wrap: wrap;
    gap: 16px;
  }
}


/* PromptForge visual identity update: right-column logo assets */
.brand img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  border-radius: 14px;
}
.footer .brand img {
  width: 56px;
  height: 56px;
}
.trust-items img {
  object-fit: contain;
  border-radius: 9px;
}
.badge-line img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  border-radius: 8px;
}
.plinth img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 14px;
}
.brand-system {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 38px 0 72px;
}
.system-card {
  padding: 0 0 24px;
  overflow: hidden;
  border-radius: 14px;
  background: rgba(7, 12, 16, .72);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow);
}
.logo-showcase {
  height: 220px;
  padding: 16px 16px 10px;
  display: grid;
  place-items: center;
  border-bottom: 1px solid var(--line-soft);
  background: radial-gradient(circle at 50% 18%, rgba(216,176,106,.10), transparent 52%), rgba(255,255,255,.02);
}
.logo-showcase img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.system-head {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .68rem;
  font-weight: 800;
  margin: 22px 24px 14px;
}
.system-card h3 {
  margin: 0 24px 12px;
  font-size: 1.15rem;
}
.system-card p {
  margin: 0 24px;
  color: var(--muted);
}
.tree-watermark {
  object-fit: contain;
  opacity: .16;
  filter: sepia(1) saturate(1.35) brightness(1.1);
  border-radius: 24px;
}
@media (max-width: 1050px) {
  .brand-system { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  .brand-system { grid-template-columns: 1fr; }
  .logo-showcase { height: 240px; }
}


/* PromptForge explanation section replacing visual logo cards */
.what-is {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 34px;
  align-items: stretch;
  padding: 46px 0 72px;
}
.what-copy {
  padding: 38px;
  border: 1px solid var(--line-soft);
  background: linear-gradient(145deg, rgba(7, 12, 16, .82), rgba(13, 22, 29, .58));
  box-shadow: var(--shadow);
}
.what-copy h2 {
  font-size: clamp(2.2rem, 3.8vw, 4.2rem);
  margin-bottom: 18px;
}
.what-copy p {
  color: var(--muted-2);
  max-width: 680px;
}
.what-points {
  display: grid;
  gap: 16px;
}
.what-points article {
  padding: 28px;
  border: 1px solid var(--line-soft);
  background: rgba(7, 12, 16, .68);
  box-shadow: var(--shadow);
}
.what-points span {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .72rem;
  font-weight: 800;
}
.what-points h3 {
  margin: 14px 0 8px;
  font-size: 1.25rem;
}
.what-points p {
  color: var(--muted);
  margin-bottom: 0;
}
@media (max-width: 1050px) {
  .what-is { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .what-copy, .what-points article { padding: 24px; }
}


/* Header refinement: cleaner premium wordmark */
.site-header {
  height: 82px;
  padding: 0 34px;
}

.site-header .brand {
  gap: 13px;
}

.site-header .brand img {
  width: 42px;
  height: 42px;
  border-radius: 0;
  background: transparent;
  object-fit: contain;
  box-shadow: none;
}

.site-header .brand strong {
  font-family: Cinzel, Georgia, serif;
  font-size: 1.42rem;
  font-weight: 600;
  letter-spacing: .015em;
  text-transform: none;
  color: #f4efe6;
}

.site-header .brand small {
  margin-top: 4px;
  color: rgba(216, 176, 106, .82);
  font-size: .58rem;
  letter-spacing: .22em;
  font-weight: 700;
  text-transform: uppercase;
}

/* Footer: keep same identity, less heavy */
.footer .brand img {
  width: 42px;
  height: 42px;
  border-radius: 0;
  background: transparent;
  object-fit: contain;
  box-shadow: none;
}

.footer .brand strong {
  font-family: Cinzel, Georgia, serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: .015em;
  text-transform: none;
}

.footer .brand small {
  color: rgba(216, 176, 106, .72);
  letter-spacing: .2em;
}

@media (max-width: 680px) {
  .site-header .brand img {
    width: 38px;
    height: 38px;
  }

  .site-header .brand strong {
    font-size: 1.08rem;
  }

  .site-header .brand small {
    display: none;
  }
}


/* Emergency PF readability fix: no stylized RI-looking mark */
.site-header .brand img,
.footer .brand img {
  width: 40px !important;
  height: 40px !important;
  border-radius: 0 !important;
  object-fit: contain !important;
  background: transparent !important;
  box-shadow: none !important;
}

.site-header .brand {
  gap: 12px !important;
}

.site-header .brand strong {
  font-family: Cinzel, Georgia, serif !important;
  font-weight: 600 !important;
  letter-spacing: .01em !important;
  text-transform: none !important;
}

@media (max-width: 680px) {
  .site-header .brand img {
    width: 36px !important;
    height: 36px !important;
  }
}
