/* =========================================================================
   Mako CRM Systems — Design System
   Cinematic deep-ocean aesthetic. Premium, fast, predatory.
   ========================================================================= */

/* ---------- Custom Properties ---------- */
:root {
  /* Palette */
  --bg: #0B1B33;            /* deep navy / near-black */
  --bg-2: #16264A;          /* layered navy */
  --bg-3: #0A1729;          /* deepest navy */
  --panel: #0F213F;         /* solid panel navy for gradients */
  --surface: #14254766;     /* translucent card surface */
  --surface-solid: #142547;
  --line: #ffffff14;        /* hairline borders */
  --line-strong: #ffffff24;

  --accent: #2E8BC0;        /* ocean blue */
  --accent-bright: #1FA2E0; /* highlights / links */
  --cta: #F5A623;           /* amber — shark's eye, primary CTA only */
  --cta-hover: #ffb73d;
  --cta-ink: #1a1102;       /* text on amber */

  /* Text */
  --text: #F4F8FF;          /* crisp white */
  --text-soft: #C3D2E8;     /* muted */
  --text-dim: #8497B6;      /* dimmest readable */

  /* Light section */
  --light-bg: #F3F7FC;
  --light-bg-2: #E7EFF8;
  --light-ink: #0B1B33;
  --light-ink-soft: #41557a;

  /* Effects */
  --glow-accent: 0 0 0 1px #1FA2E033, 0 18px 60px -22px #1FA2E055;
  --glow-cta: 0 10px 34px -10px #F5A62366, 0 0 0 1px #F5A62322;
  --shadow-card: 0 24px 60px -30px #00060f99;
  --shadow-deep: 0 40px 120px -40px #000a1aee;

  /* Radius */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 30px;
  --r-pill: 999px;

  /* Spacing — 8pt rhythm */
  --s-1: 8px;
  --s-2: 16px;
  --s-3: 24px;
  --s-4: 32px;
  --s-5: 48px;
  --s-6: 64px;
  --s-7: 96px;
  --s-8: 128px;
  --s-9: 160px;

  /* Layout */
  --container: 1200px;
  --container-narrow: 880px;
  --nav-h: 76px;

  /* Type */
  --font-display: "Space Grotesk", "Sora", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast: 0.18s;
  --t-med: 0.4s;
  --t-slow: 0.7s;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
}
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
}
img, picture, svg, video { display: block; max-width: 100%; }
a { color: var(--accent-bright); text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }
:focus-visible {
  outline: 3px solid var(--accent-bright);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 40px);
}
.container--narrow { max-width: var(--container-narrow); }

.section {
  position: relative;
  padding-block: clamp(64px, 11vw, 144px);
}
.section--tight { padding-block: clamp(48px, 8vw, 96px); }
.section--light {
  background: var(--light-bg);
  color: var(--light-ink);
}
.section--light .eyebrow { color: var(--accent); }
.section--light .section-head p,
.section--light .lede { color: var(--light-ink-soft); }

.section-head {
  max-width: 760px;
  margin-bottom: clamp(40px, 6vw, 64px);
}
.section-head--center {
  margin-inline: auto;
  text-align: center;
}
.section-head p { color: var(--text-soft); font-size: 1.075rem; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-bright);
  margin-bottom: var(--s-2);
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-bright), transparent);
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--text);
}
h1 { font-size: clamp(2.6rem, 6.2vw, 5rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.25rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.6rem); }
.section--light h2, .section--light h3 { color: var(--light-ink); }

