/* Foundation DevCo Partners — marketing site */

:root {
  --hero-bg: #0e1217;
  --hero-text: #e6e2db;
  --hero-muted: #9ca3af;
  --bg: #f7f5f0;
  --bg-alt: #eeebe5;
  --surface: #ffffff;
  --ink: #131920;
  --ink-muted: #4b5563;
  --accent: #b8952f;
  --accent-hover: #9a7a24;
  --border: #d6d0c5;
  --max: 72rem;
  --narrow: 40rem;
  --font: "Georgia", "Times New Roman", serif;
  --font-sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
}

h1, h2, h3 {
  font-family: var(--font);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink);
}

h1 {
  font-size: clamp(2rem, 5.5vw, 3.35rem);
  margin: 0 0 1.25rem;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(1.65rem, 3.5vw, 2.35rem);
  margin: 0 0 0.75rem;
}

h3 {
  font-size: 1.15rem;
  margin: 0 0 0.5rem;
}

p {
  margin: 0 0 1rem;
}

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--ink);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  padding: 0.5rem 1rem;
  background: var(--ink);
  color: var(--bg);
  z-index: 1000;
}

.skip-link:focus {
  left: 0.5rem;
  top: 0.5rem;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.7rem 1.35rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: inherit;
}

.logo:hover {
  color: inherit;
}

.logo-img {
  display: block;
  height: 2.25rem;
  width: auto;
  max-width: min(300px, 52vw);
  object-fit: contain;
}

.logo:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 2px;
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.7rem;
  font: inherit;
  background: var(--surface);
  border: 1px solid var(--border);
  cursor: pointer;
  color: var(--ink);
}

.nav-toggle-bars {
  width: 1.1rem;
  height: 1px;
  background: var(--ink);
  box-shadow: 0 -5px 0 var(--ink), 0 5px 0 var(--ink);
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.15rem;
  justify-content: flex-end;
  align-items: center;
}

.site-nav a {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--ink-muted);
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--accent);
}

.site-nav a.nav-cta {
  padding: 0.4rem 0.9rem;
  background: var(--ink);
  color: var(--bg);
  border-radius: 2px;
}

.site-nav a.nav-cta:hover {
  background: #2a3340;
  color: var(--bg);
}

.site-nav a.nav-investor-login {
  padding: 0.35rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 2px;
}

.site-nav a.nav-investor-login:hover,
.site-nav a.nav-investor-login[aria-current="page"] {
  color: var(--accent);
  border-color: rgba(184, 149, 47, 0.55);
}

@media (max-width: 52rem) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 1rem 1.35rem 1.25rem;
  }

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

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
  }

  .site-nav a.nav-cta {
    text-align: center;
  }

  .site-nav a.nav-investor-login {
    text-align: center;
  }

  .logo-img {
    height: 1.9rem;
    max-width: min(240px, 58vw);
  }
}

/* Hero */

.hero {
  position: relative;
  background-color: var(--hero-bg);
  color: var(--hero-text);
  border-bottom: 1px solid #252b33;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1715026323215-a2dbb71272f6?auto=format&fit=crop&w=2400&q=85");
  background-size: cover;
  background-position: center 48%;
  background-repeat: no-repeat;
  transform: scaleX(-1);
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, rgba(14, 18, 23, 0.93) 0%, rgba(14, 18, 23, 0.895) 45%, rgba(14, 18, 23, 0.86) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3.5rem 1.35rem 4rem;
  position: relative;
  z-index: 2;
}

.hero h1.hero-title {
  color: var(--hero-text);
  max-width: none;
  width: 100%;
}

.eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin: 0 0 1rem;
}

.hero-lead {
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--hero-muted);
  max-width: 42rem;
  margin-bottom: 1.75rem;
}

.hero-strong {
  color: var(--hero-text);
  font-weight: 600;
}

.hero-source {
  margin: -0.75rem 0 1rem;
  font-size: 0.85rem;
  color: rgba(156, 163, 175, 0.9);
}

.hero-source cite {
  font-style: normal;
}

.hero-sublead {
  font-size: 1.025rem;
  line-height: 1.62;
  color: var(--hero-muted);
  max-width: 40rem;
  margin-bottom: 1.5rem;
}

.notice-bar {
  background: #1f242d;
  color: rgba(230, 226, 219, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.5rem 1.25rem;
  text-align: center;
}

.notice-bar p {
  margin: 0;
  font-size: 0.74rem;
  line-height: 1.45;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.35rem;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.btn-primary {
  background: var(--accent);
  color: var(--hero-bg);
}

.btn-primary:hover {
  background: var(--accent-hover);
  color: var(--hero-bg);
}

.btn-ghost {
  background: transparent;
  color: var(--hero-text);
  border: 1px solid rgba(230, 226, 219, 0.35);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--hero-text);
}

/* Trust strip */

.trust-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.trust-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem 1.35rem;
}

