/* DOS INVEST standalone commercial design system */
:root {
  --invest-font: "Inter", "Manrope", "Segoe UI", Arial, sans-serif;
  --invest-ink: #101723;
  --invest-muted: #5d6b82;
  --invest-soft: #f4f8f3;
  --invest-line: rgba(13, 82, 55, .14);
  --invest-green: #07402d;
  --invest-green-2: #0c6b48;
  --invest-green-3: #159363;
  --invest-gold: #d8ad3d;
  --invest-gold-2: #ffe08a;
  --invest-white: #ffffff;
  --invest-radius-sm: 14px;
  --invest-radius: 22px;
  --invest-radius-lg: 34px;
  --invest-shadow: 0 28px 80px rgba(21, 52, 38, .12);
  --invest-shadow-strong: 0 40px 110px rgba(4, 38, 27, .26);
  --invest-space-1: 8px;
  --invest-space-2: 12px;
  --invest-space-3: 18px;
  --invest-space-4: 26px;
  --invest-space-5: 38px;
  --invest-space-6: 56px;
  --invest-space-7: 84px;
}

.service-dos-invest {
  position: relative;
  overflow-x: hidden;
  font-family: var(--invest-font);
  color: var(--invest-ink);
  background:
    radial-gradient(circle at 18% 8%, rgba(216, 173, 61, .08), transparent 28%),
    radial-gradient(circle at 82% 14%, rgba(13, 118, 78, .08), transparent 30%),
    linear-gradient(180deg, #f7faf4 0%, #eef5ef 100%);
}

.service-dos-invest::before,
.service-dos-invest::after {
  position: fixed;
  inset: 78px 0 0;
  z-index: -1;
  content: "";
  pointer-events: none;
}

.service-dos-invest::before {
  background:
    linear-gradient(116deg, transparent 0 41%, rgba(8, 70, 48, .055) 41.1% 41.35%, transparent 41.55%),
    linear-gradient(116deg, transparent 0 57%, rgba(216, 173, 61, .06) 57.1% 57.35%, transparent 57.55%),
    repeating-linear-gradient(90deg, transparent 0 118px, rgba(8, 70, 48, .035) 119px 120px);
  opacity: .7;
}

.service-dos-invest::after {
  inset: auto -10vw 8vh auto;
  width: min(760px, 64vw);
  height: 220px;
  border-top: 1px solid rgba(8, 70, 48, .16);
  border-bottom: 1px solid rgba(216, 173, 61, .2);
  border-radius: 50%;
  transform: rotate(-8deg);
  opacity: .45;
}

.service-dos-invest .page-shell {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.invest-section {
  margin: 0 0 var(--invest-space-7);
}

.invest-eyebrow,
.eyebrow {
  margin: 0 0 14px;
  color: #647187;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.invest-h1,
.invest-h2,
.invest-h3 {
  margin: 0;
  color: var(--invest-ink);
  letter-spacing: 0;
}

.invest-h1 {
  max-width: 700px;
  font-size: clamp(34px, 4.35vw, 52px);
  line-height: 1.06;
}

.invest-h2 {
  max-width: 760px;
  font-size: clamp(30px, 3.5vw, 48px);
  line-height: 1.02;
}

.invest-h3 {
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1.14;
}

.invest-lead,
.invest-text {
  color: var(--invest-muted);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.66;
}

.invest-text {
  font-size: 16px;
}

.invest-btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.invest-btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  line-height: 1;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease;
}

.invest-btn::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(110deg, transparent 0 30%, rgba(255,255,255,.36) 45%, transparent 62% 100%);
  transform: translateX(-120%);
  transition: transform .58s ease;
}

.invest-btn:hover,
.invest-btn:focus-visible {
  transform: translateY(-2px);
}

.invest-btn:hover::after,
.invest-btn:focus-visible::after {
  transform: translateX(120%);
}

.invest-btn.primary {
  color: #ffffff;
  background: linear-gradient(135deg, #1ca66d, #087047);
  box-shadow: 0 22px 54px rgba(15, 130, 82, .24);
}

.invest-btn.secondary {
  color: var(--invest-green);
  background: rgba(255, 255, 255, .78);
  border-color: rgba(8, 70, 48, .16);
  box-shadow: 0 18px 42px rgba(19, 59, 44, .08);
}

.invest-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--invest-line);
  border-radius: var(--invest-radius-lg);
  background: rgba(255, 255, 255, .9);
  box-shadow: var(--invest-shadow);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease, background .24s ease;
}