.lede {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--text-soft);
  max-width: 60ch;
}
.text-accent { color: var(--accent-bright); }
.text-cta { color: var(--cta); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  padding: 15px 28px;
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  transition: transform var(--t-fast) var(--ease),
              box-shadow var(--t-med) var(--ease),
              background var(--t-fast) var(--ease),
              color var(--t-fast) var(--ease);
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

/* primary = amber CTA */
.btn--cta {
  background: linear-gradient(180deg, var(--cta-hover), var(--cta));
  color: var(--cta-ink);
  box-shadow: var(--glow-cta);
}
.btn--cta:hover {
  box-shadow: 0 16px 44px -12px #F5A62388, 0 0 0 1px #F5A62333;
}

/* secondary = ocean-blue ghost/outline */
.btn--ghost {
  background: #ffffff08;
  color: var(--text);
  border-color: var(--line-strong);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover {
  border-color: var(--accent-bright);
  background: #1FA2E014;
  box-shadow: var(--glow-accent);
}
.section--light .btn--ghost {
  color: var(--light-ink);
  border-color: #0b1b3322;
  background: #0b1b3308;
}
.section--light .btn--ghost:hover { border-color: var(--accent); }

.btn--small { padding: 11px 20px; font-size: 0.9rem; }
.btn--block { width: 100%; }

/* magnetic micro-interaction target */
.magnetic { transition: transform var(--t-fast) var(--ease-out); }

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--t-med) var(--ease),
              backdrop-filter var(--t-med) var(--ease),
              border-color var(--t-med) var(--ease),
              box-shadow var(--t-med) var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: #0B1B33cc;
  backdrop-filter: saturate(160%) blur(16px);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  border-bottom-color: var(--line);
  box-shadow: 0 14px 40px -28px #000a1a;
}
.nav__inner {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 40px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
}
.nav__brand { display: inline-flex; align-items: center; }
.nav__brand img { height: 34px; width: auto; }
.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(6px, 2vw, 28px);
}
.nav__link {
  position: relative;
  color: var(--text-soft);
  font-weight: 500;
  font-size: 0.96rem;
  padding: 8px 4px;
  transition: color var(--t-fast) var(--ease);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 4px; right: 4px; bottom: 2px;
  height: 2px;
  background: var(--accent-bright);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-med) var(--ease);
}
.nav__link:hover { color: var(--text); }
.nav__link:hover::after,
.nav__link[aria-current="page"]::after { transform: scaleX(1); }
.nav__link[aria-current="page"] { color: var(--text); }

.nav__actions { display: flex; align-items: center; gap: var(--s-2); }

.nav__toggle {
  display: none;
  width: 46px; height: 46px;
  border-radius: var(--r-sm);
  background: #ffffff0d;
  border: 1px solid var(--line);
  position: relative;
}
.nav__toggle span,
.nav__toggle span::before,
.nav__toggle span::after {
  content: "";
  position: absolute;
  left: 13px;
  width: 20px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--t-med) var(--ease), opacity var(--t-fast) var(--ease);
}
.nav__toggle span { top: 22px; }
.nav__toggle span::before { top: -6px; }
.nav__toggle span::after  { top: 6px; }
.nav__toggle[aria-expanded="true"] span { background: transparent; }
.nav__toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span::after  { transform: translateY(-6px) rotate(-45deg); }

