/* =========================================================
   FYNTEK · Website Stylesheet
   Brand: #161F28 (ink) · #DF1F5A (pink) · #8958FE (purple) · #46BFFF (cyan)
   Type:  Poppins
   ========================================================= */

:root {
  --ink: #161F28;
  --ink-2: #1c2731;
  --ink-3: #243140;
  --ink-line: #2a3645;
  --pink: #DF1F5A;
  --pink-soft: #ff3873;
  --purple: #8958FE;
  --cyan: #46BFFF;
  --bone: #F4F2EE;
  --paper: #FFFFFF;
  --text-mute: #8a98a8;
  --text-soft: #c5cdd6;
  --radius: 14px;
  --radius-lg: 22px;
  --max: 1240px;
  --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--ink);
  color: var(--paper);
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 28px; }

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: rgba(22,31,40,0.72);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 22px; letter-spacing: -.01em; color: var(--paper); }
.brand svg { width: 28px; height: 36px; }
.brand .dot { color: var(--pink); }

.nav__links { display: flex; gap: 38px; align-items: center; font-size: 14.5px; font-weight: 500; }
.nav__links a { color: var(--text-soft); transition: color .2s var(--ease); position: relative; }
.nav__links a:hover, .nav__links a.active { color: var(--paper); }
.nav__links a.active::after {
  content: ""; position: absolute;
  left: 0; right: 0; bottom: -28px;
  height: 2px; background: var(--pink);
}
.nav__cta { display: flex; gap: 12px; align-items: center; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  height: 44px; padding: 0 22px;
  border-radius: 999px;
  font-weight: 600; font-size: 14.5px;
  transition: transform .2s var(--ease), background .2s var(--ease), color .2s var(--ease), box-shadow .3s var(--ease);
  white-space: nowrap;
}
.btn--ghost { color: var(--paper); }
.btn--ghost:hover { color: var(--pink-soft); }
.btn--primary {
  background: var(--pink); color: var(--paper);
  box-shadow: 0 10px 30px -8px rgba(223,31,90,.55), inset 0 1px 0 rgba(255,255,255,.18);
}
.btn--primary:hover { background: var(--pink-soft); transform: translateY(-1px); box-shadow: 0 16px 38px -8px rgba(223,31,90,.6); }
.btn--lg { height: 54px; padding: 0 30px; font-size: 15.5px; }
.btn--outline {
  border: 1px solid rgba(255,255,255,.15);
  color: var(--paper);
}
.btn--outline:hover { border-color: var(--paper); }
.btn .arrow { width: 16px; height: 16px; transition: transform .2s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

/* Mobile nav toggle (basic) */
.nav__toggle { display: none; background: none; border: 1px solid var(--ink-line); border-radius: 8px; width: 40px; height: 40px; align-items: center; justify-content: center; }
.nav__toggle svg { width: 20px; height: 20px; color: var(--paper); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  padding: 90px 0 70px;
  overflow: hidden;
}
.hero--inner { padding: 70px 0 50px; }

.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(223,31,90,.18), transparent 45%),
    radial-gradient(circle at 88% 30%, rgba(137,88,254,.14), transparent 50%),
    radial-gradient(circle at 60% 95%, rgba(70,191,255,.10), transparent 45%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center top, black 35%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center top, black 35%, transparent 75%);
  pointer-events: none;
}
.hero__grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px;
  align-items: center;
}
.hero__copy { min-width: 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 14px 6px 10px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  font-size: 12.5px; letter-spacing: .04em; font-weight: 500;
  color: var(--text-soft);
  background: rgba(255,255,255,.02);
}
.eyebrow .pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 0 rgba(223,31,90,.7);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(223,31,90,.6); }
  70% { box-shadow: 0 0 0 10px rgba(223,31,90,0); }
  100% { box-shadow: 0 0 0 0 rgba(223,31,90,0); }
}

