/* ==========================================================================
   munshi — FBR e-Invoicing
   Design v2 — Less pink, more intentional. Coral = CTA only.
   Steel = structural accent. Navy = authority, trust.
   ========================================================================== */

:root {
  /* Coral — reserved for primary CTA only */
  --coral:        #E8596A;
  --coral-deep:   #C93D4F;
  --coral-soft:   #F08898;
  --coral-glow:   rgba(232,89,106,0.18);

  /* Steel blue — primary accent / structural */
  --steel:        #4A7FA0;
  --steel-deep:   #305F7E;
  --steel-mid:    #5B8FA5;
  --steel-soft:   #8BBDD4;
  --steel-glow:   rgba(74,127,160,0.18);
  --steel-subtle: rgba(74,127,160,0.08);

  /* Paper / light surface */
  --paper:        #EDF1F4;
  --paper-soft:   #F5F7F9;
  --paper-line:   #D4DCE3;
  --paper-strong: #C0CBD5;

  /* Dark navy base */
  --navy:         #0C1521;
  --navy-2:       #101D2E;
  --navy-3:       #152438;
  --navy-4:       #1C2F47;
  --navy-line:    rgba(210,220,230,0.07);
  --navy-line-2:  rgba(210,220,230,0.12);

  /* Text */
  --text:         #18253A;
  --text-2:       #2E3F55;
  --muted:        #576070;
  --muted-light:  #7A8EA0;
  --muted-inv:    #7FA0B8;
  --ivory:        #F0F4F7;
  --white:        #FFFFFF;

  /* Typography — Inter only. Clean, modern, premium. */
  --font-display: 'Inter', system-ui, -apple-system, sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;
  --font-mono:    'Inter', system-ui, -apple-system, sans-serif;

  /* Layout */
  --max: 1200px;
  --pad: clamp(20px, 5vw, 64px);
  --radius-s:  6px;
  --radius-m:  12px;
  --radius-l:  20px;
  --radius-xl: 32px;

  /* Motion */
  --ease:   cubic-bezier(.16,.8,.24,1);
  --spring: cubic-bezier(.34,1.56,.64,1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  margin: 0;
  background: var(--paper-soft);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
h1, h2, h3, h4, p { margin: 0; }

::selection { background: var(--steel); color: var(--white); }
:focus-visible { outline: 2px solid var(--steel); outline-offset: 3px; border-radius: 4px; }

.wrap { max-width: var(--max); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }

/* Eyebrow: steel, not coral */
.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel-mid);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}
.eyebrow::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--steel);
  flex: none;
}
.eyebrow.inv { color: var(--steel-soft); }
.eyebrow.inv::before { background: var(--steel-soft); }

.section-head { max-width: 600px; margin-bottom: 56px; }
.section-head h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3.8vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-top: 14px;
  color: var(--text);
}
.section-head p {
  margin-top: 16px;
  font-size: 16.5px;
  color: var(--muted);
  max-width: 52ch;
  line-height: 1.75;
}
.on-dark .section-head h2 { color: var(--ivory); }
.on-dark .section-head p { color: var(--muted-inv); }

section { padding: 104px 0; }
@media (max-width: 720px) { section { padding: 68px 0; } }
.on-dark { background: var(--navy); color: var(--ivory); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 24px;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: transform .3s var(--spring), box-shadow .3s var(--ease), background .2s ease, color .2s ease, border-color .2s ease;
}
/* Primary: coral, for CTAs only */
.btn-primary {
  background: linear-gradient(135deg, var(--coral), var(--coral-deep));
  color: var(--white);
  box-shadow: 0 2px 0 rgba(255,255,255,0.14) inset, 0 10px 28px -10px rgba(232,89,106,0.55);
}
.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 2px 0 rgba(255,255,255,0.18) inset, 0 18px 40px -10px rgba(232,89,106,0.65);
}
/* Ghost: on dark backgrounds only */
.btn-ghost {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.18);
  color: var(--ivory);
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.06);
}
/* Ghost dark: on light backgrounds */
.btn-ghost-dark {
  background: transparent;
  border: 1.5px solid var(--paper-strong);
  color: var(--text-2);
}
.btn-ghost-dark:hover {
  border-color: var(--steel);
  color: var(--steel-deep);
  background: var(--steel-subtle);
}
.btn svg { width: 18px; height: 18px; flex: none; }

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(12,21,33,0.92);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border-bottom: 1px solid var(--navy-line-2);
  transition: box-shadow .3s ease;
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 68px; }

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--ivory);
  letter-spacing: -0.04em;
}
.brand-mark { width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; flex: none; }
.brand-mark svg { width: 100%; height: 100%; display: block; }
.brand small {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-inv);
  font-weight: 600;
  font-style: normal;
}

