:root {
  --navy: #071f3f;
  --navy-2: #0c2d58;
  --blue: #155fb5;
  --green: #1fb67a;
  --lime: #9ff252;
  --cyan: #2cc7e8;
  --green-dark: #12865f;
  --ink: #132033;
  --muted: #66758a;
  --line: #d9e2ee;
  --soft: #f3f7fb;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(8, 31, 63, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--soft);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 16px;
  left: 50%;
  display: flex;
  width: min(1180px, calc(100% - 32px));
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 12px 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 20px 60px rgba(18, 72, 105, 0.12);
  transform: translateX(-50%);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  min-width: max-content;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, #0cb876, #62d84a 58%, #27c8e8);
  color: var(--white);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.34),
    0 10px 24px rgba(31, 182, 122, 0.2);
  overflow: hidden;
}

.brand-mark::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 8px;
  width: 20px;
  height: 20px;
  border: 4px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.12);
}

.brand-mark::after {
  content: "";
  position: absolute;
  left: 27px;
  top: 27px;
  width: 13px;
  height: 4px;
  border-radius: 999px;
  background: #ffffff;
  transform: rotate(45deg);
  transform-origin: left center;
}

.brand-mark .brand-mark-land,
.brand-mark .brand-mark-coin {
  display: none;
}

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

