:root {
  color-scheme: light;
  --bg: #ffffff;
  --bg-deep: #f7faf8;
  --surface: #ffffff;
  --surface-2: #f4f8f5;
  --surface-3: #e9f4ed;
  --surface-glass: rgba(255, 255, 255, 0.88);
  --line: rgba(24, 60, 39, 0.12);
  --line-strong: rgba(45, 170, 102, 0.3);
  --text: #14231a;
  --muted: #5f7066;
  --muted-2: #68786e;
  --green: #2daa66;
  --green-bright: #35b96f;
  --green-deep: #21854e;
  --teal: #35ad96;
  --blue: #65a9ff;
  --violet: #a68bff;
  --pink: #ee6ca7;
  --warning: #f6c85f;
  --danger: #ff8581;
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
  --shadow: 0 28px 80px rgba(31, 77, 49, 0.12);
  --container: 1200px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 15% 2%, rgba(67, 194, 122, 0.12), transparent 28rem),
    radial-gradient(circle at 88% 14%, rgba(126, 220, 171, 0.09), transparent 32rem),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

img {
  height: auto;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

p:last-child {
  margin-bottom: 0;
}

::selection {
  background: rgba(45, 170, 102, 0.2);
  color: var(--text);
}

:focus-visible {
  outline: 3px solid rgba(45, 170, 102, 0.5);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-160%);
  border-radius: 10px;
  background: var(--green);
  color: #fff;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.page-ambient {
  position: fixed;
  z-index: -1;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.page-ambient::before,
.page-ambient::after {
  position: absolute;
  width: 38rem;
  height: 38rem;
  border-radius: 999px;
  content: "";
  filter: blur(130px);
  opacity: 0.07;
}

.page-ambient::before {
  top: 18%;
  left: -25rem;
  background: var(--green);
}

.page-ambient::after {
  right: -28rem;
  bottom: 12%;
  background: var(--teal);
}

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

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

.site-header {
  position: sticky;
  z-index: 90;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 38px rgba(31, 77, 49, 0.08);
}

.nav-shell {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 11px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.brand img {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(24, 60, 39, 0.1);
  border-radius: 13px;
  box-shadow: 0 8px 24px rgba(31, 77, 49, 0.1);
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: 15px;
  letter-spacing: 0.12em;
}

.brand-copy span {
  margin-top: 4px;
  color: var(--green-deep);
  font-size: 11px;
  letter-spacing: 0.19em;
}

.main-nav,
.header-actions {
  display: flex;
  align-items: center;
}

.main-nav {
  gap: 4px;
}

.main-nav a {
  padding: 9px 12px;
  border-radius: 10px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  transition: color 160ms ease, background 160ms ease;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  background: rgba(45, 170, 102, 0.08);
  color: var(--text);
}

.header-actions {
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
}

.menu-toggle svg {
  width: 22px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, #23824d, #1f7c48);
  color: #fff;
  box-shadow: 0 14px 32px rgba(45, 170, 102, 0.2);
}

.button-primary:hover {
  box-shadow: 0 17px 38px rgba(45, 170, 102, 0.28);
}

.button-secondary {
  border-color: var(--line);
  background: #fff;
  color: var(--text);
}

.button-secondary:hover {
  border-color: var(--line-strong);
  background: #f2f9f5;
}

.button-ghost {
  color: var(--muted);
}

.button svg,
.text-link svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--green-deep);
  font-weight: 800;
}

.text-link:hover {
  color: var(--green);
}

.announcement {
  border-bottom: 1px solid rgba(45, 170, 102, 0.1);
  background: #eff9f3;
}

.announcement .container {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #31734c;
  font-size: 12px;
  font-weight: 750;
  text-align: center;
}

.announcement-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(45, 170, 102, 0.1);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 72px;
}

.hero::before {
  position: absolute;
  z-index: -1;
  top: -18rem;
  left: 50%;
  width: 64rem;
  height: 48rem;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(90, 198, 139, 0.14), transparent 68%);
  content: "";
}

