/* ============================================================
   Big Round POS — Marketing Site
   Original design system. Not based on any existing brand.
   ============================================================ */

:root {
  /* Color tokens */
  --ink: #0E1116;             /* near-black, slight cool */
  --ink-2: #1A1F26;
  --ink-3: #2A3038;
  --paper: #FBFAF7;           /* warm off-white */
  --paper-2: #F2F0EA;
  --paper-3: #E7E4DB;
  --line: #DCD8CC;
  --line-2: #C9C3B2;
  --muted: #6B6E73;
  --muted-2: #8E9094;

  /* Accent — "Big Round" warm coral */
  --accent: #FF5C2E;
  --accent-2: #FF8A5C;
  --accent-soft: #FFE7DB;

  /* Secondary accent — deep emerald (used sparingly) */
  --green: #0E5C3F;
  --green-soft: #DCEFE3;

  /* Tertiary — sky for KPIs */
  --sky: #2B6FE3;
  --sky-soft: #DDE7FA;

  /* Type */
  --font-display: 'Geist', 'Inter', system-ui, -apple-system, sans-serif;
  --font-text: 'Geist', 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'Geist Mono', 'JetBrains Mono', ui-monospace, monospace;

  /* Spacing */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 999px;

  /* Shadow */
  --shadow-sm: 0 1px 2px rgba(14,17,22,.06), 0 0 0 1px rgba(14,17,22,.04);
  --shadow-md: 0 8px 24px rgba(14,17,22,.08), 0 0 0 1px rgba(14,17,22,.05);
  --shadow-lg: 0 24px 60px rgba(14,17,22,.12), 0 0 0 1px rgba(14,17,22,.05);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-text);
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "cv11";
  line-height: 1.5;
  font-size: 16px;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font: inherit; }

.wrap {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  line-height: 1.05;
  font-weight: 600;
  color: var(--ink);
  text-wrap: balance;
}
h1 { font-size: clamp(40px, 6.4vw, 84px); letter-spacing: -0.035em; font-weight: 500; }
h2 { font-size: clamp(32px, 4.4vw, 56px); letter-spacing: -0.03em; font-weight: 500; }
h3 { font-size: clamp(20px, 2vw, 26px); }
p { color: var(--ink-2); text-wrap: pretty; }
.lede { font-size: clamp(17px, 1.5vw, 20px); color: var(--ink-3); max-width: 60ch; }

/* ======================== NAV ======================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(251,250,247,0.78);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background .25s ease;
}
.nav.scrolled { border-bottom-color: var(--line); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 28px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.01em;
}
.logo .mark {
  width: 28px; height: 28px;
  background: var(--ink);
  border-radius: 50%;
  position: relative;
  display: inline-block;
}
.logo .mark::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: var(--r-pill);
  font-size: 14px;
  color: var(--ink-2);
  transition: background .2s, color .2s;
}
.nav-links a:hover { background: var(--paper-2); color: var(--ink); }
.nav-cta {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: var(--r-pill);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.005em;
  transition: transform .15s ease, background .2s, color .2s, box-shadow .2s;
  white-space: nowrap;
  position: relative;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 1px 0 rgba(255,255,255,0.08) inset, 0 8px 18px rgba(14,17,22,0.18);
}
.btn-primary:hover { background: var(--ink-2); }
.btn-accent {
  background: var(--accent);
  color: white;
  box-shadow: 0 1px 0 rgba(255,255,255,0.2) inset, 0 8px 22px rgba(255,92,46,0.32);
}
.btn-accent:hover { background: #FF4715; }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  padding: 12px 16px;
}
.btn-ghost:hover { background: var(--paper-2); }
.btn-line {
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-line:hover { background: var(--paper-2); border-color: var(--line-2); }
.btn .arrow { transition: transform .2s; }
.btn:hover .arrow { transform: translateX(3px); }

/* Sections */
section { padding: clamp(72px, 9vw, 120px) 0; position: relative; }
.section-head { display: flex; flex-direction: column; gap: 18px; max-width: 760px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; align-items: center; }

