@import url("https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,500;0,600;1,500&family=IBM+Plex+Mono:wght@500;600&family=Inter:wght@400;500;600&display=swap");

:root {
  --cream: #f5f1e8;
  --cream-deep: #e9e2d4;
  --graphite: #211f1d;
  --muted: #6b6560;
  --gold: #c8952c;
  --wine: #5c2038;
  --green: #1f4435;
  --blue: #1f3a5c;
  --line: rgba(33, 31, 29, 0.18);
  --background: var(--cream);
  --foreground: var(--graphite);
  --popover: #fffdf8;
  --popover-foreground: var(--graphite);
  --border: rgba(33, 31, 29, 0.16);
  --radius: 0.5rem;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--cream); }
body {
  margin: 0;
  background: var(--cream);
  color: var(--graphite);
  font-family: "Inter", Arial, sans-serif;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.icon--small { width: 15px; height: 15px; }
.icon--medium { width: 22px; height: 22px; }
.icon--large { width: 28px; height: 28px; }
.icon--quote { width: 34px; height: 34px; }

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(100% - 48px, 1320px);
  margin: 0 auto;
  padding: 25px 0 18px;
  border-bottom: 1px solid rgba(245, 241, 232, 0.28);
  color: var(--cream);
}
.brand { display: inline-flex; align-items: center; gap: 11px; width: fit-content; }
.brand-mark {
  position: relative;
  display: block;
  width: 82px;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 50%;
  background: var(--graphite);
}
.brand-mark--compact { width: 42px; }
.brand-mark img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.brand-copy { display: flex; flex-direction: column; line-height: 1; }
.brand-copy strong {
  font-family: "EB Garamond", Georgia, serif;
  font-size: 25px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.brand-copy small {
  margin-top: 5px;
  color: rgba(245, 241, 232, 0.68);
  font-family: "IBM Plex Mono", monospace;
  font-size: 8px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.desktop-nav { display: flex; align-items: center; gap: 34px; font-size: 13px; }
.desktop-nav a, .login-trigger { transition: opacity 160ms ease; }
.desktop-nav a:hover, .login-trigger:hover { opacity: 0.66; }
.login-trigger {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 14px;
  border: 1px solid rgba(245, 241, 232, 0.45);
  border-radius: 999px;
  background: transparent;
  color: var(--cream);
  font: 500 12px/1 "IBM Plex Mono", monospace;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
}
.login-dropdown { position: relative; justify-self: end; }
.login-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 50;
  min-width: 220px;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
  color: var(--graphite);
  box-shadow: 0 18px 45px rgba(0,0,0,.25);
}
.login-menu[hidden] { display: none; }
.login-menu-label {
  display: block;
  padding: 9px 10px 7px;
  color: var(--muted);
  font: 600 9px/1.4 "IBM Plex Mono", monospace;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.login-menu-separator { display: block; height: 1px; margin: 3px 0; background: var(--line); }
.login-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 11px 10px;
  border-radius: 5px;
  font-size: 12px;
}
.login-menu a:hover,
.login-menu a:focus-visible { background: var(--cream-deep); outline: none; }

.hero {
  min-height: min(900px, 100svh);
  display: flex;
  background: var(--graphite);
  color: var(--cream);
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(100%, 1320px);
  margin: 0 auto;
  padding: 138px max(24px, calc((100vw - 1240px) / 2)) 72px;
}
.ecosystem-signature {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: clamp(34px, 6vh, 66px);
}
.tile { display: inline-block; width: 15px; height: 15px; border-radius: 4px; }
.tile--gold { background: var(--gold); }
.tile--wine { background: var(--wine); }
.tile--green { background: var(--green); }
.tile--blue { background: var(--blue); }
.mono-label {
  margin: 0;
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.13em;
  line-height: 1.5;
  text-transform: uppercase;
}
.ecosystem-signature .mono-label {
  margin-left: 8px;
  color: rgba(245, 241, 232, 0.55);
}
.hero h1 {
  max-width: 790px;
  margin: 0;
  font-family: "EB Garamond", Georgia, serif;
  font-size: clamp(54px, 6.45vw, 104px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.91;
}
.hero h1 em { color: var(--gold); font-weight: 500; }
.hero h1 em:last-child { color: #b9909f; }
.hero-lead {
  max-width: 660px;
  margin: 36px 0 0;
  color: rgba(245, 241, 232, 0.72);
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.72;
}
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 38px; }
.primary-button, .text-link, .product-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
}
.primary-button {
  min-height: 50px;
  padding: 0 21px;
  border-radius: 4px;
  background: var(--cream);
  color: var(--graphite);
  transition: transform 160ms ease, background 160ms ease;
}
.primary-button:hover { transform: translateY(-2px); background: #fffdf8; }
.text-link { color: rgba(245, 241, 232, 0.82); }
.hero-note {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  max-width: 520px;
  margin-top: clamp(42px, 7vh, 78px);
}
.hero-note-line {
  flex: 0 0 34px;
  height: 1px;
  margin-top: 9px;
  background: var(--gold);
}
.hero-note p {
  margin: 0;
  color: rgba(245, 241, 232, 0.5);
  font: 500 10px/1.7 "IBM Plex Mono", monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.product-section {
  padding: clamp(86px, 11vw, 150px) max(24px, calc((100vw - 1240px) / 2));
  background: var(--cream);
}
.section-heading {
  display: grid;
  grid-template-columns: 0.7fr 1.5fr 1fr;
  align-items: end;
  gap: 42px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}
.section-heading .mono-label { color: var(--muted); }
.section-heading h2, .conviction h2 {
  margin: 0;
  font-family: "EB Garamond", Georgia, serif;
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.98;
}
.section-heading > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}
.product-axis {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 46px;
}
.product-card {
  position: relative;
  min-height: 480px;
  padding: clamp(40px, 4.6vw, 62px);
  border-radius: 9px;
}
.product-card:last-child {
  padding: clamp(40px, 4.6vw, 62px);
  border-left: 0;
}
.product-card--gold {
  background: var(--gold);
  color: var(--graphite);
}
.product-card--wine {
  background: var(--wine);
  color: var(--cream);
}
.product-topline { display: flex; align-items: center; justify-content: space-between; margin-bottom: 54px; }
.product-index { font: 500 11px/1 "IBM Plex Mono", monospace; }
.product-color { width: 54px; height: 6px; border-radius: 99px; }
.product-card--gold .product-color { background: var(--graphite); }
.product-card--wine .product-color { background: var(--cream); }
.product-card--gold .product-index,
.product-card--gold .mono-label { color: rgba(33, 31, 29, 0.62); }
.product-card--wine .product-index,
.product-card--wine .mono-label { color: rgba(245, 241, 232, 0.64); }
.product-card h3 {
  margin: 13px 0 18px;
  font-family: "EB Garamond", Georgia, serif;
  font-size: clamp(37px, 4vw, 54px);
  font-weight: 500;
  letter-spacing: -0.025em;
}
.product-description { max-width: 500px; margin: 0; font-size: 15px; line-height: 1.75; }
.product-card--gold .product-description { color: rgba(33, 31, 29, 0.72); }
.product-card--wine .product-description { color: rgba(245, 241, 232, 0.72); }
.product-card ul { display: flex; flex-wrap: wrap; gap: 8px; margin: 30px 0 36px; padding: 0; list-style: none; }
.product-card li {
  padding: 8px 11px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font: 500 10px/1 "IBM Plex Mono", monospace;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}
.product-link { justify-content: flex-start; padding-bottom: 7px; border-bottom: 1px solid currentColor; }
.product-card--gold .product-link { color: var(--graphite); }
.product-card--wine .product-link { color: var(--cream); }
.axis-center {
  position: absolute;
  top: -14px;
  left: 50%;
  z-index: 2;
  transform: translateX(-50%);
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--cream);
  color: var(--graphite);
  font: 500 8px/1 "IBM Plex Mono", monospace;
  letter-spacing: 0.12em;
}

.conviction {
  display: grid;
  grid-template-columns: 0.7fr 2.5fr;
  gap: 48px;
  padding: clamp(82px, 10vw, 132px) max(24px, calc((100vw - 1240px) / 2));
  background: var(--green);
  color: var(--cream);
}
.conviction-mark {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  color: rgba(245, 241, 232, 0.72);
}
.conviction h2 { max-width: 900px; }
.conviction p {
  max-width: 820px;
  margin: 30px 0 0;
  color: rgba(245, 241, 232, 0.72);
  font-size: 16px;
  line-height: 1.8;
}

.materials {
  padding: clamp(86px, 11vw, 150px) max(24px, calc((100vw - 1240px) / 2));
  background: var(--graphite);
  color: var(--cream);
}
.materials-intro {
  display: grid;
  grid-template-columns: .7fr 1.5fr 1fr;
  gap: 42px;
  align-items: end;
  margin-bottom: 58px;
}
.materials-intro > .mono-label { color: rgba(245,241,232,.52); }
.materials-intro h2,
.follow h2,
.founder h2,
.site-footer h2 {
  margin: 0;
  font-family: "EB Garamond", Georgia, serif;
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: .98;
}
.materials-intro > p:last-child {
  margin: 0;
  color: rgba(245,241,232,.62);
  font-size: 14px;
  line-height: 1.7;
}
.guides-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.guide-card {
  display: flex;
  flex-direction: column;
  padding: 34px;
  border: 1px solid rgba(245,241,232,.1);
  border-radius: 10px;
  background: var(--cream);
  color: var(--graphite);
  box-shadow: 0 22px 55px rgba(0,0,0,.18);
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}
.guide-card:first-child,
.guide-card:last-child { padding: 34px; }
.guide-card:last-child { border-right: 1px solid rgba(245,241,232,.1); }
.guide-card:hover {
  transform: translateY(-5px);
  background: #fffdf8;
  box-shadow: 0 28px 65px rgba(0,0,0,.25);
}
.guide-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
}
.guide-number { font: 500 10px/1 "IBM Plex Mono", monospace; }
.guide-format {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font: 600 8px/1 "IBM Plex Mono", monospace;
  letter-spacing: .09em;
}
.guide-visual {
  position: relative;
  height: 300px;
  margin: 24px 0 30px;
  overflow: hidden;
  border-radius: 6px;
  background: #f7f2e8;
}
.guide-visual::after {
  content: "HOKMAH EXPOSITOR";
  position: absolute;
  inset: auto 15px 13px auto;
  z-index: 2;
  color: rgba(33,31,29,.48);
  font: 600 7px/1 "IBM Plex Mono", monospace;
  letter-spacing: .11em;
}
.guide-source-shot {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1366px;
  max-width: none;
  height: 768px;
}
.guide-source-shot--ebd,
.guide-source-shot--discipulado { transform: translate(-980px, -420px); }
.guide-source-shot--pregacao { transform: translate(-980px, -545px); }
.guide-card .mono-label { color: var(--muted); }
.guide-card h3 {
  min-height: 76px;
  margin: 10px 0 14px;
  font-family: "EB Garamond", Georgia, serif;
  font-size: clamp(29px, 2.7vw, 37px);
  font-weight: 500;
  letter-spacing: -.025em;
  line-height: 1.04;
}
.guide-description {
  min-height: 66px;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}