.invest-card::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background:
    linear-gradient(112deg, transparent 0 38%, rgba(255, 255, 255, .46) 48%, transparent 59% 100%);
  opacity: 0;
  transform: translateX(-120%);
  pointer-events: none;
}

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

.invest-card:hover {
  transform: translateY(-4px);
  border-color: rgba(12, 107, 72, .24);
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 34px 90px rgba(19, 59, 44, .16);
}

.invest-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, .78fr);
  gap: clamp(32px, 5vw, 70px);
  align-items: center;
  min-height: calc(100vh - 78px);
  padding: clamp(58px, 7vw, 96px) 0 var(--invest-space-6);
}

.invest-hero::before {
  position: absolute;
  right: min(4vw, 40px);
  bottom: 7%;
  width: min(560px, 45vw);
  height: 78px;
  content: "";
  border-top: 1px solid rgba(8, 70, 48, .2);
  border-bottom: 1px solid rgba(216, 173, 61, .18);
  border-radius: 50%;
  transform: skewX(-18deg);
  opacity: .62;
  pointer-events: none;
}

.invest-hero > * {
  position: relative;
  z-index: 1;
}

.invest-hero .invest-lead {
  max-width: 700px;
  margin: 24px 0 0;
}

.invest-proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.invest-proof-strip div {
  position: relative;
  overflow: hidden;
  min-height: 104px;
  padding: 18px;
  border: 1px solid rgba(8, 70, 48, .13);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.94), rgba(238,248,241,.86));
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.invest-proof-strip div::after {
  position: absolute;
  right: -28px;
  bottom: -38px;
  width: 112px;
  height: 112px;
  content: "";
  border: 1px solid rgba(8, 70, 48, .09);
  border-radius: 50%;
}

.invest-proof-strip div:hover {
  transform: translateY(-3px);
  border-color: rgba(216, 173, 61, .42);
  box-shadow: 0 24px 54px rgba(19, 59, 44, .1);
}

.invest-proof-strip strong {
  display: block;
  color: var(--invest-green);
  font-size: clamp(25px, 2.8vw, 38px);
  line-height: 1;
}

.invest-proof-strip span {
  display: block;
  margin-top: 9px;
  color: var(--invest-muted);
  font-size: 14px;
  line-height: 1.35;
}

.invest-visual-card {
  overflow: hidden;
  color: #fff;
  background: var(--invest-green);
  box-shadow: var(--invest-shadow-strong);
}

.invest-visual-card:hover {
  background: var(--invest-green);
  border-color: rgba(216, 173, 61, .36);
  box-shadow: 0 46px 120px rgba(4, 38, 27, .3);
}

.invest-visual-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.2 / 1;
}

.invest-visual-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.2s ease;
}

.invest-visual-card:hover .invest-visual-media img {
  transform: scale(1.045);
}

.invest-visual-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(180deg, transparent, rgba(4, 38, 27, .42));
}

.invest-visual-media::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(118deg, transparent 0 48%, rgba(255,255,255,.22) 50%, transparent 53% 100%),
    linear-gradient(180deg, transparent, rgba(6, 46, 35, .16));
  transform: translateX(-120%);
  pointer-events: none;
}