/* ======================== HERO ======================== */
.hero {
  padding: clamp(40px, 6vw, 80px) 0 clamp(60px, 7vw, 100px);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-copy { display: flex; flex-direction: column; gap: 28px; }
.hero h1 .accent-word {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}
.hero h1 .accent-word::before {
  content: "";
  position: absolute;
  inset: -0.05em -0.18em;
  background: var(--accent);
  border-radius: 999px;
  z-index: -1;
  transform: scale(0.96);
  transform-origin: left center;
  animation: roundIn 1.1s cubic-bezier(.2,.7,.2,1) .25s both;
}
.hero h1 .accent-word { color: white; padding: 0 0.18em; }
@keyframes roundIn {
  from { transform: scaleX(0); opacity: 0.7; }
  to   { transform: scaleX(1); opacity: 1; }
}

.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.hero-meta {
  display: flex; gap: 22px; flex-wrap: wrap;
  font-size: 13px; color: var(--muted);
  font-family: var(--font-mono);
}
.hero-meta span { display: inline-flex; align-items: center; gap: 6px; }
.hero-meta .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 3px var(--green-soft); }

/* Hero visual: stacked POS mockup */
.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 580px;
  margin-left: auto;
  width: 100%;
}
.hero-visual .blob {
  position: absolute;
  inset: 5% -5% -5% 5%;
  background: radial-gradient(60% 60% at 50% 50%, var(--accent) 0%, var(--accent-2) 60%, transparent 100%);
  border-radius: 50%;
  filter: blur(0px);
  z-index: 0;
  animation: float 9s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* Big circular emblem */
.emblem {
  position: absolute;
  width: 88%; height: 88%;
  inset: 6% auto auto 6%;
  border-radius: 50%;
  background: var(--ink);
  z-index: 1;
  overflow: hidden;
  box-shadow: 0 40px 80px -20px rgba(14,17,22,0.4);
}
.emblem::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px dashed rgba(255,255,255,0.18);
  border-radius: 50%;
}
.emblem-text {
  position: absolute;
  inset: 0;
  animation: spin 28s linear infinite;
}
.emblem-text svg { width: 100%; height: 100%; }
.emblem-text text {
  fill: rgba(255,255,255,0.55);
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
@keyframes spin { to { transform: rotate(360deg); } }
.emblem-core {
  position: absolute;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 56%; aspect-ratio: 1;
  background: var(--accent);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
}
.emblem-core .price {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.04em;
  line-height: 1;
}
.emblem-core .price small { font-size: 0.5em; vertical-align: top; opacity: 0.8; margin-right: 2px; }

/* Floating cards around emblem */
.float-card {
  position: absolute;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 12px 14px;
  box-shadow: var(--shadow-md);
  z-index: 3;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: bob 6s ease-in-out infinite;
}
.float-card.fc-1 { top: 8%; right: -2%; animation-delay: 0s; }
.float-card.fc-2 { bottom: 18%; left: -8%; animation-delay: -2s; }
.float-card.fc-3 { bottom: -2%; right: 12%; animation-delay: -4s; }
@keyframes bob {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.fc-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.fc-1 .fc-icon { background: var(--green-soft); color: var(--green); }
.fc-2 .fc-icon { background: var(--sky-soft); color: var(--sky); }
.fc-3 .fc-icon { background: var(--accent-soft); color: var(--accent); }
.fc-meta { display: flex; flex-direction: column; line-height: 1.2; }
.fc-meta strong { font-weight: 600; font-size: 13px; }
.fc-meta span { font-family: var(--font-mono); font-size: 11px; color: var(--muted); }

/* Phone mockup tucked into emblem */
.phone {
  position: absolute;
  width: 38%; aspect-ratio: 9/19;
  bottom: 8%; right: 6%;
  background: var(--ink-2);
  border-radius: 26px;
  padding: 6px;
  box-shadow: 0 30px 60px -20px rgba(14,17,22,0.5);
  z-index: 4;
  border: 1px solid rgba(255,255,255,0.08);
}
.phone-screen {
  width: 100%; height: 100%;
  background: var(--paper);
  border-radius: 20px;
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
  position: relative;
}
.phone-screen::before {
  content: "";
  position: absolute;
  top: 6px; left: 50%; transform: translateX(-50%);
  width: 32%; height: 4px;
  background: var(--ink); border-radius: 2px;
}
.ps-row { display: flex; justify-content: space-between; align-items: center; font-size: 9px; font-family: var(--font-mono); }
.ps-row.head { margin-top: 12px; }
.ps-bill {
  display: flex; flex-direction: column; gap: 6px;
  background: var(--paper-2);
  border-radius: 8px;
  padding: 8px;
  font-size: 9px;
}
.ps-bill .bl-row { display: flex; justify-content: space-between; }
.ps-bill .bl-row.total { font-weight: 600; padding-top: 6px; border-top: 1px dashed var(--line-2); }
.ps-pay {
  margin-top: auto;
  background: var(--ink);
  color: white;
  border-radius: 999px;
  padding: 8px;
  text-align: center;
  font-size: 9px;
  font-weight: 500;
}

/* ======================== TRUST ======================== */
.trust {
  padding: 40px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
}
.trust-label {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  max-width: 200px;
  line-height: 1.4;
}
.trust-marquee {
  display: flex;
  gap: 64px;
  align-items: center;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.trust-track { display: flex; gap: 64px; align-items: center; animation: marquee 32s linear infinite; flex-shrink: 0; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  color: var(--ink-3);
  letter-spacing: -0.02em;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  opacity: 0.85;
  transition: opacity .2s;
}
.brand:hover { opacity: 1; }
.brand .glyph {
  width: 22px; height: 22px;
  background: var(--ink-3);
  border-radius: 6px;
}
.brand.b1 .glyph { border-radius: 50%; }
.brand.b2 .glyph { transform: rotate(45deg); border-radius: 4px; }
.brand.b3 .glyph { border-radius: 50% 0 50% 50%; }
.brand.b4 .glyph { width: 28px; height: 16px; border-radius: 999px; }
.brand.b5 .glyph { clip-path: polygon(50% 0%, 100% 100%, 0% 100%); border-radius: 0; background: var(--ink-3); }
.brand.b6 .glyph { background: linear-gradient(135deg, var(--ink-3) 50%, var(--accent) 50%); }

/* ======================== FEATURES ======================== */
.features {
  background: var(--paper);
}
.feat-tabs {
  display: flex;
  gap: 6px;
  padding: 6px;
  background: var(--paper-2);
  border-radius: var(--r-pill);
  border: 1px solid var(--line);
  width: fit-content;
  margin: 0 auto 40px;
  flex-wrap: wrap;
  justify-content: center;
}
.feat-tab {
  padding: 10px 18px;
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: all .2s;
  white-space: nowrap;
}
.feat-tab:hover { color: var(--ink); }
.feat-tab.active {
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 4px 14px rgba(14,17,22,0.15);
}

.feat-stage {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: center;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 56px;
  min-height: 480px;
  position: relative;
  overflow: hidden;
}
.feat-stage::before {
  content: "";
  position: absolute;
  top: -120px; right: -120px;
  width: 320px; height: 320px;
  background: var(--accent-soft);
  border-radius: 50%;
  filter: blur(20px);
  opacity: 0.6;
  z-index: 0;
}
.feat-pane { display: none; position: relative; z-index: 1; }
.feat-pane.active { display: contents; }
.feat-copy { display: flex; flex-direction: column; gap: 20px; }
.feat-copy .num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.1em;
}
.feat-copy h2 { font-size: clamp(28px, 3vw, 40px); }
.feat-bullets {
  display: flex; flex-direction: column; gap: 12px;
  margin-top: 8px;
  list-style: none;
}
.feat-bullets li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 15px; color: var(--ink-2);
}
.feat-bullets .check {
  width: 20px; height: 20px;
  background: var(--green-soft);
  color: var(--green);
  border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0;
  font-size: 11px;
  margin-top: 2px;
}

/* Feature visuals (different per pane) */
.feat-vis {
  position: relative;
  aspect-ratio: 5/4;
  border-radius: var(--r-lg);
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
}
.fv-head { display: flex; justify-content: space-between; align-items: center; font-size: 12px; font-family: var(--font-mono); color: var(--muted); }
.fv-head .dots { display: flex; gap: 5px; }
.fv-head .dots i { width: 8px; height: 8px; border-radius: 50%; background: var(--line-2); display: inline-block; }

/* Inventory list */
.inv-list { display: flex; flex-direction: column; gap: 8px; }
.inv-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 12px;
  align-items: center;
  padding: 10px 12px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 13px;
}
.inv-row .pname { display: flex; align-items: center; gap: 10px; }
.inv-row .swatch { width: 24px; height: 24px; border-radius: 6px; background: var(--paper-2); }
.inv-row.s1 .swatch { background: var(--accent-soft); }
.inv-row.s2 .swatch { background: var(--green-soft); }
.inv-row.s3 .swatch { background: var(--sky-soft); }
.inv-row.s4 .swatch { background: #F3E8FF; }
.inv-row .stock { font-family: var(--font-mono); color: var(--muted); font-size: 12px; }
.inv-row .pill { font-size: 11px; padding: 2px 8px; border-radius: 999px; background: var(--green-soft); color: var(--green); font-weight: 500; }
.inv-row.low .pill { background: var(--accent-soft); color: var(--accent); }

/* Billing receipt */
.receipt {
  background: white;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 16px;
  font-size: 13px;
  font-family: var(--font-mono);
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  position: relative;
}
.receipt::after {
  content: "";
  position: absolute;
  bottom: -8px; left: 0; right: 0; height: 12px;
  background: radial-gradient(circle at 6px 0, transparent 6px, white 6px) repeat-x;
  background-size: 12px 12px;
}
.receipt .r-head { display: flex; justify-content: space-between; padding-bottom: 8px; border-bottom: 1px dashed var(--line); }
.receipt .r-row { display: flex; justify-content: space-between; }
.receipt .r-total { display: flex; justify-content: space-between; padding-top: 8px; border-top: 1px dashed var(--line); font-weight: 600; font-family: var(--font-display); font-size: 15px; }

/* Analytics chart */
.chart {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.chart-stats { display: flex; gap: 18px; }
.chart-stat { display: flex; flex-direction: column; }
.chart-stat .v { font-family: var(--font-display); font-size: 22px; font-weight: 500; letter-spacing: -0.02em; }
.chart-stat .l { font-size: 11px; color: var(--muted); font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.06em; }
.chart-stat .v.up { color: var(--green); }
.chart-svg { flex: 1; min-height: 0; }

/* Multi-device feature */
.devices {
  position: relative;
  flex: 1;
  display: grid;
  place-items: center;
}
.dev-laptop {
  width: 82%;
  aspect-ratio: 16/10;
  background: var(--ink);
  border-radius: 12px 12px 4px 4px;
  padding: 12px;
  position: relative;
  box-shadow: 0 20px 40px -10px rgba(14,17,22,0.3);
}
.dev-laptop::after {
  content: "";
  position: absolute;
  bottom: -6px; left: -8%; right: -8%;
  height: 6px;
  background: var(--ink-3);
  border-radius: 0 0 8px 8px;
}
.dev-screen {
  width: 100%; height: 100%;
  background: var(--paper);
  border-radius: 4px;
  padding: 10px;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 8px;
  font-size: 9px;
}
.ds-side { background: var(--paper-2); border-radius: 4px; padding: 6px; display: flex; flex-direction: column; gap: 4px; }
.ds-side i { display: block; height: 8px; background: var(--line-2); border-radius: 2px; }
.ds-side i:first-child { background: var(--ink); }
.ds-main { background: white; border-radius: 4px; padding: 8px; display: flex; flex-direction: column; gap: 4px; }
.ds-main i { display: block; height: 6px; background: var(--paper-2); border-radius: 2px; }
.ds-main i:first-child { background: var(--ink); width: 40%; height: 8px; }

.dev-phone {
  position: absolute;
  bottom: -10%;
  right: 4%;
  width: 22%;
  aspect-ratio: 9/19;
  background: var(--ink-2);
  border-radius: 18px;
  padding: 4px;
  box-shadow: 0 16px 32px -8px rgba(14,17,22,0.4);
  border: 1px solid rgba(255,255,255,0.06);
}
.dev-phone-screen {
  width: 100%; height: 100%;
  background: var(--accent);
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: white;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
}

/* Cloud feature */
.cloud-vis { position: relative; flex: 1; display: grid; place-items: center; }
.cloud-globe {
  width: 70%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px dashed var(--line-2);
  position: relative;
  display: grid; place-items: center;
  background: radial-gradient(circle at 30% 30%, var(--paper) 0%, var(--paper-2) 100%);
}
.cloud-globe::before, .cloud-globe::after {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  border: 1px dashed var(--line-2);
}
.cloud-globe::after { inset: 26%; }
.cloud-pin {
  position: absolute;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(255,92,46,0.2);
}
.cloud-pin.p1 { top: 24%; left: 30%; }
.cloud-pin.p2 { top: 38%; right: 22%; }
.cloud-pin.p3 { bottom: 28%; left: 40%; background: var(--green); box-shadow: 0 0 0 4px rgba(14,92,63,0.18); }
.cloud-pin.p4 { top: 18%; right: 38%; background: var(--sky); box-shadow: 0 0 0 4px rgba(43,111,227,0.18); }
.cloud-center {
  position: absolute;
  width: 64px; height: 64px;
  background: var(--ink);
  color: white;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 22px;
}

/* ======================== INDUSTRIES ======================== */
.industries { background: var(--paper-2); }
.ind-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.ind-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  min-height: 200px;
}
.ind-card::before {
  content: "";
  position: absolute;
  inset: auto -30% -50% auto;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: var(--accent-soft);
  opacity: 0;
  transition: opacity .25s, transform .35s;
}
.ind-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-2); }
.ind-card:hover::before { opacity: 0.6; transform: scale(1.1); }
.ind-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--ink);
  color: white;
  display: grid; place-items: center;
  position: relative;
  z-index: 1;
}
.ind-card h3 { font-size: 19px; position: relative; z-index: 1; }
.ind-card p { font-size: 14px; color: var(--muted); position: relative; z-index: 1; }
.ind-card .tag {
  position: relative; z-index: 1;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-3);
  margin-top: auto;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ======================== KPIS ======================== */
