/* =====================================================================
   Hubtoll — design system (2026 overhaul)
   Navy + orange brand. Self-contained: no Bootstrap, no framework.
   ===================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* brand */
  --ink-900: #0a0f29;
  --ink-800: #0e1432;
  --ink-700: #131b44;
  --navy-700: #1b2150;
  --navy-600: #243069;
  --navy-500: #2f3d82;

  --accent-300: #ffb27a;
  --accent-400: #ff9c5b;
  --accent-500: #f97e30;
  --accent-600: #ee6a16;
  --accent-700: #c9540a;

  /* neutrals */
  --white: #ffffff;
  --bg: #ffffff;
  --bg-soft: #f6f8fc;
  --bg-soft-2: #eef2fa;
  --line: #e6eaf2;
  --line-strong: #d6dcea;

  --text: #2b3350;
  --text-strong: #14193a;
  --muted: #5d6a85;

  /* on dark */
  --on-dark: #ffffff;
  --on-dark-muted: rgba(233, 238, 252, 0.72);
  --on-dark-faint: rgba(233, 238, 252, 0.55);

  /* effects */
  --grad-accent: linear-gradient(135deg, var(--accent-400), var(--accent-600));
  --grad-ink: linear-gradient(165deg, #131b44 0%, #0a0f29 70%);
  --grad-brand: linear-gradient(135deg, var(--navy-600), var(--navy-700));

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --radius-pill: 999px;

  --shadow-xs: 0 1px 2px rgba(16, 24, 64, 0.06);
  --shadow-sm: 0 4px 14px rgba(16, 24, 64, 0.07);
  --shadow: 0 14px 40px rgba(16, 24, 64, 0.1);
  --shadow-lg: 0 30px 70px rgba(13, 19, 64, 0.18);
  --shadow-accent: 0 14px 30px rgba(238, 106, 22, 0.32);

  --container: 1180px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);

  --font-sans: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Helvetica, Arial, sans-serif;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
* {
  margin: 0;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}
body {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img,
svg,
video {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
  padding: 0;
}
button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}
:focus-visible {
  outline: 3px solid var(--accent-400);
  outline-offset: 2px;
  border-radius: 6px;
}

/* ---------- Typography ---------- */
h1,
h2,
h3,
h4 {
  color: var(--text-strong);
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 800;
}
h1 {
  font-size: clamp(2.4rem, 5.2vw, 4rem);
}
h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.85rem);
}
h3 {
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  font-weight: 700;
}
h4 {
  font-size: 1.15rem;
  font-weight: 700;
}
p {
  color: var(--text);
}
strong {
  color: var(--text-strong);
  font-weight: 700;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}
.container--narrow {
  max-width: 860px;
}
.section {
  padding: clamp(64px, 9vw, 120px) 0;
  position: relative;
}
.section--tight {
  padding: clamp(48px, 6vw, 80px) 0;
}
.section--soft {
  background: var(--bg-soft);
}
.section--ink {
  background: var(--grad-ink);
  color: var(--on-dark);
}
.section--ink h1,
.section--ink h2,
.section--ink h3,
.section--ink h4 {
  color: var(--on-dark);
}
.section--ink p {
  color: var(--on-dark-muted);
}

.section-head {
  max-width: 720px;
  margin: 0 auto clamp(40px, 5vw, 64px);
  text-align: center;
}
.section-head--left {
  margin-left: 0;
  text-align: left;
}
.section-head p {
  margin-top: 16px;
  font-size: 1.12rem;
  color: var(--muted);
}
.section--ink .section-head p {
  color: var(--on-dark-muted);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-600);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--grad-accent);
}
.section--ink .eyebrow {
  color: var(--accent-300);
}
.eyebrow--center {
  justify-content: center;
}

