:root {
  --ink: #080f14;
  --charcoal: #1a1f26;
  --slate: #374151;
  --paper: #f5f3ef;
  --white: #ffffff;
  --gold: #d4af37;
  --gold-soft: #f1d673;
  --line: rgba(8, 15, 20, 0.12);
  --muted: rgba(255, 255, 255, 0.68);
  --shadow: 0 24px 80px rgba(8, 15, 20, 0.18);
}

body[data-theme="dark"] {
  --ink: #f6f4ec;
  --charcoal: #d8dde4;
  --slate: rgba(255, 255, 255, 0.76);
  --paper: #10161d;
  --line: rgba(255, 255, 255, 0.16);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --surface: #141b23;
  --surface-strong: #1a232d;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.6;
}

body.menu-open,
body.guide-open {
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(20px, 5vw, 72px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(8, 15, 20, 0.82), rgba(8, 15, 20, 0));
}

.site-header.page-header {
  background: linear-gradient(180deg, rgba(8, 15, 20, 0.92), rgba(8, 15, 20, 0));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.brand img {
  width: 28px;
  height: 28px;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.7vw, 26px);
  font-size: 0.8rem;
}

nav a {
  color: rgba(255, 255, 255, 0.78);
}

nav a:hover {
  color: var(--white);
}

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