.hero-copy {
  width: min(100%, 900px);
  margin: 0 auto 58px;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 19px;
  padding: 7px 11px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: #f0f9f4;
  color: var(--green-deep);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.eyebrow svg {
  width: 15px;
  height: 15px;
}

.hero h1,
.page-hero h1 {
  margin-bottom: 23px;
  font-size: clamp(43px, 7vw, 78px);
  font-weight: 920;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.gradient-text {
  background: linear-gradient(115deg, var(--green-deep), var(--green) 58%, var(--teal));
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
}

.hero-lead,
.page-lead {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 31px;
}

.hero-note {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  margin-top: 18px;
  color: var(--muted-2);
  font-size: 13px;
}

.hero-note span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-note svg {
  width: 15px;
  height: 15px;
  color: var(--green);
}

.product-stage {
  position: relative;
  max-width: 1160px;
  margin: 0 auto;
  padding-inline: 28px;
}

.browser-frame {
  overflow: hidden;
  border: 1px solid rgba(24, 60, 39, 0.14);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 38px 100px rgba(31, 77, 49, 0.16), 0 0 0 8px rgba(45, 170, 102, 0.025);
}

.browser-bar {
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(24, 60, 39, 0.09);
  background: #f7faf8;
}

.browser-dots {
  display: flex;
  gap: 6px;
}

.browser-dots span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #b9c4bd;
}

.browser-dots span:first-child {
  background: #ef716d;
}

.browser-dots span:nth-child(2) {
  background: #e8bd5d;
}

.browser-dots span:last-child {
  background: #43c982;
}

.browser-address {
  display: flex;
  min-width: 0;
  flex: 1;
  align-items: center;
  justify-content: center;
  color: #8a988f;
  font-size: 11px;
}

.browser-frame > img {
  width: 100%;
  aspect-ratio: 1945 / 809;
  object-fit: cover;
}

.floating-proof {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 190px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 44px rgba(31, 77, 49, 0.14);
  backdrop-filter: blur(18px);
}

.floating-proof strong,
.floating-proof span {
  display: block;
}

.floating-proof strong {
  font-size: 12px;
}

.floating-proof span {
  color: var(--muted);
  font-size: 10px;
}

.floating-proof .proof-icon {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 11px;
  background: rgba(45, 170, 102, 0.1);
  color: var(--green-deep);
}

.floating-proof .proof-icon svg {
  width: 18px;
}

.proof-meta {
  top: 24%;
  right: 0;
}

.proof-ai {
  bottom: 12%;
  left: 0;
}

.trust-strip {
  padding: 0 0 88px;
}

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

.trust-item {
  padding: 25px 24px;
  border-right: 1px solid var(--line);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item strong {
  color: var(--text);
  font-size: 14px;
}

.trust-item span {
  margin-top: 5px;
  color: var(--muted-2);
  font-size: 12px;
}

.section {
  position: relative;
  padding: 104px 0;
}

.section-tight {
  padding: 72px 0;
}

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

.section-soft {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #f4f9f6, #fbfdfc);
}

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

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

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 14px;
  color: var(--green-deep);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.kicker::before {
  width: 20px;
  height: 1px;
  background: currentColor;
  content: "";
}

.section-heading h2,
.split-copy h2,
.cta-panel h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 900;
  letter-spacing: -0.052em;
  line-height: 1.03;
}

.section-heading p,
.split-copy > p {
  color: var(--muted);
  font-size: 18px;
}

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

.value-card,
.feature-card,
.stat-card,
.integration-card,
.resource-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 38px rgba(31, 77, 49, 0.055);
}

.value-card {
  min-height: 250px;
  padding: 25px;
  border-radius: var(--radius);
  transition: transform 180ms ease, border-color 180ms ease;
}

.value-card:hover {
  transform: translateY(-5px);
  border-color: var(--line-strong);
}