.invest-visual-caption {
  display: grid;
  gap: 10px;
  padding: 28px;
  color: #fff;
  background:
    radial-gradient(circle at 100% 0%, rgba(216, 173, 61, .12), transparent 36%),
    linear-gradient(145deg, #063627, #07402d);
}

.invest-visual-caption small,
.invest-card-label {
  color: var(--invest-gold-2);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.invest-visual-caption strong {
  color: #fff;
  font-size: clamp(24px, 2.3vw, 32px);
  line-height: 1.12;
}

.invest-visual-caption span {
  color: rgba(255, 255, 255, .76);
  line-height: 1.55;
}

.invest-visual-card:hover .invest-visual-caption {
  background:
    radial-gradient(circle at 100% 0%, rgba(216, 173, 61, .18), transparent 38%),
    linear-gradient(145deg, #062f24, #07402d);
}

.invest-model-system {
  padding: clamp(30px, 5vw, 56px);
  background:
    radial-gradient(circle at 12% 18%, rgba(216, 173, 61, .16), transparent 26%),
    linear-gradient(145deg, #062e23, #0a4d37);
  color: #fff;
}

.invest-model-system:hover {
  border-color: rgba(255, 224, 138, .22);
  background:
    radial-gradient(circle at 12% 18%, rgba(216, 173, 61, .18), transparent 26%),
    linear-gradient(145deg, #062e23, #0a4d37);
  box-shadow: 0 34px 90px rgba(19, 59, 44, .18);
}

.invest-model-system .invest-h2,
.invest-model-system .invest-text {
  color: #fff;
}

.invest-model-system .invest-text {
  color: rgba(255,255,255,.76);
}

.invest-model-system:hover .invest-eyebrow,
.invest-model-system:hover .invest-h2 {
  color: #fff;
}

.invest-model-system:hover .invest-text,
.invest-model-system:hover .invest-network p {
  color: rgba(255,255,255,.78);
}

.invest-model-system:hover .invest-network h3 {
  color: #fff;
}

.invest-model-head {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(280px, .46fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 30px;
}

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

.invest-network article {
  position: relative;
  min-height: 230px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 26px;
  background: rgba(255, 255, 255, .075);
  overflow: hidden;
  transition: transform .24s ease, border-color .24s ease, background .24s ease;
}

.invest-network article::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, .10), transparent 48%);
  pointer-events: none;
}

.invest-network span {
  position: relative;
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #0b3e2d;
  background: var(--invest-gold-2);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 950;
}

.invest-network h3,
.invest-network p {
  position: relative;
  margin: 0;
}

.invest-network h3 {
  color: #fff;
  font-size: 24px;
  line-height: 1.1;
}

.invest-network p {
  margin-top: 12px;
  color: rgba(255,255,255,.72);
  line-height: 1.55;
}

.invest-network article:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 224, 138, .34);
  background: rgba(255, 255, 255, .11);
}

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

.invest-scenario {
  min-height: 290px;
  padding: 28px;
  opacity: 1;
  filter: none;
  backdrop-filter: none;
  transform: translateZ(0);
  transition: box-shadow .22s ease, border-color .22s ease, background .22s ease;
}

.invest-scenario:hover,
.invest-scenario:active,
.invest-scenario:focus,
.invest-scenario:focus-visible,
.invest-scenario:focus-within {
  opacity: 1;
  filter: none;
  backdrop-filter: none;
  transform: translateZ(0);
}

.invest-scenario:hover,
.invest-scenario:focus-visible,
.invest-scenario:focus-within {
  border-color: rgba(12, 107, 72, .22);
  background:
    radial-gradient(circle at 88% 12%, rgba(216, 173, 61, .1), transparent 30%),
    rgba(255, 255, 255, .98);
  box-shadow: 0 28px 72px rgba(19, 59, 44, .12);
}

.invest-scenario .invest-h3 {
  margin-top: 24px;
}

.invest-scenario p {
  margin: 14px 0 0;
}

.invest-scenario.primary {
  color: #fff;
  background:
    radial-gradient(circle at 90% 0%, rgba(255, 224, 138, .2), transparent 34%),
    linear-gradient(145deg, #063627, #0b5a40);
}

.invest-scenario.primary .invest-h3,
.invest-scenario.primary p {
  color: #fff;
}

.invest-scenario.primary p {
  color: rgba(255,255,255,.76);
}

.invest-calculator-section {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(420px, .78fr);
  gap: 34px;
  align-items: start;
}

.invest-calculator-copy {
  position: sticky;
  top: 104px;
}

.invest-check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.invest-check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--invest-muted);
  line-height: 1.55;
}

.invest-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--invest-gold);
  box-shadow: 0 0 18px rgba(216,173,61,.36);
}

