:root {
  --navy: #0b1f33;
  --navy-2: #12324e;
  --emerald: #0f6f55;
  --emerald-2: #d9f0e8;
  --gold: #c99b3b;
  --gold-2: #f4e7c5;
  --ink: #17212b;
  --muted: #5d6a75;
  --line: #d9e1e7;
  --paper: #ffffff;
  --mist: #f4f7f8;
  --soft: #eaf0f3;
  --danger: #7c2f2f;
  --shadow: 0 18px 50px rgba(13, 32, 51, 0.12);
  --radius: 8px;
  --container: 1160px;
  --font-body: "Manrope", "Segoe UI", sans-serif;
  --font-display: "Source Serif 4", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(217, 225, 231, 0.9);
  backdrop-filter: blur(14px);
}

.nav {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: max-content;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--paper);
  background: linear-gradient(135deg, var(--navy), var(--emerald));
  border: 2px solid var(--gold);
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 800;
}

.brand-name {
  display: block;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
}

.brand-line {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.2;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  text-decoration: none;
  color: var(--navy);
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--emerald);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 8px;
  color: var(--navy);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  min-height: 82vh;
  display: grid;
  align-items: end;
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(5, 24, 39, 0.88), rgba(5, 24, 39, 0.54), rgba(5, 24, 39, 0.22)),
    var(--hero-image);
  background-position: center;
  background-size: cover;
}

.hero.compact {
  min-height: 54vh;
}

.hero-inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 96px 22px 72px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1,
.page-title {
  max-width: 860px;
  margin: 0;
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 1.02;
  font-weight: 850;
}

.hero p {
  max-width: 760px;
  margin: 22px 0 0;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: var(--navy);
  background: var(--gold);
  box-shadow: 0 16px 32px rgba(201, 155, 59, 0.24);
}

.button.secondary {
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.08);
}

.button.tertiary {
  color: var(--navy);
  border-color: var(--line);
  background: var(--paper);
}

.button.dark {
  color: var(--paper);
  background: var(--navy);
}

.trust-line {
  max-width: var(--container);
  margin: -1px auto 0;
  padding: 18px 22px;
  color: var(--paper);
  background: var(--emerald);
  font-weight: 800;
}

.section {
  padding: 84px 22px;
}

.section.alt {
  background: var(--mist);
}

.section.dark {
  color: var(--paper);
  background: var(--navy);
}

.container {
  max-width: var(--container);
  margin: 0 auto;
}

.section-head {
  max-width: 820px;
  margin-bottom: 36px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--emerald);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.section.dark .section-kicker {
  color: var(--gold-2);
}

h2,
h3,
h4 {
  color: var(--navy);
  font-family: var(--font-display);
  line-height: 1.1;
}

.section.dark h2,
.section.dark h3,
.section.dark h4 {
  color: var(--paper);
}

h2 {
  margin: 0 0 14px;
  font-size: 42px;
}

h3 {
  margin: 0 0 12px;
  font-size: 26px;
}

h4 {
  margin: 0 0 10px;
  font-size: 20px;
}

p {
  margin: 0 0 18px;
}

.lead {
  color: var(--muted);
  font-size: 18px;
}

.section.dark .lead,
.section.dark p {
  color: rgba(255, 255, 255, 0.8);
}

.grid {
  display: grid;
  gap: 22px;
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 6px 22px rgba(13, 32, 51, 0.06);
}

.card.emphasis {
  border-top: 4px solid var(--gold);
}

.card h3,
.card h4 {
  margin-top: 0;
}

.icon-block {
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  display: grid;
  place-items: center;
  color: var(--paper);
  background: var(--emerald);
  border-radius: 8px;
  font-weight: 900;
}

.media-panel {
  overflow: hidden;
  min-height: 100%;
  border-radius: var(--radius);
  background: var(--soft);
}

.media-panel img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
}

.stat-table,
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: var(--radius);
}

.stat-table th,
.stat-table td,
.comparison-table th,
.comparison-table td {
  padding: 15px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.stat-table th,
.comparison-table th {
  color: var(--navy);
  background: #eef4f5;
  font-weight: 850;
}

.comparison-table td:first-child {
  font-weight: 850;
  color: var(--navy);
}

.notice {
  padding: 18px;
  border-left: 4px solid var(--gold);
  background: #fff8e7;
  border-radius: var(--radius);
  color: #4c3b18;
}

.risk {
  border-left-color: var(--danger);
  background: #fbefef;
  color: #442222;
}

.list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.list li {
  padding: 11px 0 11px 28px;
  border-bottom: 1px solid var(--line);
  position: relative;
}

.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 19px;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 2px;
}

.process {
  counter-reset: step;
}

