:root {
  --ink: #090330;
  --ink-soft: #2f1b69;
  --green: #008d55;
  --green-soft: #e5f6ef;
  --orange: #ff4c1f;
  --paper: #ffffff;
  --mist: #f3f7fa;
  --line: #dfe8ef;
  --muted: #6e7b91;
  --shadow: 0 28px 80px rgba(9, 3, 48, 0.16);
  --max: 1290px;
  --radius: 7px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.nav-open {
  overflow: hidden;
}

section[id],
footer[id] {
  scroll-margin-top: 96px;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 240px 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 64px;
  padding: 9px clamp(20px, 5vw, 70px);
  background: rgba(243, 247, 250, 0.93);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: rgba(9, 3, 48, 0.08);
  box-shadow: 0 12px 32px rgba(9, 3, 48, 0.06);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: min(210px, 42vw);
}

.brand img {
  width: 100%;
  height: auto;
}

.site-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.7vw, 28px);
  font-weight: 700;
  font-size: 15px;
}

.site-nav a {
  color: var(--ink);
  transition: color 160ms ease;
}

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

.site-nav a[href="#pricing"] {
  color: var(--orange);
}

.mobile-nav-action {
  display: none;
}

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

.header-cta,
.header-login,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 30px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
  white-space: nowrap;
}

.header-cta,
.button.dark,
.button.violet {
  background: var(--ink-soft);
  color: var(--paper);
}

.header-login,
.button.login-button {
  background: var(--orange);
  color: var(--paper);
  box-shadow: 0 18px 38px rgba(255, 76, 31, 0.22);
}

.button.primary {
  background: var(--orange);
  color: var(--paper);
  box-shadow: 0 18px 45px rgba(255, 76, 31, 0.24);
}

.button.light {
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 16px 40px rgba(9, 3, 48, 0.1);
}

.button:hover,
.header-cta:hover,
.header-login:hover {
  transform: translateY(-2px);
}

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

.header-login:hover,
.button.login-button:hover {
  background: #ff6b3f;
}

.nav-toggle {
  display: none;
  position: relative;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  place-items: center;
  padding: 0;
}

.nav-toggle span {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  transform-origin: center;
  transition: transform 180ms ease;
}

.nav-toggle span:first-child {
  transform: translate(-50%, -5px);
}

.nav-toggle span:last-child {
  transform: translate(-50%, 5px);
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translate(-50%, 0) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translate(-50%, 0) rotate(-45deg);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 288px;
  gap: 20px;
  padding: 0 clamp(20px, 5vw, 70px) 0;
}

.hero-media {
  position: relative;
  min-height: min(690px, calc(100vh - 88px));
  overflow: hidden;
  isolation: isolate;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(9, 3, 48, 0.72) 0%, rgba(9, 3, 48, 0.32) 42%, rgba(9, 3, 48, 0.04) 78%),
    linear-gradient(0deg, rgba(9, 3, 48, 0.28), rgba(9, 3, 48, 0));
  pointer-events: none;
}

.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(730px, 92%);
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(36px, 6vw, 70px);
  color: var(--paper);
}

.hero h1 {
  margin: 0;
  max-width: 690px;
  font-size: clamp(46px, 6.3vw, 86px);
  line-height: 0.98;
  font-weight: 760;
  letter-spacing: 0;
}

.hero p {
  margin: clamp(28px, 4vw, 72px) 0 28px;
  max-width: 470px;
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.35;
  font-weight: 700;
}

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

.returning-user-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin: 0 0 20px;
  padding: 10px 12px 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(9, 3, 48, 0.36);
  color: var(--paper);
  box-shadow: 0 18px 42px rgba(9, 3, 48, 0.18);
  backdrop-filter: blur(14px);
}

.returning-user-cta span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 800;
}

.returning-user-cta a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--orange);
  color: var(--paper);
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(255, 76, 31, 0.25);
}

.hero-metrics {
  display: flex;
  flex-direction: column;
  min-height: min(690px, calc(100vh - 88px));
  padding: clamp(28px, 4vw, 48px) 26px 36px;
  background: var(--ink-soft);
  color: var(--paper);
}

.hero-metrics h2 {
  margin: 0 0 10px;
  font-size: clamp(34px, 3.4vw, 50px);
  line-height: 1.05;
  font-weight: 760;
}