.brand strong {
  color: var(--navy);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav a {
  padding: 10px 12px;
  border-radius: 999px;
  color: #41536b;
  font-size: 14px;
  font-weight: 700;
}

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

.header-cta {
  min-width: max-content;
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #08a66f, #6fdc43);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.login-link {
  display: inline-flex;
  min-width: max-content;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  border: 1px solid rgba(8, 122, 90, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.login-link:hover {
  border-color: rgba(8, 166, 111, 0.34);
  background: rgba(233, 248, 242, 0.84);
}

.login-icon {
  position: relative;
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 6px;
}

.login-icon::before {
  content: "";
  position: absolute;
  left: 4px;
  top: -8px;
  width: 7px;
  height: 8px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
}

.login-icon::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 6px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--navy);
}

.menu-toggle span + span {
  margin-top: 5px;
}

.mobile-menu {
  position: fixed;
  z-index: 29;
  top: 94px;
  right: 16px;
  left: 16px;
  display: none;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu nav {
  display: grid;
}

.mobile-menu a {
  padding: 16px 12px;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  font-size: 18px;
  font-weight: 800;
}

.mobile-menu a:last-child {
  border-bottom: 0;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 132px max(24px, calc((100vw - 1180px) / 2)) 58px;
  background:
    radial-gradient(circle at 16% 18%, rgba(159, 242, 82, 0.34), transparent 30%),
    radial-gradient(circle at 78% 20%, rgba(44, 199, 232, 0.22), transparent 34%),
    linear-gradient(180deg, #f7fff9 0%, #eefaf6 48%, #ffffff 100%);
  color: var(--ink);
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(9, 119, 86, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(9, 119, 86, 0.055) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(circle at 62% 45%, black, transparent 72%);
}

.hero::after {
  content: "";
  position: absolute;
  right: -12vw;
  top: 12vh;
  z-index: -1;
  width: 56vw;
  height: 56vw;
  border-radius: 50%;
  background:
    conic-gradient(from 210deg, rgba(31, 182, 122, 0.26), rgba(44, 199, 232, 0.16), rgba(159, 242, 82, 0.28), rgba(31, 182, 122, 0.26));
  filter: blur(28px);
  opacity: 0.72;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
  gap: 48px;
  align-items: center;
}

.hero-copy {
  max-width: 610px;
  padding-top: 28px;
}

.eyebrow {
  margin: 0 0 18px;
  color: #087a5a;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 24px;
  color: #071f3f;
  font-size: clamp(48px, 6.4vw, 88px);
  line-height: 0.94;
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 16px;
  color: var(--navy);
  font-size: clamp(30px, 3.4vw, 50px);
  line-height: 1.05;
  letter-spacing: -0.025em;
}

h3 {
  color: var(--navy);
  font-size: 22px;
  line-height: 1.2;
}

.hero-lead {
  max-width: 560px;
  margin-bottom: 30px;
  color: #54677c;
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
}

.btn-primary {
  background: linear-gradient(135deg, #08a66f, #78df43);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(31, 182, 122, 0.25);
}

.btn-primary:hover,
.header-cta:hover {
  background: var(--green-dark);
}

.btn-secondary {
  border: 1px solid rgba(8, 122, 90, 0.18);
  background: rgba(255, 255, 255, 0.7);
  color: var(--navy);
  box-shadow: 0 14px 34px rgba(19, 32, 51, 0.06);
}

.icon-arrow {
  position: relative;
  width: 18px;
  height: 18px;
}

.icon-arrow::before,
.icon-arrow::after {
  content: "";
  position: absolute;
  background: currentColor;
}

.icon-arrow::before {
  top: 8px;
  left: 2px;
  width: 14px;
  height: 2px;
}

.icon-arrow::after {
  top: 4px;
  right: 1px;
  width: 9px;
  height: 9px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  background: transparent;
  transform: rotate(45deg);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 0;
}

.hero-metrics div {
  padding: 16px;
  border: 1px solid rgba(8, 122, 90, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 34px rgba(19, 32, 51, 0.06);
  backdrop-filter: blur(14px);
}

.hero-metrics dt {
  margin-bottom: 8px;
  color: #77879a;
  font-size: 12px;
  font-weight: 700;
}

.hero-metrics dd {
  margin: 0;
  color: var(--navy);
  font-size: 15px;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 42px 120px rgba(20, 92, 116, 0.18);
  overflow: hidden;
  backdrop-filter: blur(18px);
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.hero-visual-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(7, 31, 63, 0.18)),
    radial-gradient(circle at 16% 84%, rgba(31, 182, 122, 0.24), transparent 34%);
  pointer-events: none;
}

.floating-chip {
  position: absolute;
  left: 26px;
  top: 26px;
  min-width: 142px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 44px rgba(20, 92, 116, 0.14);
  backdrop-filter: blur(16px);
}

.floating-chip span,
.floating-chip strong {
  display: block;
}

.floating-chip span {
  color: #68798d;
  font-size: 12px;
  font-weight: 800;
}

.floating-chip strong {
  color: var(--navy);
  font-size: 28px;
  line-height: 1.1;
}

.signal-card {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 196px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 50px rgba(20, 92, 116, 0.16);
  backdrop-filter: blur(14px);
}

.signal-card span,
.signal-card small {
  display: block;
  color: #68798d;
  font-size: 12px;
  font-weight: 700;
}

.signal-card strong {
  display: block;
  margin: 4px 0;
  color: #08a66f;
  font-size: 38px;
  line-height: 1;
}

.section {
  padding: 92px max(24px, calc((100vw - 1180px) / 2));
}

.section-light {
  background:
    radial-gradient(circle at 12% 12%, rgba(159, 242, 82, 0.16), transparent 28%),
    radial-gradient(circle at 86% 8%, rgba(44, 199, 232, 0.12), transparent 30%),
    var(--white);
}

.section-head {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr 1fr;
  gap: 32px;
  align-items: start;
  margin-bottom: 38px;
}

.section-head p:not(.eyebrow),
.muted {
  color: var(--muted);
  font-size: 18px;
}

.section-head.compact {
  display: block;
  max-width: 760px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card {
  min-height: 286px;
  padding: 26px;
  border: 1px solid rgba(8, 122, 90, 0.12);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(247, 255, 251, 0.72));
  box-shadow: 0 24px 64px rgba(19, 32, 51, 0.08);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(14px);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: auto -32px -44px auto;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 182, 122, 0.2), transparent 66%);
}

.service-card-featured {
  background:
    radial-gradient(circle at 84% 12%, rgba(120, 223, 67, 0.24), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(233, 248, 242, 0.88));
  box-shadow: 0 30px 80px rgba(20, 92, 116, 0.14);
}

.service-card p {
  color: var(--muted);
  position: relative;
  z-index: 1;
}

.service-card h3,
.service-card .card-icon {
  position: relative;
  z-index: 1;
}

.card-icon {
  position: relative;
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, #e9f8f2, #dcf5ef);
  color: var(--green-dark);
}

.card-icon::before,
.card-icon::after {
  content: "";
  position: absolute;
}

.search-icon::before {
  width: 16px;
  height: 16px;
  border: 3px solid currentColor;
  border-radius: 50%;
  transform: translate(-3px, -3px);
}

.search-icon::after {
  width: 12px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
  transform: translate(9px, 9px) rotate(45deg);
}

.compare-icon::before {
  width: 26px;
  height: 18px;
  border-bottom: 3px solid currentColor;
  border-left: 3px solid currentColor;
  transform: translateY(2px);
}

.compare-icon::after {
  width: 25px;
  height: 16px;
  background:
    linear-gradient(135deg, transparent 0 46%, currentColor 47% 56%, transparent 57%),
    radial-gradient(circle at 18% 78%, currentColor 0 3px, transparent 4px),
    radial-gradient(circle at 52% 42%, currentColor 0 3px, transparent 4px),
    radial-gradient(circle at 82% 22%, currentColor 0 3px, transparent 4px);
}

.risk-icon::before {
  width: 25px;
  height: 25px;
  border: 3px solid currentColor;
  border-radius: 50%;
  background: linear-gradient(90deg, transparent 46%, currentColor 47% 53%, transparent 54%);
}

.risk-icon::after {
  width: 18px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
  transform: rotate(-35deg);
}

.decision-icon::before {
  width: 25px;
  height: 29px;
  border: 3px solid currentColor;
  border-radius: 6px;
  transform: translateY(1px);
}

.decision-icon::after {
  width: 16px;
  height: 9px;
  border-left: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: rotate(-45deg) translate(1px, -1px);
}

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

.strategy-strip article {
  position: relative;
  overflow: hidden;
  min-height: 184px;
  padding: 24px;
  border: 1px solid rgba(8, 122, 90, 0.12);
  border-radius: 26px;
  background:
    radial-gradient(circle at 88% 12%, rgba(120, 223, 67, 0.22), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(238, 252, 247, 0.72));
  box-shadow: 0 22px 58px rgba(19, 32, 51, 0.07);
}

.strategy-strip span {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 14px;
  background: #e9f8f2;
  color: #08a66f;
  font-weight: 800;
}

.strategy-strip strong {
  display: block;
  color: var(--navy);
  font-size: 21px;
  line-height: 1.15;
}

.strategy-strip p {
  margin: 10px 0 0;
  color: var(--muted);
}

.section-field {
  background:
    radial-gradient(circle at 82% 12%, rgba(44, 199, 232, 0.18), transparent 32%),
    radial-gradient(circle at 14% 18%, rgba(159, 242, 82, 0.22), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f2fbf7 100%);
}

.field-layout,
.split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 52px;
  align-items: center;
}

.field-copy p:not(.eyebrow) {
  max-width: 560px;
  color: #54677c;
  font-size: 19px;
}

.field-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.field-pills span {
  padding: 10px 14px;
  border: 1px solid rgba(8, 122, 90, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 14px 34px rgba(19, 32, 51, 0.05);
}

.field-visual {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 42px 120px rgba(20, 92, 116, 0.16);
}

.field-visual img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.field-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(7, 31, 63, 0.34));
}

.field-glass-card {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 1;
  max-width: 320px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 50px rgba(20, 92, 116, 0.16);
  backdrop-filter: blur(14px);
}

.field-glass-card span,
.field-glass-card small {
  display: block;
  color: #68798d;
  font-size: 12px;
  font-weight: 800;
}

.field-glass-card strong {
  display: block;
  margin: 5px 0;
  color: #08a66f;
  font-size: 25px;
  line-height: 1.1;
}

.source-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow: hidden;
}

