:root {
  --sourced-orange: #F09536;
  --sourced-purple: #2F1075;
  --sourced-light-purple: #F4F3F8;
  --sourced-grey: #3F3F3F;
  --white: #FFFFFF;
  --soft-orange: #FCEBDA;
  --border: rgba(47, 16, 117, 0.14);
  --shadow: 0 24px 70px rgba(47, 16, 117, 0.16);
  --radius-large: 34px;
  --radius-medium: 24px;
  --radius-small: 16px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Outfit", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--sourced-grey);
  background: var(--white);
  line-height: 1.6;
}

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

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

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

p {
  font-size: 1.05rem;
}

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

.narrow {
  max-width: 850px;
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-name {
  color: var(--sourced-purple);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-subtitle {
  color: var(--sourced-orange);
  font-size: 0.84rem;
  font-weight: 600;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--sourced-purple);
  font-weight: 600;
  font-size: 0.95rem;
}

.site-nav a:not(.nav-cta):hover {
  color: var(--sourced-orange);
}

.nav-cta {
  padding: 10px 18px;
  border-radius: 999px;
  color: var(--white);
  background: var(--sourced-purple);
}

.nav-cta:hover {
  background: var(--sourced-orange);
}

.section {
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.section-light {
  background: var(--white);
}

.section-soft {
  background: var(--sourced-light-purple);
}

.section-purple {
  color: var(--white);
  background:
    radial-gradient(circle at 88% 16%, rgba(240, 149, 54, 0.22), transparent 30%),
    linear-gradient(135deg, #2F1075 0%, #3a168c 58%, #2F1075 100%);
}

.hero {
  min-height: 720px;
  display: flex;
  align-items: center;
  padding: 118px 0 96px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(47, 16, 117, 0.9), rgba(47, 16, 117, 0.92)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1200' height='700' viewBox='0 0 1200 700'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='.10' stroke-width='5'%3E%3Cpath d='M125 600V330l205-155 205 155v270'/%3E%3Cpath d='M225 600V438h210v162'/%3E%3Cpath d='M665 600V365l175-130 175 130v235'/%3E%3Cpath d='M750 600V458h180v142'/%3E%3Cpath d='M70 330h1080'/%3E%3C/g%3E%3C/svg%3E") center/cover;
  opacity: 0.72;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.85fr);
  gap: 60px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  margin-bottom: 14px;
  color: var(--sourced-orange);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.88rem;
}

.hero h1 {
  margin-bottom: 24px;
  max-width: 820px;
  font-size: clamp(3.1rem, 7vw, 6.4rem);
  line-height: 0.94;
  letter-spacing: -0.055em;
  font-weight: 800;
}

.hero h1 span {
  color: var(--sourced-orange);
  display: block;
}

.hero-lede {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.1rem, 2vw, 1.34rem);
}

.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: 50px;
  padding: 13px 24px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

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

.button-orange {
  color: var(--white);
  background: var(--sourced-orange);
  box-shadow: 0 16px 34px rgba(240, 149, 54, 0.32);
}

.button-orange:hover {
  background: #dc8125;
}

.button-outline {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.trust-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-points li {
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 600;
  font-size: 0.92rem;
}

.hero-card {
  position: relative;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-large);
  background: rgba(255, 255, 255, 0.11);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
}

.property-visual {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: 30px;
  background: var(--sourced-light-purple);
}

.property-visual::before,
.property-visual::after {
  content: "";
  position: absolute;
  border-radius: 42% 58% 56% 44% / 56% 42% 58% 44%;
}

.property-visual::before {
  width: 260px;
  height: 230px;
  right: -60px;
  top: -40px;
  background: var(--soft-orange);
}

.property-visual::after {
  width: 360px;
  height: 260px;
  left: -105px;
  bottom: -90px;
  background: rgba(47, 16, 117, 0.10);
}

.roof {
  position: absolute;
  z-index: 2;
  left: 72px;
  right: 72px;
  top: 82px;
  height: 120px;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  background: var(--sourced-purple);
}

.house-body {
  position: absolute;
  z-index: 3;
  left: 94px;
  right: 94px;
  top: 180px;
  height: 120px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
  padding: 22px;
  border-radius: 6px 6px 18px 18px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.house-body span {
  border-radius: 8px;
  background: var(--soft-orange);
  border: 2px solid rgba(47, 16, 117, 0.15);
}

.chart-card {
  position: absolute;
  z-index: 4;
  right: 22px;
  bottom: 24px;
  width: 165px;
  padding: 16px;
  border-radius: 20px;
  color: var(--sourced-purple);
  background: var(--white);
  box-shadow: var(--shadow);
}

.chart-card small {
  display: block;
  color: var(--sourced-grey);
  font-weight: 600;
}

.chart-card strong {
  display: block;
  margin: 2px 0 8px;
  color: var(--sourced-orange);
  font-size: 2.25rem;
  line-height: 1;
}

.mini-chart {
  display: flex;
  align-items: end;
  gap: 7px;
  height: 38px;
}

.mini-chart i {
  flex: 1;
  border-radius: 8px 8px 0 0;
  background: var(--sourced-purple);
}

.mini-chart i:nth-child(1) { height: 38%; }
.mini-chart i:nth-child(2) { height: 58%; }
.mini-chart i:nth-child(3) { height: 46%; }
.mini-chart i:nth-child(4) { height: 84%; background: var(--sourced-orange); }

.hero-card-footer {
  display: grid;
  gap: 2px;
  margin-top: 20px;
}

.hero-card-footer strong {
  color: var(--sourced-orange);
  font-size: 1.18rem;
}

.hero-card-footer span {
  color: rgba(255, 255, 255, 0.78);
}

.hero-shape {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  border-radius: 50%;
}

.hero-shape-one {
  width: 380px;
  height: 380px;
  right: 7%;
  top: 8%;
  border: 48px solid rgba(240, 149, 54, 0.2);
}

.hero-shape-two {
  width: 140px;
  height: 140px;
  left: 6%;
  bottom: 8%;
  background: rgba(240, 149, 54, 0.18);
  border-radius: 36% 64% 49% 51% / 44% 35% 65% 56%;
}

.intro h2,
.section-heading h2,
.split h2,
.investor-grid h2,
.sourced-panel h2 {
  color: var(--sourced-purple);
  font-size: clamp(2.05rem, 4vw, 3.55rem);
  line-height: 1.03;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 36px;
}

.cards {
  display: grid;
  gap: 24px;
}

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

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

.feature-card,
.mini-card,
.dashboard-card,
.sourced-panel,
.investor-form {
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  padding: 34px;
  border-radius: var(--radius-large);
  background: var(--white);
}

.feature-card::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 220px;
  height: 190px;
  border-radius: 50% 45% 52% 48% / 42% 56% 44% 58%;
  background: var(--sourced-light-purple);
}

.feature-card-purple {
  color: var(--white);
  background: var(--sourced-purple);
}

.feature-card-purple::after {
  background: rgba(240, 149, 54, 0.18);
}

.icon-box {
  position: relative;
  z-index: 2;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 18px;
  color: var(--white);
  background: var(--sourced-purple);
}

.icon-box-orange {
  background: var(--sourced-orange);
}

.icon-box svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h3 {
  position: relative;
  z-index: 2;
  margin-bottom: 14px;
  color: var(--sourced-purple);
  font-size: 1.75rem;
  line-height: 1.1;
}

.feature-card-purple h3,
.feature-card-purple p {
  color: var(--white);
}

.feature-card p {
  position: relative;
  z-index: 2;
  margin-bottom: 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 62px;
  align-items: center;
}

.reverse {
  grid-template-columns: minmax(320px, 1fr) minmax(0, 0.95fr);
}

.region-panel {
  min-height: 330px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-content: center;
  justify-content: center;
  padding: 38px;
  border-radius: var(--radius-large);
  background:
    radial-gradient(circle at 20% 20%, rgba(240, 149, 54, 0.18), transparent 26%),
    var(--white);
  box-shadow: var(--shadow);
}

.region-pill {
  padding: 13px 18px;
  border-radius: 999px;
  color: var(--sourced-purple);
  background: var(--sourced-light-purple);
  border: 1px solid var(--border);
  font-weight: 800;
}

.dashboard-card {
  position: relative;
  overflow: hidden;
  min-height: 410px;
  padding: 30px;
  border-radius: var(--radius-large);
  background: var(--sourced-light-purple);
}

.dashboard-card::before {
  content: "";
  position: absolute;
  inset: auto -55px -65px auto;
  width: 260px;
  height: 210px;
  border-radius: 50% 42% 58% 44%;
  background: var(--soft-orange);
}

.dashboard-top {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
}

.dashboard-top span {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--sourced-purple);
  opacity: 0.75;
}

