:root {
  --ink: #06080b;
  --navy: #0b1320;
  --navy-soft: #111d2e;
  --ivory: #f6f1e8;
  --paper: #fbfaf6;
  --muted: #7a7f86;
  --line: rgba(15, 23, 42, 0.13);
  --gold: #b99352;
  --gold-light: #d7bd82;
  --green: #7c9a82;
  --radius: 8px;
  --max: 1180px;
  --sans: "IBM Plex Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: "Playfair Display", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 106px;
  padding: 12px clamp(20px, 4vw, 56px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(6, 8, 11, 0.86);
  color: #fff;
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 88px;
  height: 88px;
  place-items: center;
  flex: 0 0 88px;
  border: 1px solid rgba(215, 189, 130, 0.28);
  background:
    radial-gradient(circle at 50% 48%, rgba(215, 189, 130, 0.16), transparent 62%),
    #050914;
  color: var(--gold-light);
  border-radius: 16px;
  box-shadow:
    inset 0 0 22px rgba(215, 189, 130, 0.1),
    0 10px 22px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  isolation: isolate;
}

.brand-mark::after {
  display: none;
}

.brand-mark img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.08) contrast(1.08) brightness(1.08);
  opacity: 1;
}

.brand-copy {
  display: grid;
  gap: 3px;
}

.brand-copy strong {
  color: #fff;
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.05;
}

.brand-copy span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.25;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.site-nav a {
  min-height: 42px;
  padding: 11px 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: #fff;
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
}

.language-switcher button {
  min-width: 36px;
  min-height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.68);
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 700;
}

.language-switcher button.is-active,
.language-switcher button:hover {
  border-color: rgba(215, 189, 130, 0.62);
  color: var(--gold-light);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: #fff;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 0 auto 6px;
  background: currentColor;
}

.nav-toggle span:last-child {
  margin-bottom: 0;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(760px, 84vh);
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}

.hero-image,
.hero-overlay,
.hero-inner {
  grid-area: 1 / 1;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(6, 8, 11, 0.94) 0%, rgba(6, 8, 11, 0.78) 34%, rgba(6, 8, 11, 0.28) 70%),
    linear-gradient(0deg, rgba(6, 8, 11, 0.85), rgba(6, 8, 11, 0.06) 42%);
}

.hero-inner {
  position: relative;
  width: calc(100% - 40px);
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(78px, 10vw, 140px) 0 clamp(56px, 8vw, 96px);
  align-self: end;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2 {
  letter-spacing: 0;
}

.hero h1 {
  max-width: 750px;
  margin-bottom: 22px;
  font-family: var(--serif);
  font-size: 6.4rem;
  line-height: 0.94;
  overflow-wrap: break-word;
}

.hero h1 .line {
  display: block;
}

.hero-subtitle {
  max-width: 590px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.25rem;
  overflow-wrap: break-word;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 700;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  background: var(--gold);
  color: #111;
}

.button-primary:hover {
  background: var(--gold-light);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.button-outline {
  border-color: rgba(185, 147, 82, 0.45);
  color: var(--gold-light);
  background: transparent;
}

.signal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
}

.signal-row span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
}

.section {
  width: calc(100% - 40px);
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(58px, 7vw, 92px) 0;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: start;
}

.section h2,
.page-hero h1,
.cta-band h2 {
  font-family: var(--serif);
  font-size: 4rem;
  line-height: 1;
}

.body-copy {
  color: #3d424a;
  font-size: 1.08rem;
}

.brand-seal {
  max-width: 360px;
  margin-top: 28px;
  padding: 10px;
  border: 1px solid rgba(215, 189, 130, 0.22);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 48%, rgba(215, 189, 130, 0.12), transparent 66%),
    linear-gradient(180deg, rgba(7, 16, 29, 0.96), rgba(5, 10, 18, 0.98));
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.18);
}

.brand-seal img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  filter: saturate(1.05) contrast(1.04);
}

.issue-grid,
.service-grid,
.method-grid,
.expertise-grid,
.founder-role-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 52px;
  background: var(--line);
  border: 1px solid var(--line);
}

.audit-offer-section {
  width: 100%;
  max-width: none;
  padding-right: max(20px, calc((100vw - var(--max)) / 2));
  padding-left: max(20px, calc((100vw - var(--max)) / 2));
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.audit-offer-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.65fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(32px, 5vw, 54px);
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(185, 147, 82, 0.1), rgba(255, 255, 255, 0) 42%),
    #fff;
}

.audit-offer-panel h2 {
  max-width: 760px;
  margin-bottom: 18px;
  font-family: var(--serif);
  font-size: 3.35rem;
  line-height: 1;
}

.audit-offer-panel p {
  max-width: 680px;
  color: #4f5660;
  font-size: 1.08rem;
}

.audit-offer-panel .button {
  margin-top: 12px;
}

.audit-offer-list {
  display: grid;
  gap: 1px;
  padding: 0;
  margin: 0;
  list-style: none;
  border: 1px solid var(--line);
  background: var(--line);
}

.audit-offer-list li {
  min-height: 56px;
  padding: 16px 18px;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.audit-offer-list li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  background: var(--gold);
}

.issue-grid article,
.service-grid article,
.method-grid article,
.expertise-grid article,
.founder-role-grid article {
  min-height: 220px;
  padding: 28px;
  background: var(--paper);
}

.issue-grid span,
.method-grid span,
.contact-card span,
.expertise-grid span,
.founder-role-grid span {
  color: var(--gold);
  font-weight: 700;
}

.issue-grid h3,
.service-grid h3,
.method-grid h3,
.expertise-grid h3 {
  margin: 18px 0 12px;
  font-size: 1.15rem;
}

.issue-grid p,
.service-grid p,
.method-grid p,
.expertise-grid p,
.founder-role-grid p {
  color: #555b64;
}

.services-section,
.philosophy-section,
.call-section,
.mission-detail-section {
  border-top: 1px solid var(--line);
}

.mission-section {
  width: 100%;
  padding: clamp(58px, 8vw, 92px) max(20px, calc((100vw - var(--max)) / 2));
  background: var(--navy);
  color: #fff;
}

.mission-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: start;
}

.mission-inner h2 {
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: 3.6rem;
  line-height: 1;
}