.header-button {
  display: inline-flex;
  min-width: 44px;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 0 13px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  font: inherit;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-button:hover {
  border-color: rgba(212, 175, 55, 0.62);
  color: var(--white);
}

.menu-toggle {
  display: none;
  position: relative;
  width: 44px;
  padding: 0;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.menu-toggle {
  flex-direction: column;
  gap: 5px;
}

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

.menu-open .menu-toggle::before {
  transform: translateY(7px) rotate(45deg);
}

.menu-open .menu-toggle::after {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  min-height: 100vh;
  overflow: hidden;
  padding: 148px clamp(20px, 6vw, 92px) 84px;
  color: var(--white);
  background:
    radial-gradient(circle at 72% 28%, rgba(212, 175, 55, 0.16), transparent 28%),
    linear-gradient(135deg, #050a0e 0%, #10171d 44%, #252b30 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 36%;
  background:
    linear-gradient(160deg, transparent 0 20%, rgba(245, 243, 239, 0.08) 20% 21%, transparent 21%),
    linear-gradient(20deg, #111820 0 42%, #030608 42% 100%);
  clip-path: polygon(0 45%, 18% 28%, 31% 44%, 46% 18%, 62% 48%, 78% 30%, 100% 56%, 100% 100%, 0 100%);
  opacity: 0.63;
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-copy {
  align-self: center;
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.5vw, 4.2rem);
  line-height: 1.04;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.hero-text {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions,
.card-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.hero-proof span {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 3px;
  padding: 0 22px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.button.primary {
  border-color: transparent;
  color: #111;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.03);
}

.text-link {
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 800;
}

.hero-visual {
  display: grid;
  place-items: center;
  min-height: 480px;
}

.foundation-system {
  position: relative;
  width: min(44vw, 560px);
  min-width: 420px;
  height: 580px;
}

.foundation-aura {
  position: absolute;
  inset: 4% 0 8%;
  background:
    radial-gradient(circle at 50% 18%, rgba(212, 175, 55, 0.18), transparent 24%),
    radial-gradient(circle at 48% 72%, rgba(61, 150, 255, 0.12), transparent 32%);
  filter: blur(10px);
  opacity: 0.9;
}

.foundation-keystone {
  position: absolute;
  z-index: 3;
  top: 4%;
  left: 50%;
  display: grid;
  justify-items: center;
  gap: 14px;
  transform: translate(-50%, -50%);
}

.foundation-keystone::after {
  content: "";
  position: absolute;
  top: 168px;
  left: 50%;
  width: 1px;
  height: 185px;
  background: linear-gradient(var(--gold), rgba(212, 175, 55, 0));
}

.foundation-keystone img {
  width: clamp(112px, 14vw, 156px);
  height: clamp(112px, 14vw, 156px);
  filter: drop-shadow(0 22px 42px rgba(212, 175, 55, 0.18));
}

.foundation-keystone span {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.foundation-planes {
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: 126px;
  width: min(100%, 540px);
  height: 310px;
  transform: translateX(-50%);
}

.foundation-plane {
  position: absolute;
  left: 50%;
  border: 1px solid rgba(212, 175, 55, 0.3);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.025)),
    rgba(8, 15, 20, 0.28);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.26);
  transform: translateX(-50%) rotateX(62deg) rotateZ(-45deg);
}

.foundation-plane::after {
  content: "";
  position: absolute;
  inset: 18%;
  border: 1px solid rgba(212, 175, 55, 0.28);
}

.plane-base {
  bottom: 0;
  width: 86%;
  height: 210px;
}

.plane-middle {
  bottom: 64px;
  width: 66%;
  height: 168px;
}

.plane-top {
  bottom: 122px;
  width: 46%;
  height: 124px;
}

.foundation-product {
  position: absolute;
  z-index: 4;
  display: grid;
  gap: 5px;
  min-width: 136px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.22);
}

.foundation-product::before {
  content: "";
  position: absolute;
  background: rgba(212, 175, 55, 0.34);
}

.foundation-product img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.foundation-product span {
  font-weight: 800;
}

.foundation-product small {
  color: var(--muted);
  font-size: 0.74rem;
}

.ambiten-product {
  right: 2%;
  bottom: 136px;
  border-color: rgba(61, 150, 255, 0.32);
  background:
    radial-gradient(circle at 82% 12%, rgba(61, 150, 255, 0.24), transparent 40%),
    rgba(255, 255, 255, 0.07);
}

.ambiten-product::before {
  right: 100%;
  top: 42px;
  width: 96px;
  height: 1px;
}

.future-product {
  min-width: 112px;
  opacity: 0.52;
}

.future-product span {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;
}

.product-two {
  left: 5%;
  bottom: 178px;
}

.product-two::before {
  left: 100%;
  top: 34px;
  width: 76px;
  height: 1px;
}

.product-three {
  left: 36%;
  bottom: 104px;
}

.product-three::before {
  left: 50%;
  bottom: 100%;
  width: 1px;
  height: 42px;
}

.section {
  padding: 90px clamp(20px, 6vw, 92px);
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  padding: 154px clamp(20px, 6vw, 92px) 92px;
  min-height: 640px;
  color: var(--white);
  background:
    radial-gradient(circle at 84% 18%, rgba(212, 175, 55, 0.16), transparent 28%),
    linear-gradient(135deg, #050a0e 0%, #10171d 48%, #252b30 100%);
}

.page-hero-copy {
  max-width: 940px;
}

.page-hero-copy h1 {
  max-width: 900px;
  margin-bottom: 22px;
}

.page-hero-copy p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
}

.page-hero-visual {
  display: grid;
  min-height: 430px;
  place-items: center;
}

.page-foundation-system {
  position: relative;
  width: min(34vw, 430px);
  min-width: 320px;
  height: 430px;
}

.page-foundation-aura {
  position: absolute;
  inset: 4% 0 2%;
  background:
    radial-gradient(circle at 50% 18%, rgba(212, 175, 55, 0.22), transparent 25%),
    radial-gradient(circle at 58% 72%, rgba(61, 150, 255, 0.12), transparent 34%);
  filter: blur(10px);
}

.page-foundation-mark {
  position: absolute;
  z-index: 3;
  top: 4%;
  left: 50%;
  width: 116px;
  height: 116px;
  filter: drop-shadow(0 22px 42px rgba(212, 175, 55, 0.2));
  transform: translateX(-50%);
}

.page-foundation-mark::after {
  content: "";
}

.page-foundation-planes {
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: 86px;
  width: 100%;
  height: 224px;
  transform: translateX(-50%);
}

.page-foundation-planes::before {
  content: "";
  position: absolute;
  top: -22px;
  left: 50%;
  width: 1px;
  height: 80px;
  background: linear-gradient(var(--gold), rgba(212, 175, 55, 0));
}

.page-foundation-planes span {
  position: absolute;
  left: 50%;
  border: 1px solid rgba(212, 175, 55, 0.3);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02)),
    rgba(8, 15, 20, 0.3);
  transform: translateX(-50%) rotateX(62deg) rotateZ(-45deg);
}

.page-foundation-planes span:nth-child(1) {
  bottom: 0;
  width: 88%;
  height: 152px;
}

.page-foundation-planes span:nth-child(2) {
  bottom: 48px;
  width: 66%;
  height: 118px;
}

.page-foundation-planes span:nth-child(3) {
  bottom: 90px;
  width: 44%;
  height: 84px;
}

.page-foundation-node {
  position: absolute;
  z-index: 4;
  display: grid;
  gap: 4px;
  min-width: 116px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 12px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
}

.page-foundation-node img,
.page-foundation-node i {
  width: 32px;
  height: 32px;
}

.page-foundation-node img {
  object-fit: contain;
}

.page-foundation-node i {
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 50%;
}

.page-foundation-node span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.72rem;
  font-weight: 800;
}

.page-foundation-node.active {
  right: 0;
  bottom: 78px;
  border-color: rgba(61, 150, 255, 0.34);
  background:
    radial-gradient(circle at 82% 12%, rgba(61, 150, 255, 0.22), transparent 40%),
    rgba(255, 255, 255, 0.08);
}

.page-foundation-node.future {
  left: 0;
  bottom: 118px;
  opacity: 0.58;
}

.mission-hero h1 {
  max-width: 1060px;
}

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

.mission-hero-copy p {
  color: var(--muted);
  font-size: clamp(1.02rem, 1.8vw, 1.18rem);
}

.about-article {
  max-width: 920px;
  padding: 84px clamp(20px, 6vw, 92px);
}

.about-article section {
  padding: 0 0 54px;
  margin-bottom: 54px;
  border-bottom: 1px solid var(--line);
}

.about-article section:last-child {
  margin-bottom: 0;
}

.about-article h2 {
  max-width: 760px;
  font-size: clamp(1.9rem, 3.6vw, 3rem);
}

.about-article h3 {
  margin-bottom: 8px;
}

.about-article p,
.about-article blockquote {
  max-width: 760px;
  color: var(--slate);
  font-size: 1.05rem;
}

.about-article .button {
  margin-top: 12px;
}

.thesis-pullout {
  max-width: 820px;
  margin: 0 0 32px;
  border-left: 3px solid var(--gold);
  padding: 20px 0 20px 28px;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.08), transparent 76%);
}

