:root {
  --bg: #fbfcff;
  --ink: #07142d;
  --muted: #667085;
  --blue: #2f80ed;
  --blue2: #8cc5ff;
  --navy: #06152f;
  --deep: #031329;
  --line: #e7edf6;
  --soft: #f3f7fc;
  --shadow: 0 28px 80px rgba(9, 27, 65, 0.1);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  letter-spacing: -0.035em;
}

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

.site-bg {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 38%, #f5f8fc 70%, #fbfcff 100%);
}

.site-bg::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    url("data:image/svg+xml,%3Csvg width='1800' height='2600' viewBox='0 0 1800 2600' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M110 660C250 520 430 590 565 420C700 250 815 150 1010 205C1180 255 1195 430 1320 520C1460 620 1560 700 1540 860C1515 1020 1660 1115 1730 1180' fill='none' stroke='%238fc5ff' stroke-opacity='.18' stroke-width='20' stroke-linecap='round'/%3E%3Cpath d='M-70 1450C120 1310 340 1410 520 1180C680 975 815 870 985 965C1160 1060 1130 1265 1310 1360C1470 1445 1605 1460 1780 1600' fill='none' stroke='%238fc5ff' stroke-opacity='.15' stroke-width='20' stroke-linecap='round'/%3E%3Cpath d='M170 1940C260 2065 250 2210 160 2330C70 2450 75 2550 210 2625' fill='none' stroke='%238fc5ff' stroke-opacity='.14' stroke-width='20' stroke-linecap='round'/%3E%3C/svg%3E")
    center top / 1800px auto no-repeat;
}

.site-bg > * {
  position: relative;
  z-index: 1;
}

.container {
  width: min(1120px, calc(100% - 44px));
  margin-inline: auto;
}

.announcement {
  background: #ddecff;
  color: #5f6876;
  text-align: center;
  font-size: 14px;
  font-weight: 800;
  padding: 10px 16px;
  letter-spacing: -0.025em;
}

.site-header {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 0 max(28px, calc((100vw - 1120px) / 2));
  background: rgba(251, 252, 255, 0.88);
  backdrop-filter: blur(18px);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(231, 237, 246, 0.82);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-logo {
  display: block;
  width: auto;
  height: 36px;
  max-width: 220px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 42px;
  color: #202b3d;
  font-size: 16px;
  font-weight: 800;
  margin-left: auto;
}

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

.menu-toggle {
  display: none;
  font-family: inherit;
  letter-spacing: -0.035em;
}

.section-pad {
  padding: 88px 0;
}

.hero {
  min-height: calc(100vh - 126px);
  display: flex;
  align-items: center;
  padding-top: 70px;
  padding-bottom: 100px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
}

.hero-copy {
  max-width: 920px;
}

.hero h1 {
  font-size: clamp(52px, 7vw, 96px);
  line-height: 0.98;
  margin: 0 0 24px;
  color: var(--ink);
  max-width: 900px;
}

.hero-sub {
  font-size: clamp(18px, 1.45vw, 21px);
  line-height: 1.42;
  color: #475569;
  max-width: 820px;
  margin: 0;
}

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

.btn {
  position: relative;
  overflow: hidden;
  border-radius: 13px;
  padding: 14px 22px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  border: 0;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    filter 0.22s ease;
}

.btn::before {
  content: "";
  position: absolute;
  top: -40%;
  bottom: -40%;
  left: -80%;
  width: 45%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.55),
    transparent
  );
  transform: skewX(-20deg);
  transition: left 0.55s ease;
}

.btn:hover {
  transform: translateY(-3px);
  filter: brightness(1.04);
}

.btn:hover::before {
  left: 130%;
}

.btn-primary {
  background: linear-gradient(135deg, #87c2ff, #2f80ed);
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(47, 128, 237, 0.24);
}

.btn-primary:hover {
  box-shadow: 0 22px 42px rgba(47, 128, 237, 0.28);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  color: var(--ink);
}

.btn-secondary:hover {
  box-shadow: 0 18px 34px rgba(9, 27, 65, 0.08);
}

.btn-dark,
.legal-card .btn-primary {
  background: #05070b;
  color: #ffffff;
}

.btn-dark:hover,
.legal-card .btn-primary:hover {
  box-shadow: 0 20px 38px rgba(5, 7, 11, 0.18);
}

.btn-wide {
  min-width: 0;
}

.section-head {
  max-width: 830px;
  margin-bottom: 46px;
}

.section-head.centered {
  text-align: center;
  margin-inline: auto;
}

.pill {
  color: #687386;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 900;
  margin: 0 0 14px;
}

.section-head h2 {
  font-size: clamp(38px, 4.6vw, 62px);
  line-height: 1.06;
  margin: 0 0 16px;
  color: var(--ink);
}

.section-head p {
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.5;
  color: #475569;
  margin: 0;
}

.ventures-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 46px;
  padding-bottom: 58px;
}

.ventures-head {
  max-width: 780px;
  margin-bottom: 38px;
}