.mission-copy {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.mission-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.mission-points span {
  padding: 10px 12px;
  border: 1px solid rgba(215, 189, 130, 0.32);
  color: var(--gold-light);
  font-weight: 700;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.62fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: end;
}

.section-heading p {
  color: #555b64;
}

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.expertise-section,
.founder-roles-section,
.revolution-section,
.editorial-section,
.glossary-section {
  border-top: 1px solid var(--line);
}

.expertise-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.comparison-grid,
.founder-fact-grid,
.founder-story-panel,
.founder-photo-grid,
.industry-grid,
.knowledge-preview-grid,
.blog-note-grid,
.term-grid,
.receive-grid,
.scenario-grid {
  display: grid;
  gap: 1px;
  margin-top: 42px;
  border: 1px solid var(--line);
  background: var(--line);
}

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

.comparison-grid article,
.founder-fact-grid article,
.founder-story-panel article,
.founder-photo-grid article,
.knowledge-preview-grid article,
.blog-note-grid article,
.term-grid article,
.receive-grid article,
.scenario-grid article {
  padding: 28px;
  background: #fff;
}

.comparison-grid article {
  min-height: 330px;
}

.comparison-grid article.is-highlighted {
  background: var(--navy);
  color: #fff;
}

.comparison-grid span,
.founder-fact-grid span,
.founder-story-panel span,
.founder-photo-grid span,
.role-tags span,
.knowledge-preview-grid span,
.blog-note-grid span,
.term-grid span,
.receive-grid span,
.scenario-grid span {
  color: var(--gold);
  font-weight: 700;
}

.comparison-grid h3,
.founder-photo-grid h3,
.knowledge-preview-grid h3,
.blog-note-grid h3,
.term-grid h3,
.receive-grid h3,
.scenario-grid h3 {
  margin: 16px 0 14px;
  font-size: 1.18rem;
}

.comparison-grid ul {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.comparison-grid li {
  padding-left: 18px;
  border-left: 2px solid var(--gold);
  color: #555b64;
}

.comparison-grid article.is-highlighted li,
.comparison-grid article.is-highlighted p {
  color: rgba(255, 255, 255, 0.74);
}

.founder-fact-grid,
.founder-story-panel,
.knowledge-preview-grid,
.blog-note-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.founder-photo-grid,
.scenario-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.founder-photo-grid.team-photo-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.founder-photo-grid article {
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  min-height: 260px;
}

.founder-photo-grid.team-photo-grid article {
  grid-template-columns: 1fr;
  align-items: start;
}

.founder-photo-grid p,
.scenario-grid p {
  color: #565d66;
}

.founder-portrait {
  display: grid;
  aspect-ratio: 4 / 5;
  place-items: end start;
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(185, 147, 82, 0.35);
  background:
    linear-gradient(160deg, rgba(215, 189, 130, 0.18), rgba(11, 19, 32, 0.1) 42%),
    linear-gradient(0deg, rgba(6, 8, 11, 0.72), rgba(6, 8, 11, 0.05)),
    var(--navy);
}

.founder-portrait span {
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--serif);
  font-size: 2.2rem;
  line-height: 1;
}

.founder-portrait-irakli {
  background:
    linear-gradient(160deg, rgba(215, 189, 130, 0.2), rgba(11, 19, 32, 0.12) 42%),
    linear-gradient(0deg, rgba(6, 8, 11, 0.78), rgba(6, 8, 11, 0.08)),
    #111827;
}

.founder-portrait-otari {
  background:
    linear-gradient(160deg, rgba(124, 154, 130, 0.22), rgba(11, 19, 32, 0.1) 42%),
    linear-gradient(0deg, rgba(6, 8, 11, 0.78), rgba(6, 8, 11, 0.08)),
    #101722;
}

.why-built-section,
.founder-photos-section,
.audit-receive-section,
.contact-audit-section {
  border-top: 1px solid var(--line);
}

.receive-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.receive-grid article {
  min-height: 150px;
}

.scenario-grid article {
  min-height: 310px;
}

.scenario-grid strong {
  color: var(--ink);
}

.founder-fact-grid article,
.founder-story-panel article {
  min-height: 210px;
}

.founder-fact-grid strong,
.founder-story-panel strong {
  display: block;
  margin: 14px 0 12px;
  color: var(--ink);
  font-size: 1.08rem;
}

.founder-fact-grid p,
.founder-story-panel p,
.knowledge-preview-grid p,
.blog-note-grid p,
.term-grid p {
  color: #565d66;
}

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

.founder-role-grid h2 {
  margin: 18px 0 14px;
  font-family: var(--serif);
  font-size: 2.35rem;
  line-height: 1;
}

.role-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}

.role-tags span {
  padding: 8px 10px;
  border: 1px solid rgba(185, 147, 82, 0.28);
  background: rgba(185, 147, 82, 0.08);
  font-size: 0.86rem;
}

.differentiator-section {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: center;
  border-top: 1px solid var(--line);
}

.statement-block h2 {
  margin-bottom: 22px;
}

.statement-block p:last-child {
  max-width: 760px;
  color: #3d424a;
  font-size: 1.12rem;
}

.principle-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.principle-list div {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}

.principle-list span {
  width: 9px;
  height: 9px;
  background: var(--green);
}

.industries-section {
  width: 100%;
  max-width: none;
  padding-right: max(20px, calc((100vw - var(--max)) / 2));
  padding-left: max(20px, calc((100vw - var(--max)) / 2));
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    var(--navy);
  color: #fff;
}

.industries-section .section-kicker {
  color: var(--gold-light);
}

.industry-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.78fr);
  gap: clamp(32px, 7vw, 90px);
  align-items: end;
  max-width: var(--max);
  margin: 0 auto;
}

.industry-intro {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
}

.industry-focus-panel {
  padding: 28px;
  border: 1px solid rgba(215, 189, 130, 0.28);
  background: rgba(255, 255, 255, 0.06);
}

.industry-focus-panel span {
  color: var(--gold-light);
  font-weight: 700;
}

.industry-focus-panel p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.74);
}

.industry-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.12);
}

.industry-grid article {
  min-height: 240px;
  padding: 28px;
  background: var(--navy-soft);
}

.industry-grid span {
  color: var(--gold-light);
  font-weight: 700;
}

.industry-grid h3 {
  margin: 18px 0 14px;
  color: #fff;
  font-size: 1.18rem;
}

.industry-grid p {
  color: rgba(255, 255, 255, 0.68);
}

.industry-signal-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: var(--max);
  margin: 1px auto 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 0;
  background: rgba(255, 255, 255, 0.12);
}

.industry-signal-strip span {
  min-height: 74px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--gold-light);
  font-weight: 700;
}

.architecture-section {
  border-top: 1px solid var(--line);
}

.architecture-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.12);
}

.architecture-section {
  width: 100%;
  max-width: none;
  padding-left: max(20px, calc((100vw - var(--max)) / 2));
  padding-right: max(20px, calc((100vw - var(--max)) / 2));
  background: var(--navy);
  color: #fff;
}

.architecture-flow div {
  min-height: 190px;
  padding: 28px;
  background: var(--navy-soft);
}

.architecture-flow strong {
  display: block;
  margin-bottom: 16px;
  color: var(--gold-light);
  font-size: 1.18rem;
}

.architecture-flow span {
  color: rgba(255, 255, 255, 0.68);
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  padding: clamp(52px, 7vw, 84px) max(20px, calc((100vw - var(--max)) / 2));
  background: var(--ink);
  color: #fff;
}

.cta-band h2 {
  max-width: 820px;
  margin-bottom: 0;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 24px;
  align-items: center;
  padding: 34px clamp(20px, 4vw, 56px);
  background: #050608;
  color: rgba(255, 255, 255, 0.7);
}

.site-footer strong {
  color: #fff;
}

.site-footer p {
  margin: 4px 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
}

.page-hero {
  display: grid;
  min-height: 440px;
  align-items: end;
  padding: 128px max(20px, calc((100vw - var(--max)) / 2)) 72px;
  background:
    linear-gradient(90deg, rgba(6, 8, 11, 0.92), rgba(11, 19, 32, 0.72)),
    url("mm-operations-hero.png") center / cover;
  color: #fff;
}

.page-hero > div {
  max-width: 820px;
}

.page-hero p:last-child {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.12rem;
}

.legal-hero {
  min-height: 360px;
}

.legal-content {
  display: grid;
  gap: 28px;
  max-width: 920px;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: #565d66;
  font-size: 0.94rem;
}

.legal-meta span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.42);
}

.legal-content article {
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.legal-content h2 {
  margin-bottom: 10px;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.legal-content p,
.legal-content li {
  color: #3d424a;
  font-size: 1.02rem;
}

.legal-content ul {
  margin: 10px 0 0;
  padding-left: 20px;
}

.legal-content a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(185, 147, 82, 0.55);
  text-underline-offset: 3px;
}

.about-hero,
.contact-hero {
  background:
    linear-gradient(90deg, rgba(6, 8, 11, 0.95), rgba(11, 19, 32, 0.8)),
    url("mm-operations-hero.png") center / cover;
}

.form-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.55fr);
  gap: 36px;
  align-items: start;
}

.audit-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  background: #fff;
}

.form-header,
.span-2 {
  grid-column: 1 / -1;
}

.form-header h2,
.audit-side h2,
.contact-card h2 {
  margin-bottom: 8px;
  font-size: 1.35rem;
}

.form-header p {
  color: #565d66;
}

label {
  display: grid;
  gap: 8px;
  color: #333943;
  font-size: 0.92rem;
  font-weight: 700;
}

.hidden-field {
  display: none;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fbfaf7;
  color: var(--ink);
  padding: 12px 13px;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(185, 147, 82, 0.25);
  border-color: var(--gold);
}

