:root {
  --ink: #111827;
  --text: #24313d;
  --muted: #667481;
  --line: #d9e0e6;
  --paper: #f5f7f8;
  --white: #ffffff;
  --green: #173f35;
  --green-2: #2f6b57;
  --blue: #1e4f7a;
  --gold: #b48a45;
  --red: #a9473c;
  --shadow: 0 22px 70px rgba(17, 24, 39, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

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

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

.topbar {
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(217, 224, 230, 0.86);
  display: flex;
  justify-content: space-between;
  left: 0;
  padding: 14px clamp(18px, 4vw, 58px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 20;
}

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

.brand-symbol {
  align-items: center;
  background: var(--ink);
  color: var(--white);
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 800;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--ink);
  font-size: 0.98rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
  margin-top: -2px;
}

.nav {
  align-items: center;
  color: var(--muted);
  display: flex;
  font-size: 0.95rem;
  gap: 24px;
}

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

.hero {
  min-height: 92vh;
  overflow: hidden;
  position: relative;
}

.hero-media,
.hero-media img,
.hero-shade {
  inset: 0;
  position: absolute;
}

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

.hero-shade {
  background:
    linear-gradient(90deg, rgba(9, 17, 24, 0.9), rgba(9, 17, 24, 0.62) 46%, rgba(9, 17, 24, 0.18)),
    linear-gradient(0deg, rgba(245, 247, 248, 0.96), rgba(245, 247, 248, 0) 18%);
}

.hero-inner {
  color: var(--white);
  max-width: 760px;
  padding: 22vh clamp(20px, 6vw, 72px) 18vh;
  position: relative;
  z-index: 2;
}

.kicker {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.hero .kicker,
.risk .kicker {
  color: #e9c27b;
}

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

h1 {
  font-size: clamp(2.65rem, 7vw, 6rem);
  line-height: 0.98;
  margin-bottom: 24px;
  max-width: 760px;
}

h2 {
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.04;
  margin-bottom: 18px;
}

h3 {
  color: var(--ink);
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.lead {
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.08rem, 2vw, 1.34rem);
  max-width: 650px;
}

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

.btn {
  align-items: center;
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

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

.btn-primary,
.btn-submit {
  background: var(--gold);
  color: var(--ink);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--white);
}

.hero-stats {
  bottom: 56px;
  max-width: 760px;
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  width: min(52vw, 760px);
  z-index: 3;
}

.registered-interest {
  background: white;
  border-radius: 12px;
  box-shadow: 0 14px 38px rgba(17, 24, 39, 0.2);
  display: block;
  margin: 0 0 12px auto;
  opacity: 1;
  padding: 20px;
  position: relative;
  visibility: visible;
  width: min(360px, 100%);
  z-index: 1000;
}

.registered-interest span {
  color: var(--muted);
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.registered-interest strong {
  color: var(--ink);
  display: block;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  line-height: 1.1;
}

.deal-panel {
  background: var(--white);
  box-shadow: var(--shadow);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  position: relative;
  width: 100%;
}

.deal-panel div {
  padding: 22px;
}

.deal-panel span,
.terms-grid dt,
.contact-block span {
  color: var(--muted);
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.deal-panel strong {
  color: var(--ink);
  display: block;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  line-height: 1.1;
}

.intro-strip {
  align-items: center;
  background: var(--green);
  color: var(--white);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  padding: 18px clamp(20px, 5vw, 72px);
}

.intro-strip p {
  margin: 0;
}

.intro-strip a {
  color: #e9c27b;
  font-weight: 800;
}

.section {
  margin: 0 auto;
  max-width: 1180px;
  padding: clamp(76px, 10vw, 132px) clamp(20px, 4vw, 32px);
}

.case-layout {
  display: grid;
  gap: clamp(34px, 6vw, 80px);
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
}

.case-layout > div:first-child p {
  color: var(--muted);
  font-size: 1.06rem;
}

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

.capital-list article {
  background: var(--white);
  border: 1px solid var(--line);
  display: grid;
  gap: 8px;
  grid-template-columns: 56px 1fr;
  padding: 24px;
}

.capital-list span {
  color: var(--gold);
  font-weight: 850;
}

.capital-list h3,
.capital-list p {
  grid-column: 2;
}

.capital-list p,
.terms-grid dd,
.form-copy p,
.form-status,
.footer {
  color: var(--muted);
}

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

.terms-head {
  max-width: 640px;
}

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

.terms-grid div {
  background: var(--white);
  min-height: 150px;
  padding: 24px;
}

.terms-grid dd {
  font-size: 1.14rem;
  font-weight: 780;
  margin: 0;
}

.risk {
  align-items: start;
  background: var(--ink);
  color: var(--white);
  display: grid;
  gap: clamp(28px, 6vw, 78px);
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  padding: clamp(72px, 9vw, 118px) max(clamp(20px, 5vw, 72px), calc((100vw - 1180px) / 2 + 32px));
}

.risk h2 {
  color: var(--white);
}

.risk p:last-child {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.form-section {
  align-items: start;
  display: grid;
  gap: clamp(34px, 6vw, 80px);
  grid-template-columns: minmax(0, 0.82fr) minmax(380px, 1.18fr);
  margin: 0 auto;
  max-width: 1180px;
  padding: clamp(76px, 10vw, 132px) clamp(20px, 4vw, 32px);
}

.form-copy {
  position: sticky;
  top: 108px;
}

.contact-block {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 8px;
  margin-top: 34px;
  padding-top: 24px;
}

.contact-block a {
  color: var(--blue);
  font-weight: 800;
}

.investor-form {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 38px);
}

.field-row {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
}

.field-row > label {
  min-width: 0;
  width: 100%;
}

@media (max-width: 767px) {
  .field-row {
    grid-template-columns: 1fr;
  }
}

label {
  color: var(--ink);
  display: grid;
  font-size: 0.92rem;
  font-weight: 800;
  gap: 8px;
}

input,
select,
textarea {
  background: #fbfcfd;
  border: 1px solid #cbd5dc;
  color: var(--ink);
  min-height: 50px;
  padding: 12px 14px;
  width: 100%;
}

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

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(30, 79, 122, 0.14);
}

input[readonly] {
  background: #eef3f5;
  color: var(--green);
  font-weight: 850;
}

.check {
  align-items: start;
  color: var(--muted);
  display: grid;
  font-weight: 600;
  gap: 12px;
  grid-template-columns: 20px 1fr;
}

.check input {
  height: 18px;
  margin-top: 3px;
  min-height: 0;
  padding: 0;
  width: 18px;
}

.btn-submit {
  border: 0;
  width: 100%;
}

.btn-submit[disabled] {
  cursor: wait;
  opacity: 0.64;
}

.form-status {
  margin: 0;
  min-height: 24px;
}

.form-status.ok {
  color: var(--green-2);
  font-weight: 800;
}

.form-status.error {
  color: var(--red);
  font-weight: 800;
}

.footer {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  padding: 28px clamp(20px, 5vw, 72px);
}

.footer a {
  color: var(--blue);
  font-weight: 800;
}

@media (max-width: 980px) {
  .hero-stats {
    bottom: auto;
    margin: -80px clamp(20px, 5vw, 72px) 0;
    max-width: none;
    position: relative;
    right: auto;
    width: auto;
  }

  .intro-strip {
    margin-top: 72px;
  }

  .case-layout,
  .risk,
  .form-section {
    grid-template-columns: 1fr;
  }

  .form-copy {
    position: static;
  }

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

@media (max-width: 680px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .nav {
    justify-content: space-between;
    width: 100%;
  }

  .hero {
    min-height: 96vh;
  }

  .hero-inner {
    padding-top: 26vh;
  }

  .registered-interest {
    margin-bottom: 12px;
    width: 100%;
  }

  .deal-panel,
  .terms-grid,
  .field-row {
    grid-template-columns: 1fr;
  }

  .deal-panel {
    width: 100%;
  }

  .intro-strip {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 0;
  }

  .hero-actions .btn {
    width: 100%;
  }
}