.nav-links { display: flex; align-items: center; gap: 28px; font-size: 13.5px; font-weight: 600; font-family: 'Inter', sans-serif; letter-spacing: -0.01em; }
.nav-links a { position: relative; padding: 5px 0; color: var(--muted-inv); transition: color .2s ease; }
.nav-links a:hover { color: var(--ivory); }
.nav-links a::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1.5px;
  background: var(--steel-soft);
  border-radius: 2px;
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s var(--ease);
}
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-burger {
  display: none;
  width: 40px; height: 40px;
  border-radius: 8px;
  align-items: center; justify-content: center;
  border: 1px solid var(--navy-line-2);
}
.nav-burger span { display: block; width: 18px; height: 1.5px; background: var(--ivory); position: relative; }
.nav-burger span::before, .nav-burger span::after {
  content: ''; position: absolute; left: 0; width: 18px; height: 1.5px;
  background: var(--ivory); transition: transform .25s ease;
}
.nav-burger span::before { top: -5px; }
.nav-burger span::after { top: 5px; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta .btn-ghost { display: none; }
  .nav-burger { display: flex; }
}

.mobile-menu {
  position: fixed;
  inset: 68px 0 0 0;
  background: var(--navy-2);
  z-index: 55;
  padding: 24px var(--pad) 48px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease, transform .3s var(--ease);
  overflow-y: auto;
  border-top: 1px solid var(--navy-line-2);
}
.mobile-menu.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.mobile-menu a {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--ivory);
  padding: 16px 0;
  border-bottom: 1px solid var(--navy-line);
  letter-spacing: -0.04em;
}
.mobile-menu .btn { margin-top: 24px; width: 100%; }

/* HERO */
.hero {
  background: var(--navy);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
  padding: 96px 0 0;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 10% -10%, rgba(74,127,160,0.22) 0%, transparent 55%),
    radial-gradient(ellipse 55% 45% at 95% 15%, rgba(74,127,160,0.16) 0%, transparent 55%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--navy-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--navy-line) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse 75% 65% at 50% 0%, black 20%, transparent 75%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  padding-bottom: 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(74,127,160,0.12);
  border: 1px solid rgba(74,127,160,0.28);
  border-radius: 999px;
  padding: 5px 14px;
  font-size: 10.5px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steel-soft);
  margin-bottom: 26px;
}
.hero-badge::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--steel-soft);
  animation: pulse 2s infinite;
  flex: none;
}

.hero-copy h1 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.045em;
  color: var(--ivory);
}
.hero-copy h1 em {
  font-style: normal;
  font-weight: 800;
  background: linear-gradient(135deg, #8BBDD4, #5B9AB8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-copy .lede {
  margin-top: 24px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted-inv);
  max-width: 46ch;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}
.hero-actions { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 12px; }

.hero-proof {
  margin-top: 48px;
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  padding: 20px 24px;
  background: rgba(210,220,230,0.04);
  border: 1px solid var(--navy-line-2);
  border-radius: var(--radius-m);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero-proof-item { flex: 1; min-width: 90px; padding: 0 20px; border-right: 1px solid var(--navy-line-2); }
.hero-proof-item:first-child { padding-left: 0; }
.hero-proof-item:last-child { border-right: 0; }
.hero-proof strong {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--ivory);
  line-height: 1.1;
  letter-spacing: -0.04em;
}
.hero-proof span {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-inv);
  margin-top: 4px;
  font-weight: 600;
}

