:root {
  --ink: #162326;
  --muted: #607175;
  --teal: #0d7c7b;
  --teal-dark: #075c60;
  --coral: #e46b58;
  --mint: #dff4ef;
  --gold: #f4c35f;
  --paper: #fbfaf6;
  --line: #dce6e3;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(22, 35, 38, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(223, 244, 239, 0.45), rgba(251, 250, 246, 0) 520px),
    var(--paper);
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(251, 250, 246, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--coral));
  font-size: 14px;
}

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

.site-nav a {
  padding: 10px 13px;
  color: var(--muted);
  font-weight: 700;
  border-radius: 8px;
}

.site-nav a:hover,
.site-nav .active {
  color: var(--teal-dark);
  background: var(--mint);
}

.site-nav .nav-cta {
  color: var(--white);
  background: var(--ink);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(8, 28, 31, 0.88) 0%, rgba(8, 28, 31, 0.7) 42%, rgba(8, 28, 31, 0.1) 78%);
}

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

.hero-content {
  position: relative;
  width: min(760px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 92px);
  padding: 92px 0;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: 13px;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.1;
}

h3 {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.2;
}

.hero-copy {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
}

.hero-actions,
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-actions {
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
}

.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  box-shadow: 0 12px 24px rgba(13, 124, 123, 0.22);
}

.button.secondary {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
}

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

.trust-row {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 800;
}

.trust-row span {
  padding-left: 16px;
  border-left: 3px solid var(--gold);
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 76px 0;
}

.intro-grid,
.split,
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.intro-grid p,
.split p,
.page-hero p {
  color: var(--muted);
  font-size: 18px;
}

.feature-strip,
.cards-grid,
.pricing-grid,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.feature-strip article,
.card,
.price-card,
.post-card,
.contact-form,
.contact-panel,
.metric-panel,
.device-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(22, 35, 38, 0.07);
}

.feature-strip article,
.card,
.price-card,
.post-card,
.contact-panel {
  padding: 26px;
}

.icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 8px;
  background: var(--mint);
  color: var(--teal-dark);
  font-size: 14px;
  font-weight: 900;
}

.metric-panel {
  display: grid;
  gap: 1px;
  overflow: hidden;
  background: var(--line);
}

.metric-panel div {
  padding: 28px;
  background: var(--white);
}

.metric-panel strong {
  display: block;
  color: var(--teal-dark);
  font-size: 40px;
  line-height: 1;
}

.metric-panel span,
.small-note {
  color: var(--muted);
}

.logo-band {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.logo-band span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 9px 16px;
  color: var(--teal-dark);
  background: var(--white);
  font-weight: 900;
}

.soft-band {
  width: 100%;
  max-width: none;
  padding-right: clamp(18px, 7vw, 92px);
  padding-left: clamp(18px, 7vw, 92px);
  background: #edf7f4;
}

.checklist-panel,
.dashboard-card,
.privacy-stack,
.compare-table,
.faq-list article,
.seo-copy,
blockquote,
.process-grid article,
.detail-grid article,
.audience-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(22, 35, 38, 0.06);
}

.checklist-panel {
  padding: 28px;
}

.checklist-panel li,
.contact-panel li {
  margin: 9px 0;
}

.process-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(4, 1fr);
  gap: 18px;
  align-items: stretch;
}

.process-grid > div {
  align-self: center;
}

.process-grid article {
  padding: 24px;
}

.process-grid article span {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--coral);
  font-weight: 900;
}

.dashboard-card {
  padding: 28px;
}

.dash-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 24px;
}

.dash-top span {
  border-radius: 999px;
  padding: 4px 10px;
  color: var(--white);
  background: var(--teal);
  font-size: 12px;
  font-weight: 900;
}

.bars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  align-items: end;
  height: 140px;
  margin-bottom: 24px;
  padding: 18px;
  border-radius: 8px;
  background: var(--paper);
}

.bars i {
  display: block;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, var(--coral), var(--teal));
}

.bars i:nth-child(1) {
  height: 52%;
}

.bars i:nth-child(2) {
  height: 78%;
}

.bars i:nth-child(3) {
  height: 42%;
}