.source-row {
  display: block;
  min-height: 190px;
  padding: 24px;
  border: 1px solid rgba(8, 122, 90, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 44px rgba(19, 32, 51, 0.06);
  backdrop-filter: blur(14px);
}

.source-row span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(8, 166, 111, 0.14), rgba(44, 199, 232, 0.12));
  color: #08a66f;
  font-weight: 800;
}

.source-row strong {
  display: block;
  color: var(--navy);
  font-size: 22px;
  margin-bottom: 10px;
}

.source-row p {
  margin: 0;
  color: #66758a;
}

.section-invest {
  background:
    radial-gradient(circle at 16% 20%, rgba(159, 242, 82, 0.2), transparent 28%),
    linear-gradient(180deg, #f7fff9 0%, #ffffff 100%);
}

.investment-head {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 42px;
  align-items: end;
  margin-bottom: 36px;
}

.investment-head p:not(.eyebrow) {
  color: #54677c;
  font-size: 18px;
}

.investment-board,
.analytics-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.15fr 0.7fr;
  gap: 18px;
  align-items: stretch;
}

.deal-card,
.criteria-grid article,
.pipeline article,
.portfolio-card {
  border: 1px solid rgba(8, 122, 90, 0.12);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 44px rgba(19, 32, 51, 0.06);
  backdrop-filter: blur(14px);
}