.thesis-pullout p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.45rem, 3vw, 2.25rem);
  font-weight: 800;
  line-height: 1.12;
}

.thesis-pullout p + p {
  margin-top: 8px;
}

.about-product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 300px);
  gap: clamp(28px, 5vw, 58px);
  align-items: start;
}

.about-product-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(8, 15, 20, 0.14);
  border-radius: 8px;
  padding: 24px;
  color: var(--white);
  background:
    radial-gradient(circle at 86% 14%, rgba(61, 150, 255, 0.28), transparent 36%),
    linear-gradient(135deg, #070b12, #171f2a 72%, #101826);
}

.about-product-card img {
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
}

.about-product-card span,
.about-product-card small {
  display: block;
}

.about-product-card span {
  font-size: 1.25rem;
  font-weight: 800;
}

.about-product-card small {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.62);
}

.about-product-card p {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.runtime-lines {
  display: grid;
  gap: 8px;
  margin-top: 8px;
}

.runtime-lines i {
  display: block;
  height: 34px;
  border: 1px solid rgba(212, 175, 55, 0.26);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.045);
}

.runtime-lines i:nth-child(2) {
  width: 82%;
}

.runtime-lines i:nth-child(3) {
  width: 64%;
}

.founder-article {
  max-width: 1040px;
}

.founder-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  gap: clamp(30px, 5vw, 68px);
  align-items: start;
}

.founder-profile-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(212, 175, 55, 0.1), transparent 72%),
    var(--paper);
}

.founder-profile-card h2 {
  margin-bottom: 16px;
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  line-height: 1.05;
}

.founder-profile-card span {
  display: block;
  color: var(--slate);
}

.founder-industries {
  margin: 28px 0;
}

