:root {
  --bg: #0c0d10;
  --bg-soft: #13151b;
  --paper: #f5f1e8;
  --paper-2: #fff8ed;
  --ink: #111216;
  --muted: #62646d;
  --line: rgba(255,255,255,.14);
  --hot: #ff4f2e;
  --hot-2: #ff8a3d;
  --gold: #f1c96b;
  --cream: #fff3dc;
  --cyan: #aee8ed;
  --radius-lg: 34px;
  --radius-md: 22px;
  --shadow: 0 24px 80px rgba(0,0,0,.28);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255, 79, 46, .16), transparent 36rem),
    linear-gradient(180deg, #fff8ed 0%, #f5f1e8 45%, #111216 45%, #111216 100%);
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

img { width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0; color: var(--muted); line-height: 1.68; font-size: clamp(.96rem, 1.2vw, 1.06rem); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 clamp(18px, 4vw, 54px);
  background: rgba(255, 248, 237, .78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(17,18,22,.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
  letter-spacing: -0.02em;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: white;
  background: linear-gradient(135deg, var(--hot), var(--hot-2));
  font-size: .72rem;
  letter-spacing: .02em;
}
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  color: rgba(17,18,22,.72);
  font-size: .88rem;
  font-weight: 760;
  letter-spacing: -0.01em;
}
.nav-cta {
  padding: 13px 19px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: .88rem;
  font-weight: 820;
  box-shadow: 0 14px 34px rgba(0,0,0,.20);
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(420px, 1.18fr);
  align-items: center;
  gap: clamp(30px, 5vw, 76px);
  min-height: calc(100svh - 76px);
  padding: clamp(50px, 7vw, 92px) 0 clamp(48px, 6vw, 74px);
}
.eyebrow, .section-kicker {
  color: rgba(17,18,22,.72);
  font-size: .76rem;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 18px;
}
.eyebrow span {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--hot);
  vertical-align: 1px;
}
.eyebrow.dark { color: rgba(255,255,255,.62); }
.hero h1, h2 {
  margin: 0;
  font-weight: 950;
  letter-spacing: -0.045em;
  line-height: .95;
}
.hero h1 {
  max-width: 680px;
  font-size: clamp(2.4rem,5.8vw,5.2rem);
}
.hero h1::after {
  content: ".";
  color: var(--hot);
}
.hero-copy {
  max-width: 590px;
  margin-top: 26px;
  color: #52545d;
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: .93rem;
  font-weight: 870;
  letter-spacing: -0.015em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.primary {
  color: white;
  background: linear-gradient(135deg, var(--hot), var(--hot-2));
  box-shadow: 0 18px 36px rgba(255,79,46,.25);
}
.secondary {
  background: rgba(255,255,255,.70);
  border: 1px solid rgba(17,18,22,.10);
}
.secondary.light { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.22); }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 620px;
  margin-top: 34px;
}
.hero-stats article {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.70);
  border: 1px solid rgba(17,18,22,.08);
}
.hero-stats strong { display: block; font-size: 1.22rem; letter-spacing: -0.04em; line-height: 1.05; }
.hero-stats span { display: block; margin-top: 6px; color: #6c6f78; font-size: .82rem; line-height: 1.25; }

.hero-visual {
  position: relative;
  isolation: isolate;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: -20px;
  z-index: -1;
  border-radius: 44px;
  background: linear-gradient(135deg, rgba(255,79,46,.36), rgba(241,201,107,.28), rgba(174,232,237,.32));
  filter: blur(4px);
}
.hero-visual img {
  height: clamp(440px, 54vw, 680px);
  object-fit: cover;
  border-radius: 36px;
  box-shadow: var(--shadow);
}
.floating-card {
  position: absolute;
  width: min(260px, 42%);
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,248,237,.92);
  border: 1px solid rgba(255,255,255,.52);
  box-shadow: 0 18px 48px rgba(0,0,0,.23);
  backdrop-filter: blur(12px);
}
.floating-card span { display: block; color: var(--hot); font-size: .67rem; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; }
.floating-card strong { display: block; margin-top: 7px; font-size: 1.05rem; line-height: 1.06; letter-spacing: -0.03em; }
.card-top { top: 28px; right: 28px; }
.card-bottom { left: 28px; bottom: 28px; }