.guide-authority {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 18px;
  padding: 15px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.guide-authority strong {
  color: var(--gold);
  font-family: "EB Garamond", Georgia, serif;
  font-size: 27px;
  font-weight: 600;
  line-height: 1;
}
.guide-authority span {
  color: var(--muted);
  font-size: 9px;
  line-height: 1.35;
}
.guide-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  min-height: 58px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}
.guide-stats li {
  height: fit-content;
  padding: 7px 9px;
  border: 1px solid rgba(200,149,44,.38);
  border-radius: 999px;
  color: #655329;
  font: 500 9px/1 "IBM Plex Mono", monospace;
  letter-spacing: .035em;
  text-transform: uppercase;
}
.guide-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: auto;
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 600;
}

.follow {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: clamp(50px, 8vw, 120px);
  padding: clamp(82px, 10vw, 132px) max(24px, calc((100vw - 1240px) / 2));
  background: var(--cream-deep);
}
.follow-copy > .mono-label { margin-bottom: 24px; color: var(--muted); }
.follow-copy > p:not(.mono-label) {
  max-width: 650px;
  margin: 25px 0 34px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}
.social-links { display: flex; gap: 10px; }
.social-links > a {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 13px;
  min-width: 220px;
  padding: 16px;
  border: 1px solid var(--line);
  background: rgba(245,241,232,.55);
}
.social-links span { display: flex; flex-direction: column; }
.social-links strong { font-size: 13px; }
.social-links small { margin-top: 3px; color: var(--muted); font-size: 10px; }
.newsletter {
  position: relative;
  align-self: center;
  padding: 42px;
  overflow: hidden;
  border-radius: 6px;
  background: var(--graphite);
  color: var(--cream);
}
.newsletter::after {
  content: "";
  position: absolute;
  right: -86px;
  bottom: -86px;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(245,241,232,.1);
  border-radius: 50%;
}
.newsletter > .mono-label { margin: 25px 0 12px; color: rgba(245,241,232,.55); }
.newsletter h3 {
  margin: 0;
  font-family: "EB Garamond", Georgia, serif;
  font-size: 34px;
  font-weight: 500;
  line-height: 1;
}
.newsletter > p:not(.mono-label) {
  margin: 20px 0 26px;
  color: rgba(245,241,232,.65);
  font-size: 13px;
  line-height: 1.7;
}
.newsletter-button {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 17px;
  border-radius: 4px;
  background: var(--cream);
  color: var(--graphite);
  font-size: 12px;
  font-weight: 600;
}
.newsletter > small { display: block; margin-top: 10px; color: rgba(245,241,232,.4); font-size: 9px; }

