:root {
  /* Professional ledger theme — ink + teal (GST / finance) */
  --bg: #f3f5f8;
  --bg-elevated: #fafbfc;
  --surface: #ffffff;
  --surface-muted: #eef2f6;
  --text: #0b1424;
  --muted: #3d4f63;
  --subtle: #5b6b7c;
  --border: rgba(11, 20, 36, 0.08);
  --border-strong: rgba(11, 20, 36, 0.14);
  --ink: #0b1424;
  --navy: #0a1622;
  --navy-mid: #122536;
  --primary: #0f766e;
  --primary-strong: #0d5c56;
  --primary-soft: #e6f7f5;
  --accent: #1a9bb0;
  --accent-mint: #2dd4a8;
  --green: #0f9f6e;
  --green-soft: #e8f8f1;
  --gold: #b8954a;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --shadow-sm: 0 1px 2px rgba(11, 20, 36, 0.04), 0 8px 20px rgba(11, 20, 36, 0.04);
  --shadow-md: 0 4px 6px rgba(11, 20, 36, 0.03), 0 16px 40px rgba(11, 20, 36, 0.07);
  --shadow-lg: 0 8px 16px rgba(11, 20, 36, 0.04), 0 28px 56px rgba(11, 20, 36, 0.1);
  --shadow-glow: 0 0 0 1px rgba(255, 255, 255, 0.06) inset, 0 24px 64px rgba(15, 118, 110, 0.16);
  --shadow: var(--shadow-lg);
  --ease-premium: cubic-bezier(0.16, 1, 0.3, 1);
  --font-display: "Sora", "Source Sans 3", system-ui, sans-serif;
  --font-body: "Source Sans 3", "Sora", system-ui, sans-serif;
}

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

::selection {
  background: rgba(15, 118, 110, 0.2);
  color: var(--text);
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }

  .btn:hover,
  .feature-card:hover {
    transform: translateY(-2px);
  }

  .btn-primary:hover {
    box-shadow:
      0 16px 32px rgba(15, 118, 110, 0.28),
      0 0 0 1px rgba(255, 255, 255, 0.12) inset;
  }
}

body {
  position: relative;
  margin: 0;
  font-family: var(--font-body);
  background:
    radial-gradient(ellipse 80% 50% at 0% 0%, rgba(15, 118, 110, 0.06), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 10%, rgba(26, 155, 176, 0.05), transparent 50%),
    var(--bg);
  color: var(--text);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
.brand-name,
.pricing-amount,
.hero-brand {
  font-family: var(--font-display);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(6, 13, 24, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 13, 24, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, #000 20%, transparent 100%);
}

/* Keyboard-only: first Tab lands here; link is off-screen until :focus-visible. */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  z-index: 100;
  width: 1px;
  height: 1px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  outline: none;
}

.skip-link:focus-visible {
  left: 12px;
  top: 12px;
  width: auto;
  height: auto;
  margin: 0;
  padding: 10px 16px;
  overflow: visible;
  clip-path: none;
  white-space: normal;
  border-radius: var(--radius-sm);
  background: var(--primary-strong);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.88rem;
  box-shadow: var(--shadow-md);
  outline: 3px solid rgba(255, 255, 255, 0.95);
  outline-offset: 2px;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(15, 118, 110, 0.38);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

.container {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(6, 13, 24, 0.55);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px) saturate(1.4);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04) inset;
  transition:
    background 0.35s var(--ease-premium),
    box-shadow 0.35s var(--ease-premium),
    border-color 0.25s ease;
}

.topbar.is-scrolled {
  background: rgba(6, 13, 24, 0.92);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 16px 48px rgba(0, 0, 0, 0.24);
}

.topbar-inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.topbar-row {
  width: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
}

.brand:hover {
  text-decoration: none;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-name {
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1;
}

.brand-easy {
  color: #ffffff;
}

.brand-hisab {
  color: #5eead4;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
}

.nav-links {
  width: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 4px 6px;
  font-size: 0.88rem;
  font-weight: 600;
}

.nav-links a {
  position: relative;
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.68);
  border-radius: 8px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-links a:hover {
  color: #ffffff;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.08);
}

.nav-links a.nav-cta {
  margin-left: 6px;
  padding: 9px 16px;
  color: #ffffff;
  background: linear-gradient(135deg, #14b8a6 0%, #0f766e 55%, #0d5c56 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 20px rgba(15, 118, 110, 0.35);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.nav-links a.nav-cta:hover {
  background: linear-gradient(135deg, #2dd4bf 0%, #14b8a6 55%, #0f766e 100%);
  box-shadow: 0 8px 28px rgba(15, 118, 110, 0.45);
}

.nav-links a.nav-cta::after {
  display: none;
}

.nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 8px;
  padding-left: 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-login {
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
}

.nav-login:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}

.nav-login::after {
  display: none;
}

@media (prefers-reduced-motion: no-preference) {
  .nav-links a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 4px;
    width: 0;
    height: 2px;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--accent), var(--accent-mint));
    transform: translateX(-50%);
    transition: width 0.22s ease;
  }

  .nav-links a:hover::after,
  .nav-links a.is-active::after {
    width: calc(100% - 24px);
  }

  .nav-links a.nav-cta::after,
  .nav-links a.nav-login::after {
    display: none;
  }
}

.nav-links a.is-active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.hero {
  position: relative;
  min-height: calc(100vh - 68px);
  overflow: hidden;
  isolation: isolate;
  display: grid;
  align-items: center;
  background:
    radial-gradient(ellipse 85% 65% at 88% 12%, rgba(15, 118, 110, 0.28), transparent 55%),
    radial-gradient(ellipse 55% 45% at 8% 88%, rgba(26, 155, 176, 0.12), transparent 50%),
    radial-gradient(ellipse 40% 30% at 45% 55%, rgba(45, 212, 168, 0.05), transparent 60%),
    linear-gradient(165deg, #061018 0%, #0a1622 40%, #0f2430 72%, #0a141c 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.hero::before {
  content: "";
  position: absolute;
  pointer-events: none;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 10%, transparent 75%);
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 160px;
  background: linear-gradient(180deg, transparent, var(--bg));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0 96px;
}

.hero-content > * {
  max-width: 670px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  min-height: 32px;
  padding: 6px 14px 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-mint), var(--accent));
  box-shadow: 0 0 12px rgba(52, 211, 153, 0.6);
}