.hero h1 {
  font-size: clamp(46px, 6.4vw, 86px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  font-weight: 800;
  margin: 22px 0 24px;
}
.hero--inner h1 { font-size: clamp(40px, 5.4vw, 68px); }
.hero h1 .accent {
  background: linear-gradient(120deg, var(--pink) 0%, var(--purple) 60%, var(--cyan) 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  display: inline-block;
}
.hero p.lead {
  color: var(--text-soft);
  font-size: 18px; max-width: 540px;
  margin-bottom: 36px;
}
.hero__ctas { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.hero__meta {
  margin-top: 50px;
  display: flex; align-items: center; gap: 36px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--text-mute);
}
.hero__meta .item { display: flex; flex-direction: column; gap: 2px; }
.hero__meta .item strong {
  color: var(--paper); font-size: 22px; font-weight: 800;
  letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
}
.hero__meta .item strong .mark { color: var(--pink); }
.hero__meta .divider { width: 1px; height: 36px; background: rgba(255,255,255,.1); }

/* =========================================================
   ORCHESTRATION VISUAL  ·  responsive, locked aspect ratio
   ========================================================= */
.orch {
  position: relative;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
  border: 1px solid rgba(255,255,255,.08);
  padding: 24px 24px 22px;
  box-shadow:
    0 30px 80px -30px rgba(0,0,0,.6),
    0 10px 30px -15px rgba(223,31,90,.25),
    inset 0 1px 0 rgba(255,255,255,.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow: hidden;
  width: 100%;
}
.orch::before {
  content: "";
  position: absolute; inset: -2px;
  background: linear-gradient(135deg, rgba(223,31,90,.4), rgba(137,88,254,.3), rgba(70,191,255,.3));
  border-radius: calc(var(--radius-lg) + 2px);
  z-index: -1;
  filter: blur(20px);
  opacity: .35;
}

.orch__head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 4px 16px; border-bottom: 1px solid rgba(255,255,255,.06);
  position: relative;
  flex-wrap: wrap;
  gap: 8px;
}
.orch__title {
  font-weight: 600; font-size: 13.5px;
  display: flex; align-items: center; gap: 8px;
  color: var(--paper);
}
.orch__title .live-dot { width: 7px; height: 7px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 8px #22c55e; }
.orch__title-mute { color: var(--text-mute); font-weight: 400; }
.orch__count {
  font-size: 11.5px; color: var(--text-mute);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: .04em;
  white-space: nowrap;
}
.orch__count strong { color: var(--paper); font-weight: 600; }

/* The stage holds chips + SVG. Aspect-ratio locks proportions across all
   screen sizes so chip positions and SVG line endpoints always match. */
.orch__stage {
  position: relative;
  width: 100%;
  aspect-ratio: 460 / 420;
  margin: 14px 0 8px;
}
.orch__svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}

.orch__path {
  stroke: rgba(255,255,255,.12);
  stroke-width: 1;
  fill: none;
  stroke-dasharray: 3 4;
}
.orch__pulse {
  fill: var(--pink);
  filter: drop-shadow(0 0 6px var(--pink));
}

/* Payment method chips — positioned by % so they scale with the stage.
   transform: translate(-50%, -50%) centers each chip on its anchor point.
   Anchor points match the SVG path endpoints exactly. */
.method {
  position: absolute;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 12px;
  background: rgba(28, 39, 49, 0.75);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--paper);
  white-space: nowrap;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transform: translate(-50%, -50%);
  transition: transform .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
  z-index: 2;
}
.method:hover {
  border-color: rgba(223,31,90,.5);
  background: rgba(36, 49, 64, 0.95);
  transform: translate(-50%, -50%) scale(1.06);
}
.method .mk {
  width: 8px; height: 8px; border-radius: 2px;
  flex-shrink: 0;
  display: inline-block;
}

/* Anchor positions — match SVG path endpoints below.
   Stage viewBox: 460 × 420
   Chip CSS %:    (x/460*100, y/420*100) */
.method.m-visa     { left: 24%; top: 12%; }   /* SVG anchor: (110, 50)  */
.method.m-mc       { left: 76%; top: 12%; }   /* SVG anchor: (350, 50)  */
.method.m-amex     { left: 11%; top: 38%; }   /* SVG anchor: (50, 160)  */
.method.m-discover { left: 89%; top: 38%; }   /* SVG anchor: (410, 160) */
.method.m-apple    { left: 14%; top: 67%; }   /* SVG anchor: (64, 280)  */
.method.m-google   { left: 86%; top: 67%; }   /* SVG anchor: (396, 280) */
.method.m-cashapp  { left: 25%; top: 91%; }   /* SVG anchor: (115, 382) */
.method.m-crypto   { left: 50%; top: 91%; }   /* SVG anchor: (230, 382) */
.method.m-interac  { left: 75%; top: 91%; }   /* SVG anchor: (345, 382) */

/* Central hub */
.orch__hub {
  position: absolute;
  left: 50%; top: 46%;
  transform: translate(-50%, -50%);
  width: 22%;
  aspect-ratio: 1;
  min-width: 80px;
  max-width: 110px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--pink) 0%, #c41e54 60%, #8a1e44 100%);
  display: flex; align-items: center; justify-content: center;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.12) inset,
    0 20px 40px -10px rgba(223,31,90,.55),
    0 0 60px -10px rgba(223,31,90,.7);
  z-index: 3;
}
.orch__hub svg { width: 42%; height: 55%; }
.orch__hub::before {
  content: "";
  position: absolute; inset: -8px;
  border-radius: 28px;
  border: 1px solid rgba(223,31,90,.3);
  animation: pulseRing 2.6s infinite var(--ease);
}
.orch__hub::after {
  content: "";
  position: absolute; inset: -16px;
  border-radius: 32px;
  border: 1px solid rgba(223,31,90,.18);
  animation: pulseRing 2.6s infinite var(--ease) .8s;
}
@keyframes pulseRing {
  0% { transform: scale(.9); opacity: 1; }
  100% { transform: scale(1.18); opacity: 0; }
}