.deal-card {
  padding: 28px;
}

.featured-deal {
  min-height: 100%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(235, 251, 246, 0.74)),
    #ffffff;
}

.deal-top,
.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.badge {
  padding: 7px 10px;
  border-radius: 999px;
  background: #e9f8f2;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 800;
}

.score {
  color: var(--blue);
  font-size: 24px;
  font-weight: 800;
}

.price-row {
  margin: 26px 0;
}

.price-row strong {
  color: var(--navy);
  font-size: 34px;
  line-height: 1;
}

.price-row span {
  color: var(--green-dark);
  font-weight: 800;
}

.bars {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.bars span {
  display: block;
  width: var(--w);
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--blue));
}

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

.land-preview {
  position: relative;
  min-height: 150px;
  margin: 24px 0;
  overflow: hidden;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.45), transparent 45%),
    linear-gradient(25deg, #c5f0d8, #edf8f3 44%, #b9e8d5);
  box-shadow: inset 0 0 0 1px rgba(8, 122, 90, 0.12);
}

.land-preview::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 2px solid rgba(255, 255, 255, 0.88);
  transform: skew(-18deg) rotate(-7deg);
  box-shadow: 0 0 0 999px rgba(8, 166, 111, 0.1);
}

.land-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(8, 166, 111, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 166, 111, 0.16) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.75;
}

.land-preview span {
  position: absolute;
  z-index: 1;
  width: 12px;
  height: 12px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  background: #10c982;
  box-shadow: 0 0 0 8px rgba(31, 182, 122, 0.18), 0 0 28px rgba(31, 182, 122, 0.58);
}

.land-preview span:nth-child(1) { left: 22%; top: 38%; }
.land-preview span:nth-child(2) { left: 58%; top: 24%; }
.land-preview span:nth-child(3) { left: 74%; top: 62%; }

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

.criteria-grid article,
.pipeline article {
  padding: 26px;
}

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

.pipeline article span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 14px;
  background: #e9f8f2;
  color: #08a66f;
  font-weight: 800;
}

.criteria-grid strong,
.pipeline strong {
  display: block;
  color: var(--navy);
  font-size: 21px;
}

.criteria-grid p,
.pipeline p {
  margin: 10px 0 0;
  color: var(--muted);
}

.portfolio-card {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 12%, rgba(120, 223, 67, 0.32), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(234, 249, 245, 0.78));
  color: var(--navy);
}

.portfolio-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(8, 166, 111, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 166, 111, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(circle at 50% 40%, black, transparent 76%);
}

.portfolio-card > span,
.portfolio-card > strong,
.decision-orbit,
.decision-list {
  position: relative;
  z-index: 1;
}

.portfolio-card > span {
  color: #087a5a;
  font-size: 13px;
  font-weight: 800;
}

.portfolio-card > strong {
  display: block;
  max-width: 220px;
  margin-top: 10px;
  color: var(--navy);
  font-size: 29px;
  line-height: 1.08;
}