.calculator-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(31, 122, 77, .16);
  border-radius: 30px;
  background:
    radial-gradient(circle at 100% 0%, rgba(31, 122, 77, .10), transparent 36%),
    #ffffff;
  box-shadow: 0 32px 90px rgba(19, 59, 44, .14);
}

.invest-car-visual {
  position: relative;
  height: 116px;
  margin: -4px 0 20px;
  overflow: hidden;
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(8,70,48,.08), rgba(216,173,61,.12)),
    #f7faf4;
}

.invest-car-visual span {
  position: absolute;
  display: block;
}

.asset-line {
  left: 28px;
  right: 28px;
  bottom: 28px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(8,70,48,.34), transparent);
}

.asset-car {
  left: 46px;
  bottom: 32px;
  width: 148px;
  height: 36px;
  border-radius: 26px 34px 14px 14px;
  background: linear-gradient(135deg, #0d6f4b, #073b2b);
  box-shadow: 0 18px 38px rgba(8,70,48,.22);
}

.asset-car::before,
.asset-car::after {
  content: "";
  position: absolute;
  bottom: -10px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #101723;
  border: 5px solid #d9e7dd;
}

.asset-car::before { left: 22px; }
.asset-car::after { right: 24px; }

.asset-chart {
  right: 58px;
  bottom: 30px;
  width: 14px;
  border-radius: 999px 999px 0 0;
  background: var(--invest-gold);
}

.asset-chart.bar-a { height: 34px; right: 114px; opacity: .55; }
.asset-chart.bar-b { height: 54px; right: 86px; opacity: .75; }
.asset-chart.bar-c { height: 76px; right: 58px; }

.asset-arrow {
  right: 26px;
  top: 22px;
  width: 52px;
  height: 52px;
  border-top: 3px solid rgba(8,70,48,.34);
  border-right: 3px solid rgba(8,70,48,.34);
  transform: rotate(45deg);
}

.calculator-title {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid #e8e2d5;
}

.calculator-title--with-help {
  align-items: center;
  flex-wrap: wrap;
}

.calculator-title span {
  color: #667085;
}

.calculator-title strong {
  color: #1f7a4d;
  letter-spacing: .12em;
}

.invest-calc-help-link {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: #083d2a;
  border: 1px solid rgba(216, 173, 61, .72);
  border-radius: 999px;
  background: linear-gradient(135deg, #fff4c8, #ffe08a);
  box-shadow: 0 12px 26px rgba(216, 173, 61, .18);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .05em;
  line-height: 1;
  text-transform: uppercase;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.invest-calc-help-link:hover,
.invest-calc-help-link:focus-visible {
  background: linear-gradient(135deg, #ffeaa5, #ffd65f);
  box-shadow: 0 16px 34px rgba(216, 173, 61, .26);
  outline: none;
  transform: translateY(-1px);
}

.field,
.field span,
.field input,
.field select {
  display: block;
  width: 100%;
}

.field {
  margin-bottom: 16px;
}

.field span {
  margin-bottom: 8px;
  color: #667085;
  font-size: 14px;
  font-weight: 850;
}

.field input,
.field select {
  height: 48px;
  padding: 0 14px;
  color: #111827;
  background: rgba(244, 246, 240, .82);
  border: 1px solid rgba(31, 122, 77, .14);
  border-radius: 16px;
  font: inherit;
  font-weight: 750;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.field input:focus,
.field select:focus {
  background: #ffffff;
  border-color: rgba(31, 122, 77, .48);
  box-shadow: 0 0 0 4px rgba(31, 122, 77, .1);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.rate-panel {
  padding: 16px;
  margin-bottom: 16px;
  background: #e7f4ec;
  border: 1px solid rgba(31, 122, 77, .16);
  border-radius: 18px;
}

.rate-panel span,
.rate-panel strong,
.rate-panel small {
  display: block;
}

.rate-panel span {
  color: #667085;
  font-size: 13px;
  font-weight: 800;
}

.rate-panel strong {
  margin: 4px 0;
  color: #0f5132;
  font-size: 28px;
}

.rate-panel small {
  color: #667085;
}

.is-hidden {
  display: none !important;
}

.multi-rate-card {
  margin: 4px 0 18px;
  overflow: hidden;
  background:
    radial-gradient(circle at 96% 0%, rgba(31, 122, 77, .12), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.94), rgba(239,248,242,.82));
  border: 1px solid rgba(31, 122, 77, .14);
  border-radius: 20px;
}

.multi-rate-toggle {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  color: #111827;
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.multi-rate-toggle strong,
.multi-rate-toggle small {
  display: block;
}

.multi-rate-toggle strong {
  margin-bottom: 4px;
  color: #0b2f22;
  font-size: 15px;
  line-height: 1.15;
}

.multi-rate-toggle small,
.multi-rate-body small {
  color: #667085;
  font-size: 12px;
  line-height: 1.45;
}

.multi-rate-toggle b {
  flex: 0 0 auto;
  padding: 8px 12px;
  color: #0f6a44;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(31, 122, 77, .14);
  border-radius: 999px;
  font-size: 12px;
}

.multi-rate-card.is-open .multi-rate-toggle b {
  color: #fff;
  background: linear-gradient(135deg, #1f9b62, #0f6a44);
}

.multi-rate-body {
  padding: 0 18px 18px;
}

.multi-rate-head,
.multi-rate-row {
  display: grid;
  grid-template-columns: minmax(120px, 1.1fr) .78fr .7fr .6fr 34px;
  gap: 8px;
  align-items: center;
}

.multi-rate-head {
  padding: 10px 0 8px;
  color: #667085;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.multi-rate-row {
  padding: 8px;
  margin-bottom: 8px;
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(31, 122, 77, .1);
  border-radius: 16px;
}

.multi-rate-row input {
  width: 100%;
  height: 40px;
  padding: 0 10px;
  color: #111827;
  background: rgba(244, 246, 240, .82);
  border: 1px solid rgba(31, 122, 77, .14);
  border-radius: 12px;
  font: inherit;
  font-size: 13px;
  font-weight: 750;
}

.multi-rate-remove {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: #667085;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(17,24,39,.08);
  border-radius: 50%;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.multi-rate-add {
  width: 100%;
  height: 42px;
  margin: 4px 0 10px;
  color: #0f6a44;
  background: rgba(255,255,255,.74);
  border: 1px dashed rgba(31, 122, 77, .28);
  border-radius: 14px;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
}

.calc-total,
.calc-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid #e8e2d5;
}

.calc-total span,
.calc-row span {
  color: #667085;
}

.calc-total strong {
  color: #111827;
  font-size: 30px;
  line-height: 1;
}

.calc-total.invest strong {
  color: #1f7a4d;
}

.calc-row strong {
  color: #111827;
}

.calculator-card > small,
.calculator-card [data-output="note"] {
  display: block;
  margin-top: 12px;
  color: #667085;
  line-height: 1.45;
}

.invest-calc-help-modal {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: grid;
  place-items: center;
  padding: 24px;
}

.invest-calc-help-modal.is-hidden {
  display: none;
}

.invest-calc-help-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 18, 13, .64);
  backdrop-filter: blur(10px);
}

.invest-calc-help-dialog {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  max-height: min(86vh, 780px);
  padding: clamp(24px, 4vw, 34px);
  overflow: auto;
  color: var(--invest-ink);
  border: 1px solid rgba(12, 107, 72, .18);
  border-radius: 28px;
  background:
    radial-gradient(circle at 96% 4%, rgba(216, 173, 61, .14), transparent 28%),
    #ffffff;
  box-shadow: 0 34px 100px rgba(3, 18, 13, .3);
}

.invest-calc-help-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  color: var(--invest-green);
  border: 1px solid rgba(12, 107, 72, .18);
  border-radius: 50%;
  background: #f7fbf7;
  cursor: pointer;
  font-size: 24px;
  font-weight: 900;
}

.invest-calc-help-dialog h3 {
  max-width: 720px;
  margin: 8px 56px 12px 0;
  color: var(--invest-ink);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.04;
}

.invest-calc-help-lead {
  max-width: 760px;
  margin: 0;
  color: var(--invest-muted);
  line-height: 1.65;
}

.invest-calc-help-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.invest-calc-help-panel {
  padding: 18px;
  border: 1px solid rgba(12, 107, 72, .14);
  border-radius: 20px;
  background: linear-gradient(135deg, #fbfdfb, #eef8f1);
}

.invest-calc-help-panel strong {
  display: block;
  margin-bottom: 12px;
  color: var(--invest-green);
  font-size: 18px;
}

.invest-calc-help-panel ol {
  padding-left: 20px;
  margin: 0;
  color: var(--invest-ink);
  line-height: 1.58;
}

.invest-calc-help-panel li + li {
  margin-top: 8px;
}

.invest-calc-help-disclaimer {
  padding: 14px 16px;
  margin: 18px 0 0;
  color: #5b667a;
  border: 1px solid rgba(216, 173, 61, .28);
  border-radius: 16px;
  background: #fff8df;
  line-height: 1.55;
}

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

.invest-control-showcase {
  display: grid;
  gap: 18px;
}

.invest-control-main {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  min-height: 460px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(240, 248, 243, .9));
}

.invest-control-photo {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  background: #082b20;
}

.invest-control-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  transition: transform 1.15s ease;
}

.invest-control-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(4, 38, 27, .16), transparent 38%),
    linear-gradient(180deg, transparent 56%, rgba(4, 38, 27, .34));
  pointer-events: none;
}

.invest-control-main:hover .invest-control-photo img {
  transform: scale(1.035);
}

.invest-control-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4vw, 52px);
}