.lead {
  font-size: 1.18rem;
  color: var(--muted);
  line-height: 1.6;
}
.muted {
  color: var(--muted);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 24px;
  font-weight: 700;
  font-size: 0.98rem;
  border-radius: var(--radius-pill);
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease),
    background 0.18s var(--ease), color 0.18s var(--ease);
  white-space: nowrap;
  cursor: pointer;
}
.btn .material-icons-round,
.btn .material-icons {
  font-size: 1.15em;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn--primary {
  background: var(--grad-accent);
  color: #fff;
  box-shadow: var(--shadow-accent);
}
.btn--primary:hover {
  box-shadow: 0 18px 38px rgba(238, 106, 22, 0.42);
}
.btn--dark {
  background: var(--navy-700);
  color: #fff;
}
.btn--dark:hover {
  background: var(--navy-600);
}
.btn--light {
  background: #fff;
  color: var(--navy-700);
  box-shadow: var(--shadow-sm);
}
.btn--ghost {
  background: transparent;
  color: var(--text-strong);
  box-shadow: inset 0 0 0 1.5px var(--line-strong);
}
.btn--ghost:hover {
  box-shadow: inset 0 0 0 1.5px var(--navy-500);
  color: var(--navy-700);
}
.section--ink .btn--ghost,
.hero .btn--ghost,
.page-hero .btn--ghost,
.contact-card .btn--ghost {
  color: #fff;
  box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.28);
}
.section--ink .btn--ghost:hover,
.hero .btn--ghost:hover,
.page-hero .btn--ghost:hover,
.contact-card .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.55);
}
.btn--lg {
  padding: 16px 30px;
  font-size: 1.05rem;
}
.btn--block {
  width: 100%;
}
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ---------- Badges / pills ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 4px 11px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
}
.badge--live {
  background: rgba(34, 197, 94, 0.12);
  color: #15803d;
}
.badge--live::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.18);
}
.badge--soon {
  background: rgba(94, 106, 133, 0.12);
  color: #5d6a85;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 15px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--on-dark-muted);
}

/* =====================================================================
   Header
   ===================================================================== */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 200;
  background: var(--navy-700);
  color: #fff;
  padding: 12px 18px;
  border-radius: 0 0 10px 0;
}
.skip-link:focus {
  left: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease),
    border-color 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header__inner {
  display: flex;
  align-items: center;
  gap: 18px;
  height: 76px;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px rgba(16, 24, 64, 0.06);
}
/* At the top of the page the header is transparent over a dark hero,
   so its contents go light; once scrolled (white bg) they revert to dark. */
.site-header:not(.is-scrolled) .brand img {
  filter: brightness(0) invert(1);
}
.site-header:not(.is-scrolled) .nav__link,
.site-header:not(.is-scrolled) .nav-cta .login-link {
  color: #fff;
}
.site-header:not(.is-scrolled) .nav__link:hover,
.site-header:not(.is-scrolled) .nav-cta .login-link:hover {
  color: var(--accent-300);
}
.site-header:not(.is-scrolled) .hamburger span {
  background: #fff;
}
.site-header:not(.is-scrolled) .btn--ghost {
  color: #fff;
  box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.32);
}
.site-header:not(.is-scrolled) .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.6);
}
.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.brand img {
  height: 30px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 8px;
}
.nav__item {
  position: relative;
}
.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.96rem;
  color: var(--text-strong);
  transition: color 0.15s var(--ease), background 0.15s var(--ease);
}
.nav__link .material-icons-round {
  font-size: 1.1rem;
  transition: transform 0.2s var(--ease);
}
.nav__link:hover {
  color: var(--accent-600);
}
.nav__item.is-open .nav__link {
  color: var(--accent-600);
}
.nav__item.is-open .nav__link .material-icons-round {
  transform: rotate(180deg);
}

.nav-spacer {
  flex: 1;
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-cta .login-link {
  font-weight: 700;
  font-size: 0.96rem;
  padding: 10px 8px;
  color: var(--text-strong);
}
.nav-cta .login-link:hover {
  color: var(--accent-600);
}

/* Mega menu */
.mega {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: min(640px, 90vw);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 14px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease),
    visibility 0.2s;
  z-index: 120;
}
.nav__item.is-open .mega {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.mega__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}
.mega__item {
  display: flex;
  gap: 13px;
  padding: 12px;
  border-radius: 14px;
  transition: background 0.15s var(--ease);
  align-items: flex-start;
}
.mega__item:hover {
  background: var(--bg-soft);
}
.mega__ic {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: var(--bg-soft-2);
  color: var(--navy-600);
}
.mega__item:hover .mega__ic {
  background: var(--grad-accent);
  color: #fff;
}
.mega__ic .material-icons-round {
  font-size: 1.3rem;
}
.mega__txt b {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.96rem;
  color: var(--text-strong);
  font-weight: 700;
}
.mega__txt span {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.45;
  margin-top: 2px;
}
.mega__foot {
  margin-top: 8px;
  padding: 14px 12px 6px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.mega__foot span {
  font-size: 0.85rem;
  color: var(--muted);
}

/* Hamburger + mobile nav */
.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.hamburger span {
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--text-strong);
  transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
}
body.nav-open .hamburger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
body.nav-open .hamburger span:nth-child(2) {
  opacity: 0;
}
body.nav-open .hamburger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(10, 15, 41, 0.45);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s var(--ease), visibility 0.25s;
}
body.nav-open .mobile-nav {
  opacity: 1;
  visibility: visible;
}
.mobile-nav__panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(360px, 86vw);
  background: #fff;
  padding: 92px 22px 28px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