.trust-line {
  margin: 0;
  font-size: 0.92rem;
  color: var(--ink-muted);
  text-align: center;
}

.trust-highlight {
  color: var(--ink);
  font-weight: 600;
}

.section-photo {
  margin: -0.25rem 0 2.35rem;
}

.section-photo-accent img {
  display: block;
  width: 100%;
  max-height: min(380px, 52vw);
  object-fit: cover;
  object-position: center 32%;
  border: 1px solid var(--border);
  border-radius: 4px;
  box-shadow: 0 10px 40px rgba(19, 25, 32, 0.08);
}

/* Sections */

.section {
  padding: 4rem 1.35rem;
}

.section-alt {
  background: var(--bg-alt);
}

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

.section-inner.narrow .section-label,
.section-inner.narrow .section-title,
.section-inner.narrow .diff-list {
  max-width: var(--narrow);
}

.section-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin: 0 0 0.5rem;
}

.section-title {
  max-width: 28rem;
}

.section-lead {
  color: var(--ink-muted);
  max-width: 36rem;
  font-size: 1.05rem;
  margin-bottom: 2.25rem;
}

/* Why / features */

.feature-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 22rem));
  gap: 1.75rem;
  justify-content: center;
}

.feature h3 {
  color: var(--ink);
  font-size: 1.2rem;
}

.feature p {
  color: var(--ink-muted);
  margin-bottom: 0;
  font-size: 0.98rem;
}

.section-meta {
  font-size: 0.92rem;
  color: var(--ink-muted);
  margin: -1rem 0 1.5rem;
}

.market-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(15.5rem, 1fr));
  gap: 1.35rem;
}

.market-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 1.4rem;
}

.market-card h3 {
  margin-top: 0;
}

.market-card p {
  margin-bottom: 0;
  color: var(--ink-muted);
  font-size: 0.96rem;
}

.risk-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(14rem, 1fr));
  gap: 1.25rem;
}

.risk-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 1.25rem 1.35rem;
}

.risk-card h3 {
  font-size: 1.02rem;
  margin-top: 0;
}

.risk-card p {
  margin: 0;
  font-size: 0.93rem;
  color: var(--ink-muted);
}

.info-block {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.tight-row.feature-row {
  gap: 1.25rem;
}

.info-quote {
  margin: 1.75rem 0 0;
  padding: 1.15rem 1.35rem;
  border-left: 3px solid var(--accent);
  background: var(--surface);
  font-family: var(--font);
  font-style: italic;
  color: var(--ink-muted);
  font-size: 1rem;
}

/* Process */

.process-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.process-list > li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem 1.5rem;
  align-items: start;
  padding: 1.35rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
}

.process-step {
  font-family: var(--font);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
}

.process-list h3 {
  margin-top: 0;
  color: var(--ink);
}

.process-list p {
  color: var(--ink-muted);
  margin-bottom: 0;
  font-size: 0.98rem;
}

@media (max-width: 32rem) {
  .process-list > li {
    grid-template-columns: 1fr;
  }
}

/* Results */

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(17rem, 1fr));
  gap: 1.25rem;
}

.result-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 1.5rem 1.45rem;
}

.result-status {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
  margin: 0 0 0.5rem;
}

.result-status-done {
  color: var(--accent);
}

.result-card h3 {
  margin: 0 0 0.25rem;
  font-size: 1.35rem;
}

.result-meta {
  font-size: 0.88rem;
  color: var(--ink-muted);
  margin-bottom: 1rem;
}

.result-stats {
  margin: 0 0 1rem;
}

.result-stats > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.35rem 0;
  border-top: 1px solid var(--border);
  font-size: 0.9rem;
}

.result-stats dt {
  margin: 0;
  color: var(--ink-muted);
}

.result-stats dd {
  margin: 0;
  font-weight: 600;
  text-align: right;
}

.result-foot {
  font-size: 0.82rem;
  color: var(--ink-muted);
  margin: 0;
}

/* Differentiators list */

.diff-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.diff-list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 1rem;
  color: var(--ink-muted);
}

.diff-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.diff-list strong {
  color: var(--ink);
}

.diff-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.diff-grid > li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem 1.5rem;
  align-items: start;
  padding: 1.35rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
}

.diff-index {
  font-family: var(--font);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--accent);
}

.diff-grid h3 {
  margin-top: 0;
}

.diff-grid p {
  margin-bottom: 0;
  color: var(--ink-muted);
  font-size: 0.96rem;
}

@media (max-width: 36rem) {
  .diff-grid > li {
    grid-template-columns: 1fr;
  }
}