.consent-label {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  color: #4f5660;
  font-size: 0.86rem;
  font-weight: 500;
  line-height: 1.45;
}

.consent-label input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
  padding: 0;
  accent-color: var(--gold);
}

.consent-label a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(185, 147, 82, 0.55);
  text-underline-offset: 3px;
}

.audit-form button[disabled] {
  opacity: 0.65;
  cursor: progress;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: #3d424a;
  font-weight: 700;
}

.audit-side {
  position: sticky;
  top: 104px;
  padding: 30px;
  border: 1px solid var(--line);
  background: var(--navy);
  color: #fff;
}

.audit-side ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.76);
}

.audit-side li {
  padding-left: 18px;
  border-left: 2px solid var(--gold);
}

.audit-result {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.audit-result span {
  color: var(--gold-light);
  font-weight: 700;
}

.audit-result p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.contact-card {
  min-height: 220px;
  padding: 28px;
  background: #fff;
  transition: background 160ms ease, color 160ms ease;
}

.contact-card:hover {
  background: var(--navy);
  color: #fff;
}

.contact-card p {
  color: #5a6068;
}

.contact-card:hover p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-audit-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid var(--line);
  background: #fff;
}

.contact-audit-panel h2 {
  margin-bottom: 12px;
  font-family: var(--serif);
  font-size: 2.8rem;
  line-height: 1;
}

.contact-audit-panel p {
  max-width: 760px;
  margin-bottom: 0;
  color: #565d66;
  font-size: 1.05rem;
}

.knowledge-section {
  border-top: 1px solid var(--line);
}

.knowledge-preview-grid article,
.blog-note-grid article {
  min-height: 230px;
}

.term-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.term-grid article {
  min-height: 230px;
}

.term-grid span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 4px 9px;
  border: 1px solid rgba(185, 147, 82, 0.35);
  background: rgba(185, 147, 82, 0.08);
}

.text-link {
  display: inline-flex;
  margin-top: 26px;
  color: var(--gold);
  font-weight: 700;
}

.text-link::after {
  content: "";
  width: 38px;
  height: 1px;
  margin: auto 0 auto 12px;
  background: currentColor;
}

.status-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 22% 8%, rgba(215, 189, 130, 0.11), transparent 28%),
    radial-gradient(circle at 80% 4%, rgba(124, 154, 130, 0.1), transparent 24%),
    linear-gradient(180deg, #07090d 0%, #0b111c 46%, #f6f1e8 46%, #f6f1e8 100%);
}

.status-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px clamp(20px, 4vw, 56px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(6, 8, 11, 0.88);
  color: #fff;
  backdrop-filter: blur(18px);
}

.status-header-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.status-header-actions a {
  min-height: 38px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.86rem;
}

.status-header-actions a:hover {
  color: #fff;
  border-color: rgba(215, 189, 130, 0.46);
}

.status-shell {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: 54px 0 80px;
}

.status-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: clamp(24px, 5vw, 80px);
  align-items: end;
  color: #fff;
}

.status-hero h1 {
  max-width: 820px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 0.95;
}

.status-hero p {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
}

.status-summary {
  display: grid;
  gap: 8px;
  padding: 22px;
  border: 1px solid rgba(215, 189, 130, 0.28);
  background:
    linear-gradient(145deg, rgba(215, 189, 130, 0.12), rgba(255, 255, 255, 0.02)),
    rgba(5, 8, 13, 0.82);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}

.status-summary span,
.status-summary small {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.84rem;
}

.status-summary strong {
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 4.2rem;
  line-height: 0.95;
}

.status-summary p {
  margin: 0;
  color: #fff;
  font-size: 1rem;
}

.status-connection {
  display: inline-flex;
  width: fit-content;
  margin-top: 6px;
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.72);
  font-style: normal;
  font-size: 0.72rem;
}

.status-connection.is-online {
  border-color: rgba(124, 154, 130, 0.6);
  color: #cfe8d5;
}

.status-connection.is-local {
  border-color: rgba(215, 189, 130, 0.54);
  color: var(--gold-light);
}

.status-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 22px;
  margin-top: 46px;
}

.status-symbol-panel,
.status-side-panel,
.status-section,
.status-update-note {
  border: 1px solid rgba(15, 23, 42, 0.14);
  background: rgba(251, 250, 246, 0.96);
}

.status-symbol-panel {
  min-height: 680px;
  padding: clamp(18px, 4vw, 34px);
}

.project-star {
  position: relative;
  width: min(100%, 670px);
  aspect-ratio: 1;
  margin: 0 auto;
  background:
    radial-gradient(circle at 50% 50%, rgba(11, 19, 32, 0.08), transparent 50%),
    #0b111c;
  box-shadow: inset 0 0 0 1px rgba(215, 189, 130, 0.12);
  overflow: hidden;
}

.project-star svg {
  position: absolute;
  inset: 4%;
  width: 92%;
  height: 92%;
}

.star-core {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 190px;
  min-height: 190px;
  place-items: center;
  padding: 20px;
  border: 1px solid rgba(215, 189, 130, 0.38);
  background:
    radial-gradient(circle at 50% 20%, rgba(215, 189, 130, 0.16), transparent 58%),
    rgba(6, 8, 11, 0.92);
  color: #fff;
  text-align: center;
  transform: translate(-50%, -50%);
}

.star-core span {
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 3rem;
  line-height: 0.9;
}

.star-core strong {
  font-size: 1rem;
}

.star-core small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.76rem;
}

.star-node {
  position: absolute;
  top: var(--y);
  left: var(--x);
  display: grid;
  width: 132px;
  min-height: 88px;
  gap: 5px;
  place-items: center;
  padding: 12px 10px;
  border: 1px solid rgba(215, 189, 130, 0.36);
  background: rgba(6, 8, 11, 0.92);
  color: #fff;
  text-align: center;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
  transform: translate(-50%, -50%);
}

.star-node span {
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 1.7rem;
  line-height: 1;
}

.star-node strong {
  font-size: 0.76rem;
  line-height: 1.2;
}

.star-node.is-completed {
  border-color: rgba(215, 189, 130, 0.74);
}

.star-node.is-active,
.star-node.is-ready {
  border-color: rgba(124, 154, 130, 0.78);
}

.star-node.is-planned {
  opacity: 0.72;
}

.status-side-panel {
  display: grid;
  align-content: start;
  gap: 24px;
  padding: 28px;
}

.status-side-panel h2,
.status-section h2,
.status-update-note h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1;
}

.status-side-panel ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.status-side-panel li {
  padding-left: 16px;
  border-left: 2px solid var(--gold);
  color: rgba(6, 8, 11, 0.74);
}

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

.status-metrics div {
  min-height: 92px;
  padding: 14px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #fff;
}

.status-metrics span {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
}

.status-metrics strong {
  display: block;
  margin-top: 9px;
  font-size: 1rem;
}

.status-section {
  margin-top: 24px;
  padding: clamp(22px, 4vw, 34px);
}

.status-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.system-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(15, 23, 42, 0.12);
  border-left: 1px solid rgba(15, 23, 42, 0.12);
}

.system-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 250px;
  padding: 22px;
  border-right: 1px solid rgba(15, 23, 42, 0.12);
  border-bottom: 1px solid rgba(15, 23, 42, 0.12);
  background: #fff;
}

.system-card div:first-child {
  display: grid;
  gap: 8px;
}