body.nav-open .mobile-nav__panel {
  transform: translateX(0);
}
.mobile-nav__link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 12px;
  border-radius: 12px;
  font-weight: 600;
  color: var(--text-strong);
  border-bottom: 1px solid var(--line);
}
.mobile-nav__link .material-icons-round {
  color: var(--navy-600);
  font-size: 1.3rem;
}
.mobile-nav__link .badge {
  margin-left: auto;
}
.mobile-nav__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 18px 12px 6px;
}
.mobile-nav__cta {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

/* =====================================================================
   Hero
   ===================================================================== */
.hero {
  position: relative;
  background: var(--grad-ink);
  color: var(--on-dark);
  padding: 150px 0 clamp(80px, 10vw, 130px);
  overflow: hidden;
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  z-index: 0;
}
.hero::before {
  width: 560px;
  height: 560px;
  top: -180px;
  right: -120px;
  background: radial-gradient(circle, rgba(249, 126, 48, 0.55), transparent 70%);
}
.hero::after {
  width: 460px;
  height: 460px;
  bottom: -200px;
  left: -140px;
  background: radial-gradient(circle, rgba(47, 61, 130, 0.85), transparent 70%);
}
.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.hero h1 {
  color: #fff;
}
.hero h1 .grad {
  background: linear-gradient(120deg, var(--accent-300), var(--accent-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__sub {
  margin-top: 22px;
  font-size: 1.2rem;
  color: var(--on-dark-muted);
  max-width: 540px;
}
.hero__cta {
  margin-top: 32px;
}
.hero__trust {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  align-items: center;
}
.hero__trust span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.9rem;
  color: var(--on-dark-faint);
}
.hero__trust .material-icons-round {
  font-size: 1.05rem;
  color: var(--accent-400);
}

/* App mock (CSS-only product UI) */
.appmock {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: perspective(1600px) rotateY(-9deg) rotateX(3deg);
  transition: transform 0.5s var(--ease);
}
.appmock:hover {
  transform: perspective(1600px) rotateY(-3deg) rotateX(1deg);
}
.appmock__bar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 16px;
  background: #f3f5fa;
  border-bottom: 1px solid var(--line);
}
.appmock__dots {
  display: flex;
  gap: 6px;
}
.appmock__dots i {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #d3d9e6;
}
.appmock__dots i:nth-child(1) {
  background: #ff5f57;
}
.appmock__dots i:nth-child(2) {
  background: #febc2e;
}
.appmock__dots i:nth-child(3) {
  background: #28c840;
}
.appmock__url {
  flex: 1;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.74rem;
  color: var(--muted);
  padding: 5px 12px;
  text-align: center;
}
.appmock__body {
  display: grid;
  grid-template-columns: 92px 1fr;
  min-height: 340px;
}
.appmock__side {
  background: var(--ink-800);
  padding: 18px 12px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.appmock__logo {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: var(--grad-accent);
  margin-bottom: 8px;
}
.appmock__navi {
  height: 9px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.12);
}
.appmock__navi.is-active {
  background: var(--accent-500);
  width: 80%;
}
.appmock__main {
  padding: 20px;
  background: var(--bg-soft);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.appmock__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.appmock__stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 13px;
}
.appmock__stat b {
  display: block;
  font-size: 1.3rem;
  color: var(--text-strong);
}
.appmock__stat span {
  display: block;
  height: 7px;
  width: 60%;
  border-radius: 4px;
  background: var(--line-strong);
  margin-top: 8px;
}
.appmock__stat:nth-child(2) b {
  color: var(--accent-600);
}
.appmock__chart {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 16px;
  display: flex;
  align-items: flex-end;
  gap: 9px;
  height: 130px;
}
.appmock__chart .bar {
  flex: 1;
  border-radius: 6px 6px 0 0;
  background: var(--bg-soft-2);
}
.appmock__chart .bar.is-accent {
  background: var(--grad-accent);
}
.appmock__list {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 8px 14px;
}
.appmock__li {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
}
.appmock__li:last-child {
  border-bottom: none;
}
.appmock__av {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--bg-soft-2);
  flex-shrink: 0;
}
.appmock__ln {
  flex: 1;
  height: 8px;
  border-radius: 5px;
  background: var(--line-strong);
}
.appmock__tag {
  width: 52px;
  height: 18px;
  border-radius: 6px;
  background: rgba(34, 197, 94, 0.16);
}
.appmock__tag.is-pending {
  background: rgba(249, 126, 48, 0.18);
}

.appmock__float {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  padding: 12px 15px;
  display: flex;
  align-items: center;
  gap: 11px;
  z-index: 2;
}
.appmock__float .material-icons-round {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  background: var(--grad-accent);
  color: #fff;
  font-size: 1.2rem;
}
.appmock__float b {
  display: block;
  font-size: 0.85rem;
  color: var(--text-strong);
}
.appmock__float span {
  font-size: 0.74rem;
  color: var(--muted);
}
.appmock__float--tr {
  top: -22px;
  right: -26px;
}
.appmock__float--bl {
  bottom: -22px;
  left: -28px;
}

/* =====================================================================
   Stat strip
   ===================================================================== */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat__num {
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  background: var(--grad-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.stat__label {
  margin-top: 8px;
  font-size: 0.95rem;
  color: var(--muted);
}
.section--ink .stat__label {
  color: var(--on-dark-muted);
}

/* ---------- Trust / compliance strip ---------- */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 36px;
  align-items: center;
}
.trust-strip__item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 600;
  color: var(--muted);
  font-size: 0.96rem;
}
.trust-strip__item .material-icons-round {
  color: var(--accent-600);
}

/* =====================================================================
   Cards / grids
   ===================================================================== */
.suite-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.suite-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease),
    border-color 0.22s var(--ease);
  overflow: hidden;
}
.suite-card::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--grad-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.suite-card.is-live:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.suite-card.is-live:hover::after {
  transform: scaleX(1);
}
.suite-card.is-soon {
  background: var(--bg-soft);
  border-style: dashed;
}
.suite-card__ic {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--grad-brand);
  color: #fff;
  margin-bottom: 18px;
}
.suite-card.is-soon .suite-card__ic {
  background: var(--bg-soft-2);
  color: var(--muted);
}
.suite-card__ic .material-icons-round {
  font-size: 1.6rem;
}
.suite-card__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.suite-card__head h3 {
  font-size: 1.2rem;
}
.suite-card p {
  color: var(--muted);
  font-size: 0.97rem;
  flex: 1;
}
.suite-card__link {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--accent-600);
}
.suite-card__link .material-icons-round {
  font-size: 1.1rem;
  transition: transform 0.2s var(--ease);
}
.suite-card.is-live:hover .suite-card__link .material-icons-round {
  transform: translateX(4px);
}