.decision-orbit {
  position: relative;
  width: 184px;
  height: 184px;
  margin: 28px auto;
  border: 1px solid rgba(8, 122, 90, 0.12);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(16, 201, 130, 0.18) 0 24%, transparent 25%),
    conic-gradient(from 20deg, rgba(16, 201, 130, 0.88), rgba(120, 223, 67, 0.92), rgba(44, 199, 232, 0.86), rgba(16, 201, 130, 0.88));
  box-shadow:
    0 24px 50px rgba(20, 92, 116, 0.16),
    inset 0 0 0 22px rgba(255, 255, 255, 0.72);
}

.decision-orbit::before,
.decision-orbit::after,
.decision-orbit i,
.decision-orbit b {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.decision-orbit::before {
  inset: 38px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: inset 0 0 0 1px rgba(8, 122, 90, 0.12);
}

.decision-orbit::after {
  left: 50%;
  top: 50%;
  width: 26px;
  height: 26px;
  background: #10c982;
  box-shadow: 0 0 0 10px rgba(16, 201, 130, 0.18), 0 0 34px rgba(16, 201, 130, 0.6);
  transform: translate(-50%, -50%);
}

.decision-orbit i {
  right: 18px;
  top: 45px;
  width: 14px;
  height: 14px;
  background: #2cc7e8;
  box-shadow: 0 0 0 8px rgba(44, 199, 232, 0.14);
}

.decision-orbit b {
  left: 24px;
  bottom: 48px;
  width: 12px;
  height: 12px;
  background: #78df43;
  box-shadow: 0 0 0 8px rgba(120, 223, 67, 0.16);
}

.decision-list {
  display: grid;
  gap: 10px;
}

.decision-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid rgba(8, 122, 90, 0.12);
}

.decision-list span {
  color: #68798d;
  font-size: 13px;
  font-weight: 800;
}

.decision-list strong {
  color: var(--navy);
  font-size: 14px;
  text-align: right;
}

.section-cta {
  background:
    radial-gradient(circle at 18% 26%, rgba(159, 242, 82, 0.2), transparent 28%),
    radial-gradient(circle at 82% 16%, rgba(44, 199, 232, 0.18), transparent 32%),
    linear-gradient(180deg, #f3f7fb 0%, #ffffff 100%);
}

.cta-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 450px;
  gap: 42px;
  overflow: hidden;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(233, 248, 242, 0.74)),
    rgba(255, 255, 255, 0.78);
  box-shadow: 0 42px 120px rgba(20, 92, 116, 0.16);
  backdrop-filter: blur(18px);
}

.cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(9, 119, 86, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(9, 119, 86, 0.055) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at 34% 50%, black, transparent 70%);
}

.cta-card h2 {
  color: var(--navy);
}

.cta-card p:not(.eyebrow) {
  max-width: 640px;
  color: #54677c;
  font-size: 18px;
}

.cta-copy,
.access-card {
  position: relative;
  z-index: 1;
}

.cta-flow {
  display: grid;
  gap: 12px;
  max-width: 420px;
  margin-top: 30px;
}

.cta-flow span {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 14px 16px 14px 56px;
  border: 1px solid rgba(8, 122, 90, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--navy);
  font-weight: 800;
  box-shadow: 0 14px 34px rgba(19, 32, 51, 0.05);
}

.cta-flow span::before {
  content: "";
  position: absolute;
  left: 16px;
  width: 22px;
  height: 22px;
  border: 3px solid #10c982;
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(16, 201, 130, 0.1);
}

.access-card {
  padding: 22px;
  border: 1px solid rgba(8, 122, 90, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 24px 64px rgba(19, 32, 51, 0.09);
}

.access-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(8, 122, 90, 0.1);
}

.access-card-head span {
  color: var(--navy);
  font-size: 18px;
  font-weight: 800;
}

.access-card-head strong {
  padding: 8px 10px;
  border-radius: 999px;
  background: #e9f8f2;
  color: #087a5a;
  font-size: 13px;
}

.lead-form {
  display: grid;
  gap: 12px;
}

.lead-form label {
  display: grid;
  gap: 7px;
}

.lead-form span {
  color: #68798d;
  font-size: 13px;
  font-weight: 700;
}