.system-card span {
  width: fit-content;
  padding: 4px 8px;
  border: 1px solid rgba(185, 147, 82, 0.28);
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.system-card strong {
  font-size: 1.18rem;
}

.system-card p {
  margin: 0;
  color: rgba(6, 8, 11, 0.7);
}

.system-card small {
  color: rgba(6, 8, 11, 0.58);
  line-height: 1.45;
}

.system-progress {
  height: 7px;
  overflow: hidden;
  background: rgba(15, 23, 42, 0.1);
}

.system-progress i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.milestone-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.milestone {
  display: grid;
  gap: 10px;
  min-height: 190px;
  padding: 20px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #fff;
}

.milestone span {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
}

.milestone p {
  margin: 0;
  color: rgba(6, 8, 11, 0.66);
}

.milestone.is-done {
  background: #0b111c;
  color: #fff;
}

.milestone.is-done p {
  color: rgba(255, 255, 255, 0.68);
}

.status-update-note {
  display: grid;
  grid-template-columns: minmax(260px, 0.6fr) minmax(0, 1fr);
  gap: 30px;
  margin-top: 24px;
  padding: clamp(22px, 4vw, 34px);
}

.status-update-note p {
  margin: 0;
  color: rgba(6, 8, 11, 0.72);
}

.status-update-note code {
  color: #0b1320;
  font-weight: 700;
}

.process-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(251, 250, 246, 0.96)),
    linear-gradient(135deg, rgba(215, 189, 130, 0.12), transparent 42%);
}

.sphere-section {
  background:
    linear-gradient(180deg, rgba(251, 250, 246, 0.98), rgba(255, 255, 255, 0.96)),
    linear-gradient(135deg, rgba(6, 8, 11, 0.05), transparent 44%);
}

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

.sphere-card {
  display: grid;
  align-content: start;
  gap: 13px;
  min-height: 300px;
  padding: 20px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #fff;
}

.sphere-card:nth-child(1),
.sphere-card:nth-child(6) {
  background: #0b111c;
  color: #fff;
}

.sphere-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.sphere-card-top span {
  width: fit-content;
  padding: 4px 8px;
  border: 1px solid rgba(185, 147, 82, 0.28);
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sphere-card-top b {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
}

.sphere-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 2.8rem);
  line-height: 0.98;
}

.sphere-card p {
  margin: 0;
  color: rgba(6, 8, 11, 0.68);
}

.sphere-card:nth-child(1) p,
.sphere-card:nth-child(6) p,
.sphere-card:nth-child(1) small,
.sphere-card:nth-child(6) small {
  color: rgba(255, 255, 255, 0.7);
}

.sphere-card dl {
  display: grid;
  gap: 7px;
  margin: 0;
}

.sphere-card dl div {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 8px;
}

.sphere-card dt {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.sphere-card dd {
  margin: 0;
  color: rgba(6, 8, 11, 0.72);
}

.sphere-card:nth-child(1) dd,
.sphere-card:nth-child(6) dd {
  color: rgba(255, 255, 255, 0.76);
}

.sphere-card small {
  color: rgba(6, 8, 11, 0.55);
  line-height: 1.45;
}

.process-map {
  display: grid;
  gap: 18px;
}

.process-group {
  display: grid;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(15, 23, 42, 0.12);
}

.process-group-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.process-group-heading div {
  display: grid;
  gap: 5px;
}

.process-group-heading span {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.process-group-heading strong {
  font-size: 1.2rem;
}

.process-group-heading p {
  max-width: 720px;
  margin: 0;
  color: rgba(6, 8, 11, 0.62);
}

.process-group-heading b {
  color: #0b111c;
  font-family: var(--serif);
  font-size: 2.2rem;
  line-height: 1;
}

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

.process-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 310px;
  padding: 18px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #fff;
}

.process-card.is-completed,
.process-card.is-done {
  background: #0b111c;
  color: #fff;
}

.process-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.process-card-top span {
  width: fit-content;
  padding: 4px 8px;
  border: 1px solid rgba(185, 147, 82, 0.28);
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.process-card-top b {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.6rem;
}

.process-card h3 {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.18;
}

.process-card em {
  width: fit-content;
  padding: 4px 8px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  color: rgba(6, 8, 11, 0.58);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
}

.process-card.is-completed em,
.process-card.is-done em {
  border-color: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.62);
}

.process-card p {
  margin: 0;
  color: rgba(6, 8, 11, 0.68);
}

.process-card.is-completed p,
.process-card.is-done p,
.process-card.is-completed small,
.process-card.is-done small {
  color: rgba(255, 255, 255, 0.7);
}

.process-card dl {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-top: 4px;
}

.process-card dl div {
  display: grid;
  gap: 2px;
}

.process-card dt {
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.process-card dd {
  margin: 0;
  color: rgba(6, 8, 11, 0.72);
}

.process-card.is-completed dd,
.process-card.is-done dd {
  color: rgba(255, 255, 255, 0.78);
}

.process-card small {
  color: rgba(6, 8, 11, 0.58);
  line-height: 1.45;
}

.empty-state {
  margin: 0;
  color: var(--muted);
}

.plan-shell {
  width: min(1180px, calc(100% - 40px));
}

.plan-hero {
  display: grid;
  gap: 22px;
  padding: clamp(32px, 6vw, 72px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(120deg, rgba(6, 8, 11, 0.98), rgba(10, 17, 28, 0.88)),
    url("mm-operations-hero.png") center/cover;
  color: #fff;
}

.plan-hero h1 {
  max-width: 900px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.2rem, 7vw, 6.6rem);
  line-height: 0.94;
}

.plan-hero p {
  max-width: 740px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.12rem;
}

.plan-flow {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  margin-top: 18px;
  border: 1px solid rgba(215, 189, 130, 0.28);
  background: rgba(215, 189, 130, 0.28);
}

.plan-flow span {
  min-height: 74px;
  display: grid;
  place-items: center;
  padding: 12px;
  background: rgba(6, 8, 11, 0.68);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
  text-align: center;
}

.plan-grid,
.plan-steps,
.plan-sphere-grid,
.scorecard-grid,
.founder-discipline {
  display: grid;
  gap: 12px;
}

.plan-grid {
  grid-template-columns: 0.95fr 1.05fr;
  margin-top: 24px;
}

.plan-card,
.plan-section {
  border: 1px solid rgba(15, 23, 42, 0.14);
  background: rgba(251, 250, 246, 0.96);
}

.plan-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 280px;
  padding: clamp(22px, 4vw, 34px);
}

.plan-card.is-dark {
  background: #0b111c;
  color: #fff;
}

.plan-card span {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-card h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 0.98;
}

.plan-card p,
.plan-card li {
  color: rgba(6, 8, 11, 0.7);
}

.plan-card.is-dark p {
  color: rgba(255, 255, 255, 0.72);
}

.plan-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.plan-card li {
  padding-left: 14px;
  border-left: 2px solid var(--gold);
}

.plan-section {
  margin-top: 24px;
  padding: clamp(22px, 4vw, 34px);
}

.plan-steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.plan-sphere-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.plan-sphere-grid article {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 220px;
  padding: 20px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #fff;
}

.plan-sphere-grid article:nth-child(1),
.plan-sphere-grid article:nth-child(6) {
  background: #0b111c;
  color: #fff;
}

.plan-sphere-grid span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
}

.plan-sphere-grid h3 {
  margin: 0;
  font-size: 1.1rem;
}

.plan-sphere-grid p {
  margin: 0;
  color: rgba(6, 8, 11, 0.68);
}

.plan-sphere-grid article:nth-child(1) p,
.plan-sphere-grid article:nth-child(6) p {
  color: rgba(255, 255, 255, 0.7);
}

.plan-steps article,
.scorecard-grid div,
.founder-discipline article {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 220px;
  padding: 20px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #fff;
}

.plan-steps b,
.scorecard-grid span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
}

.plan-steps h3,
.founder-discipline h3 {
  margin: 0;
  font-size: 1.1rem;
}

.plan-steps p,
.automation-gate p,
.automation-gate li,
.founder-discipline p {
  margin: 0;
  color: rgba(6, 8, 11, 0.7);
}

.scorecard-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.scorecard-grid div {
  min-height: 150px;
}

.scorecard-grid strong {
  font-size: 1.05rem;
  line-height: 1.25;
}

.automation-gate {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1fr);
  gap: 28px;
}

.automation-gate strong {
  color: #0b111c;
}