.orch__foot {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; border-top: 1px solid rgba(255,255,255,.06);
  margin-top: 8px;
  font-size: 12px;
  flex-wrap: wrap; gap: 8px;
}
.orch__foot-stat {
  display: flex; align-items: center; gap: 8px;
}
.orch__foot-stat .num { color: var(--paper); font-weight: 700; font-size: 14px; letter-spacing: -.01em; }
.orch__foot-stat .lbl { color: var(--text-mute); }

/* Mobile: scale chips proportionally so the radial layout + lines stay visible */
@media (max-width: 720px) {
  .orch { padding: 18px 14px 16px; }
  .orch__head { padding-bottom: 12px; }
  .orch__title { font-size: 12px; }
  .orch__count { font-size: 10.5px; }
  .method {
    padding: 5px 9px;
    font-size: 10.5px;
    gap: 6px;
    border-radius: 8px;
  }
  .method .mk { width: 6px; height: 6px; }
  .orch__hub {
    width: 22%;
    min-width: 62px;
    max-width: 84px;
    border-radius: 18px;
  }
  .orch__hub::before { inset: -6px; border-radius: 22px; }
  .orch__hub::after  { inset: -12px; border-radius: 26px; }
  .orch__foot { padding-top: 12px; gap: 6px; }
  .orch__foot-stat { gap: 6px; }
  .orch__foot-stat .num { font-size: 12px; }
  .orch__foot-stat .lbl { font-size: 10.5px; }
}
@media (max-width: 420px) {
  .method {
    padding: 4px 7px;
    font-size: 9.5px;
    gap: 5px;
  }
  .method .mk { width: 5px; height: 5px; }
}
/* Last-resort fallback for very narrow screens (< 340px, e.g. folded devices) */
@media (max-width: 339px) {
  .orch__stage { aspect-ratio: auto; min-height: 360px; padding: 24px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
  .orch__svg { display: none; }
  .method { position: static !important; transform: none !important; width: 100%; justify-content: flex-start; }
  .orch__hub { position: static !important; transform: none !important; grid-column: 1 / -1; margin: 10px auto; width: 80px; }
}

/* =========================================================
   iGAMING VERTICALS STRIP
   ========================================================= */
.verticals {
  border-top: 1px solid var(--ink-line);
  border-bottom: 1px solid var(--ink-line);
  background: rgba(0,0,0,.18);
  padding: 26px 0;
}
.verticals__inner {
  display: grid; grid-template-columns: auto repeat(5, 1fr);
  align-items: center;
  gap: 32px;
}
.verticals__label {
  font-size: 12.5px;
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 500;
  border-right: 1px solid var(--ink-line);
  padding-right: 32px;
}
.verticals__label strong { color: var(--paper); display: block; font-weight: 700; letter-spacing: .04em; font-size: 14px; margin-top: 2px; }
.vertical {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; font-weight: 600; color: var(--text-soft);
  transition: color .2s var(--ease);
}
.vertical:hover { color: var(--paper); }
.vertical svg { width: 22px; height: 22px; color: var(--pink); flex-shrink: 0; }

/* =========================================================
   SECTION BASE
   ========================================================= */
section { position: relative; }
.section { padding: 120px 0; }
.section--tight { padding: 90px 0; }
.section--light { background: var(--bone); color: var(--ink); }

.section-head { display: flex; flex-direction: column; align-items: flex-start; max-width: 780px; margin-bottom: 70px; }
.section-head--center { margin-left: auto; margin-right: auto; align-items: center; text-align: center; }
.kicker {
  color: var(--pink); font-size: 13px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 18px;
}
.kicker::before {
  content: ""; display: inline-block; width: 22px; height: 2px;
  background: var(--pink); border-radius: 2px;
}
.section-head h2 {
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.05; letter-spacing: -.025em;
  font-weight: 800;
}
.section--light .section-head h2 { color: var(--ink); }
.section-head p {
  margin-top: 18px; color: var(--text-soft); font-size: 18px; max-width: 640px;
}
.section--light .section-head p { color: #5b6573; }

/* =========================================================
   TWO-PILLAR SERVICES
   ========================================================= */
.pillars {
  display: grid; grid-template-columns: 1fr 1fr; gap: 22px;
}
.pillar {
  position: relative;
  background: var(--ink-2);
  border: 1px solid var(--ink-line);
  border-radius: var(--radius-lg);
  padding: 44px 40px 40px;
  overflow: hidden;
  display: flex; flex-direction: column;
  min-height: 540px;
  transition: transform .35s var(--ease), border-color .25s var(--ease);
}
.pillar:hover {
  transform: translateY(-4px);
  border-color: rgba(223,31,90,.4);
}
.pillar::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(223,31,90,.10), transparent 50%);
  opacity: 0; transition: opacity .35s var(--ease);
  pointer-events: none;
}
.pillar:hover::before { opacity: 1; }
.pillar--alt::before {
  background: radial-gradient(circle at 0% 100%, rgba(137,88,254,.12), transparent 50%);
}