/* Mobile menu panel */
.mobile-menu {
  position: fixed;
  inset: var(--nav-h) 0 auto 0;
  z-index: 99;
  background: #0B1B33f5;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  padding: var(--s-3) clamp(20px, 5vw, 40px) var(--s-4);
  display: grid;
  gap: var(--s-1);
  transform: translateY(-12px);
  opacity: 0;
  visibility: hidden;
  transition: transform var(--t-med) var(--ease), opacity var(--t-med) var(--ease), visibility var(--t-med);
}
.mobile-menu.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
.mobile-menu a {
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  padding: 14px 8px;
  border-bottom: 1px solid var(--line);
}
.mobile-menu .btn { margin-top: var(--s-2); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: min(100svh, 920px);
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-h) + 40px);
  padding-bottom: var(--s-6);
  overflow: hidden;
  isolation: isolate;
}
/* layered ocean / gradient-mesh background */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(120% 90% at 70% 8%, #1FA2E022 0%, transparent 52%),
    radial-gradient(90% 80% at 12% 90%, #2E8BC01f 0%, transparent 55%),
    linear-gradient(180deg, #0B1B33 0%, #0E223F 45%, #0B1B33 100%);
  background-color: var(--bg);
}
/* animated mesh blobs */
.hero__mesh {
  position: absolute;
  inset: -20% -10%;
  z-index: -3;
  filter: blur(70px);
  opacity: 0.6;
  background:
    radial-gradient(closest-side, #1FA2E0aa, transparent) 18% 30% / 42% 42% no-repeat,
    radial-gradient(closest-side, #2E8BC099, transparent) 78% 22% / 38% 40% no-repeat,
    radial-gradient(closest-side, #0E5a9655, transparent) 60% 88% / 46% 46% no-repeat;
  animation: meshDrift 22s var(--ease) infinite alternate;
}
@keyframes meshDrift {
  0%   { transform: translate3d(0,0,0) scale(1); }
  50%  { transform: translate3d(2%, -2%, 0) scale(1.06); }
  100% { transform: translate3d(-2%, 2%, 0) scale(1.03); }
}
/* water ripple lines */
.hero__ripple {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.5;
  background-image:
    repeating-radial-gradient(circle at 72% 36%, #1FA2E000 0 26px, #1FA2E012 26px 28px);
  -webkit-mask-image: radial-gradient(70% 60% at 72% 38%, #000 0%, transparent 70%);
          mask-image: radial-gradient(70% 60% at 72% 38%, #000 0%, transparent 70%);
  animation: ripple 9s linear infinite;
}
@keyframes ripple {
  0%   { background-size: 100% 100%; opacity: 0.5; }
  50%  { background-size: 116% 116%; opacity: 0.28; }
  100% { background-size: 100% 100%; opacity: 0.5; }
}
.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  text-align: center;
  gap: clamp(24px, 5vw, 64px);
}
.hero__copy { max-width: 780px; margin-inline: auto; }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: var(--r-pill);
  background: #ffffff0a;
  border: 1px solid var(--line-strong);
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: var(--s-3);
}
.hero__badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--cta);
  box-shadow: 0 0 0 4px #F5A62333;
}
.hero h1 { margin-bottom: var(--s-3); }
.hero h1 .nowrap { white-space: nowrap; }
.hero__sub {
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
  color: var(--text-soft);
  max-width: 52ch;
  margin-bottom: var(--s-4);
  margin-inline: auto;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--s-2);
  margin-bottom: var(--s-4);
}
.hero__flourish {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.82rem;
  color: var(--text-dim);
}
.hero__flourish b { color: var(--cta); font-weight: 700; }
.hero__flourish .bar { width: 30px; height: 1px; background: var(--line-strong); }

/* shark visual */
.hero__visual {
  position: relative;
  display: grid;
  place-items: center;
}
.hero__glow {
  position: absolute;
  width: 78%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, #1FA2E055 0%, #1FA2E000 62%);
  filter: blur(8px);
  z-index: -1;
  animation: pulse 6s var(--ease) infinite;
}
@keyframes pulse {
  0%,100% { transform: scale(1); opacity: 0.7; }
  50%     { transform: scale(1.08); opacity: 1; }
}
.hero__shark {
  width: 100%;
  max-width: 560px;
  filter: drop-shadow(0 40px 60px #00060fbb);
  will-change: transform;
  animation: floatY 7s var(--ease) infinite;
}
@keyframes floatY {
  0%,100% { transform: translateY(0) rotate(-0.4deg); }
  50%     { transform: translateY(-16px) rotate(0.4deg); }
}

/* ---------- Trust strip ---------- */
.strip {
  border-block: 1px solid var(--line);
  background: #0c1d36;
}
.strip__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
  padding-block: var(--s-3);
}
.strip__item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-soft);
  font-size: 0.95rem;
}
.strip__item svg { width: 22px; height: 22px; color: var(--accent-bright); flex: none; }

/* ---------- Value points ---------- */
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-3);
}
.value {
  padding: var(--s-4);
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, #ffffff09, #ffffff04);
  border: 1px solid var(--line);
}
.value__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  color: var(--accent-bright);
  margin-bottom: var(--s-2);
}
.value h3 { margin-bottom: 10px; }
.value p { color: var(--text-soft); }

/* ---------- Module cards ---------- */
.modules {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-3);
}
.module-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  padding: clamp(24px, 3vw, 36px);
  border-radius: var(--r-lg);
  background:
    radial-gradient(120% 80% at 100% 0%, #1FA2E014, transparent 60%),
    linear-gradient(180deg, var(--surface-solid), #0E1E3A);
  background-color: var(--surface-solid);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform var(--t-med) var(--ease),
              border-color var(--t-med) var(--ease),
              box-shadow var(--t-med) var(--ease);
}
.module-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 1px 0 #ffffff10;
}
.module-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-bright);
  box-shadow: var(--shadow-card), var(--glow-accent);
}
.module-card__icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: var(--r-md);
  background: linear-gradient(180deg, #1FA2E022, #2E8BC012);
  border: 1px solid var(--line-strong);
  color: var(--accent-bright);
  margin-bottom: var(--s-1);
}
.module-card__icon svg { width: 28px; height: 28px; }
.module-card h3 { font-size: 1.4rem; }
.module-card p { color: var(--text-soft); flex: 1; }
.module-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--accent-bright);
  margin-top: var(--s-1);
}
.module-card__link svg { width: 16px; height: 16px; transition: transform var(--t-fast) var(--ease); }
.module-card:hover .module-card__link svg { transform: translateX(4px); }