.automation-gate ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.automation-gate li {
  padding-left: 16px;
  border-left: 2px solid var(--gold);
}

.founder-discipline {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 980px) {
  .hero h1 {
    font-size: 5.1rem;
  }

  .section h2,
  .page-hero h1,
  .cta-band h2 {
    font-size: 3.25rem;
  }

  .status-hero,
  .status-layout,
  .status-update-note {
    grid-template-columns: 1fr;
  }

  .system-list,
  .milestone-list,
  .sphere-map,
  .process-grid,
  .plan-sphere-grid,
  .plan-steps,
  .scorecard-grid,
  .founder-discipline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .plan-grid,
  .automation-gate {
    grid-template-columns: 1fr;
  }

  .plan-flow {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .issue-grid,
  .architecture-flow,
  .contact-grid,
  .comparison-grid,
  .founder-fact-grid,
  .founder-story-panel,
  .founder-photo-grid,
  .industry-grid,
  .knowledge-preview-grid,
  .blog-note-grid,
  .term-grid,
  .receive-grid,
  .scenario-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .founder-photo-grid.team-photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .audit-offer-panel,
  .contact-audit-panel {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .industry-signal-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-grid,
  .method-grid,
  .expertise-grid,
  .founder-role-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .two-column,
  .section-heading,
  .differentiator-section,
  .industry-layout,
  .form-section,
  .mission-inner,
  .cta-band,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .cta-band {
    align-items: start;
  }

  .audit-side {
    position: static;
  }
}

@media (max-width: 720px) {
  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: center;
    min-height: 160px;
    gap: 10px;
    padding: 14px 14px 16px;
    max-width: 100vw;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
      rgba(6, 8, 11, 0.92);
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
    gap: 11px;
    min-width: 0;
  }

  .brand-copy {
    display: grid;
  }

  .brand-copy strong {
    color: #fff;
    font-size: 1rem;
    line-height: 1.1;
  }

  .brand-copy span {
    display: none;
  }

  .brand-mark {
    width: 84px;
    height: 84px;
    flex: 0 0 auto;
  }

  .nav-toggle {
    display: block;
    order: 3;
    position: absolute;
    top: 16px;
    right: 12px;
    width: 36px;
    min-width: 36px;
  }

  .site-nav {
    position: absolute;
    top: 68px;
    right: 20px;
    left: 20px;
    display: none;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(6, 8, 11, 0.96);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    min-height: 46px;
  }

  .language-switcher {
    margin-left: auto;
    order: 2;
    position: absolute;
    top: 19px;
    right: 56px;
    width: 98px;
  }

  .language-switcher button {
    min-width: 30px;
    padding: 0 6px;
    font-size: 0.7rem;
  }

  .nav-toggle {
    display: none;
  }

  .language-switcher {
    grid-column: 1;
    grid-row: 2;
    justify-self: start;
    position: static;
    width: auto;
    margin-left: 0;
    gap: 3px;
  }

  .language-switcher button {
    min-width: 32px;
    min-height: 34px;
    padding: 0 5px;
    font-size: 0.68rem;
  }

  .site-nav,
  .site-nav.is-open {
    grid-column: 1 / -1;
    grid-row: 3;
    position: static;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    justify-self: center;
    width: 100%;
    max-width: 340px;
    margin-left: 0;
    padding: 11px 0 0;
    overflow: visible;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
  }

  .site-nav a {
    min-height: 36px;
    padding: 8px 2px;
    text-align: center;
    white-space: normal;
    line-height: 1.2;
    font-size: 0.76rem;
  }

  .site-nav a:nth-child(4) {
    grid-column: 1 / 2;
  }

  .site-nav a:nth-child(5) {
    grid-column: 2 / 3;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    width: auto;
    margin-right: 20px;
    margin-left: 20px;
    padding-top: 68px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(6, 8, 11, 0.94), rgba(6, 8, 11, 0.68)),
      linear-gradient(0deg, rgba(6, 8, 11, 0.9), rgba(6, 8, 11, 0.18));
  }

  .hero h1 {
    font-size: 3.12rem;
    line-height: 1;
  }

  .audit-offer-panel h2,
  .contact-audit-panel h2 {
    font-size: 2.45rem;
  }

  .mission-inner h2 {
    font-size: 2.75rem;
  }

  html[lang="ka"] .hero h1 {
    font-size: 2.85rem;
    line-height: 1.08;
  }

  .hero-subtitle {
    font-size: 1rem;
    max-width: 330px;
  }

  .issue-grid,
  .service-grid,
  .method-grid,
  .expertise-grid,
  .founder-role-grid,
  .comparison-grid,
  .founder-fact-grid,
  .founder-story-panel,
  .founder-photo-grid,
  .industry-grid,
  .industry-signal-strip,
  .knowledge-preview-grid,
  .blog-note-grid,
  .term-grid,
  .receive-grid,
  .scenario-grid,
  .architecture-flow,
  .contact-grid,
  .audit-form {
    grid-template-columns: 1fr;
  }

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

  .issue-grid article,
  .service-grid article,
  .method-grid article,
  .comparison-grid article,
  .founder-fact-grid article,
  .founder-story-panel article,
  .founder-photo-grid article,
  .industry-grid article,
  .knowledge-preview-grid article,
  .blog-note-grid article,
  .term-grid article,
  .receive-grid article,
  .scenario-grid article,
  .contact-card {
    min-height: auto;
  }

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

  .founder-portrait {
    max-width: 210px;
  }

  .page-hero {
    min-height: 390px;
    padding-top: 104px;
  }

  .button {
    width: 100%;
  }

  .hero-actions,
  .signal-row {
    width: 100%;
    max-width: 330px;
  }

  .signal-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .status-header {
    display: grid;
    gap: 14px;
    padding: 14px;
  }

  .status-header .brand-mark {
    width: 72px;
    height: 72px;
  }

  .status-header-actions {
    justify-content: flex-start;
  }

  .status-shell {
    width: min(100% - 28px, 1240px);
    padding-top: 36px;
  }

  .status-hero h1 {
    font-size: 3.1rem;
  }

  .status-summary strong {
    font-size: 3.35rem;
  }

  .status-symbol-panel {
    min-height: auto;
    padding: 14px;
  }

  .project-star {
    min-height: 470px;
  }

  .star-core {
    width: 142px;
    min-height: 142px;
  }

  .star-core span {
    font-size: 2.3rem;
  }

  .star-node {
    width: 104px;
    min-height: 74px;
    padding: 9px 7px;
  }

  .star-node span {
    font-size: 1.35rem;
  }

  .star-node strong {
    font-size: 0.66rem;
  }

  .status-metrics,
  .system-list,
  .milestone-list,
  .sphere-map,
  .process-grid,
  .plan-flow,
  .plan-sphere-grid,
  .plan-steps,
  .scorecard-grid,
  .founder-discipline {
    grid-template-columns: 1fr;
  }

  .system-card,
  .milestone,
  .sphere-card,
  .process-card,
  .plan-sphere-grid article,
  .plan-steps article,
  .scorecard-grid div,
  .founder-discipline article {
    min-height: auto;
  }

  .process-group-heading {
    align-items: start;
    flex-direction: column;
  }

  .plan-hero {
    padding: 28px 20px;
  }

  .plan-hero h1 {
    font-size: 3.05rem;
  }
}

@media (max-width: 380px) {
  .hero h1 {
    font-size: 2.72rem;
  }

  .section h2,
  .page-hero h1,
  .cta-band h2 {
    font-size: 2.45rem;
  }
}

