/* ==========================================================================
   Red Volcano — one-pager
   Palette: Volcano Red #E23B2E · Near-black #12100F · Charcoal #1E1B1A
            Off-white #F7F5F2 · Ember Amber #F5A623
   Type:    Space Grotesk (display) · Inter (body)
   ========================================================================== */

:root {
  --ink: #12100F;
  --char: #1E1B1A;
  --char-2: #262220;
  --paper: #F7F5F2;
  --paper-dim: #EFEBE5;
  --red: #E23B2E;
  --red-deep: #C02A1F;    /* red for small text on light bg (AA) */
  --red-lift: #FF6F63;    /* red for small text on dark bg (AA) */
  --amber: #F5A623;
  --smoke: #A39C96;          /* muted text on dark */
  --stone: #6B645F;          /* muted text on light */
  --line-dark: rgba(247, 245, 242, 0.12);
  --line-light: rgba(18, 16, 15, 0.12);
  --radius: 6px;
  --radius-lg: 14px;
  --font-display: "Space Grotesk", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --shadow-card: 0 1px 2px rgba(18, 16, 15, 0.05), 0 12px 32px -12px rgba(18, 16, 15, 0.18);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset & base ---------- */

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0;
}

p { margin: 0; }

a { color: inherit; }

::selection { background: var(--red); color: #fff; }

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 2px;
  border-radius: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  padding: 12px 20px;
  background: var(--ink);
  color: var(--paper);
  font-weight: 600;
  text-decoration: none;
}
.skip-link:focus { left: 12px; top: 12px; }

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

/* Section rhythm */
.section { padding: 104px 0; }

.dark {
  background: var(--ink);
  color: var(--paper);
}

/* Eyebrow + section headers */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red-deep);
  margin-bottom: 18px;
}
.dark .eyebrow, .cta-final .eyebrow { color: var(--red-lift); }
.dark .eyebrow::before, .dark .eyebrow::after,
.cta-final .eyebrow::before { background: var(--red-lift); }
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--red);
}

.section-title {
  font-size: clamp(30px, 4.4vw, 46px);
  max-width: 18em;
}

.section-lede {
  margin-top: 18px;
  font-size: 18px;
  color: var(--stone);
  max-width: 38em;
}
.dark .section-lede { color: var(--smoke); }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s var(--ease), transform 0.2s var(--ease),
              box-shadow 0.2s var(--ease), border-color 0.2s var(--ease),
              color 0.2s var(--ease);
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 8px 20px -8px rgba(226, 59, 46, 0.55);
}
.btn-primary:hover {
  background: var(--red-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -10px rgba(226, 59, 46, 0.6);
}

.btn-ghost {
  background: transparent;
  color: inherit;
  border-color: currentColor;
}
.btn-ghost:hover { color: var(--amber); }
.on-light .btn-ghost:hover,
.btn-ghost.light-hover:hover { color: var(--red); border-color: var(--red); }

.btn-lg { padding: 17px 34px; font-size: 17px; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--paper);
  text-decoration: none;
  border-bottom: 2px solid var(--red);
  padding-bottom: 2px;
  transition: color 0.2s var(--ease), gap 0.2s var(--ease);
}
.text-link:hover { color: var(--amber); gap: 10px; }

/* ---------- Nav ---------- */

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(18, 16, 15, 0.82);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease),
              background-color 0.3s var(--ease);
}
.nav.scrolled {
  background: rgba(18, 16, 15, 0.94);
  border-bottom-color: var(--line-dark);
  box-shadow: 0 12px 32px -16px rgba(0, 0, 0, 0.6);
}

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

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--paper);
  text-decoration: none;
  white-space: nowrap;
}
.logo svg { flex: none; }
.logo .accent { color: var(--red); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--smoke);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}
.nav-links a:hover { color: var(--paper); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-cta .btn { padding: 10px 18px; font-size: 14px; }
.nav-cta .btn-ghost { color: var(--paper); border-color: var(--line-dark); }
.nav-cta .btn-ghost:hover { border-color: var(--paper); color: var(--paper); }

.nav-menu { display: none; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 10px;
  margin-right: -10px;
  cursor: pointer;
  color: var(--paper);
}
.nav-toggle .bar {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  margin: 5px 0;
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}
.nav-toggle[aria-expanded="true"] .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  padding: 176px 0 120px;
  overflow: hidden;
}