.founder {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  min-height: 720px;
  background: var(--wine);
  color: var(--cream);
}
.founder-photo {
  position: relative;
  overflow: hidden;
}
.founder-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 65%, rgba(92,32,56,.48));
}
.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 49% center;
  filter: grayscale(.15) saturate(.72);
}
.founder-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px max(24px, calc((100vw - 1240px) / 2)) 80px clamp(50px, 7vw, 110px);
}
.founder-copy > svg { margin-bottom: 35px; color: #c49ba9; }
.founder-copy > .mono-label { margin-bottom: 20px; color: rgba(245,241,232,.55); }
.founder-copy > p:not(.mono-label) {
  max-width: 650px;
  margin: 30px 0 34px;
  color: rgba(245,241,232,.72);
  font-size: 16px;
  line-height: 1.85;
}
.founder-signature { display: flex; flex-direction: column; padding-left: 15px; border-left: 2px solid var(--gold); }
.founder-signature span { font-family: "EB Garamond", Georgia, serif; font-size: 20px; }
.founder-signature small {
  margin-top: 4px;
  color: rgba(245,241,232,.5);
  font: 500 9px/1 "IBM Plex Mono", monospace;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.site-footer {
  padding: 82px max(24px, calc((100vw - 1240px) / 2)) 28px;
  background: var(--graphite);
  color: var(--cream);
}
.footer-lead {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
  padding-bottom: 72px;
  border-bottom: 1px solid rgba(245,241,232,.15);
}
.footer-lead .brand-mark { width: 66px; }
.footer-lead .mono-label { margin-bottom: 9px; color: rgba(245,241,232,.45); }
.site-footer h2 { font-size: clamp(34px, 4.5vw, 58px); }
.footer-lead > a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(245,241,232,.55);
  font-size: 13px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, .7fr) 1.7fr;
  gap: 42px;
  padding: 56px 0;
}
.footer-grid > div { display: flex; flex-direction: column; gap: 11px; }
.footer-grid strong {
  margin-bottom: 7px;
  color: rgba(245,241,232,.5);
  font: 600 9px/1 "IBM Plex Mono", monospace;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.footer-grid a, .footer-grid span { color: rgba(245,241,232,.75); font-size: 12px; line-height: 1.5; }
.footer-address { align-items: flex-end; text-align: right; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 23px;
  border-top: 1px solid rgba(245,241,232,.15);
  color: rgba(245,241,232,.38);
  font: 500 9px/1 "IBM Plex Mono", monospace;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.footer-bottom em {
  color: var(--gold);
  font-family: "EB Garamond", Georgia, serif;
  font-size: 14px;
  letter-spacing: .06em;
  text-transform: none;
}

.legal-page { min-height: 100svh; background: var(--cream); }
.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 48px, 1180px);
  margin: 0 auto;
  padding: 24px 0 18px;
  border-bottom: 1px solid var(--line);
}
.legal-brand { display: inline-flex; align-items: center; gap: 10px; }
.legal-brand > span:last-child {
  font-family: "EB Garamond", Georgia, serif;
  font-size: 25px;
  font-weight: 600;
}
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font: 500 10px/1 "IBM Plex Mono", monospace;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.legal-document {
  width: min(100% - 48px, 820px);
  margin: 0 auto;
  padding: 86px 0 110px;
}
.legal-title {
  margin-bottom: 54px;
  padding-bottom: 43px;
  border-bottom: 1px solid var(--line);
}
.legal-title .mono-label { color: var(--wine); }
.legal-title h1 {
  margin: 14px 0 12px;
  font-family: "EB Garamond", Georgia, serif;
  font-size: clamp(48px, 8vw, 76px);
  font-weight: 500;
  letter-spacing: -.04em;
  line-height: 1;
}
.legal-title > p:last-child {
  margin: 0;
  color: var(--muted);
  font: 500 9px/1 "IBM Plex Mono", monospace;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.legal-intro {
  margin: 0 0 48px;
  font-family: "EB Garamond", Georgia, serif;
  font-size: 25px;
  line-height: 1.45;
}
.legal-document section { margin-top: 42px; }
.legal-document section h2 {
  margin: 0 0 13px;
  font-family: "EB Garamond", Georgia, serif;
  font-size: 29px;
  font-weight: 600;
  letter-spacing: -.02em;
}
.legal-document section p,
.legal-document li {
  color: #514c48;
  font-size: 14px;
  line-height: 1.85;
}
.legal-document ul { margin: 14px 0 0; padding-left: 20px; }
.legal-document li + li { margin-top: 9px; }
.legal-highlight {
  padding: 34px;
  border-left: 4px solid var(--gold);
  background: var(--graphite);
  color: var(--cream);
}
.legal-highlight .mono-label { color: rgba(245,241,232,.48); }
.legal-document .legal-highlight h2 { margin-top: 12px; color: var(--cream); }
.legal-document .legal-highlight > p:last-child { color: rgba(245,241,232,.7); }
.legal-contact {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
  color: var(--wine);
  font-size: 13px;
  font-weight: 600;
}
.legal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 27px max(24px, calc((100vw - 1180px) / 2));
  background: var(--graphite);
  color: rgba(245,241,232,.52);
  font: 500 9px/1.5 "IBM Plex Mono", monospace;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.legal-footer a { color: var(--gold); }
.coming-soon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 21px max(24px, calc((100vw - 1240px) / 2));
  background: var(--blue);
  color: var(--cream);
  font: 500 10px/1.5 "IBM Plex Mono", monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.coming-soon div { display: flex; align-items: center; gap: 12px; }

@media (max-width: 900px) {
  .site-header { grid-template-columns: 1fr auto; width: min(100% - 32px, 1320px); }
  .desktop-nav { display: none; }
  .brand-copy small { display: none; }
  .hero-copy { min-height: 720px; padding: 130px 24px 70px; }
  .section-heading { grid-template-columns: 1fr; gap: 20px; }
  .product-axis { grid-template-columns: 1fr; }
  .product-card, .product-card:last-child {
    min-height: 0;
    padding: 42px 30px;
    border-left: 0;
  }
  .product-card:last-child { border-top: 0; }
  .axis-center { display: none; }
  .conviction { grid-template-columns: 1fr; }
  .materials-intro { grid-template-columns: 1fr; gap: 20px; }
  .guides-grid { grid-template-columns: 1fr; gap: 16px; }
  .guide-card, .guide-card:first-child, .guide-card:last-child {
    padding: 30px;
    border: 1px solid rgba(245,241,232,.1);
  }
  .guide-card h3,
  .guide-description,
  .guide-stats { min-height: 0; }
  .follow { grid-template-columns: 1fr; }
  .founder { grid-template-columns: 1fr; }
  .founder-photo { min-height: 64svh; }
  .founder-copy { padding: 72px 24px; }
  .footer-lead { grid-template-columns: auto 1fr; }
  .footer-lead > a { grid-column: 2; justify-self: start; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-address { align-items: flex-start; text-align: left; }
}
@media (max-width: 560px) {
  .brand-mark--compact { width: 36px; }
  .brand-copy strong { font-size: 22px; }
  .login-trigger { padding: 9px 11px; font-size: 10px; }
  .hero-copy { min-height: 680px; }
  .hero h1 { font-size: clamp(49px, 15vw, 70px); }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 19px; }
  .ecosystem-signature .mono-label { max-width: 170px; }
  .coming-soon { align-items: flex-start; gap: 20px; }
  .social-links { flex-direction: column; }
  .newsletter { padding: 32px 24px; }
  .footer-lead { grid-template-columns: 1fr; }
  .footer-lead > a { grid-column: 1; overflow-wrap: anywhere; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; }
  .legal-header, .legal-document { width: min(100% - 32px, 820px); }
  .legal-header { padding-top: 17px; }
  .legal-document { padding-top: 62px; }
  .legal-highlight { padding: 28px 22px; }
  .legal-footer { align-items: flex-start; flex-direction: column; }
}