.invest-control-copy .invest-text {
  margin: 20px 0 0;
}

.invest-control-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.invest-control-points span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 14px;
  color: var(--invest-green);
  border: 1px solid rgba(12, 107, 72, .18);
  border-radius: 999px;
  background: rgba(232, 246, 237, .9);
  font-size: 13px;
  font-weight: 900;
}

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

.invest-proof-card {
  overflow: hidden;
}

.invest-proof-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  transition: transform 1.05s ease;
}

.invest-proof-card:hover img {
  transform: scale(1.045);
}

.invest-proof-card div {
  padding: 22px;
}

.invest-proof-card h3 {
  margin: 0;
}

.invest-proof-card p {
  margin: 12px 0 0;
}

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

.invest-article-card,
.invest-contact-card {
  display: flex;
  min-height: 250px;
  flex-direction: column;
  padding: 26px;
  color: inherit;
  text-decoration: none;
}

.invest-article-card:hover,
.invest-contact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(216, 173, 61, .32);
}

.invest-article-card strong,
.invest-contact-card strong {
  margin-top: auto;
  color: var(--invest-green-2);
}

.invest-text-panel {
  padding: clamp(30px, 5vw, 56px);
}

.invest-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: auto;
}

.invest-social-links a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  color: var(--invest-green);
  text-decoration: none;
  border: 1px solid rgba(8, 70, 48, .16);
  border-radius: 999px;
  background: rgba(244, 248, 243, .78);
  font-size: 13px;
  font-weight: 900;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.invest-social-links a:hover,
