:root {
  --bg: #0d0d0d;
  --bg-deep: #090909;
  --surface: #141414;
  --surface-soft: #1a1a1a;
  --surface-strong: #222222;
  --line: #2c2c2c;
  --line-soft: #1f1f1f;
  --text: #e0e0e0;
  --muted: #a8a8a8;
  --accent: #1a4a8a;
  --accent-2: #2e65b0;
  --accent-3: #7aaad8;
  --danger: #d98874;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 10px 24px rgba(0, 0, 0, 0.36);
  --container: 1160px;
  --ease: 280ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  scrollbar-gutter: stable both-edges;
}

html::-webkit-scrollbar {
  width: 8px;
}

html::-webkit-scrollbar-track {
  background: transparent;
}

html::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 99px;
}

html::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.22);
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  background-color: var(--bg-deep);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-image:
    linear-gradient(168deg, #090909 0%, #0d0d0d 44%, #090909 100%),
    radial-gradient(circle at 12% -10%, rgba(26, 74, 138, 0.07), transparent 52%),
    radial-gradient(circle at 84% 0%, rgba(26, 74, 138, 0.05), transparent 46%);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 30% 45%, rgba(26, 74, 138, 0.14) 0%, rgba(26, 74, 138, 0.07) 30%, rgba(26, 74, 138, 0.02) 56%, transparent 74%),
    radial-gradient(circle at 15% -8%, rgba(26, 74, 138, 0.05), transparent 48%),
    radial-gradient(circle at 84% 8%, rgba(26, 74, 138, 0.04), transparent 42%);
  z-index: -1;
}

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

h1,
h2,
h3,
h4 {
  font-family: "Inter", sans-serif;
  line-height: 1.2;
  margin: 0;
}

p {
  margin: 0;
}

