:root {
  --ink: #10120f;
  --text: #f7f3e8;
  --paper: #fbfaf5;
  --paper-soft: #f4efe4;
  --muted: #666b63;
  --muted-dark: #a4aa9f;
  --dark: #070806;
  --dark-2: #10120f;
  --surface: #161913;
  --surface-2: #1d211a;
  --line: #ded8c9;
  --line-dark: rgba(247, 243, 232, 0.14);
  --gold: #edb844;
  --gold-2: #d9822f;
  --gold-soft: #fff0bf;
  --teal: #4fae9b;
  --green: #72c28f;
  --max: 1180px;
  --radius: 8px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--dark);
  color: var(--ink);
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica Neue, Arial, sans-serif;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
  margin: 0;
}

h1,
h2,
h3 {
  letter-spacing: 0;
  margin: 0;
}

h1 {
  color: var(--text);
  font-size: 3.8rem;
  font-weight: 740;
  line-height: 1;
  max-width: 760px;
}

.no-break {
  white-space: nowrap;
}

h2 {
  color: var(--ink);
  font-size: 2.85rem;
  font-weight: 740;
  line-height: 1.04;
}

h3 {
  color: var(--ink);
  font-size: 1.22rem;
  font-weight: 740;
  line-height: 1.25;
}

.site-header {
  align-items: center;
  background: rgba(7, 8, 6, 0.9);
  border-bottom: 1px solid var(--line-dark);
  display: flex;
  gap: 28px;
  justify-content: space-between;
  left: 0;
  padding: 18px max(24px, calc((100vw - var(--max)) / 2));
  position: sticky;
  right: 0;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
}

.brand-link {
  align-items: center;
  display: inline-flex;
  min-width: 174px;
}

.brand-logo {
  height: auto;
  width: 184px;
}

.nav-links {
  align-items: center;
  color: rgba(247, 243, 232, 0.72);
  display: flex;
  font-size: 0.9rem;
  font-weight: 700;
  gap: 28px;
}

.nav-links a {
  transition: color 160ms ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--gold-soft);
}

.header-actions {
  align-items: center;
  display: flex;
  gap: 12px;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.92rem;
  font-weight: 780;
  gap: 10px;
  justify-content: center;
  line-height: 1;
  min-height: 46px;
  padding: 0 21px;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
  white-space: nowrap;
}

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

.button-primary {
  background: linear-gradient(135deg, #ffdc72 0%, var(--gold) 54%, var(--gold-2) 100%);
  color: #171105;
  box-shadow: 0 14px 34px rgba(237, 184, 68, 0.22);
}

.button-dark {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--text);
}

.button-ghost {
  border-color: rgba(247, 243, 232, 0.28);
  color: var(--text);
}

.button-ghost:hover {
  background: rgba(247, 243, 232, 0.08);
}

.button svg {
  height: 17px;
  width: 17px;
}

.menu-button {
  align-items: center;
  background: rgba(247, 243, 232, 0.08);
  border: 1px solid rgba(247, 243, 232, 0.24);
  border-radius: 999px;
  color: var(--text);
  display: none;
  height: 44px;
  justify-content: center;
  padding: 0;
  position: relative;
  width: 44px;
}

.menu-button span,
.menu-button::before,
.menu-button::after {
  background: currentColor;
  content: "";
  display: block;
  height: 2px;
  position: absolute;
  transition: transform 180ms ease, opacity 180ms ease;
  width: 18px;
}

.menu-button::before {
  transform: translateY(-6px);
}

.menu-button::after {
  transform: translateY(6px);
}

.menu-open .menu-button span {
  opacity: 0;
}

.menu-open .menu-button::before {
  transform: rotate(45deg);
}

.menu-open .menu-button::after {
  transform: rotate(-45deg);
}