.invest-social-links a:focus-visible {
  color: #fff;
  background: var(--invest-green-2);
  transform: translateY(-1px);
}

@keyframes investRoadDrift {
  0% { background-position: 0 0, 0 0, 0 0; }
  100% { background-position: 90px 0, -70px 0, 120px 0; }
}

@keyframes investCardSheen {
  0% { transform: translateX(-120%); opacity: 0; }
  18% { opacity: .75; }
  100% { transform: translateX(120%); opacity: 0; }
}

@keyframes investAssetPulse {
  0%, 100% { opacity: .42; transform: scaleX(.72); }
  50% { opacity: .9; transform: scaleX(1); }
}

@media (prefers-reduced-motion: no-preference) {
  .service-dos-invest::before {
    animation: investRoadDrift 18s linear infinite;
  }

  .invest-visual-card:hover .invest-visual-media::before,
  .invest-proof-card:hover::before,
  .invest-scenario:hover::before,
  .invest-article-card:hover::before,
  .invest-contact-card:hover::before {
    animation: investCardSheen 1.1s ease both;
  }

  .asset-line {
    transform-origin: center;
    animation: investAssetPulse 2.8s ease-in-out infinite;
  }

  .asset-chart {
    transition: transform .32s ease, filter .32s ease;
  }

  .calculator-card:hover .asset-chart {
    filter: drop-shadow(0 0 12px rgba(216, 173, 61, .34));
    transform: translateY(-4px);
  }
}