/* ember gradient + faint grid */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 520px at 82% 88%, rgba(226, 59, 46, 0.28), transparent 65%),
    radial-gradient(640px 420px at 70% 105%, rgba(245, 166, 35, 0.14), transparent 60%),
    radial-gradient(700px 400px at 8% -10%, rgba(226, 59, 46, 0.10), transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(247, 245, 242, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 245, 242, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(75% 75% at 50% 40%, #000 30%, transparent 100%);
  mask-image: radial-gradient(75% 75% at 50% 40%, #000 30%, transparent 100%);
  pointer-events: none;
}

.hero .container { position: relative; z-index: 1; }

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 10fr) minmax(0, 9fr);
  gap: 64px;
  align-items: center;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  border: 1px solid var(--line-dark);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--smoke);
  margin-bottom: 28px;
}
.hero-kicker .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 12px 2px rgba(226, 59, 46, 0.7);
}

.hero h1 {
  font-size: clamp(38px, 5.4vw, 62px);
  letter-spacing: -0.03em;
}
.hero h1 .glow {
  color: var(--red);
  text-shadow: 0 0 32px rgba(226, 59, 46, 0.35);
}

.hero-sub {
  margin-top: 24px;
  font-size: 19px;
  line-height: 1.65;
  color: var(--smoke);
  max-width: 33em;
}
.hero-sub strong { color: var(--paper); font-weight: 600; }

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-top: 36px;
}

.hero-trust {
  margin-top: 34px;
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--smoke);
}
.hero-trust .item { display: inline-block; }
.hero-trust .sep { color: var(--red-lift); margin: 0 8px; }

/* ---------- Product mock (Magma Web) ---------- */

.mock-wrap { position: relative; }
.mock-wrap::before {
  content: "";
  position: absolute;
  inset: 12% -6% -10% 10%;
  background: radial-gradient(closest-side, rgba(226, 59, 46, 0.32), transparent 72%);
  filter: blur(12px);
  pointer-events: none;
}

.mock {
  position: relative;
  background: var(--char);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  box-shadow:
    0 40px 80px -32px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  font-size: 11px;
  transform: perspective(1600px) rotateY(-6deg) rotateX(2deg);
}

.mock-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--char-2);
  border-bottom: 1px solid var(--line-dark);
}
.mock-bar .led { width: 9px; height: 9px; border-radius: 50%; background: rgba(247,245,242,0.18); }
.mock-bar .led:first-child { background: var(--red); }
.mock-bar .app {
  margin-left: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--smoke);
}
.mock-bar .app b { color: var(--red); }

.mock-body { display: grid; grid-template-columns: 128px 1fr; }

.mock-side {
  padding: 14px 12px;
  border-right: 1px solid var(--line-dark);
  background: rgba(0, 0, 0, 0.18);
}
.mock-side .flabel {
  font-family: var(--font-display);
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--smoke);
  margin: 12px 0 6px;
}
.mock-side .flabel:first-child { margin-top: 0; }
.mock-side .fchip {
  display: inline-block;
  padding: 3px 8px;
  margin: 0 4px 5px 0;
  border-radius: 100px;
  border: 1px solid var(--line-dark);
  font-size: 9.5px;
  color: rgba(247, 245, 242, 0.8);
}
.mock-side .fchip.on {
  background: rgba(226, 59, 46, 0.16);
  border-color: rgba(226, 59, 46, 0.55);
  color: #ffb0a8;
}

.mock-main { padding: 14px; min-width: 0; }
.mock-count {
  font-family: var(--font-display);
  font-size: 10px;
  color: var(--smoke);
  margin-bottom: 10px;
}
.mock-count b { color: var(--amber); font-size: 12px; }