.lead-form input {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(8, 122, 90, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--navy);
  outline: 0;
  padding: 0 14px;
  box-shadow: 0 12px 30px rgba(19, 32, 51, 0.05);
}

.lead-form input::placeholder {
  color: #8b9aab;
}

.lead-form input:focus {
  border-color: var(--green);
}

.access-note {
  margin-top: 14px;
  padding: 14px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(16, 201, 130, 0.12), rgba(44, 199, 232, 0.1));
  color: #54677c;
  font-size: 14px;
  font-weight: 700;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 32px max(24px, calc((100vw - 1180px) / 2));
  border-top: 1px solid var(--line);
  background: var(--white);
}

.footer p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.cabinet-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 16%, rgba(159, 242, 82, 0.34), transparent 30%),
    radial-gradient(circle at 82% 20%, rgba(44, 199, 232, 0.22), transparent 34%),
    linear-gradient(180deg, #f7fff9 0%, #eefaf6 52%, #ffffff 100%);
}

.cabinet-shell {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 108px max(24px, calc((100vw - 1080px) / 2)) 42px;
}

.vault-card {
  position: relative;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 30px;
  align-items: center;
  overflow: hidden;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(235, 251, 246, 0.72)),
    rgba(255, 255, 255, 0.72);
  box-shadow: 0 44px 130px rgba(20, 92, 116, 0.18);
  backdrop-filter: blur(22px);
}

.vault-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(9, 119, 86, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(9, 119, 86, 0.05) 1px, transparent 1px);
  background-size: 36px 36px;
}

.vault-visual {
  position: relative;
  min-height: 300px;
  display: grid;
  place-items: center;
}

.vault-glow {
  position: absolute;
  width: 72%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 182, 122, 0.42), transparent 62%);
  filter: blur(12px);
}

.vault-door {
  position: relative;
  z-index: 1;
  width: min(270px, 82%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 34%;
  background:
    radial-gradient(circle at 36% 28%, rgba(255, 255, 255, 0.92), transparent 24%),
    linear-gradient(145deg, #f8fffc, #cceee4 56%, #eaf7f4);
  box-shadow:
    0 28px 70px rgba(20, 92, 116, 0.2),
    inset -18px -22px 44px rgba(18, 72, 105, 0.12),
    inset 18px 20px 36px rgba(255, 255, 255, 0.9);
}

.vault-door::before,
.vault-door::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.vault-door::before {
  inset: 12%;
  border: 2px solid rgba(8, 166, 111, 0.18);
}

.vault-door::after {
  right: 13%;
  top: 18%;
  width: 42px;
  height: 42px;
  background:
    linear-gradient(90deg, transparent 47%, rgba(8, 166, 111, 0.4) 48% 52%, transparent 53%),
    linear-gradient(rgba(8, 166, 111, 0.4) 48%, transparent 49% 51%, rgba(8, 166, 111, 0.4) 52%),
    rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 24px rgba(20, 92, 116, 0.12);
}

.vault-rim {
  width: 45%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.9) 0 36%, transparent 37%),
    conic-gradient(from 20deg, #10c982, #78df43, #2cc7e8, #10c982);
  box-shadow:
    0 14px 34px rgba(31, 182, 122, 0.24),
    inset 0 0 0 8px rgba(255, 255, 255, 0.58);
}

.vault-handle {
  position: relative;
  width: 72%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: inset 0 0 0 8px rgba(8, 166, 111, 0.1);
}

.vault-handle span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 56%;
  height: 4px;
  border-radius: 999px;
  background: var(--navy);
  transform-origin: left center;
}

.vault-handle span:nth-child(1) { transform: rotate(0deg); }
.vault-handle span:nth-child(2) { transform: rotate(90deg); }
.vault-handle span:nth-child(3) { transform: rotate(180deg); }
.vault-handle span:nth-child(4) { transform: rotate(270deg); }

.vault-content h1 {
  max-width: 560px;
  margin-bottom: 12px;
}

.vault-content p:not(.eyebrow) {
  max-width: 540px;
  color: #54677c;
  font-size: 17px;
}

.vault-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 20px 0;
}