/* Ledger widget */
.ledger {
  position: relative;
  background: linear-gradient(160deg, var(--navy-3), var(--navy-2));
  border: 1px solid var(--navy-line-2);
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(74,127,160,0.1),
    0 36px 72px -28px rgba(0,0,0,0.6),
    0 0 50px -18px rgba(74,127,160,0.2);
}
.ledger-banner { height: 4px; background: linear-gradient(90deg, var(--steel), var(--steel-deep)); }
.ledger-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid var(--navy-line);
  background: rgba(255,255,255,0.02);
}
.ledger-head .dot-row { display: flex; gap: 6px; }
.ledger-head .dot-row span { width: 9px; height: 9px; border-radius: 50%; }
.ledger-head .dot-row span:nth-child(1) { background: #E85555; }
.ledger-head .dot-row span:nth-child(2) { background: #E8A855; }
.ledger-head .dot-row span:nth-child(3) { background: #55C472; }
.ledger-head .live {
  display: flex; align-items: center; gap: 7px;
  font-family: 'Inter', sans-serif; font-size: 10px;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--muted-inv);
  font-weight: 700;
}
.ledger-head .live::before {
  content: ''; width: 5px; height: 5px;
  border-radius: 50%; background: #55C472;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .3; } }

.ledger-rows { padding: 2px 0; overflow: hidden; }
.ledger-row {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 12px;
  align-items: center;
  padding: 11px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 11.5px;
  border-bottom: 1px solid rgba(210,220,230,0.04);
  opacity: 0;
  transform: translateY(6px);
  animation: rowIn .6s var(--ease) forwards;
}
.ledger-row:last-child { border-bottom: 0; }
.ledger-row .irn { color: var(--muted-inv); font-size: 10px; opacity: 0.65; font-weight: 500; letter-spacing: 0.01em; }
.ledger-row .buyer { color: var(--ivory); font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: -0.01em; }
.ledger-row .amt { color: var(--steel-soft); text-align: right; font-weight: 600; font-family: 'Inter', sans-serif; }
.ledger-row .status {
  display: inline-flex; align-items: center; gap: 5px;
  color: #55C472;
  font-size: 9.5px; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 700;
}
.ledger-row .status svg { width: 10px; height: 10px; }
@keyframes rowIn { to { opacity: 1; transform: translateY(0); } }
.ledger-row:nth-child(1) { animation-delay: .05s; }
.ledger-row:nth-child(2) { animation-delay: .15s; }
.ledger-row:nth-child(3) { animation-delay: .25s; }
.ledger-row:nth-child(4) { animation-delay: .35s; }
.ledger-row:nth-child(5) { animation-delay: .45s; }

.ledger-foot {
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  color: var(--muted-inv);
  letter-spacing: 0.02em;
  border-top: 1px solid var(--navy-line);
  background: rgba(74,127,160,0.06);
  border-bottom: 3px solid var(--steel-deep);
  font-weight: 500;
}

.hero-bottom-fade {
  height: 80px;
  background: linear-gradient(180deg, transparent, var(--paper-soft) 88%);
  margin-top: -1px;
  position: relative; z-index: 2;
}

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; padding-bottom: 52px; gap: 44px; }
}

/* PENALTY BAND */
.penalty {
  background: var(--navy-2);
  color: var(--ivory);
  border-top: 1px solid var(--navy-line);
  position: relative;
  overflow: hidden;
}
.penalty::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--steel), var(--steel-soft), var(--steel), transparent);
  background-size: 200% 100%;
  animation: shimmer 5s linear infinite;
}
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
.penalty .section-head h2 { color: var(--ivory); }
.penalty .section-head p { color: var(--muted-inv); }