.icon-box {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 27px;
  border: 1px solid rgba(45, 170, 102, 0.15);
  border-radius: 14px;
  background: rgba(45, 170, 102, 0.09);
  color: var(--green-deep);
}

.icon-box svg {
  width: 22px;
  height: 22px;
}

.icon-box.blue {
  border-color: rgba(101, 169, 255, 0.15);
  background: rgba(101, 169, 255, 0.09);
  color: var(--blue);
}

.icon-box.violet {
  border-color: rgba(166, 139, 255, 0.15);
  background: rgba(166, 139, 255, 0.09);
  color: var(--violet);
}

.icon-box.pink {
  border-color: rgba(238, 108, 167, 0.15);
  background: rgba(238, 108, 167, 0.09);
  color: var(--pink);
}

.value-card h3,
.feature-card h3,
.integration-card h3,
.resource-card h3 {
  margin-bottom: 9px;
  font-size: 19px;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.value-card p,
.feature-card p,
.integration-card p,
.resource-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  align-items: center;
  gap: clamp(44px, 7vw, 90px);
}

.split.reverse {
  grid-template-columns: minmax(0, 1.14fr) minmax(0, 0.86fr);
}

.split.reverse .split-copy {
  order: 2;
}

.split.reverse .split-media {
  order: 1;
}

.split-copy .button,
.split-copy .text-link {
  margin-top: 20px;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: #415248;
  font-size: 14px;
}

.check-list .check {
  display: grid;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  place-items: center;
  margin-top: 1px;
  border-radius: 7px;
  background: rgba(45, 170, 102, 0.11);
  color: var(--green-deep);
}

.check-list .check svg {
  width: 14px;
  height: 14px;
}

.media-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow);
}

.media-card::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(24, 60, 39, 0.035);
  content: "";
  pointer-events: none;
}

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

.media-card.pad {
  padding: 14px;
  background: linear-gradient(145deg, #ffffff, #f1f7f3);
}

.media-card.pad img {
  border-radius: calc(var(--radius-lg) - 12px);
}

.media-label {
  position: absolute;
  z-index: 2;
  bottom: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  font-size: 11px;
  font-weight: 750;
  backdrop-filter: blur(12px);
}

.media-label::before {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--green);
  content: "";
}

.media-link {
  display: block;
  cursor: zoom-in;
}

.media-link img {
  transition: transform 350ms ease;
}

.media-link:hover img {
  transform: scale(1.012);
}

.mini-shot-grid {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 14px;
}

.mini-shot-grid .media-card:first-child {
  grid-row: span 2;
}

.mini-shot-grid .media-card img {
  height: 100%;
}

.integration-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
  margin-top: 30px;
}

.integration-card {
  position: relative;
  overflow: hidden;
  min-height: 184px;
  padding: 22px;
  border-radius: var(--radius);
}

.integration-card::after {
  position: absolute;
  right: -30px;
  bottom: -50px;
  width: 120px;
  height: 120px;
  border-radius: 999px;
  background: var(--accent, var(--green));
  content: "";
  filter: blur(48px);
  opacity: 0.07;
}

.integration-instagram {
  --accent: #ee6ca7;
}

.integration-messenger {
  --accent: #65a9ff;
}

.integration-ai {
  --accent: #72f2ad;
}

.integration-tiktok {
  --accent: #2dd4bf;
}

.split-copy > p.integration-note {
  margin-top: 20px;
  font-size: 13px;
}

.integration-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 21px;
}

.channel-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--accent, var(--green)) 35%, transparent);
  border-radius: 13px;
  background: color-mix(in srgb, var(--accent, var(--green)) 11%, transparent);
  color: var(--accent, var(--green));
}

.channel-mark svg {
  width: 21px;
  height: 21px;
}

.status-pill,
.tag {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
}

.status-pill {
  gap: 6px;
  padding: 5px 8px;
  color: var(--green-deep);
}

.status-pill::before {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--green);
  content: "";
}