.relations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr));
  gap: 1.35rem;
}

.relations-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 1.45rem;
}

.relations-card h3 {
  margin-top: 0;
}

.relations-card p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.95rem;
}

/* Tables */

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  background: var(--surface);
}

.data-table {
  width: 100%;
  min-width: 36rem;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.data-table thead th {
  background: var(--bg-alt);
  text-align: left;
  padding: 0.75rem 0.85rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-muted);
}

.data-table th[scope="row"],
.data-table tbody th {
  text-align: left;
  font-weight: 600;
  color: var(--ink);
}

.data-table td,
.data-table th {
  padding: 0.75rem 0.85rem;
  vertical-align: top;
  border-bottom: 1px solid var(--border);
}

.dense-table td,
.dense-table th {
  font-size: 0.82rem;
}

.table-strong-row td,
.table-strong-row th {
  background: rgba(184, 149, 47, 0.12);
}

.table-caption {
  font-size: 0.82rem;
  color: var(--ink-muted);
  margin-top: 0.75rem;
}

/* Banner snapshot */

.banner-metrics {
  background: linear-gradient(110deg, #131920 0%, #252b37 52%, #1a2532 100%);
  color: var(--hero-text);
  padding: 3rem 1.35rem;
}

.banner-inner {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 52rem) {
  .banner-inner {
    grid-template-columns: 1fr minmax(20rem, 1.2fr);
  }
}

.inverted-label {
  color: var(--accent);
}

.banner-heading {
  color: var(--hero-text);
  margin: 0 0 0.5rem;
  max-width: 22ch;
  font-size: clamp(1.45rem, 2.9vw, 2rem);
}

.banner-stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.banner-stats li {
  display: grid;
  gap: 0.25rem;
  padding-bottom: 0.95rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.banner-stats li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.banner-value {
  font-family: var(--font);
  font-weight: 600;
  font-size: 1.45rem;
  color: var(--hero-text);
  letter-spacing: -0.02em;
}

.banner-desc {
  font-size: 0.82rem;
  color: rgba(156, 163, 175, 0.95);
}

.milestones-sub {
  margin-top: 3.25rem;
  padding-top: 2.75rem;
  border-top: 1px dashed var(--border);
}

.milestone-list {
  list-style: decimal;
  margin: 1.25rem 0 0;
  padding: 0 0 0 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.milestone-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.65rem;
  align-items: baseline;
  margin-bottom: 0.35rem;
  font-family: var(--font);
  font-weight: 600;
  color: var(--ink);
}

.milestone-span {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  font-family: var(--font-sans);
}

.milestone-list p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.95rem;
}

.milestone-aside {
  margin-top: 2rem;
  padding: 1.25rem 1.35rem;
  background: rgba(184, 149, 47, 0.12);
  border: 1px solid rgba(184, 149, 47, 0.35);
}

.milestone-aside h3 {
  margin-top: 0;
}

.milestone-aside p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.95rem;
}

/* Investor split */

.two-col-split {
  display: grid;
  gap: 2.25rem;
}

@media (min-width: 52rem) {
  .two-col-split {
    grid-template-columns: 1fr minmax(16rem, 0.95fr);
    align-items: start;
    gap: 2.75rem;
  }
}

.term-list {
  margin: 0;
}

.term-list > div {
  display: grid;
  gap: 0.35rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
}

.term-list > div:last-child {
  border-bottom: none;
}

.term-list dt {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin: 0;
}

.term-list dd {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.94rem;
}

.waterfall-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 1.5rem 1.35rem;
  box-shadow: 0 8px 30px rgba(19, 25, 32, 0.06);
}

.waterfall-heading {
  margin-top: 0;
  font-size: 1.05rem;
}

.waterfall-list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--ink-muted);
  font-size: 0.93rem;
  display: grid;
  gap: 0.75rem;
}

.waterfall-list strong {
  color: var(--ink);
}

.waterfall-note {
  margin: 1.25rem 0 0;
  font-size: 0.78rem;
  color: var(--ink-muted);
  line-height: 1.45;
}

/* CTA band */

.cta-band {
  background: var(--ink);
  color: var(--hero-text);
  padding: 4rem 1.35rem;
}

.cta-inner {
  max-width: 34rem;
  margin: 0 auto;
  text-align: center;
}

.cta-contact {
  max-width: 42rem;
}

.cta-band p {
  color: var(--hero-muted);
  margin-bottom: 1.25rem;
}

.cta-note {
  font-size: 0.82rem;
  color: rgba(156, 163, 175, 0.85);
  margin-bottom: 0;
}

.cta-band p.cta-intro {
  margin-bottom: 1.75rem;
}
.cta-form {
  position: relative;
  margin: 0 auto 2rem;
  text-align: left;
  width: 100%;
  max-width: 38rem;
}