.dashboard-top span:nth-child(2) { background: var(--sourced-orange); }
.dashboard-top span:nth-child(3) { opacity: 0.28; }

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.metric-grid div {
  padding: 20px;
  border-radius: 20px;
  background: var(--white);
}

.metric-grid small {
  display: block;
  color: var(--sourced-grey);
  font-weight: 600;
}

.metric-grid strong {
  display: block;
  color: var(--sourced-purple);
  font-size: 1.7rem;
  line-height: 1.1;
}

.line-chart {
  position: relative;
  z-index: 2;
  height: 120px;
  display: flex;
  align-items: end;
  gap: 13px;
  margin-top: 28px;
  padding: 18px;
  border-radius: 24px;
  background: var(--white);
}

.line-chart span {
  flex: 1;
  border-radius: 12px 12px 0 0;
  background: var(--sourced-purple);
}

.line-chart span:nth-child(1) { height: 36%; }
.line-chart span:nth-child(2) { height: 52%; }
.line-chart span:nth-child(3) { height: 68%; background: var(--sourced-orange); }
.line-chart span:nth-child(4) { height: 58%; }
.line-chart span:nth-child(5) { height: 86%; background: var(--sourced-orange); }

.compact {
  padding: 76px 0;
}

.section-purple h2,
.section-purple p {
  color: var(--white);
}