.vault-stats div {
  padding: 13px 14px;
  border: 1px solid rgba(8, 122, 90, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 34px rgba(19, 32, 51, 0.06);
}

.vault-stats span {
  display: block;
  margin-bottom: 8px;
  color: #77879a;
  font-size: 12px;
  font-weight: 800;
}

.vault-stats strong {
  display: block;
  color: var(--navy);
  font-size: 18px;
}

.auth-panel {
  max-width: 640px;
  padding: 14px;
  border: 1px solid rgba(8, 122, 90, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 18px 44px rgba(19, 32, 51, 0.06);
  backdrop-filter: blur(14px);
}

.cabinet-form {
  display: grid;
  grid-template-columns: 1fr max-content;
  gap: 10px;
  align-items: end;
}

.login-form {
  grid-template-columns: 1fr 1fr max-content;
}

.cabinet-form label {
  display: grid;
  gap: 6px;
}

.cabinet-form label span {
  color: #68798d;
  font-size: 13px;
  font-weight: 800;
}

.cabinet-form input {
  min-height: 48px;
  width: 100%;
  border: 1px solid rgba(8, 122, 90, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--navy);
  outline: 0;
  padding: 0 18px;
  box-shadow: 0 12px 30px rgba(19, 32, 51, 0.06);
}

.cabinet-form input:focus {
  border-color: rgba(8, 166, 111, 0.52);
}

.auth-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(8, 122, 90, 0.1);
}

.auth-links a {
  color: #087a5a;
  font-size: 14px;
  font-weight: 800;
}

.auth-secondary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  max-width: 640px;
  margin-top: 10px;
}