.founder-journey {
  margin-bottom: 28px;
}

.journey-section {
  max-width: 920px;
  margin-top: 56px;
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.journey-grid div {
  padding: 24px;
  background: var(--paper);
}

.journey-grid strong,
.journey-grid span {
  display: block;
}

.journey-grid strong {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 1.65rem;
  line-height: 1;
}

.journey-grid .active-year strong {
  color: var(--gold);
}

.journey-grid span {
  color: var(--slate);
  font-size: 0.9rem;
}

.keystone-principle-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
  gap: clamp(34px, 6vw, 72px);
  align-items: center;
}

.keystone-diagram {
  position: relative;
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(212, 175, 55, 0.08), transparent 58%),
    var(--paper);
}

.keystone-stone {
  position: absolute;
  top: 24px;
  left: 50%;
  width: 54px;
  height: 68px;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  clip-path: polygon(50% 0, 100% 22%, 82% 100%, 18% 100%, 0 22%);
  transform: translateX(-50%);
  box-shadow: 0 18px 40px rgba(212, 175, 55, 0.22);
}

.diagram-label.top {
  position: absolute;
  top: 94px;
  left: 0;
  right: 0;
  margin: 0;
  color: var(--ink);
  text-align: center;
  text-transform: uppercase;
}

.diagram-label.top strong,
.diagram-label.top span {
  display: block;
}

.diagram-label.top strong {
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.diagram-label.top span {
  margin-top: 2px;
  color: var(--slate);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.diagram-connector {
  position: absolute;
  top: 132px;
  left: 50%;
  width: 1px;
  height: 24px;
  background: linear-gradient(var(--gold), rgba(8, 15, 20, 0.18));
}

.diagram-products {
  position: absolute;
  left: 20px;
  right: 20px;
  top: 132px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.diagram-products::before {
  content: "";
  position: absolute;
  left: 25%;
  right: 25%;
  top: -16px;
  height: 1px;
  background: rgba(212, 175, 55, 0.34);
}

.diagram-product {
  display: grid;
  min-height: 66px;
  align-content: center;
  justify-items: center;
  gap: 6px;
  border: 1px solid rgba(8, 15, 20, 0.12);
  border-radius: 7px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.48);
}

.diagram-product.active {
  border-color: rgba(61, 150, 255, 0.35);
  background:
    radial-gradient(circle at 80% 14%, rgba(61, 150, 255, 0.16), transparent 42%),
    rgba(255, 255, 255, 0.64);
}

.diagram-product img,
.future-dot {
  width: 24px;
  height: 24px;
}

.diagram-product img {
  object-fit: contain;
}

.future-dot {
  display: block;
  border: 1px solid rgba(8, 15, 20, 0.32);
  border-radius: 50%;
}

.diagram-product span {
  color: var(--slate);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
}

.foundation-base {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 8px;
  display: grid;
  min-height: 24px;
  align-items: start;
  justify-items: center;
  border-top: 2px solid rgba(212, 175, 55, 0.72);
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.08), transparent);
}

.foundation-base span {
  padding-top: 4px;
  color: var(--slate);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
}

.principles-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.principles-list div {
  padding: 24px;
  background: var(--paper);
}

.principles-list p {
  margin-bottom: 0;
  font-size: 0.98rem;
}

.mission-list {
  display: grid;
  gap: 10px;
  max-width: 760px;
  margin: 20px 0 28px;
  padding: 0;
  list-style: none;
}

.mission-list li {
  position: relative;
  padding-left: 24px;
  color: var(--slate);
  font-size: 1.02rem;
}

.mission-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 9px;
  height: 1px;
  background: var(--gold);
}

.build-toward-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 860px;
  margin: 30px 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.build-toward-grid div {
  padding: 24px;
  background: var(--paper);
}

.build-toward-grid strong,
.build-toward-grid span {
  display: block;
}

.build-toward-grid strong {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1rem;
}

.build-toward-grid span {
  color: var(--slate);
  font-size: 0.92rem;
}

.closing-statement {
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(212, 175, 55, 0.12), transparent 52%),
    var(--paper);
}

.about-article section.closing-statement {
  padding: 56px;
}