.container {
  width: min(100% - 2.25rem, var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(8px);
  background: rgba(9, 9, 9, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-icon {
  width: 1.9rem;
  height: 1.9rem;
  object-fit: contain;
  display: block;
  flex: 0 0 auto;
}

.brand-text {
  font-size: 1.08rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.site-nav a {
  color: #ffffff;
  font-weight: 500;
  transition: color var(--ease);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.menu-toggle {
  display: none;
  border: none;
  background: transparent;
  border-radius: 0;
  width: 42px;
  height: 42px;
  color: var(--text);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  display: block;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(0.75rem, 1.5vw, 1.5rem);
  padding-top: clamp(3rem, 8vw, 5.75rem);
  padding-bottom: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  position: relative;
  isolation: isolate;
}

.hero-copy {
  position: relative;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--accent-3);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.hero h1 {
  font-size: clamp(1.8rem, 4.5vw, 3.7rem);
  max-width: 16ch;
  margin-bottom: 1rem;
}

.hero-emphasis {
  color: #e8e8e8;
  background: linear-gradient(90deg, #f2f2f2 0%, #aaccee 78%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 18px rgba(100, 150, 220, 0.22);
}

.hero-lead {
  color: var(--muted);
  max-width: 58ch;
  font-size: clamp(1rem, 2.1vw, 1.15rem);
}

.hero-actions {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.hero-price {
  font-size: 0.95rem;
  font-weight: 600;
  color: #5878a8;
}

.hero-price-display {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  line-height: 1;
}

.hero-price-original {
  font-size: 0.92rem;
  font-weight: 600;
  color: #666;
  text-decoration: line-through;
  text-decoration-color: #555;
  padding-left: 0.1rem;
}

.hero-price-display > div {
  display: flex;
  align-items: flex-start;
  gap: 0.15rem;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 1.8rem;
  flex-wrap: wrap;
}

.hero-cta-left {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.hero-sale-badge {
  display: inline-block;
  width: fit-content;
  padding: 0.22em 0.75em;
  border-radius: 99px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #1a8a4a, #22c55e);
  color: #fff;
  border: 1px solid rgba(34, 197, 94, 0.5);
  margin-bottom: 0.5rem;
}

.hero-price-currency {
  font-family: "Inter", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #f2f2f2;
  margin-top: 0.45rem;
}

.hero-price-number {
  font-family: "Inter", sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: #f2f2f2;
  line-height: 1;
  letter-spacing: -0.02em;
}

.hero-price-period {
  font-size: 0.82rem;
  color: var(--muted);
  align-self: flex-end;
  margin-bottom: 0.55rem;
  margin-left: 0.25rem;
}

.hero-note {
  margin-top: 0.55rem;
  color: #5878a8;
  font-size: 0.86rem;
}

.hero-cta-inline {
  display: flex;
  align-items: flex-end;
  gap: 1rem;
}



.btn {
  border: 1px solid rgba(26, 74, 138, 0.7);
  border-radius: 999px;
  padding: 0.72rem 1.25rem;
  font-family: "Inter", sans-serif;
  font-weight: 650;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  transition: transform var(--ease), background-color var(--ease), border-color var(--ease), color var(--ease);
  background: linear-gradient(135deg, #1e55a0, #162f6e);
  color: #f0f4ff;
  box-shadow: 0 8px 22px rgba(26, 74, 138, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  background: linear-gradient(135deg, #2460b0, #1a4a8a);
  border-color: rgba(46, 101, 176, 0.8);
}

.btn-ghost {
  background: var(--surface);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: var(--surface-soft);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: none;
}

.btn-small {
  padding-inline: 1rem;
  padding-block: 0.48rem;
  font-size: 0.85rem;
}

.btn-wide {
  width: 100%;
}

.btn-disabled {
  opacity: 0.55;
  cursor: default;
  pointer-events: none;
}

.hero-points {
  list-style: none;
  margin: 1.2rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
  color: var(--muted);
}

.hero-points li {
  position: relative;
  padding-left: 1.5rem;
}

.hero-points li::before {
  content: "";
  position: absolute;
  top: 0.52rem;
  left: 0;
  width: 0.8rem;
  height: 0.42rem;
  border-left: 2px solid var(--accent-2);
  border-bottom: 2px solid var(--accent-2);
  transform: rotate(-45deg);
}

.hero-app-preview {
  position: relative;
  display: grid;
  justify-items: center;
  align-items: center;
  padding-left: 0;
}

.app-mockup {
  margin: 4% 0 0;
  width: 100%;
  border-radius: 0;
  border: none;
  background: transparent;
  overflow: visible;
  box-shadow: none;
  position: relative;
  transform: none;
}

.app-layer {
  position: relative;
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  image-rendering: auto;
  backface-visibility: visible;
  transform: none;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.72)) drop-shadow(0 8px 16px rgba(0, 0, 0, 0.5));
}

.app-light {
  -webkit-mask-image: none;
  mask-image: none;
}

.section {
  padding-block: clamp(2rem, 5vw, 3.5rem);
}

.section-heading,
.section-intro {
  max-width: 760px;
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 1.25rem;
  border-left: 2px solid rgba(26, 74, 138, 0.35);
}

.section-heading h2,
.section-intro h2 {
  margin-bottom: 0.62rem;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  text-wrap: balance;
  color: #f2f2f2;
  letter-spacing: -0.01em;
}

.section-heading p:not(.eyebrow),
.section-intro p:not(.eyebrow) {
  color: var(--muted);
}

.card-grid {
  margin-top: 1.55rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.info-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 1.2rem;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.info-card h3 {
  font-size: 1.08rem;
  margin-bottom: 0.6rem;
}

.info-card p {
  color: var(--muted);
  margin-bottom: 0.8rem;
}

.info-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
}

.pas-list {
  margin: 0 0 0.7rem 1.1rem;
  padding: 0;
  display: grid;
  gap: 0.38rem;
  color: #b4b4b4;
}

.pas-list li {
  padding-left: 0.1rem;
}

.info-card ul li {
  padding-left: 1.1rem;
  position: relative;
  color: #b4b4b4;
}

.info-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: var(--accent-2);
}

.section-alt {
  background: rgba(10, 10, 10, 0.7);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.2rem;
  align-items: start;
}

.feature-copy h2 {
  margin-bottom: 0.8rem;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
}

.feature-copy .section-intro p + p {
  margin-top: 0.65rem;
}

.feature-points {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
}

.feature-points article {
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 14px;
  background: var(--surface-soft);
  padding: 0.95rem;
}

.feature-points h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.feature-points p {
  color: var(--muted);
  font-size: 0.93rem;
}

.integration-grid {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
}

.integration-card {
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 14px;
  background: color-mix(in srgb, var(--surface) 90%, #000 10%);
  padding: 1rem;
  box-shadow: var(--shadow);
  text-align: center;
}

.integration-head {
  display: grid;
  justify-items: center;
  gap: 0.5rem;
  margin-bottom: 0.7rem;
}

.integration-head h3 {
  font-size: 1.03rem;
}

.integration-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  line-height: 0;
}

.integration-logo svg {
  width: 2.55rem;
  height: 2.55rem;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.32));
}

.logo-email svg,
.logo-webhook svg {
  fill: none;
  stroke: #e0e0e0;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.logo-twilio svg {
  fill: #f2465f;
}

.logo-twilio svg > circle:first-child {
  fill: none;
  stroke: #f2465f;
  stroke-width: 1.8;
}

.integration-card > p {
  color: var(--muted);
  font-size: 0.93rem;
}

.integration-meta {
  margin-top: 0.55rem;
  color: #d3d3d3;
  font-size: 0.86rem;
}

.policy-panel {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 1.2rem;
}

.policy-panel h3 {
  font-size: 1.05rem;
}

.policy-title {
  margin-top: 0.25rem;
  color: var(--accent);
  font-weight: 600;
}

.policy-list {
  list-style: none;
  margin: 1rem 0 1.1rem;
  padding: 0;
  display: grid;
  gap: 0.72rem;
}

.policy-list li {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0.75rem;
  background: #111111;
  display: grid;
  gap: 0.2rem;
}

.policy-list span {
  color: var(--muted);
  font-size: 0.83rem;
}

.policy-list strong {
  font-size: 0.94rem;
  color: #e0e0e0;
}

.cta-band {
  background: rgba(10, 10, 10, 0.8);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  align-items: stretch;
}

.cta-grid > .section-intro {
  margin-bottom: 0;
}

.cta-grid h2 {
  margin-bottom: 0.7rem;
  font-size: clamp(1.45rem, 4vw, 2.2rem);
}

.interest-form {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 1.1rem;
  background: var(--surface);
  box-shadow: var(--shadow);
  display: grid;
  gap: 0.75rem;
}

.interest-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.91rem;
  font-weight: 600;
}

.interest-form input,
.interest-form textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #0f0f0f;
  color: var(--text);
  padding: 0.65rem 0.75rem;
  font: inherit;
}

.interest-form input:focus,
.interest-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(26, 74, 138, 0.28);
}

.form-status {
  font-size: 0.9rem;
  min-height: 0;
  margin: 0;
}

.form-status:empty {
  display: none;
}

.form-status--success {
  color: #6ecf8a;
}

.form-status--error {
  color: var(--danger);
}

.muted {
  color: var(--muted);
  font-size: 0.88rem;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-block: 1.15rem;
  background: #080808;
  margin-top: auto;
}

section[id] {
  scroll-margin-top: 96px;
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-wrap a {
  color: #2e65b0;
  font-weight: 600;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms var(--ease), transform 600ms var(--ease);
}

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

/* ══════════════════════════════════════════
   DEMO VIDEO
══════════════════════════════════════════ */

.demo-video-wrap {
  margin-top: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.demo-video-wrap video {
  width: 100%;
  max-height: 70vh;
  display: block;
  object-fit: contain;
  background: #000;
}

/* ══════════════════════════════════════════
   PROOF STRIP — COLOR-CODED FLOW STEPS
══════════════════════════════════════════ */

/* ══════════════════════════════════════════
   PROBLEM CARDS — COLOR VARIANTS + ICONS
══════════════════════════════════════════ */

.info-card-icon {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.info-card-icon svg {
  width: 1.45rem;
  height: 1.45rem;
}

.info-card--problem {
  border-color: rgba(200, 65, 55, 0.3);
  background: linear-gradient(155deg, rgba(36, 14, 14, 0.72) 0%, var(--surface) 55%);
}

.info-card--problem .info-card-icon {
  background: rgba(200, 65, 55, 0.16);
  color: #e89090;
  border: 1px solid rgba(200, 65, 55, 0.28);
}

.info-card--pain {
  border-color: rgba(188, 138, 36, 0.3);
  background: linear-gradient(155deg, rgba(34, 26, 8, 0.72) 0%, var(--surface) 55%);
}

.info-card--pain .info-card-icon {
  background: rgba(188, 138, 36, 0.16);
  color: #e8c870;
  border: 1px solid rgba(188, 138, 36, 0.28);
}

.info-card--solution {
  border-color: rgba(26, 74, 138, 0.34);
  background: linear-gradient(155deg, rgba(8, 20, 44, 0.8) 0%, var(--surface) 55%);
}

.info-card--solution .info-card-icon {
  background: rgba(26, 74, 138, 0.18);
  color: #7aaad8;
  border: 1px solid rgba(26, 74, 138, 0.28);
}

/* ══════════════════════════════════════════
   HOW IT WORKS — STEPS LAYOUT
══════════════════════════════════════════ */

.steps-intro {
  text-align: center;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 700;
  font-family: var(--font-head);
  color: var(--text);
  margin: 2.5rem 0 0;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line);
}

.steps-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 2.4rem;
  position: relative;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 0 1.2rem;
}

.step-bubble {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e1e1e, #131313);
  border: 1px solid rgba(26, 74, 138, 0.42);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2e65b0;
  box-shadow: 0 0 0 8px rgba(26, 74, 138, 0.06), 0 8px 26px rgba(0, 0, 0, 0.4);
  flex-shrink: 0;
  z-index: 1;
  position: relative;
}

.step-bubble svg {
  width: 1.65rem;
  height: 1.65rem;
}

.step-connector {
  position: absolute;
  top: 36px;
  left: calc(50% + 36px);
  width: calc(100% - 72px);
  height: 1px;
  background: linear-gradient(90deg, rgba(26, 74, 138, 0.42), rgba(26, 74, 138, 0.04));
  pointer-events: none;
}

.step-item:last-child .step-connector {
  display: none;
}

.step-content {
  margin-top: 1.4rem;
  text-align: center;
  padding: 0 0.3rem;
}

.step-num {
  font-family: "Inter", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 0.35rem;
  text-transform: uppercase;
}

.step-content h3 {
  font-size: 1.08rem;
  margin-bottom: 0.52rem;
}

.step-content p {
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.65;
}

/* ══════════════════════════════════════════
   PRICING — MULTI-TIER GRID
══════════════════════════════════════════ */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.8rem;
}

.tier-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  position: relative;
}

.tier-card--highlight {
  border-color: rgba(26, 74, 138, 0.5);
  background: linear-gradient(155deg, rgba(10, 22, 44, 0.6) 0%, var(--surface) 55%);
}

.tier-badge {
  display: inline-block;
  padding: 0.18em 0.7em;
  background: rgba(26, 74, 138, 0.18);
  color: var(--accent-3);
  border: 1px solid rgba(26, 74, 138, 0.3);
  border-radius: 99px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  align-self: flex-start;
}

.tier-savings {
  position: absolute;
  top: -1px;
  right: -1px;
  padding: 0.55rem 1rem 0.45rem;
  background: linear-gradient(135deg, #1a6b3c, #0f4a28);
  color: #a8f0c8;
  border-radius: 0 var(--radius) 0 12px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  border: 1px solid rgba(38, 158, 78, 0.35);
  border-top: none;
  border-right: none;
  box-shadow: -2px 2px 8px rgba(0, 0, 0, 0.3);
}

.tier-card h3 {
  font-size: 1rem;
  font-weight: 700;
}

.tier-amount {
  display: flex;
  align-items: flex-start;
  gap: 0.15rem;
  line-height: 1;
  flex-wrap: wrap;
}

.tier-original {
  width: 100%;
  font-size: 0.88rem;
  color: #666;
  text-decoration: line-through;
  text-decoration-color: #555;
  margin-bottom: 0.15rem;
}

.sale-banner {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.8rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid rgba(34, 197, 94, 0.35);
  background: linear-gradient(135deg, rgba(18, 50, 28, 0.6) 0%, rgba(34, 197, 94, 0.08) 100%);
}

.sale-banner-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 10px;
  background: rgba(34, 197, 94, 0.18);
  color: #6ee7a0;
}

.sale-banner-icon svg {
  width: 1.2rem;
  height: 1.2rem;
}

.sale-banner-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.sale-banner-text strong {
  font-size: 1rem;
  color: #6ee7a0;
}

.sale-banner-text span {
  font-size: 0.88rem;
  color: var(--muted);
}

.tier-currency {
  font-size: 1.1rem;
  font-weight: 700;
  color: #f2f2f2;
  margin-top: 0.3rem;
}

.tier-number {
  font-size: 2.4rem;
  font-weight: 800;
  color: #f2f2f2;
  letter-spacing: -0.02em;
}


.tier-period {
  font-size: 0.82rem;
  color: var(--muted);
  align-self: flex-end;
  margin-bottom: 0.4rem;
  margin-left: 0.2rem;
}

.tier-desc {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.tier-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
}

.tier-features li {
  padding-left: 1.3rem;
  position: relative;
  font-size: 0.87rem;
  color: #b4b4b4;
  line-height: 1.45;
}

.tier-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48rem;
  width: 0.7rem;
  height: 0.38rem;
  border-left: 2px solid var(--accent-2);
  border-bottom: 2px solid var(--accent-2);
  transform: rotate(-45deg);
}

.tier-note {
  margin-top: auto;
  background: rgba(26, 74, 138, 0.08);
  border: 1px solid rgba(26, 74, 138, 0.22);
  border-radius: 8px;
  padding: 0.7rem 0.85rem;
  font-size: 0.82rem;
  color: #788898;
  line-height: 1.55;
}

.tier-note strong {
  color: #f0f4ff;
}

.pricing-cta {
  text-align: center;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.pricing-cta .btn {
  font-size: 1rem;
  padding: 0.85rem 2.2rem;
}

.pricing-footer {
  color: #5a5a5a;
  font-size: 0.82rem;
  line-height: 1.35;
}

.pricing-footer-lines {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.pricing-includes-label {
  font-family: "Inter", sans-serif;
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  font-weight: 700;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.68rem;
}

.pricing-features li {
  padding-left: 1.55rem;
  position: relative;
  font-size: 0.94rem;
  color: #b4b4b4;
  line-height: 1.5;
}

.pricing-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.78rem;
  height: 0.42rem;
  border-left: 2px solid var(--accent-2);
  border-bottom: 2px solid var(--accent-2);
  transform: rotate(-45deg);
}

@media (max-width: 1080px) {
  .hero {
    gap: clamp(2.4rem, 5.4vw, 4rem);
  }

  .app-mockup {
    margin-top: 4%;
    width: 100%;
    transform: none;
  }

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

  .card-grid,
  .feature-points {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 880px) {
  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    background: var(--surface);
    flex-direction: column;
    align-items: stretch;
    min-width: 220px;
    padding: 0.6rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity var(--ease), transform var(--ease);
  }

  .site-nav a {
    padding: 0.55rem 0.7rem;
    border-radius: 10px;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: var(--surface-soft);
  }

  .site-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero,
  .feature-layout,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .hero-cta-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
  }

  .hero-price-number {
    font-size: 2.8rem;
  }

  .hero-price-currency {
    font-size: 1.1rem;
    margin-top: 0.3rem;
  }

  .steps-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .step-item {
    flex-direction: row;
    align-items: flex-start;
    gap: 1.3rem;
    padding: 0;
  }

  .step-bubble {
    flex-shrink: 0;
  }

  .step-connector {
    display: none;
  }

  .step-content {
    text-align: left;
    margin-top: 0.1rem;
    padding: 0;
  }

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

  .hero-app-preview {
    margin-top: 0;
    justify-items: center;
    padding-left: 0;
    overflow: visible;
  }

  .app-mockup {
    margin-top: 0;
    width: 100%;
    max-width: 640px;
    transform: none;
    border-radius: 0;
  }

  .section {
    padding-block: clamp(2.4rem, 7vw, 3.5rem);
  }

  .section-heading,
  .section-intro {
    margin-bottom: 1rem;
    padding-top: 0.6rem;
  }

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

@media (max-width: 600px) {
  .container {
    width: min(100% - 2.5rem, var(--container));
  }

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

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

  .site-header {
    backdrop-filter: blur(4px);
  }

  .btn,
  .btn-ghost,
  .btn-small {
    width: 100%;
  }

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

  .hero-price-number {
    font-size: 2.2rem;
  }

  .hero-price-currency {
    font-size: 0.95rem;
    margin-top: 0.25rem;
  }

  .hero-actions {
    width: 100%;
  }

  .hero h1 {
    max-width: 15ch;
  }

  .app-mockup {
    border-radius: 0;
  }
}

/* ── Architecture Grid (How It Works) ── */
.arch-grid {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin: 0.5rem 0 3rem;
}

.arch-card {
  flex: 1;
  position: relative;
  background: color-mix(in srgb, var(--surface) 90%, #000 10%);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 14px;
  padding: 1.6rem 1.25rem 1.4rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.arch-card--watchdog {
  border-color: color-mix(in srgb, var(--accent-2) 55%, transparent);
  background: color-mix(in srgb, var(--accent) 12%, var(--surface));
}

.arch-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: color-mix(in srgb, var(--accent) 22%, transparent);
  border-radius: 10px;
  margin-bottom: 0.25rem;
  flex-shrink: 0;
}

.arch-card-icon svg {
  width: 1.45rem;
  height: 1.45rem;
  stroke: var(--accent-3);
}

.arch-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}

.arch-card > p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

.arch-card-badge {
  display: inline-block;
  margin-top: 0.4rem;
  padding: 0.18em 0.7em;
  background: color-mix(in srgb, var(--accent) 35%, transparent);
  color: var(--accent-3);
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.arch-arrow {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  padding: 0 0.1rem;
}

.arch-arrow svg {
  width: 1.1rem;
  height: 1.1rem;
  stroke: var(--line);
  flex-shrink: 0;
}

@media (max-width: 720px) {
  .arch-grid {
    flex-direction: column;
    gap: 0.75rem;
  }
  .arch-arrow {
    width: auto;
    height: 1.5rem;
    transform: rotate(90deg);
  }
}

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

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

/* ══════════════════════════════════════════
BLOG — INDEX + ARTICLE PAGES
══════════════════════════════════════════ */

.blog-hero {
  padding-top: clamp(3rem, 8vw, 5rem);
  padding-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

.blog-hero h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}

.blog-hero-desc {
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.1rem);
  max-width: 60ch;
}

.blog-filter-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.blog-pills {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.blog-pill {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 99px;
  background: var(--surface);
  color: var(--muted);
  font-family: "Inter", sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.4rem 0.85rem;
  cursor: pointer;
  transition: background var(--ease), color var(--ease), border-color var(--ease);
}

.blog-pill:hover {
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--text);
}

.blog-pill.active {
  background: rgba(26, 74, 138, 0.2);
  border-color: rgba(26, 74, 138, 0.5);
  color: var(--accent-3);
}

.blog-search-wrap {
  position: relative;
  flex: 1;
  min-width: 180px;
  max-width: 320px;
}

.blog-search-icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  color: var(--muted);
  pointer-events: none;
}

.blog-search {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 99px;
  background: var(--surface);
  color: var(--text);
  font-family: "Inter", sans-serif;
  font-size: 0.88rem;
  padding: 0.5rem 0.85rem 0.5rem 2.2rem;
  transition: border-color var(--ease);
}

.blog-search::placeholder {
  color: #555;
}

.blog-search:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(26, 74, 138, 0.2);
}