/* generic card grid (module icon cards) */
.module-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.module-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.module-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}
.module-card__ic {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--bg-soft-2), #fff);
  border: 1px solid var(--line);
  color: var(--accent-600);
  margin-bottom: 16px;
}
.module-card__ic .material-icons-round {
  font-size: 1.5rem;
}
.module-card h4 {
  margin-bottom: 8px;
}
.module-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* =====================================================================
   Feature split rows (screenshot + copy)
   ===================================================================== */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}
.feature-row + .feature-row {
  margin-top: clamp(64px, 9vw, 120px);
}
.feature-row__media {
  order: 2;
}
.feature-row--reverse .feature-row__copy {
  order: 2;
}
.feature-row--reverse .feature-row__media {
  order: 1;
}
.feature-row h3 {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  margin-bottom: 16px;
}
.feature-row__copy > p {
  color: var(--muted);
  font-size: 1.08rem;
}
.feature-list {
  margin-top: 22px;
  display: grid;
  gap: 12px;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-weight: 600;
  color: var(--text-strong);
}
.section--ink .feature-list li {
  color: var(--on-dark);
}
.feature-list .material-icons-round {
  color: #fff;
  background: var(--grad-accent);
  border-radius: 50%;
  font-size: 0.95rem;
  padding: 3px;
  margin-top: 2px;
  flex-shrink: 0;
}
.module-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
}
.module-eyebrow__ic {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: var(--grad-brand);
  color: #fff;
}
.module-eyebrow__ic .material-icons-round {
  font-size: 1.35rem;
}
.module-eyebrow b {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-600);
}