.status-pill.soon {
  color: #8b6a12;
}

.status-pill.soon::before {
  background: var(--warning);
}

.integration-card h3 {
  margin-bottom: 7px;
}

.dashboard-shell {
  padding: 18px;
  border: 1px solid var(--line-strong);
  border-radius: 30px;
  background: linear-gradient(145deg, #ffffff, #eef6f1);
  box-shadow: 0 32px 90px rgba(31, 77, 49, 0.14);
}

.tab-list {
  display: flex;
  gap: 7px;
  margin-bottom: 14px;
  overflow-x: auto;
  scrollbar-width: none;
}

.tab-list::-webkit-scrollbar {
  display: none;
}

.tab-button {
  flex: 0 0 auto;
  padding: 9px 13px;
  border: 1px solid transparent;
  border-radius: 10px;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.tab-button[aria-selected="true"] {
  border-color: var(--line-strong);
  background: rgba(45, 170, 102, 0.1);
  color: var(--green-deep);
}

.tab-panel[hidden] {
  display: none;
}

.tab-panel {
  overflow: hidden;
  border-radius: 16px;
  background: #eef4f0;
}

.tab-panel img {
  width: 100%;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 30px;
}

.stat-card {
  padding: 21px;
  border-radius: 17px;
}

.stat-card strong,
.stat-card span {
  display: block;
}

.stat-card strong {
  font-size: 18px;
  letter-spacing: -0.025em;
}

.stat-card span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
}

.format-row,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.format-badge {
  display: inline-flex;
  min-width: 74px;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #fff;
  color: #405147;
  font-size: 12px;
  font-weight: 850;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}

.section-action {
  margin-top: 30px;
  text-align: center;
}

.feature-card {
  position: relative;
  min-height: 240px;
  padding: 26px;
  border-radius: var(--radius);
}

.feature-card.span-3 {
  grid-column: span 3;
}

.feature-card.span-4 {
  grid-column: span 4;
}

.feature-card.span-5 {
  grid-column: span 5;
}

.feature-card.span-6 {
  grid-column: span 6;
}

.feature-card.tall {
  min-height: 340px;
}

.feature-number {
  position: absolute;
  top: 20px;
  right: 22px;
  color: rgba(24, 60, 39, 0.18);
  font-size: 12px;
  font-weight: 850;
}

.feature-card .icon-box {
  margin-bottom: 34px;
}

.feature-card .tag-row {
  margin-top: 19px;
}

.tag {
  padding: 5px 9px;
  color: var(--muted);
}

.shot-gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}

.gallery-card {
  position: relative;
  grid-column: span 4;
  overflow: hidden;
  min-height: 280px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.gallery-card.wide {
  grid-column: span 8;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  object-position: top left;
  transition: transform 380ms ease;
}

.gallery-card:hover img {
  transform: scale(1.018);
}

.gallery-caption {
  position: absolute;
  z-index: 2;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 14px 15px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(4, 12, 8, 0.85);
  backdrop-filter: blur(16px);
}

.gallery-caption strong,
.gallery-caption span {
  display: block;
}

.gallery-caption strong {
  color: #fff;
  font-size: 14px;
}

.gallery-caption span {
  margin-top: 3px;
  color: #b8c7be;
  font-size: 11px;
}

.security-panel {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 50px;
  padding: clamp(28px, 5vw, 62px);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 85% 10%, rgba(45, 170, 102, 0.1), transparent 22rem),
    linear-gradient(145deg, #ffffff, #f1f8f4);
  box-shadow: var(--shadow);
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.security-item {
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.76);
}

.security-item strong,
.security-item span {
  display: block;
}

.security-item strong {
  font-size: 13px;
}

.security-item span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
}

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

.faq-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 26px rgba(31, 77, 49, 0.04);
}

.faq-item[open] {
  border-color: var(--line-strong);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 22px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  transform: rotate(45deg);
  border-right: 2px solid var(--green-bright);
  border-bottom: 2px solid var(--green-bright);
  content: "";
  transition: transform 180ms ease;
}