/* ---------- Feature / capability cards ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-3);
}
.features--two { grid-template-columns: repeat(2, 1fr); }
.feature-card {
  padding: clamp(24px, 3vw, 34px);
  border-radius: var(--r-lg);
  background: #ffffff06;
  border: 1px solid var(--line);
  transition: transform var(--t-med) var(--ease),
              border-color var(--t-med) var(--ease),
              background var(--t-med) var(--ease);
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  background: #ffffff0a;
}
.feature-card__icon {
  width: 50px; height: 50px;
  display: grid; place-items: center;
  border-radius: var(--r-md);
  background: #1FA2E016;
  color: var(--accent-bright);
  margin-bottom: var(--s-3);
}
.feature-card__icon svg { width: 26px; height: 26px; }
.feature-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.feature-card p { color: var(--text-soft); }

/* ---------- How it works ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-3);
  counter-reset: step;
}
.step {
  position: relative;
  padding: var(--s-4);
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, #ffffff08, #ffffff03);
  border: 1px solid var(--line);
}
.step__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1;
  background: linear-gradient(180deg, var(--accent-bright), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: var(--s-2);
}
.step h3 { font-size: 1.25rem; margin-bottom: 8px; }
.step p { color: var(--text-soft); }
.step:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 1.4rem;
  z-index: 2;
}

/* ---------- Stats band ---------- */
.stats-band {
  background:
    radial-gradient(80% 140% at 50% 0%, #1FA2E018, transparent 60%),
    var(--bg-2);
  border-block: 1px solid var(--line);
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-3);
  text-align: center;
}
.stat { padding: var(--s-3) var(--s-2); }
.stat__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  line-height: 1;
  letter-spacing: -0.03em;
  background: linear-gradient(180deg, #fff, var(--accent-bright));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat__num .suffix { -webkit-text-fill-color: var(--cta); color: var(--cta); }
.stat__label {
  margin-top: 10px;
  color: var(--text-soft);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

/* ---------- Pricing block ---------- */
.pricing {
  position: relative;
  text-align: center;
  max-width: 760px;
  margin-inline: auto;
  padding: clamp(40px, 6vw, 72px) clamp(28px, 5vw, 64px);
  border-radius: var(--r-xl);
  background:
    radial-gradient(120% 120% at 50% -10%, #1FA2E01f, transparent 60%),
    linear-gradient(180deg, var(--surface-solid), #0E1E3A);
  background-color: var(--surface-solid);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-deep);
  overflow: hidden;
}
.pricing::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(120deg, #1FA2E055, transparent 40%, #F5A62333);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
.pricing h2 { margin-bottom: var(--s-2); }
.pricing p { color: var(--text-soft); margin-bottom: var(--s-4); font-size: 1.1rem; }
.pricing__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--s-2) var(--s-4);
  margin-bottom: var(--s-4);
}
.pricing__list li {
  display: flex; align-items: center; gap: 8px;
  color: var(--text-soft); font-size: 0.96rem;
}
.pricing__list svg { width: 18px; height: 18px; color: var(--accent-bright); }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.contact-aside h2 { margin-bottom: var(--s-2); }
.contact-aside p { color: var(--text-soft); margin-bottom: var(--s-4); }
.contact-points { display: grid; gap: var(--s-2); }
.contact-points li {
  display: flex; align-items: center; gap: 12px;
  color: var(--text-soft);
}
.contact-points svg { width: 20px; height: 20px; color: var(--accent-bright); flex: none; }
.contact-points a { color: var(--text); }

.form {
  display: grid;
  gap: var(--s-3);
  padding: clamp(24px, 4vw, 40px);
  border-radius: var(--r-lg);
  background: #ffffff06;
  border: 1px solid var(--line);
}
.form__row { display: grid; gap: var(--s-3); grid-template-columns: 1fr 1fr; }
.field { display: grid; gap: 8px; }
.field label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--text-soft);
}
.field input,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  font: inherit;
  color: var(--text);
  background: #0b1b33;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-md);
  transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}