.process li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.process li::before {
  content: counter(step);
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--paper);
  background: var(--navy);
  border-radius: 8px;
  font-weight: 900;
}

.form {
  display: grid;
  gap: 16px;
}

.form-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  font: inherit;
}

textarea {
  min-height: 128px;
  resize: vertical;
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-weight: 700;
}

.checkbox input {
  width: 18px;
  min-height: 18px;
  margin-top: 4px;
}

.form-status {
  min-height: 22px;
  color: var(--emerald);
  font-weight: 800;
}

.cta-band {
  padding: 44px;
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(11, 31, 51, 0.96), rgba(15, 111, 85, 0.88)),
    url("https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=1600&q=80");
  background-position: center;
  background-size: cover;
  border-radius: var(--radius);
}

.cta-band h2 {
  color: var(--paper);
}

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background: #071724;
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 54px 22px 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 28px;
}

.site-footer h3,
.site-footer h4 {
  color: var(--paper);
}

.site-footer a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--gold-2);
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-bottom {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-size: 13px;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  color: var(--paper);
  background: #128c4a;
  border-radius: 8px;
  box-shadow: var(--shadow);
  text-decoration: none;
  font-weight: 900;
}

.page-section {
  padding-top: 58px;
}

.breadcrumb {
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.small {
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: inline-block;
  }

  .nav-links {
    position: absolute;
    left: 0;
    right: 0;
    top: 71px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 22px 18px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
  }

  .hero h1,
  .page-title {
    font-size: 46px;
  }

  .grid.two,
  .grid.three,
  .grid.four,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .nav {
    padding: 12px 16px;
  }

  .brand-line {
    display: none;
  }

  .hero,
  .hero.compact {
    min-height: 68vh;
  }

  .hero-inner {
    padding: 72px 18px 48px;
  }

  .hero h1,
  .page-title {
    font-size: 36px;
  }

  .hero p,
  .lead {
    font-size: 16px;
  }

  .section {
    padding: 58px 18px;
  }

  h2 {
    font-size: 31px;
  }

  .grid.two,
  .grid.three,
  .grid.four,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .stat-table,
  .comparison-table {
    display: block;
    overflow-x: auto;
  }

  .cta-band {
    padding: 28px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .whatsapp-float {
    left: 18px;
    justify-content: center;
  }
}


/* Investor portal */
.portal-card { max-width: 760px; margin: 0 auto; }
.portal-card .button { width: auto; }
.portal-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 22px 0; }
.agreement-modal { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; padding: 24px; background: rgba(7, 20, 33, 0.72); }
.agreement-modal.is-open { display: flex; }
.agreement-dialog { width: min(100%, 980px); max-height: 92vh; overflow: hidden; background: var(--paper); border-radius: 12px; box-shadow: var(--shadow); display: grid; grid-template-rows: auto minmax(320px, 1fr) auto; }
.agreement-dialog header, .agreement-dialog footer { padding: 18px 22px; border-bottom: 1px solid var(--line); }
.agreement-dialog footer { border-top: 1px solid var(--line); border-bottom: 0; display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-end; }
.agreement-dialog iframe { width: 100%; height: 62vh; border: 0; background: var(--mist); }
.portal-status { padding: 16px 18px; border-radius: 8px; margin-bottom: 18px; background: var(--emerald-2); color: var(--navy); font-weight: 700; }
.portal-status.error { background: #fde8e8; color: var(--danger); }
.login-form p { margin: 0 0 14px; }
.login-form input[type="text"], .login-form input[type="password"] { width: 100%; min-height: 44px; border: 1px solid var(--line); border-radius: 8px; padding: 10px 12px; font: inherit; }
@media (max-width: 720px) { .agreement-dialog iframe { height: 55vh; } }

/* Homepage investor access revamp */
.nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 6px;
}

.nav-actions a {
  min-height: 36px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
}

.nav-actions .nav-login {
  color: var(--emerald);
  background: rgba(17, 105, 92, 0.08);
}

.nav-actions .nav-register {
  color: var(--navy);
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 10px 20px rgba(201, 155, 59, 0.18);
}

.button.ghost {
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.13);
}

.home-portal-hero {
  min-height: 88vh;
  align-items: center;
  background-image:
    radial-gradient(circle at 78% 18%, rgba(201, 155, 59, 0.34), transparent 28%),
    radial-gradient(circle at 18% 82%, rgba(17, 105, 92, 0.42), transparent 30%),
    linear-gradient(90deg, rgba(5, 24, 39, 0.94), rgba(5, 24, 39, 0.72), rgba(5, 24, 39, 0.42)),
    url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1800&q=80");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.home-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
  gap: 46px;
  align-items: center;
  padding-top: 92px;
  padding-bottom: 78px;
}