/* Browser frame for screenshots */
.frame {
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.frame__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 11px 14px;
  background: #f3f5fa;
  border-bottom: 1px solid var(--line);
}
.frame__bar i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d3d9e6;
}
.frame__bar i:nth-child(1) {
  background: #ff5f57;
}
.frame__bar i:nth-child(2) {
  background: #febc2e;
}
.frame__bar i:nth-child(3) {
  background: #28c840;
}
.frame img {
  width: 100%;
  display: block;
}
/* placeholder media when no screenshot */
.frame--ph {
  aspect-ratio: 16 / 10;
  display: grid;
  place-items: center;
  background: var(--grad-ink);
  border: none;
}
.frame--ph .material-icons-round {
  font-size: 5rem;
  color: rgba(255, 255, 255, 0.22);
}

/* =====================================================================
   Platform capability grid
   ===================================================================== */
.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.platform-item {
  background: var(--ink-800);
  padding: 30px;
  transition: background 0.2s var(--ease);
}
.platform-item:hover {
  background: var(--ink-700);
}
.platform-item__ic {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(249, 126, 48, 0.16);
  color: var(--accent-300);
  margin-bottom: 16px;
}
.platform-item__ic .material-icons-round {
  font-size: 1.45rem;
}
.platform-item h4 {
  color: #fff;
  margin-bottom: 8px;
}
.platform-item p {
  color: var(--on-dark-muted);
  font-size: 0.94rem;
}

/* =====================================================================
   Steps / how it works
   ===================================================================== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 30px 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.step__num {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
  background: var(--grad-accent);
  margin-bottom: 18px;
}
.step h4 {
  margin-bottom: 8px;
}
.step p {
  color: var(--muted);
  font-size: 0.96rem;
}

/* =====================================================================
   Pricing
   ===================================================================== */
.pricing {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 880px;
  margin-inline: auto;
}
.plan {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 34px;
  display: flex;
  flex-direction: column;
}
.plan--featured {
  border: 2px solid transparent;
  background: linear-gradient(#fff, #fff) padding-box,
    var(--grad-accent) border-box;
  box-shadow: var(--shadow);
  position: relative;
}
.plan__tag {
  position: absolute;
  top: 22px;
  right: 22px;
}
.plan__name {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-600);
}
.plan__price {
  margin: 14px 0 4px;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-strong);
  letter-spacing: -0.02em;
}
.plan__price small {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
}
.plan__desc {
  color: var(--muted);
  font-size: 0.96rem;
  margin-bottom: 22px;
}
.plan__list {
  display: grid;
  gap: 13px;
  margin: 4px 0 26px;
}
.plan__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.97rem;
}
.plan__list .material-icons-round {
  color: var(--accent-600);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.plan .btn {
  margin-top: auto;
}

/* =====================================================================
   FAQ
   ===================================================================== */
.faq {
  max-width: 800px;
  margin-inline: auto;
  display: grid;
  gap: 12px;
}
.faq__item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.2s var(--ease), border-color 0.2s var(--ease);
}
.faq__item.is-open {
  box-shadow: var(--shadow-sm);
  border-color: var(--line-strong);
}
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  font-weight: 700;
  font-size: 1.05rem;
  text-align: left;
  color: var(--text-strong);
}
.faq__q .material-icons-round {
  transition: transform 0.25s var(--ease);
  color: var(--accent-600);
  flex-shrink: 0;
}
.faq__item.is-open .faq__q .material-icons-round {
  transform: rotate(45deg);
}
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s var(--ease);
}
.faq__a-inner {
  padding: 0 22px 22px;
  color: var(--muted);
}

/* =====================================================================
   CTA band
   ===================================================================== */