.penalty-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--navy-line-2);
  border: 1px solid var(--navy-line-2);
  border-radius: var(--radius-m);
  overflow: hidden;
}
.penalty-cell {
  background: var(--navy-3);
  padding: 32px 24px;
  transition: background .2s ease;
  position: relative;
  overflow: hidden;
}
.penalty-cell::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--steel-glow), transparent 60%);
  opacity: 0;
  transition: opacity .3s ease;
}
.penalty-cell:hover::after { opacity: 1; }
.penalty-cell:hover { background: var(--navy-4); }
.penalty-cell .num {
  font-family: 'Inter', sans-serif;
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 800;
  color: var(--ivory);
  line-height: 1.15;
  letter-spacing: -0.03em;
  position: relative; z-index: 1;
}
.penalty-cell .lbl {
  margin-top: 10px;
  font-size: 13px;
  color: var(--muted-inv);
  line-height: 1.65;
  position: relative; z-index: 1;
}
.penalty-note {
  margin-top: 28px; font-size: 13px;
  color: var(--muted-inv); max-width: 74ch;
  border-left: 2px solid var(--steel);
  padding-left: 16px;
}
@media (max-width: 900px) { .penalty-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .penalty-grid { grid-template-columns: 1fr; } }

/* HOW IT WORKS */
#how-it-works { background: var(--paper-soft); }

.steps { border-top: 1px solid var(--paper-line); }
.step {
  display: grid;
  grid-template-columns: 88px 1fr 1.1fr;
  gap: 40px;
  padding: 48px 0;
  border-bottom: 1px solid var(--paper-line);
  align-items: start;
  transition: background .2s ease, padding .2s ease, margin .2s ease;
}
.step:hover { background: var(--steel-subtle); border-radius: var(--radius-s); margin: 0 -8px; padding-left: 8px; padding-right: 8px; }
.step-num { font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 700; color: var(--steel); padding-top: 5px; letter-spacing: 0.06em; text-transform: uppercase; }
.step h3 { font-family: 'Inter', sans-serif; font-size: 22px; font-weight: 800; letter-spacing: -0.04em; color: var(--text); }
.step p { margin-top: 12px; color: var(--muted); max-width: 42ch; line-height: 1.7; font-size: 15px; font-family: 'Inter', sans-serif; }
.step-visual {
  background: var(--white);
  border: 1px solid var(--paper-line);
  border-radius: var(--radius-m);
  padding: 18px;
  min-height: 104px;
  box-shadow: 0 2px 16px -6px rgba(18,28,42,0.07);
}
@media (max-width: 860px) {
  .step { grid-template-columns: 1fr; gap: 16px; }
  .step:hover { margin: 0; padding-left: 0; padding-right: 0; }
  .step-visual { order: 3; }
}

.mv-list { display: flex; flex-direction: column; gap: 8px; }
.mv-row { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 500; color: var(--text); }
.mv-avatar {
  width: 26px; height: 26px; border-radius: 50%;
  background: linear-gradient(135deg, var(--steel), var(--steel-deep));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Inter', sans-serif; font-size: 8.5px; color: var(--white); font-weight: 800; flex: none;
}
.mv-row .tag {
  margin-left: auto; font-family: 'Inter', sans-serif; font-size: 10px;
  padding: 3px 8px; border-radius: 20px;
  background: rgba(74,127,160,0.1); color: var(--steel-deep); font-weight: 700;
  letter-spacing: 0.02em;
}
.mv-row .tag.unreg { background: rgba(232,89,106,0.1); color: var(--coral-deep); }

.mv-hs { display: flex; flex-direction: column; gap: 7px; }
.mv-hs-row {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px; padding: 8px 11px; font-weight: 500;
  background: var(--paper); border-radius: var(--radius-s); border: 1px solid var(--paper-line);
  color: var(--text);
}
.mv-hs-row code { font-family: var(--font-mono); font-size: 11px; color: var(--steel-deep); font-weight: 600; }