.kpis {
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.kpis::before {
  content: "";
  position: absolute;
  top: -200px; left: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,92,46,0.18), transparent 70%);
  border-radius: 50%;
}
.kpis h2, .kpis .eyebrow { color: var(--paper); }
.kpis .eyebrow { color: rgba(251,250,247,0.7); }
.kpis .lede { color: rgba(251,250,247,0.75); }
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--r-xl);
  border: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
  position: relative;
}
.kpi {
  background: var(--ink);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 200px;
  position: relative;
  transition: background .25s;
}
.kpi:hover { background: var(--ink-2); }
.kpi .num {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--accent);
}
.kpi .num small { font-size: 0.5em; color: var(--paper); margin-left: 2px; }
.kpi .label {
  font-size: 14px;
  color: rgba(251,250,247,0.7);
  margin-top: auto;
}
.kpi .desc { font-size: 13px; color: rgba(251,250,247,0.5); font-family: var(--font-mono); }

/* ======================== WHY US ======================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.why-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .25s, box-shadow .25s;
  position: relative;
  overflow: hidden;
}
.why-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.why-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.1em;
}
.why-card h3 { font-size: 22px; }
.why-card .visual {
  margin-top: 16px;
  height: 140px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.why-card .visual.simple {
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
}
.why-card .visual.scale {
  background: var(--paper);
}
.why-card .visual.reliable {
  background: var(--ink);
}
.simple-shape {
  width: 56px; height: 56px;
  background: var(--accent);
  border-radius: 50%;
  position: relative;
  animation: pulse 3s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(255,92,46,0.4); }
  50% { box-shadow: 0 0 0 16px rgba(255,92,46,0); }
}
.scale-bars { display: flex; align-items: flex-end; gap: 8px; height: 80px; }
.scale-bars i {
  display: block;
  width: 14px;
  background: var(--ink);
  border-radius: 4px 4px 0 0;
  animation: grow 2.5s ease-out infinite;
  transform-origin: bottom;
}
.scale-bars i:nth-child(1) { height: 30%; animation-delay: 0s; }
.scale-bars i:nth-child(2) { height: 50%; animation-delay: .15s; }
.scale-bars i:nth-child(3) { height: 70%; animation-delay: .3s; }
.scale-bars i:nth-child(4) { height: 90%; background: var(--accent); animation-delay: .45s; }
.scale-bars i:nth-child(5) { height: 100%; background: var(--accent); animation-delay: .6s; }
@keyframes grow {
  0% { transform: scaleY(0.4); }
  60%,100% { transform: scaleY(1); }
}
.uptime { color: white; font-family: var(--font-display); font-size: 32px; letter-spacing: -0.03em; display: flex; align-items: baseline; gap: 8px; }
.uptime .blink { width: 8px; height: 8px; border-radius: 50%; background: #4ADE80; box-shadow: 0 0 8px rgba(74,222,128,0.8); animation: blinky 1.4s ease-in-out infinite; }
@keyframes blinky { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

/* ======================== HOW IT WORKS ======================== */
.how { background: var(--paper-2); }
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  top: 28px; left: 12%; right: 12%;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--line-2) 0, var(--line-2) 4px, transparent 4px, transparent 10px);
  z-index: 0;
}
.step { display: flex; flex-direction: column; gap: 16px; position: relative; z-index: 1; }
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  transition: all .25s;
}
.step:hover .step-num {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
  transform: scale(1.05);
}
.step h3 { font-size: 18px; }
.step p { font-size: 14px; color: var(--muted); }
.step-time {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: auto;
}