.home-portal-hero h1 {
  max-width: 880px;
  font-size: clamp(42px, 6vw, 74px);
  letter-spacing: -0.045em;
}

.home-portal-hero .hero-copy > p:not(.eyebrow) {
  max-width: 720px;
}

.hero-trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 34px;
  max-width: 760px;
}

.hero-trust-strip span {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(12px);
}

.hero-trust-strip strong {
  display: block;
  color: var(--gold-2);
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1;
}

.home-access-card {
  position: relative;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-top: 5px solid var(--gold);
  border-radius: 24px;
  color: var(--navy);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(244, 248, 246, 0.94));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.home-access-card::before {
  content: "";
  position: absolute;
  inset: 14px 14px auto auto;
  width: 74px;
  height: 74px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(201, 155, 59, 0.2), rgba(17, 105, 92, 0.16));
  pointer-events: none;
}

.home-access-card .access-kicker {
  margin: 0 0 10px;
  color: var(--emerald);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-access-card h2 {
  max-width: 280px;
  margin-bottom: 10px;
  font-size: 34px;
}

.home-access-card .access-intro,
.home-access-card .access-note {
  color: var(--muted);
}

.home-login-shell {
  margin-top: 22px;
}

.home-login-shell .portal-card {
  max-width: none;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.home-login-shell .portal-card > h2,
.home-login-shell .portal-card > p {
  display: none;
}

.home-login-shell .login-form p {
  margin-bottom: 12px;
  color: var(--navy);
}

.home-login-shell .login-form label {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
  font-weight: 800;
}

.home-login-shell input[type="text"],
.home-login-shell input[type="password"] {
  border-color: rgba(11, 36, 58, 0.18);
  background: #fff;
}

.home-login-shell #wp-submit {
  width: 100%;
  min-height: 48px;
  border: 0;
  border-radius: 10px;
  color: var(--paper);
  background: var(--navy);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.register-callout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  margin-top: 18px;
  padding: 14px;
  border-radius: 14px;
  background: rgba(17, 105, 92, 0.08);
}

.register-callout span {
  font-weight: 850;
}

.access-note {
  margin: 18px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.home-portal-flow {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #f5f7f4, #ffffff 42%),
    radial-gradient(circle at 8% 10%, rgba(201, 155, 59, 0.18), transparent 28%);
}

.access-steps .card {
  position: relative;
  overflow: hidden;
}

.step-number {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 999px;
  color: var(--navy);
  background: var(--gold);
  font-family: var(--font-display);
  font-weight: 900;
}

.access-steps a {
  color: var(--emerald);
  font-weight: 900;
  text-decoration: none;
}

@media (max-width: 1180px) {
  .nav-links {
    gap: 12px;
    font-size: 13px;
  }

  .nav-actions a {
    padding-inline: 10px;
  }
}

@media (max-width: 980px) {
  .nav-actions {
    margin: 12px 0 0;
  }

  .nav-actions a {
    justify-content: center;
    width: 100%;
    border-bottom: 0;
  }

  .home-hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .home-access-card {
    max-width: 640px;
  }
}

@media (max-width: 680px) {
  .home-portal-hero {
    min-height: auto;
  }

  .hero-trust-strip,
  .register-callout {
    grid-template-columns: 1fr;
  }

  .home-access-card {
    padding: 22px;
    border-radius: 18px;
  }
}


/* Access card contrast safety */
.home-portal-hero .home-access-card p,
.home-portal-hero .home-access-card label,
.home-portal-hero .home-access-card span {
  color: var(--navy);
}
.home-portal-hero .home-access-card .access-intro,
.home-portal-hero .home-access-card .access-note {
  color: var(--muted);
}
.home-portal-hero .home-access-card .access-kicker {
  color: var(--emerald);
}


/* Homepage login form polish */
.home-login-shell .login-submit {
  display: block !important;
  margin-top: 14px !important;
}
.home-login-shell .login-remember label {
  display: inline-flex !important;
  align-items: center;
  gap: 9px;
  font-weight: 800;
}
.home-login-shell #rememberme {
  width: 18px !important;
  height: 18px !important;
  min-height: 0 !important;
  padding: 0 !important;
  flex: 0 0 18px;
  accent-color: var(--emerald);
}

#investor-access { scroll-margin-top: 96px; }

/* Mobile hero focus */
@media (max-width: 480px) {
  .hero-trust-strip {
    display: none;
  }
}

/* Investor dashboard profile prompt */
.portal-status.warning {
  background: #fff5d7;
  color: var(--navy);
  border: 1px solid rgba(201, 155, 59, 0.34);
}

.portal-status ul {
  margin: 10px 0 0 20px;
  padding: 0;
}

.portal-profile-card {
  margin-top: 24px;
  border-top: 5px solid var(--gold);
}

.portal-profile-head {
  max-width: 820px;
  margin-bottom: 22px;
}

.portal-profile-form h3 {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.portal-profile-form h3:first-of-type {
  margin-top: 8px;
  padding-top: 0;
  border-top: 0;
}

.portal-profile-form label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-weight: 800;
}

.portal-profile-form input,
.portal-profile-form select,
.portal-profile-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 12px;
  font: inherit;
  background: #fff;
}