.pillar__head {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.pillar__num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; color: var(--pink);
  letter-spacing: .12em; font-weight: 500;
  border: 1px solid rgba(223,31,90,.3);
  padding: 4px 10px; border-radius: 999px;
}
.pillar--alt .pillar__num { color: var(--purple); border-color: rgba(137,88,254,.4); }
.pillar__tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px; color: var(--text-mute);
  letter-spacing: .1em; text-transform: uppercase;
}

.pillar h3 {
  font-size: 32px; font-weight: 800;
  letter-spacing: -.022em; line-height: 1.1;
  margin-bottom: 18px;
}
.pillar > p {
  color: var(--text-soft); font-size: 16px; line-height: 1.6;
  margin-bottom: 28px;
}
.pillar > p .em { color: var(--paper); font-weight: 600; }

.pillar__list {
  list-style: none;
  display: flex; flex-direction: column; gap: 14px;
  margin-bottom: 30px;
  flex: 1;
}
.pillar__list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14.5px; color: var(--text-soft); line-height: 1.55;
}
.pillar__list li::before {
  content: ""; width: 16px; height: 16px;
  background: rgba(223,31,90,.14);
  border: 1px solid rgba(223,31,90,.3);
  border-radius: 4px;
  flex-shrink: 0; margin-top: 3px;
  position: relative;
}
.pillar--alt .pillar__list li::before {
  background: rgba(137,88,254,.14);
  border-color: rgba(137,88,254,.4);
}
.pillar__list li::after {
  content: "";
  position: absolute;
  width: 6px; height: 6px;
  background: var(--pink);
  border-radius: 1px;
  margin-top: 8px; margin-left: 5px;
}
.pillar--alt .pillar__list li::after { background: var(--purple); }
.pillar__list li strong { color: var(--paper); font-weight: 600; display: block; margin-bottom: 2px; }

.pillar__cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 14.5px;
  color: var(--pink-soft);
  align-self: flex-start;
}
.pillar--alt .pillar__cta { color: var(--purple); }
.pillar__cta .arrow { transition: transform .2s var(--ease); }
.pillar:hover .pillar__cta .arrow { transform: translateX(4px); }

.pillar__pattern {
  position: absolute; right: -40px; bottom: -50px;
  width: 220px; height: 280px; opacity: .04;
  pointer-events: none;
}