.bars i:nth-child(4) {
  height: 64%;
}

.detail-grid,
.audience-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.detail-grid article,
.audience-grid article,
blockquote {
  padding: 28px;
}

.privacy-stack {
  display: grid;
  overflow: hidden;
  background: var(--line);
  gap: 1px;
}

.privacy-stack div {
  display: grid;
  gap: 6px;
  padding: 24px;
  background: var(--white);
}

.privacy-stack span {
  color: var(--muted);
}

.section-heading {
  grid-column: 1 / -1;
  max-width: 760px;
}

.audience-grid {
  grid-template-columns: repeat(4, 1fr);
}

.comparison {
  max-width: 980px;
}

.compare-table {
  overflow: hidden;
}

.compare-table div {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 1px;
  background: var(--line);
}

.compare-table div:first-child strong {
  color: var(--white);
  background: var(--ink);
}

.compare-table strong,
.compare-table span {
  padding: 18px;
  background: var(--white);
}

blockquote {
  margin: 0;
}

blockquote p {
  font-size: 18px;
}

cite {
  color: var(--teal-dark);
  font-style: normal;
  font-weight: 900;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(28px, 6vw, 72px);
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list article {
  padding: 22px;
}

.seo-copy {
  padding: 34px;
}

.image-feature,
.platform-strip,
.lead-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.image-feature img,
.visual-proof img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.icon-matrix,
.content-cluster {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.icon-matrix article,
.content-cluster article,
.onboarding article,
.platform-strip,
.lead-panel,
.stats-ribbon,
.mini-screens div,
.alert-stack div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(22, 35, 38, 0.07);
}

.icon-matrix article,
.content-cluster article,
.onboarding article {
  padding: 26px;
}

.line-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--coral));
  font-size: 14px;
  font-weight: 900;
}

.dark-split {
  width: 100%;
  max-width: none;
  padding-right: clamp(18px, 7vw, 92px);
  padding-left: clamp(18px, 7vw, 92px);
  color: var(--white);
  background:
    radial-gradient(circle at 15% 20%, rgba(244, 195, 95, 0.18), transparent 32%),
    linear-gradient(135deg, #13282b, #0b4f54);
}

.dark-split p {
  color: rgba(255, 255, 255, 0.78);
}

.alert-stack {
  display: grid;
  gap: 14px;
}

.alert-stack div {
  display: grid;
  gap: 8px;
  padding: 20px;
  color: var(--ink);
}

.alert-stack span {
  width: max-content;
  border-radius: 999px;
  padding: 4px 10px;
  color: var(--white);
  background: var(--coral);
  font-size: 12px;
  font-weight: 900;
}

.alert-stack div:nth-child(2) span {
  background: var(--gold);
  color: var(--ink);
}

.alert-stack div:nth-child(3) span {
  background: var(--teal);
}

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

.onboarding article strong {
  display: block;
  margin-bottom: 10px;
  color: var(--teal-dark);
  font-size: 22px;
}

.platform-strip {
  padding: 34px;
}

.platform-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.platform-list span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--teal-dark);
  background: var(--mint);
  font-weight: 900;
}

.mini-screens {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.mini-screens div {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.92)),
    linear-gradient(135deg, #dff4ef, #fff1e8);
}

.mini-screens strong {
  font-size: 20px;
}

.mini-screens span {
  color: var(--muted);
}

.stats-ribbon {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  padding: 0;
}

.stats-ribbon div {
  display: grid;
  gap: 4px;
  padding: 28px;
  border-right: 1px solid var(--line);
}

.stats-ribbon div:last-child {
  border-right: 0;
}

.stats-ribbon strong {
  color: var(--teal-dark);
  font-size: 40px;
  line-height: 1;
}

.stats-ribbon span {
  color: var(--muted);
  font-weight: 800;
}

.visual-proof {
  align-items: center;
}

.lead-panel {
  padding: 38px;
  background:
    linear-gradient(135deg, rgba(223, 244, 239, 0.92), rgba(255, 247, 239, 0.95)),
    var(--white);
}

.lead-panel h2 {
  max-width: 780px;
}

.lead-panel .button {
  justify-self: end;
}