.closing-statement blockquote {
  max-width: 800px;
  margin-top: 0;
  color: var(--ink);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1.06;
}

.closing-statement p {
  margin-bottom: 0;
  color: var(--slate);
  font-size: 1.1rem;
}

.closing-statement p + p {
  margin-top: 10px;
}

.promise-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0;
}

.promise-list span {
  border: 1px solid rgba(212, 175, 55, 0.32);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.44);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

blockquote {
  margin: 24px 0;
  border-left: 3px solid var(--gold);
  padding: 8px 0 8px 22px;
  font-weight: 800;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 40px;
}

.section-heading p:not(.eyebrow) {
  color: var(--slate);
  font-size: 1.05rem;
}

.product-band {
  background: var(--white);
}

.product-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 18px;
}

.product-card {
  min-height: 360px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 30px;
  background: var(--paper);
}

.product-card.featured {
  display: flex;
  flex-direction: column;
  min-height: 430px;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 12%, rgba(126, 87, 255, 0.32), transparent 32%),
    linear-gradient(135deg, #070b12, #171f2a 70%, #101826);
}

.product-card p {
  color: var(--slate);
}

.product-card.featured p {
  color: rgba(255, 255, 255, 0.7);
}

.product-card.featured .button.secondary {
  border-color: rgba(255, 255, 255, 0.28);
}

.product-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}

.product-label {
  margin-bottom: 10px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.product-topline .product-label {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  text-align: right;
}

.product-intro {
  max-width: 620px;
}

.feature-list {
  display: grid;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 9px;
  height: 1px;
  background: var(--gold);
}

.featured .card-actions {
  margin-top: auto;
  padding-top: 34px;
}

.product-mark {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 8px;
  font-weight: 900;
}

.ambiten-mark {
  color: var(--white);
  background: linear-gradient(135deg, #7c3cff, #2ba7ff);
}

.ambiten-logo {
  object-fit: contain;
  padding: 2px;
  background: transparent;
}

.product-mark.ambiten-logo {
  width: 58px;
  height: 58px;
}

.node-mark.ambiten-logo {
  width: 46px;
  height: 46px;
  border-radius: 0;
}

.origin-mark {
  border: 12px solid var(--ink);
  background: linear-gradient(90deg, transparent 42%, var(--paper) 42% 58%, transparent 58%);
}

.orbit-mark {
  border: 4px solid var(--ink);
  border-radius: 50%;
}

.orbit-mark::after {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  transform: translate(18px, -18px);
}

.ecosystem-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(36px, 7vw, 98px);
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(212, 175, 55, 0.08), transparent 40%),
    var(--ink);
}

.ecosystem-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

.ecosystem-map {
  position: relative;
  display: grid;
  gap: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: clamp(20px, 4vw, 34px);
  background: rgba(255, 255, 255, 0.035);
}

.ecosystem-node {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.04);
}

.company-node {
  width: fit-content;
  min-width: 220px;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.company-node img {
  width: 36px;
  height: 36px;
}

.ecosystem-line {
  width: 1px;
  height: 34px;
  margin-left: 34px;
  background: linear-gradient(var(--gold), rgba(255, 255, 255, 0.08));
}

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

.product-node {
  align-items: flex-start;
  flex-direction: column;
  min-height: 172px;
  color: var(--white);
}

.product-node.active {
  border-color: rgba(212, 175, 55, 0.42);
  background:
    radial-gradient(circle at 84% 10%, rgba(43, 167, 255, 0.2), transparent 32%),
    rgba(255, 255, 255, 0.06);
}

.product-node span:not(.node-mark) {
  font-size: 1rem;
  font-weight: 800;
}

.product-node small {
  color: var(--muted);
}

.node-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 7px;
  font-weight: 900;
}

.node-mark.origin-mark {
  border-width: 10px;
  background:
    linear-gradient(90deg, transparent 42%, var(--ink) 42% 58%, transparent 58%),
    var(--paper);
}

.node-mark.orbit-mark {
  border-color: var(--paper);
}

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

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

.blog-card {
  max-width: 760px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 30px;
  background: var(--paper);
}