/* Trust upgrade layout */
.site-header {
  min-height: 78px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.brand-mark {
  width: 58px;
  height: 58px;
  flex-basis: 58px;
  border-radius: 10px;
  background:
    radial-gradient(circle at 50% 48%, rgba(215, 189, 130, 0.12), transparent 64%),
    #050914;
}

.brand-mark img {
  width: 92%;
  height: 92%;
  object-fit: contain;
  object-position: center;
  border-radius: 6px;
}

.brand-copy strong {
  font-size: 1rem;
}

.brand-copy span {
  font-size: 0.76rem;
}

.trust-hero {
  min-height: min(760px, 82vh);
}

.trust-hero .hero-inner {
  padding-top: clamp(82px, 10vw, 142px);
  padding-bottom: clamp(66px, 8vw, 108px);
}

.trust-hero h1 {
  max-width: 880px;
  font-size: clamp(3.4rem, 7.8vw, 6.6rem);
  line-height: 0.95;
}

.trust-line {
  max-width: 720px;
  margin: -12px 0 30px;
  padding-left: 16px;
  border-left: 2px solid var(--gold);
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.04rem;
}

.trust-section {
  border-top: 1px solid var(--line);
}

.dark-band {
  max-width: none;
  width: 100%;
  padding-right: max(20px, calc((100vw - var(--max)) / 2));
  padding-left: max(20px, calc((100vw - var(--max)) / 2));
  background:
    linear-gradient(135deg, rgba(185, 147, 82, 0.1), transparent 42%),
    var(--navy);
  color: #fff;
}

.dark-band .section-heading,
.dark-band .trust-card-grid,
.dark-band .deliverable-grid,
.dark-band .term-grid {
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
}

.dark-band .section-heading p,
.dark-band .trust-card-grid p,
.dark-band .term-grid p {
  color: rgba(255, 255, 255, 0.7);
}

.dark-band .trust-card-grid article,
.dark-band .term-grid article {
  background: var(--navy-soft);
  color: #fff;
}

.trust-card-grid,
.deliverable-grid,
.sample-audit-grid,
.why-grid,
.faq-grid,
.article-card-grid,
.audit-structure-grid {
  display: grid;
  gap: 1px;
  margin-top: 42px;
  border: 1px solid var(--line);
  background: var(--line);
}

.trust-card-grid article,
.sample-audit-grid article,
.why-grid article,
.faq-grid article,
.article-card-grid article,
.audit-structure-grid article {
  min-height: 230px;
  padding: 28px;
  background: #fff;
}

.trust-card-grid span,
.sample-audit-grid span,
.article-card-grid span,
.audit-structure-grid span {
  color: var(--gold);
  font-weight: 800;
}

.trust-card-grid h3,
.sample-audit-grid h3,
.why-grid h3,
.faq-grid h3,
.article-card-grid h3,
.audit-structure-grid h3 {
  margin: 16px 0 12px;
  font-size: 1.18rem;
  line-height: 1.2;
}

.trust-card-grid p,
.sample-audit-grid p,
.sample-audit-grid li,
.why-grid p,
.faq-grid p,
.article-card-grid p,
.audit-structure-grid p {
  color: #555b64;
}

.four-up {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.three-up,
.sample-audit-grid,
.article-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.four-articles,
.audit-structure-grid,
.transparent-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.trust-method-grid article {
  background: #fff;
}

.deliverable-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.deliverable-grid span {
  min-height: 92px;
  display: flex;
  align-items: center;
  padding: 20px;
  background: #fff;
  color: var(--ink);
  font-weight: 800;
}

.dark-band .deliverable-grid {
  border-color: rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.13);
}

.dark-band .deliverable-grid span {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);
}

.sample-audit-grid ul {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.sample-audit-grid li {
  padding-left: 14px;
  border-left: 2px solid var(--gold);
}

.sample-audit-grid strong {
  color: var(--ink);
}

.why-grid,
.faq-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.founder-note-band {
  width: 100%;
  padding: clamp(58px, 8vw, 98px) max(20px, calc((100vw - var(--max)) / 2));
  background:
    linear-gradient(120deg, rgba(6, 8, 11, 0.96), rgba(11, 19, 32, 0.88)),
    url("mm-operations-hero.png") center / cover;
  color: #fff;
}

.founder-note-inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 0.85fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
}

.founder-photo {
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(215, 189, 130, 0.32);
  background: #050914;
}

.founder-photo img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: 50% 34%;
  filter: saturate(0.96) contrast(1.02);
}

.founder-note-copy h2 {
  max-width: 760px;
  margin-bottom: 24px;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5.2vw, 5rem);
  line-height: 0.98;
}

.founder-note-copy p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.08rem;
}

.signature {
  display: grid;
  gap: 4px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.signature strong {
  color: #fff;
  font-size: 1.08rem;
}

.signature span {
  color: var(--gold-light);
}

.transparent-panel {
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(185, 147, 82, 0.28);
  background:
    linear-gradient(135deg, rgba(185, 147, 82, 0.12), transparent 46%),
    #fff;
}

.transparent-panel h2 {
  max-width: 900px;
}

.transparent-panel p:last-child {
  max-width: 860px;
  color: #3f4650;
  font-size: 1.08rem;
}

.transparent-grid {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.transparent-grid .transparent-panel {
  border: 0;
}

.transparent-panel.is-dark-panel {
  background:
    linear-gradient(135deg, rgba(185, 147, 82, 0.14), transparent 45%),
    var(--navy);
  color: #fff;
}

.transparent-panel.is-dark-panel p:last-child {
  color: rgba(255, 255, 255, 0.72);
}

.transparent-panel.is-dark-panel h2 {
  color: #fff;
}

.trust-cta {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.final-cta .button-outline {
  color: #fff;
}

.founder-portrait-image {
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid rgba(185, 147, 82, 0.35);
  background: #050914;
}

.founder-portrait-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 34%;
}

.founder-portrait-image-otari img {
  object-position: 52% 30%;
}

.founder-portrait-image-tami img {
  object-position: 50% 34%;
}

.founder-portrait-image-nanka img {
  object-position: 50% 34%;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.48fr);
  gap: 34px;
  align-items: start;
}

.contact-form {
  width: 100%;
}

.contact-direct-panel {
  position: sticky;
  top: 104px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--navy);
  color: #fff;
}

.contact-direct-panel h2 {
  margin-bottom: 24px;
  font-family: var(--serif);
  font-size: clamp(2.1rem, 3vw, 3.2rem);
  line-height: 1;
}

.direct-contact-list {
  display: grid;
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.12);
}

.direct-contact-list a,
.direct-contact-list > span {
  display: grid;
  gap: 4px;
  padding: 18px;
  background: var(--navy-soft);
}

.direct-contact-list span span,
.direct-contact-list a span {
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.direct-contact-list strong {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.98rem;
  overflow-wrap: anywhere;
}

.investment-desk-section {
  width: 100%;
  max-width: none;
  padding-right: max(20px, calc((100vw - var(--max)) / 2));
  padding-left: max(20px, calc((100vw - var(--max)) / 2));
  background:
    linear-gradient(135deg, rgba(185, 147, 82, 0.12), transparent 42%),
    #fff;
}

.investment-preview-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.62fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(30px, 5vw, 56px);
  border: 1px solid rgba(185, 147, 82, 0.26);
  background:
    linear-gradient(145deg, rgba(11, 19, 32, 0.96), rgba(6, 8, 11, 0.98)),
    var(--navy);
  color: #fff;
}

.investment-preview-panel h2 {
  max-width: 820px;
  margin-bottom: 18px;
  font-family: var(--serif);
  font-size: clamp(2.55rem, 4.8vw, 4.7rem);
  line-height: 0.98;
}

.investment-preview-panel p {
  max-width: 740px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.06rem;
}

.investment-preview-list {
  display: grid;
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.12);
}

.investment-preview-list span,
.investment-preview-list p {
  min-height: 58px;
  margin: 0;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.06);
}

.investment-preview-list span {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
}

.investment-preview-list p {
  color: var(--gold-light);
  font-size: 0.94rem;
}

.investment-hero {
  background:
    linear-gradient(90deg, rgba(6, 8, 11, 0.94), rgba(11, 19, 32, 0.76)),
    url("mm-operations-hero.png") center / cover;
}

.investment-hero .hero-actions {
  margin-top: 28px;
}