/* ======================== PRICING ======================== */
.pricing-toggle {
  display: inline-flex;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: 4px;
  margin: 0 auto 40px;
  position: relative;
  align-self: center;
}
.pt-btn {
  padding: 10px 20px;
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  position: relative;
  z-index: 1;
  transition: color .2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.pt-btn.active { color: var(--paper); }
.pt-btn:not(.active):hover { color: var(--ink); }
.pt-slider {
  position: absolute;
  top: 4px; left: 4px;
  height: calc(100% - 8px);
  background: var(--ink);
  border-radius: var(--r-pill);
  transition: transform .3s cubic-bezier(.5,.1,.2,1), width .3s;
  z-index: 0;
}
.pt-save {
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 999px;
  font-family: var(--font-mono);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.price-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform .25s, box-shadow .25s;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price-card.featured {
  background: var(--ink);
  color: var(--paper);
  position: relative;
  border-color: var(--ink);
}
.price-card.featured::before {
  content: "Most popular";
  position: absolute;
  top: 24px; right: 24px;
  background: var(--accent);
  color: white;
  font-family: var(--font-mono);
  font-size: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.price-tier {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.price-card.featured .price-tier { color: rgba(251,250,247,0.6); }
.price-card h3 { font-size: 24px; }
.price-card.featured h3 { color: var(--paper); }
.price-amt {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
  display: flex;
  align-items: flex-start;
  gap: 4px;
}
.price-amt .currency { font-size: 24px; margin-top: 8px; opacity: 0.7; }
.price-amt .per { font-size: 14px; font-family: var(--font-text); color: var(--muted); align-self: flex-end; margin-bottom: 8px; font-weight: 400; letter-spacing: 0; margin-left: 6px; }
.price-card.featured .price-amt .per { color: rgba(251,250,247,0.6); }
.price-desc { font-size: 14px; color: var(--muted); }
.price-card.featured .price-desc { color: rgba(251,250,247,0.7); }
.price-feat {
  display: flex; flex-direction: column; gap: 10px;
  list-style: none;
  margin: 8px 0 16px;
}
.price-feat li { font-size: 14px; display: flex; gap: 10px; align-items: flex-start; }
.price-feat .check {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  display: grid; place-items: center;
  flex-shrink: 0;
  font-size: 10px;
  margin-top: 2px;
}
.price-card.featured .price-feat .check { background: rgba(255,255,255,0.12); color: var(--accent); }
.price-card .btn { margin-top: auto; }

/* ======================== TESTIMONIALS ======================== */
.testimonials { background: var(--paper-2); position: relative; overflow: hidden; }
.t-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.t-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.t-card .quote-mark {
  position: absolute;
  top: 16px; right: 24px;
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 1;
  color: var(--accent);
  opacity: 0.3;
}
.t-stars { display: flex; gap: 2px; color: var(--accent); }
.t-quote {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  letter-spacing: -0.005em;
  flex: 1;
}
.t-author { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--line); }
.t-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--paper-2);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  flex-shrink: 0;
}
.t-meta { display: flex; flex-direction: column; line-height: 1.3; }
.t-meta strong { font-size: 14px; }
.t-meta span { font-size: 12px; color: var(--muted); }

/* ======================== FINAL CTA ======================== */
.cta-final {
  padding: clamp(60px, 7vw, 100px) 0;
}
.cta-card {
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--r-xl);
  padding: clamp(40px, 6vw, 80px);
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-card::before {
  content: "";
  position: absolute;
  bottom: -200px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 60%);
  border-radius: 50%;
  opacity: 0.5;
}
.cta-card h2 { color: var(--paper); font-size: clamp(32px, 4vw, 52px); position: relative; z-index: 1; }
.cta-card p { color: rgba(251,250,247,0.75); margin-top: 12px; position: relative; z-index: 1; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-side {
  position: relative; z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cta-tile {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-md);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  backdrop-filter: blur(20px);
}
.cta-tile .ic { width: 32px; height: 32px; border-radius: 8px; background: var(--accent); color: white; display: grid; place-items: center; flex-shrink: 0; }

/* ======================== FOOTER ======================== */
.footer {
  background: var(--paper);
  border-top: 1px solid var(--line);
  padding: 60px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 56px;
}
.footer-brand { display: flex; flex-direction: column; gap: 16px; max-width: 280px; }
.footer-brand p { font-size: 14px; color: var(--muted); }
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: var(--ink-2); transition: color .2s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-social { display: flex; gap: 8px; }
.footer-social a {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--paper-2);
  color: var(--ink-2);
  transition: all .2s;
}
.footer-social a:hover { background: var(--ink); color: var(--paper); }