.mock-table { width: 100%; border-collapse: collapse; }
.mock-table th {
  font-family: var(--font-display);
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: left;
  color: var(--smoke);
  padding: 0 8px 7px 0;
  border-bottom: 1px solid var(--line-dark);
}
.mock-table td {
  padding: 8px 8px 8px 0;
  border-bottom: 1px solid rgba(247, 245, 242, 0.06);
  color: rgba(247, 245, 242, 0.88);
  font-size: 10.5px;
  white-space: nowrap;
}
.mock-table .dom { font-weight: 600; }
.mock-table .chip {
  display: inline-block;
  padding: 2px 7px;
  margin-right: 4px;
  border-radius: 100px;
  font-size: 8.5px;
  font-weight: 600;
  background: rgba(245, 166, 35, 0.14);
  color: var(--amber);
}
.mock-table .chip.r { background: rgba(226, 59, 46, 0.16); color: #ff9d94; }
.mock-table .trend { color: var(--amber); font-weight: 700; }

.mock-meter {
  display: inline-block;
  width: 54px;
  height: 5px;
  border-radius: 3px;
  background: rgba(247, 245, 242, 0.1);
  overflow: hidden;
  vertical-align: middle;
}
.mock-meter i {
  display: block;
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--red), var(--amber));
}

.mock-alert {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 8px 10px;
  border-radius: var(--radius);
  border: 1px solid rgba(245, 166, 35, 0.35);
  background: rgba(245, 166, 35, 0.08);
  font-size: 10px;
  color: rgba(247, 245, 242, 0.9);
}
.mock-alert svg { flex: none; }
.mock-alert b { color: var(--amber); }

/* floating badge on the mock */
.mock-float {
  position: absolute;
  right: -14px;
  bottom: -22px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--paper);
  color: var(--ink);
  border-radius: 10px;
  box-shadow: 0 24px 48px -16px rgba(0, 0, 0, 0.65);
  font-family: var(--font-display);
}
.mock-float .num { font-size: 20px; font-weight: 700; color: var(--red); line-height: 1; }
.mock-float .lbl { font-size: 10.5px; font-weight: 500; color: var(--stone); line-height: 1.3; }

/* ---------- Problem ---------- */

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.pain-card {
  background: #fff;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 2px 4px rgba(18,16,15,0.05), 0 24px 48px -16px rgba(18, 16, 15, 0.22);
}

.icon-tile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(226, 59, 46, 0.09);
  color: var(--red);
  margin-bottom: 20px;
}

.pain-card h3 { font-size: 20px; margin-bottom: 10px; }
.pain-card p { color: var(--stone); font-size: 16px; }

/* ---------- Solution statement ---------- */

.solution { text-align: center; }
.solution .eyebrow { justify-content: center; }
.solution .eyebrow::after {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--red);
}

.solution-statement {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 4.8vw, 52px);
  line-height: 1.15;
  letter-spacing: -0.025em;
  max-width: 20em;
  margin: 0 auto;
}
.solution-statement em {
  font-style: normal;
  color: var(--red);
}

.solution-sub {
  margin: 28px auto 0;
  max-width: 44em;
  font-size: 19px;
  color: var(--smoke);
}
.solution-sub strong { color: var(--paper); font-weight: 600; }

/* ---------- Product suite ---------- */

.suite-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.suite-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  padding: 34px 30px 30px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
  overflow: hidden;
}
.suite-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--amber));
  opacity: 0;
  transition: opacity 0.25s var(--ease);
}
.suite-card:hover {
  transform: translateY(-5px);
  border-color: rgba(226, 59, 46, 0.35);
  box-shadow: 0 2px 4px rgba(18,16,15,0.05), 0 28px 56px -18px rgba(18, 16, 15, 0.25);
}
.suite-card:hover::before { opacity: 1; }

.suite-tag {
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red-deep);
  margin-bottom: 8px;
}

.suite-card h3 { font-size: 22px; margin-bottom: 12px; }
.suite-card p { color: var(--stone); font-size: 16px; flex: 1; }

.suite-foot {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line-light);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--stone);
}
.suite-foot b { color: var(--ink); }

.suite-extra {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 28px;
  border: 1px dashed rgba(18, 16, 15, 0.25);
  border-radius: var(--radius-lg);
  color: var(--stone);
  font-size: 15.5px;
}
.suite-extra .icon-tile { margin: 0; flex: none; width: 42px; height: 42px; }
.suite-extra b { color: var(--ink); }

/* ---------- Capabilities ---------- */

.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 56px;
}

.cap-cell {
  background: var(--char);
  padding: 34px 30px;
  transition: background-color 0.25s var(--ease);
}
.cap-cell:hover { background: var(--char-2); }
.cap-cell .icon-tile {
  background: rgba(226, 59, 46, 0.14);
  color: #ff8d83;
}
.cap-cell h3 { font-size: 18px; margin-bottom: 8px; color: var(--paper); }
.cap-cell p { font-size: 15px; color: var(--smoke); }