.investment-traffic-hero {
  min-height: 680px;
  align-items: center;
  padding-top: 118px;
  padding-bottom: 72px;
}

.investment-traffic-hero > div {
  max-width: 1080px;
}

.investment-traffic-hero h1 {
  max-width: 900px;
}

.investment-traffic-hero p {
  max-width: 850px;
}

.investment-metric-grid,
.investment-snapshot-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 32px;
  border: 1px solid rgba(215, 189, 130, 0.24);
  background: rgba(215, 189, 130, 0.24);
}

.investment-metric-grid article {
  min-height: 132px;
  padding: 22px;
  background: rgba(6, 8, 11, 0.72);
  backdrop-filter: blur(12px);
}

.investment-metric-grid span,
.investment-snapshot-grid span,
.investment-economics-table span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-light);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.investment-metric-grid strong {
  color: #fff;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  line-height: 1.08;
}

.investment-snapshot-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 42px;
  border-color: var(--line);
  background: var(--line);
}

.investment-snapshot-grid article {
  min-height: 156px;
  padding: 24px;
  background: #fff;
}

.investment-snapshot-grid strong {
  display: block;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.28;
}

.investment-opportunity-grid .opportunity-card {
  min-height: 560px;
}

.investment-economics-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 0.72fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.investment-economics-panel > div:first-child {
  padding: clamp(28px, 5vw, 56px);
  background:
    linear-gradient(135deg, rgba(185, 147, 82, 0.1), transparent 44%),
    #fff;
}

.investment-economics-panel h2 {
  max-width: 660px;
  margin-bottom: 18px;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.4vw, 4.4rem);
  line-height: 0.98;
}

.investment-economics-panel p {
  max-width: 620px;
  color: #4d5661;
}

.investment-economics-table {
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.investment-economics-table div {
  display: grid;
  align-content: center;
  min-height: 86px;
  padding: 18px 22px;
  background: var(--navy);
}

.investment-economics-table strong {
  color: #fff;
  font-size: 1.28rem;
}

.investment-note {
  grid-column: 1 / -1;
  margin: 0;
  padding: 18px 22px;
  border-top: 1px solid var(--line);
  background: #fff;
  color: #555d68;
  font-weight: 700;
}

.investment-service-grid article,
.investment-risk-grid article {
  min-height: 240px;
}

.dark-band .investment-risk-grid article {
  border-color: rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    var(--navy-soft);
}

.dark-band .investment-risk-grid h3,
.dark-band .investment-risk-grid p {
  color: #fff;
}

.dark-band .investment-risk-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.investment-process-seven {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.investment-process-seven article {
  min-height: 285px;
}

.investment-faq-list {
  display: grid;
  gap: 1px;
  margin-top: 42px;
  border: 1px solid var(--line);
  background: var(--line);
}

.investment-faq-list details {
  background: #fff;
}

.investment-faq-list summary {
  min-height: 68px;
  padding: 20px 22px;
  cursor: pointer;
  color: var(--ink);
  font-weight: 800;
  list-style: none;
}

.investment-faq-list summary::-webkit-details-marker {
  display: none;
}

.investment-faq-list summary::after {
  content: "+";
  float: right;
  color: var(--gold);
  font-size: 1.2rem;
}

.investment-faq-list details[open] summary::after {
  content: "-";
}

.investment-faq-list p {
  max-width: 920px;
  margin: 0;
  padding: 0 22px 22px;
  color: #4d5661;
}

.investment-positioning .body-copy p:first-child {
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 700;
}

.current-opportunities-section .section-heading,
.current-opportunities-section .opportunity-grid {
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
}

.opportunity-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 42px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.12);
}

.opportunity-card {
  display: grid;
  align-content: start;
  gap: 22px;
  min-height: 520px;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    var(--navy-soft);
}

.opportunity-card > span {
  color: var(--gold-light);
  font-weight: 800;
  text-transform: uppercase;
}

.opportunity-card h3 {
  margin: 0;
  color: #fff;
  font-size: 1.35rem;
  line-height: 1.2;
}

.opportunity-card dl {
  display: grid;
  gap: 1px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.12);
}

.opportunity-card dl div {
  display: grid;
  gap: 4px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.045);
}

.opportunity-card dt {
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.opportunity-card dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.opportunity-card .button {
  align-self: end;
  margin-top: auto;
}

.investment-process {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin-top: 42px;
  border: 1px solid var(--line);
  background: var(--line);
}

.investment-process article {
  min-height: 250px;
  padding: 24px;
  background: #fff;
}

.investment-process span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.investment-process h3 {
  margin: 18px 0 12px;
  font-size: 1.12rem;
}

.investment-process p {
  color: #555b64;
}

.investment-pill-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.qualification-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 1px;
  margin-top: 42px;
  border: 1px solid var(--line);
  background: var(--line);
}

.qualification-list {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--line);
}

.qualification-list li,
.qualification-panel p {
  margin: 0;
  padding: 22px;
  background: #fff;
}

.qualification-list li {
  border-left: 3px solid var(--gold);
  color: #3e4650;
  font-weight: 700;
}

.qualification-panel p {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.78);
  background:
    linear-gradient(135deg, rgba(185, 147, 82, 0.12), transparent 44%),
    var(--navy);
}

.investment-contact-panel .direct-contact-list {
  margin-top: 22px;
}

.risk-disclaimer-section {
  padding-top: 0;
}

.risk-disclaimer {
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid rgba(185, 147, 82, 0.28);
  background:
    linear-gradient(135deg, rgba(185, 147, 82, 0.1), transparent 42%),
    #fff;
}

.risk-disclaimer h2 {
  max-width: 760px;
  margin-bottom: 20px;
  font-family: var(--serif);
  font-size: clamp(2.3rem, 4vw, 3.8rem);
  line-height: 1;
}

.risk-disclaimer p:not(.section-kicker) {
  max-width: 920px;
  color: #4a515c;
}

.article-card-grid article {
  min-height: 360px;
}

.article-preview {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-weight: 700;
}

.compact-terms {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.compact-terms article {
  min-height: 220px;
}

.footer-contact {
  display: grid;
  gap: 7px;
  font-size: 0.88rem;
}

.site-footer {
  grid-template-columns: minmax(240px, 0.9fr) minmax(260px, 0.95fr) auto auto;
  align-items: start;
}

.footer-links span {
  color: rgba(255, 255, 255, 0.66);
}

.logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.logo-real {
  gap: 14px;
  padding: 2px 0;
}

.logo-real-mark {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  flex: 0 0 64px;
}

.logo-real-mark img {
  display: block;
  width: auto;
  height: 64px;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
}

.logo-real-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.logo-real-copy strong {
  color: #fff;
  font-size: 1.38rem;
  font-weight: 800;
  line-height: 1.05;
  white-space: nowrap;
}

.logo-real-copy span {
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
}

.site-header.is-light .logo-real-copy strong,
.light-header .logo-real-copy strong {
  color: var(--ink);
}

.site-header.is-light .logo-real-copy span,
.light-header .logo-real-copy span {
  color: #68707c;
}

@media (max-width: 1080px) {
  .four-up,
  .three-up,
  .sample-audit-grid,
  .article-card-grid,
  .audit-structure-grid,
  .transparent-grid,
  .compact-terms,
  .opportunity-grid,
  .investment-process,
  .investment-pill-list,
  .investment-metric-grid,
  .investment-snapshot-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-grid,
  .faq-grid,
  .deliverable-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .investment-preview-panel,
  .qualification-panel,
  .investment-economics-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 148px;
  }

  .brand-mark {
    width: 58px;
    height: 58px;
  }

  .brand {
    align-items: center;
  }

  .logo-real {
    gap: 10px;
  }

  .logo-real-mark {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .logo-real-mark img {
    height: 48px;
  }

  .logo-real-copy strong {
    font-size: 1rem;
  }

  .logo-real-copy span {
    font-size: 0.66rem;
  }

  .trust-hero h1 {
    font-size: 3.05rem;
  }

  .trust-line {
    max-width: 330px;
    margin-top: -8px;
  }

  .four-up,
  .three-up,
  .sample-audit-grid,
  .article-card-grid,
  .audit-structure-grid,
  .transparent-grid,
  .compact-terms,
  .why-grid,
  .faq-grid,
  .deliverable-grid,
  .founder-note-inner,
  .contact-page-grid,
  .opportunity-grid,
  .investment-process,
  .investment-pill-list,
  .investment-metric-grid,
  .investment-snapshot-grid,
  .investment-preview-panel,
  .qualification-panel,
  .investment-economics-panel {
    grid-template-columns: 1fr;
  }

  .trust-card-grid article,
  .sample-audit-grid article,
  .why-grid article,
  .faq-grid article,
  .article-card-grid article {
    min-height: auto;
    padding: 22px;
  }

  .founder-photo,
  .founder-photo img {
    min-height: 390px;
  }

  .founder-note-copy h2 {
    font-size: 2.75rem;
  }

  .contact-direct-panel {
    position: static;
  }

  .opportunity-card,
  .investment-process article {
    min-height: auto;
  }

  .investment-traffic-hero {
    min-height: 580px;
  }

  .investment-metric-grid article,
  .investment-snapshot-grid article {
    min-height: auto;
  }

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

.visual-card-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.32fr) minmax(230px, 0.72fr) minmax(230px, 0.72fr);
  gap: 18px;
}