.mv-invoice { display: flex; flex-direction: column; gap: 9px; }
.mv-invoice .line { height: 6px; border-radius: 4px; background: var(--paper-line); }
.mv-invoice .line.w60 { width: 60%; background: linear-gradient(90deg, var(--steel-soft), var(--paper-line)); }
.mv-invoice .line.w40 { width: 40%; }
.mv-invoice .btn-mini {
  align-self: flex-start; margin-top: 8px;
  font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 700;
  padding: 7px 14px; border-radius: 20px;
  background: linear-gradient(135deg, var(--coral), var(--coral-deep));
  color: var(--white);
  letter-spacing: -0.01em;
}

.mv-batch { display: flex; align-items: center; gap: 14px; }
.mv-batch .icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(74,127,160,0.1); border: 1px solid rgba(74,127,160,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--steel); flex: none;
}
.mv-batch .icon svg { width: 20px; height: 20px; }
.mv-batch p { font-size: 12px; color: var(--muted); margin: 0; }
.mv-batch strong { display: block; font-size: 13px; margin-bottom: 3px; color: var(--text); }

/* SHOWCASE */
.showcase { background: var(--white); border-top: 1px solid var(--paper-line); border-bottom: 1px solid var(--paper-line); }
.showcase-item { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 60px; align-items: center; padding: 68px 0; }
.showcase-item:not(:last-child) { border-bottom: 1px solid var(--paper-line); }
.showcase-item.rev { grid-template-columns: 1.2fr 0.8fr; }
.showcase-item.rev .showcase-copy { order: 2; }
.showcase-frame {
  border-radius: var(--radius-m);
  overflow: hidden;
  border: 1px solid var(--paper-line);
  box-shadow: 0 16px 48px -16px rgba(18,28,42,0.12);
  background: var(--white);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.showcase-frame:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 64px -16px rgba(18,28,42,0.18);
}
.showcase-frame img { width: 100%; display: block; }
.showcase-copy .eyebrow { margin-bottom: 14px; }
.showcase-copy h3 { font-family: 'Inter', sans-serif; font-size: 26px; font-weight: 800; letter-spacing: -0.04em; color: var(--text); }
.showcase-copy p { margin-top: 14px; color: var(--muted); max-width: 40ch; line-height: 1.7; font-size: 15px; }
.showcase-copy ul { margin-top: 20px; display: flex; flex-direction: column; gap: 9px; }
.showcase-copy li { display: flex; gap: 9px; align-items: flex-start; font-size: 14px; color: var(--text-2); font-weight: 500; font-family: 'Inter', sans-serif; }
.showcase-copy li svg { width: 15px; height: 15px; margin-top: 3px; flex: none; color: var(--steel); }

@media (max-width: 900px) {
  .showcase-item, .showcase-item.rev { grid-template-columns: 1fr; gap: 24px; padding: 48px 0; }
  .showcase-item.rev .showcase-copy { order: 0; }
}

/* ONBOARDING */
.onboard { background: var(--navy); color: var(--ivory); position: relative; overflow: hidden; }
.onboard::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 100% 0%, rgba(74,127,160,0.18) 0%, transparent 55%),
    radial-gradient(ellipse 40% 55% at 0% 100%, rgba(74,127,160,0.1) 0%, transparent 55%);
  pointer-events: none;
}
.onboard-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 60px; }
.onboard-copy h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.045em;
  margin-top: 14px;
  color: var(--ivory);
}
.onboard-copy p { margin-top: 16px; color: var(--muted-inv); max-width: 40ch; line-height: 1.75; font-size: 15px; }
.onboard-copy .btn { margin-top: 28px; }