/* ---------- Stats band ---------- */

.stats {
  position: relative;
  background: var(--char);
  border-block: 1px solid var(--line-dark);
  padding: 88px 0;
  overflow: hidden;
}
.stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(700px 300px at 50% 120%, rgba(226, 59, 46, 0.18), transparent 70%);
  pointer-events: none;
}

.stats-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat .num {
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 62px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--red);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat .lbl {
  margin-top: 12px;
  font-size: 15px;
  color: var(--paper);
  max-width: 20em;
  margin-inline: auto;
}

/* ---------- ICP ---------- */

.icp-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.icp-card {
  background: #fff;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  padding: 26px 20px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease);
}
.icp-card:hover { transform: translateY(-4px); border-color: rgba(226, 59, 46, 0.35); }
.icp-card .icon-tile { margin: 0 auto 14px; }
.icp-card h3 { font-size: 15.5px; line-height: 1.35; }

.icp-close {
  margin-top: 48px;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.6vw, 26px);
  font-weight: 700;
  letter-spacing: -0.015em;
}
.icp-close em { font-style: normal; color: var(--red); }

/* ---------- Services strip ---------- */

.services {
  background: var(--char);
  color: var(--paper);
  border-block: 1px solid var(--line-dark);
  padding: 64px 0;
}
.services-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.services h2 { font-size: clamp(24px, 3vw, 30px); margin-bottom: 12px; }
.services p { color: var(--smoke); max-width: 42em; font-size: 16.5px; }

/* ---------- Pricing teaser ---------- */

.pricing-panel {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  background: #fff;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.pricing-copy { padding: 48px; }
.pricing-copy p { color: var(--stone); font-size: 17px; max-width: 36em; }

.pricing-points {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.pricing-points li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 16px;
}
.pricing-points svg { flex: none; margin-top: 3px; color: var(--red); }

.pricing-price {
  background: var(--ink);
  color: var(--paper);
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 8px;
  position: relative;
  overflow: hidden;
}
.pricing-price::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(320px 240px at 90% 110%, rgba(226, 59, 46, 0.3), transparent 70%);
  pointer-events: none;
}
.pricing-price > * { position: relative; }
.pricing-price .from {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--smoke);
}
.pricing-price .amount {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(44px, 5vw, 58px);
  letter-spacing: -0.03em;
  line-height: 1;
}
.pricing-price .amount span { font-size: 0.45em; color: var(--smoke); font-weight: 500; letter-spacing: 0; }
.pricing-price .note { font-size: 14.5px; color: var(--smoke); margin-bottom: 18px; }
.pricing-price .btn { margin-top: 6px; }

/* ---------- Final CTA + form ---------- */

.cta-final {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  padding: 120px 0;
  overflow: hidden;
}
.cta-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 480px at 18% 115%, rgba(226, 59, 46, 0.3), transparent 65%),
    radial-gradient(560px 360px at 38% 130%, rgba(245, 166, 35, 0.12), transparent 60%);
  pointer-events: none;
}

.cta-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 460px);
  gap: 72px;
  align-items: center;
}

.cta-final h2 { font-size: clamp(34px, 4.6vw, 52px); letter-spacing: -0.025em; }
.cta-final .cta-sub { margin-top: 20px; font-size: 18.5px; color: var(--smoke); max-width: 30em; }
.cta-final .cta-alt { margin-top: 28px; font-size: 15.5px; color: var(--smoke); }
.cta-final .cta-alt a { color: var(--amber); font-weight: 600; text-decoration: none; border-bottom: 1px solid rgba(245,166,35,0.4); }
.cta-final .cta-alt a:hover { border-bottom-color: var(--amber); }

/* Form card */
.form-card {
  background: var(--paper);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: 0 48px 96px -32px rgba(0, 0, 0, 0.7);
}
.form-card h3 { font-size: 22px; }
.form-card .form-sub { margin: 8px 0 26px; font-size: 15px; color: var(--stone); }

.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 7px;
}
.field input,
.field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid rgba(18, 16, 15, 0.22);
  border-radius: var(--radius);
  background: #fff;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field textarea { resize: vertical; min-height: 84px; }
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(226, 59, 46, 0.18);
}
.field input::placeholder,
.field textarea::placeholder { color: rgba(18, 16, 15, 0.38); }