.section-kicker {
  display: block;
  width: fit-content;
  margin-bottom: 12px;
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-brand {
  display: block;
  margin: 0 0 14px;
  font-size: clamp(1.65rem, 3.5vw, 2.15rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #ffffff;
  line-height: 1.1;
}

.hero-brand .brand-easy {
  color: #ffffff;
}

.hero-brand .brand-hisab {
  color: var(--accent-mint);
}

.headline-accent {
  background: linear-gradient(135deg, #5eead4 0%, #2dd4a8 45%, #67e8f9 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero h1 {
  color: #ffffff;
}

.hero p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
  line-height: 1.7;
}

h1 {
  margin-bottom: 20px;
  color: var(--ink);
  font-size: clamp(2.35rem, 6.2vw, 3.65rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 800;
  max-width: 780px;
  text-wrap: balance;
}

h2 {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: clamp(1.65rem, 3.6vw, 2.55rem);
  line-height: 1.06;
  letter-spacing: -0.028em;
  font-weight: 800;
  text-wrap: balance;
}

h3 {
  margin-bottom: 8px;
  color: #102033;
  font-size: 1.08rem;
  line-height: 1.28;
  font-weight: 700;
}

.hero p,
.section-head p,
.workflow p,
.reports-band p,
.final-cta p {
  font-size: 1.05rem;
  max-width: 62ch;
  line-height: 1.65;
}

.section-head p,
.workflow p,
.final-cta p {
  color: var(--muted);
}

.section-head > p {
  max-width: 56ch;
}

.cta-row {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

/* Official Google Play badge — do not crop, recolor, or distort (Google brand guidelines). */
.play-badge-link {
  display: inline-block;
  line-height: 0;
  border-radius: var(--radius-sm);
  transition: opacity 0.2s ease;
}

.play-badge-link:hover {
  text-decoration: none;
  opacity: 0.92;
}

.play-badge-link:focus-visible {
  outline: 3px solid rgba(15, 118, 110, 0.38);
  outline-offset: 4px;
}

.play-badge {
  display: block;
  height: 60px;
  width: auto;
  max-width: min(100%, 200px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition:
    transform 0.2s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.btn:hover {
  text-decoration: none;
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #14b8a6 0%, #0f766e 50%, #0d5c56 100%);
  box-shadow:
    0 4px 16px rgba(15, 118, 110, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.btn-secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
}

.section .btn-secondary,
.content-shell .btn-secondary,
.pricing-card .btn-secondary,
.cta-band .btn-secondary,
.marketing-page .page-hero-actions .btn-secondary {
  color: var(--primary-strong);
  background: var(--surface);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-sm);
  backdrop-filter: none;
}

.section .btn-secondary:hover,
.content-shell .btn-secondary:hover,
.pricing-card .btn-secondary:hover,
.marketing-page .page-hero-actions .btn-secondary:hover {
  background: var(--primary-soft);
  border-color: rgba(15, 118, 110, 0.2);
}

.hero-points {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-points span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  backdrop-filter: blur(10px);
}

.trust-ledger {
  position: relative;
  z-index: 3;
  margin-top: -48px;
}

.ledger-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.ledger-card {
  position: relative;
  min-width: 0;
  padding: 22px 22px 24px;
  background: linear-gradient(165deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(6, 13, 24, 0.07);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition:
    transform 0.28s var(--ease-premium),
    box-shadow 0.28s ease,
    border-color 0.22s ease;
}

.ledger-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.04), transparent 55%);
  pointer-events: none;
}

.ledger-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(15, 118, 110, 0.14);
}

.ledger-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  border-radius: 13px;
  color: var(--primary);
  background: linear-gradient(145deg, #e6f7f5, #ccfbf1);
  border: 1px solid rgba(15, 118, 110, 0.12);
  box-shadow: 0 8px 20px rgba(15, 118, 110, 0.12);
}

.ledger-icon svg {
  width: 22px;
  height: 22px;
}

.ledger-icon--mint {
  color: #059669;
  background: linear-gradient(145deg, #ecfdf5, #d1fae5);
  border-color: rgba(16, 185, 129, 0.15);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.12);
}

.ledger-icon--slate {
  color: #0f766e;
  background: linear-gradient(145deg, #e6f7f5, #ccfbf1);
  border-color: rgba(15, 118, 110, 0.12);
  box-shadow: 0 8px 20px rgba(15, 118, 110, 0.1);
}

.ledger-icon--gold {
  color: #b45309;
  background: linear-gradient(145deg, #fffbeb, #fef3c7);
  border-color: rgba(180, 83, 9, 0.12);
  box-shadow: 0 8px 20px rgba(180, 83, 9, 0.1);
}

.ledger-kicker,
.ledger-card span.ledger-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--primary);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ledger-card strong {
  display: block;
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.ledger-card small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.hero-scene {
  position: absolute;
  right: max(18px, calc((100vw - 1140px) / 2));
  bottom: 22px;
  width: min(430px, 36vw);
  z-index: 1;
  will-change: transform;
  filter: drop-shadow(0 32px 64px rgba(0, 0, 0, 0.45));
}

@media (prefers-reduced-motion: reduce) {
  .hero-scene {
    will-change: auto;
  }
}

html.motion-safe .reveal-on-scroll {
  opacity: 0;
  transform: translate3d(0, 26px, 0);
  transition:
    opacity 0.75s var(--ease-premium) var(--reveal-delay, 0s),
    transform 0.75s var(--ease-premium) var(--reveal-delay, 0s);
}

html.motion-safe .reveal-on-scroll.is-revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.phone-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 18.5;
  padding: 11px;
  border-radius: 44px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, transparent 40%),
    linear-gradient(165deg, #1e293b 0%, #0f172a 42%, #020617 100%);
  box-shadow:
    0 48px 96px rgba(0, 0, 0, 0.55),
    0 0 80px rgba(15, 118, 110, 0.15),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
  transform: rotate(2deg);
}

.phone-frame::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 50%;
  width: 100px;
  height: 26px;
  border-radius: 999px;
  background: linear-gradient(180deg, #0a1422 0%, #152a45 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 4px 12px rgba(0, 0, 0, 0.35);
  transform: translateX(-50%);
  z-index: 2;
}

.phone-frame::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 22%;
  width: 3px;
  height: 56px;
  border-radius: 99px;
  background: linear-gradient(180deg, #243a52, #152a45);
  opacity: 0.85;
  z-index: 1;
}

.phone-screen {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  padding: 36px 12px 10px;
  border-radius: 32px;
  background:
    radial-gradient(120% 45% at 50% -15%, rgba(15, 118, 110, 0.06), transparent 55%),
    linear-gradient(180deg, #fbfcff 0%, #f0f5fc 45%, #e6eef8 100%);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.phone-screen::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 40px rgba(12, 24, 41, 0.04);
  z-index: 0;
}

.phone-status {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6px 8px;
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.02em;
  color: #0c1829;
}

.phone-status-time {
  font-variant-numeric: tabular-nums;
}

.phone-status-tray {
  display: flex;
  align-items: center;
  gap: 6px;
}

.phone-signal {
  display: inline-flex;
  gap: 2px;
  align-items: flex-end;
  height: 9px;
}

.phone-signal i {
  display: block;
  width: 3px;
  border-radius: 1px;
  background: #0c1829;
  opacity: 0.88;
}

.phone-signal i:nth-child(1) {
  height: 4px;
  opacity: 0.45;
}

.phone-signal i:nth-child(2) {
  height: 6px;
}

.phone-signal i:nth-child(3) {
  height: 8px;
}

.phone-battery {
  width: 22px;
  height: 10px;
  border-radius: 3px;
  border: 1.5px solid #0c1829;
  position: relative;
  opacity: 0.9;
}

.phone-battery::before {
  content: "";
  position: absolute;
  right: -3px;
  top: 2px;
  width: 2px;
  height: 4px;
  border-radius: 0 1px 1px 0;
  background: #0c1829;
}

.phone-battery::after {
  content: "";
  position: absolute;
  inset: 2px 3px 2px 2px;
  border-radius: 1px;
  background: linear-gradient(90deg, #1d9a52, #0f766e);
}

.phone-scroll {
  position: relative;
  z-index: 1;
  flex: 1;
  min-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 4px;
  mask-image: linear-gradient(180deg, #000 0%, #000 94%, transparent 100%);
}

.phone-section-label {
  margin: 2px 0 0;
  padding: 0 2px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--subtle);
}

.app-header,
.business-tile,
.invoice-card,
.stats-row span {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(15, 36, 59, 0.07);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 6px 16px rgba(15, 36, 59, 0.05);
}

.app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 46px;
  padding: 8px 12px;
  border-radius: var(--radius-md);
  color: #0b2345;
}

.app-header-main {
  min-width: 0;
}

.app-header-title {
  display: block;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.app-header-sub {
  display: block;
  margin-top: 2px;
  font-size: 0.58rem;
  font-weight: 700;
  color: var(--subtle);
  letter-spacing: 0.02em;
}

.app-header-bell {
  position: relative;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(15, 36, 59, 0.08);
}

.app-header-bell::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 46%;
  transform: translate(-50%, -50%);
  width: 11px;
  height: 12px;
  border-radius: 6px 6px 2px 2px;
  border: 1.5px solid var(--primary-strong);
  border-top: 0;
}

.app-header-bell::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 22%;
  transform: translateX(-50%);
  width: 5px;
  height: 3px;
  border-radius: 99px 99px 0 0;
  border: 1.5px solid var(--primary-strong);
  border-bottom: 0;
}

.app-header-bell-dot {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #e25555;
  border: 1.5px solid #fff;
}

.hero-metric {
  padding: 12px 12px 10px;
  border-radius: var(--radius-md);
  color: #ffffff;
  background:
    radial-gradient(ellipse 120% 90% at 10% 0%, rgba(120, 200, 255, 0.28), transparent 55%),
    linear-gradient(145deg, #0d7a62 0%, #0f766e 52%, #0d5c56 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 10px 24px rgba(10, 52, 120, 0.22);
}

.hero-metric span,
.hero-metric strong,
.hero-metric em {
  display: block;
}

.hero-metric span {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.88;
}

.hero-metric strong {
  margin-top: 4px;
  font-size: 1.28rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}

.hero-metric em {
  margin-top: 6px;
  padding: 4px 8px;
  width: fit-content;
  border-radius: 999px;
  font-size: 0.58rem;
  font-style: normal;
  font-weight: 800;
  color: #fff8e8;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.kpi-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.kpi-row span {
  padding: 8px 6px;
  border-radius: var(--radius-sm);
  text-align: center;
  font-size: 0.58rem;
  font-weight: 700;
  color: var(--subtle);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(15, 36, 59, 0.07);
}

.kpi-row b {
  display: block;
  margin-bottom: 2px;
  color: var(--primary-strong);
  font-size: 0.72rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.business-tile {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 64px;
  padding: 10px 11px;
  border-radius: var(--radius-md);
}

.business-avatar {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  padding: 2px;
  background: linear-gradient(135deg, #0f766e, #1d9a52);
  box-shadow: 0 6px 14px rgba(15, 118, 110, 0.22);
}

.business-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: contain;
  background: #fff;
}

.business-copy {
  min-width: 0;
}

.business-copy strong,
.business-copy span {
  display: block;
}

.business-copy strong {
  color: #0b2345;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.business-copy span {
  margin-top: 2px;
  color: var(--subtle);
  font-size: 0.68rem;
}

.stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.stats-row span {
  padding: 10px 10px;
  border-radius: var(--radius-md);
  color: var(--subtle);
  font-size: 0.65rem;
  line-height: 1.35;
}

.stats-row strong {
  display: block;
  color: var(--primary-strong);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.invoice-card {
  position: relative;
  padding: 11px 11px 10px;
  border-radius: var(--radius-md);
  border-left: 3px solid transparent;
}

.invoice-card--pending {
  border-left-color: #e8a42e;
}

.invoice-card--paid {
  border-left-color: #1d9a52;
}

.invoice-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 4px;
}

.invoice-no {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--primary);
  text-transform: uppercase;
}

.invoice-badge {
  padding: 2px 7px;
  border-radius: 6px;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.invoice-badge--draft {
  color: #8a5a00;
  background: #fff7e6;
  border: 1px solid rgba(232, 164, 46, 0.35);
}

.invoice-badge--issued {
  color: #0d5c56;
  background: var(--primary-soft);
  border: 1px solid rgba(15, 118, 110, 0.15);
}

.invoice-party {
  display: block;
  margin: 0 0 6px;
  color: #0c1829;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.invoice-lines {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-bottom: 8px;
  padding: 6px 0 2px;
  border-top: 1px dashed rgba(15, 36, 59, 0.1);
}

.invoice-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  font-size: 0.62rem;
  color: var(--muted);
}

.invoice-line span:last-child {
  font-weight: 750;
  font-variant-numeric: tabular-nums;
  color: #0c1829;
}

.invoice-note {
  margin: 0 0 8px;
  font-size: 0.62rem;
  color: var(--muted);
  line-height: 1.35;
}

.invoice-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-top: 2px;
}

.invoice-meta b {
  font-size: 0.9rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: #0b2345;
  letter-spacing: -0.02em;
}

.invoice-meta em {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 0.62rem;
  font-style: normal;
  font-weight: 800;
}

.invoice-meta em.pending {
  color: #7a5200;
  background: linear-gradient(135deg, #fff8e8, #fff3d6);
  border: 1px solid rgba(232, 164, 46, 0.35);
}

.invoice-meta em.paid {
  color: #0f6b36;
  background: linear-gradient(135deg, #ecfdf3, var(--green-soft));
  border: 1px solid rgba(29, 154, 82, 0.22);
}

.bottom-nav {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  margin-top: auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  gap: 2px;
  padding: 8px 6px 6px;
  border-radius: 22px;
  font-size: 0.58rem;
  font-weight: 750;
  color: var(--muted);
  text-align: center;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(15, 36, 59, 0.08);
  box-shadow:
    0 -12px 32px rgba(15, 36, 59, 0.06),
    0 1px 0 rgba(255, 255, 255, 0.95) inset;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.bottom-nav span:not(.bottom-nav-fab) {
  padding-bottom: 4px;
}

.bottom-nav span.is-active {
  color: var(--primary-strong);
  position: relative;
}

.bottom-nav span.is-active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 18px;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--primary), #2aab6f);
}

.bottom-nav-fab {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin: -18px auto 0;
  padding: 0;
  border-radius: 999px;
  background: linear-gradient(155deg, #1a6ee8, var(--primary-strong));
  border: 3px solid rgba(255, 255, 255, 0.95);
  box-shadow:
    0 12px 28px rgba(15, 118, 110, 0.38),
    0 0 0 1px rgba(15, 118, 110, 0.2) inset;
}

.bottom-nav-fab img {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  object-fit: contain;
}

.section {
  padding: 76px 0;
}

.product-strip {
  padding: 48px 0;
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
  border-block: 1px solid rgba(6, 13, 24, 0.05);
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.strip-tile {
  position: relative;
  min-width: 0;
  padding: 18px 16px 20px;
  background: var(--surface);
  border: 1px solid rgba(6, 13, 24, 0.06);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.25s var(--ease-premium),
    box-shadow 0.25s ease,
    border-color 0.2s ease;
}

.strip-tile:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: rgba(15, 118, 110, 0.12);
}

.strip-tile-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 28px;
  margin-bottom: 12px;
  padding: 0 8px;
  border-radius: 8px;
  background: linear-gradient(135deg, #e6f7f5, #ccfbf1);
  color: var(--primary-strong);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.strip-tile-icon--mint {
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
  color: #047857;
}

.strip-tile-icon--slate {
  background: linear-gradient(135deg, #e6f7f5, #ccfbf1);
  color: #0f766e;
}

.strip-tile-icon--gold {
  background: linear-gradient(135deg, #fffbeb, #fef3c7);
  color: #b45309;
}

.strip-tile strong,
.strip-tile span {
  display: block;
}

.strip-tile strong {
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.strip-tile span:last-child {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.app-showcase {
  padding-top: 72px;
  background: var(--bg);
  border-bottom: 1px solid rgba(6, 13, 24, 0.05);
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.showcase-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 100%;
  padding: 22px 22px 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(6, 13, 24, 0.07);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform 0.28s var(--ease-premium), box-shadow 0.28s ease, border-color 0.22s ease;
}

.showcase-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent-mint));
  opacity: 0.85;
}

.showcase-card--invoice::before {
  background: linear-gradient(90deg, #1a9bb0, var(--primary));
}

.showcase-card--reports::before {
  background: linear-gradient(90deg, var(--accent-mint), #14b8a6);
}

.showcase-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(15, 118, 110, 0.14);
}

.showcase-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.showcase-tag {
  display: inline-flex;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.08);
  color: var(--primary-strong);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.showcase-card--reports .showcase-tag {
  background: rgba(16, 185, 129, 0.1);
  color: #047857;
}

.showcase-card h3 {
  margin: 0;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.showcase-card p {
  margin: 0;
  flex: 1;
  color: var(--muted);
  font-size: 0.9rem;
}

.showcase-screen {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
  padding: 14px;
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, #eef2f7 100%);
  border: 1px solid rgba(6, 13, 24, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 10px 30px rgba(6, 13, 24, 0.06);
}

.showcase-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--border);
}

.showcase-bar strong {
  font-size: 0.78rem;
  letter-spacing: -0.02em;
}

.showcase-bell {
  position: relative;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--primary-soft);
}

.showcase-bell i {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #e25555;
}

.showcase-hero-metric {
  padding: 12px;
  border-radius: var(--radius-sm);
  color: #fff;
  background: linear-gradient(145deg, #0d7a62, #0f766e 55%, #0d5c56);
}

.showcase-hero-metric span,
.showcase-hero-metric strong {
  display: block;
}

.showcase-hero-metric span {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.9;
}

.showcase-hero-metric strong {
  margin-top: 4px;
  font-size: 1.1rem;
  font-variant-numeric: tabular-nums;
}

.showcase-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.showcase-kpis span {
  padding: 8px 4px;
  text-align: center;
  font-size: 0.56rem;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.showcase-kpis b {
  display: block;
  margin-bottom: 2px;
  color: var(--primary-strong);
  font-size: 0.68rem;
}

.showcase-doc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-bottom: 6px;
  border-bottom: 1px dashed var(--border-strong);
}

.showcase-doc-head span {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--subtle);
}

.showcase-doc-head strong {
  font-size: 0.78rem;
  color: var(--primary);
}

.showcase-doc-line {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 0.68rem;
  color: var(--muted);
}

.showcase-doc-line span:last-child {
  font-weight: 750;
  font-variant-numeric: tabular-nums;
  color: var(--text);
}

.showcase-doc-line--muted {
  opacity: 0.72;
  font-style: italic;
}

.showcase-doc-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 4px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
  font-size: 0.72rem;
  color: var(--muted);
}

.showcase-doc-total strong {
  font-size: 0.92rem;
  color: var(--primary-strong);
  font-variant-numeric: tabular-nums;
}

.showcase-export {
  margin-top: 4px;
  padding: 10px 12px;
  text-align: center;
  border-radius: var(--radius-sm);
  font-size: 0.72rem;
  font-weight: 800;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  box-shadow: 0 8px 18px rgba(15, 118, 110, 0.22);
}

.section-head {
  margin-bottom: 28px;
}

.section-head.compact {
  margin-bottom: 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  padding: 28px 26px 30px;
  background: linear-gradient(165deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(6, 13, 24, 0.07);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  transition: transform 0.28s var(--ease-premium), box-shadow 0.28s ease, border-color 0.2s ease;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent-mint));
  opacity: 0.75;
  transition: opacity 0.22s ease;
}

.feature-card::after {
  content: "";
  position: absolute;
  right: -30px;
  top: -30px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 118, 110, 0.06), transparent 70%);
  pointer-events: none;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(15, 118, 110, 0.14);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.58;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 12px;
  background: linear-gradient(145deg, #e6f7f5 0%, #ccfbf1 100%);
  color: var(--primary-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  border: 1px solid rgba(15, 118, 110, 0.12);
  box-shadow: 0 6px 16px rgba(15, 118, 110, 0.12);
}

.feature-card h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}

.usp-section {
  background: var(--bg);
  border-top: 1px solid rgba(6, 13, 24, 0.05);
}

.usp-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 14px;
}

.usp-card {
  min-height: 210px;
  padding: 26px;
  background: linear-gradient(165deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(6, 13, 24, 0.07);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  transition: box-shadow 0.28s ease, border-color 0.2s ease, transform 0.28s var(--ease-premium);
}

.usp-card:not(.highlight):hover {
  border-color: rgba(15, 118, 110, 0.12);
  box-shadow: var(--shadow-md);
}

@media (prefers-reduced-motion: no-preference) {
  .usp-card:not(.highlight):hover {
    transform: translateY(-2px);
  }
}

.usp-card.highlight {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 26px;
  min-height: 434px;
  color: #ffffff;
  background:
    radial-gradient(ellipse 120% 80% at 20% 0%, rgba(100, 180, 255, 0.25), transparent 50%),
    linear-gradient(155deg, #0d1f35 0%, #124a9a 42%, #0d5c56 100%);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-md);
}

.usp-card.highlight h3,
.usp-card.highlight p,
.usp-card.highlight .usp-label {
  color: #ffffff;
}

.usp-card.highlight .usp-label {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.usp-card.highlight p {
  opacity: 0.84;
}

.usp-flow-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.usp-flow-preview div {
  min-height: 86px;
  padding: 14px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.usp-flow-preview span,
.usp-flow-preview strong {
  display: block;
}

.usp-flow-preview span {
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.usp-flow-preview strong {
  color: #ffffff;
  font-size: 0.96rem;
  line-height: 1.25;
}

.usp-label {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  padding: 4px 9px;
  border-radius: 999px;
  color: var(--primary);
  background: var(--primary-soft);
  font-size: 0.72rem;
  font-weight: 900;
}

.usp-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.workflow {
  background: var(--surface);
  border-top: 1px solid rgba(6, 13, 24, 0.05);
  border-bottom: 1px solid rgba(6, 13, 24, 0.05);
}

.workflow-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 36px;
  align-items: start;
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
  counter-reset: step;
}

.steps li {
  position: relative;
  padding: 22px 22px 22px 68px;
  background: linear-gradient(165deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(6, 13, 24, 0.07);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  counter-increment: step;
  transition: border-color 0.2s ease, box-shadow 0.28s ease, transform 0.28s var(--ease-premium);
}

.steps li:hover {
  border-color: rgba(15, 118, 110, 0.14);
  box-shadow: var(--shadow-lg);
  transform: translateX(4px);
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 20px;
  top: 22px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: #ffffff;
  background: linear-gradient(145deg, #14b8a6, #0d5c56);
  font-weight: 800;
  font-size: 0.88rem;
  box-shadow: 0 6px 18px rgba(15, 118, 110, 0.35);
}

.steps strong,
.steps span {
  display: block;
}

.steps strong {
  color: #0b2345;
}

.steps span {
  color: var(--muted);
}

.reports-band {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(ellipse 80% 120% at 100% 20%, rgba(15, 118, 110, 0.35), transparent 55%),
    radial-gradient(ellipse 60% 80% at 0% 100%, rgba(29, 154, 82, 0.12), transparent 45%),
    linear-gradient(165deg, #0c1829 0%, #0f243b 40%, #0a1628 100%);
}

.reports-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 34px;
  align-items: center;
}

.reports-band h2,
.reports-band p {
  color: #ffffff;
}

.reports-band p {
  opacity: 0.82;
}

.reports-band .section-kicker {
  color: var(--accent-mint);
  letter-spacing: 0.14em;
}

.report-panel {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
}

.report-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.2s ease;
}

.report-row:hover {
  background: rgba(255, 255, 255, 0.04);
}

.report-row:last-child {
  border-bottom: 0;
}

.report-row span {
  color: rgba(255, 255, 255, 0.75);
}

.report-row strong {
  color: #ffffff;
  font-size: 1.08rem;
}

.report-row--action {
  background: rgba(255, 255, 255, 0.08);
}

.report-row--action strong {
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.security-section {
  background: #ffffff;
}

.security-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: start;
}

.security-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.security-list div {
  min-height: 150px;
  padding: 22px;
  background: linear-gradient(165deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(6, 13, 24, 0.07);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: border-color 0.2s ease, box-shadow 0.28s ease, transform 0.28s var(--ease-premium);
}

.security-list div:hover {
  border-color: rgba(15, 118, 110, 0.14);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.security-list strong,
.security-list span {
  display: block;
}

.security-list strong {
  margin-bottom: 8px;
  color: #0b2345;
}

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

.final-cta {
  background: var(--bg);
}

.final-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 40px 44px;
  color: #ffffff;
  background:
    radial-gradient(ellipse 80% 100% at 100% 0%, rgba(56, 189, 248, 0.15), transparent 50%),
    linear-gradient(155deg, #0a1628 0%, #111f35 45%, #0f172a 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-glow);
}

.final-grid h2 {
  margin-bottom: 8px;
  color: #ffffff;
}

.final-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.final-grid .section-kicker {
  color: var(--accent);
}

.final-grid .btn-secondary,
.final-cta-actions .btn-secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
}

.final-grid .btn-secondary:hover,
.final-cta-actions .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.24);
}

.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
  flex-shrink: 0;
}

.content-page {
  padding: 0 0 64px;
}

.content-page .container {
  padding-top: 48px;
}

.content-shell {
  max-width: 720px;
  margin: 0 auto;
  background: linear-gradient(165deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(6, 13, 24, 0.07);
  border-radius: var(--radius-xl);
  padding: 36px 38px 38px;
  box-shadow: var(--shadow-lg);
}

.content-shell--legal {
  position: relative;
  overflow: hidden;
}

.content-shell--legal::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent-mint));
}

.content-shell--legal h1 {
  margin-bottom: 6px;
}

.legal-meta {
  margin: 0 0 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(6, 13, 24, 0.08);
  color: var(--subtle);
  font-size: 0.88rem;
  font-weight: 600;
}

.content-shell p,
.content-shell li {
  line-height: 1.72;
  color: #3d4f63;
}

.content-shell p {
  margin: 0 0 12px;
}

.content-shell p:last-child {
  margin-bottom: 0;
}

.content-shell h1 {
  margin-bottom: 8px;
  font-size: clamp(1.5rem, 4.2vw, 2.35rem);
  line-height: 1.15;
}

.content-shell h2 {
  margin: 26px 0 8px;
  color: #0b2345;
  font-size: 1.12rem;
}

.content-shell ul {
  margin: 8px 0;
  padding-left: 20px;
}

.content-shell li {
  margin: 4px 0;
}

.note {
  margin: 18px 0 0;
  padding: 16px 18px;
  background: linear-gradient(90deg, rgba(15, 118, 110, 0.06), rgba(52, 211, 153, 0.04) 55%, #f8fafc 100%);
  border: 1px solid rgba(15, 118, 110, 0.12);
  border-left: 3px solid var(--primary);
  border-radius: var(--radius-md);
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

footer {
  padding: 48px 0 40px;
  background: linear-gradient(180deg, #0a1220 0%, #060d18 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 18px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.88rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.55);
  font-weight: 600;
  transition: color 0.18s ease;
}

.footer-links a:hover {
  color: #ffffff;
  text-decoration: none;
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 58px 0 30px;
  }

  .hero-content > * {
    max-width: 760px;
  }

  .hero-scene {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(360px, calc(100% - 32px));
    margin: 0 auto 44px;
  }

  .phone-frame {
    transform: none;
  }

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

  .strip-grid,
  .feature-grid,
  .workflow-grid,
  .reports-grid,
  .ledger-grid,
  .usp-grid,
  .security-grid {
    grid-template-columns: 1fr 1fr;
  }

  .workflow-grid,
  .reports-grid,
  .security-grid {
    gap: 24px;
  }

  .usp-card.highlight {
    min-height: 320px;
  }
}

@media (max-width: 720px) {
  .topbar-inner {
    align-items: stretch;
    flex-direction: column;
    justify-content: center;
    padding: 12px 0;
  }

  .topbar-row {
    width: 100%;
    justify-content: space-between;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    width: 100%;
    display: none;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    padding: 12px 2px 4px;
    overflow-x: auto;
    white-space: nowrap;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-actions {
    width: 100%;
    margin-left: 0;
    padding: 10px 0 2px;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    justify-content: flex-start;
  }

  .nav-actions .nav-cta {
    margin-left: 0;
  }

  .hero-content {
    padding-top: 42px;
  }

  h1 {
    font-size: clamp(2.2rem, 12vw, 3.4rem);
  }

  .strip-grid,
  .feature-grid,
  .workflow-grid,
  .reports-grid,
  .ledger-grid,
  .usp-grid,
  .security-grid,
  .security-list {
    grid-template-columns: 1fr;
  }

  .trust-ledger {
    margin-top: 0;
    padding: 18px 0 0;
    background: var(--bg);
  }

  .section {
    padding: 48px 0;
  }

  .product-strip {
    padding: 22px 0;
  }

  .feature-card {
    min-height: auto;
  }

  .usp-card,
  .usp-card.highlight,
  .security-list div {
    min-height: auto;
  }

  .final-grid {
    align-items: stretch;
    flex-direction: column;
    padding: 20px;
  }

  .final-cta-actions {
    width: 100%;
    justify-content: stretch;
    flex-direction: column;
  }

  .final-cta-actions .btn {
    width: 100%;
  }

  .final-cta-actions .play-badge-link {
    align-self: center;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .brand-name {
    font-size: 1rem;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .hero-points,
  .cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-points span,
  .btn {
    justify-content: center;
    width: 100%;
  }

  .phone-frame {
    border-radius: 30px;
    padding: 10px;
  }

  .phone-frame::after {
    display: none;
  }

  .phone-screen {
    border-radius: 22px;
    padding: 32px 10px 8px;
  }

  .bottom-nav-fab {
    width: 44px;
    height: 44px;
    margin-top: -16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .topbar {
    transition: none;
  }

  .btn,
  .feature-card,
  .feature-card::before,
  .nav-links a,
  .menu-toggle,
  .strip-tile,
  .ledger-card,
  .steps li,
  .security-list div,
  .report-row,
  .usp-card,
  .pricing-card,
  .footer-links a,
  .skip-link {
    transition: none;
  }

  .btn:hover,
  .feature-card:hover,
  .feature-detail-card:hover,
  .platform-panel:hover,
  .faq-card:hover,
  .info-card:hover,
  .showcase-card:hover,
  .link-card:hover,
  .ledger-card:hover,
  .strip-tile:hover,
  .steps li:hover,
  .security-list div:hover,
  .usp-card:not(.highlight):hover,
  .pricing-card:not(.pricing-card--featured):hover {
    transform: none;
  }

  .pricing-card--featured:hover {
    transform: none;
  }

  .report-row:hover {
    background: transparent;
  }

  .nav-links a::after {
    transition: none;
  }
}

/* ——— Inner marketing pages (features, pricing, web portal, contact) ——— */

.marketing-page .page-hero {
  position: relative;
  padding: 72px 0 52px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 60% at 80% 10%, rgba(15, 118, 110, 0.28), transparent 55%),
    linear-gradient(165deg, #061018 0%, #0a1622 45%, #102830 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.marketing-page .page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, #000 15%, transparent 80%);
  pointer-events: none;
}

.marketing-page .page-hero-inner {
  position: relative;
  z-index: 1;
}

.marketing-page .page-hero h1 {
  color: #ffffff;
}

.marketing-page .page-hero-lead {
  color: rgba(255, 255, 255, 0.72);
}

.page-hero-inner {
  max-width: 760px;
}

.page-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(1.85rem, 4.8vw, 2.65rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.page-hero-lead {
  margin: 0;
  max-width: 640px;
  font-size: 1.05rem;
  line-height: 1.68;
}

.pricing-section {
  padding-top: 8px;
  padding-bottom: 56px;
  background: var(--bg);
}

.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.content-shell--wide {
  max-width: 960px;
}

.content-shell--wide > h2:first-child {
  margin-top: 0;
  font-size: 1.32rem;
  letter-spacing: -0.02em;
}

.content-shell h2:not(:first-child) {
  margin-top: 28px;
}

.feature-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-detail-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(6, 13, 24, 0.07);
  border-radius: var(--radius-xl);
  padding: 26px 24px 24px;
  box-shadow: var(--shadow-md);
  transition:
    transform 0.28s var(--ease-premium),
    box-shadow 0.28s ease,
    border-color 0.22s ease;
}

.feature-detail-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent-mint));
  opacity: 0.8;
}

.feature-detail-card::after {
  content: "";
  position: absolute;
  right: -24px;
  top: -24px;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 118, 110, 0.07), transparent 70%);
  pointer-events: none;
}

.feature-detail-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(15, 118, 110, 0.14);
}

.feature-detail-card h3 {
  margin: 0 0 10px;
  font-size: 1.06rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.feature-detail-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.feature-detail-card ul {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.9rem;
}

.feature-detail-card li {
  margin: 5px 0;
}

.feature-detail-card li::marker {
  color: var(--primary);
}

.pricing-section {
  padding-top: 8px;
  padding-bottom: 56px;
  background: var(--bg);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
  padding-top: 12px;
  max-width: 880px;
  margin: 0 auto;
}

.pricing-billing-toggle {
  display: flex;
  justify-content: center;
  margin: 8px 0 28px;
}

.pricing-billing-toggle[role="group"] {
  display: inline-flex;
  padding: 4px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.pricing-billing-toggle button {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.pricing-billing-toggle button[aria-pressed="true"] {
  background: var(--primary);
  color: #ffffff;
}

.pricing-billing-toggle .save-hint {
  margin-left: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  opacity: 0.9;
}

.pricing-amount[data-price-monthly],
.pricing-amount[data-price-yearly] {
  font-variant-numeric: tabular-nums;
}

body[data-billing="yearly"] .price-monthly {
  display: none;
}

body[data-billing="monthly"] .price-yearly {
  display: none;
}

.pricing-card--paid .pricing-card-glow {
  background: linear-gradient(145deg, rgba(15, 118, 110, 0.5), rgba(26, 155, 176, 0.22));
  opacity: 1;
}

.pricing-card--paid .pricing-card-inner {
  border: 1px solid rgba(15, 118, 110, 0.22);
  border-top: 3px solid transparent;
  background:
    linear-gradient(var(--surface), var(--surface)) padding-box,
    linear-gradient(135deg, #0f766e 0%, #1a9bb0 50%, #0d5c56 100%) border-box;
  box-shadow:
    var(--shadow-lg),
    0 0 0 1px rgba(255, 255, 255, 0.65) inset;
}

.plan-icon--paid {
  color: #ffffff;
  background: linear-gradient(145deg, #0f766e 0%, #1a9bb0 55%, #0d5c56 100%);
  box-shadow: 0 6px 18px rgba(15, 118, 110, 0.3);
}

.plan-badge--paid {
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.12), rgba(26, 155, 176, 0.16));
  color: var(--primary-strong);
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: calc(var(--radius-xl) + 4px);
  isolation: isolate;
  transition:
    transform 0.28s var(--ease-premium),
    box-shadow 0.28s ease;
}

.pricing-card-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  flex: 1;
  height: 100%;
  padding: 28px 24px 26px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius-xl) + 4px);
  box-shadow: var(--shadow-sm);
}

.pricing-card-glow {
  position: absolute;
  inset: -1px;
  border-radius: calc(var(--radius-xl) + 6px);
  opacity: 0;
  transition: opacity 0.28s ease;
  pointer-events: none;
}

.pricing-card--free .pricing-card-glow {
  background: linear-gradient(145deg, rgba(29, 154, 82, 0.35), rgba(15, 118, 110, 0.12));
}

.pricing-card--basic .pricing-card-glow {
  background: linear-gradient(145deg, rgba(15, 118, 110, 0.35), rgba(10, 52, 120, 0.15));
}

.pricing-card--pro .pricing-card-glow {
  background: linear-gradient(145deg, rgba(15, 118, 110, 0.55), rgba(26, 155, 176, 0.28));
  opacity: 1;
}

.pricing-card--free .pricing-card-inner {
  border-top: 3px solid var(--green);
}

.pricing-card--basic .pricing-card-inner {
  border-top: 3px solid var(--primary);
}

.pricing-card--pro .pricing-card-inner {
  border: 1px solid rgba(15, 118, 110, 0.22);
  border-top: 3px solid transparent;
  background:
    linear-gradient(var(--surface), var(--surface)) padding-box,
    linear-gradient(135deg, #0f766e 0%, #1a9bb0 50%, #0d5c56 100%) border-box;
  box-shadow:
    var(--shadow-lg),
    0 0 0 1px rgba(255, 255, 255, 0.65) inset;
}

.pricing-card--featured {
  z-index: 2;
}

@media (min-width: 981px) {
  .pricing-card--featured {
    transform: translateY(-10px) scale(1.03);
  }

  .pricing-card--featured:hover {
    transform: translateY(-14px) scale(1.03);
  }
}

.pricing-card:hover .pricing-card-glow {
  opacity: 1;
}

.pricing-card:not(.pricing-card--featured):hover {
  transform: translateY(-4px);
}

.pricing-card:not(.pricing-card--featured):hover .pricing-card-inner {
  box-shadow: var(--shadow-md);
}

.pricing-ribbon {
  position: absolute;
  top: 18px;
  right: -8px;
  z-index: 3;
  padding: 6px 14px 6px 12px;
  background: linear-gradient(135deg, #0f766e 0%, #1a9bb0 100%);
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px 0 0 999px;
  box-shadow: 0 6px 16px rgba(15, 118, 110, 0.35);
}

.pricing-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.plan-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  flex-shrink: 0;
}

.plan-icon svg {
  width: 22px;
  height: 22px;
}

.plan-icon--free {
  color: var(--green);
  background: linear-gradient(145deg, #ecfdf3 0%, var(--green-soft) 100%);
  box-shadow: 0 4px 12px rgba(29, 154, 82, 0.15);
}

.plan-icon--basic {
  color: var(--primary);
  background: linear-gradient(145deg, #ffffff 0%, var(--primary-soft) 100%);
  box-shadow: 0 4px 12px rgba(15, 118, 110, 0.14);
}

.plan-icon--pro {
  color: #ffffff;
  background: linear-gradient(145deg, #0f766e 0%, #1a9bb0 55%, #0d5c56 100%);
  box-shadow: 0 6px 18px rgba(15, 118, 110, 0.35);
}

.plan-badge {
  display: inline-block;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.plan-badge--free {
  background: var(--green-soft);
  color: #166534;
}

.plan-badge--basic {
  background: var(--primary-soft);
  color: var(--primary-strong);
}

.plan-badge--pro {
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.12), rgba(26, 155, 176, 0.18));
  color: var(--primary-strong);
}

.pricing-card-head {
  margin-bottom: 14px;
}

.pricing-card h2 {
  margin: 0 0 8px;
  font-size: clamp(1.45rem, 3vw, 1.75rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.pricing-tagline {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.58;
}

.pricing-stat {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 16px;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  background: linear-gradient(90deg, var(--surface-muted) 0%, rgba(255, 255, 255, 0.6) 100%);
  border: 1px solid var(--border);
}

.pricing-card--free .pricing-stat {
  background: linear-gradient(90deg, #ecfdf3 0%, #f8fafc 100%);
  border-color: rgba(29, 154, 82, 0.15);
}

.pricing-card--basic .pricing-stat {
  background: linear-gradient(90deg, var(--primary-soft) 0%, #f8fafc 100%);
  border-color: rgba(15, 118, 110, 0.12);
}

.pricing-card--pro .pricing-stat {
  background: linear-gradient(90deg, #eef2ff 0%, #f5f9ff 100%);
  border-color: rgba(99, 102, 241, 0.18);
}

.pricing-stat-value {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--text);
}

.pricing-card--free .pricing-stat-value {
  color: #15803d;
}

.pricing-card--basic .pricing-stat-value {
  color: var(--primary-strong);
}

.pricing-card--pro .pricing-stat-value {
  background: linear-gradient(135deg, #0f766e, #1a9bb0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.pricing-stat-label {
  color: var(--subtle);
  font-size: 0.82rem;
  font-weight: 650;
}

.pricing-price-block {
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px dashed var(--border);
}

.pricing-amount {
  display: block;
  font-size: clamp(1.85rem, 4vw, 2.25rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
}

.pricing-card--free .pricing-amount {
  color: #15803d;
}

.pricing-amount--text {
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  color: var(--primary-strong);
}

.pricing-period {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 650;
}

.pricing-note {
  display: block;
  margin-top: 8px;
  color: var(--subtle);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.45;
}

.pricing-list {
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
  flex: 1;
}

.pricing-list li {
  position: relative;
  margin: 0 0 11px;
  padding-left: 28px;
  color: #334155;
  font-size: 0.9rem;
  line-height: 1.48;
  font-weight: 550;
}

.pricing-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.05em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  font-size: 0.62rem;
  font-weight: 900;
  line-height: 1;
}

.pricing-card--basic .pricing-list li::before {
  background: var(--primary-soft);
  color: var(--primary);
}

.pricing-card--pro .pricing-list li::before {
  background: linear-gradient(135deg, #ccfbf1, #e0e7ff);
  color: #4338ca;
}

.pricing-list li.is-muted {
  color: var(--subtle);
  font-weight: 500;
}

.pricing-list li.is-muted::before {
  content: "—";
  background: #f1f5f9;
  color: #94a3b8;
  font-size: 0.75rem;
  font-weight: 700;
}

.pricing-cta {
  width: 100%;
  justify-content: center;
  text-align: center;
  margin-top: auto;
}

.pricing-card--pro .pricing-cta {
  padding-top: 14px;
  padding-bottom: 14px;
  font-size: 1rem;
  box-shadow:
    0 8px 22px rgba(15, 118, 110, 0.38),
    0 0 0 1px rgba(255, 255, 255, 0.14) inset;
}

.plan-table-wrap {
  overflow-x: auto;
  margin-top: 12px;
  border: 1px solid rgba(6, 13, 24, 0.06);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.plan-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.plan-table th,
.plan-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(6, 13, 24, 0.06);
  text-align: left;
}

.plan-table thead th {
  background: rgba(15, 118, 110, 0.04);
}

.plan-table th {
  color: var(--subtle);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-table td:not(:first-child) {
  text-align: center;
  font-weight: 650;
}

.plan-table td:last-child,
.plan-table th:last-child {
  color: var(--primary-strong);
  background: rgba(15, 118, 110, 0.03);
}

.plan-table tr:last-child td,
.plan-table tr:last-child th {
  border-bottom: 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.faq-card {
  position: relative;
  overflow: hidden;
  padding: 22px 24px;
  background: linear-gradient(165deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(6, 13, 24, 0.07);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition:
    transform 0.28s var(--ease-premium),
    box-shadow 0.28s ease,
    border-color 0.22s ease;
}

.faq-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent-mint));
  opacity: 0.75;
}

.faq-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(15, 118, 110, 0.12);
}

.faq-card h3 {
  margin: 0 0 10px;
  font-size: 1rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.faq-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.58;
}

.faq-card p + p {
  margin-top: 10px;
}

.info-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 8px;
}

.info-card {
  position: relative;
  overflow: hidden;
  padding: 20px 22px;
  background: linear-gradient(165deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(6, 13, 24, 0.07);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition:
    transform 0.28s var(--ease-premium),
    box-shadow 0.28s ease,
    border-color 0.22s ease;
}

.info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent-mint));
  opacity: 0.75;
}

.info-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(15, 118, 110, 0.12);
}

.info-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 0.92rem;
}

.info-card span,
.info-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.marketing-page .section--alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.65) 0%, var(--bg) 100%);
}

.platform-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.platform-panel {
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(6, 13, 24, 0.07);
  border-radius: var(--radius-xl);
  padding: 28px 26px;
  box-shadow: var(--shadow-md);
  transition:
    transform 0.28s var(--ease-premium),
    box-shadow 0.28s ease,
    border-color 0.22s ease;
}

.platform-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), #1a9bb0);
  opacity: 0.85;
}

.platform-panel--mobile::before {
  background: linear-gradient(90deg, var(--green), var(--accent-mint));
}

.platform-panel--web::before {
  background: linear-gradient(90deg, #1a9bb0, var(--primary));
}

.platform-panel:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(15, 118, 110, 0.14);
}

.platform-panel-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.platform-panel-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 13px;
  color: var(--primary);
  background: linear-gradient(145deg, #e6f7f5, #ccfbf1);
  border: 1px solid rgba(15, 118, 110, 0.12);
  box-shadow: 0 8px 20px rgba(15, 118, 110, 0.1);
  flex-shrink: 0;
}

.platform-panel-icon svg {
  width: 22px;
  height: 22px;
}

.platform-panel-icon--mint {
  color: #059669;
  background: linear-gradient(145deg, #ecfdf5, #d1fae5);
  border-color: rgba(16, 185, 129, 0.15);
}

.platform-panel-icon--slate {
  color: #0f766e;
  background: linear-gradient(145deg, #e6f7f5, #ccfbf1);
  border-color: rgba(15, 118, 110, 0.12);
}

.platform-panel h3 {
  margin: 0;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}

.platform-panel p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.58;
}

.platform-panel ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.link-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.link-card {
  position: relative;
  display: block;
  padding: 26px 26px 22px;
  background: linear-gradient(165deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(6, 13, 24, 0.07);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  color: inherit;
  text-decoration: none;
  overflow: hidden;
  transition:
    border-color 0.25s ease,
    box-shadow 0.28s var(--ease-premium),
    transform 0.28s var(--ease-premium);
}

.link-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.05), transparent 60%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.link-card:hover::before {
  opacity: 1;
}

.link-card:hover {
  border-color: rgba(15, 118, 110, 0.18);
  box-shadow: var(--shadow-lg);
  text-decoration: none;
  transform: translateY(-5px);
}

.link-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
  border-radius: 13px;
  color: var(--primary);
  background: linear-gradient(145deg, #e6f7f5, #ccfbf1);
  border: 1px solid rgba(15, 118, 110, 0.12);
  box-shadow: 0 8px 20px rgba(15, 118, 110, 0.1);
}

.link-card--web .link-card-icon {
  color: #0f766e;
  background: linear-gradient(145deg, #e6f7f5, #ccfbf1);
  border-color: rgba(15, 118, 110, 0.12);
}

.link-card--plans .link-card-icon {
  color: #047857;
  background: linear-gradient(145deg, #ecfdf5, #d1fae5);
  border-color: rgba(16, 185, 129, 0.12);
}

.link-card-icon svg {
  width: 22px;
  height: 22px;
}

.link-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 1.06rem;
  letter-spacing: -0.02em;
}

.link-card > span:not(.link-card-icon) {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.link-card-arrow {
  display: inline-flex;
  margin-top: 16px;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
  font-style: normal;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cta-band {
  padding: 56px 0;
  background:
    radial-gradient(ellipse 70% 80% at 20% 50%, rgba(52, 211, 153, 0.08), transparent 50%),
    linear-gradient(135deg, #060d18 0%, #0f172a 50%, #1e3a5f 100%);
  color: #ffffff;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.cta-band-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cta-band h2 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: clamp(1.35rem, 3.5vw, 1.85rem);
}

.cta-band p {
  margin: 0;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.88);
}

.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cta-band .btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
  color: #ffffff;
}

@media (max-width: 980px) {
  .feature-detail-grid,
  .pricing-grid,
  .link-card-grid,
  .platform-split,
  .faq-grid,
  .info-card-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card--featured {
    transform: none;
  }

  .pricing-card--featured:hover,
  .pricing-card:not(.pricing-card--featured):hover {
    transform: none;
  }

  .pricing-ribbon {
    right: 16px;
    border-radius: 999px;
  }

  .page-hero {
    padding-top: 42px;
  }
}