.onboard-list { display: flex; flex-direction: column; }
.onboard-row { display: grid; grid-template-columns: 48px 1fr; gap: 18px; padding: 24px 0; border-bottom: 1px solid var(--navy-line); align-items: start; }
.onboard-row:first-child { padding-top: 0; }
.onboard-row:last-child { border-bottom: 0; }
.onboard-row .oi {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(210,220,230,0.05); border: 1px solid var(--navy-line-2);
  display: flex; align-items: center; justify-content: center;
  color: var(--steel-mid); flex: none;
  transition: background .25s ease, border-color .25s ease, color .25s ease;
}
.onboard-row:hover .oi {
  background: rgba(74,127,160,0.14);
  border-color: rgba(74,127,160,0.32);
  color: var(--steel-soft);
}
.onboard-row .oi svg { width: 20px; height: 20px; }
.onboard-row h4 { font-size: 15px; font-weight: 700; color: var(--ivory); font-family: 'Inter', sans-serif; letter-spacing: -0.025em; }
.onboard-row p { margin-top: 5px; font-size: 14px; color: var(--muted-inv); max-width: 48ch; line-height: 1.65; font-family: 'Inter', sans-serif; }
@media (max-width: 900px) { .onboard-grid { grid-template-columns: 1fr; } }

/* PRICING */
#pricing { background: var(--paper-soft); }
.pricing-card {
  background: var(--navy);
  color: var(--ivory);
  border-radius: var(--radius-xl);
  padding: clamp(32px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 52px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 36px 88px -36px rgba(12,21,33,0.4);
}
.pricing-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--steel), var(--steel-soft));
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}
.pricing-card::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(55% 45% at 100% 0%, rgba(74,127,160,0.18), transparent 60%),
    radial-gradient(35% 45% at 0% 100%, rgba(74,127,160,0.08), transparent 60%);
  pointer-events: none;
}
.pricing-copy { position: relative; z-index: 2; }
.pricing-copy h3 { font-family: 'Inter', sans-serif; font-size: clamp(24px, 2.8vw, 34px); font-weight: 800; letter-spacing: -0.04em; }
.pricing-copy p { margin-top: 12px; color: var(--muted-inv); max-width: 44ch; line-height: 1.7; font-size: 15px; }
.pricing-feats { margin-top: 26px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; }
.pricing-feats li { display: flex; gap: 9px; align-items: flex-start; font-size: 14px; color: var(--ivory); font-weight: 500; font-family: 'Inter', sans-serif; }
.pricing-feats li svg { width: 15px; height: 15px; margin-top: 3px; color: var(--steel-soft); flex: none; }

.pricing-box {
  background: rgba(210,220,230,0.04);
  border: 1px solid var(--navy-line-2);
  border-radius: var(--radius-l);
  padding: 32px;
  align-self: start;
  position: relative; z-index: 2;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding-bottom: 36px;
}
.pricing-box::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--coral);
  border-radius: 0 0 var(--radius-l) var(--radius-l);
}
.pricing-box .tag {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel-soft);
  font-weight: 700;
}
.pricing-box .price {
  margin-top: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 36px;
  font-weight: 800;
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: var(--ivory);
  letter-spacing: -0.04em;
}
.pricing-box .price span { font-family: 'Inter', sans-serif; font-size: 13px; color: var(--muted-inv); font-weight: 500; letter-spacing: -0.01em; }
.pricing-box .strike { font-family: 'Inter', sans-serif; font-size: 12px; color: var(--muted-inv); text-decoration: line-through; margin-top: 6px; }
.pricing-box .btn { width: 100%; margin-top: 22px; }
.pricing-box .fine { margin-top: 12px; font-size: 12px; color: var(--muted-inv); text-align: center; line-height: 1.6; }

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