.hero-metrics p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.25;
}

.hero-price-lockup {
  display: grid;
  gap: 6px;
  margin: 18px 0 20px;
  padding: 20px 0 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.hero-price-lockup span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-price-lockup strong {
  display: block;
  color: var(--orange);
  font-size: clamp(60px, 6vw, 88px);
  font-weight: 860;
  line-height: 0.9;
  text-shadow: 0 16px 34px rgba(255, 76, 31, 0.34);
}

.hero-price-lockup small {
  max-width: 210px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: auto;
  border-left: 1px solid rgba(255, 255, 255, 0.32);
}

.metric-row span {
  display: block;
  min-width: 0;
  padding: 0 7px;
  border-right: 1px solid rgba(255, 255, 255, 0.32);
  overflow: hidden;
}

.metric-row strong {
  display: block;
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1;
  font-weight: 760;
  white-space: nowrap;
}

.metric-row small {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.bar-chart {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: end;
  gap: 14px;
  height: 220px;
  margin-top: 36px;
}

.bar-chart i {
  display: block;
  height: var(--h);
  min-height: 54px;
  border-radius: 9px;
  background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.36) 74%, rgba(255, 255, 255, 0.06) 100%);
  box-shadow: inset 0 -22px 42px rgba(9, 3, 48, 0.22);
}

.audience-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(180px, 1fr));
  gap: 26px;
  padding: 30px clamp(20px, 5vw, 70px) 112px;
  overflow-x: auto;
}

.audience-strip article {
  display: grid;
  place-content: center;
  min-height: 172px;
  padding: 28px;
  background: var(--paper);
  text-align: center;
}

.audience-strip strong {
  font-size: 24px;
  line-height: 1.1;
  font-weight: 780;
}

.audience-strip span {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
}

.split-section,
.financial-section,
.owner-section {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(360px, 0.97fr);
  gap: clamp(44px, 9vw, 132px);
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 70px) 150px;
}

.split-image img,
.finance-visual img,
.owner-photo {
  width: 100%;
  aspect-ratio: 1.06 / 1;
  object-fit: cover;
}

.split-copy h2,
.finance-copy h2,
.owner-copy h2 {
  margin: 28px 0 24px;
  font-size: clamp(44px, 5vw, 70px);
  line-height: 1.05;
  font-weight: 760;
}

.split-copy p,
.finance-copy p,
.owner-copy p,
.section-heading p {
  color: var(--muted);
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.58;
}

.section-label {
  display: inline-block;
  color: var(--ink);
  font-weight: 800;
  font-size: 15px;
}

.feature-section {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 34px clamp(20px, 5vw, 70px) 170px;
  overflow: hidden;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(340px, 0.78fr);
  gap: clamp(40px, 8vw, 110px);
  align-items: end;
  margin-bottom: 58px;
}

.feature-heading {
  grid-template-columns: minmax(440px, 1.08fr) minmax(360px, 0.82fr);
  align-items: center;
  margin-bottom: 78px;
}

.feature-heading-copy {
  align-self: center;
}

.market-collage {
  position: relative;
  min-height: 570px;
  padding: 28px 72px 88px 0;
}

.market-photo {
  margin: 0;
  overflow: hidden;
  background: var(--paper);
  box-shadow: 0 24px 70px rgba(9, 3, 48, 0.13);
}

.market-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.market-photo-main {
  width: 78%;
  aspect-ratio: 1.03 / 1;
}

.market-photo-detail {
  position: absolute;
  right: 0;
  bottom: 6px;
  width: 56%;
  aspect-ratio: 1.4 / 1;
  border: 12px solid var(--mist);
}

.market-ops-card {
  position: absolute;
  top: 58px;
  right: 24px;
  width: min(278px, 45%);
  padding: 22px;
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 22px 60px rgba(9, 3, 48, 0.26);
}

.market-ops-card span,
.market-rent-tag {
  font-size: 12px;
  line-height: 1.1;
  font-weight: 860;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.market-ops-card span {
  color: rgba(255, 255, 255, 0.68);
}

.market-ops-card strong {
  display: block;
  margin-top: 8px;
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.03;
}

.market-ops-card dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 24px 0 0;
}

.market-ops-card div {
  min-width: 0;
}