.ventures-head .pill {
  margin-bottom: 18px;
}

.ventures-head h2 {
  font-size: clamp(34px, 3.7vw, 52px);
  max-width: 780px;
  margin-inline: auto;
  margin-bottom: 22px;
}

.ventures-head p {
  max-width: 680px;
  margin-inline: auto;
}

.ventures-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 330px));
  gap: 36px;
  align-items: start;
  justify-content: center;
  max-width: 1120px;
  margin: 0 auto;
}

.venture-card-simple {
  width: 330px;
  min-width: 0;
  text-align: left;
}

.venture-image {
  display: block;
  width: 300px;
  height: 245px;
  max-width: 100%;
  object-fit: cover;
  object-position: center;
  margin: 0 0 22px;
  border: 1px solid #d9dee8;
  background: #ffffff;
  box-shadow: 0 5px 14px rgba(9, 27, 65, 0.16);
}

.venture-image-logo {
  object-fit: contain;
  padding: 42px 34px;
}

.venture-copy-simple {
  width: 330px;
  max-width: 100%;
}

.venture-kicker {
  color: #4f5868;
  font-size: 32px;
  font-weight: 900;
  line-height: 1.05;
  margin: 0 0 18px;
  letter-spacing: -0.055em;
}

.venture-copy-simple p {
  font-size: 16px;
  line-height: 1.36;
  color: #111827;
  margin: 0 0 20px;
  letter-spacing: -0.03em;
}

.venture-copy-simple .btn {
  width: 250px;
  max-width: 100%;
  min-height: 48px;
  margin: 0 auto;
  display: flex;
  background: linear-gradient(135deg, #87c2ff, #2f80ed);
  box-shadow: 0 16px 34px rgba(47, 128, 237, 0.24);
  padding-inline: 20px;
}

.future-venture {
  display: block;
}

.future-card-inner {
  width: 330px;
  min-height: 245px;
  border: 1px dashed rgba(47, 128, 237, 0.35);
  border-radius: 24px;
  padding: 38px 32px;
  background: rgba(255, 255, 255, 0.46);
  backdrop-filter: blur(10px);
}

.future-card-inner span {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 14px;
  background: #e8f3ff;
  color: var(--blue);
  display: grid;
  place-items: center;
  font-size: 25px;
  line-height: 0;
  font-weight: 900;
  margin: 0 0 26px;
  padding-bottom: 3px;
}

.future-card-inner h3 {
  font-size: 25px;
  line-height: 1.1;
  margin: 0 0 18px;
  color: var(--ink);
}

.future-card-inner p {
  font-size: 16px;
  line-height: 1.55;
  color: #536072;
  margin: 0;
}

.firm-section {
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding-top: 88px;
  padding-bottom: 98px;
}

.firm-container {
  width: min(820px, calc(100% - 44px));
  margin-inline: auto;
}

.firm-head {
  max-width: 820px;
  margin-bottom: 52px;
}

.firm-head .pill {
  margin-bottom: 26px;
}

.firm-head h2 {
  font-size: clamp(36px, 4vw, 54px);
  max-width: 820px;
  white-space: nowrap;
  margin: 0 auto 28px;
  text-align: center;
}

.firm-head p {
  max-width: 820px;
  margin-inline: auto;
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.42;
}

.firm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 0;
}

.firm-grid article {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(231, 237, 246, 0.95);
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 14px 42px rgba(9, 27, 65, 0.05);
  backdrop-filter: blur(12px);
}

.firm-grid span {
  display: block;
  font-size: 24px;
  margin-bottom: 12px;
}

.firm-grid h3 {
  font-size: 20px;
  margin: 0 0 8px;
  color: var(--ink);
}

.firm-grid p {
  color: #536072;
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
}

.values-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: stretch;
  margin: 32px auto 0;
  width: 100%;
}

.values-label {
  color: #687386;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 900;
  text-align: left;
  padding-left: 2px;
}