/* FAQ */
#faq { background: var(--paper-soft); }
.faq-list { border-top: 1px solid var(--paper-line); }
.faq-item { border-bottom: 1px solid var(--paper-line); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 26px 0; text-align: left;
  font-family: 'Inter', sans-serif; font-size: 17px; font-weight: 700;
  color: var(--text); transition: color .2s ease;
  letter-spacing: -0.03em;
}
.faq-q:hover { color: var(--steel-deep); }
.faq-q .plus {
  width: 26px; height: 26px; border-radius: 50%;
  border: 1.5px solid var(--paper-strong);
  display: flex; align-items: center; justify-content: center; flex: none;
  position: relative;
  transition: transform .3s var(--ease), background .2s ease, border-color .2s ease;
}
.faq-q .plus::before, .faq-q .plus::after {
  content: ''; position: absolute; background: var(--text-2);
  transition: transform .3s var(--ease), opacity .2s ease, background .2s ease;
}
.faq-q .plus::before { width: 10px; height: 1.5px; }
.faq-q .plus::after { width: 1.5px; height: 10px; }
.faq-item.is-open .faq-q .plus { background: var(--steel); border-color: var(--steel); transform: rotate(45deg); }
.faq-item.is-open .faq-q .plus::before,
.faq-item.is-open .faq-q .plus::after { background: var(--white); }
.faq-item.is-open .faq-q { color: var(--steel-deep); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a-inner { padding-bottom: 26px; color: var(--muted); font-size: 15px; max-width: 70ch; line-height: 1.8; font-family: 'Inter', sans-serif; }

/* CTA BAND */
.cta-band {
  background: var(--navy-2);
  color: var(--ivory);
  text-align: center;
  padding: 104px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 65% 55% at 50% 0%, rgba(74,127,160,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 45% 45% at 50% 100%, rgba(74,127,160,0.08) 0%, transparent 55%);
}
.cta-band::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--steel-soft), transparent);
}
.cta-band h2 {
  position: relative;
  font-family: 'Inter', sans-serif;
  font-size: clamp(30px, 4.6vw, 54px);
  font-weight: 800;
  letter-spacing: -0.045em;
  max-width: 20ch;
  margin: 0 auto;
}
.cta-band p {
  position: relative;
  margin: 18px auto 0;
  color: var(--muted-inv);
  max-width: 48ch;
  font-size: 16.5px;
  line-height: 1.7;
  font-family: 'Inter', sans-serif;
}
.cta-band .btn-row {
  position: relative;
  margin-top: 34px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* FOOTER */
footer { background: var(--navy); color: var(--muted-inv); border-top: 1px solid var(--navy-line); }
.foot-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 36px;
  padding: 64px 0 48px;
  border-bottom: 1px solid var(--navy-line);
}
.foot-brand .brand { color: var(--ivory); }
.foot-brand p { margin-top: 14px; font-size: 13.5px; max-width: 30ch; color: var(--muted-inv); line-height: 1.65; }
.foot-col h5 {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-inv);
  margin-bottom: 16px;
  font-weight: 700;
}
.foot-col ul { display: flex; flex-direction: column; gap: 11px; }
.foot-col a { font-size: 13.5px; color: rgba(240,244,247,0.65); transition: color .2s ease; }
.foot-col a:hover { color: var(--ivory); }
.foot-bottom {
  padding: 22px 0 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  flex-wrap: wrap;
  color: var(--muted-inv);
}
@media (max-width: 800px) { .foot-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .foot-top { grid-template-columns: 1fr; } }

/* WHATSAPP FLOAT */
.wa-float { position: fixed; right: 24px; bottom: 24px; z-index: 70; display: flex; align-items: center; gap: 12px; }
.wa-btn {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #1BA64F);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 28px -6px rgba(37,211,102,0.55);
  transition: transform .3s var(--spring), box-shadow .3s ease;
  position: relative;
}
.wa-btn:hover { transform: scale(1.08); box-shadow: 0 10px 36px -6px rgba(37,211,102,0.65); }
.wa-btn svg { width: 26px; height: 26px; color: var(--white); }
.wa-btn .ping {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: ping 2.5s infinite;
}
@keyframes ping { 0% { transform: scale(1); opacity: .6; } 100% { transform: scale(1.65); opacity: 0; } }
.wa-tip {
  background: var(--navy);
  color: var(--ivory);
  font-size: 12.5px;
  font-weight: 700;
  padding: 9px 14px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity .25s ease, transform .25s ease;
  pointer-events: none;
  border: 1px solid var(--navy-line-2);
  box-shadow: 0 4px 18px -4px rgba(0,0,0,0.3);
}
.wa-float:hover .wa-tip { opacity: 1; transform: translateX(0); }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* MISC */
.divider { height: 1px; background: var(--paper-line); border: 0; }
.mono { font-family: var(--font-mono); }