.form-card .btn { width: 100%; }
.form-note {
  margin-top: 14px;
  font-size: 13px;
  color: var(--stone);
  text-align: center;
}

.form-status {
  margin-top: 14px;
  font-size: 14.5px;
  font-weight: 600;
  text-align: center;
  color: var(--red-deep);
}

/* Success state */
.form-success { text-align: center; padding: 24px 0; }
.form-success .icon-tile {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto 20px;
  background: rgba(226, 59, 46, 0.1);
}
.form-success h3 { font-size: 24px; margin-bottom: 10px; }
.form-success p { color: var(--stone); font-size: 16px; }

/* ---------- Footer ---------- */

.footer {
  background: var(--ink);
  color: var(--smoke);
  border-top: 1px solid var(--line-dark);
  padding: 72px 0 36px;
  font-size: 15px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}

.footer-brand p { margin-top: 16px; max-width: 24em; }

.footer h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paper);
  margin-bottom: 18px;
}

.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.footer a { color: var(--smoke); text-decoration: none; transition: color 0.2s var(--ease); }
.footer a:hover { color: var(--amber); }

.footer-contact {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
}
.footer-contact .social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  color: var(--smoke);
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.footer-contact .social:hover { color: var(--amber); border-color: var(--amber); }

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid var(--line-dark);
  font-size: 13.5px;
}
.footer-legal nav { display: flex; gap: 24px; }

/* ---------- Thank-you page ---------- */

.ty-main {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
  padding: 120px 24px;
}
.ty-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(800px 500px at 50% 120%, rgba(226, 59, 46, 0.3), transparent 65%);
  pointer-events: none;
}
.ty-card { position: relative; text-align: center; max-width: 560px; }
.ty-card .icon-tile {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  margin: 0 auto 28px;
  background: rgba(226, 59, 46, 0.14);
}
.ty-card h1 { font-size: clamp(34px, 5vw, 48px); }
.ty-card p { margin-top: 18px; font-size: 18px; color: var(--smoke); }
.ty-card .btn { margin-top: 36px; }

/* ---------- Scroll reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: var(--d, 0s);
}
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .pain-card, .suite-card, .icp-card { transition: none; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* ---------- Responsive ---------- */

@media (max-width: 1080px) {
  .icp-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 960px) {
  .section { padding: 84px 0; }

  .nav-links { display: none; }
  .nav-cta .btn-ghost { display: none; }
  .nav-toggle { display: block; }

  .nav-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(18, 16, 15, 0.98);
    border-bottom: 1px solid var(--line-dark);
    padding: 12px 24px 28px;
    display: none;
  }
  .nav-menu.open { display: block; }
  .nav-menu ul { list-style: none; margin: 0; padding: 0; }
  .nav-menu a {
    display: block;
    padding: 15px 0;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--paper);
    text-decoration: none;
    border-bottom: 1px solid var(--line-dark);
  }

  .hero { padding: 148px 0 88px; }
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .mock { transform: none; font-size: 10.5px; }
  .mock-float { right: 8px; bottom: -30px; }

  .pain-grid, .suite-grid, .cap-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 48px 24px; }

  .pricing-panel { grid-template-columns: 1fr; }
  .pricing-copy, .pricing-price { padding: 40px 32px; }

  .services-inner { flex-direction: column; align-items: flex-start; }

  .cta-grid { grid-template-columns: 1fr; gap: 56px; }

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

@media (max-width: 620px) {
  body { font-size: 16px; }

  .pain-grid, .suite-grid, .cap-grid, .icp-grid { grid-template-columns: 1fr; }

  .hero-ctas .btn { width: 100%; }
  .hero-trust .sep { display: block; visibility: hidden; height: 4px; margin: 0; }

  .mock-body { grid-template-columns: 1fr; }
  .mock-side { display: none; }
  .mock-table th:nth-child(4), .mock-table td:nth-child(4) { display: none; }

  .suite-extra { flex-direction: column; align-items: flex-start; }

  .form-card { padding: 32px 24px; }
  .pricing-copy, .pricing-price { padding: 32px 24px; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-legal { flex-direction: column; align-items: flex-start; }
}
