:root {
  color-scheme: light;
  --cream: #f4efe5;
  --paper: #fffaf0;
  --paper-strong: #fffdf8;
  --forest: #113c31;
  --forest-deep: #0b2921;
  --ink: #15221d;
  --muted: #69736e;
  --line: #d8d0c2;
  --coral: #f06449;
  --coral-dark: #d84d34;
  --lavender: #bbb0df;
  --shadow: 0 24px 70px rgba(17, 42, 34, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

img {
  max-width: 100%;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(216, 208, 194, 0.85);
  background: rgba(244, 239, 229, 0.94);
  backdrop-filter: blur(16px);
}

.nav-inner {
  min-height: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}

.brand {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--forest);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: var(--forest);
  color: var(--paper);
  font-size: 17px;
}

nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

nav a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

nav a:hover {
  color: var(--forest);
}

.nav-inner > .button {
  justify-self: end;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 19px;
  border: 1px solid transparent;
  border-radius: 9px;
  font-weight: 850;
  text-decoration: none;
}

.button-small {
  min-height: 40px;
  padding-inline: 15px;
  font-size: 13px;
}

.button-primary {
  background: var(--coral);
  color: #fff;
}

.button-primary:hover {
  background: var(--coral-dark);
}

.button-dark {
  background: var(--forest);
  color: #fff;
}

.button-dark:hover {
  background: var(--forest-deep);
}

.button-outline {
  border-color: var(--line);
  background: transparent;
  color: var(--forest);
}

.hero {
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(400px, 0.72fr);
  gap: clamp(50px, 8vw, 110px);
  align-items: center;
  padding-block: 74px 82px;
}

.eyebrow {
  margin: 0 0 15px;
  color: var(--coral-dark);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.live-dot {
  width: 8px;
  height: 8px;
  display: inline-block;
  margin-right: 7px;
  border-radius: 50%;
  background: #29a87a;
  box-shadow: 0 0 0 5px rgba(41, 168, 122, 0.12);
}

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

h1 {
  max-width: 690px;
  margin-bottom: 24px;
  color: var(--forest);
  font-size: clamp(54px, 7vw, 92px);
  line-height: 0.91;
  letter-spacing: -0.07em;
}

.hero-lede {
  max-width: 650px;
  margin-bottom: 16px;
  color: #293c35;
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.42;
  letter-spacing: -0.02em;
}

.hero-support {
  max-width: 620px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.text-link {
  color: var(--forest);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.text-link span {
  margin-left: 5px;
}

.hero-footnote {
  margin-top: 15px;
  color: var(--muted);
  font-size: 12px;
}

.hero-creative {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: var(--paper-strong);
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}

.hero-creative::before {
  content: "";
  position: absolute;
  inset: -18px auto auto -18px;
  width: 78px;
  height: 78px;
  z-index: -1;
  border-radius: 50%;
  background: var(--lavender);
}

.hero-creative img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.creative-status,
.creative-ready {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  background: var(--paper-strong);
}

.creative-status {
  color: var(--coral-dark);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.creative-status strong {
  color: var(--muted);
}

.creative-ready span,
.creative-ready strong {
  display: block;
}

.creative-ready > div > span {
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
}

.creative-ready > div > strong {
  margin-top: 2px;
  color: var(--forest);
  font-size: 14px;
}

.safe-badge {
  width: fit-content;
  padding: 6px 8px;
  border-radius: 999px;
  background: #dff1e8;
  color: #176148;
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
}

.social-engagement {
  padding: 0 16px 15px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.engagement-summary {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 0 10px;
  color: var(--muted);
  font-size: 10px;
}

.engagement-summary strong {
  color: var(--forest);
  font-size: 11px;
}

.social-comment {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 9px;
  align-items: start;
  padding: 9px 0;
  border-top: 1px solid #eef0ed;
}

.comment-avatar {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--forest-deep);
  font-size: 9px;
  font-weight: 900;
}

.avatar-coral {
  background: #ffd3c7;
}

.avatar-lilac {
  background: #e5dafa;
}

.avatar-mint {
  background: #ccebdc;
}

.social-comment p {
  margin: 0;
  color: #263a33;
  font-size: 11px;
  line-height: 1.35;
}

.social-comment p strong {
  margin-right: 3px;
  color: var(--forest);
}

.social-comment small {
  display: block;
  margin-top: 4px;
  color: #8a938f;
  font-size: 9px;
  font-weight: 650;
}

.social-comment small span {
  color: var(--coral-dark);
  font-weight: 850;
}

.outcome-strip {
  border-block: 1px solid var(--line);
  background: rgba(255, 250, 240, 0.65);
}

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

.outcome-inner strong {
  color: var(--forest);
}

.outcome-inner span {
  color: var(--muted);
  font-size: 13px;
}

.outcome-inner span::before {
  content: "✓";
  margin-right: 7px;
  color: var(--coral);
  font-weight: 900;
}

.section {
  padding-block: 110px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 48px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.safety-copy h2,
.final-cta h2 {
  margin-bottom: 18px;
  color: var(--forest);
  font-size: clamp(38px, 5vw, 62px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.section-heading > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.product-demo {
  display: grid;
  grid-template-columns: 240px minmax(350px, 0.9fr) minmax(300px, 0.82fr);
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #e8e1d4;
  box-shadow: 0 30px 80px rgba(17, 42, 34, 0.1);
}

.demo-list,
.demo-copy {
  min-width: 0;
}

.demo-list-heading,
.demo-topline,
.copy-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.demo-list-heading {
  padding: 5px 4px 13px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.demo-list-heading strong {
  color: var(--forest);
}

#campaignTabs {
  display: grid;
  gap: 8px;
}

.campaign-tab {
  width: 100%;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 8px;
  border: 1px solid transparent;
  border-radius: 10px;
  background: transparent;
  color: var(--ink);
  text-align: left;
}

.campaign-tab:hover,
.campaign-tab.selected {
  border-color: var(--line);
  background: var(--paper-strong);
}

.campaign-tab img {
  width: 58px;
  height: 72px;
  display: block;
  border-radius: 7px;
  object-fit: cover;
}

.campaign-tab span,
.campaign-tab small,
.campaign-tab strong,
.campaign-tab em {
  display: block;
  min-width: 0;
}

.campaign-tab small {
  overflow: hidden;
  color: var(--coral-dark);
  font-size: 9px;
  font-weight: 800;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.campaign-tab strong {
  margin-top: 5px;
  overflow: hidden;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.campaign-tab em {
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
  font-style: normal;
}

.demo-visual {
  overflow: hidden;
  border-radius: 12px;
  background: var(--paper-strong);
}

.demo-topline {
  min-height: 42px;
  padding: 0 12px;
  color: var(--coral-dark);
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
}

.demo-topline strong {
  color: var(--muted);
}

.demo-visual img {
  width: 100%;
  height: 600px;
  display: block;
  object-fit: contain;
  background: #f8efd9;
}

.demo-copy {
  display: flex;
  flex-direction: column;
  padding: 20px;
  border-radius: 12px;
  background: var(--paper-strong);
}

.copy-topline {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.demo-copy h3 {
  margin: 16px 0;
  color: var(--forest);
  font-size: 26px;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.caption-label {
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

#demoCaption {
  margin: 12px 0 18px;
  color: #34423c;
  font-size: 13px;
  line-height: 1.58;
  white-space: pre-wrap;
}

.demo-copy details {
  margin-bottom: 18px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.demo-copy summary {
  padding: 13px 0;
  color: var(--forest);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}

.demo-copy details p {
  margin: -2px 0 14px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.demo-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: auto;
}

.demo-actions .button {
  min-height: 42px;
  padding-inline: 10px;
  font-size: 11px;
}

.action-status {
  min-height: 17px;
  margin: 8px 0 0;
  color: #1b6d51;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
}

.process-section {
  background: var(--paper-strong);
}

.split-heading {
  max-width: none;
  display: grid;
  grid-template-columns: 1fr 0.62fr;
  align-items: end;
  gap: 80px;
}

.split-heading > p {
  margin-bottom: 4px !important;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.steps article {
  padding: 32px 38px 0 0;
}

.steps article + article {
  padding-left: 38px;
  border-left: 1px solid var(--line);
}

.step-number {
  color: var(--coral);
  font-size: 12px;
  font-weight: 900;
}

.steps h3 {
  margin: 30px 0 10px;
  color: var(--forest);
  font-size: 21px;
  letter-spacing: -0.025em;
}

.steps p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.campaign-gallery .section-heading {
  max-width: 850px;
}

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

.gallery-grid article {
  overflow: hidden;
  border-radius: 14px;
  background: var(--paper-strong);
  box-shadow: 0 18px 45px rgba(17, 42, 34, 0.08);
}

.gallery-grid img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.gallery-grid article > div {
  padding: 16px;
}

.gallery-grid span {
  color: var(--coral-dark);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.gallery-grid h3 {
  margin: 6px 0 0;
  color: var(--forest);
  font-size: 18px;
}

.safety-section {
  background: var(--forest-deep);
}

.safety-grid {
  display: grid;
  grid-template-columns: 0.9fr 0.7fr;
  gap: clamp(50px, 10vw, 130px);
  align-items: center;
}

.eyebrow.light {
  color: #ff967f;
}

.safety-copy h2 {
  max-width: 650px;
  color: var(--paper);
}

.safety-copy > p:not(.eyebrow) {
  max-width: 620px;
  color: #b9c9c3;
  font-size: 16px;
  line-height: 1.65;
}

.safety-copy ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 28px;
  margin: 30px 0 0;
  padding: 0;
  color: #e8f0ed;
  font-size: 13px;
  list-style: none;
}

.safety-copy li::before {
  content: "✓";
  margin-right: 8px;
  color: #72d7ad;
  font-weight: 900;
}

.safety-card {
  padding: 24px;
  border-radius: 15px;
  background: var(--paper-strong);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
}

.safety-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
}

.safety-card-top strong {
  padding: 6px 9px;
  border-radius: 999px;
  background: #dff1e8;
  color: #176148;
}

.safety-card h3 {
  margin: 18px 0 16px;
  color: var(--forest);
  font-size: 23px;
}

.check-row,
.blocked-row {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 10px;
  align-items: start;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.check-row span,
.blocked-row span {
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #dff1e8;
  color: #176148;
  font-size: 11px;
  font-weight: 900;
}

.check-row p,
.blocked-row p {
  margin: 2px 0 0;
  color: #48544f;
  font-size: 12px;
  line-height: 1.45;
}

.blocked-row span {
  background: #ffe2da;
  color: #ad3e2a;
}

.final-cta {
  display: grid;
  grid-template-columns: 0.9fr 0.7fr;
  gap: clamp(50px, 10vw, 130px);
  align-items: center;
  padding-block: 110px;
}

.final-cta h2 {
  margin-bottom: 14px;
}

.final-cta > div > p:last-child {
  max-width: 590px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.contact-card {
  display: grid;
  gap: 10px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper-strong);
  box-shadow: 0 20px 55px rgba(17, 42, 34, 0.08);
}

.contact-card > span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-card a {
  color: var(--forest);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 850;
  letter-spacing: -0.04em;
  text-decoration-color: var(--coral);
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
}

.contact-card a:hover {
  color: var(--coral-dark);
}

.contact-card p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.site-footer {
  border-top: 1px solid var(--line);
}

.footer-inner {
  min-height: 110px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 12px;
}

.footer-inner p {
  margin: 0;
}

.footer-inner > span {
  justify-self: end;
}

@media (max-width: 1000px) {
  .hero {
    grid-template-columns: 1fr 0.72fr;
    gap: 46px;
  }

  .product-demo {
    grid-template-columns: 180px minmax(320px, 1fr);
  }

  .demo-copy {
    grid-column: 2;
  }

  .demo-visual img {
    height: auto;
    max-height: 660px;
  }

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

@media (max-width: 760px) {
  .shell {
    width: min(100% - 28px, 620px);
  }

  .nav-inner {
    grid-template-columns: 1fr auto;
  }

  nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-block: 58px 70px;
  }

  h1 {
    font-size: clamp(52px, 15vw, 76px);
  }

  .hero-creative {
    width: min(480px, 94%);
    margin-inline: auto;
    transform: none;
  }

  .outcome-inner {
    align-items: start;
    flex-direction: column;
    gap: 10px;
    padding-block: 22px;
  }

  .section {
    padding-block: 78px;
  }

  .product-demo {
    grid-template-columns: 1fr;
  }

  .demo-list {
    order: 2;
  }

  #campaignTabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .campaign-tab {
    grid-template-columns: 1fr;
  }

  .campaign-tab img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .campaign-tab em {
    display: none;
  }

  .demo-visual {
    order: 1;
  }

  .demo-copy {
    grid-column: auto;
    order: 3;
  }

  .split-heading,
  .safety-grid,
  .final-cta {
    grid-template-columns: 1fr;
    gap: 38px;
  }

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

  .steps article,
  .steps article + article {
    padding: 26px 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .steps h3 {
    margin-top: 14px;
  }

  .gallery-grid {
    gap: 10px;
  }

  .gallery-grid article > div {
    padding: 11px;
  }

  .gallery-grid h3 {
    font-size: 14px;
  }

  .safety-copy ul {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-block: 28px;
    text-align: center;
  }

  .footer-inner .brand,
  .footer-inner > span {
    justify-self: center;
  }
}

@media (max-width: 500px) {
  .site-header .brand {
    font-size: 0;
  }

  .site-header .brand-mark {
    font-size: 17px;
  }

  .button-small {
    padding-inline: 12px;
    font-size: 11px;
  }

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

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

  .hero-actions .text-link {
    text-align: center;
  }

  .section-heading h2,
  .safety-copy h2,
  .final-cta h2 {
    font-size: 40px;
  }

  .product-demo {
    padding: 10px;
  }

  .campaign-tab {
    padding: 5px;
  }

  .campaign-tab small,
  .campaign-tab em {
    display: none;
  }

  .campaign-tab strong {
    font-size: 10px;
    white-space: normal;
  }

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

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

  .gallery-grid article > div {
    padding: 15px;
  }

  .gallery-grid h3 {
    font-size: 18px;
  }
}