.hp-field {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.cta-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.25rem;
  margin-bottom: 1.25rem;
}

@media (max-width: 38rem) {
  .cta-fields {
    grid-template-columns: 1fr;
  }
}

.cta-field-group {
  margin: 0;
}

.cta-field-group-full {
  grid-column: 1 / -1;
}

.cta-field-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--hero-muted);
  margin-bottom: 0.35rem;
}

.cta-field-optional {
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  color: rgba(156, 163, 175, 0.7);
}

.cta-field {
  box-sizing: border-box;
  width: 100%;
  padding: 0.62rem 0.85rem;
  font: inherit;
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--hero-text);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 2px;
}

.cta-field:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-color: rgba(230, 226, 219, 0.35);
}

.cta-field-textarea {
  resize: vertical;
  min-height: 7rem;
}

.cta-submit-wrap {
  text-align: center;
}

.cta-form-status {
  margin: 1rem auto 0;
  padding: 0.75rem 1rem;
  max-width: 38rem;
  font-size: 0.94rem;
  line-height: 1.45;
  border-radius: 2px;
  text-align: center;
}

.cta-form-status--success {
  color: rgba(230, 226, 219, 0.95);
  background: rgba(184, 149, 47, 0.2);
  border: 1px solid rgba(184, 149, 47, 0.45);
}

.cta-form-status--error {
  color: rgba(252, 211, 211, 0.95);
  background: rgba(180, 50, 50, 0.25);
  border: 1px solid rgba(255, 130, 130, 0.35);
}

/* Footer */

.site-footer {
  background: var(--hero-bg);
  color: var(--hero-muted);
  padding: 1.5rem 1.35rem;
  border-top: 1px solid #252b33;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.footer-logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  background: rgba(255, 255, 255, 0.1);
  color: var(--hero-text);
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.8rem;
}

.site-footer p {
  margin: 0;
  font-size: 0.82rem;
}

.footer-stack {
  flex-direction: column;
  align-items: stretch;
  gap: 1.35rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-title {
  font-size: 0.82rem;
  color: var(--hero-muted);
}

.disclaimer-copy p {
  max-width: 68rem;
  font-size: 0.74rem;
  line-height: 1.55;
  color: rgba(156, 163, 175, 0.85);
}

.disclaimer-copy strong {
  color: rgba(230, 226, 219, 0.95);
}

.footer-inner.footer-brand-only {
  align-items: flex-start;
  gap: 1rem;
}

.footer-copy {
  flex: 1;
  min-width: 13rem;
  max-width: 44rem;
}

.footer-copy .footer-title {
  margin-bottom: 0.5rem;
  color: var(--hero-muted);
}

.footer-address {
  margin: 0 0 1rem;
}

.footer-address-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--hero-text);
}

.footer-address address {
  font-style: normal;
  margin: 0.35rem 0 0;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--hero-muted);
}

.footer-legal {
  font-size: 0.73rem !important;
  line-height: 1.55;
  color: rgba(156, 163, 175, 0.88);
  margin: 0 0 0.35rem;
}

.photo-attribution {
  margin: 0.85rem 0 0 !important;
  font-size: 0.71rem !important;
  line-height: 1.5;
  color: rgba(156, 163, 175, 0.78);
}

.photo-attribution a {
  color: inherit;
  text-underline-offset: 2px;
}

.photo-attribution a:hover {
  color: inherit;
  text-decoration-thickness: 2px;
}

/* Investor login page */

.login-page {
  padding: 3.5rem 1.35rem 4.5rem;
}

.login-page-inner {
  max-width: 22rem;
}

.login-page-heading {
  font-family: var(--font);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
  font-size: clamp(1.65rem, 3.5vw, 2.1rem);
}

.login-page-intro {
  color: var(--ink-muted);
  font-size: 1.05rem;
  margin: 0 0 2rem;
  line-height: 1.55;
}

.login-form-fields {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.login-field-label {
  display: block;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin: 0 0 0.35rem;
}

.login-field-input {
  width: 100%;
  padding: 0.65rem 0.75rem;
  font: inherit;
  font-size: 1rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: var(--surface);
  color: var(--ink);
}

.login-field-input:focus {
  outline: 2px solid rgba(184, 149, 47, 0.45);
  outline-offset: 1px;
  border-color: var(--accent);
}

.login-submit-wrap {
  margin-top: 0.5rem;
}

.login-flash {
  margin: 0 0 1.25rem;
  padding: 0.85rem 1rem;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--ink);
  background: rgba(184, 149, 47, 0.12);
  border: 1px solid rgba(184, 149, 47, 0.35);
  border-radius: 2px;
}