/* ======================== REVEAL ANIMATIONS ======================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s cubic-bezier(.2,.7,.2,1), transform .6s cubic-bezier(.2,.7,.2,1);
}
.reveal-stagger.in > *:nth-child(1) { opacity: 1; transform: none; transition-delay: 0s; }
.reveal-stagger.in > *:nth-child(2) { opacity: 1; transform: none; transition-delay: .07s; }
.reveal-stagger.in > *:nth-child(3) { opacity: 1; transform: none; transition-delay: .14s; }
.reveal-stagger.in > *:nth-child(4) { opacity: 1; transform: none; transition-delay: .21s; }
.reveal-stagger.in > *:nth-child(5) { opacity: 1; transform: none; transition-delay: .28s; }
.reveal-stagger.in > *:nth-child(6) { opacity: 1; transform: none; transition-delay: .35s; }
.reveal-stagger.in > *:nth-child(7) { opacity: 1; transform: none; transition-delay: .42s; }
.reveal-stagger.in > *:nth-child(8) { opacity: 1; transform: none; transition-delay: .49s; }

/* ======================== RESPONSIVE ======================== */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 480px; margin: 0 auto; }
  .feat-stage { grid-template-columns: 1fr; padding: 36px; gap: 32px; }
  .why-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }
  .price-grid { grid-template-columns: 1fr; }
  .t-track { grid-template-columns: 1fr; }
  .cta-card { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .kpi-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-links { display: none; }
  .trust-inner { grid-template-columns: 1fr; gap: 16px; }
}
@media (max-width: 600px) {
  .wrap { padding: 0 20px; }
  .nav-cta .btn-line { display: none; }
  .ind-grid { grid-template-columns: 1fr 1fr; }
  .ind-card { padding: 20px; min-height: 160px; }
  .why-card { padding: 24px; }
  .price-card { padding: 28px 24px; }
  .feat-tabs { width: 100%; overflow-x: auto; flex-wrap: nowrap; justify-content: flex-start; }
}

/* Selection */
::selection { background: var(--accent); color: white; }