.cta-band {
  width: 100%;
  max-width: none;
  padding: 74px clamp(18px, 7vw, 92px);
  color: var(--white);
  background: var(--ink);
}

.cta-band p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.8);
}

.page-hero {
  padding: 88px clamp(18px, 7vw, 92px) 54px;
  background: linear-gradient(135deg, #eef8f5, #fff7ef);
}

.page-hero h1 {
  color: var(--ink);
}

.cards-grid,
.blog-grid {
  grid-template-columns: repeat(3, 1fr);
}

.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-card.featured {
  border-color: var(--teal);
  box-shadow: var(--shadow);
}

.badge {
  align-self: flex-start;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--white);
  background: var(--coral);
  font-size: 12px;
  font-weight: 900;
}

.price {
  color: var(--teal-dark);
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
}

.price span {
  color: var(--muted);
  font-size: 17px;
}

ul {
  padding-left: 20px;
}

.price-card .button {
  margin-top: auto;
}

.post-card a {
  color: var(--teal-dark);
  font-weight: 900;
}

.post-meta {
  color: var(--coral);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
}

.device-panel {
  padding: 28px;
  background: linear-gradient(135deg, #e7f7f3, #fff2e8);
}

.phone-shell {
  width: min(330px, 100%);
  min-height: 520px;
  margin: auto;
  padding: 26px;
  border: 10px solid var(--ink);
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.phone-bar {
  width: 72px;
  height: 6px;
  margin: 0 auto 28px;
  border-radius: 999px;
  background: var(--line);
}

.app-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 14px 0;
  padding: 14px;
  border-radius: 8px;
  background: var(--paper);
}

.pulse {
  width: 120px;
  height: 120px;
  margin: 34px auto 0;
  border: 18px solid var(--mint);
  border-top-color: var(--coral);
  border-radius: 50%;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
  background: var(--white);
}

.policy {
  max-width: 850px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer div {
  display: flex;
  gap: 16px;
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    position: absolute;
    top: 71px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .hero {
    min-height: 680px;
  }

  .hero-media::after {
    background: linear-gradient(180deg, rgba(8, 28, 31, 0.92) 0%, rgba(8, 28, 31, 0.72) 58%, rgba(8, 28, 31, 0.2) 100%);
  }

  .hero-content {
    margin: 0 auto;
    padding-top: 70px;
  }

  .intro-grid,
  .split,
  .contact-layout,
  .feature-strip,
  .cards-grid,
  .pricing-grid,
  .blog-grid,
  .process-grid,
  .detail-grid,
  .audience-grid,
  .testimonial-grid,
  .faq-grid,
  .image-feature,
  .icon-matrix,
  .onboarding,
  .platform-strip,
  .mini-screens,
  .content-cluster,
  .stats-ribbon,
  .lead-panel {
    grid-template-columns: 1fr;
  }

  .platform-list {
    justify-content: flex-start;
  }

  .lead-panel .button {
    justify-self: start;
  }

  .compare-table div {
    grid-template-columns: 1fr;
  }

  .reverse .device-panel {
    order: 2;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .brand span:last-child {
    max-width: 190px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

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

  .section {
    padding: 52px 0;
  }
}

/* Premium home polish */
:root {
  --ink: #101a1f;
  --muted: #637379;
  --teal: #0b8d88;
  --teal-dark: #075f63;
  --coral: #ea765f;
  --mint: #e6f7f2;
  --gold: #f4bd4f;
  --paper: #f7f8f5;
  --line: #d9e2df;
  --shadow: 0 24px 70px rgba(16, 26, 31, 0.14);
}

body {
  background:
    linear-gradient(180deg, rgba(230, 247, 242, 0.82), rgba(247, 248, 245, 0) 620px),
    linear-gradient(90deg, rgba(234, 118, 95, 0.06), rgba(11, 141, 136, 0.05)),
    var(--paper);
}

.site-header {
  padding-top: 14px;
  padding-bottom: 14px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 30px rgba(16, 26, 31, 0.06);
}

.brand {
  font-size: 17px;
}

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

.site-nav .nav-cta {
  background: linear-gradient(135deg, var(--ink), #244249);
  box-shadow: 0 10px 22px rgba(16, 26, 31, 0.16);
}

.hero {
  min-height: 790px;
}

.hero-media::after {
  background:
    linear-gradient(90deg, rgba(8, 22, 26, 0.9) 0%, rgba(8, 22, 26, 0.74) 42%, rgba(8, 22, 26, 0.16) 80%),
    linear-gradient(180deg, rgba(8, 22, 26, 0.05), rgba(8, 22, 26, 0.35));
}

.hero-content {
  width: min(860px, calc(100% - 36px));
}

.hero .eyebrow,
.dark-split .eyebrow,
.cta-band .eyebrow {
  color: #ffc7b6;
}

h1 {
  font-size: clamp(46px, 6.5vw, 86px);
  max-width: 860px;
}

.hero-copy {
  max-width: 700px;
  font-size: clamp(18px, 2vw, 22px);
}

.hero-panel {
  width: min(560px, 100%);
  margin-top: 34px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(18px);
}

.hero-panel-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.hero-panel-top span {
  border-radius: 999px;
  padding: 4px 10px;
  color: var(--ink);
  background: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.hero-panel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.hero-panel-grid div {
  display: grid;
  gap: 3px;
  min-height: 82px;
  padding: 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.15);
}

.hero-panel-grid b {
  font-size: 22px;
}

.hero-panel-grid small {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
}

.section {
  width: min(1220px, calc(100% - 40px));
  padding: 88px 0;
}

.intro-grid {
  border-bottom: 1px solid var(--line);
}

.feature-strip article,
.detail-grid article,
.audience-grid article,
.icon-matrix article,
.content-cluster article,
.onboarding article,
.post-card,
.price-card,
.card {
  position: relative;
  overflow: hidden;
  border-color: rgba(16, 26, 31, 0.08);
  box-shadow: 0 20px 50px rgba(16, 26, 31, 0.08);
}

.feature-strip article::before,
.detail-grid article::before,
.audience-grid article::before,
.icon-matrix article::before,
.content-cluster article::before,
.onboarding article::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--teal), var(--coral), var(--gold));
}

.icon,
.line-icon {
  box-shadow: 0 12px 24px rgba(11, 141, 136, 0.18);
}

.logo-band {
  width: min(1220px, calc(100% - 40px));
  margin-top: -36px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 50px rgba(16, 26, 31, 0.08);
  backdrop-filter: blur(14px);
}

.metric-panel,
.dashboard-card,
.privacy-stack,
.compare-table,
.faq-list article,
.seo-copy,
blockquote,
.checklist-panel,
.platform-strip,
.lead-panel,
.stats-ribbon,
.mini-screens div,
.alert-stack div {
  border-color: rgba(16, 26, 31, 0.08);
  box-shadow: 0 22px 60px rgba(16, 26, 31, 0.09);
}

.soft-band {
  background:
    linear-gradient(135deg, rgba(230, 247, 242, 0.94), rgba(255, 248, 242, 0.92));
}

.dashboard-card {
  padding: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.98)),
    var(--white);
}

.bars {
  background:
    linear-gradient(135deg, rgba(230, 247, 242, 0.9), rgba(255, 242, 234, 0.78));
}

.image-feature {
  padding: 34px;
  border: 1px solid rgba(16, 26, 31, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.image-feature img,
.visual-proof img {
  border: 1px solid rgba(255, 255, 255, 0.74);
}

.dark-split {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.compare-table {
  border-radius: 8px;
}

.compare-table strong,
.compare-table span {
  padding: 20px 22px;
}

.stats-ribbon {
  background: var(--ink);
}

.stats-ribbon div {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.12);
}

.stats-ribbon strong {
  color: var(--gold);
}

.stats-ribbon span {
  color: rgba(255, 255, 255, 0.78);
}

.lead-panel {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(230, 247, 242, 0.88)),
    var(--white);
}

.cta-band {
  background:
    linear-gradient(135deg, rgba(16, 26, 31, 0.98), rgba(7, 95, 99, 0.98)),
    var(--ink);
}

@media (max-width: 860px) {
  .hero-panel-grid {
    grid-template-columns: 1fr;
  }

  .logo-band {
    margin-top: 0;
  }
}