/* =========================================================
   STATS
   ========================================================= */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-top: 1px solid var(--ink-line);
  border-bottom: 1px solid var(--ink-line);
}
.stat {
  padding: 56px 32px;
  border-right: 1px solid var(--ink-line);
  position: relative;
}
.stat:last-child { border-right: 0; }
.stat__num {
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 800;
  letter-spacing: -.03em; line-height: 1;
  background: linear-gradient(180deg, var(--paper) 0%, rgba(255,255,255,.55) 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  margin-bottom: 14px;
  font-variant-numeric: tabular-nums;
}
.stat__num .unit { font-size: .55em; color: var(--pink); }
.stat__label { color: var(--text-soft); font-size: 14px; line-height: 1.5; }

/* =========================================================
   PAYMENT METHODS GRID (LIGHT)
   ========================================================= */
.methods-section { padding: 130px 0; }
.methods-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center;
}
.methods-copy h2 {
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.05; letter-spacing: -.025em; font-weight: 800;
}
.methods-copy h2 .em {
  font-style: italic;
  background: linear-gradient(120deg, var(--pink), var(--purple));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  font-weight: 800;
}
.methods-copy p {
  margin-top: 22px; color: #5b6573; font-size: 17px; max-width: 540px;
}
.methods-features {
  margin-top: 38px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px 32px;
}
.methods-features .mf {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 14.5px; color: #2a3645;
}
.methods-features .mf .ico {
  width: 32px; height: 32px; border-radius: 8px;
  background: rgba(223,31,90,.10);
  color: var(--pink);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.methods-features .mf strong { display: block; color: var(--ink); font-weight: 700; margin-bottom: 2px; }

.methods-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}
.method-card {
  position: relative;
  background: var(--paper);
  border: 1px solid #e5e2dd;
  border-radius: 14px;
  padding: 22px 18px;
  display: flex; flex-direction: column; gap: 12px;
  align-items: flex-start;
  min-height: 110px;
  transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.method-card:hover {
  transform: translateY(-3px);
  border-color: var(--pink);
  box-shadow: 0 18px 40px -20px rgba(223,31,90,.35);
}
.method-card .pill {
  font-size: 10.5px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .08em;
  padding: 3px 8px; border-radius: 999px;
  background: #f4f2ee; color: #5b6573;
}
.method-card .pill.live { background: rgba(34,197,94,.12); color: #15803d; }
.method-card .name { font-weight: 700; font-size: 17px; letter-spacing: -.01em; color: var(--ink); }
.method-card .row { display: flex; align-items: center; gap: 10px; width: 100%; justify-content: space-between; }
.method-card .mk-block {
  width: 28px; height: 28px;
  border-radius: 7px;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 11px; color: white;
  letter-spacing: -.02em;
}
.method-card .mk-block.visa     { background: #1A1F71; }
.method-card .mk-block.mc       { background: linear-gradient(90deg, #EB001B 0%, #EB001B 50%, #FF9F00 50%, #FF9F00 100%); }
.method-card .mk-block.amex     { background: #006FCF; }
.method-card .mk-block.disc     { background: #FF6000; }
.method-card .mk-block.apple    { background: #000000; }
.method-card .mk-block.google   { background: linear-gradient(135deg, #4285F4 0%, #EA4335 35%, #FBBC04 70%, #34A853 100%); }
.method-card .mk-block.cashapp  { background: #00D632; }
.method-card .mk-block.interac  { background: #F47216; }
.method-card .mk-block.crypto   { background: linear-gradient(135deg, #F7931A, #B55A0B); }

/* =========================================================
   WHY FYNTEK (Fraud-led)
   ========================================================= */
.why {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: 80px; align-items: center;
}
.why__copy h2 {
  font-size: clamp(34px, 4.6vw, 54px);
  line-height: 1.05; letter-spacing: -.025em; font-weight: 800; margin-bottom: 22px;
}
.why__copy h2 .em {
  background: linear-gradient(120deg, var(--pink), var(--purple));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.why__copy > p {
  color: var(--text-soft); font-size: 17px; margin-bottom: 40px; max-width: 540px;
}
.why__features { display: flex; flex-direction: column; gap: 28px; }
.feature {
  display: grid; grid-template-columns: 50px 1fr; gap: 22px;
  padding: 6px 0;
}
.feature__icon {
  width: 50px; height: 50px;
  border-radius: 14px;
  background: rgba(223,31,90,.10);
  color: var(--pink);
  display: inline-flex; align-items: center; justify-content: center;
}
.feature__icon svg { width: 22px; height: 22px; }
.feature h4 { font-size: 19px; font-weight: 700; margin-bottom: 6px; letter-spacing: -.01em; }
.feature p { color: var(--text-soft); font-size: 15px; }

.why__visual {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 36px;
  background: linear-gradient(135deg, var(--ink-2) 0%, #1a2532 100%);
  border: 1px solid var(--ink-line);
  overflow: hidden;
  min-height: 480px;
}
.why__visual::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='52' height='66' viewBox='0 0 52 66'><path d='M48 0H19a3.6 3.6 0 0 0-3.6 3.6v11.2a.85.85 0 0 1-.7.84H3.6A3.6 3.6 0 0 0 0 19.24v11.12a3.6 3.6 0 0 0 3.6 3.6h11.16c.5-.01.9.4.9.9v11.18a.79.79 0 0 1-.79.79H3.6A3.6 3.6 0 0 0 0 50.4v11.16A3.6 3.6 0 0 0 3.6 65.16h11.16a3.6 3.6 0 0 0 3.6-3.6V50.4a.79.79 0 0 1 .79-.79h11.16a3.6 3.6 0 0 0 3.6-3.6V34.88a3.6 3.6 0 0 0-3.6-3.6H19.13a.9.9 0 0 1-.9-.9V19.24a3.6 3.6 0 0 0-.02-.36.85.85 0 0 1 .85-.84H48A3.6 3.6 0 0 0 51.6 14.4V3.6A3.6 3.6 0 0 0 48 0' fill='%23df1f5a' opacity='.05'/></svg>");
  background-size: 76px 96px;
  opacity: .55;
}

.shield {
  position: relative;
  display: flex; flex-direction: column; gap: 14px;
}
.shield__hero {
  position: relative;
  padding: 28px 24px;
  background: rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  display: flex; align-items: center; gap: 18px;
}
.shield__icon {
  width: 60px; height: 60px;
  flex-shrink: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--pink), #8a1e44);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 30px -8px rgba(223,31,90,.5);
}
.shield__icon svg { width: 30px; height: 30px; color: white; }
.shield__text strong { font-size: 16px; font-weight: 700; display: block; margin-bottom: 4px; }
.shield__text span { color: var(--text-soft); font-size: 13.5px; }

.tools {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
.tool {
  background: rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 12.5px;
  color: var(--text-soft);
}
.tool .tname {
  display: flex; align-items: center; gap: 8px;
  color: var(--paper); font-weight: 600; font-size: 13.5px;
  margin-bottom: 4px;
}
.tool .tname .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #22c55e; box-shadow: 0 0 6px #22c55e;
}
.tool.purple .tname .dot { background: var(--purple); box-shadow: 0 0 6px var(--purple); }
.tool.cyan .tname .dot { background: var(--cyan); box-shadow: 0 0 6px var(--cyan); }
.tool.pink .tname .dot { background: var(--pink); box-shadow: 0 0 6px var(--pink); }

/* =========================================================
   EDITORIAL TAGLINE (LIGHT)
   ========================================================= */
.editorial {
  background: var(--paper); color: var(--ink);
  padding: 130px 0;
  position: relative;
  overflow: hidden;
}
.editorial::before {
  content: ""; position: absolute;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(223,31,90,.06), transparent 60%);
  pointer-events: none;
}
.editorial__inner {
  max-width: 1080px; margin: 0 auto; padding: 0 28px;
  text-align: center; position: relative;
}
.editorial p.line {
  font-size: clamp(40px, 6vw, 84px);
  font-weight: 800;
  letter-spacing: -.03em; line-height: .98;
  margin-bottom: 14px;
}
.editorial p.line .em {
  font-style: italic;
  background: linear-gradient(120deg, var(--pink), var(--purple), var(--cyan));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  font-weight: 800;
}
.editorial p.sub {
  font-size: 19px; color: #5b6573;
  max-width: 620px; margin: 38px auto 0;
  line-height: 1.55;
}
.editorial__metrics {
  display: grid; grid-template-columns: repeat(3, 1fr);
  margin-top: 70px; gap: 0;
  border-top: 1px solid #e5e2dd;
}
.editorial__metric {
  padding: 32px 16px;
  border-right: 1px solid #e5e2dd;
}
.editorial__metric:last-child { border-right: 0; }
.editorial__metric .num {
  font-size: 36px; font-weight: 800; letter-spacing: -.025em; color: var(--pink);
  font-variant-numeric: tabular-nums;
}
.editorial__metric .lbl { font-size: 13px; color: #5b6573; margin-top: 6px; }

/* =========================================================
   CTA / CONTACT
   ========================================================= */
.cta {
  padding: 130px 0;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(223,31,90,.18), transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(137,88,254,.15), transparent 50%);
}
.cta__grid {
  position: relative;
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 80px; align-items: center;
}
.cta h2 {
  font-size: clamp(40px, 5.2vw, 68px);
  line-height: 1.02; letter-spacing: -.025em; font-weight: 800;
}
.cta h2 .em { color: var(--pink); }
.cta p {
  margin-top: 22px; color: var(--text-soft); font-size: 18px;
  max-width: 460px;
}
.cta__contact-row {
  margin-top: 36px; display: flex; flex-direction: column; gap: 18px;
  font-size: 14.5px; color: var(--text-soft);
}
.cta__contact-row .item { display:flex; gap: 14px; align-items: center; }
.cta__contact-row .item-ico {
  width: 36px; height: 36px; border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cta__contact-row .item a {
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,.2);
  text-underline-offset: 3px;
  transition: text-decoration-color .2s var(--ease);
}
.cta__contact-row .item a:hover { text-decoration-color: var(--pink); }

/* =========================================================
   FORM (HubSpot-ready container + demo styles)
   ========================================================= */
.form-wrap {
  background: var(--ink-2);
  border: 1px solid var(--ink-line);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
}
.form-wrap::before {
  content: ""; position: absolute; inset: -1px;
  border-radius: calc(var(--radius-lg) + 1px);
  background: linear-gradient(135deg, rgba(223,31,90,.4), transparent 50%);
  z-index: -1;
}
.form-header {
  display: flex; gap: 10px; align-items: center;
  margin-bottom: 26px; font-size: 13px; color: var(--text-mute);
  font-family: 'JetBrains Mono', monospace; letter-spacing: .08em;
  text-transform: uppercase;
}
.form-header::before {
  content: ""; width: 8px; height: 8px;
  background: var(--cyan); border-radius: 50%;
  box-shadow: 0 0 8px var(--cyan);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-size: 12px; color: var(--text-soft);
  font-weight: 500; letter-spacing: .02em;
}
.form-field input,
.form-field textarea,
.form-field select {
  background: rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  padding: 12px 14px;
  font: inherit; font-size: 14.5px; color: var(--paper);
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none; border-color: var(--pink); background: rgba(0,0,0,.4);
}
.form-field textarea { resize: vertical; min-height: 90px; }
.form-submit { width: 100%; margin-top: 8px; justify-content: center; }
.form-note {
  display: flex; align-items: center; gap: 8px;
  margin-top: 16px; font-size: 11.5px; color: var(--text-mute);
}
.form-note .hs-dot {
  width: 6px; height: 6px; background: var(--cyan); border-radius: 50%;
}

/* =========================================================
   HUBSPOT FORM OVERRIDES
   These styles target HubSpot's auto-generated markup so the
   embedded form matches the design once swapped in.
   ========================================================= */
.hs-form-frame, .hbspt-form, .hs-form {
  font-family: 'Poppins', sans-serif !important;
}
.hs-form fieldset { max-width: 100% !important; }
.hs-form .hs-form-field {
  display: flex; flex-direction: column; gap: 6px;
  margin-bottom: 14px;
}
.hs-form .hs-form-field > label {
  font-size: 12px !important;
  color: var(--text-soft) !important;
  font-weight: 500 !important;
}
.hs-form .hs-input,
.hs-form input[type="text"],
.hs-form input[type="email"],
.hs-form input[type="tel"],
.hs-form select,
.hs-form textarea {
  background: rgba(0,0,0,.25) !important;
  border: 1px solid rgba(255,255,255,.1) !important;
  border-radius: 10px !important;
  padding: 12px 14px !important;
  color: var(--paper) !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 14.5px !important;
  width: 100% !important;
}
.hs-form .hs-input:focus,
.hs-form select:focus,
.hs-form textarea:focus {
  outline: none !important;
  border-color: var(--pink) !important;
  background: rgba(0,0,0,.4) !important;
}
.hs-form .hs-button,
.hs-form input[type="submit"] {
  background: var(--pink) !important;
  color: var(--paper) !important;
  border: 0 !important;
  border-radius: 999px !important;
  height: 54px !important;
  padding: 0 30px !important;
  font-weight: 600 !important;
  font-size: 15.5px !important;
  font-family: 'Poppins', sans-serif !important;
  width: 100% !important;
  cursor: pointer !important;
  margin-top: 8px !important;
  transition: background .2s var(--ease) !important;
}
.hs-form .hs-button:hover,
.hs-form input[type="submit"]:hover {
  background: var(--pink-soft) !important;
}
.hs-error-msgs, .hs-error-msg {
  color: var(--pink-soft) !important;
  font-size: 12px !important;
  list-style: none !important;
  padding-left: 0 !important;
}
.hs-form .hs-richtext, .hs-form .hs-richtext p {
  color: var(--text-soft) !important;
  font-size: 13px !important;
}
.hs-form .legal-consent-container {
  font-size: 12px !important;
  color: var(--text-mute) !important;
  margin-top: 14px !important;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: #0e1620;
  border-top: 1px solid var(--ink-line);
  padding: 80px 0 40px;
  position: relative;
}
.footer__top {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--ink-line);
}
.footer__brand p {
  margin: 18px 0 22px;
  color: var(--text-mute); font-size: 14px; max-width: 340px;
}
.socials { display: flex; gap: 8px; }
.socials a {
  width: 38px; height: 38px;
  border: 1px solid var(--ink-line); border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--text-soft); transition: all .2s var(--ease);
}
.socials a:hover { color: var(--pink); border-color: var(--pink); transform: translateY(-2px); }

.footer h5 {
  font-size: 13px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--paper);
  margin-bottom: 18px;
}
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer ul a { color: var(--text-soft); font-size: 14px; transition: color .2s var(--ease); }
.footer ul a:hover { color: var(--pink-soft); }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 30px;
  font-size: 13px; color: var(--text-mute);
}
.footer__bottom-links { display: flex; gap: 24px; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1100px) {
  .hero__grid, .why, .cta__grid, .methods-grid { grid-template-columns: 1fr; gap: 50px; }
  .pillars { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--ink-line); }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .verticals__inner { grid-template-columns: 1fr; gap: 18px; }
  .verticals__label { border-right: 0; padding-right: 0; padding-bottom: 18px; border-bottom: 1px solid var(--ink-line); }
  .methods-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  /* Mobile nav: hide desktop links + CTA buttons, show hamburger */
  .nav__links {
    display: none;
    position: fixed;
    top: 76px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(22,31,40,0.97);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255,255,255,.06);
    padding: 8px 18px 22px;
    box-shadow: 0 30px 60px -20px rgba(0,0,0,.5);
    max-height: calc(100vh - 76px);
    overflow-y: auto;
  }
  .nav__links.is-open { display: flex; }
  .nav__links a {
    padding: 14px 4px;
    font-size: 16px;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
  .nav__links a:last-child { border-bottom: 0; }
  .nav__links a.active::after { display: none; }
  .nav__links .nav__drawer-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--pink);
    color: var(--paper);
    border-radius: 999px;
    padding: 11px 22px;
    margin: 16px auto 4px;
    font-weight: 600;
    font-size: 14.5px;
    border-bottom: 0;
    box-shadow: 0 10px 30px -8px rgba(223,31,90,.55);
    align-self: center;
    width: auto;
    max-width: max-content;
  }
  .nav__links .nav__drawer-cta .arrow { width: 14px; height: 14px; }
  .nav__cta .btn { display: none; }
  .nav__toggle { display: inline-flex; }

  .container { padding: 0 18px; }
  .section { padding: 80px 0; }
  .stats { grid-template-columns: 1fr; }
  .stat { border-right: 0 !important; border-bottom: 1px solid var(--ink-line); }
  .stat:last-child { border-bottom: 0; }
  .footer__top { grid-template-columns: 1fr; gap: 40px; }
  .footer__bottom { flex-direction: column; gap: 14px; }
  .form-row { grid-template-columns: 1fr; }
  .editorial__metrics { grid-template-columns: 1fr; }
  .editorial__metric { border-right: 0; border-bottom: 1px solid #e5e2dd; }
  .methods-features { grid-template-columns: 1fr; }
  .methods-cards { grid-template-columns: 1fr 1fr; }
  .hero__meta .divider { display: none; }
  .hero__meta { gap: 26px; }
  .pillar { padding: 32px 24px; }
}

/* Hide drawer-only CTA on desktop */
.nav__drawer-cta { display: none; }

/* =========================================================
   RESPONSIVE GRID UTILITIES
   Use these instead of inline grid-template-columns so that
   media queries can override correctly.
   ========================================================= */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 60px;
}
@media (max-width: 1100px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .grid-2 { grid-template-columns: 1fr; gap: 28px; }
}
/* For grids with longer-text cards (insights, verticals): drop to 1 col earlier */
.grid-3--text { /* same base as .grid-3 */
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 1100px) {
  .grid-3--text { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .grid-3--text { grid-template-columns: 1fr; gap: 16px; }
}
/* Pillars on mobile should stack to 1 column for readability */
@media (max-width: 720px) {
  .pillars { grid-template-columns: 1fr !important; gap: 16px; }
}

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

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