.cta__inner {
  position: relative;
  background: var(--grad-brand);
  border-radius: var(--radius-xl);
  padding: clamp(40px, 6vw, 72px);
  text-align: center;
  overflow: hidden;
}
.cta__inner::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249, 126, 48, 0.5), transparent 70%);
  top: -160px;
  right: -120px;
  filter: blur(40px);
}
.cta__inner > * {
  position: relative;
  z-index: 1;
}
.cta__inner h2 {
  color: #fff;
  max-width: 620px;
  margin-inline: auto;
}
.cta__inner p {
  color: rgba(255, 255, 255, 0.78);
  margin: 16px auto 28px;
  max-width: 540px;
  font-size: 1.1rem;
}
.cta__inner .btn-row {
  justify-content: center;
}

/* =====================================================================
   Footer
   ===================================================================== */
.site-footer {
  background: var(--ink-900);
  color: var(--on-dark-muted);
  padding: clamp(56px, 7vw, 84px) 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 40px 32px;
}
.footer__brand img {
  height: 30px;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
}
.footer__brand p {
  color: var(--on-dark-faint);
  font-size: 0.95rem;
  max-width: 320px;
}
.footer__col h5 {
  color: #fff;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 700;
}
.footer__col ul {
  display: grid;
  gap: 12px;
}
.footer__col a {
  color: var(--on-dark-muted);
  font-size: 0.95rem;
  transition: color 0.15s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer__col a:hover {
  color: var(--accent-300);
}
.footer__col .badge--soon {
  background: rgba(255, 255, 255, 0.08);
  color: var(--on-dark-faint);
  font-size: 0.6rem;
  padding: 2px 7px;
}
.social {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}
.social a {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  transition: background 0.18s var(--ease), transform 0.18s var(--ease);
}
.social a:hover {
  background: var(--grad-accent);
  transform: translateY(-3px);
}
.social svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}
.footer__bottom {
  margin-top: 52px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--on-dark-faint);
}
.footer__bottom a:hover {
  color: var(--accent-300);
}

/* =====================================================================
   Interior page hero
   ===================================================================== */
.page-hero {
  position: relative;
  background: var(--grad-ink);
  color: var(--on-dark);
  padding: 150px 0 clamp(56px, 8vw, 96px);
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  top: -200px;
  right: -120px;
  background: radial-gradient(circle, rgba(249, 126, 48, 0.4), transparent 70%);
  filter: blur(70px);
}
.page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.page-hero h1 {
  color: #fff;
}
.page-hero p {
  color: var(--on-dark-muted);
  font-size: 1.2rem;
  margin-top: 18px;
  max-width: 620px;
}
.page-hero .btn-row {
  margin-top: 30px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--on-dark-faint);
  margin-bottom: 18px;
}
.breadcrumb a:hover {
  color: var(--accent-300);
}

/* =====================================================================
   Sticky sub-nav (anchors)
   ===================================================================== */
.subnav {
  position: sticky;
  top: 76px;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.subnav__inner {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding: 12px 24px;
  max-width: var(--container);
  margin-inline: auto;
  scrollbar-width: none;
}
.subnav__inner::-webkit-scrollbar {
  display: none;
}
.subnav a {
  white-space: nowrap;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--muted);
  transition: background 0.15s var(--ease), color 0.15s var(--ease);
}
.subnav a:hover {
  color: var(--navy-700);
  background: var(--bg-soft);
}
.subnav a.is-active {
  background: var(--navy-700);
  color: #fff;
}

/* =====================================================================
   Contact
   ===================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.contact-method {
  display: flex;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.contact-method:last-child {
  border-bottom: none;
}
.contact-method__ic {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--grad-brand);
  color: #fff;
}
.contact-method__ic .material-icons-round {
  font-size: 1.5rem;
}
.contact-method h4 {
  margin-bottom: 4px;
}
.contact-method p,
.contact-method a {
  color: var(--muted);
  font-size: 0.98rem;
}
.contact-method a:hover {
  color: var(--accent-600);
}
.contact-card {
  background: var(--grad-ink);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: clamp(28px, 4vw, 44px);
}
.contact-card h3 {
  color: #fff;
}
.contact-card p {
  color: var(--on-dark-muted);
  margin: 12px 0 24px;
}
.contact-card .btn-row {
  flex-direction: column;
}
.map-embed {
  margin-top: 28px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  line-height: 0;
}
.map-embed iframe {
  width: 100%;
  height: 320px;
  border: 0;
}

/* =====================================================================
   About values
   ===================================================================== */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.value-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.value-card__ic {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--grad-accent);
  color: #fff;
  margin-bottom: 18px;
}
.value-card__ic .material-icons-round {
  font-size: 1.5rem;
}
.value-card h4 {
  margin-bottom: 8px;
}
.value-card p {
  color: var(--muted);
  font-size: 0.96rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 72px);
  align-items: center;
}
.split img {
  border-radius: var(--radius-lg);
}
.prose-block p {
  color: var(--muted);
  margin-top: 16px;
  font-size: 1.05rem;
}
.prose-block h3 {
  margin-top: 26px;
}

