

:root {
  --ink: #133c34;
  --ink-deep: #092c28;
  --ink-soft: #1d5146;
  --cream: #f5f0e6;
  --paper: #fbf8f1;
  --white: #fffdf8;
  --lime: #d9ed71;
  --gold: #e2b64f;
  --peach: #f3a77d;
  --blue: #91c9c2;
  --sage: #abc79d;
  --line: rgba(19, 60, 52, 0.16);
  --muted: #5c6f68;
  --shadow: 0 28px 80px rgba(9, 44, 40, 0.14);
  --radius-xl: 36px;
  --radius-lg: 24px;
  --page: min(1180px, calc(100vw - 48px));
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Aptos", "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

button, a, summary { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { letter-spacing: -0.04em; line-height: 1.03; }

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 16px;
  top: 12px;
  padding: 10px 16px;
  transform: translateY(-160%);
  border-radius: 8px;
  background: var(--lime);
  color: var(--ink-deep);
  font-weight: 700;
}
.skip-link:focus { transform: translateY(0); }

.announcement {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 8px 24px;
  background: var(--lime);
  color: var(--ink-deep);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.announcement a {
  margin-left: 12px;
  padding-left: 14px;
  border-left: 1px solid rgba(9, 44, 40, 0.24);
  font-weight: 800;
}
.announcement-dot, .pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ink);
}