.blog-grid {
  display: grid;
  grid-template-columns: minmax(0, 760px);
  gap: 24px;
}

.blog-card {
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.blog-card:hover {
  border-color: rgba(212, 175, 55, 0.52);
  box-shadow: 0 18px 48px rgba(8, 15, 20, 0.08);
  transform: translateY(-2px);
}

.blog-card p {
  color: var(--slate);
}

.blog-card h3 {
  font-size: clamp(1.4rem, 2.6vw, 2.1rem);
}

.blog-link {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.blog-article {
  background: var(--paper);
}

.blog-article-hero {
  padding: 170px clamp(20px, 6vw, 92px) 86px;
  color: var(--white);
  background:
    radial-gradient(circle at 76% 22%, rgba(212, 175, 55, 0.16), transparent 28%),
    linear-gradient(135deg, #050a0e 0%, #10171d 48%, #252b30 100%);
}

.blog-article-hero h1,
.blog-article-hero p {
  max-width: 920px;
}

.blog-article-hero h1 {
  margin-bottom: 24px;
}

.blog-article-hero p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
}

.blog-article-body {
  max-width: 820px;
  padding: 76px clamp(20px, 6vw, 92px) 96px;
}

.blog-article-body p,
.blog-article-body blockquote {
  color: var(--slate);
  font-size: clamp(1.05rem, 1.5vw, 1.18rem);
}

.blog-article-body p {
  margin: 0 0 22px;
}

.blog-article-body blockquote {
  margin: 44px 0;
  border-left: 3px solid var(--gold);
  padding: 18px 0 18px 28px;
  color: var(--ink);
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  font-weight: 800;
  line-height: 1.16;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(320px, 1.28fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.contact-context,
.contact-form {
  background: var(--paper);
  padding: 30px;
}

.contact-context h3 {
  max-width: 420px;
  margin-bottom: 28px;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.12;
}

.contact-context strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
}

.contact-context ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-context li {
  position: relative;
  padding-left: 20px;
  color: var(--slate);
}

.contact-context li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 1px;
  background: var(--gold);
}

.contact-form {
  display: grid;
  gap: 18px;
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row label {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid rgba(8, 15, 20, 0.16);
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.62);
  font: inherit;
}

.form-row textarea {
  resize: vertical;
}

.form-row-hidden {
  display: none;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: rgba(212, 175, 55, 0.8);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.14);
  outline: none;
}

.form-status {
  min-height: 1.5rem;
  margin: 0;
  color: rgba(8, 15, 20, 0.68);
  font-size: 0.9rem;
}

.form-status[data-state="success"] {
  color: #2f6d45;
}

.form-status[data-state="error"] {
  color: #9a2f2f;
}

.form-status[data-state="loading"] {
  color: #8b6a17;
}

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

.contact-card {
  display: grid;
  gap: 10px;
  min-height: 220px;
  padding: 28px;
  background: var(--paper);
}

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

.contact-card strong {
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1.15;
}

.contact-card small {
  color: var(--slate);
  font-size: 0.94rem;
  line-height: 1.6;
}

.contact-card:hover {
  background: var(--white);
}

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

.values-grid article {
  min-height: 250px;
  padding: 28px;
  background: var(--paper);
}

.values-grid p,
.founder-section p,
.contact-section p {
  color: var(--slate);
}

.value-icon {
  display: block;
  width: 42px;
  height: 42px;
  margin-bottom: 26px;
  border: 2px solid var(--gold);
  opacity: 0.9;
}

.value-icon.layers {
  border: 0;
  background:
    linear-gradient(30deg, transparent 36%, var(--gold) 37% 40%, transparent 41%),
    linear-gradient(150deg, transparent 36%, var(--gold) 37% 40%, transparent 41%);
}

.value-icon.compass {
  border-radius: 50%;
  transform: rotate(35deg);
}

.value-icon.compass::after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  margin: 11px auto;
  border-top: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
}

.value-icon.nodes {
  border: 0;
  border-radius: 50%;
  box-shadow:
    0 0 0 2px var(--gold) inset,
    22px 32px 0 -14px var(--paper),
    22px 32px 0 -12px var(--gold),
    -20px 32px 0 -14px var(--paper),
    -20px 32px 0 -12px var(--gold);
}

