/* Leena Cloud — beige hero + floating orbs + dark dashboard (matches mock) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Playfair+Display:ital,wght@1,600;1,700&display=swap');

:root {
  --cream: #ece9e2;
  --cream-dark: #e2ded4;
  --ink: #1a1a1a;
  --muted: #5c5c5c;
  --red: #e60023;
  --pink: #e84566;
  --white: #ffffff;
  --dark: #141414;
  --dark-card: #1e1e1e;
  --border: rgba(0,0,0,0.08);
  --shadow: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-lg: 0 24px 60px rgba(0,0,0,0.22);
  --max: 1160px;
  --font: Inter, system-ui, -apple-system, sans-serif;
  --serif: 'Playfair Display', Georgia, serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; }

.container { width: min(100% - 2.5rem, var(--max)); margin-inline: auto; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

/* —— Header —— */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(236, 233, 226, 0.9);
  backdrop-filter: blur(8px);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px; gap: 1rem;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 1.15rem; color: var(--ink); letter-spacing: -0.02em;
}
.logo-mark {
  width: 30px; height: 30px;
  display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr;
  gap: 3px; transform: rotate(45deg);
}
.logo-mark i { border-radius: 50% 50% 50% 4px; display: block; }
.logo-mark i:nth-child(1) { background: #d94f30; border-radius: 50% 50% 4px 50%; }
.logo-mark i:nth-child(2) { background: #2e6b8f; border-radius: 50% 50% 50% 4px; }
.logo-mark i:nth-child(3) { background: #4d9e63; border-radius: 50% 4px 50% 50%; }
.logo-mark i:nth-child(4) { background: #d94f30; border-radius: 4px 50% 50% 50%; }
.logo-mark i:nth-child(1) { background: #d94f30; }
.logo-mark i:nth-child(2) { background: #4d9e63; }
.logo-mark i:nth-child(3) { background: #d94f30; }
.logo-mark i:nth-child(4) { background: #2e6b8f; }
.nav-desktop { display: none; gap: 2.25rem; }
.nav-desktop a { color: var(--ink); font-size: 0.95rem; font-weight: 500; }
.nav-desktop a:hover { opacity: 0.7; }
.header-actions { display: flex; align-items: center; gap: 0.75rem; }
.nav-toggle {
  display: grid; place-items: center;
  width: 40px; height: 40px; border: none; background: none;
  font-size: 1.35rem; cursor: pointer; color: var(--ink);
}
.mobile-nav {
  display: none; flex-direction: column; padding: 0 0 1rem;
  border-top: 1px solid var(--border);
}
.mobile-nav.is-open { display: flex; }
.mobile-nav a {
  padding: 0.85rem 0; color: var(--ink); font-weight: 500;
  border-bottom: 1px solid var(--border); font-size: 0.95rem;
}
@media (min-width: 960px) {
  .nav-desktop { display: flex; }
  .nav-toggle { display: none; }
}

/* —— Buttons —— */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.45rem;
  height: 46px; padding: 0 1.4rem;
  border-radius: 999px; font: inherit; font-size: 0.9rem; font-weight: 600;
  cursor: pointer; border: 1.5px solid transparent;
  transition: transform .15s, box-shadow .15s, background .15s;
  white-space: nowrap; text-decoration: none;
}
.btn:hover { transform: translateY(-1px); }
.btn--black { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn--black:hover { background: #333; color: #fff; }
.btn--outline-w {
  background: transparent; color: var(--ink); border-color: var(--ink);
}
.btn--outline-w:hover { background: rgba(0,0,0,0.05); }
.btn--red { background: var(--red); color: #fff; border-color: var(--red); }
.btn--red:hover { background: #c4001f; color: #fff; }
.btn--white { background: #fff; color: var(--ink); border-color: #fff; }
.btn--white:hover { background: #f5f5f5; }
.btn--sm { height: 38px; padding: 0 1.15rem; font-size: 0.85rem; }
.btn--block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; }

/* —— Hero —— */
.hero {
  position: relative;
  padding: 48px 0 0;
  overflow: hidden;
  background: var(--cream);
}
.hero-copy {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  height: 32px; padding: 0 16px; border-radius: 999px;
  background: var(--cream-dark);
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--ink);
  margin-bottom: 22px;
}
.hero h1 {
  margin: 0 0 16px;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.15; font-weight: 700; letter-spacing: -0.03em;
  color: var(--ink);
}
.hero h1 .accent {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  color: var(--pink);
}
.hero-lead {
  margin: 0 auto 26px; color: var(--muted);
  font-size: 1rem; line-height: 1.65; max-width: 30rem;
}
.hero .btn-row { justify-content: center; margin-bottom: 48px; }

/* Hero visual — floating orbs + dashboard */
.hero-visual {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 0 80px;
  min-height: 460px;
}
@media (min-width: 768px) { .hero-visual { min-height: 560px; padding-bottom: 100px; } }

.orb {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
  animation: floatY 7s ease-in-out infinite;
}
.orb--blue {
  width: 110px; height: 110px; top: 0; left: -8px;
  background: radial-gradient(circle at 32% 28%, #a8c4d8, #3d6b8a 55%, #16344a);
  box-shadow: 0 14px 30px rgba(22,52,74,0.35);
  animation-delay: 0s;
}
.orb--mesh {
  width: 84px; height: 84px; top: -4px; right: 8px;
  background:
    repeating-linear-gradient(0deg, transparent 0 3px, rgba(255,255,255,0.08) 3px 4px),
    repeating-linear-gradient(90deg, transparent 0 3px, rgba(255,255,255,0.08) 3px 4px),
    radial-gradient(circle at 30% 25%, #4a4a4a, #141414 70%);
  box-shadow: 0 12px 26px rgba(0,0,0,0.4);
  animation-delay: 1s;
}
.orb--grey {
  width: 76px; height: 76px; top: 34%; left: -22px;
  background: radial-gradient(circle at 30% 28%, #c8c4ba, #8a867c 60%, #55524a);
  box-shadow: 0 10px 24px rgba(0,0,0,0.22);
  animation-delay: 0.6s;
}
.orb--white {
  width: 92px; height: 92px; top: 26%; right: -14px;
  background: radial-gradient(circle at 35% 28%, #ffffff, #d6d2c8 55%, #9a968c);
  box-shadow: 0 12px 26px rgba(0,0,0,0.18);
  animation-delay: 1.4s;
}
.orb--beige {
  width: 88px; height: 88px; bottom: 12%; left: -4px;
  background: radial-gradient(circle at 30% 25%, #f2ead9, #c9b89a 55%, #8f7c5e);
  box-shadow: 0 14px 28px rgba(80,65,40,0.3);
  animation-delay: 2s;
}
.orb--pink {
  width: 130px; height: 130px; bottom: 4%; right: 0;
  background: radial-gradient(circle at 30% 25%, #ffd0dc, #f0627e 50%, #b91c42);
  box-shadow: 0 18px 36px rgba(185,28,66,0.35);
  animation-delay: 0.4s;
}
@media (max-width: 767px) {
  .orb--blue { width: 64px; height: 64px; }
  .orb--mesh { width: 52px; height: 52px; }
  .orb--grey { width: 48px; height: 48px; left: -6px; }
  .orb--white { width: 56px; height: 56px; right: -4px; }
  .orb--beige { width: 56px; height: 56px; }
  .orb--pink { width: 76px; height: 76px; }
}
@keyframes floatY {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(3deg); }
}

/* "Try it now" pill chips attached to orbs */
.try-chip {
  position: absolute; z-index: 3;
  display: inline-flex; align-items: center; gap: 6px;
  height: 36px; padding: 0 14px 0 16px; border-radius: 999px;
  font-size: 12px; font-weight: 600;
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
  animation: floatY 7s ease-in-out infinite;
}
.try-chip--dark { background: var(--ink); color: #fff; }
.try-chip--red { background: var(--red); color: #fff; }
.try-chip--white { background: #fff; color: var(--ink); border: 1px solid var(--border); }
.try-chip .arr { font-weight: 800; }
.try-chip--l1 { top: 30%; left: 34px; animation-delay: 0.6s; }
.try-chip--r1 { top: 22%; right: 42px; animation-delay: 1.4s; }
.try-chip--l2 { bottom: 16%; left: 40px; animation-delay: 2s; }
.try-chip--r2 { bottom: 14%; right: 36px; animation-delay: 0.4s; }
@media (max-width: 767px) {
  .try-chip { height: 30px; padding: 0 10px; font-size: 10px; }
  .try-chip--l1 { left: 8px; }
  .try-chip--r1 { right: 8px; }
  .try-chip--l2 { left: 12px; bottom: 10%; }
  .try-chip--r2 { right: 12px; bottom: 8%; }
}

/* Dashboard mockup */
.dash {
  position: relative; z-index: 2;
  max-width: 560px; margin: 0 auto;
  background: var(--dark);
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid #2a2a2a;
  min-height: 300px;
  display: flex;
}
.dash__sidebar {
  width: 150px; flex-shrink: 0;
  background: #0f0f0f;
  padding: 18px 14px;
  display: flex; flex-direction: column; gap: 4px;
}
.dash__logo {
  display: flex; align-items: center; gap: 8px;
  padding: 0 4px 18px;
  color: #fff; font-size: 12px; font-weight: 700;
}
.dash__logo .logo-mark { width: 18px; height: 18px; }
.dash__nav a {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 10px; border-radius: 8px;
  color: #9a9a9a; font-size: 11px; font-weight: 500;
}
.dash__nav a.active, .dash__nav a:hover { background: #242424; color: #fff; }
.dash__nav .dot { width: 6px; height: 6px; border-radius: 50%; background: #555; flex-shrink: 0; }
.dash__nav a.active .dot { background: var(--red); }
.dash__main {
  flex: 1; padding: 22px 20px;
  color: #fff;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  text-align: center;
}
.dash__main h3 { margin: 0 0 6px; font-size: 1.15rem; font-weight: 700; }
.dash__main p { margin: 0; font-size: 12px; color: #9a9a9a; }
@media (max-width: 480px) {
  .dash__sidebar { width: 110px; }
  .dash__nav a { font-size: 10px; padding: 6px 8px; }
}

/* —— Sections below (keep structure, restyled to cream) —— */
.section { padding: 72px 0; }
.section--soft { background: var(--cream-dark); }
.section--white { background: #fff; }
.kicker {
  margin: 0 0 8px; font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--red);
}
.h2 {
  margin: 0 0 10px; font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800; letter-spacing: -0.025em; color: var(--ink);
}
.lead { margin: 0 0 36px; color: var(--muted); font-size: 1rem; }
.center { text-align: center; }
.center .lead { margin-left: auto; margin-right: auto; max-width: 32rem; }

/* Advisor */
.advisor { padding: 24px 0 64px; background: var(--cream); }
.advisor-card {
  display: grid; background: #fff;
  border: 1px solid var(--border); border-radius: 20px; overflow: hidden;
  box-shadow: var(--shadow);
}
@media (min-width: 900px) { .advisor-card { grid-template-columns: 0.95fr 1.15fr; } }
.advisor-left { padding: 40px 36px; }
.advisor-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--red); color: #fff;
  display: grid; place-items: center; margin-bottom: 18px;
}
.advisor-left h2 { margin: 0 0 10px; font-size: 1.5rem; font-weight: 800; letter-spacing: -0.02em; }
.advisor-left > p { margin: 0 0 22px; color: var(--muted); font-size: 0.95rem; line-height: 1.6; }
.checks { list-style: none; padding: 0; margin: 0; }
.checks li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 6px 0; font-size: 0.9375rem; font-weight: 500; color: #333;
}
.checks svg { flex-shrink: 0; margin-top: 2px; }
.chat-box {
  background: var(--cream); border-left: 1px solid var(--border);
  display: flex; flex-direction: column; min-height: 380px;
}
@media (max-width: 899px) { .chat-box { border-left: 0; border-top: 1px solid var(--border); } }
.chat-thread {
  flex: 1; padding: 28px 24px; overflow-y: auto;
  display: flex; flex-direction: column; gap: 16px; max-height: 340px;
}
.bubble-wrap { display: flex; flex-direction: column; gap: 6px; max-width: 88%; }
.bubble-wrap--user { align-self: flex-end; align-items: flex-end; }
.bubble-wrap--ai { align-self: flex-start; }
.bubble-label { font-size: 11px; font-weight: 600; color: var(--muted); padding: 0 4px; }
.bubble { padding: 12px 16px; border-radius: 16px; font-size: 0.9rem; line-height: 1.5; }
.bubble--user { background: var(--red); color: #fff; border-bottom-right-radius: 4px; }
.bubble--ai { background: #fff; color: var(--ink); border: 1px solid var(--border); border-bottom-left-radius: 4px; }
.chat-input {
  display: flex; gap: 10px; padding: 16px 20px;
  border-top: 1px solid var(--border); background: #fff;
}
.chat-input input {
  flex: 1; height: 46px; border: 1px solid var(--border);
  border-radius: 999px; padding: 0 18px; font: inherit; font-size: 0.9rem;
  background: var(--cream);
}
.chat-input input:focus { outline: none; border-color: var(--red); background: #fff; }
.chat-send {
  width: 46px; height: 46px; border-radius: 50%; border: none;
  background: var(--red); color: #fff; cursor: pointer;
  display: grid; place-items: center; flex-shrink: 0;
}
.chat-send:hover { background: #c4001f; }

/* Integrations */
.integ-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
@media (min-width: 640px) { .integ-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 980px) { .integ-grid { grid-template-columns: repeat(8, 1fr); gap: 12px; } }
.integ {
  background: #fff; border: 1px solid var(--border); border-radius: 14px;
  padding: 18px 10px 14px; text-align: center;
}
.integ .ring {
  width: 44px; height: 44px; margin: 0 auto 10px;
  border: 1.5px solid var(--red); border-radius: 12px;
  display: grid; place-items: center; color: var(--red);
}
.integ span { display: block; font-size: 11px; font-weight: 600; color: #4b5563; }

/* Examples */
.ex-grid {
  display: grid; gap: 16px;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
}
.ex {
  background: #fff; border-radius: 16px; overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow);
  transition: transform .2s; position: relative;
}
.ex:hover { transform: translateY(-4px); }
.ex__photo { height: 220px; background-size: cover; background-position: center; position: relative; }
.ex__photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(transparent 50%, rgba(0,0,0,0.4));
}
.ex__name {
  position: absolute; left: 14px; bottom: 14px; z-index: 1;
  color: #fff; font-weight: 700; font-size: 1rem;
}
.ex__body { padding: 14px; }
.ex__body p { margin: 0; font-size: 13px; color: var(--muted); }
.ex__view {
  position: absolute; left: 50%; bottom: 58px; transform: translateX(-50%);
  z-index: 2; opacity: 0; pointer-events: none;
  height: 34px; padding: 0 16px; border: none; border-radius: 999px;
  background: var(--red); color: #fff; font: inherit; font-size: 12px; font-weight: 600;
  cursor: pointer; transition: opacity .2s;
}
.ex:hover .ex__view { opacity: 1; pointer-events: auto; }
.more-link {
  display: inline-block; margin-top: 28px; font-weight: 600; font-size: 0.95rem; color: var(--red);
}

/* Value bar */
.value { background: var(--ink); color: #fff; padding: 48px 0; }
.value-grid { display: grid; gap: 28px; }
@media (min-width: 768px) { .value-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; } }
.value-item .ico { width: 40px; height: 40px; margin-bottom: 14px; color: #fda4af; }
.value-item h3 { margin: 0 0 6px; font-size: 1rem; font-weight: 700; }
.value-item p { margin: 0; font-size: 0.875rem; color: #9ca3af; }

/* Final CTA */
.final { padding: 56px 0 72px; background: var(--cream); }
.final-card {
  background: var(--red); color: #fff; border-radius: 20px;
  padding: 44px;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 24px;
}
.final-card h2 { margin: 0 0 8px; font-size: clamp(1.4rem, 2.5vw, 1.85rem); font-weight: 800; }
.final-card p { margin: 0; opacity: 0.92; font-size: 0.95rem; max-width: 28rem; }
.final-card .btn-row { flex-shrink: 0; }

/* Footer */
.site-footer {
  background: var(--ink); color: #9ca3af; padding: 48px 0 28px; font-size: 0.875rem;
}
.site-footer a { color: #e5e7eb; }
.site-footer__grid { display: grid; gap: 32px; margin-bottom: 32px; }
@media (min-width: 768px) { .site-footer__grid { grid-template-columns: 2fr 1fr 1fr; } }
.site-footer h3 { color: #fff; font-size: 0.875rem; margin: 0 0 14px; font-weight: 700; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 8px; }
.footer-bottom { border-top: 1px solid #2a2a2a; padding-top: 20px; font-size: 0.8rem; color: #6b7280; }

/* Inner pages */
.page-hero { padding: 48px 0 24px; text-align: center; background: var(--cream); }
.page-hero h1 { font-size: clamp(1.75rem, 3.5vw, 2.25rem); margin: 0 0 10px; font-weight: 800; }
.muted { color: var(--muted); }
.card {
  background: #fff; border: 1px solid var(--border); border-radius: 16px;
  padding: 24px; box-shadow: var(--shadow);
}
.grid-3 { display: grid; gap: 16px; }
@media (min-width: 768px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
.price { font-size: 2rem; font-weight: 800; margin: 8px 0; }
.price span { font-size: 0.95rem; font-weight: 500; color: var(--muted); }
.list-check { list-style: none; padding: 0; margin: 16px 0; }
.list-check li { padding-left: 1.4rem; position: relative; margin-bottom: 8px; font-size: 0.9rem; }
.list-check li::before { content: '✓'; position: absolute; left: 0; color: var(--red); font-weight: 700; }
.card--featured { border: 2px solid var(--red); }
.steps { counter-reset: s; }
.step { padding-left: 3rem; position: relative; margin-bottom: 1.5rem; }
.step::before {
  counter-increment: s; content: counter(s);
  position: absolute; left: 0; top: 0; width: 2rem; height: 2rem; border-radius: 50%;
  background: var(--ink); color: #fff; display: grid; place-items: center; font-weight: 700; font-size: 0.85rem;
}
.step h3 { margin: 0 0 0.35rem; font-size: 1.05rem; }
.step p { margin: 0; color: var(--muted); font-size: 0.92rem; }
.text-center { text-align: center; }

/* =========================================================
   RED REFERENCE LAYOUT — final visual layer
   ========================================================= */
:root {
  --cream: #fffdfd;
  --cream-dark: #fff8f9;
  --ink: #101522;
  --muted: #626774;
  --red: #e4002b;
  --red-dark: #c90026;
  --red-pale: #fff0f3;
  --max: 1240px;
}

body {
  background:
    radial-gradient(circle at 99% 29%, rgba(255, 36, 78, .17), transparent 24rem),
    #fffdfd;
}

.container { width: min(calc(100% - 3rem), var(--max)); }

/* floating white navigation card */
#site-header { padding: 14px 18px 0; }
.site-header {
  position: sticky;
  top: 10px;
  width: min(1240px, calc(100% - 0px));
  margin: 0 auto;
  border: 1px solid rgba(17,24,39,.05);
  border-radius: 13px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 7px 24px rgba(17,24,39,.08);
}
.site-header__inner { height: 58px; padding-inline: 22px; }
.logo { font-size: 1rem; }
.logo-mark {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  background: var(--red);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: .95rem;
  transform: none;
}
.nav-desktop { gap: 2.3rem; }
.nav-desktop a { font-size: .79rem; font-weight: 600; }
.btn--header { height: 36px; padding-inline: 1.05rem; font-size: .75rem; border-radius: 7px; }
.mobile-nav { padding-inline: 22px; }

.btn--red {
  background: linear-gradient(135deg, #d90028, #f20c3c);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 7px 17px rgba(222,0,43,.23);
}
.btn--outline-red {
  background: #fff;
  border-color: var(--red);
  color: var(--red);
}
.btn--outline-red:hover { color: var(--red-dark); background: var(--red-pale); }

/* hero exactly follows the supplied two-column composition */
.hero {
  padding: 68px 0 42px;
  background: transparent;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  width: 520px;
  height: 520px;
  right: -170px;
  top: 30px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 53% 45%, rgba(255,255,255,.98) 0 12%, rgba(255,196,207,.75) 32%, rgba(242,8,55,.78) 61%, rgba(208,0,38,.2) 71%, transparent 72%);
  filter: blur(4px);
  opacity: .9;
}
.hero__grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  align-items: center;
  gap: 70px;
  position: relative;
  z-index: 1;
}
.hero-copy {
  text-align: left;
  max-width: none;
  margin: 0;
  padding: 0 0 0 28px;
}
.hero-badge {
  background: #fff;
  color: var(--red);
  box-shadow: 0 3px 12px rgba(17,24,39,.08);
  border: 1px solid #ffe0e7;
  font-size: 10px;
  height: 28px;
  margin-bottom: 23px;
}
.hero h1 {
  font-family: var(--font);
  font-style: normal;
  margin: 0 0 20px;
  max-width: 455px;
  color: var(--ink);
  font-size: clamp(2.7rem, 4.65vw, 4.3rem);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -.052em;
}
.hero h1 .accent {
  font-family: inherit;
  font-style: normal;
  font-weight: inherit;
  color: var(--red);
}
.hero-lead {
  margin: 0 0 26px;
  max-width: 440px;
  color: #585d68;
  font-size: .9rem;
  line-height: 1.68;
}
.hero .btn-row { justify-content: flex-start; margin: 0; }
.hero .btn { height: 48px; border-radius: 9px; font-size: .81rem; }
.trust {
  display: flex;
  justify-content: flex-start;
  gap: 26px;
  margin: 28px 0 0;
  padding: 0;
}
.trust li {
  display: flex;
  gap: 9px;
  align-items: center;
  color: #454a55;
  font-size: .7rem;
  line-height: 1.25;
}
.trust-icon {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: var(--red);
  font-size: 1.35rem;
}

.hero-visual {
  min-height: 390px;
  padding: 8px 52px 42px 0;
  margin: 0;
  max-width: none;
}
.website-mock {
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid #e1e2e6;
  background: #fff;
  box-shadow: 0 16px 35px rgba(17,24,39,.13);
}
.mock-nav {
  height: 48px;
  padding: 0 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 6px;
  color: #383b43;
}
.mock-nav strong { font-size: 9px; }
.mock-nav b {
  padding: 5px 9px;
  border-radius: 999px;
  color: #fff;
  background: #111;
  font-size: 6px;
}
.mock-a { color: #bd8b29; font-size: 14px; }
.mock-photo {
  height: 245px;
  display: flex;
  align-items: center;
  padding: 28px;
  background:
    linear-gradient(90deg, rgba(252,248,242,.97) 0 37%, rgba(252,248,242,.35) 61%, transparent),
    url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?auto=format&fit=crop&w=1000&q=80') center/cover;
}
.mock-copy h3 {
  margin: 0 0 10px;
  font-size: 1.45rem;
  line-height: 1.12;
  letter-spacing: -.04em;
}
.mock-copy p { margin: 0 0 14px; font-size: 8px; line-height: 1.5; }
.mock-copy span {
  display: inline-block;
  padding: 7px 11px;
  border-radius: 4px;
  background: #111;
  color: #fff;
  font-size: 7px;
}
.module-stack {
  position: absolute;
  right: 0;
  top: 60px;
  z-index: 3;
  width: 155px;
  padding: 9px;
  border: 1px solid #ebebef;
  border-radius: 10px;
  background: rgba(255,255,255,.97);
  box-shadow: 0 12px 27px rgba(17,24,39,.12);
}
.module-stack > div {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  padding: 9px 6px;
  border-bottom: 1px solid #f1f1f3;
}
.module-stack > div:last-child { border-bottom: 0; }
.module-stack i {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: var(--red-pale);
  color: var(--red);
  font-size: 12px;
  font-style: normal;
}
.module-stack p { margin: 0; }
.module-stack b { display: block; font-size: 8px; line-height: 1.3; }
.module-stack small { display: block; margin-top: 2px; color: #777b84; font-size: 6.5px; line-height: 1.35; }
.mock-stats {
  position: absolute;
  left: 0;
  right: 52px;
  bottom: 0;
  min-height: 70px;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  align-items: center;
  padding: 10px 15px;
  border: 1px solid #dedfe3;
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 9px 22px rgba(17,24,39,.09);
}
.mock-stats > div {
  display: grid;
  grid-template-columns: 23px auto;
  grid-template-rows: auto auto;
  text-align: left;
  align-items: center;
}
.mock-stats i { grid-row: 1/3; font-style: normal; font-size: 19px; color: #1d232e; }
.mock-stats b { font-size: 10px; line-height: 1.1; }
.mock-stats small { color: #777b84; font-size: 6.5px; }

/* chat section: close to reference, with red light at the right edge */
.advisor {
  padding: 18px 0 46px;
  background:
    radial-gradient(circle at 100% 25%, rgba(255,20,65,.42), transparent 19rem),
    transparent;
}
.advisor-card {
  grid-template-columns: .88fr 1.12fr;
  min-height: 315px;
  border-radius: 12px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 9px 25px rgba(17,24,39,.07);
}
.advisor-left { padding: 44px 66px; }
.advisor-icon {
  float: left;
  width: 34px;
  height: 34px;
  margin: 0 14px 12px 0;
  border-radius: 50%;
}
.advisor-left h2 { padding-top: 5px; font-size: 1.25rem; }
.advisor-left > p { clear: both; font-size: .78rem; max-width: 280px; }
.checks li { padding: 4px 0; font-size: .76rem; }
.checks li svg { width: 14px; height: 14px; }
.chat-box {
  min-height: 315px;
  margin: 18px;
  border: 1px solid #ececf0;
  border-radius: 10px;
  background: rgba(255,255,255,.92);
  overflow: hidden;
}
.chat-thread { padding: 20px 22px; gap: 12px; }
.bubble { padding: 10px 13px; border-radius: 8px; font-size: .73rem; }
.bubble--user {
  color: #444852;
  background: #f1f1f3;
  border-bottom-right-radius: 8px;
}
.bubble--ai {
  color: #323640;
  background: var(--red-pale);
  border: 0;
  border-bottom-left-radius: 8px;
}
.chat-input { padding: 12px 16px; }
.chat-input input { height: 38px; font-size: .7rem; background: #fff; border-radius: 6px; }
.chat-send { width: 38px; height: 38px; border-radius: 7px; }

/* compact integrations and examples, matching the one-page reference */
.section { padding: 42px 0; }
.section .kicker { font-size: 8px; margin-bottom: 4px; }
.section .h2 { font-size: 1.25rem; margin-bottom: 4px; }
.section .lead { font-size: .72rem; margin-bottom: 24px; }
.integ {
  padding: 12px 6px 9px;
  border: 0;
  background: transparent;
}
.integ .ring {
  width: 56px;
  height: 48px;
  margin-bottom: 6px;
  border: 0;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 3px 12px rgba(17,24,39,.08);
}
.integ span { font-size: 9px; color: #232731; }
.section--soft { background: #fffdfd; }
.ex-grid { grid-template-columns: repeat(5,1fr); gap: 14px; }
.ex { border-radius: 6px; }
.ex__photo { height: 205px; }
.ex__body { padding: 9px 10px; min-height: 45px; }
.ex__body p { font-size: 9px; }
.ex__name { left: 10px; bottom: 10px; font-size: .82rem; }
.ex__view {
  opacity: 1;
  pointer-events: auto;
  bottom: 33px;
  height: 27px;
  background: #fff;
  color: var(--red);
  font-size: 8px;
  box-shadow: 0 2px 9px rgba(17,24,39,.12);
}
.more-link { margin-top: 18px; font-size: .74rem; }
.value {
  width: min(calc(100% - 3rem), var(--max));
  margin: 0 auto;
  border-radius: 10px;
  padding: 27px 35px;
  background: #071021;
}
.value-grid { gap: 14px; }
.value-item {
  display: grid;
  grid-template-columns: 38px auto;
  column-gap: 10px;
  align-items: center;
  padding-right: 12px;
  border-right: 1px solid rgba(255,255,255,.12);
}
.value-item:last-child { border-right: 0; }
.value-item .ico { grid-row: 1/3; width: 34px; height: 34px; margin: 0; }
.value-item h3 { font-size: .72rem; margin: 0; }
.value-item p { font-size: .59rem; line-height: 1.4; }
.final { padding: 25px 0 42px; background: transparent; }
.final-card {
  min-height: 130px;
  padding: 28px 48px;
  border-radius: 10px;
  background:
    radial-gradient(ellipse at 0 100%, rgba(70,0,15,.35), transparent 55%),
    linear-gradient(105deg, #a90021, #fb1642);
}
.final-card h2 { font-size: 1.35rem; }
.final-card p { font-size: .7rem; }
.final-card .btn { height: 42px; border-radius: 8px; font-size: .72rem; }

#site-footer { display: none; }

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-copy { padding: 0; text-align: center; }
  .hero h1, .hero-lead { margin-left: auto; margin-right: auto; }
  .hero .btn-row, .trust { justify-content: center; }
  .hero-visual { width: min(100%, 650px); margin: 0 auto; }
  .advisor-card { grid-template-columns: 1fr; }
  .advisor-left { padding: 30px; }
  .ex-grid { grid-template-columns: repeat(2,1fr); }
  .value { border-radius: 0; width: 100%; }
  .value-item { border-right: 0; }
}

@media (max-width: 560px) {
  #site-header { padding: 8px 8px 0; }
  .site-header__inner { padding-inline: 12px; }
  .btn--header { display: none; }
  .container { width: min(calc(100% - 1.5rem), var(--max)); }
  .hero { padding-top: 44px; }
  .hero h1 { font-size: 2.55rem; }
  .hero-lead { font-size: .83rem; }
  .trust { gap: 13px; }
  .hero-visual { min-height: 320px; padding: 0 10px 48px 0; }
  .mock-photo { height: 180px; padding: 18px; }
  .mock-copy h3 { font-size: 1rem; }
  .module-stack { display: none; }
  .mock-stats { right: 10px; }
  .advisor-left { padding: 26px 22px; }
  .chat-box { margin: 8px; }
  .integ-grid { grid-template-columns: repeat(4,1fr); gap: 4px; }
  .integ .ring { width: 44px; height: 42px; }
  .ex-grid { grid-template-columns: repeat(2,1fr); }
  .ex__photo { height: 160px; }
  .final-card { padding: 28px 24px; }
}