.market-ops-card dt {
  margin: 0 0 6px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 700;
}

.market-ops-card dd {
  margin: 0;
  font-size: 13px;
  font-weight: 850;
}

.market-rent-tag {
  position: absolute;
  left: 34px;
  bottom: 52px;
  max-width: 280px;
  padding: 18px 20px 18px 22px;
  background: var(--paper);
  border-left: 5px solid var(--green);
  color: var(--ink);
  box-shadow: 0 18px 52px rgba(9, 3, 48, 0.13);
}

.section-heading h2,
.showcase-head h2,
.plans-heading h2,
.insights-section h2 {
  margin: 20px 0 0;
  font-size: clamp(44px, 5.2vw, 72px);
  line-height: 1.03;
  font-weight: 760;
}

.section-heading p {
  margin: 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  position: relative;
  z-index: 2;
}

.feature-grid article {
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: 54px 40px 30px;
  background: var(--paper);
  border: 1px solid rgba(9, 3, 48, 0.04);
}

.line-icon {
  width: 58px;
  height: 58px;
  color: var(--ink-soft);
}

.line-icon svg,
.process-steps svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-grid h3 {
  margin: 72px 0 12px;
  font-size: 25px;
  line-height: 1.15;
}

.feature-grid p {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 17px;
}

.feature-grid a {
  margin-top: auto;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-weight: 800;
}

.ghost-word {
  position: absolute;
  left: clamp(20px, 4vw, 60px);
  bottom: 0;
  z-index: 1;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(92px, 16vw, 220px);
  font-weight: 860;
  line-height: 0.8;
  white-space: nowrap;
  pointer-events: none;
}

.quote-section {
  min-height: 560px;
  display: grid;
  justify-items: center;
  align-content: center;
  padding: 110px clamp(20px, 5vw, 70px);
  background: var(--paper);
  text-align: center;
}

.quote-dots {
  display: flex;
  gap: 18px;
  margin-bottom: 70px;
}

.quote-dots span {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #aeb8cc;
}

.quote-dots span:first-child {
  background: var(--ink);
}

.quote-section blockquote {
  max-width: 980px;
  margin: 0;
  font-size: clamp(34px, 4.1vw, 58px);
  line-height: 1.13;
  font-weight: 720;
}

.quote-author {
  display: grid;
  gap: 5px;
  margin-top: 42px;
}

.quote-author span {
  font-size: 20px;
  font-weight: 800;
}

.quote-author small {
  color: var(--muted);
  font-size: 15px;
}

.dark-process {
  display: grid;
  grid-template-columns: minmax(340px, 0.85fr) minmax(440px, 0.92fr);
  gap: clamp(52px, 8vw, 104px);
  padding: 150px clamp(20px, 5vw, 70px);
  background: var(--ink);
  color: var(--paper);
}

.dark-process .section-label,
.plans-section .section-label {
  color: rgba(255, 255, 255, 0.86);
}

.process-intro {
  position: sticky;
  top: 112px;
  align-self: start;
}

.process-intro h2,
.portfolio-overlay h2,
.footer-cta h2 {
  margin: 26px 0 24px;
  font-size: clamp(48px, 5.4vw, 78px);
  line-height: 1.04;
  font-weight: 760;
}

.process-intro p,
.process-steps p,
.portfolio-overlay p,
.footer-cta p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
  line-height: 1.6;
}

.process-steps {
  display: grid;
  gap: 30px;
}

.process-steps article {
  min-height: 260px;
  padding: 48px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.015);
}

.process-steps span {
  display: block;
  font-weight: 800;
}

.process-steps h3 {
  margin: 42px 0 10px;
  font-size: clamp(27px, 3vw, 38px);
  line-height: 1.08;
}

.process-steps p {
  margin: 0 0 46px;
}

.process-steps svg {
  width: 72px;
  height: 72px;
  color: var(--paper);
}

.financial-section {
  padding-top: 150px;
}

.finance-copy ul {
  display: grid;
  gap: 14px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.finance-copy li {
  position: relative;
  padding-left: 32px;
  color: var(--ink);
  font-weight: 800;
}

.finance-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: inset 0 0 0 4px var(--green-soft);
}

.finance-visual {
  position: relative;
}