.value-icon.shield {
  position: relative;
  border: 0;
}

.value-icon.shield::before {
  content: "";
  position: absolute;
  inset: 2px 5px 0;
  border: 2px solid var(--gold);
  border-radius: 4px 4px 14px 14px;
  clip-path: polygon(50% 0, 100% 16%, 86% 72%, 50% 100%, 14% 72%, 0 16%);
}

.founder-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  border-top: 1px solid var(--line);
}

.contact-section {
  color: var(--white);
  background: var(--ink);
}

.contact-section p {
  color: var(--muted);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.metrics div {
  padding: 18px;
  background: var(--paper);
}

.metrics strong,
.metrics span {
  display: block;
}

.metrics strong {
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 1.4rem;
  line-height: 1;
}

.metrics span {
  color: var(--slate);
  font-size: 0.82rem;
}

footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  padding: 34px clamp(20px, 6vw, 92px);
  color: var(--white);
  background: #04080b;
}

.footer-main {
  display: flex;
  align-items: center;
  gap: 28px;
}

.footer-main > span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
}

.footer-links a:hover {
  color: var(--white);
}

.legal {
  grid-column: 1 / -1;
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.78rem;
}

body[data-theme="dark"] .values-section,
body[data-theme="dark"] .blog-section,
body[data-theme="dark"] .product-band,
body[data-theme="dark"] .about-article,
body[data-theme="dark"] .blog-article,
body[data-theme="dark"] .contact-context,
body[data-theme="dark"] .contact-form,
body[data-theme="dark"] .contact-card,
body[data-theme="dark"] .blog-card,
body[data-theme="dark"] .values-grid article,
body[data-theme="dark"] .product-card,
body[data-theme="dark"] .journey-grid div,
body[data-theme="dark"] .principles-list div,
body[data-theme="dark"] .keystone-diagram,
body[data-theme="dark"] .founder-profile-card {
  background-color: var(--surface);
}

body[data-theme="dark"] .metrics div,
body[data-theme="dark"] .build-toward-grid div,
body[data-theme="dark"] .journey-grid div,
body[data-theme="dark"] .principles-list div,
body[data-theme="dark"] .values-grid article,
body[data-theme="dark"] .product-card,
body[data-theme="dark"] .blog-card,
body[data-theme="dark"] .contact-card {
  border-color: rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent),
    var(--surface-strong);
}

body[data-theme="dark"] .ecosystem-section {
  color: var(--white);
  background:
    radial-gradient(circle at 72% 22%, rgba(212, 175, 55, 0.16), transparent 26%),
    linear-gradient(135deg, #121a23 0%, #0b1118 52%, #151d26 100%);
}

body[data-theme="dark"] .ecosystem-copy p:not(.eyebrow),
body[data-theme="dark"] .product-node small,
body[data-theme="dark"] .company-node {
  color: rgba(255, 255, 255, 0.82);
}

body[data-theme="dark"] .ecosystem-map {
  border-color: rgba(212, 175, 55, 0.28);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

body[data-theme="dark"] .ecosystem-node {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.07);
}

body[data-theme="dark"] .product-node.active {
  border-color: rgba(212, 175, 55, 0.58);
  background:
    radial-gradient(circle at 84% 10%, rgba(43, 167, 255, 0.28), transparent 34%),
    rgba(255, 255, 255, 0.1);
}

body[data-theme="dark"] .ecosystem-line {
  background: linear-gradient(var(--gold), rgba(255, 255, 255, 0.22));
}

body[data-theme="dark"] .node-mark.origin-mark {
  background:
    linear-gradient(90deg, transparent 42%, #10161d 42% 58%, transparent 58%),
    #f5f3ef;
}

body[data-theme="dark"] .node-mark.orbit-mark {
  border-color: rgba(255, 255, 255, 0.86);
}

body[data-theme="dark"] .button.secondary {
  color: var(--white);
}

body[data-theme="dark"] .contact-section {
  background: #030608;
}

body[data-theme="dark"] .form-row input,
body[data-theme="dark"] .form-row select,
body[data-theme="dark"] .form-row textarea {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.06);
}

.site-guide {
  position: fixed;
  z-index: 40;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(3, 6, 8, 0.72);
  backdrop-filter: blur(10px);
}

.site-guide-panel {
  width: min(620px, 100%);
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 8px;
  padding: clamp(26px, 5vw, 44px);
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.36);
}