.hero {
  background:
    linear-gradient(145deg, rgba(7, 8, 6, 0.99) 0%, rgba(7, 8, 6, 0.96) 48%, rgba(17, 20, 15, 0.98) 100%);
  color: var(--text);
  overflow: hidden;
  padding: 74px 24px 72px;
  position: relative;
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(237, 184, 68, 0.09), transparent 42%),
    linear-gradient(135deg, transparent 54%, rgba(79, 174, 155, 0.12) 100%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.hero-inner {
  align-items: center;
  display: grid;
  gap: 56px;
  grid-template-columns: minmax(0, 0.98fr) minmax(440px, 1fr);
  margin: 0 auto;
  max-width: var(--max);
  position: relative;
  z-index: 1;
}

.hero-copy p {
  color: rgba(247, 243, 232, 0.78);
  font-size: 1.12rem;
  line-height: 1.68;
  margin-top: 24px;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-proof {
  border-top: 1px solid var(--line-dark);
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 42px;
  max-width: 760px;
  padding-top: 24px;
}

.hero-proof strong,
.proof-inner strong,
.product-card span,
.plan-card strong,
.section-kicker {
  color: var(--gold);
  display: block;
  font-size: 0.76rem;
  font-weight: 860;
  letter-spacing: 0.12em;
  line-height: 1.25;
  text-transform: uppercase;
}

.hero-proof span {
  color: rgba(247, 243, 232, 0.68);
  display: block;
  font-size: 0.9rem;
  line-height: 1.48;
  margin-top: 8px;
}

.platform-preview {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(247, 243, 232, 0.16);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 12px;
}

.preview-topbar {
  align-items: center;
  border-bottom: 1px solid var(--line-dark);
  color: rgba(247, 243, 232, 0.7);
  display: flex;
  font-size: 0.8rem;
  justify-content: space-between;
  padding: 12px 12px 14px;
}

.preview-topbar div {
  align-items: center;
  color: var(--text);
  display: flex;
  gap: 10px;
}

.preview-mark {
  background: url("assets/solstera-icon.png") center / contain no-repeat;
  display: inline-block;
  height: 24px;
  width: 24px;
}

.preview-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  padding: 12px;
}

.preview-panel {
  background: rgba(10, 12, 9, 0.72);
  border: 1px solid rgba(247, 243, 232, 0.12);
  border-radius: var(--radius);
  min-height: 164px;
  padding: 18px;
}

.queue-panel {
  grid-row: span 2;
}

.panel-heading,
.subscription-panel > div {
  align-items: center;
  display: flex;
  gap: 8px;
  justify-content: space-between;
}

.panel-heading span,
.subscription-panel span,
.integrations-panel > span {
  color: rgba(247, 243, 232, 0.64);
  font-size: 0.78rem;
  font-weight: 760;
}

.panel-heading strong,
.subscription-panel strong {
  color: var(--text);
  font-size: 0.86rem;
  white-space: nowrap;
}

.queue-list {
  display: grid;
  gap: 2px;
  margin-top: 16px;
}

.queue-list article {
  align-items: start;
  border-top: 1px solid rgba(247, 243, 232, 0.08);
  display: grid;
  gap: 10px;
  grid-template-columns: 10px 1fr auto;
  padding: 13px 0;
}

.queue-list article:first-child {
  border-top: 0;
}

.queue-list strong {
  color: var(--text);
  display: block;
  font-size: 0.88rem;
}

.queue-list p {
  color: rgba(247, 243, 232, 0.58);
  font-size: 0.78rem;
  line-height: 1.4;
  margin-top: 3px;
}

.queue-list time {
  color: rgba(247, 243, 232, 0.44);
  font-size: 0.72rem;
}

.status-dot {
  background: var(--gold);
  border-radius: 50%;
  display: block;
  height: 8px;
  margin-top: 4px;
  width: 8px;
}

.status-dot.is-hot {
  background: var(--teal);
}

.status-dot.is-muted {
  background: rgba(247, 243, 232, 0.28);
}

.approval-rows {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.approval-rows div {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.approval-rows span {
  color: rgba(247, 243, 232, 0.78);
  font-size: 0.82rem;
}

.approval-rows button {
  background: rgba(79, 174, 155, 0.1);
  border: 1px solid rgba(79, 174, 155, 0.42);
  border-radius: 999px;
  color: #b7f4e7;
  font: inherit;
  font-size: 0.74rem;
  font-weight: 760;
  padding: 7px 10px;
}

.health-panel dl {
  display: grid;
  gap: 11px;
  margin: 18px 0 0;
}

.health-panel div {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.health-panel dt,
.health-panel dd {
  font-size: 0.82rem;
  margin: 0;
}

.health-panel dt {
  color: rgba(247, 243, 232, 0.68);
}

.health-panel dd {
  color: #a6efd0;
  font-weight: 760;
}

.subscription-panel {
  min-height: 124px;
}

.subscription-panel p {
  color: rgba(247, 243, 232, 0.64);
  font-size: 0.88rem;
  line-height: 1.5;
  margin-top: 22px;
}

.integrations-panel {
  min-height: 124px;
}

.integrations-panel div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.integrations-panel strong {
  background: rgba(247, 243, 232, 0.08);
  border: 1px solid rgba(247, 243, 232, 0.1);
  border-radius: 999px;
  color: var(--text);
  font-size: 0.76rem;
  padding: 7px 10px;
}

.proof-strip {
  background: var(--dark);
  border-bottom: 1px solid var(--line-dark);
  border-top: 1px solid var(--line-dark);
  padding: 22px 24px;
}

.brand-hero {
  background:
    linear-gradient(135deg, rgba(7, 8, 6, 1) 0%, rgba(14, 17, 12, 0.98) 54%, rgba(7, 8, 6, 1) 100%);
  color: var(--text);
  overflow: hidden;
  padding: 104px 24px 88px;
  position: relative;
}

.brand-hero::before {
  background:
    linear-gradient(90deg, rgba(237, 184, 68, 0.14), transparent 38%),
    linear-gradient(145deg, transparent 58%, rgba(79, 174, 155, 0.16));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.brand-hero-inner {
  margin: 0 auto;
  max-width: var(--max);
  min-height: calc(100svh - 220px);
  position: relative;
  z-index: 1;
}

.hero-logo {
  margin-bottom: 46px;
  width: min(640px, 82vw);
}

.brand-hero h1 {
  font-size: 4.75rem;
  max-width: 980px;
}

.brand-hero p {
  color: rgba(247, 243, 232, 0.78);
  font-size: 1.22rem;
  line-height: 1.65;
  margin-top: 24px;
  max-width: 780px;
}

.launch-line {
  border-bottom: 1px solid var(--line-dark);
  border-top: 1px solid var(--line-dark);
  color: var(--gold);
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 64px;
  max-width: 980px;
  padding: 18px 0;
}

.launch-line span {
  font-size: 0.82rem;
  font-weight: 860;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.project-showcase {
  background: #080907;
  color: var(--text);
  padding: 96px 24px 108px;
}

.showcase-head {
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.55fr);
  margin-bottom: 44px;
}

.showcase-head h2 {
  color: var(--text);
}

.showcase-head p {
  color: rgba(247, 243, 232, 0.68);
  align-self: end;
}

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

.launch-card {
  background: linear-gradient(180deg, rgba(247, 243, 232, 0.08), rgba(247, 243, 232, 0.045));
  border: 1px solid rgba(247, 243, 232, 0.14);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  min-height: 560px;
  overflow: hidden;
  padding: 24px;
  position: relative;
}

.launch-card::before {
  content: "";
  height: 4px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.launch-communications::before {
  background: linear-gradient(90deg, var(--gold), var(--teal));
}

.launch-planning::before {
  background: linear-gradient(90deg, #7ad1ff, var(--gold));
}

.launch-legal::before {
  background: linear-gradient(90deg, #f6d083, #d78542);
}

.launch-keydock::before {
  background: linear-gradient(90deg, #b7f4e7, #f2bd4d);
}

.launch-card-top {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.launch-card-top span {
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 860;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.launch-card-top strong {
  color: rgba(247, 243, 232, 0.5);
  font-size: 0.84rem;
}

.launch-card h3 {
  color: var(--text);
  font-size: 1.65rem;
  margin-top: 24px;
}

.launch-card p {
  color: rgba(247, 243, 232, 0.68);
  font-size: 0.96rem;
  margin-top: 16px;
}

.launch-card > a {
  color: var(--gold-soft);
  font-size: 0.94rem;
  font-weight: 820;
  margin-top: auto;
  padding-top: 24px;
}

.mini-visual {
  background: rgba(4, 5, 4, 0.62);
  border: 1px solid rgba(247, 243, 232, 0.1);
  border-radius: var(--radius);
  color: var(--gold);
  height: 190px;
  margin-top: 28px;
  overflow: hidden;
  padding: 18px;
}

.command-visual {
  display: grid;
  gap: 8px;
}

.command-visual div {
  align-items: center;
  background: rgba(247, 243, 232, 0.05);
  border: 1px solid rgba(247, 243, 232, 0.08);
  display: grid;
  gap: 8px;
  grid-template-columns: 10px 1fr;
  padding: 9px 10px;
}

.command-visual span {
  background: currentColor;
  border-radius: 50%;
  height: 8px;
  width: 8px;
}

.command-visual strong,
.command-visual em {
  color: var(--text);
  display: block;
  font-size: 0.74rem;
  font-style: normal;
}

.command-visual em {
  color: rgba(247, 243, 232, 0.54);
  margin-top: 2px;
}

.plan-visual {
  align-items: center;
  display: flex;
}

.plan-visual svg {
  color: #78d4ff;
  width: 100%;
}

.plan-visual circle {
  fill: var(--gold);
}

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

.legal-visual div {
  align-items: center;
  border: 1px solid rgba(247, 243, 232, 0.12);
  display: flex;
  justify-content: center;
  position: relative;
}

.legal-visual div::after {
  background: rgba(237, 184, 68, 0.55);
  content: "";
  height: 1px;
  position: absolute;
  right: -12px;
  width: 14px;
}

.legal-visual div:nth-child(2)::after,
.legal-visual div:nth-child(4)::after {
  display: none;
}

.legal-visual span {
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 780;
}

.vault-visual {
  align-items: center;
  display: grid;
  gap: 18px;
  grid-template-columns: 0.7fr 1fr;
}

.vault-door {
  align-items: center;
  aspect-ratio: 1;
  border: 2px solid rgba(183, 244, 231, 0.44);
  border-radius: 50%;
  display: flex;
  justify-content: center;
}

.vault-door span {
  border: 2px solid var(--gold);
  border-radius: 50%;
  height: 46%;
  width: 46%;
}

.vault-bars {
  display: grid;
  gap: 14px;
}

.vault-bars i {
  background: linear-gradient(90deg, rgba(183, 244, 231, 0.68), rgba(237, 184, 68, 0.84));
  display: block;
  height: 10px;
}

.vault-bars i:nth-child(2) {
  width: 72%;
}

.vault-bars i:nth-child(3) {
  width: 48%;
}

.preorder-layout {
  align-items: center;
  display: grid;
  gap: 64px;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1fr);
}

.preorder-layout .button {
  margin-top: 32px;
}

.signal-board {
  background: #0a0b09;
  border: 1px solid rgba(16, 18, 15, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.2);
  display: grid;
  gap: 20px;
  padding: 34px;
}

.signal-row {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr auto;
}

.signal-row span,
.signal-row strong {
  color: var(--text);
  font-weight: 780;
}

.signal-row i {
  background: rgba(247, 243, 232, 0.11);
  grid-column: 1 / -1;
  height: 10px;
  overflow: hidden;
  position: relative;
}

.signal-row i::before {
  background: linear-gradient(90deg, var(--gold), var(--teal));
  content: "";
  inset: 0 auto 0 0;
  position: absolute;
  width: var(--w);
}

.section.project-briefs {
  background:
    linear-gradient(180deg, #080907 0%, #11140f 100%);
  color: var(--text);
}

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

.brief-grid article {
  border-left: 1px solid rgba(247, 243, 232, 0.16);
  min-height: 260px;
  padding: 22px 22px 0;
}

.brief-grid h3 {
  color: var(--text);
}

.brief-grid p {
  color: rgba(247, 243, 232, 0.66);
  margin-top: 18px;
}

.project-hero {
  background: #070806;
  color: var(--text);
  overflow: hidden;
  padding: 92px 24px;
}

.project-hero-inner {
  align-items: center;
  display: grid;
  gap: 64px;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 0.9fr);
  margin: 0 auto;
  max-width: var(--max);
}

.project-hero h1 {
  margin-top: 18px;
}

.project-hero p {
  color: rgba(247, 243, 232, 0.76);
  font-size: 1.16rem;
  margin-top: 24px;
  max-width: 720px;
}

.coming-soon {
  color: var(--gold);
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 860;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.project-art {
  background: linear-gradient(180deg, rgba(247, 243, 232, 0.08), rgba(247, 243, 232, 0.04));
  border: 1px solid rgba(247, 243, 232, 0.14);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  color: var(--gold);
  min-height: 380px;
  padding: 28px;
}

.project-hero-communications {
  background: linear-gradient(135deg, #070806 0%, #0d140f 100%);
}

.project-hero-blueprint {
  background:
    radial-gradient(circle at 72% 20%, rgba(94, 180, 195, 0.18), transparent 30%),
    linear-gradient(135deg, #070806 0%, #081315 50%, #070806 100%);
}

.project-hero-planning {
  background: linear-gradient(135deg, #070806 0%, #0b1114 100%);
}

.project-hero-legal {
  background: linear-gradient(135deg, #070806 0%, #15100b 100%);
}

.project-hero-keydock {
  background: linear-gradient(135deg, #070806 0%, #071312 100%);
}

.blueprint-hero-inner {
  grid-template-columns: minmax(0, 0.72fr) minmax(520px, 1.08fr);
}

.blueprint-hero-art {
  background: rgba(247, 243, 232, 0.08);
  border: 1px solid rgba(143, 217, 235, 0.28);
  border-radius: 10px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34), 0 0 70px rgba(94, 180, 195, 0.08);
  overflow: hidden;
}

.blueprint-browser-bar {
  align-items: center;
  background: rgba(5, 7, 6, 0.92);
  border-bottom: 1px solid rgba(247, 243, 232, 0.12);
  display: flex;
  gap: 8px;
  padding: 12px 16px;
}

.blueprint-browser-bar span {
  background: rgba(247, 243, 232, 0.22);
  border-radius: 50%;
  height: 10px;
  width: 10px;
}

.blueprint-browser-bar span:first-child {
  background: #8fd9eb;
}

.blueprint-browser-bar strong {
  color: rgba(247, 243, 232, 0.66);
  font-size: 0.78rem;
  font-weight: 720;
  margin-left: auto;
}

.blueprint-hero-art img {
  aspect-ratio: 1440 / 960;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.blueprint-process-section {
  border-top: 1px solid rgba(143, 217, 235, 0.12);
}

.blueprint-flow {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.blueprint-flow article {
  background: rgba(247, 243, 232, 0.07);
  border: 1px solid rgba(247, 243, 232, 0.13);
  border-radius: var(--radius);
  min-height: 250px;
  padding: 24px;
  position: relative;
}

.blueprint-flow article::after {
  background: linear-gradient(90deg, rgba(143, 217, 235, 0.78), rgba(237, 184, 68, 0.8));
  content: "";
  height: 3px;
  left: 24px;
  position: absolute;
  right: 24px;
  top: 0;
}

.blueprint-flow span {
  color: #8fd9eb;
  display: block;
  font-size: 0.76rem;
  font-weight: 860;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.blueprint-flow strong {
  color: var(--text);
  display: block;
  font-size: 1.14rem;
  line-height: 1.25;
  margin-top: 18px;
}

.blueprint-flow p {
  color: rgba(247, 243, 232, 0.64);
  font-size: 0.92rem;
  line-height: 1.58;
  margin-top: 14px;
}

.blueprint-proof-section {
  background: linear-gradient(180deg, #fbfaf5 0%, #edf4f2 100%);
}

.blueprint-proof-grid {
  align-items: center;
  display: grid;
  gap: 56px;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.72fr);
}

.blueprint-proof-frame {
  border-color: rgba(94, 180, 195, 0.24);
}

.blueprint-proof-frame img {
  aspect-ratio: 1365 / 900;
  object-fit: cover;
  object-position: center;
}

.blueprint-checks {
  margin-top: 28px;
}

.command-art {
  display: grid;
  gap: 14px;
}

.art-header {
  align-items: center;
  border-bottom: 1px solid var(--line-dark);
  color: var(--text);
  display: flex;
  justify-content: space-between;
  padding-bottom: 14px;
}

.art-header span {
  color: rgba(247, 243, 232, 0.56);
  font-size: 0.8rem;
}

.art-row {
  align-items: center;
  background: rgba(7, 8, 6, 0.58);
  border: 1px solid rgba(247, 243, 232, 0.09);
  display: grid;
  gap: 12px;
  grid-template-columns: 10px 1fr auto;
  padding: 15px;
}

.art-row i {
  background: currentColor;
  border-radius: 50%;
  height: 8px;
  width: 8px;
}

.art-row strong {
  color: var(--text);
}

.art-row span {
  color: rgba(247, 243, 232, 0.62);
  font-size: 0.84rem;
}

.art-meter {
  background: rgba(247, 243, 232, 0.1);
  height: 12px;
  margin-top: 10px;
  overflow: hidden;
}

.art-meter span {
  background: linear-gradient(90deg, var(--gold), var(--teal));
  display: block;
  height: 100%;
  width: var(--w);
}

.planning-art {
  align-items: center;
  display: flex;
}

.planning-art svg {
  color: #7ad1ff;
  width: 100%;
}

.legal-art {
  align-items: center;
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr 42px 1fr;
}

.legal-art div {
  align-items: center;
  aspect-ratio: 1.4;
  background: rgba(7, 8, 6, 0.5);
  border: 1px solid rgba(247, 243, 232, 0.12);
  color: var(--text);
  display: flex;
  font-weight: 820;
  justify-content: center;
}

.legal-art span {
  background: linear-gradient(90deg, var(--gold), rgba(237, 184, 68, 0.1));
  height: 2px;
}

.legal-art div:nth-of-type(3) {
  grid-column: 1 / 2;
}

.legal-art div:nth-of-type(4) {
  grid-column: 3 / 4;
}

.keydock-art {
  align-items: center;
  display: grid;
  gap: 28px;
  grid-template-columns: 0.8fr 1fr;
}

.key-ring {
  align-items: center;
  aspect-ratio: 1;
  border: 3px solid rgba(183, 244, 231, 0.52);
  border-radius: 50%;
  display: flex;
  justify-content: center;
}

.key-ring span {
  border: 3px solid var(--gold);
  border-radius: 50%;
  display: block;
  height: 48%;
  width: 48%;
}

.dock-list {
  display: grid;
  gap: 16px;
}

.dock-list i {
  background: linear-gradient(90deg, rgba(183, 244, 231, 0.78), rgba(237, 184, 68, 0.88));
  display: block;
  height: 12px;
}

.dock-list i:nth-child(2) {
  width: 82%;
}

.dock-list i:nth-child(3) {
  width: 64%;
}

.dock-list i:nth-child(4) {
  width: 48%;
}

.project-detail-grid {
  display: grid;
  gap: 58px;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1fr);
}

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

.detail-points article {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 18px;
  grid-template-columns: 46px 0.62fr 1fr;
  padding: 22px 0;
}

.detail-points span {
  color: var(--gold-2);
  font-weight: 860;
}

/* Brand-forward concept homepage */
.concept-home {
  background: #030403;
  color: var(--text);
}

.concept-home .site-header {
  background: rgba(3, 4, 3, 0.9);
  border-bottom: 1px solid rgba(237, 184, 68, 0.18);
  box-shadow: 0 14px 52px rgba(0, 0, 0, 0.22);
  margin: 0 auto;
  max-width: 1520px;
  padding: 20px 72px;
  position: sticky;
}

.concept-home .brand-logo {
  width: 220px;
}

.concept-home .nav-links {
  gap: 36px;
}

.concept-home .nav-links a {
  color: rgba(247, 243, 232, 0.8);
}

.concept-home .nav-links a:hover,
.concept-home .nav-links a.is-active {
  color: var(--gold-soft);
}

.concept-hero {
  background:
    radial-gradient(circle at 74% 12%, rgba(79, 174, 155, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(3, 4, 3, 0.78), rgba(3, 4, 3, 0.97)),
    linear-gradient(115deg, rgba(237, 184, 68, 0.09), transparent 34%, rgba(79, 174, 155, 0.06));
  min-height: calc(100svh - 86px);
  overflow: hidden;
  padding: 28px 48px 54px;
  position: relative;
}

.concept-hero::before,
.concept-hero::after {
  background: url("assets/solstera-schematic.svg") center / contain no-repeat;
  content: "";
  height: 560px;
  opacity: 0.72;
  pointer-events: none;
  position: absolute;
  top: 48px;
  width: 560px;
}

.concept-hero::before {
  left: -96px;
}

.concept-hero::after {
  right: -96px;
  transform: scaleX(-1);
}

.concept-hero-inner {
  margin: 0 auto;
  max-width: 1480px;
  position: relative;
  z-index: 1;
}

.concept-hero-stage {
  align-items: center;
  display: grid;
  gap: 56px;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1fr);
  min-height: 430px;
  padding: 26px 0 24px;
}

.concept-hero-copy {
  max-width: 650px;
}

.hero-brand-lockup {
  display: flex;
  justify-content: flex-start;
  margin: 0 0 34px;
}

.hero-brand-lockup img {
  filter: drop-shadow(0 0 26px rgba(237, 184, 68, 0.18));
  width: min(470px, 80vw);
}

.concept-hero h1 {
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.25rem, 6.1vw, 5.9rem);
  font-weight: 400;
  line-height: 0.98;
  margin: 0;
  max-width: 760px;
  text-align: left;
}

.concept-hero h1 em {
  color: var(--gold-soft);
  font-style: italic;
}

.concept-hero-copy > p {
  color: rgba(247, 243, 232, 0.76);
  font-size: 1.08rem;
  line-height: 1.72;
  margin: 28px 0 0;
  max-width: 630px;
  text-align: left;
}

.hero-platform-link {
  align-items: center;
  border: 1px solid rgba(237, 184, 68, 0.74);
  border-radius: 999px;
  color: var(--gold-soft);
  display: inline-flex;
  font-weight: 800;
  gap: 12px;
  height: 52px;
  justify-content: center;
  margin: 32px 0 0;
  padding: 0 26px;
  box-shadow: 0 18px 54px rgba(237, 184, 68, 0.12);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.hero-platform-link:hover {
  background: rgba(237, 184, 68, 0.08);
  border-color: rgba(255, 240, 191, 0.88);
  box-shadow: 0 20px 62px rgba(237, 184, 68, 0.16);
  transform: translateY(-1px);
}

.hero-blueprint-panel {
  background: linear-gradient(180deg, rgba(17, 20, 15, 0.92), rgba(5, 7, 6, 0.94));
  border: 1px solid rgba(237, 184, 68, 0.2);
  border-radius: 10px;
  box-shadow: 0 38px 120px rgba(0, 0, 0, 0.42), 0 0 80px rgba(79, 174, 155, 0.08);
  overflow: hidden;
  padding: 12px;
  position: relative;
}

.hero-blueprint-panel::before {
  background: linear-gradient(90deg, transparent, rgba(255, 240, 191, 0.45), transparent);
  content: "";
  height: 1px;
  left: 16px;
  opacity: 0.72;
  position: absolute;
  right: 16px;
  top: 0;
}

.hero-panel-top,
.hero-blueprint-panel img,
.hero-panel-footer {
  position: relative;
  z-index: 1;
}

.hero-panel-top,
.hero-panel-footer {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.hero-panel-top {
  border-bottom: 1px solid rgba(247, 243, 232, 0.1);
  padding: 10px 10px 12px;
}

.hero-panel-top span {
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 820;
}

.hero-panel-top a {
  border: 1px solid rgba(143, 217, 235, 0.38);
  border-radius: 999px;
  color: #bff4ff;
  font-size: 0.72rem;
  font-weight: 820;
  padding: 7px 11px;
  transition: background 160ms ease, border-color 160ms ease;
}

.hero-panel-top a:hover {
  background: rgba(143, 217, 235, 0.1);
  border-color: rgba(143, 217, 235, 0.68);
}

.hero-blueprint-panel img {
  aspect-ratio: 1365 / 900;
  border-radius: 8px;
  display: block;
  margin-top: 12px;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.hero-panel-footer {
  color: rgba(247, 243, 232, 0.58);
  gap: 10px;
  padding: 12px 4px 2px;
}

.hero-panel-footer span {
  border-left: 1px solid rgba(237, 184, 68, 0.32);
  font-size: 0.74rem;
  font-weight: 760;
  padding-left: 10px;
}

.concept-project-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 8px;
}

.concept-card {
  --accent: var(--gold);
  background:
    linear-gradient(180deg, rgba(247, 243, 232, 0.045), transparent 42%),
    linear-gradient(180deg, rgba(17, 20, 15, 0.9), rgba(8, 10, 8, 0.95));
  border: 1px solid rgba(237, 184, 68, 0.28);
  border-radius: 8px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  display: flex;
  flex-direction: column;
  min-height: 370px;
  overflow: hidden;
  padding: 24px;
  position: relative;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.concept-card::before {
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  content: "";
  height: 1px;
  left: 24px;
  opacity: 0.62;
  position: absolute;
  right: 24px;
  top: 0;
}

.concept-card::after {
  background: radial-gradient(circle at center, var(--accent), transparent 68%);
  bottom: -120px;
  content: "";
  height: 220px;
  opacity: 0.08;
  pointer-events: none;
  position: absolute;
  right: -80px;
  width: 220px;
}

.concept-card > * {
  position: relative;
  z-index: 1;
}

.concept-card:hover {
  box-shadow: 0 28px 86px rgba(0, 0, 0, 0.36), 0 0 54px rgba(237, 184, 68, 0.08);
  transform: translateY(-3px);
}

.concept-card-blueprint {
  --accent: #8fd9eb;
  border-color: rgba(94, 180, 195, 0.78);
  box-shadow: 0 0 44px rgba(94, 180, 195, 0.1);
}

.concept-card-communications {
  --accent: #8be0d2;
  border-color: rgba(79, 174, 155, 0.72);
  box-shadow: 0 0 40px rgba(79, 174, 155, 0.08);
}

.concept-card-legal {
  --accent: #b9d881;
  border-color: rgba(137, 177, 91, 0.7);
  box-shadow: 0 0 40px rgba(137, 177, 91, 0.08);
}

.concept-card-keydock {
  --accent: #e8834c;
  border-color: rgba(216, 116, 56, 0.78);
  box-shadow: 0 0 40px rgba(216, 116, 56, 0.08);
}

.concept-card-top {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.concept-card-top span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 860;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.concept-card-top i {
  color: rgba(247, 243, 232, 0.3);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 850;
}

.concept-card h2 {
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 2.5vw, 2.35rem);
  font-weight: 700;
  line-height: 1.05;
  margin-top: 18px;
}

.concept-card-communications h2 {
  font-size: clamp(1.68rem, 2.12vw, 2.12rem);
}

.concept-card p {
  color: rgba(247, 243, 232, 0.72);
  font-size: 0.98rem;
  line-height: 1.62;
  margin-bottom: 20px;
  margin-top: 18px;
}

.concept-visual {
  background: rgba(4, 5, 4, 0.76);
  border: 1px solid rgba(247, 243, 232, 0.11);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  height: 164px;
  margin-top: 18px;
  overflow: hidden;
}

.blueprint-card-visual {
  background: #e9f0ee;
  border-color: rgba(94, 180, 195, 0.44);
  position: relative;
}

.blueprint-card-visual img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  width: 100%;
}

.command-surface {
  display: grid;
  grid-template-columns: 42px 1fr;
  padding: 0;
}

.surface-rail {
  border-right: 1px solid rgba(247, 243, 232, 0.1);
  display: grid;
  gap: 14px;
  justify-items: center;
  padding: 18px 0;
}

.surface-rail i {
  background: rgba(247, 243, 232, 0.22);
  height: 10px;
  width: 10px;
}

.surface-rail i:first-child {
  background: var(--gold);
  border-radius: 50%;
}

.surface-main {
  padding: 14px;
}

.surface-head,
.surface-row {
  align-items: center;
  display: grid;
  gap: 10px;
  grid-template-columns: 10px 1fr auto;
}

.surface-head {
  border-bottom: 1px solid rgba(247, 243, 232, 0.1);
  color: var(--text);
  font-size: 0.75rem;
  grid-template-columns: 1fr auto;
  padding-bottom: 9px;
}

.surface-row {
  padding: 8px 0;
}

.surface-row b {
  background: var(--gold);
  border-radius: 50%;
  height: 7px;
  width: 7px;
}

.surface-row strong,
.surface-row small,
.surface-row em {
  display: block;
  font-size: 0.7rem;
  font-style: normal;
}

.surface-row strong {
  color: var(--text);
}

.surface-row small,
.surface-row em {
  color: rgba(247, 243, 232, 0.54);
}

.workflow-surface {
  display: grid;
  gap: 12px;
  padding: 14px;
}

.legend {
  display: flex;
  gap: 16px;
}

.legend span {
  color: rgba(247, 243, 232, 0.7);
  font-size: 0.72rem;
  padding-left: 14px;
  position: relative;
}

.legend span::before {
  background: var(--green);
  border-radius: 50%;
  content: "";
  height: 7px;
  left: 0;
  position: absolute;
  top: 0.42em;
  width: 7px;
}

.legend .risk::before {
  background: var(--gold);
}

.legend .block::before {
  background: #d87438;
}

.flow-line {
  align-items: center;
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr 24px 1fr 24px 1fr;
}

.flow-line.secondary {
  margin-left: 42px;
}

.flow-line div {
  border: 1px solid rgba(247, 243, 232, 0.25);
  color: var(--text);
  font-size: 0.7rem;
  font-weight: 760;
  min-height: 30px;
  padding: 8px;
  text-align: center;
}

.flow-line div:first-child {
  border-color: rgba(79, 174, 155, 0.8);
}

.flow-line .warn {
  border-color: rgba(237, 184, 68, 0.8);
}

.flow-line i {
  background: rgba(247, 243, 232, 0.36);
  height: 1px;
}

.legal-surface {
  padding: 14px;
}

.legal-steps {
  align-items: center;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-bottom: 14px;
}

.legal-steps span {
  color: rgba(247, 243, 232, 0.58);
  font-size: 0.68rem;
  position: relative;
  text-align: center;
}

.legal-steps span::before {
  background: rgba(247, 243, 232, 0.22);
  border-radius: 50%;
  content: "";
  display: block;
  height: 10px;
  margin: 0 auto 5px;
  width: 10px;
}

.legal-steps .done::before {
  background: var(--teal);
}

.legal-surface table {
  border-collapse: collapse;
  color: rgba(247, 243, 232, 0.72);
  font-size: 0.68rem;
  width: 100%;
}

.legal-surface th,
.legal-surface td {
  border-top: 1px solid rgba(247, 243, 232, 0.1);
  padding: 8px 4px;
  text-align: left;
}

.legal-surface td:last-child {
  color: var(--gold);
  text-align: right;
}

.vault-surface {
  display: grid;
  grid-template-columns: 42px 1fr;
}

.vault-sidebar {
  border-right: 1px solid rgba(247, 243, 232, 0.1);
  display: grid;
  gap: 13px;
  justify-items: center;
  padding: 18px 0;
}

.vault-sidebar i {
  border: 1px solid rgba(247, 243, 232, 0.28);
  height: 11px;
  width: 11px;
}

.vault-main {
  padding: 14px;
}

.vault-search {
  border: 1px solid rgba(247, 243, 232, 0.13);
  color: rgba(247, 243, 232, 0.5);
  font-size: 0.7rem;
  margin-bottom: 9px;
  padding: 7px 9px;
}

.vault-file {
  align-items: center;
  display: grid;
  gap: 8px;
  grid-template-columns: 14px 1fr auto 10px;
  padding: 6px 0;
}

.vault-file span {
  border: 1px solid rgba(247, 243, 232, 0.3);
  height: 12px;
  width: 10px;
}

.vault-file strong,
.vault-file em {
  color: rgba(247, 243, 232, 0.75);
  font-size: 0.66rem;
  font-style: normal;
}

.vault-file em {
  color: rgba(247, 243, 232, 0.42);
}

.vault-file b {
  background: var(--gold);
  border-radius: 2px;
  height: 8px;
  width: 8px;
}

.preorder-button {
  align-items: center;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: var(--gold-soft);
  display: flex;
  font-size: 0.93rem;
  font-weight: 800;
  gap: 10px;
  justify-content: center;
  margin-top: auto;
  min-height: 42px;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.preorder-button:hover {
  background: rgba(247, 243, 232, 0.06);
  transform: translateY(-1px);
}

.concept-card-blueprint .preorder-button,
.concept-card-blueprint .concept-card-top span {
  color: #8fd9eb;
}

.concept-card-communications .preorder-button,
.concept-card-communications .concept-card-top span {
  color: #8be0d2;
}

.concept-card-legal .preorder-button,
.concept-card-legal .concept-card-top span {
  color: #b9d881;
}

.concept-card-keydock .preorder-button,
.concept-card-keydock .concept-card-top span {
  color: #e8834c;
}

.brief-preview-wrap {
  border-top: 1px solid rgba(237, 184, 68, 0.22);
  display: grid;
  gap: 16px;
  grid-template-columns: 1.2fr repeat(4, 1fr);
  margin-top: 20px;
  padding-top: 18px;
}

.brief-title h2 {
  color: var(--text);
  font-size: 1.5rem;
}

.brief-title p {
  color: rgba(247, 243, 232, 0.72);
  margin-top: 4px;
}

.brief-preview {
  background: rgba(17, 20, 15, 0.86);
  border: 1px solid rgba(237, 184, 68, 0.24);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
  color: var(--gold);
  min-height: 118px;
  padding: 12px;
}

.brief-preview > div {
  display: flex;
  gap: 18px;
  justify-content: space-between;
}

.brief-preview span {
  color: currentColor;
  display: block;
  font-size: 0.64rem;
  font-weight: 860;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brief-preview small {
  color: rgba(247, 243, 232, 0.55);
  display: block;
  font-size: 0.66rem;
}

.brief-preview strong {
  color: var(--text);
  display: block;
  font-size: 1rem;
}

.brief-preview svg {
  height: 42px;
  margin-top: 8px;
  width: 100%;
}

.brief-preview p {
  color: rgba(247, 243, 232, 0.62);
  font-size: 0.66rem;
  line-height: 1.35;
  margin-top: 4px;
}

.brief-communications {
  color: #73d9ca;
}

.brief-blueprint {
  color: #8fd9eb;
}

.brief-legal {
  color: #b9d881;
}

.brief-keydock {
  color: #e8834c;
}

.concept-bottom-strip {
  align-items: center;
  border-top: 1px solid rgba(237, 184, 68, 0.22);
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, 1fr) 1.8fr;
  margin-top: 18px;
  padding-top: 18px;
}

.concept-bottom-strip > div {
  align-items: center;
  border-right: 1px solid rgba(237, 184, 68, 0.22);
  display: grid;
  gap: 4px 14px;
  grid-template-columns: 42px 1fr;
}

.concept-bottom-strip span {
  color: var(--gold);
  font-size: 2rem;
  grid-row: span 2;
}

.concept-bottom-strip strong {
  color: var(--text);
}

.concept-bottom-strip small {
  color: rgba(247, 243, 232, 0.58);
}

.concept-bottom-strip aside {
  align-items: center;
  background: rgba(17, 20, 15, 0.82);
  border: 1px solid rgba(237, 184, 68, 0.22);
  border-radius: 8px;
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr auto;
  padding: 14px 16px;
}

.concept-bottom-strip aside p {
  color: rgba(247, 243, 232, 0.76);
  font-size: 0.86rem;
}

@media (max-width: 1180px) {
  .concept-hero-stage {
    gap: 34px;
    grid-template-columns: 1fr;
  }

  .concept-hero-copy {
    max-width: 820px;
  }

  .hero-blueprint-panel {
    max-width: 860px;
  }

  .concept-project-grid,
  .brief-preview-wrap,
  .concept-bottom-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brief-title,
  .concept-bottom-strip aside {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .concept-home .site-header {
    padding: 16px 18px;
  }

  .concept-home .brand-logo {
    width: 166px;
  }

  .concept-hero {
    padding: 38px 18px 42px;
  }

  .concept-hero::before,
  .concept-hero::after {
    height: 360px;
    opacity: 0.42;
    top: 20px;
    width: 360px;
  }

  .hero-brand-lockup img {
    width: min(360px, 88vw);
  }

  .concept-hero h1 {
    font-size: 2.72rem;
    text-align: left;
  }

  .concept-hero-copy > p {
    text-align: left;
  }

  .hero-platform-link {
    margin-left: 0;
    width: 100%;
  }

  .hero-blueprint-panel {
    padding: 8px;
  }

  .hero-panel-top a,
  .hero-panel-footer {
    display: none;
  }

  .hero-blueprint-panel img {
    margin-top: 8px;
  }

  .concept-project-grid,
  .brief-preview-wrap,
  .concept-bottom-strip {
    grid-template-columns: 1fr;
  }

  .concept-card {
    min-height: auto;
  }

  .concept-visual {
    height: auto;
    min-height: 150px;
  }

  .flow-line,
  .flow-line.secondary {
    grid-template-columns: 1fr;
    margin-left: 0;
  }

  .flow-line i {
    height: 16px;
    justify-self: center;
    width: 1px;
  }

  .concept-bottom-strip > div {
    border-right: 0;
    border-bottom: 1px solid rgba(237, 184, 68, 0.16);
    padding-bottom: 14px;
  }

  .concept-bottom-strip aside {
    grid-template-columns: 1fr;
  }
}

.proof-inner {
  align-items: center;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 0.76fr) minmax(420px, 1fr);
  margin: 0 auto;
  max-width: var(--max);
}

.proof-inner p {
  color: rgba(247, 243, 232, 0.66);
  font-size: 0.94rem;
}

.proof-inner div {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.section {
  background: var(--paper);
  padding: 108px 24px;
}

.section-white {
  background: #fff;
}

.section-warm {
  background: var(--paper-soft);
}

.section-dark {
  background:
    linear-gradient(180deg, #080907 0%, #0c0e0b 100%);
  color: var(--text);
}

.section-inner {
  margin: 0 auto;
  max-width: var(--max);
}

.section-grid,
.subscription-layout,
.control-band,
.split,
.workflow-layout,
.contact-grid {
  align-items: start;
  display: grid;
  gap: 56px;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
}

.section-grid > div:first-child p,
.subscription-layout > div:first-child p,
.control-band > div:first-child p,
.split > div:first-child p,
.workflow-layout > div:first-child p {
  margin-top: 22px;
}

.section-head {
  align-items: end;
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.55fr);
  margin-bottom: 42px;
}

.section-dark h2,
.section-dark h3 {
  color: var(--text);
}

.section-dark p {
  color: rgba(247, 243, 232, 0.68);
}

.section-dark .feature-card h3,
.section-dark .rich-panel h3,
.section-dark .use-card h3 {
  color: var(--ink);
}

.section-dark .feature-card p,
.section-dark .rich-panel p,
.section-dark .use-card p {
  color: var(--muted);
}

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

.platform-model article {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 18px;
  grid-template-columns: 44px 0.56fr 1fr;
  padding: 24px 0;
}

.platform-model span {
  color: var(--gold-2);
  font-size: 0.9rem;
  font-weight: 860;
}

.platform-model p {
  font-size: 0.95rem;
}

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

.product-card,
.feature-card,
.plan-card,
.use-card,
.rich-panel {
  border-radius: var(--radius);
}

.product-card {
  background: rgba(247, 243, 232, 0.07);
  border: 1px solid var(--line-dark);
  display: flex;
  flex-direction: column;
  min-height: 440px;
  padding: 28px;
}

.product-card h3 {
  color: var(--text);
  font-size: 1.55rem;
  margin-top: 22px;
}

.product-card p {
  color: rgba(247, 243, 232, 0.66);
  font-size: 0.96rem;
  margin-top: 16px;
}

.product-card ul,
.plan-card ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
}

.product-card li,
.plan-card li {
  color: rgba(247, 243, 232, 0.72);
  font-size: 0.9rem;
  line-height: 1.36;
  list-style: none;
  padding-left: 18px;
  position: relative;
}

.product-card li::before,
.plan-card li::before {
  background: var(--gold);
  border-radius: 50%;
  content: "";
  height: 5px;
  left: 0;
  position: absolute;
  top: 0.55em;
  width: 5px;
}

.product-card a {
  color: var(--gold-soft);
  font-size: 0.92rem;
  font-weight: 800;
  margin-top: auto;
  padding-top: 28px;
}

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

.plan-card {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 54px rgba(22, 18, 10, 0.08);
  display: flex;
  flex-direction: column;
  min-height: 440px;
  padding: 30px;
}

.plan-card.compact {
  min-height: 330px;
}

.plan-card.is-featured {
  border-color: rgba(237, 184, 68, 0.62);
  box-shadow: 0 24px 70px rgba(237, 184, 68, 0.16);
}

.plan-card h2 {
  font-size: 2.35rem;
}

.plan-card h3 {
  font-size: 1.55rem;
  margin-top: 18px;
}

.plan-card p {
  margin-top: 16px;
}

.plan-card li {
  color: var(--muted);
}

.plan-card .button {
  margin-top: auto;
}

.control-band {
  background: var(--dark);
  border: 1px solid rgba(247, 243, 232, 0.12);
  color: var(--text);
  padding: 56px;
}

.control-band h2 {
  color: var(--text);
}

.control-band p {
  color: rgba(247, 243, 232, 0.68);
}

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

.control-list div {
  border-bottom: 1px solid var(--line-dark);
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(150px, 0.5fr) 1fr;
  padding: 18px 0;
}

.control-list strong {
  color: var(--gold-soft);
}

.control-list span {
  color: rgba(247, 243, 232, 0.68);
  line-height: 1.5;
}

.cta-band {
  background: var(--dark);
  border-top: 1px solid var(--line-dark);
  color: var(--text);
  padding: 76px 24px;
}

.cta-inner {
  align-items: center;
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(0, 0.9fr) auto;
  margin: 0 auto;
  max-width: var(--max);
}

.cta-inner h2 {
  color: var(--text);
}

.cta-inner p {
  color: rgba(247, 243, 232, 0.68);
  margin-top: 18px;
  max-width: 720px;
}

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

.page-hero {
  background:
    linear-gradient(145deg, #070806 0%, #11140f 100%);
  color: var(--text);
  padding: 92px 24px 88px;
}

.page-hero-inner {
  margin: 0 auto;
  max-width: var(--max);
}

.page-hero h1 {
  max-width: 980px;
}

.page-hero p {
  color: rgba(247, 243, 232, 0.76);
  font-size: 1.12rem;
  margin-top: 24px;
  max-width: 760px;
}

.section-kicker {
  margin-bottom: 16px;
}

.workflow-layout {
  align-items: center;
}

.workflow-steps,
.stack,
.check-list {
  display: grid;
  gap: 14px;
}

.workflow-steps,
.check-list {
  margin-top: 28px;
}

.workflow-step {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  gap: 16px;
  grid-template-columns: 42px 1fr;
  min-height: 68px;
  padding: 14px;
}

.workflow-step span {
  align-items: center;
  background: rgba(237, 184, 68, 0.16);
  border-radius: 50%;
  color: #8d5513;
  display: inline-flex;
  font-size: 0.86rem;
  font-weight: 850;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.product-frame {
  background: #11140f;
  border: 1px solid rgba(16, 18, 15, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.product-frame img {
  width: 100%;
}

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

.feature-card,
.use-card,
.rich-panel {
  background: #fff;
  border: 1px solid var(--line);
  min-height: 210px;
  padding: 28px;
}

.rich-panel h2 {
  font-size: 2.1rem;
}

.feature-card p,
.use-card p,
.rich-panel p {
  margin-top: 14px;
}

.approval-band {
  background: var(--dark);
  color: var(--text);
  display: grid;
  gap: 44px;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  margin: 0 auto;
  max-width: var(--max);
  padding: 56px;
}

.approval-band h2 {
  color: var(--text);
}

.approval-band p,
.approval-list li {
  color: rgba(247, 243, 232, 0.72);
}

.approval-list,
.check-list {
  margin: 0;
  padding: 0;
}

.approval-list li,
.check-list li {
  list-style: none;
}

.approval-list {
  display: grid;
  gap: 14px;
}

.approval-list li {
  border-bottom: 1px solid var(--line-dark);
  font-weight: 720;
  padding: 0 0 14px;
}

.check-list li {
  color: var(--muted);
  font-weight: 720;
  line-height: 1.45;
  padding-left: 24px;
  position: relative;
}

.check-list li::before {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  border-radius: 50%;
  content: "";
  height: 8px;
  left: 0;
  position: absolute;
  top: 0.62em;
  width: 8px;
}

.contact-grid {
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 0.82fr);
}

.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 22px 64px rgba(22, 18, 10, 0.12);
  display: grid;
  gap: 18px;
  padding: 30px;
}

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

label {
  color: #4c534b;
  display: grid;
  font-size: 0.82rem;
  font-weight: 780;
  gap: 8px;
}

input,
select,
textarea {
  background: #fff;
  border: 1px solid #d8d1c1;
  border-radius: var(--radius);
  color: var(--ink);
  font: inherit;
  font-size: 0.98rem;
  min-height: 48px;
  padding: 12px 13px;
  width: 100%;
}

select {
  min-width: 0;
  text-overflow: ellipsis;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold-2);
  box-shadow: 0 0 0 3px rgba(217, 130, 47, 0.15);
  outline: none;
}

.form-note {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.form-success {
  background: rgba(79, 174, 155, 0.12);
  border: 1px solid rgba(79, 174, 155, 0.34);
  border-radius: var(--radius);
  color: #1d6c5f;
  display: none;
  font-weight: 720;
  line-height: 1.45;
  padding: 14px;
}

.form-success.is-visible {
  display: block;
}

.form-error {
  background: rgba(191, 64, 54, 0.1);
  border: 1px solid rgba(191, 64, 54, 0.34);
  border-radius: var(--radius);
  color: #8b2a22;
  display: none;
  font-weight: 720;
  line-height: 1.45;
  padding: 14px;
}

.form-error.is-visible {
  display: block;
}

.contact-form button[disabled] {
  cursor: wait;
  opacity: 0.72;
}

.legal-content {
  margin: 0 auto;
  max-width: 820px;
}

.legal-content h2 {
  font-size: 2rem;
  margin-top: 46px;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.legal-content p {
  margin-top: 16px;
}

.legal-content ul {
  margin: 18px 0 0;
  padding-left: 22px;
}

.redirect-page {
  align-items: center;
  background:
    radial-gradient(circle at center top, rgba(237, 184, 68, 0.16), transparent 34%),
    #030403;
  color: var(--text);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100svh;
  padding: 32px;
  text-align: center;
}

.redirect-page img {
  margin-bottom: 34px;
  width: min(360px, 82vw);
}

.redirect-page h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
  max-width: 760px;
}

.redirect-page p {
  color: rgba(247, 243, 232, 0.74);
  margin-top: 18px;
}

.redirect-page a {
  color: var(--gold-soft);
  font-weight: 800;
}

.site-footer {
  background: var(--dark);
  border-top: 1px solid var(--line-dark);
  color: var(--text);
  padding: 48px 24px;
}

.footer-inner {
  align-items: start;
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(0, 1fr) auto;
  margin: 0 auto;
  max-width: var(--max);
}

.footer-logo {
  width: 178px;
}

.footer-inner p {
  color: rgba(247, 243, 232, 0.62);
  margin-top: 16px;
  max-width: 540px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-end;
}

.footer-links a {
  color: rgba(247, 243, 232, 0.72);
  font-size: 0.9rem;
  font-weight: 720;
}

@media (max-width: 1080px) {
  h1 {
    font-size: 3.35rem;
  }

  h2 {
    font-size: 2.45rem;
  }

  .hero-inner,
  .project-hero-inner,
  .blueprint-hero-inner,
  .blueprint-proof-grid,
  .preorder-layout,
  .project-detail-grid,
  .section-grid,
  .subscription-layout,
  .control-band,
  .split,
  .workflow-layout,
  .contact-grid,
  .approval-band,
  .cta-inner,
  .section-head,
  .proof-inner {
    grid-template-columns: 1fr;
  }

  .platform-preview {
    max-width: 760px;
  }

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

  .project-grid,
  .brief-grid,
  .blueprint-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brand-hero h1 {
    font-size: 4rem;
  }

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

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

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 900px) {
  .nav-links {
    background: rgba(7, 8, 6, 0.98);
    border-top: 1px solid var(--line-dark);
    display: none;
    flex-direction: column;
    gap: 0;
    left: 0;
    padding: 18px 24px 28px;
    position: fixed;
    right: 0;
    top: 76px;
  }

  .menu-open .nav-links {
    display: flex;
  }

  .nav-links a {
    border-bottom: 1px solid var(--line-dark);
    padding: 17px 0;
    width: 100%;
  }

  .header-actions .button {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

  .plan-grid,
  .feature-grid,
  .use-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 16px 18px;
  }

  .brand-logo {
    width: 160px;
  }

  h1 {
    font-size: 2.9rem;
    line-height: 1.02;
  }

  .no-break {
    white-space: normal;
  }

  h2 {
    font-size: 2.05rem;
    line-height: 1.06;
  }

  .hero {
    padding: 54px 18px 58px;
  }

  .hero-copy p,
  .page-hero p {
    font-size: 1.02rem;
  }

  .hero-proof,
  .launch-line,
  .preview-grid,
  .project-grid,
  .brief-grid,
  .blueprint-flow,
  .product-grid,
  .proof-inner div,
  .form-row {
    grid-template-columns: 1fr;
  }

  .platform-preview {
    padding: 8px;
  }

  .preview-grid {
    padding: 8px;
  }

  .subscription-panel {
    grid-column: auto;
  }

  .section,
  .cta-band {
    padding: 72px 18px;
  }

  .page-hero {
    padding: 68px 18px 70px;
  }

  .platform-model article {
    grid-template-columns: 1fr;
  }

  .brand-hero {
    padding: 70px 18px;
  }

  .brand-hero-inner {
    min-height: auto;
  }

  .hero-logo {
    margin-bottom: 34px;
    width: min(500px, 92vw);
  }

  .brand-hero h1 {
    font-size: 3rem;
  }

  .brand-hero p {
    font-size: 1.05rem;
  }

  .showcase-head,
  .project-hero-inner,
  .preorder-layout,
  .project-detail-grid {
    grid-template-columns: 1fr;
  }

  .project-showcase,
  .project-hero {
    padding: 70px 18px;
  }

  .launch-card {
    min-height: 500px;
  }

  .project-art {
    min-height: 300px;
  }

  .blueprint-hero-art img {
    aspect-ratio: 4 / 3;
  }

  .legal-art,
  .keydock-art,
  .detail-points article {
    grid-template-columns: 1fr;
  }

  .legal-art span {
    height: 28px;
    justify-self: center;
    width: 2px;
  }

  .control-band,
  .approval-band {
    padding: 32px 22px;
  }

  .control-list div {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 22px;
  }

  .cta-actions,
  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}