.values-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.values-strip div {
  background: linear-gradient(135deg, #62adff, #2f80ed);
  border-radius: 14px;
  padding: 13px 10px;
  color: #ffffff;
  text-align: center;
  box-shadow: 0 10px 24px rgba(47, 128, 237, 0.14);
}

.values-strip strong {
  display: block;
  font-size: 13px;
  margin-bottom: 4px;
}

.values-strip span {
  display: block;
  color: #eaf4ff;
  font-size: 11px;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.mini-cta-section {
  padding-top: 148px;
  padding-bottom: 70px;
}

.mini-cta {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(231, 237, 246, 0.95);
  border-radius: 30px;
  padding: 40px 28px;
  box-shadow: 0 18px 48px rgba(9, 27, 65, 0.07);
  backdrop-filter: blur(12px);
}

.mini-cta h2 {
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.08;
  margin: 0 0 14px;
  color: var(--ink);
}

.mini-cta p:not(.pill) {
  font-size: 17px;
  line-height: 1.5;
  color: #5f6b7a;
  margin: 0 auto 22px;
}

.footer {
  padding: 124px 0 144px;
  background: transparent;
  color: #9aa1ad;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 22px;
  color: #767676;
  font-weight: 500;
  font-size: 17px;
  letter-spacing: -0.025em;
}

.footer-links a {
  color: #767676;
  font-weight: 500;
}

.footer-links a:hover {
  color: var(--blue);
}

.footer-links a:not(:last-child)::after {
  content: "|";
  margin-left: 10px;
  color: #9aa1ad;
  font-weight: 400;
}

.footer p {
  font-size: 13px;
  line-height: 1.45;
  max-width: 1180px;
  margin: 14px auto;
  color: #9aa1ad;
  font-weight: 400;
}

.footer .copyright {
  font-weight: 400;
}

.legal-main {
  padding: 70px 0;
}

.legal-card {
  max-width: 920px;
  margin: auto;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 48px;
  box-shadow: 0 18px 60px rgba(9, 27, 65, 0.06);
  backdrop-filter: blur(12px);
}

.legal-card h1 {
  font-size: 48px;
  line-height: 1.05;
  margin: 0 0 32px;
  color: var(--ink);
}

.legal-card h2 {
  margin: 46px 0 18px;
  font-size: 30px;
  line-height: 1.18;
  color: var(--ink);
}

.legal-card h3 {
  margin: 30px 0 12px;
  font-size: 21px;
  line-height: 1.25;
  color: var(--ink);
}

.legal-card p,
.legal-card li {
  color: #4b5565;
  line-height: 1.75;
  font-size: 16px;
  letter-spacing: -0.02em;
}

.legal-card ul {
  margin: 14px 0 26px;
  padding-left: 24px;
}

.legal-card li {
  margin: 7px 0;
}

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

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.contact-box {
  background: #f7fbff;
  border: 1px solid #dcecff;
  border-radius: 24px;
  padding: 28px;
}

.contact-box a {
  color: var(--blue);
  font-weight: 900;
}

@media (max-width: 1120px) {
  .ventures-grid {
    grid-template-columns: repeat(3, minmax(0, 300px));
    gap: 28px;
    max-width: 980px;
  }

  .venture-card-simple,
  .venture-copy-simple,
  .future-card-inner {
    width: 300px;
  }

  .venture-image {
    width: 300px;
  }

  .venture-kicker {
    font-size: 29px;
  }
}

@media (max-width: 1000px) {
  .ventures-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    gap: 48px;
  }

  .venture-card-simple,
  .venture-image,
  .venture-copy-simple,
  .future-card-inner {
    width: min(330px, 100%);
    margin-inline: auto;
  }

  .future-card-inner {
    min-height: auto;
  }

  .firm-container {
    width: min(100% - 44px, 840px);
  }

  .firm-head h2 {
    white-space: normal;
  }

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

  .values-row {
    grid-template-columns: 1fr;
  }

  .values-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-strip div:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .site-header {
    min-height: 76px;
    padding-inline: 16px;
  }

  .brand-logo {
    height: 32px;
    max-width: 190px;
  }

  .nav {
    display: none;
  }

  .nav.open {
    display: flex;
    position: absolute;
    top: 76px;
    left: 16px;
    right: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 18px;
    box-shadow: var(--shadow);
  }

  .menu-toggle {
    display: block;
    background: #07142d;
    color: #ffffff;
    border: 0;
    border-radius: 12px;
    padding: 10px 14px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: -0.035em;
  }

  .section-pad,
  .hero,
  .ventures-section,
  .firm-section {
    min-height: auto;
    padding: 74px 0;
  }

  .mini-cta-section {
    padding-top: 124px;
    padding-bottom: 70px;
  }

  .hero-copy {
    max-width: 100%;
  }

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

@media (max-width: 560px) {
  .container,
  .firm-container {
    width: min(100% - 28px, 1120px);
  }

  .announcement {
    font-size: 12px;
  }

  .brand-logo {
    height: 28px;
    max-width: 170px;
  }

  .hero h1 {
    font-size: 42px;
    max-width: 100%;
  }

  .hero-sub {
    font-size: 18px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn-wide {
    min-width: 0;
  }

  .section-head h2 {
    font-size: 36px;
  }

  .section-head p {
    font-size: 16px;
  }

  .venture-kicker {
    font-size: 30px;
  }

  .venture-copy-simple p {
    font-size: 16px;
  }

  .venture-image-logo {
    padding: 36px 28px;
  }

  .future-card-inner {
    padding: 24px;
  }

  .values-strip {
    grid-template-columns: 1fr;
  }

  .values-strip div:last-child {
    grid-column: auto;
  }

  .mini-cta {
    padding: 38px 24px;
    border-radius: 26px;
  }

  .footer-links {
    font-size: 15px;
  }

  .footer p {
    font-size: 12px;
  }

  .legal-card {
    padding: 28px;
    border-radius: 22px;
  }

  .legal-card h1 {
    font-size: 36px;
  }
}