:root {
  --bg: #071012;
  --bg-soft: #0c181b;
  --bg-elevated: #0f2024;
  --panel: #0b1417;
  --panel-2: #101b1f;
  --surface: #121f24;
  --surface-2: #16282d;
  --text: #f3fbfb;
  --muted: #9bb0b2;
  --line: rgba(120, 166, 170, 0.20);
  --teal: #f1ff3b;
  --teal-soft: #f7ff98;
  --teal-glow: rgba(241, 255, 59, 0.18);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 20px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 10%, rgba(241, 255, 59, 0.10), transparent 28rem),
    radial-gradient(circle at 85% 0%, rgba(241, 255, 59, 0.08), transparent 24rem),
    linear-gradient(180deg, #04090b 0%, #081114 100%);
  line-height: 1.6;
}

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

.page-shell {
  width: min(1440px, 100%);
  margin: 0 auto;
  overflow: hidden;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 40px));
  height: 82px;
  margin: 0 auto;
  background: rgba(7, 16, 18, 0.72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(120, 166, 170, 0.16);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-weight: 800;
  font-size: 1.18rem;
  letter-spacing: -0.03em;
}

.logo-image {
  display: block;
  height: 54px;
  width: auto;
  max-width: min(42vw, 300px);
}

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

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

.nav-cta {
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--teal);
  color: #070707 !important;
  box-shadow: 0 0 24px rgba(241, 255, 59, 0.18);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(18, 31, 36, 0.9);
}

.menu-button span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
}

.hero {
  width: min(1180px, calc(100% - 40px));
  min-height: calc(100vh - 82px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
  padding: 74px 0 92px;
}

.label {
  margin: 0 0 14px;
  color: var(--teal);
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

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

h1 {
  margin-bottom: 26px;
  font-size: clamp(3.1rem, 7vw, 6.25rem);
  line-height: 0.94;
  letter-spacing: -0.08em;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4.2vw, 4rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.22rem;
  letter-spacing: -0.03em;
}

.hero-lead,
.muted,
.section-top p {
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  font-weight: 850;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.primary {
  background: var(--teal);
  color: #070707;
  box-shadow: 0 18px 34px rgba(241, 255, 59, 0.16);
}

.primary:hover {
  background: var(--teal-soft);
}

.secondary {
  background: rgba(18, 31, 36, 0.92);
  color: var(--text);
  border: 1px solid var(--line);
}

.secondary:hover {
  box-shadow: 0 0 28px rgba(241, 255, 59, 0.08);
}

.proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.proof span {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(18, 31, 36, 0.84);
  color: var(--muted);
  font-weight: 750;
  font-size: 0.9rem;
}

.finance-panel {
  position: relative;
  padding: 32px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 100% 0%, rgba(241, 255, 59, 0.18), transparent 18rem),
    linear-gradient(145deg, #091214, #0b171a 58%, #102328);
  color: var(--text);
  box-shadow: var(--shadow);
  border: 1px solid rgba(241, 255, 59, 0.14);
  overflow: hidden;
}

.finance-panel::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -90px;
  top: -90px;
  border-radius: 50%;
  background: rgba(241, 255, 59, 0.12);
  filter: blur(18px);
}

.finance-panel > * {
  position: relative;
  z-index: 1;
}

.panel-header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 54px;
}

.panel-header span,
.big-number span,
.panel-grid span {
  color: rgba(243, 251, 251, 0.62);
  display: block;
}

.panel-header strong {
  display: block;
  font-size: 1.1rem;
}

.status {
  height: max-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(241, 255, 59, 0.12);
  color: var(--teal) !important;
  font-weight: 850;
  font-size: 0.78rem;
  border: 1px solid rgba(241, 255, 59, 0.18);
}

.big-number {
  margin-bottom: 28px;
}

.big-number strong {
  display: block;
  margin-top: 8px;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 30px;
}

.panel-grid div,
.tasks p {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(241, 255, 59, 0.10);
}

.panel-grid strong {
  font-size: 1.6rem;
}

.chart {
  height: 170px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: end;
  gap: 12px;
  margin-bottom: 28px;
}

.chart span {
  display: block;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(180deg, var(--teal), rgba(241, 255, 59, 0.18));
  box-shadow: 0 0 18px rgba(241, 255, 59, 0.10);
}

.tasks {
  display: grid;
  gap: 10px;
}

.tasks p {
  margin: 0;
  color: rgba(243, 251, 251, 0.84);
}

.intro-strip {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 22px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.intro-strip p {
  margin: 0;
  font-weight: 850;
  color: var(--teal-soft);
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 118px 0;
}

.foundation-section {
  padding-bottom: 72px;
}

.foundation-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  padding: 42px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(11,20,23,0.92), rgba(16,27,31,0.96));
  border: 1px solid rgba(241, 255, 59, 0.10);
  box-shadow: var(--shadow);
}

.foundation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.foundation-grid div {
  padding: 22px;
  border-radius: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(241, 255, 59, 0.08);
}

.foundation-grid strong {
  display: block;
  margin-bottom: 8px;
}

.foundation-grid span {
  color: var(--muted);
}

.section-top {
  max-width: 760px;
  margin-bottom: 44px;
}

.pillar-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.pillar-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(11,20,23,0.94), rgba(16,27,31,0.98));
  border: 1px solid rgba(241, 255, 59, 0.08);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.20);
}