.site-guide-panel h2 {
  margin-bottom: 16px;
}

.site-guide-steps {
  display: grid;
  gap: 1px;
  overflow: hidden;
  margin: 26px 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.site-guide-steps div {
  padding: 18px;
  background: var(--paper);
}

.site-guide-steps strong,
.site-guide-steps span {
  display: block;
}

.site-guide-steps span {
  margin-top: 4px;
  color: var(--slate);
}

.site-guide-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 900px) {
  .site-header {
    background: linear-gradient(180deg, rgba(8, 15, 20, 0.94), rgba(8, 15, 20, 0.72));
    backdrop-filter: blur(14px);
  }

  nav {
    position: fixed;
    top: 82px;
    left: 16px;
    right: 16px;
    display: grid;
    max-height: calc(100vh - 108px);
    overflow-y: auto;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    padding: 68px 16px 16px;
    background: rgba(8, 15, 20, 0.96);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .menu-open nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  nav a {
    padding: 12px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.86);
  }

  nav a:last-child {
    border-bottom: 0;
  }

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

  .header-actions [data-theme-toggle] {
    position: fixed;
    top: 98px;
    left: 32px;
    right: 32px;
    z-index: 11;
    justify-content: flex-start;
    border-color: rgba(212, 175, 55, 0.34);
    color: var(--white);
    background: rgba(212, 175, 55, 0.12);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .menu-open .header-actions [data-theme-toggle] {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .guide-toggle {
    display: none;
  }

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

  .hero,
  .page-hero,
  .product-grid,
  .ecosystem-section,
  .founder-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 120px;
  }

  .page-hero {
    min-height: auto;
    padding-top: 124px;
  }

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

  .page-hero-visual {
    min-height: 390px;
  }

  .page-foundation-system {
    width: min(88vw, 430px);
    min-width: 0;
  }

  .foundation-system {
    width: min(88vw, 520px);
    min-width: 0;
    height: 520px;
  }

  .foundation-keystone {
    top: 10%;
  }

  .foundation-planes {
    bottom: 96px;
  }

  .ambiten-product {
    right: 0;
    bottom: 96px;
  }

  .product-two {
    left: 0;
    bottom: 136px;
  }

  .product-three {
    left: 30%;
    bottom: 26px;
  }

  .values-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-methods {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

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

  .about-product-layout,
  .founder-intro,
  .journey-grid,
  .build-toward-grid,
  .keystone-principle-layout {
    grid-template-columns: 1fr;
  }

  .keystone-diagram {
    max-width: 360px;
  }

  .ecosystem-products {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 560px) {
  .brand {
    letter-spacing: 0.2em;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .metrics {
    grid-template-columns: 1fr;
  }

  .product-topline {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-topline .product-label {
    text-align: left;
  }

  .hero-visual {
    min-height: 500px;
  }

  .foundation-system {
    height: 480px;
  }

  .foundation-keystone img {
    width: 104px;
    height: 104px;
  }

  .foundation-keystone::after {
    top: 142px;
    height: 132px;
  }

  .foundation-product {
    min-width: 104px;
    padding: 12px;
  }

  .ambiten-product {
    bottom: 88px;
  }

  .ambiten-product::before {
    width: 54px;
  }

  .future-product {
    display: none;
  }

  .page-hero-visual {
    min-height: 360px;
  }

  .page-foundation-system {
    height: 360px;
  }

  .page-foundation-mark {
    width: 96px;
    height: 96px;
  }

  .page-foundation-planes {
    bottom: 64px;
  }

  .page-foundation-node.future {
    display: none;
  }

  .page-foundation-node.active {
    right: 0;
    bottom: 62px;
  }

  .about-article section.closing-statement {
    padding: 30px;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-main {
    align-items: flex-start;
    flex-direction: column;
  }
}