.faq-item[open] summary::after {
  transform: rotate(225deg);
}

.faq-answer {
  padding: 0 22px 22px;
  color: var(--muted);
  font-size: 14px;
}

.cta-section {
  padding: 52px 0 110px;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(38px, 7vw, 80px);
  border: 1px solid rgba(45, 170, 102, 0.24);
  border-radius: 32px;
  background:
    radial-gradient(circle at 80% 20%, rgba(92, 204, 142, 0.14), transparent 22rem),
    linear-gradient(135deg, #f5fbf7, #eaf6ef 70%);
  box-shadow: 0 28px 80px rgba(31, 77, 49, 0.1);
  text-align: center;
}

.cta-panel::before {
  position: absolute;
  top: -80px;
  left: -80px;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(45, 170, 102, 0.16);
  border-radius: 999px;
  content: "";
}

.cta-panel p {
  max-width: 660px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 18px;
}

.cta-panel .hero-actions {
  margin-top: 27px;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 46px;
  padding: 62px 0 46px;
}

.footer-brand p {
  max-width: 340px;
  margin-top: 19px;
  color: var(--muted);
  font-size: 13px;
}

.footer-column h2 {
  margin-bottom: 16px;
  color: #34473b;
  font-size: 12px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-links a {
  color: var(--muted);
  font-size: 13px;
}

.footer-links a:hover {
  color: var(--text);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0 30px;
  border-top: 1px solid var(--line);
  color: var(--muted-2);
  font-size: 11px;
}

.footer-bottom p {
  margin: 0;
}

.page-hero {
  padding: 90px 0 70px;
  text-align: center;
}

.page-hero h1 {
  max-width: 980px;
  margin-inline: auto;
}

.page-nav {
  position: sticky;
  z-index: 30;
  top: calc(var(--header-height) + 12px);
  display: flex;
  gap: 6px;
  width: min(calc(100% - 40px), 960px);
  margin: -30px auto 40px;
  padding: 7px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 38px rgba(31, 77, 49, 0.1);
  backdrop-filter: blur(18px);
  scrollbar-width: none;
}

.page-nav::-webkit-scrollbar {
  display: none;
}

.page-nav a {
  flex: 0 0 auto;
  padding: 8px 12px;
  border-radius: 9px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.page-nav a:hover {
  background: rgba(45, 170, 102, 0.08);
  color: var(--text);
}

.resource-section {
  padding: 82px 0;
  border-top: 1px solid var(--line);
}

.resource-header {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 38px;
}

.resource-header h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.resource-header p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

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

.resource-card {
  padding: 24px;
  border-radius: var(--radius);
}

.resource-card .icon-box {
  margin-bottom: 23px;
}

.resource-card ul {
  display: grid;
  gap: 7px;
  margin: 15px 0 0;
  padding: 0;
  list-style: none;
}

.resource-card li {
  position: relative;
  padding-left: 15px;
  color: var(--muted);
  font-size: 12px;
}

.resource-card li::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--green);
  content: "";
}

.resource-shot {
  margin-top: 28px;
}

.lightbox {
  width: min(94vw, 1500px);
  max-height: 92vh;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  background: #fff;
  color: var(--text);
  box-shadow: 0 40px 140px rgba(0, 0, 0, 0.42);
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(8px);
}

.lightbox-bar {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 12px 10px 18px;
  border-bottom: 1px solid var(--line);
}

.lightbox-caption {
  min-width: 0;
  overflow: hidden;
  font-size: 13px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lightbox-close {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
}

.lightbox-close svg {
  width: 18px;
}

.lightbox-image-wrap {
  max-height: calc(92vh - 52px);
  overflow: auto;
}

.lightbox img {
  width: 100%;
}

.js .reveal {
  transform: translateY(22px);
  opacity: 0;
  transition: transform 650ms cubic-bezier(0.2, 0.75, 0.25, 1), opacity 650ms ease;
}

.js .reveal.is-visible {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 1060px) {
  .main-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .main-nav.is-open {
    position: fixed;
    z-index: 80;
    top: calc(var(--header-height) - 1px);
    right: 0;
    left: 0;
    display: grid;
    gap: 3px;
    max-height: calc(100vh - var(--header-height));
    padding: 18px 20px 28px;
    overflow-y: auto;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.98);
  }

  .main-nav.is-open a {
    padding: 13px 14px;
    font-size: 16px;
  }

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

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .split,
  .split.reverse,
  .security-panel {
    grid-template-columns: 1fr;
  }

  .split.reverse .split-copy,
  .split.reverse .split-media {
    order: initial;
  }

  .feature-card.span-3,
  .feature-card.span-4 {
    grid-column: span 6;
  }

  .feature-card.span-5,
  .feature-card.span-6 {
    grid-column: span 6;
  }

  .gallery-card,
  .gallery-card.wide {
    grid-column: span 6;
  }

  .footer-grid {
    grid-template-columns: 1.3fr repeat(3, 1fr);
    gap: 26px;
  }

  .resource-header {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 68px;
  }

  .container,
  .narrow {
    width: min(calc(100% - 28px), var(--container));
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .brand-copy strong {
    font-size: 13px;
  }

  .brand-copy span {
    font-size: 9px;
  }

  .header-actions .button-ghost,
  .header-actions .button-primary {
    display: none;
  }

  .announcement .container {
    padding: 8px 0;
    line-height: 1.3;
  }

  .hero {
    padding: 66px 0 46px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(40px, 13vw, 60px);
  }

  .hero-copy {
    margin-bottom: 40px;
  }

  .hero-actions {
    display: grid;
  }

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

  .product-stage {
    padding-inline: 0;
  }

  .browser-frame {
    overflow-x: auto;
    border-radius: 17px;
  }

  .browser-frame > img {
    width: 880px;
    max-width: none;
  }

  .proof-meta,
  .proof-ai {
    display: none;
  }

  .trust-strip {
    padding-bottom: 55px;
  }

  .trust-grid,
  .value-grid,
  .integration-grid,
  .stat-grid,
  .security-grid,
  .resource-grid {
    grid-template-columns: 1fr;
  }

  .trust-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .section,
  .resource-section {
    padding: 74px 0;
  }

  .section-tight {
    padding: 54px 0;
  }

  .section-heading {
    margin-bottom: 32px;
  }

  .section-heading h2,
  .split-copy h2,
  .cta-panel h2 {
    font-size: clamp(32px, 11vw, 46px);
  }

  .section-heading p,
  .split-copy > p,
  .cta-panel p {
    font-size: 16px;
  }

  .value-card {
    min-height: auto;
  }

  .mini-shot-grid {
    grid-template-columns: 1fr;
  }

  .mini-shot-grid .media-card:first-child {
    grid-row: auto;
  }

  .dashboard-shell {
    padding: 9px;
    border-radius: 19px;
  }

  .tab-panel {
    overflow-x: auto;
  }

  .tab-panel img {
    width: 900px;
    max-width: none;
  }

  .feature-card.span-3,
  .feature-card.span-4,
  .feature-card.span-5,
  .feature-card.span-6,
  .gallery-card,
  .gallery-card.wide {
    grid-column: 1 / -1;
  }

  .feature-card,
  .feature-card.tall {
    min-height: auto;
  }

  .gallery-card,
  .gallery-card img {
    min-height: 235px;
  }

  .security-panel {
    gap: 30px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .page-hero {
    padding: 65px 0 55px;
  }

  .page-nav {
    top: calc(var(--header-height) + 8px);
    width: calc(100% - 20px);
    margin-bottom: 24px;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }

  .cta-panel {
    padding-inline: 24px;
  }
}

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

  .js .reveal {
    transform: none;
    opacity: 1;
  }
}