.floating-panel {
  position: absolute;
  left: -36px;
  bottom: 34px;
  width: min(310px, calc(100% - 38px));
  padding: 26px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.floating-panel span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.floating-panel strong {
  display: block;
  margin-top: 8px;
  font-size: 28px;
  line-height: 1.05;
}

.floating-panel small {
  display: block;
  margin-top: 10px;
  color: var(--muted);
}

.product-showcase {
  padding: 40px clamp(20px, 5vw, 70px) 150px;
  background: var(--paper);
}

.showcase-head {
  max-width: var(--max);
  margin: 0 auto 54px;
}

.product-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
}

.product-grid article {
  display: grid;
  align-content: start;
  gap: 22px;
  padding: 20px;
  border: 1px solid var(--line);
  background: var(--mist);
}

.product-grid .large-shot {
  grid-row: span 2;
}

.product-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: left top;
  border: 1px solid rgba(9, 3, 48, 0.08);
}

.product-grid h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1.08;
}

.product-grid p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.portfolio-band {
  position: relative;
  min-height: 850px;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}

.portfolio-band img {
  position: absolute;
  inset: 250px 0 0 0;
  width: 100%;
  height: calc(100% - 250px);
  object-fit: cover;
  filter: brightness(0.54) saturate(0.95);
}

.marquee-word {
  position: relative;
  z-index: 2;
  left: -2vw;
  padding-top: 28px;
  color: var(--paper);
  font-size: clamp(86px, 16vw, 230px);
  font-weight: 860;
  line-height: 0.9;
  white-space: nowrap;
}

.portfolio-overlay {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 84px;
  width: min(820px, 90vw);
  transform: translateX(-50%);
  text-align: center;
}

.stats-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 92px clamp(20px, 5vw, 70px) 150px;
}

.stats-section article {
  min-width: 0;
}

.stats-section span {
  display: block;
  font-weight: 800;
  font-size: 17px;
}

.stats-section strong {
  display: block;
  margin: 8px 0 14px;
  font-size: clamp(80px, 10vw, 142px);
  line-height: 0.85;
  font-weight: 760;
}

.stats-section small {
  display: block;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.owner-section {
  grid-template-columns: minmax(340px, 0.85fr) minmax(0, 1.15fr);
  align-items: start;
}

.owner-images {
  position: relative;
  min-height: 690px;
}

.owner-photo {
  width: 78%;
  margin-left: auto;
  aspect-ratio: 1.14 / 1;
}

.owner-screen {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 58%;
  aspect-ratio: 1.08 / 1;
  object-fit: cover;
  object-position: left top;
  border: 10px solid var(--paper);
  box-shadow: var(--shadow);
}

.plans-section {
  scroll-margin-top: 96px;
  padding: 144px clamp(20px, 5vw, 70px) 150px;
  background: var(--ink);
  color: var(--paper);
}

.plans-heading {
  max-width: 930px;
  margin: 0 auto 58px;
  text-align: center;
}

.plans-section .section-label {
  color: var(--orange);
}

.plans-heading p {
  max-width: 720px;
  margin: 22px auto 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
  line-height: 1.55;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  max-width: 1010px;
  margin: 0 auto;
}

.plan-grid article {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  padding: 44px 34px 36px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-top: 5px solid var(--orange);
  background: rgba(255, 255, 255, 0.035);
}

.plan-grid .highlight-plan {
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 30px 70px rgba(255, 76, 31, 0.18);
}

.plan-grid h3 {
  margin: 0 0 18px;
  font-size: 34px;
}

.plan-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 17px;
}

.highlight-plan p {
  color: var(--muted);
}

.plan-price {
  display: flex;
  align-items: flex-end;
  gap: 7px;
  margin: 24px 0 4px;
}

.plan-price strong {
  display: block;
  color: var(--orange);
  font-size: 42px;
  line-height: 0.95;
}

.plan-price span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  font-weight: 800;
}

.highlight-plan .plan-price span {
  color: var(--muted);
}