.field textarea { resize: vertical; min-height: 130px; }
.field input::placeholder,
.field textarea::placeholder { color: var(--text-dim); }
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent-bright);
  box-shadow: 0 0 0 4px #1FA2E022;
  background: #0E223F;
  background-color: #0c1f3a;
}
/* honeypot */
.hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  overflow: hidden;
}
.form__status {
  font-size: 0.95rem;
  padding: 12px 16px;
  border-radius: var(--r-md);
  display: none;
}
.form__status.is-visible { display: block; }
.form__status.is-success {
  display: block;
  background: #1FA2E016;
  border: 1px solid #1FA2E044;
  color: var(--accent-bright);
}
.form__status.is-error {
  display: block;
  background: #f5a62316;
  border: 1px solid #f5a62355;
  color: var(--cta);
}

/* ---------- Footer ---------- */
.footer {
  background: #081428;
  border-top: 1px solid var(--line);
  padding-block: var(--s-6) var(--s-4);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--s-4);
  margin-bottom: var(--s-5);
}
.footer__brand img { height: 38px; margin-bottom: var(--s-2); }
.footer__brand p { color: var(--text-dim); max-width: 32ch; font-size: 0.95rem; }
.footer__flourish {
  margin-top: var(--s-2);
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cta);
  font-weight: 600;
}
.footer__col h4 {
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: var(--s-2);
}
.footer__col ul { display: grid; gap: 10px; }
.footer__col a { color: var(--text-dim); font-size: 0.95rem; transition: color var(--t-fast) var(--ease); }
.footer__col a:hover { color: var(--text); }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  align-items: center;
  justify-content: space-between;
  padding-top: var(--s-4);
  border-top: 1px solid var(--line);
  color: var(--text-dim);
  font-size: 0.9rem;
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--t-slow) var(--ease-out), transform var(--t-slow) var(--ease-out);
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; text-align: center; }
  .hero__copy { max-width: 640px; margin-inline: auto; }
  .hero__cta { justify-content: center; }
  .hero__visual { order: -1; }
  .hero__shark { max-width: 420px; }
  .values, .modules, .features, .steps { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; gap: var(--s-4); }
  .step:not(:last-child)::after { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nav__links { display: none; }
  .nav__actions .btn { display: none; }
  .nav__toggle { display: block; }
  .values, .modules, .features, .steps { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 460px) {
  .stats { grid-template-columns: 1fr; }
  .strip__inner { flex-direction: column; align-items: flex-start; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero__shark, .hero__mesh, .hero__ripple, .hero__glow { animation: none; }
}

/* ---------- Product showcase ---------- */
.browser {
  margin: clamp(40px, 6vw, 64px) auto 0;
  max-width: 1080px;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--surface-solid);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-deep), var(--glow-accent);
}
.browser__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #0D1C36;
  border-bottom: 1px solid var(--line);
}
.browser__dot { width: 11px; height: 11px; border-radius: 50%; background: #2a3a5c; }
.browser__dot:nth-child(1) { background: #ff5f57; }
.browser__dot:nth-child(2) { background: #febc2e; }
.browser__dot:nth-child(3) { background: #28c840; }
.browser__url {
  margin-left: 10px;
  font: 500 0.8rem var(--font-body);
  color: var(--text-dim);
  background: var(--bg-3);
  padding: 5px 16px;
  border-radius: var(--r-pill);
  letter-spacing: 0.02em;
}
.browser > img { display: block; width: 100%; height: auto; }

.showcase__grid {
  margin-top: clamp(20px, 3vw, 28px);
  display: grid;
  gap: clamp(16px, 2vw, 24px);
  grid-template-columns: repeat(3, 1fr);
}
.shot-card {
  margin: 0;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--surface-solid);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease);
}
.shot-card:hover { transform: translateY(-4px); border-color: var(--accent-bright); }
.shot-card > img { display: block; width: 100%; height: auto; border-bottom: 1px solid var(--line); }
.shot-card figcaption { padding: 16px 18px 18px; }
.shot-card figcaption b {
  display: block;
  font: 600 1.02rem var(--font-display);
  color: var(--text);
  margin-bottom: 4px;
}
.shot-card figcaption span { font-size: 0.92rem; color: var(--text-soft); line-height: 1.5; }

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