.visual-card {
  position: relative;
  min-height: 430px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(12, 17, 25, 0.12);
  background: var(--navy);
}

.visual-card img,
.article-image img,
.investment-visual-brief img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-card::after,
.article-image::after,
.investment-visual-brief figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 8, 11, 0.02), rgba(6, 8, 11, 0.74)),
    linear-gradient(135deg, rgba(185, 147, 82, 0.18), transparent 48%);
  pointer-events: none;
}

.visual-card figcaption {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 1;
  color: #fff;
}

.visual-card figcaption span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.visual-card figcaption strong {
  display: block;
  max-width: 520px;
  font-size: clamp(1.2rem, 1.8vw, 1.72rem);
  line-height: 1.18;
}

.visual-card-seal {
  display: grid;
  place-items: center;
  padding: 32px;
  background:
    radial-gradient(circle at 50% 24%, rgba(185, 147, 82, 0.16), transparent 34%),
    linear-gradient(135deg, #080c12, #131923);
}

.visual-card-seal img {
  width: min(76%, 250px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 26px rgba(0, 0, 0, 0.38));
}

.visual-card-seal::after {
  background: linear-gradient(180deg, transparent 28%, rgba(6, 8, 11, 0.88));
}

.article-image {
  position: relative;
  height: 176px;
  margin: -28px -28px 22px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--navy);
}

.article-image-seal {
  display: grid;
  place-items: center;
  padding: 28px;
  background:
    radial-gradient(circle at center, rgba(185, 147, 82, 0.15), transparent 36%),
    #090d14;
}

.article-image-seal img {
  width: min(64%, 138px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 20px rgba(0, 0, 0, 0.32));
}

.investment-visual-brief {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  align-items: stretch;
  gap: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.investment-visual-brief figure {
  position: relative;
  min-height: 420px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(12, 17, 25, 0.12);
  border-right: 0;
  background: var(--navy);
}

.investment-visual-brief > div {
  display: grid;
  align-content: center;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(12, 17, 25, 0.12);
  background:
    linear-gradient(135deg, rgba(185, 147, 82, 0.08), transparent 44%),
    #fff;
}

.investment-visual-brief h2 {
  max-width: 620px;
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4.6vw, 4.6rem);
  line-height: 0.98;
}

.investment-visual-brief p:not(.section-kicker) {
  max-width: 560px;
  color: #4e5661;
}

@media (max-width: 1080px) {
  .visual-card-grid,
  .investment-visual-brief {
    grid-template-columns: 1fr;
  }

  .visual-card,
  .investment-visual-brief figure {
    min-height: 360px;
  }

  .investment-visual-brief figure {
    border-right: 1px solid rgba(12, 17, 25, 0.12);
    border-bottom: 0;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: auto;
    padding: 12px 14px 14px;
    gap: 12px;
  }

  .logo-real-mark {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .logo-real-mark img {
    height: 44px;
  }

  .logo-real-copy strong {
    font-size: 0.98rem;
  }

  .logo-real-copy span {
    max-width: 178px;
    white-space: normal;
    font-size: 0.64rem;
  }

  .language-switcher {
    width: 100%;
    justify-content: flex-start;
  }

  .language-switcher button {
    min-width: 38px;
    min-height: 34px;
  }

  .site-nav,
  .site-nav.is-open {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 390px;
    justify-self: stretch;
    padding-top: 10px;
    row-gap: 4px;
  }

  .site-nav a,
  .site-nav a:nth-child(4),
  .site-nav a:nth-child(5) {
    grid-column: auto;
  }

  .site-nav a {
    min-height: 40px;
    padding: 9px 4px;
    font-size: 0.74rem;
  }

  .hero-inner {
    margin-right: 16px;
    margin-left: 16px;
    padding-top: 54px;
    padding-bottom: 48px;
  }

  .trust-hero h1 {
    font-size: 2.82rem;
    line-height: 1.02;
  }

  .hero-subtitle,
  .trust-line {
    max-width: none;
  }

  .page-hero {
    min-height: 340px;
    padding: 92px 18px 40px;
  }

  .page-hero h1,
  .cta-band h2,
  .investment-visual-brief h2 {
    font-size: 2.42rem;
    line-height: 1.04;
  }

  .section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .visual-card,
  .investment-visual-brief figure {
    min-height: 330px;
  }

  .visual-card-seal {
    min-height: 300px;
  }

  .visual-card figcaption {
    right: 18px;
    bottom: 18px;
    left: 18px;
  }

  .article-image {
    height: 150px;
    margin: -22px -22px 20px;
  }

  .investment-visual-brief > div {
    padding: 26px 22px;
  }

  .hero-actions,
  .cta-actions {
    gap: 10px;
  }
}

@media (max-width: 380px) {
  .logo-real-copy span {
    display: none;
  }

  .site-nav a {
    font-size: 0.74rem;
  }
}

html[dir="rtl"] body {
  direction: rtl;
  text-align: right;
}

html[dir="rtl"] .brand,
html[dir="rtl"] .logo-real,
html[dir="rtl"] .logo-real-copy {
  direction: ltr;
  text-align: left;
}

html[dir="rtl"] .site-nav,
html[dir="rtl"] .language-switcher,
html[dir="rtl"] .hero-actions,
html[dir="rtl"] .cta-actions,
html[dir="rtl"] .button,
html[dir="rtl"] .direct-contact-list a {
  direction: rtl;
}

html[dir="rtl"] .hero-inner,
html[dir="rtl"] .page-hero > div,
html[dir="rtl"] .section-heading,
html[dir="rtl"] .two-column,
html[dir="rtl"] .audit-form,
html[dir="rtl"] .audit-side,
html[dir="rtl"] .site-footer,
html[dir="rtl"] .founder-note-copy,
html[dir="rtl"] .transparent-panel,
html[dir="rtl"] .risk-disclaimer,
html[dir="rtl"] .investment-visual-brief > div {
  text-align: right;
}

html[dir="rtl"] .section-kicker,
html[dir="rtl"] .eyebrow,
html[dir="rtl"] .visual-card figcaption span {
  letter-spacing: 0;
}

html[dir="rtl"] .visual-card figcaption {
  text-align: right;
}

html[dir="rtl"] .audit-form input,
html[dir="rtl"] .audit-form textarea,
html[dir="rtl"] .audit-form select {
  direction: rtl;
  text-align: right;
}

html[dir="rtl"] .button {
  justify-content: center;
}

html[dir="rtl"] .opportunity-card dl div,
html[dir="rtl"] .direct-contact-list a,
html[dir="rtl"] .footer-links {
  text-align: right;
}