.plan-grid a {
  align-self: start;
  margin: 32px 0;
  padding: 16px 24px;
  border-radius: 999px;
  background: var(--orange);
  color: var(--paper);
  font-weight: 800;
  box-shadow: 0 18px 34px rgba(255, 76, 31, 0.22);
  transition: background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.plan-grid a:hover {
  background: #ff6b3f;
  box-shadow: 0 20px 42px rgba(255, 76, 31, 0.3);
  transform: translateY(-2px);
}

.plan-grid ul {
  display: grid;
  gap: 18px;
  margin: auto 0 0;
  padding: 32px 0 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.highlight-plan ul {
  border-top-color: var(--line);
}

.plan-grid li {
  position: relative;
  padding-left: 30px;
  color: rgba(255, 255, 255, 0.64);
}

.highlight-plan li {
  color: var(--muted);
}

.plan-grid li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--paper);
  font-size: 11px;
  font-weight: 900;
}

.insights-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 132px clamp(20px, 5vw, 70px) 150px;
}

.insights-section h2 {
  max-width: 1100px;
  margin-bottom: 62px;
}

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

.insight-grid article {
  display: grid;
  align-content: start;
}

.insight-grid img {
  width: 100%;
  aspect-ratio: 1.28 / 1;
  object-fit: cover;
}