.ticker {
  display: flex;
  gap: 10px;
  overflow: hidden;
  padding: 18px max(20px, calc((100vw - var(--max)) / 2));
  background: var(--ink);
  color: #fff;
}
.ticker span {
  white-space: nowrap;
  padding: 10px 16px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 999px;
  color: rgba(255,255,255,.72);
  font-size: .82rem;
  font-weight: 800;
}

.split-section { padding: clamp(80px, 10vw, 140px) 0 70px; }
.split-grid { display: grid; grid-template-columns: .92fr 1fr; gap: clamp(28px, 7vw, 90px); align-items: start; }
h2 { font-size: clamp(2rem,4.4vw,4rem); max-width: 840px; }
.text-block { display: grid; gap: 20px; max-width: 650px; }

.feature-band {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: clamp(26px, 5vw, 70px);
  align-items: center;
  padding: clamp(46px, 6vw, 76px);
  border-radius: var(--radius-lg);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255,79,46,.24), transparent 35%),
    linear-gradient(145deg, #111216, #191b23);
  box-shadow: var(--shadow);
}
.feature-copy h2 { color: #fff; max-width: 650px; }
.feature-copy p:not(.eyebrow) { color: rgba(255,255,255,.72); max-width: 580px; margin: 24px 0 0; }
.phone-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 20px;
  border-radius: 30px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.13);
}
.mini-card {
  min-height: 118px;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  border-radius: 22px;
  color: #111216;
  background: var(--cream);
  font-weight: 900;
  letter-spacing: -0.035em;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
}
.mini-card.fire { background: linear-gradient(135deg, var(--hot), var(--gold)); color: #fff; }

.markets { padding-top: clamp(84px, 10vw, 140px); }
.centered-heading { text-align: center; max-width: 880px; margin: 0 auto 36px; }
.centered-heading h2 { margin-inline: auto; }
.market-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr .9fr;
  gap: 16px;
}
.market-card {
  min-height: 260px;
  padding: 26px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(17,18,22,.08);
  box-shadow: 0 16px 48px rgba(17,18,22,.06);
}
.market-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 42px;
  border-radius: 50%;
  background: #ffe3d6;
  color: var(--hot);
  font-size: .78rem;
  font-weight: 950;
}
.market-card h3 { margin: 0; font-size: clamp(1.35rem, 2.4vw, 2rem); line-height: 1; letter-spacing: -0.04em; }
.market-card p { margin-top: 14px; font-size: .96rem; }
.image-card { padding: 0; overflow: hidden; display: grid; grid-template-rows: 1fr auto; }
.image-card img { height: 280px; object-fit: cover; }
.image-card div { padding: 24px; }

.image-top {
  padding: 0;
  overflow: hidden;
  display: grid;
  grid-template-rows: 210px auto;
}
.image-top > img {
  height: 210px;
  object-fit: cover;
}
.image-top > div {
  padding: 24px 26px 26px;
}
.image-top span { margin-bottom: 30px; }