.portal-profile-form textarea {
  min-height: 112px;
  resize: vertical;
}

.portal-profile-form .button {
  margin-top: 22px;
}

/* Inner page spacing refinement */
.hero.compact {
  min-height: auto;
  align-items: center;
  color: var(--navy);
  background:
    radial-gradient(circle at 88% 15%, rgba(201, 155, 59, 0.14), transparent 26%),
    linear-gradient(135deg, #f7faf8 0%, #eef5f1 100%);
  border-bottom: 1px solid var(--line);
}

.hero.compact .hero-inner {
  padding: 52px 22px 46px;
}

.hero.compact .eyebrow,
.hero.compact .breadcrumb,
.hero.compact .section-kicker {
  color: var(--emerald);
}

.hero.compact h1,
.hero.compact .page-title {
  max-width: 980px;
  color: var(--navy);
  font-size: clamp(38px, 5vw, 58px);
}

.hero.compact p {
  max-width: 860px;
  color: var(--muted);
}

.hero.compact + .section {
  padding-top: 58px;
}

@media (max-width: 680px) {
  .hero.compact {
    min-height: auto;
  }

  .hero.compact .hero-inner {
    padding: 38px 18px 34px;
  }

  .hero.compact h1,
  .hero.compact .page-title {
    font-size: 34px;
  }

  .hero.compact + .section {
    padding-top: 42px;
  }
}

/* Investor review form */
.investor-review-layout {
  align-items: start;
}

.investor-review-form-wrap {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 12px 34px rgba(13, 32, 51, 0.08);
}

.investor-review-form {
  display: grid;
  gap: 18px;
}

.investor-review-form .form-grid {
  gap: 18px;
}

.investor-review-form label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-weight: 800;
}

.investor-review-form input,
.investor-review-form select,
.investor-review-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 12px;
  font: inherit;
  background: #fff;
}

.investor-review-form textarea {
  min-height: 136px;
  resize: vertical;
}

.investor-review-form .checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 700;
  color: var(--muted);
}

.investor-review-form .checkbox input {
  width: 18px;
  height: 18px;
  min-height: 0;
  margin-top: 2px;
  flex: 0 0 18px;
}

.investor-review-form .button {
  width: 100%;
}

@media (max-width: 980px) {
  .investor-review-layout {
    grid-template-columns: 1fr;
  }
}

/* Structured opportunities plan cards */
.structured-opportunities .plan-preview-grid {
  align-items: stretch;
}

.structured-opportunities .plan-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: var(--navy);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbf8 100%);
}

.section.dark .plan-card h3,
.section.dark .plan-card p,
.section.dark .plan-card strong,
.section.dark .plan-card dt,
.section.dark .plan-card dd {
  color: var(--navy);
}

.section.dark .plan-card > p:not(.plan-tag) {
  color: var(--muted);
}

.plan-tag {
  width: fit-content;
  margin: 0;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--emerald) !important;
  background: rgba(17, 105, 92, 0.1);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-facts {
  display: grid;
  gap: 10px;
  margin: auto 0 0;
}

.plan-facts div {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.plan-facts dt {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted) !important;
}

.plan-facts dd {
  margin: 0;
  font-weight: 850;
}

@media (max-width: 680px) {
  .plan-facts div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

/* Business proposal form */
.business-proposal-layout {
  align-items: start;
}

.business-proposal-form-wrap {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 12px 34px rgba(13, 32, 51, 0.08);
}

.business-proposal-form {
  display: grid;
  gap: 18px;
}

.business-proposal-form .form-grid {
  gap: 18px;
}

.business-proposal-form label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-weight: 800;
}

.business-proposal-form input,
.business-proposal-form select,
.business-proposal-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 12px;
  font: inherit;
  background: #fff;
}

.business-proposal-form input[type="file"] {
  padding: 10px;
  background: var(--mist);
}

.business-proposal-form textarea {
  min-height: 136px;
  resize: vertical;
}

.business-proposal-form .field-note {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.business-proposal-form .checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-weight: 700;
}

.business-proposal-form .checkbox input {
  width: 18px;
  height: 18px;
  min-height: 0;
  margin-top: 2px;
  flex: 0 0 18px;
}

.business-proposal-form .button {
  width: 100%;
}

@media (max-width: 980px) {
  .business-proposal-layout {
    grid-template-columns: 1fr;
  }
}