.highlight-card {
  display: grid;
  gap: 14px;
  padding: 34px;
  border-radius: var(--radius-large);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.highlight-card strong {
  color: var(--sourced-orange);
  font-size: 1.55rem;
}

.highlight-card span {
  padding: 13px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  font-weight: 700;
}

.sourced-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 38px;
  align-items: center;
  padding: 46px;
  border-radius: var(--radius-large);
  background: var(--white);
}

.sourced-badge {
  min-height: 220px;
  display: grid;
  place-items: center;
  align-content: center;
  padding: 28px;
  border-radius: 50% 44% 54% 46% / 45% 57% 43% 55%;
  color: var(--white);
  background: var(--sourced-purple);
  text-align: center;
}

.sourced-badge span {
  color: var(--sourced-orange);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
}

.sourced-badge strong {
  font-size: 2.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mini-card {
  min-height: 160px;
  display: flex;
  align-items: end;
  padding: 22px;
  border-radius: 24px;
  color: var(--sourced-purple);
  background: var(--white);
  font-weight: 800;
}

.mini-card:nth-child(even) {
  background: var(--sourced-purple);
  color: var(--white);
}

.investor-section {
  color: var(--white);
  background: var(--sourced-purple);
}

.investor-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
  gap: 56px;
  align-items: start;
}

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

.investor-grid p {
  color: rgba(255, 255, 255, 0.82);
}

.investor-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 30px;
  border-color: rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-large);
  background: var(--white);
  color: var(--sourced-grey);
}

.investor-form label {
  display: grid;
  gap: 7px;
  color: var(--sourced-purple);
  font-weight: 800;
  font-size: 0.92rem;
}

.investor-form input,
.investor-form select,
.investor-form textarea {
  width: 100%;
  border: 1px solid rgba(47, 16, 117, 0.18);
  border-radius: 14px;
  padding: 13px 14px;
  font: inherit;
  color: var(--sourced-grey);
  background: var(--sourced-light-purple);
  outline: none;
}

.investor-form input:focus,
.investor-form select:focus,
.investor-form textarea:focus {
  border-color: var(--sourced-orange);
  box-shadow: 0 0 0 4px rgba(240, 149, 54, 0.18);
}

.full-span {
  grid-column: 1 / -1;
}

.form-note {
  margin: -6px 0 0;
  color: var(--sourced-grey);
  font-size: 0.9rem;
  opacity: 0.75;
}

.site-footer {
  padding: 34px 0;
  color: rgba(255, 255, 255, 0.78);
  background: #23095e;
}

.footer-grid {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 36px;
  align-items: start;
}

.footer-grid div {
  display: grid;
  gap: 4px;
}

.footer-grid strong {
  color: var(--white);
  font-size: 1.08rem;
}

.footer-grid span:last-child {
  color: var(--sourced-orange);
  font-weight: 700;
}

.footer-grid p {
  margin: 0;
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  .site-nav {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 96px 0 72px;
  }

  .hero-grid,
  .split,
  .reverse,
  .investor-grid,
  .sourced-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .sourced-badge {
    max-width: 320px;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .section {
    padding: 66px 0;
  }

  .header-inner {
    min-height: 68px;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 15vw, 4.3rem);
  }

  .hero-actions,
  .trust-points {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .trust-points li {
    width: 100%;
  }

  .hero-card {
    padding: 16px;
  }

  .property-visual {
    min-height: 310px;
  }

  .roof {
    left: 46px;
    right: 46px;
  }

  .house-body {
    left: 58px;
    right: 58px;
    gap: 9px;
    padding: 16px;
  }

  .two-columns,
  .five-columns,
  .metric-grid,
  .investor-form {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: auto;
    padding: 26px;
  }

  .sourced-panel,
  .investor-form {
    padding: 24px;
  }

  .full-span {
    grid-column: auto;
  }
}