.primary-card {
  background:
    radial-gradient(circle at 100% 0%, rgba(241, 255, 59, 0.18), transparent 13rem),
    linear-gradient(180deg, rgba(12,24,27,0.98), rgba(16,32,36,0.98));
  border-color: rgba(241, 255, 59, 0.16);
}

.pillar-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border-radius: 14px;
  background: var(--teal);
  color: #070707;
  font-weight: 900;
}

.pillar-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.detail-section {
  padding-top: 56px;
  padding-bottom: 56px;
}

.detail-section + .detail-section {
  margin-top: 28px;
}

.alt-bg .detail-layout {
  background: linear-gradient(180deg, rgba(7,16,18,0.34), rgba(9,18,21,0.10));
}

.detail-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 84px;
  align-items: start;
}

.detail-copy {
  padding: 32px 0;
}

.detail-points {
  display: grid;
  gap: 24px;
}

.point-card {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 22px;
  padding: 28px 30px;
  border: 1px solid rgba(241, 255, 59, 0.08);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(11,20,23,0.94), rgba(16,27,31,0.98));
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.24);
}

.point-card strong {
  color: var(--teal);
  font-size: 1.9rem;
  line-height: 1;
}

.point-card p {
  color: var(--muted);
  margin: 0;
}

.quote-section {
  width: min(1080px, calc(100% - 40px));
  margin: 96px auto 0;
  padding: 46px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 0% 0%, rgba(241, 255, 59, 0.12), transparent 18rem),
    linear-gradient(180deg, rgba(11,20,23,0.96), rgba(16,27,31,0.96));
  border: 1px solid rgba(241, 255, 59, 0.10);
  text-align: center;
}

.quote-section blockquote {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.7rem);
  line-height: 1.14;
  letter-spacing: -0.05em;
  font-weight: 900;
}

.contact-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  padding: 42px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(8,16,18,0.98), rgba(11,20,23,0.98));
  color: var(--text);
  border: 1px solid rgba(241, 255, 59, 0.12);
}

.contact-card .label {
  color: var(--teal);
}

.contact-card .muted {
  color: rgba(243, 251, 251, 0.66);
}

.contact-links {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  font-weight: 900;
  color: var(--teal-soft);
}

form {
  display: grid;
  gap: 16px;
  padding: 26px;
  border-radius: 26px;
  background: rgba(18, 31, 36, 0.96);
  color: var(--text);
  border: 1px solid rgba(241, 255, 59, 0.10);
}

label {
  display: grid;
  gap: 8px;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(241, 255, 59, 0.12);
  border-radius: 16px;
  font: inherit;
  color: var(--text);
  background: rgba(7, 16, 18, 0.74);
}

input::placeholder,
textarea::placeholder {
  color: #7f9497;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(241, 255, 59, 0.14);
  border-color: var(--teal);
}

form small {
  color: var(--muted);
}

.footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
}

.footer p {
  margin: 0;
}

.footer a {
  margin-left: 20px;
}

@media (max-width: 1080px) {
  .pillar-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 960px) {
  .menu-button {
    display: block;
  }

  .nav {
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(11, 20, 23, 0.98);
    box-shadow: var(--shadow);
  }

  .nav.open {
    display: flex;
  }

  .hero,
  .foundation-card,
  .detail-layout,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .intro-strip,
  .foundation-grid {
    grid-template-columns: 1fr 1fr;
  }

  .point-card {
    grid-template-columns: 64px 1fr;
  }
}

@media (max-width: 640px) {
  .logo-image {
    height: 42px;
    max-width: min(54vw, 220px);
  }

  .header,
  .hero,
  .section,
  .intro-strip,
  .quote-section,
  .footer {
    width: min(100% - 28px, 1180px);
  }

  .hero {
    padding: 54px 0 68px;
  }

  .section {
    padding: 74px 0;
  }

  .detail-section {
    padding-top: 22px;
    padding-bottom: 22px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .pillar-grid,
  .intro-strip,
  .foundation-grid {
    grid-template-columns: 1fr;
  }

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

  .point-card {
    grid-template-columns: 1fr;
  }

  .foundation-card,
  .contact-card,
  .quote-section {
    padding: 28px;
  }

  .footer {
    display: grid;
  }

  .footer a {
    margin-left: 0;
    margin-right: 18px;
  }
}


.hidden {
  display: none !important;
}


.legal-page {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  padding: 104px 0 120px;
}

.legal-page h1 {
  font-size: clamp(3rem, 6vw, 5.4rem);
  margin-bottom: 24px;
}

.legal-intro {
  color: var(--muted);
  font-size: 1.16rem;
  max-width: 760px;
  margin-bottom: 44px;
}

.legal-content {
  display: grid;
  gap: 24px;
  padding: 38px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(11,20,23,0.94), rgba(16,27,31,0.98));
  border: 1px solid rgba(241, 255, 59, 0.10);
  box-shadow: var(--shadow);
}

.legal-content h2 {
  font-size: 1.35rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin: 10px 0 -10px;
}

.legal-content p {
  color: var(--muted);
  margin: 0;
}

.legal-content a,
.contact-form small a,
form small a {
  color: var(--teal-soft);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.legal-note {
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.95rem;
}

@media (max-width: 640px) {
  .legal-page {
    width: min(100% - 28px, 920px);
    padding: 78px 0 90px;
  }

  .legal-content {
    padding: 26px;
  }
}