/* =====================================================================
   Legal (terms / privacy)
   ===================================================================== */
.legal {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 56px;
  align-items: start;
}
.legal__toc {
  position: sticky;
  top: 100px;
  align-self: start;
}
.legal__toc h5 {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.legal__toc ul {
  display: grid;
  gap: 2px;
  max-height: 70vh;
  overflow-y: auto;
}
.legal__toc a {
  display: block;
  padding: 7px 12px;
  border-radius: 8px;
  font-size: 0.88rem;
  color: var(--muted);
  border-left: 2px solid transparent;
  transition: all 0.15s var(--ease);
}
.legal__toc a:hover {
  color: var(--navy-700);
  background: var(--bg-soft);
}
.legal__toc a.is-active {
  color: var(--accent-700);
  border-left-color: var(--accent-500);
  background: var(--bg-soft);
  font-weight: 600;
}
.legal__body {
  max-width: 760px;
}
.legal__body h3 {
  scroll-margin-top: 100px;
  margin: 40px 0 14px;
  font-size: 1.35rem;
  font-weight: 700;
}
.legal__body h3:first-of-type {
  margin-top: 0;
}
.legal__body p {
  margin-bottom: 14px;
  line-height: 1.75;
}
.legal__body ul {
  list-style: disc;
  padding-left: 22px;
  margin-bottom: 16px;
  display: grid;
  gap: 8px;
}
.legal__body li {
  line-height: 1.7;
}
.legal__body a {
  color: var(--accent-700);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal__meta {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  padding: 12px 18px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 32px;
}

/* =====================================================================
   404
   ===================================================================== */
.notfound {
  min-height: 70vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 140px 24px 80px;
}
.notfound__code {
  font-size: clamp(5rem, 18vw, 11rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  background: var(--grad-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* =====================================================================
   Reveal animations
   ===================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.reveal[data-delay="1"] {
  transition-delay: 0.08s;
}
.reveal[data-delay="2"] {
  transition-delay: 0.16s;
}
.reveal[data-delay="3"] {
  transition-delay: 0.24s;
}
.reveal[data-delay="4"] {
  transition-delay: 0.32s;
}

/* ---------- helpers ---------- */
.center {
  text-align: center;
}
.mt-s {
  margin-top: 16px;
}
.mt-m {
  margin-top: 28px;
}
.mt-l {
  margin-top: 44px;
}

/* =====================================================================
   Responsive
   ===================================================================== */
@media (max-width: 1024px) {
  .suite-grid,
  .module-grid,
  .platform-grid,
  .value-grid,
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
  }
  .hero__grid {
    grid-template-columns: 1fr;
  }
  .hero__visual {
    max-width: 560px;
  }
  .appmock {
    transform: none;
  }
  .appmock:hover {
    transform: none;
  }
  .legal {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .legal__toc {
    position: static;
    display: none;
  }
}

@media (max-width: 880px) {
  .nav,
  .nav-cta .login-link,
  .nav-cta .btn--ghost {
    display: none;
  }
  .hamburger {
    display: flex;
    margin-left: auto;
  }
  .nav-spacer {
    display: none;
  }
  .feature-row,
  .feature-row--reverse,
  .contact-grid,
  .split {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .feature-row__media,
  .feature-row--reverse .feature-row__copy,
  .feature-row--reverse .feature-row__media {
    order: 0;
  }
  .pricing {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 16px;
  }
  .suite-grid,
  .module-grid,
  .platform-grid,
  .value-grid,
  .steps,
  .stats {
    grid-template-columns: 1fr;
  }
  .btn-row .btn {
    width: 100%;
  }
  .appmock__float {
    display: none;
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer__brand {
    grid-column: 1 / -1;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