.insight-grid span {
  display: block;
  margin-top: 24px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.insight-grid h3 {
  margin: 10px 0 0;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.1;
}

.site-footer {
  display: grid;
  grid-template-columns: 0.95fr 0.55fr 1.2fr;
  gap: 70px;
  padding: 126px clamp(20px, 5vw, 70px) 40px;
  background: var(--ink);
  color: var(--paper);
}

.footer-brand {
  display: grid;
  align-content: start;
  gap: 26px;
}

.logo-panel {
  display: inline-flex;
  width: min(275px, 100%);
  padding: 10px 14px;
  background: var(--paper);
}

.logo-panel img {
  width: 100%;
}

.footer-brand p,
.site-footer nav a {
  color: rgba(255, 255, 255, 0.62);
}

.site-footer nav {
  display: grid;
  align-content: start;
  gap: 18px;
}

.site-footer nav a:hover {
  color: var(--paper);
}

.footer-cta {
  text-align: right;
}

.footer-cta h2 {
  margin-top: 0;
}

.footer-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.footer-cta .button {
  margin-top: 20px;
}

.footer-actions .button {
  margin-top: 0;
}

.copyright {
  grid-column: 1 / -1;
  justify-self: end;
  color: rgba(255, 255, 255, 0.52);
}

.back-top {
  position: fixed;
  right: 24px;
  bottom: 22px;
  z-index: 40;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  font-size: 20px;
  font-weight: 900;
  box-shadow: 0 18px 45px rgba(9, 3, 48, 0.22);
}

.section-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.section-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1160px) {
  .site-header {
    grid-template-columns: 210px auto auto;
  }

  .site-nav {
    gap: 18px;
    font-size: 14px;
  }

  .header-actions {
    gap: 8px;
  }

  .header-login,
  .header-cta {
    padding-inline: 20px;
  }

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

  .hero-media,
  .hero-metrics {
    min-height: auto;
  }

  .hero-media {
    min-height: 680px;
  }

  .hero-metrics {
    display: grid;
    grid-template-columns: 0.8fr 0.9fr 0.7fr;
    gap: 28px;
    align-items: end;
  }

  .metric-row,
  .bar-chart {
    margin-top: 0;
  }

  .bar-chart {
    height: 160px;
  }

  .audience-strip {
    grid-template-columns: repeat(5, minmax(220px, 1fr));
  }

  .feature-heading {
    grid-template-columns: minmax(390px, 0.95fr) minmax(340px, 0.82fr);
    gap: 52px;
  }

  .market-collage {
    min-height: 500px;
    padding-right: 50px;
  }

  .market-ops-card {
    right: 0;
  }

  .feature-grid,
  .plan-grid,
  .insight-grid {
    grid-template-columns: 1fr 1fr;
  }

  .dark-process,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .process-intro {
    position: static;
  }

  .footer-cta {
    text-align: left;
  }

  .copyright {
    justify-self: start;
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 10px;
    padding-inline: 18px;
  }

  .brand {
    order: 1;
    width: 190px;
  }

  .nav-toggle {
    order: 3;
    display: grid;
  }

  .header-actions {
    order: 2;
  }

  .header-login {
    min-height: 42px;
    padding-inline: 18px;
    font-size: 13px;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-nav.is-open {
    position: fixed;
    inset: 64px 16px auto 16px;
    display: grid;
    gap: 0;
    padding: 18px;
    background: var(--paper);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open a {
    padding: 16px 8px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav.is-open .mobile-nav-action {
    display: flex;
    justify-content: center;
    min-height: 48px;
    margin-top: 12px;
    padding: 0 18px;
    border: 0;
    border-radius: 999px;
    background: var(--ink-soft);
    color: var(--paper);
    font-weight: 900;
  }

  .site-nav.is-open .mobile-nav-login {
    background: var(--orange);
    color: var(--paper);
  }

  .site-nav.is-open a:last-child {
    border-bottom: 0;
  }

  .hero {
    padding-inline: 16px;
  }

  .hero-media {
    min-height: 660px;
  }

  .hero-copy {
    padding: 32px 24px;
    justify-content: flex-end;
  }

  .hero h1 {
    font-size: clamp(42px, 12vw, 64px);
  }

  .hero p {
    margin-top: 24px;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .split-section,
  .financial-section,
  .owner-section,
  .section-heading,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .split-section,
  .financial-section,
  .owner-section {
    padding-bottom: 100px;
  }

  .feature-heading {
    gap: 42px;
    margin-bottom: 58px;
  }

  .feature-heading-copy {
    order: -1;
  }

  .market-collage {
    max-width: 740px;
    min-height: 520px;
    padding-right: 66px;
  }

  .feature-grid,
  .plan-grid,
  .insight-grid,
  .stats-section {
    grid-template-columns: 1fr;
  }

  .quote-section {
    min-height: auto;
    padding-block: 90px;
  }

  .product-grid .large-shot {
    grid-row: auto;
  }

  .portfolio-band {
    min-height: 700px;
  }

  .portfolio-band img {
    top: 190px;
    height: calc(100% - 190px);
  }

  .owner-images {
    min-height: 560px;
  }

  .owner-photo {
    width: 100%;
  }

  .owner-screen {
    width: 72%;
  }
}

@media (max-width: 620px) {
  .site-header {
    gap: 8px;
    padding-inline: 12px;
  }

  .brand {
    width: 148px;
  }

  .header-login {
    min-height: 40px;
    padding-inline: 15px;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
  }

  .hero-media {
    min-height: 610px;
  }

  .hero-media::after {
    background:
      linear-gradient(180deg, rgba(9, 3, 48, 0.08) 0%, rgba(9, 3, 48, 0.32) 38%, rgba(9, 3, 48, 0.82) 100%);
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

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

  .returning-user-cta {
    display: grid;
    width: 100%;
    gap: 10px;
    border-radius: 22px;
  }

  .returning-user-cta a {
    justify-content: center;
    width: 100%;
  }

  .audience-strip {
    grid-template-columns: 1fr;
    padding-bottom: 76px;
    overflow-x: visible;
  }

  .audience-strip article {
    min-height: 130px;
  }

  .feature-heading {
    margin-bottom: 44px;
  }

  .market-collage {
    display: grid;
    gap: 16px;
    min-height: auto;
    padding: 0;
  }

  .market-photo-main,
  .market-photo-detail,
  .market-ops-card,
  .market-rent-tag {
    position: static;
    width: 100%;
    max-width: none;
  }

  .market-photo-main,
  .market-photo-detail {
    aspect-ratio: 1.28 / 1;
  }

  .market-photo-detail {
    border: 0;
  }

  .market-ops-card {
    order: 3;
  }

  .market-rent-tag {
    order: 4;
  }

  .split-copy h2,
  .finance-copy h2,
  .owner-copy h2,
  .section-heading h2,
  .showcase-head h2,
  .plans-heading h2,
  .insights-section h2 {
    font-size: clamp(36px, 11vw, 48px);
  }

  .feature-grid article,
  .process-steps article,
  .plan-grid article {
    padding: 34px 24px;
  }

  .floating-panel {
    position: relative;
    left: auto;
    bottom: auto;
    width: auto;
    margin: -28px 18px 0;
  }

  .portfolio-overlay {
    bottom: 52px;
    text-align: left;
  }

  .owner-images {
    min-height: auto;
  }

  .owner-screen {
    position: relative;
    width: 92%;
    margin-top: -28px;
  }

  .site-footer {
    padding-top: 86px;
  }

  .back-top {
    right: 14px;
    bottom: 14px;
    width: 42px;
    height: 42px;
  }
}