.blog-empty {
  color: var(--muted);
  font-size: 0.95rem;
  padding: 2rem 0;
  text-align: center;
  grid-column: 1 / -1;
}

@media (max-width: 600px) {
  .blog-filter-bar {
    flex-direction: column;
    align-items: stretch;
  }
  .blog-search-wrap {
    max-width: none;
  }
}

.blog-grid {
  padding-bottom: clamp(3rem, 8vw, 5rem);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.blog-card {
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  transition: border-color var(--ease), transform var(--ease);
  text-decoration: none;
}

.blog-card:hover,
.blog-card:focus-visible {
  border-color: rgba(26, 74, 138, 0.5);
  transform: translateY(-2px);
}

.blog-card-tag {
  display: inline-block;
  padding: 0.18em 0.7em;
  background: rgba(26, 74, 138, 0.18);
  color: var(--accent-3);
  border: 1px solid rgba(26, 74, 138, 0.3);
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.blog-article-meta .blog-card-tag {
  margin-bottom: 0;
  font-size: 0.72rem;
}

.blog-card h2 {
  font-size: 1.15rem;
  margin-bottom: 0.55rem;
  line-height: 1.3;
}

.blog-card p {
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.55;
  margin-bottom: 0.85rem;
}

.blog-card time {
  color: #5a5a5a;
  font-size: 0.82rem;
}

/* Blog Article */

.blog-article {
  padding-top: clamp(3rem, 8vw, 5rem);
  padding-bottom: clamp(3rem, 8vw, 5rem);
  max-width: 100%;
}

.blog-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--accent-2);
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.blog-back-link:hover {
  color: var(--accent-3);
}

.blog-article-header {
  margin-bottom: 2.5rem;
}

.blog-article-header h1 {
  font-size: clamp(1.8rem, 4.5vw, 2.6rem);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.blog-article-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.blog-article-meta .blog-card-tag {
  margin-left: 0;
}

.blog-meta-sep {
  opacity: 0.4;
}

.blog-article-body h2 {
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.blog-article-body h3 {
  font-size: 1.15rem;
  margin-top: 1.8rem;
  margin-bottom: 0.55rem;
}

.blog-article-body p {
  color: #b4b4b4;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.blog-article-body ul,
.blog-article-body ol {
  color: #b4b4b4;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  display: grid;
  gap: 0.5rem;
}

.blog-article-body li {
  line-height: 1.65;
}

.blog-article-body code {
  background: var(--surface-strong);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 0.15em 0.4em;
  font-size: 0.88em;
  color: var(--accent-3);
}

.blog-article-body .btn {
  margin-top: 1.5rem;
}

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

/* Share Buttons */

.share-bar {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.share-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--surface);
  color: var(--muted);
  cursor: pointer;
  transition: border-color var(--ease), color var(--ease), background var(--ease), transform var(--ease);
  padding: 0;
}

.share-btn:hover,
.share-btn:focus-visible {
  border-color: rgba(26, 74, 138, 0.5);
  color: var(--accent-3);
  background: rgba(26, 74, 138, 0.12);
  transform: translateY(-1px);
}

.share-btn svg {
  width: 1.05rem;
  height: 1.05rem;
}

.share-btn--copy {
  position: relative;
}

.share-btn--copied {
  border-color: rgba(38, 158, 78, 0.5);
  color: #80e8a8;
  background: rgba(38, 158, 78, 0.12);
}