.auth-mini-card {
  padding: 14px;
  border: 1px solid rgba(8, 122, 90, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 14px 34px rgba(19, 32, 51, 0.05);
}

.auth-mini-card span {
  display: block;
  margin-bottom: 8px;
  color: #087a5a;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.auth-mini-card strong {
  display: block;
  color: var(--navy);
  font-size: 18px;
}

.auth-mini-card p {
  margin: 6px 0 10px;
  color: #66758a;
  font-size: 14px;
}

.auth-mini-card a {
  color: #087a5a;
  font-size: 14px;
  font-weight: 800;
}

@media (max-width: 1040px) {
  .nav,
  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .mobile-menu {
    display: block;
  }

  .hero-grid,
  .field-layout,
  .split,
  .analytics-layout,
  .investment-head,
  .investment-board,
  .cta-card,
  .vault-card {
    grid-template-columns: 1fr;
  }

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

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

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

  .section-head {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .vault-visual {
    min-height: 320px;
  }
}

@media (max-width: 720px) {
  body {
    overflow-x: hidden;
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 62px;
    gap: 10px;
    padding: 9px 10px;
    border-radius: 18px;
  }

  .brand {
    min-width: 0;
    gap: 9px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 13px;
  }

  .brand strong {
    font-size: 14px;
    white-space: nowrap;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
    border-radius: 13px;
  }

  .mobile-menu {
    top: 80px;
    right: 10px;
    left: 10px;
    border-radius: 18px;
  }

  .mobile-menu a {
    font-size: 17px;
  }

  .hero {
    min-height: auto;
    padding: 104px 16px 52px;
    background:
      radial-gradient(circle at 10% 8%, rgba(159, 242, 82, 0.26), transparent 34%),
      radial-gradient(circle at 84% 16%, rgba(44, 199, 232, 0.18), transparent 36%),
      linear-gradient(180deg, #f7fff9 0%, #eefaf6 56%, #ffffff 100%);
  }

  .cabinet-shell {
    padding: 92px 16px 34px;
  }

  h1 {
    font-size: clamp(38px, 12vw, 46px);
    line-height: 0.98;
    letter-spacing: -0.045em;
  }

  h2 {
    font-size: clamp(30px, 9vw, 38px);
    line-height: 1.08;
  }

  h3 {
    font-size: 21px;
  }

  .hero-copy {
    padding-top: 0;
  }

  .hero-lead {
    margin-bottom: 24px;
    font-size: 18px;
    line-height: 1.52;
  }

  .hero-actions {
    margin-bottom: 22px;
  }

  .btn {
    width: 100%;
    min-height: 50px;
    padding: 13px 18px;
  }

  .hero-metrics,
  .service-grid,
  .criteria-grid,
  .pipeline,
  .source-row,
  .footer,
  .vault-stats,
  .cabinet-form,
  .login-form,
  .auth-secondary {
    grid-template-columns: 1fr;
  }

  .hero-metrics {
    gap: 10px;
  }

  .hero-metrics div {
    padding: 14px;
    border-radius: 16px;
  }

  .hero-visual {
    margin-top: 4px;
    border-radius: 24px;
  }

  .hero-visual img {
    aspect-ratio: 4 / 3;
  }

  .floating-chip {
    left: 14px;
    top: 14px;
    min-width: 112px;
    padding: 10px 12px;
    border-radius: 16px;
  }

  .floating-chip strong {
    font-size: 23px;
  }

  .signal-card {
    position: static;
    width: auto;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .signal-card strong {
    font-size: 32px;
  }

  .section {
    padding: 66px 16px;
  }

  .section-head {
    margin-bottom: 26px;
  }

  .section-head p:not(.eyebrow),
  .muted,
  .field-copy p:not(.eyebrow),
  .investment-head p:not(.eyebrow) {
    font-size: 17px;
  }

  .service-card {
    min-height: auto;
    padding: 22px;
    border-radius: 22px;
  }

  .strategy-strip {
    gap: 12px;
    margin-top: 14px;
  }

  .strategy-strip article {
    min-height: auto;
    padding: 22px;
    border-radius: 22px;
  }

  .card-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 22px;
  }

  .source-row {
    min-height: auto;
    gap: 8px;
    padding: 22px;
    border-radius: 22px;
  }

  .field-layout {
    gap: 28px;
  }

  .field-pills {
    margin-top: 20px;
  }

  .field-pills span {
    width: 100%;
    text-align: center;
  }

  .field-visual {
    border-radius: 24px;
  }

  .field-visual img {
    aspect-ratio: 4 / 3;
  }

  .field-glass-card {
    position: static;
    max-width: none;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .field-glass-card strong {
    font-size: 22px;
  }

  .investment-head {
    gap: 10px;
    margin-bottom: 26px;
  }

  .investment-board {
    gap: 14px;
  }

  .deal-card,
  .pipeline article,
  .portfolio-card {
    padding: 22px;
    border-radius: 22px;
  }

  .deal-top,
  .price-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .price-row strong {
    font-size: 30px;
  }

  .land-preview {
    min-height: 130px;
    border-radius: 20px;
  }

  .decision-orbit {
    width: 152px;
    height: 152px;
    margin: 24px auto;
  }

  .portfolio-card > strong {
    max-width: none;
    font-size: 25px;
  }

  .cta-card {
    padding: 24px;
    border-radius: 24px;
  }

  .lead-form input,
  .cabinet-form input {
    border-radius: 18px;
  }

  .auth-panel {
    padding: 14px;
    border-radius: 22px;
  }

  .auth-links {
    display: grid;
    gap: 10px;
  }

  .auth-mini-card {
    padding: 16px;
    border-radius: 20px;
  }

  .vault-card {
    padding: 18px;
    border-radius: 22px;
  }

  .vault-visual {
    min-height: 190px;
  }

  .vault-door {
    width: min(190px, 74%);
  }

  .vault-stats div {
    padding: 12px;
    border-radius: 16px;
  }

  .auth-panel {
    padding: 12px;
    border-radius: 18px;
  }

  .cabinet-form input {
    min-height: 46px;
  }

  .footer {
    display: grid;
    align-items: start;
    padding: 26px 16px;
  }
}

@media (max-width: 420px) {
  .brand strong {
    max-width: 116px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  h1 {
    font-size: 36px;
  }

  .hero {
    padding-top: 98px;
  }

  .cabinet-shell {
    padding-top: 86px;
  }

  .hero-visual img,
  .field-visual img {
    aspect-ratio: 1 / 1;
  }

  .service-card p,
  .source-row p,
  .pipeline p,
  .criteria-grid p,
  .deal-card p {
    font-size: 15px;
  }
}