.site-header {
  width: 100%;
  height: 76px;
  position: sticky;
  z-index: 100;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 max(24px, calc((100vw - 1180px) / 2));
  background: rgba(9, 44, 40, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  width: fit-content;
}
.sepals-wordmark { display: block; width: 148px; height: auto; }

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 650;
}
.desktop-nav a, .footer-links a { transition: color 180ms ease; }
.desktop-nav a:hover, .footer-links a:hover { color: var(--lime); }
.desktop-nav a[aria-current="page"] { color: var(--white); }
.desktop-nav a[aria-current="page"]::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  margin-top: 6px;
  border-radius: 999px;
  background: var(--lime);
}
.header-cta { justify-self: end; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}
.button:hover { transform: translateY(-2px); background: var(--ink-soft); }
.button-small { min-height: 42px; padding: 0 19px; gap: 10px; }
.button-accent { background: var(--lime); border-color: var(--lime); color: var(--ink-deep); }
.button-accent:hover { background: #e8f58f; border-color: #e8f58f; }
.header-cta.button { background: var(--lime); border-color: var(--lime); color: var(--ink-deep); }
.header-cta.button:hover { background: #e8f58f; border-color: #e8f58f; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  font-size: 14px;
  font-weight: 800;
}
.light-link { color: var(--white); }

.mobile-menu { display: none; position: relative; justify-self: end; }
.mobile-menu summary {
  list-style: none;
  cursor: pointer;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
}
.mobile-menu summary::-webkit-details-marker { display: none; }
.mobile-menu nav {
  position: absolute;
  top: 52px;
  right: 0;
  min-width: 220px;
  display: grid;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: var(--ink-deep);
  color: var(--white);
  box-shadow: var(--shadow);
}
.mobile-menu nav a { padding: 12px 14px; border-radius: 10px; font-size: 14px; font-weight: 700; }
.mobile-menu nav a:hover { background: rgba(255, 255, 255, 0.08); color: var(--lime); }
.mobile-menu nav a[aria-current="page"] { background: rgba(217, 237, 113, 0.12); color: var(--lime); }

.hero {
  min-height: 760px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: clamp(40px, 6vw, 92px);
  padding: 92px max(24px, calc((100vw - 1180px) / 2)) 102px;
  background: var(--ink-deep);
  color: var(--white);
}
.hero-grid {
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: 0.2;
  background-image: linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to right, black, transparent 85%);
}
.hero-glow { position: absolute; z-index: -1; border-radius: 50%; filter: blur(1px); }
.hero-glow-one {
  width: 640px;
  height: 640px;
  right: -190px;
  top: 40px;
  background: radial-gradient(circle, rgba(217, 237, 113, 0.23), transparent 66%);
}
.hero-glow-two {
  width: 420px;
  height: 420px;
  left: 22%;
  bottom: -220px;
  background: radial-gradient(circle, rgba(226, 182, 79, 0.14), transparent 68%);
}
.hero-copy { position: relative; z-index: 2; padding: 24px 0; }
.eyebrow {
  margin-bottom: 20px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.eyebrow.light { color: var(--lime); }
.hero h1 {
  max-width: 690px;
  margin-bottom: 28px;
  font-size: clamp(56px, 6vw, 86px);
  font-weight: 500;
}
.hero h1 span {
  color: var(--lime);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
}
.hero-dek {
  max-width: 620px;
  margin-bottom: 34px;
  color: rgba(255,255,255,.75);
  font-size: clamp(18px, 1.8vw, 21px);
  line-height: 1.55;
}
.hero-actions { display: flex; align-items: center; gap: 28px; }

.product-stage { min-height: 540px; position: relative; display: grid; place-items: center; }
.stage-orbit { position: absolute; border: 1px solid rgba(217,237,113,.18); border-radius: 50%; }
.orbit-one { width: 520px; height: 520px; }
.orbit-two { width: 390px; height: 390px; }
.dashboard-card {
  width: min(520px, 100%);
  position: relative;
  z-index: 2;
  transform: perspective(900px) rotateY(-4deg) rotateX(2deg);
  padding: 22px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 24px;
  background: rgba(255,255,255,.96);
  color: var(--ink);
  box-shadow: 0 36px 80px rgba(0,0,0,.34);
}
.dashboard-topbar, .dashboard-heading, .wallet-header, .wallet-progress > div, .roi-top, .roi-input {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dashboard-topbar { padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.mini-wordmark { display: inline-flex; align-items: center; padding: 5px 8px; border-radius: 999px; background: var(--ink-deep); }
.wordmark-mini { width: 76px; }
.dashboard-period { color: var(--muted); font-size: 10px; font-weight: 700; }
.dashboard-heading { align-items: flex-start; padding: 24px 0 16px; }
.dashboard-heading > div:first-child { display: grid; }
.dashboard-heading span { color: var(--muted); font-size: 10px; }
.dashboard-heading strong { margin: 3px 0 0; font-size: 34px; letter-spacing: -.05em; }
.dashboard-heading small { color: var(--muted); font-size: 9px; }
.growth-pill { padding: 6px 9px; border-radius: 999px; background: #e7f0d7; color: #2f713e; font-size: 9px; font-weight: 850; }
.chart {
  height: 170px;
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: 14px;
  overflow: hidden;
  padding: 20px 18px 0;
  border-radius: 14px;
  background: linear-gradient(to bottom, rgba(19,60,52,.045), rgba(19,60,52,.01));
}
.chart::before, .chart::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  border-top: 1px dashed rgba(19,60,52,.11);
}
.chart::before { top: 54px; }
.chart::after { top: 105px; }
.chart > .bar { flex: 1; position: relative; z-index: 1; border-radius: 5px 5px 0 0; background: rgba(19,60,52,.13); }
.bar-1 { height: 34%; }.bar-2 { height: 45%; }.bar-3 { height: 43%; }.bar-4 { height: 58%; }.bar-5 { height: 65%; }.bar-6 { height: 73%; }.bar-7 { height: 78%; }.bar-8 { height: 94%; background: var(--lime) !important; }
.chart-line {
  width: 110%;
  height: 80px;
  position: absolute;
  z-index: 2;
  left: -5%;
  bottom: 28px;
  border-top: 3px solid var(--gold);
  border-radius: 50%;
  transform: rotate(-8deg);
  pointer-events: none;
}
.metric-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 13px; }
.metric-row > div { display: grid; gap: 1px; padding: 12px; border: 1px solid var(--line); border-radius: 11px; }
.metric-row span { color: var(--muted); font-size: 8px; }
.metric-row strong { font-size: 18px; }
.metric-row small { color: #3b7b49; font-size: 8px; font-weight: 750; }
.float-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 15px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 14px;
  background: rgba(15,52,46,.92);
  box-shadow: 0 22px 48px rgba(0,0,0,.25);
  backdrop-filter: blur(12px);
}
.float-card > div:not(.float-icon) { display: grid; }
.float-card small { color: rgba(255,255,255,.58); font-size: 9px; }
.float-card strong { color: var(--white); font-size: 12px; }
.float-icon { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; background: var(--lime); color: var(--ink); font-size: 11px; font-weight: 900; }
.wallet-card { right: -10px; top: 80px; }
.wallet-card > span { margin-left: 12px; color: var(--lime); }
.sale-card { left: -28px; bottom: 76px; }
.sale-card .pulse-dot { background: var(--lime); box-shadow: 0 0 0 5px rgba(217,237,113,.12); }

.proof-strip {
  width: 100%;
  padding: 34px max(24px, calc((100vw - 1180px) / 2));
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.proof-strip > p { margin-bottom: 20px; color: var(--muted); font-size: 11px; font-weight: 850; letter-spacing: .12em; text-align: center; text-transform: uppercase; }
.proof-stats { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.proof-stats > div { display: flex; align-items: baseline; justify-content: center; gap: 8px; padding: 20px 14px; border-right: 1px solid var(--line); }
.proof-stats > div:last-child { border-right: 0; }
.proof-stats strong { color: var(--ink); font-size: 25px; letter-spacing: -.04em; }
.proof-stats span { color: var(--muted); font-size: 11px; }
.proof-strip > small { display: block; margin-top: 12px; color: #70817b; font-size: 9px; text-align: right; }

.section { width: var(--page); margin: 0 auto; padding: 112px 0; }
.section-heading { margin-bottom: 58px; }
.section-heading h2, .services-intro h2, .trust-copy h2, .faq-intro h2, .demo-content h2 {
  margin-bottom: 0;
  font-size: clamp(42px, 5vw, 66px);
  font-weight: 550;
}
.split-heading { display: grid; grid-template-columns: 1.45fr .55fr; align-items: end; gap: 72px; }
.split-heading > div > h2 { max-width: 760px; }
.split-heading > p { margin-bottom: 6px; color: var(--muted); font-size: 17px; line-height: 1.65; }
.problem-section { padding-bottom: 124px; }
.fragmentation-visual {
  display: grid;
  grid-template-columns: .86fr 90px 1.14fr;
  align-items: center;
  gap: 24px;
  padding: 54px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--cream);
}
.visual-label { margin-bottom: 22px; color: var(--muted); font-size: 13px; font-weight: 850; letter-spacing: .12em; text-align: center; text-transform: uppercase; }
.fragment-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 9px; transform: rotate(-2deg); }
.fragment {
  min-height: 108px;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 8px 22px rgba(19,60,52,.06);
}
.fragment:nth-child(even) { transform: translateY(10px); }
.fragment span { color: var(--muted); font-size: 11px; font-weight: 750; letter-spacing: .04em; text-transform: uppercase; }
.fragment strong { font-size: 17px; line-height: 1.25; }
.fragment-a { border-left: 4px solid var(--gold); }
.fragment-b { border-left: 4px solid var(--blue); }
.fragment-c { border-left: 4px solid var(--peach); }
.fragment-d { border-left: 4px solid var(--sage); }
.transform-arrow { display: grid; justify-items: center; gap: 5px; color: var(--gold); }
.transform-arrow span { font-size: 42px; }
.transform-arrow small { color: var(--muted); font-size: 11px; font-weight: 800; text-transform: uppercase; }
.unified-side { min-width: 0; }
.loyalty-infographic { width: min(560px, 100%); margin: 0 auto; overflow: hidden; border: 1px solid rgba(19,60,52,.12); border-radius: 24px; background: var(--white); box-shadow: 0 18px 46px rgba(19,60,52,.1); }
.loyalty-infographic img { display: block; width: 100%; height: auto; }

.solutions-section { padding-bottom: 128px; }
.solution-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.solution-card {
  min-height: 430px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.solution-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.solution-card::after { content: ""; width: 180px; height: 180px; position: absolute; right: -90px; top: -90px; border-radius: 50%; background: var(--cream); }
.solution-card:nth-child(2)::after { background: rgba(217,237,113,.28); }
.solution-card:nth-child(3)::after { background: rgba(145,201,194,.24); }
.card-number { width: 42px; height: 42px; display: grid; place-items: center; margin-bottom: 52px; border-radius: 50%; background: var(--cream); color: var(--gold); font-size: 11px; font-weight: 850; }
.solution-card h3 { margin-bottom: 16px; font-size: 29px; font-weight: 650; }
.solution-card > p { color: var(--muted); font-size: 15px; line-height: 1.6; }
.tag-row { display: flex; flex-wrap: wrap; gap: 7px; margin: 15px 0 24px; }
.tag-row span { padding: 6px 9px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: 9px; font-weight: 750; }
.solution-card > a { display: flex; justify-content: space-between; margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line); font-size: 12px; font-weight: 850; }

.platform-section { position: relative; overflow: hidden; background: var(--ink-deep); color: var(--white); }
.platform-section::before { content: ""; width: 720px; height: 720px; position: absolute; left: -340px; top: 240px; border-radius: 50%; background: radial-gradient(circle, rgba(217,237,113,.12), transparent 65%); }
.platform-inner { position: relative; z-index: 1; }
.dark-heading > p { color: rgba(255,255,255,.6); }
.capability-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; overflow: hidden; border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-lg); background: rgba(255,255,255,.12); }
.capability-card { min-height: 260px; padding: 30px; background: #0d342f; }
.capability-card > span { display: block; margin-bottom: 58px; color: var(--lime); font-size: 11px; font-weight: 850; }
.capability-card h3 { margin-bottom: 14px; font-size: 24px; font-weight: 620; }
.capability-card p { margin: 0; color: rgba(255,255,255,.58); font-size: 14px; line-height: 1.6; }
.platform-showcase { display: grid; grid-template-columns: 1.15fr .85fr; gap: 18px; margin-top: 72px; }
.wallet-showcase, .roi-showcase { padding: 32px; border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-lg); background: rgba(255,255,255,.055); }
.showcase-label { margin-bottom: 24px; color: var(--lime); font-size: 11px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.wallet-ui, .roi-card { min-height: 340px; padding: 28px; border-radius: 18px; background: var(--paper); color: var(--ink); box-shadow: 0 25px 55px rgba(0,0,0,.24); }
.wallet-header { padding-bottom: 20px; border-bottom: 1px solid var(--line); font-size: 12px; font-weight: 850; }
.wallet-header small { color: var(--muted); font-weight: 600; }
.wallet-balance { display: grid; padding: 26px 0; }
.wallet-balance small { color: var(--muted); font-size: 10px; }
.wallet-balance strong { font-size: 43px; letter-spacing: -.05em; }
.wallet-balance strong span { color: var(--gold); font-size: 13px; letter-spacing: 0; }
.wallet-progress { padding: 18px; border-radius: 13px; background: var(--cream); }
.wallet-progress div { font-size: 11px; font-weight: 800; }
.wallet-progress i { height: 7px; display: block; overflow: hidden; margin: 10px 0 6px; border-radius: 9px; background: rgba(19,60,52,.1); }
.wallet-progress i b { width: 82%; height: 100%; display: block; border-radius: inherit; background: var(--gold); }
.wallet-progress small { color: var(--muted); font-size: 9px; }
.wallet-offer { display: flex; align-items: center; gap: 12px; margin-top: 13px; padding: 14px; border: 1px solid var(--line); border-radius: 12px; }
.offer-badge { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 10px; background: var(--lime); font-size: 11px; font-weight: 900; }
.wallet-offer > div { display: grid; margin-right: auto; }
.wallet-offer strong { font-size: 11px; }
.wallet-offer small { color: var(--muted); font-size: 9px; }
.roi-top { padding-bottom: 20px; border-bottom: 1px solid var(--line); font-size: 12px; font-weight: 850; }
.live-pill { padding: 5px 8px; border-radius: 999px; background: #e7f0d7; color: #2f713e; font-size: 8px; }
.roi-value { display: grid; padding: 28px 0 18px; }
.roi-value small { color: var(--muted); font-size: 10px; }
.roi-value strong { font-size: 56px; letter-spacing: -.06em; }
.roi-value span { color: #3b7b49; font-size: 10px; font-weight: 800; }
.roi-input { padding: 14px 0; border-top: 1px solid var(--line); font-size: 11px; }
.roi-input span { color: var(--muted); }
.roi-input strong { font-size: 11px; }

.industry-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.industry-card { min-height: 360px; display: flex; flex-direction: column; padding: 28px; border-radius: var(--radius-lg); background: var(--cream); }
.industry-1, .industry-2, .industry-3 { grid-column: span 2; }
.industry-4, .industry-5 { grid-column: span 3; }
.industry-1 { background: #e5dfcf; }
.industry-2 { background: #e9e2d3; }
.industry-3 { background: #dce7d4; }
.industry-4 { background: #dfe9e5; }
.industry-5 { background: #eee0d4; }
.industry-index { align-self: flex-end; color: rgba(19,60,52,.35); font-family: Georgia, serif; font-size: 14px; font-style: italic; }
.industry-eyebrow { margin-top: 46px; margin-bottom: 12px; color: var(--muted); font-size: 9px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.industry-card h3 { max-width: 310px; margin-bottom: 17px; font-size: 29px; font-weight: 630; }
.industry-card > p:not(.industry-eyebrow) { max-width: 390px; color: var(--muted); font-size: 14px; line-height: 1.6; }
.industry-card a { display: flex; justify-content: space-between; margin-top: auto; padding-top: 18px; border-top: 1px solid rgba(19,60,52,.16); font-size: 11px; font-weight: 850; }

.services-section { display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; align-items: center; }
.services-intro h2 { margin-bottom: 24px; font-size: clamp(42px, 4.6vw, 62px); }
.services-intro > p:not(.eyebrow) { margin-bottom: 28px; color: var(--muted); font-size: 17px; line-height: 1.65; }
.service-steps { border-top: 1px solid var(--line); }
.service-steps article { display: grid; grid-template-columns: 58px 1fr; gap: 20px; padding: 27px 0; border-bottom: 1px solid var(--line); }
.service-steps article > span { color: var(--gold); font-size: 11px; font-weight: 850; }
.service-steps article > div > p { margin-bottom: 5px; color: var(--muted); font-size: 9px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.service-steps h3 { margin-bottom: 8px; font-size: 24px; font-weight: 650; }
.service-steps small { color: var(--muted); font-size: 13px; }
.support-distinction { grid-column: 1 / -1; display: grid; grid-template-columns: 220px 1fr; align-items: center; gap: 44px; padding: 30px 34px; border-radius: 22px; background: var(--lime); color: var(--ink-deep); }
.support-distinction > div { display: flex; flex-direction: column; padding-right: 34px; border-right: 1px solid rgba(9,44,40,.2); }
.support-distinction strong { font-family: Georgia, "Times New Roman", serif; font-size: 34px; font-weight: 500; letter-spacing: -.04em; }
.support-distinction span { margin-top: 5px; font-size: 10px; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
.support-distinction > p { max-width: 700px; margin: 0; font-size: 15px; font-weight: 650; line-height: 1.6; }

.trust-section { background: var(--ink); color: var(--white); }
.trust-inner { display: grid; grid-template-columns: .9fr 1.1fr; gap: 72px; align-items: center; }
.trust-copy h2 { margin-bottom: 24px; }
.trust-copy > p:not(.eyebrow) { margin-bottom: 0; color: rgba(255,255,255,.62); font-size: 17px; line-height: 1.65; }
.integration-cloud { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; padding: 40px; border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-lg); background: rgba(255,255,255,.05); }
.integration-cloud span { padding: 12px 16px; border: 1px solid rgba(255,255,255,.15); border-radius: 999px; background: rgba(255,255,255,.05); color: rgba(255,255,255,.78); font-size: 11px; font-weight: 800; }
.integration-cloud span:nth-child(3n+1) { border-color: rgba(217,237,113,.36); }
.trust-badges { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 14px; border-top: 1px solid rgba(255,255,255,.15); border-bottom: 1px solid rgba(255,255,255,.15); }
.trust-badges > div { display: flex; align-items: baseline; justify-content: center; gap: 11px; padding: 24px; border-right: 1px solid rgba(255,255,255,.15); }
.trust-badges > div:last-child { border-right: 0; }
.trust-badges strong { color: var(--lime); font-size: 22px; }
.trust-badges span { color: rgba(255,255,255,.55); font-size: 11px; }
.trust-footnote { grid-column: 1 / -1; margin-top: -50px; color: rgba(255,255,255,.36); font-size: 9px; text-align: right; }

.faq-section { display: grid; grid-template-columns: .75fr 1.25fr; gap: 96px; }
.faq-intro h2 { margin-bottom: 24px; font-size: clamp(42px, 4.5vw, 60px); }
.faq-intro > p:not(.eyebrow) { color: var(--muted); font-size: 16px; line-height: 1.65; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 24px 0; cursor: pointer; list-style: none; font-size: 18px; font-weight: 700; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary i { width: 28px; height: 28px; flex: 0 0 auto; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; font-style: normal; font-size: 16px; transition: transform 180ms ease; }
.faq-list details[open] summary i { transform: rotate(45deg); background: var(--lime); }
.faq-list details > p { max-width: 680px; padding: 0 50px 24px 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.faq-page-section { display: grid; grid-template-columns: .62fr 1.38fr; gap: 96px; padding-top: 112px; padding-bottom: 122px; }
.faq-page-intro { position: sticky; top: 130px; align-self: start; }
.faq-page-intro h2 { margin: 16px 0 22px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(42px, 4.5vw, 60px); font-weight: 500; line-height: 1; letter-spacing: -.055em; }
.faq-page-intro > p:not(.eyebrow) { max-width: 420px; margin: 0; color: var(--muted); font-size: 16px; line-height: 1.7; }
.faq-list-full summary { font-size: 20px; line-height: 1.35; }
.faq-answer { max-width: 780px; padding: 0 50px 32px 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.faq-answer p { margin: 0 0 14px; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 28px; margin: 4px 0 18px; padding: 0; list-style: none; }
.faq-answer li { position: relative; padding: 8px 0 8px 18px; border-top: 1px solid var(--line); color: #36584f; font-size: 13px; font-weight: 650; }
.faq-answer li::before { content: ""; width: 6px; height: 6px; position: absolute; left: 0; top: 14px; border-radius: 50%; background: var(--gold); }

.demo-section { min-height: 580px; position: relative; isolation: isolate; overflow: hidden; display: grid; place-items: center; padding: 90px 24px; background: var(--ink-deep); color: var(--white); text-align: center; }
.demo-section::before { content: ""; position: absolute; z-index: -2; inset: 0; opacity: .16; background-image: radial-gradient(circle at center, rgba(255,255,255,.4) 1px, transparent 1px); background-size: 26px 26px; mask-image: radial-gradient(circle, black, transparent 68%); }
.demo-content { max-width: 820px; position: relative; z-index: 2; }
.demo-content h2 { margin-bottom: 24px; font-size: clamp(50px, 6vw, 80px); }
.demo-content > p:not(.eyebrow) { max-width: 680px; margin: 0 auto 34px; color: rgba(255,255,255,.68); font-size: 18px; line-height: 1.65; }
.demo-actions { display: flex; align-items: center; justify-content: center; gap: 24px; }
.demo-email { color: rgba(255,255,255,.65); font-size: 13px; border-bottom: 1px solid rgba(255,255,255,.35); }
.demo-bloom { position: absolute; z-index: -1; width: 460px; height: 460px; border: 1px solid rgba(217,237,113,.18); border-radius: 45% 55% 48% 52%; }
.bloom-one { left: -190px; top: 60px; transform: rotate(25deg); box-shadow: inset 0 0 100px rgba(217,237,113,.08); }
.bloom-two { right: -180px; bottom: -100px; transform: rotate(-35deg); box-shadow: inset 0 0 100px rgba(226,182,79,.08); }

.topic-hero {
  min-height: 650px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.08fr .72fr;
  align-items: center;
  gap: clamp(48px, 8vw, 110px);
  padding: 96px max(24px, calc((100vw - 1180px) / 2)) 110px;
  background: var(--ink-deep);
  color: var(--white);
}
.topic-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to right, black, transparent 80%);
}
.topic-hero-glow { position: absolute; z-index: -1; width: 620px; height: 620px; right: -180px; top: -250px; border-radius: 50%; background: radial-gradient(circle, rgba(217,237,113,.18), transparent 68%); }
.topic-hero-copy { max-width: 720px; }
.topic-hero h1 { max-width: 800px; margin: 18px 0 28px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(58px, 6.5vw, 92px); font-weight: 500; line-height: .96; letter-spacing: -.065em; }
.topic-hero-copy > p:not(.eyebrow) { max-width: 680px; margin: 0; color: rgba(255,255,255,.68); font-size: 19px; line-height: 1.65; }
.topic-hero-actions { display: flex; align-items: center; gap: 26px; margin-top: 38px; }
.topic-hero-panel { align-self: stretch; display: flex; flex-direction: column; justify-content: center; padding: clamp(30px, 5vw, 54px); border: 1px solid rgba(255,255,255,.14); border-radius: 32px; background: linear-gradient(145deg, rgba(255,255,255,.1), rgba(255,255,255,.035)); box-shadow: 0 28px 80px rgba(0,0,0,.25); backdrop-filter: blur(14px); }
.topic-hero-panel > p { margin: 0 0 26px; color: var(--lime); font-size: 11px; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.topic-hero-panel > strong { font-family: Georgia, "Times New Roman", serif; font-size: clamp(38px, 4vw, 58px); font-weight: 500; line-height: 1; letter-spacing: -.05em; }
.topic-hero-panel > span { margin: 16px 0 28px; color: rgba(255,255,255,.62); font-size: 14px; line-height: 1.6; }
.topic-hero-panel ul, .topic-card ul { margin: 0; padding: 0; list-style: none; }
.topic-hero-panel li { position: relative; padding: 11px 0 11px 22px; border-top: 1px solid rgba(255,255,255,.11); color: rgba(255,255,255,.82); font-size: 13px; }
.topic-hero-panel li::before { content: ""; width: 7px; height: 7px; position: absolute; left: 0; top: 16px; border-radius: 50%; background: var(--lime); }
.topic-hero-panel-minimal { align-items: center; justify-content: center; text-align: center; background: radial-gradient(circle at 50% 40%, rgba(217,237,113,.18), rgba(255,255,255,.045) 68%); }
.topic-hero-panel-minimal > strong { max-width: 320px; color: var(--white); font-size: clamp(48px, 5vw, 72px); line-height: .98; }

.topic-proof { display: grid; grid-template-columns: repeat(4, 1fr); padding: 0 max(24px, calc((100vw - 1180px) / 2)); border-bottom: 1px solid var(--line); background: var(--white); }
.topic-proof > div { min-height: 132px; display: flex; flex-direction: column; justify-content: center; padding: 28px 34px; border-right: 1px solid var(--line); }
.topic-proof > div:first-child { border-left: 1px solid var(--line); }
.topic-proof strong { color: var(--ink); font-family: Georgia, "Times New Roman", serif; font-size: 25px; font-weight: 500; letter-spacing: -.035em; }
.topic-proof span { margin-top: 6px; color: var(--muted); font-size: 10px; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }

.topic-details { padding-top: 112px; padding-bottom: 122px; }
.topic-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.topic-card { min-height: 430px; position: relative; display: flex; flex-direction: column; padding: 34px; overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: var(--white); transition: transform 180ms ease, box-shadow 180ms ease; }
.topic-card:hover { transform: translateY(-4px); box-shadow: 0 24px 54px rgba(19,60,52,.1); }
.topic-card-number { position: absolute; right: 26px; top: 22px; color: rgba(19,60,52,.12); font-family: Georgia, "Times New Roman", serif; font-size: 50px; }
.topic-card-eyebrow { margin: 0 0 28px !important; color: #668075 !important; font-size: 10px !important; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.topic-card h3 { max-width: 280px; margin: 0 0 16px; color: var(--ink); font-family: Georgia, "Times New Roman", serif; font-size: 31px; font-weight: 500; line-height: 1.08; letter-spacing: -.04em; }
.topic-card > p:not(.topic-card-eyebrow) { margin: 0 0 28px; color: var(--muted); font-size: 14px; line-height: 1.65; }
.topic-card ul { margin-top: auto; }
.topic-card li { position: relative; padding: 10px 0 10px 20px; border-top: 1px solid var(--line); color: #36584f; font-size: 12px; font-weight: 650; }
.topic-card li::before { content: ""; width: 6px; height: 6px; position: absolute; left: 0; top: 15px; border-radius: 50%; background: var(--gold); }

.case-study-section { padding-top: 112px; padding-bottom: 122px; }
.case-study-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; align-items: start; }
.case-study-card { overflow: hidden; border: 1px solid var(--line); border-radius: 26px; background: var(--white); transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease; }
.case-study-card:hover { transform: translateY(-3px); box-shadow: 0 24px 54px rgba(19,60,52,.1); }
.case-study-card[open] { border-color: rgba(19,60,52,.28); box-shadow: 0 26px 60px rgba(19,60,52,.12); }
.case-study-card > summary { min-height: 430px; display: flex; flex-direction: column; padding: 32px; cursor: pointer; list-style: none; }
.case-study-card > summary::-webkit-details-marker { display: none; }
.case-study-card-numeric > summary { background: linear-gradient(145deg, rgba(217,237,113,.42), rgba(255,255,255,.96) 58%); }
.case-study-card-top { min-height: 132px; display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; }
.case-study-eyebrow { max-width: 180px; color: #668075; font-size: 10px; font-weight: 850; letter-spacing: .12em; line-height: 1.4; text-transform: uppercase; }
.case-study-metric { max-width: 230px; display: grid; justify-items: end; gap: 5px; text-align: right; }
.case-study-metric strong { color: var(--ink); font-family: Georgia, "Times New Roman", serif; font-size: clamp(38px, 4.5vw, 58px); font-weight: 500; line-height: .92; letter-spacing: -.055em; }
.case-study-metric small { max-width: 190px; color: #4f6b61; font-size: 9px; font-weight: 800; line-height: 1.4; letter-spacing: .07em; text-transform: uppercase; }
.case-study-title { max-width: 500px; margin-bottom: 17px; color: var(--ink); font-family: Georgia, "Times New Roman", serif; font-size: clamp(27px, 3vw, 36px); font-weight: 500; line-height: 1.05; letter-spacing: -.045em; }
.case-study-summary { max-width: 510px; color: var(--muted); font-size: 14px; line-height: 1.65; }
.case-study-toggle { display: flex; align-items: center; justify-content: flex-end; margin-top: auto; padding-top: 24px; border-top: 1px solid var(--line); color: var(--ink); font-size: 11px; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; }
.case-study-toggle i { width: 32px; height: 32px; display: grid; place-items: center; border: 1px solid rgba(19,60,52,.22); border-radius: 50%; background: var(--white); font-style: normal; font-size: 18px; transition: transform 180ms ease, background 180ms ease; }
.case-study-card[open] .case-study-toggle i { transform: rotate(45deg); background: var(--lime); }
.case-study-expanded { padding: 27px 32px 32px; border-top: 1px solid var(--line); background: #f8f6ef; }
.case-study-expanded p { margin: 0 0 22px; color: var(--muted); font-size: 14px; line-height: 1.7; }
.case-study-expanded a { display: flex; align-items: center; justify-content: space-between; gap: 18px; color: var(--ink); font-size: 12px; font-weight: 850; }

.topic-journey { background: var(--ink); color: var(--white); }
.topic-journey-inner { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(70px, 10vw, 150px); padding-top: 110px; padding-bottom: 110px; }
.topic-journey-copy h2 { margin: 16px 0 24px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(42px, 5vw, 66px); font-weight: 500; line-height: 1; letter-spacing: -.055em; }
.topic-journey-copy > p:not(.eyebrow) { margin: 0; color: rgba(255,255,255,.62); font-size: 16px; line-height: 1.7; }
.topic-step-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.14); }
.topic-step-list li { min-height: 76px; display: grid; grid-template-columns: 48px 1fr; align-items: center; gap: 20px; border-bottom: 1px solid rgba(255,255,255,.14); }
.topic-step-list span { width: 30px; height: 30px; display: grid; place-items: center; border: 1px solid rgba(217,237,113,.38); border-radius: 50%; color: var(--lime); font-size: 10px; font-weight: 850; }
.topic-step-list strong { font-size: 16px; font-weight: 650; }

.topic-cta { display: flex; align-items: center; justify-content: space-between; gap: 50px; padding: 88px max(24px, calc((100vw - 1180px) / 2)); background: #345746; color: var(--white); }
.topic-cta > div { max-width: 760px; }
.topic-cta h2 { margin: 14px 0 18px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(42px, 5vw, 64px); font-weight: 500; line-height: 1; letter-spacing: -.055em; }
.topic-cta > div > p:not(.eyebrow) { margin: 0; color: rgba(255,255,255,.66); font-size: 16px; line-height: 1.65; }
.topic-cta > .button { flex: 0 0 auto; }

.site-footer { padding: 58px max(24px, calc((100vw - 1180px) / 2)) 28px; background: var(--ink-deep); color: var(--white); }
.footer-top { display: grid; grid-template-columns: .8fr 1.2fr 1fr; align-items: center; gap: 40px; padding-bottom: 50px; }
.footer-wordmark .sepals-wordmark { width: 158px; }
.footer-top > p { margin: 0; color: rgba(255, 255, 255, 0.62); font-size: 15px; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 22px; color: rgba(255, 255, 255, 0.62); font-size: 12px; font-weight: 750; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.14); color: rgba(255, 255, 255, 0.46); font-size: 9px; }

a:focus-visible, summary:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
  border-radius: 4px;
}
.rewardian-link { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; transition: color 180ms ease; }
.rewardian-link:hover { color: var(--lime); }

@media (max-width: 1060px) {
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav, .header-cta { display: none; }
  .mobile-menu { display: block; }
  .hero { grid-template-columns: 1fr; padding-top: 78px; }
  .hero-copy { max-width: 780px; }
  .product-stage { width: min(680px, 100%); margin: -10px auto 0; }
  .dashboard-card { width: min(570px, 88%); }
  .split-heading { grid-template-columns: 1fr; gap: 22px; }
  .split-heading > p { max-width: 720px; }
  .fragmentation-visual { grid-template-columns: 1fr; }
  .transform-arrow { transform: rotate(90deg); padding: 8px; }
  .services-section, .trust-inner, .faq-section, .faq-page-section { grid-template-columns: 1fr; }
  .services-intro, .trust-copy, .faq-intro { max-width: 760px; }
  .faq-page-intro { position: static; max-width: 760px; }
  .trust-footnote { margin-top: -50px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-links { grid-column: 1 / -1; justify-content: flex-start; }
  .topic-hero { grid-template-columns: 1fr; }
  .topic-hero-panel { min-height: 400px; }
  .topic-card-grid { grid-template-columns: repeat(2, 1fr); }
  .case-study-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .topic-journey-inner { grid-template-columns: 1fr; gap: 54px; }
}

@media (max-width: 760px) {
  :root { --page: min(100% - 32px, 1180px); --radius-xl: 26px; }
  .announcement { justify-content: flex-start; overflow: hidden; white-space: nowrap; }
  .announcement a { display: none; }
  .site-header { height: 68px; padding: 0 16px; }
  .sepals-wordmark { width: 132px; }
  .wordmark-mini { width: 70px; }
  .hero { min-height: auto; gap: 28px; padding: 66px 20px 70px; }
  .hero h1 { font-size: clamp(48px, 14vw, 66px); }
  .hero-dek { font-size: 17px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .product-stage { min-height: 400px; }
  .dashboard-card { width: 94%; padding: 15px; transform: none; }
  .wallet-card { right: 0; top: 8px; }
  .sale-card { left: 0; bottom: 5px; }
  .chart { height: 120px; gap: 8px; }
  .metric-row > div { padding: 8px; }
  .metric-row strong { font-size: 15px; }
  .stage-orbit { display: none; }
  .proof-stats { grid-template-columns: repeat(2, 1fr); }
  .proof-stats > div:nth-child(2) { border-right: 0; }
  .proof-stats > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .proof-stats > div { align-items: center; flex-direction: column; gap: 1px; text-align: center; }
  .section { padding: 78px 0; }
  .section-heading { margin-bottom: 38px; }
  .section-heading h2, .services-intro h2, .trust-copy h2, .faq-intro h2 { font-size: 42px; }
  .fragmentation-visual { padding: 26px 16px; }
  .fragment-grid { transform: none; }
  .loyalty-infographic { width: min(560px, 100%); }
  .solution-grid, .capability-grid, .platform-showcase { grid-template-columns: 1fr; }
  .solution-card { min-height: 390px; }
  .capability-card { min-height: 220px; }
  .capability-card > span { margin-bottom: 36px; }
  .wallet-showcase, .roi-showcase { padding: 18px; }
  .wallet-ui, .roi-card { min-height: 320px; padding: 20px; }
  .industry-grid { grid-template-columns: 1fr; }
  .industry-1, .industry-2, .industry-3, .industry-4, .industry-5 { grid-column: auto; }
  .industry-card { min-height: 330px; }
  .services-section { gap: 50px; }
  .support-distinction { grid-template-columns: 1fr; gap: 20px; padding: 28px; }
  .support-distinction > div { padding-right: 0; padding-bottom: 20px; border-right: 0; border-bottom: 1px solid rgba(9,44,40,.2); }
  .trust-inner, .faq-section { gap: 50px; }
  .trust-badges { grid-template-columns: 1fr; }
  .trust-badges > div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.15); }
  .trust-badges > div:last-child { border-bottom: 0; }
  .trust-footnote { margin-top: -38px; text-align: left; }
  .demo-section { min-height: 520px; }
  .demo-actions { flex-direction: column; }
  .footer-top { grid-template-columns: 1fr; gap: 20px; }
  .footer-links { grid-column: auto; gap: 16px; }
  .footer-bottom { flex-direction: column; }
  .topic-hero { min-height: auto; gap: 44px; padding: 74px 20px 78px; }
  .topic-hero h1 { font-size: clamp(48px, 14vw, 66px); }
  .topic-hero-copy > p:not(.eyebrow) { font-size: 17px; }
  .topic-hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .topic-hero-panel { min-height: 0; padding: 28px; border-radius: 24px; }
  .topic-proof { grid-template-columns: repeat(2, 1fr); padding: 0 16px; }
  .topic-proof > div { min-height: 112px; padding: 22px 18px; }
  .topic-proof > div:nth-child(2) { border-right: 0; }
  .topic-proof > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .topic-card-grid { grid-template-columns: 1fr; }
  .case-study-grid { grid-template-columns: 1fr; }
  .case-study-card > summary { min-height: 390px; padding: 28px; }
  .case-study-card-top { min-height: 118px; }
  .case-study-expanded { padding: 24px 28px 28px; }
  .topic-card { min-height: 390px; padding: 28px; }
  .topic-journey-inner { padding-top: 78px; padding-bottom: 78px; }
  .faq-page-section { gap: 48px; padding-top: 78px; padding-bottom: 86px; }
  .faq-answer { padding-right: 0; }
  .faq-answer ul { grid-template-columns: 1fr; }
  .topic-step-list li { min-height: 70px; }
  .topic-cta { align-items: flex-start; flex-direction: column; padding: 72px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