.accent { background: #fff0bd; }
.dark-card { background: #111216; color: #fff; }
.dark-card p { color: rgba(255,255,255,.68); }
.dark-card span { background: rgba(255,255,255,.1); color: var(--gold); }

.image-break {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 20px;
  align-items: stretch;
  padding-top: clamp(70px, 10vw, 120px);
}
.image-break img {
  height: 540px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.image-break-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 5vw, 56px);
  border-radius: var(--radius-lg);
  background: #daf6f4;
}
.image-break-card h2 { font-size: clamp(2.45rem, 4.2vw, 4.5rem); }
.image-break-card p:not(.section-kicker) { margin-top: 20px; color: #334046; }

.buyer-section { padding-top: clamp(84px, 10vw, 140px); color: #fff; }
.buyer-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(30px, 7vw, 90px);
  padding: clamp(34px, 5vw, 60px);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
}
.buyer-grid h2 { color: #fff; }
.buyer-grid .section-kicker { color: var(--gold); }
.buyer-list { display: grid; gap: 12px; }
.buyer-list article {
  padding: 22px;
  border-radius: 20px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
}
.buyer-list strong { display: block; color: #fff; font-size: 1.08rem; line-height: 1.1; letter-spacing: -0.02em; }
.buyer-list span { display: block; margin-top: 7px; color: rgba(255,255,255,.64); font-size: .94rem; line-height: 1.45; }

.proof-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(26px, 5vw, 72px);
  align-items: center;
  padding-top: clamp(84px, 10vw, 140px);
  color: #fff;
}
.proof-image img { border-radius: var(--radius-lg); height: 560px; object-fit: cover; box-shadow: var(--shadow); }
.proof-copy h2 { color: #fff; }
.proof-copy p { margin-top: 22px; color: rgba(255,255,255,.68); max-width: 620px; }
.clean-list { list-style: none; margin: 26px 0 0; padding: 0; display: grid; gap: 10px; }
.clean-list li {
  position: relative;
  padding: 14px 16px 14px 42px;
  border-radius: 16px;
  color: rgba(255,255,255,.78);
  background: rgba(255,255,255,.07);
}
.clean-list li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 18px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--hot);
}

.final-cta { padding: clamp(84px, 10vw, 140px) 0 clamp(58px, 8vw, 92px); }
.final-card {
  text-align: center;
  padding: clamp(48px, 8vw, 90px) clamp(24px, 5vw, 70px);
  border-radius: 42px;
  color: #fff;
  background:
    radial-gradient(circle at top left, rgba(255,79,46,.42), transparent 32rem),
    linear-gradient(135deg, #191b23, #0c0d10);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
}
.final-card .section-kicker { color: var(--gold); }
.final-card h2 { color: #fff; margin-inline: auto; }
.final-card p { margin: 22px auto 0; max-width: 720px; color: rgba(255,255,255,.72); }
.center-actions { justify-content: center; }

.site-footer {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 30px 0 44px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: rgba(255,255,255,.56);
  font-size: .84rem;
  font-weight: 760;
}
.site-footer a { color: rgba(255,255,255,.78); }

@media (max-width: 980px) {
  .nav-links { display: none; }
  .hero, .split-grid, .feature-band, .image-break, .buyer-grid, .proof-section { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero h1 { font-size: clamp(3.6rem, 15vw, 6.2rem); }
  .hero-visual img { height: min(72vw, 560px); }
  .market-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  body { background: linear-gradient(180deg, #fff8ed 0%, #f5f1e8 58%, #111216 58%, #111216 100%); }
  .site-header { height: 66px; padding-inline: 16px; }
  .brand span:last-child { font-size: .92rem; }
  .nav-cta { padding: 11px 14px; font-size: .78rem; }
  .section-pad { width: min(100% - 28px, var(--max)); }
  .hero { padding-top: 38px; gap: 34px; }
  .hero h1 { letter-spacing: -0.05em; line-height: .96; }
  .hero-stats, .market-grid { grid-template-columns: 1fr; }
  .hero-visual img, .image-break img, .proof-image img { height: 380px; }
  .image-top { grid-template-rows: 190px auto; }
  .image-top > img { height: 190px; }
  .floating-card { position: static; width: auto; margin-top: 10px; }
  h2 { font-size: clamp(2.25rem, 12vw, 3.7rem); letter-spacing: -0.048em; line-height: .98; }
  .feature-band, .buyer-grid { padding: 24px; border-radius: 26px; }
  .phone-card { grid-template-columns: 1fr; }
  .image-break-card, .final-card { padding: 30px 22px; border-radius: 26px; }
  .site-footer { flex-direction: column; padding-bottom: 32px; }
}

/* Layout refinements for the Revenue angles card section */
.markets {
  position: relative;
  isolation: isolate;
  padding-bottom: clamp(76px, 9vw, 120px);
}
.markets::before {
  content: "";
  position: absolute;
  inset: 0 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: linear-gradient(180deg, #f5f1e8 0%, #fff8ed 100%);
  z-index: -1;
}
.market-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}
.market-card {
  min-height: 430px;
  background: #fffaf1;
  overflow: hidden;
}
.image-card,
.image-top {
  display: grid;
  grid-template-rows: 210px 1fr;
}
.image-card img,
.image-top > img {
  height: 210px;
  width: 100%;
  object-fit: cover;
}
.image-card div,
.image-top > div {
  padding: 26px 28px 30px;
  background: #fffaf1;
}
.accent,
.accent > div {
  background: #fff0bd;
}
.dark-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 79, 46, .22), transparent 18rem),
    linear-gradient(145deg, #17191f, #0c0d10);
  color: #fff;
  min-height: 430px;
}
.dark-card span {
  margin-bottom: auto;
}
.market-card h3 {
  max-width: 520px;
}
.market-card p {
  max-width: 560px;
}

@media (max-width: 760px) {
  .market-grid {
    grid-template-columns: 1fr;
  }
  .market-card,
  .dark-card {
    min-height: auto;
  }
}