.invest-final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(30px, 5vw, 54px);
  color: #fff;
  background:
    radial-gradient(circle at 88% 12%, rgba(255,224,138,.18), transparent 30%),
    linear-gradient(145deg, #062e23, #0a4d37);
  box-shadow: var(--invest-shadow-strong);
}

.invest-final-cta .invest-h2,
.invest-final-cta .invest-text {
  color: #fff;
}

.invest-final-cta .invest-text {
  color: rgba(255,255,255,.76);
}

.invest-presentation-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(28px, 4vw, 48px);
  background:
    radial-gradient(circle at 82% 12%, rgba(216, 173, 61, .12), transparent 30%),
    linear-gradient(135deg, rgba(255,255,255,.94), rgba(235,249,240,.9));
}

.invest-presentation-strip .invest-text {
  max-width: 720px;
}

.invest-legal {
  padding: 22px;
  color: #674c05;
  background: linear-gradient(135deg, rgba(255,247,218,.94), rgba(255,255,255,.86));
  border: 1px solid rgba(216,173,61,.35);
  border-radius: 24px;
}

@media (max-width: 1120px) {
  .invest-hero,
  .invest-model-head,
  .invest-calculator-section {
    grid-template-columns: 1fr;
  }

  .invest-calculator-copy {
    position: static;
  }

  .invest-visual-card {
    max-width: 620px;
  }
}

@media (max-width: 860px) {
  .service-dos-invest .page-shell {
    width: min(100% - 28px, 1180px);
  }

  .invest-proof-strip,
  .invest-network,
  .invest-scenarios,
  .invest-calc-help-grid,
  .invest-control-main,
  .invest-control-tiles,
  .invest-proof-grid,
  .invest-articles-grid,
  .invest-contact-grid,
  .invest-presentation-strip,
  .invest-final-cta {
    grid-template-columns: 1fr;
  }

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

  .invest-h1 {
    font-size: clamp(36px, 10vw, 52px);
  }
}

@media (max-width: 680px) {
  .service-dos-invest .site-header {
    padding-right: 12px;
    padding-left: 12px;
  }

  .service-dos-invest .site-header .brand {
    max-width: 172px;
  }

  .service-dos-invest .site-header .brand strong {
    font-size: 15px;
  }

  .service-dos-invest .site-header .brand small {
    font-size: 10px;
  }

  .service-dos-invest .site-header .investor-login {
    min-width: 118px;
    min-height: 38px;
    padding: 0 10px;
  }

  .service-dos-invest .site-header .header-cta {
    min-width: 52px;
    min-height: 38px;
    padding: 0 10px;
    font-size: 0;
  }

  .service-dos-invest .site-header .header-cta::before {
    content: "WA";
    font-size: 12px;
    font-weight: 900;
  }

  .field-grid,
  .multi-rate-row {
    grid-template-columns: 1fr;
  }

  .invest-h1,
  .invest-h2,
  .invest-h3,
  .invest-lead,
  .invest-text {
    overflow-wrap: break-word;
  }

  .invest-h1 {
    max-width: 100%;
    font-size: clamp(32px, 8.2vw, 38px);
    line-height: 1.08;
  }

  .invest-lead {
    font-size: 17px;
    line-height: 1.58;
  }

  .invest-btn-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .invest-btn {
    width: 100%;
    min-height: 50px;
  }

  .calculator-title {
    display: grid;
    grid-template-columns: 1fr auto;
  }

  .calculator-title strong {
    justify-self: end;
  }

  .invest-calc-help-link {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .invest-proof-strip div {
    min-height: auto;
  }

  .invest-control-photo,
  .invest-control-photo img {
    min-height: 300px;
  }

  .multi-rate-head {
    display: none;
  }

  .multi-rate-toggle {
    align-items: flex-start;
    flex-direction: column;
  }

  .calc-total,
  .calc-row {
    display: grid;
    gap: 6px;
  }

  .calc-total strong {
    font-size: 25px;
  }
}
