/* ============================================================
   Nodeweave — landing page styles
   ============================================================ */

:root {
  --indigo: #0E6FB8;
  --indigo-600: #0C5D9C;
  --violet: #159BB3;
  --cyan: #159BB3;
  --cyan-light: #34B98C;
  --ink: #0F2A4A;
  --ink-2: #1e3556;
  --muted: #64748b;
  --muted-2: #94a3b8;
  --line: #e6e8f0;
  --surface: #ffffff;
  --surface-2: #f7f8fc;
  --surface-3: #e9f2fb;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(16,24,40,.06), 0 1px 3px rgba(16,24,40,.1);
  --shadow-md: 0 10px 30px rgba(16,24,40,.08);
  --shadow-lg: 0 24px 60px rgba(14,111,184,.18);
  --grad: linear-gradient(120deg, #0E6FB8 0%, #159BB3 52%, #34B98C 108%);
  --grad-navy: linear-gradient(125deg, #0F2A4A 0%, #0E6FB8 45%, #159BB3 78%, #34B98C 112%);
  --grad-soft: linear-gradient(120deg, #e8f2fb, #e9f8f2);
  --container: 1160px;
  --font: 'Poppins', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, .brand__name { font-family: var(--font); font-weight: 700; line-height: 1.15; letter-spacing: -.02em; }

a { color: inherit; text-decoration: none; }

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

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font); font-weight: 600; font-size: 15px;
  padding: 11px 20px; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s; white-space: nowrap;
}
.btn--primary { background: var(--grad); color: #fff; box-shadow: 0 8px 20px rgba(14,111,184,.35); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(14,111,184,.45); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { color: var(--indigo); }
.btn--outline { background: #fff; color: var(--ink); border-color: var(--line); }
.btn--outline:hover { border-color: var(--indigo); color: var(--indigo); transform: translateY(-2px); }
.btn--lg { padding: 14px 26px; font-size: 16px; }
.btn--block { width: 100%; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.72);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.nav.is-stuck { border-color: var(--line); box-shadow: var(--shadow-sm); }
.nav__inner { display: flex; align-items: center; gap: 24px; height: 70px; }
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand__mark { display: inline-flex; filter: drop-shadow(0 4px 10px rgba(14,111,184,.35)); }
.brand__name { font-size: 21px; font-weight: 700; color: var(--ink); }
.brand__name--accent { color: var(--cyan); }
.footer__brand .brand__name { color: #fff; }
.footer__brand .brand__name--accent { color: #34B98C; }
.nav__links { display: flex; gap: 28px; margin-left: 14px; flex: 1; }
.nav__links a { font-size: 15px; font-weight: 500; color: var(--ink-2); transition: color .15s; }
.nav__links a:hover { color: var(--indigo); }
.nav__cta { display: flex; align-items: center; gap: 10px; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: .25s; }
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 70px 0 90px; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
#weaveCanvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__glow {
  position: absolute; top: -180px; right: -120px; width: 620px; height: 620px;
  background: radial-gradient(circle, rgba(21,155,179,.16), transparent 62%);
  pointer-events: none;
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(1200px 500px at 80% -10%, rgba(52,185,140,.10), transparent 60%),
              radial-gradient(900px 500px at 0% 0%, rgba(14,111,184,.10), transparent 55%);
}
.hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--line); color: var(--ink-2);
  font-size: 13px; font-weight: 600; padding: 7px 14px; border-radius: 999px; box-shadow: var(--shadow-sm);
}
.pill__dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 3px rgba(34,197,94,.18); }
.hero__title { font-size: clamp(38px, 5.4vw, 62px); font-weight: 800; margin: 20px 0 18px; }
.hero__sub { font-size: 18px; color: var(--muted); max-width: 540px; }
.hero__actions { display: flex; gap: 14px; margin: 30px 0 26px; flex-wrap: wrap; }
.hero__trust { list-style: none; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; color: var(--muted); font-size: 14px; }
.hero__trust strong { color: var(--ink); }
.dotsep { width: 4px; height: 4px; border-radius: 50%; background: var(--muted-2); display: inline-block; }

/* hero card */
.hero__card { display: flex; justify-content: center; }
.paycard {
  width: 100%; max-width: 380px; background: #fff; border-radius: 22px;
  border: 1px solid var(--line); box-shadow: var(--shadow-lg); padding: 24px;
  animation: floaty 6s ease-in-out infinite;
}
@keyframes floaty { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-12px);} }
.paycard__top { display: flex; justify-content: space-between; align-items: center; }
.paycard__label { font-family: var(--font); font-weight: 700; }
.paycard__secure { font-size: 12px; color: var(--muted); }
.paycard__amount { font-family: var(--font); font-size: 34px; font-weight: 800; margin: 14px 0 18px; }
.paycard__amount span { color: var(--muted-2); font-weight: 600; }
.paycard__methods { display: flex; gap: 8px; margin-bottom: 18px; }
.mchip { flex: 1; font-size: 13px; font-weight: 600; padding: 9px 0; border-radius: 10px; border: 1px solid var(--line); background: var(--surface-2); color: var(--muted); cursor: pointer; font-family: var(--font); }
.mchip.is-active { background: var(--grad); color: #fff; border-color: transparent; }
.paycard__field { background: var(--surface-2); border: 1px solid var(--line); border-radius: 10px; padding: 10px 12px; margin-bottom: 10px; display: flex; flex-direction: column; }
.paycard__field span { font-size: 11px; color: var(--muted-2); }
.paycard__field b { font-size: 15px; letter-spacing: .04em; }
.paycard__row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.paycard__pay { display: block; text-align: center; text-decoration: none; width: 100%; margin-top: 6px; background: var(--grad); color: #fff; border: 0; border-radius: 12px; padding: 13px; font-family: var(--font); font-weight: 700; font-size: 15px; cursor: pointer; }
.paycard__routing { margin-top: 14px; font-size: 12px; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.routing-dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; animation: pulse 1.8s infinite; }
@keyframes pulse { 0%,100%{ box-shadow: 0 0 0 0 rgba(34,197,94,.4);} 50%{ box-shadow: 0 0 0 6px rgba(34,197,94,0);} }

/* ---------- Trusted ---------- */
.trusted { padding: 26px 0 6px; border-top: 1px solid var(--line); }
.trusted__label { text-align: center; color: var(--muted); font-size: 14px; margin-bottom: 18px; }
.trusted__logos { display: flex; gap: 48px; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.trusted__logos span { font-family: var(--font); font-weight: 700; font-size: 19px; color: var(--muted-2); white-space: nowrap; animation: marquee 26s linear infinite; }
@keyframes marquee { from { transform: translateX(0);} to { transform: translateX(-100%);} }

/* ---------- Stats ---------- */
.stats { padding: 46px 0; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat { text-align: center; padding: 22px; background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--radius); }
.stat__num { font-family: var(--font); font-weight: 800; font-size: 40px; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat__label { color: var(--muted); font-size: 14px; margin-top: 4px; }

/* ---------- Legal & content sub-pages ---------- */
.pagehero { background: var(--grad-navy); color: #fff; padding: 66px 0 50px; text-align: center; }
.pagehero h1 { font-size: clamp(28px, 4vw, 44px); }
.pagehero p { color: rgba(255,255,255,.82); margin-top: 10px; font-size: 17px; }
.legal { padding: 54px 0; }
.legal__inner { max-width: 840px; margin: 0 auto; }
.legal__updated { color: var(--muted); font-size: 14px; margin-bottom: 26px; }
.legal__intro { font-size: 16.5px; color: #374151; margin-bottom: 8px; }
.legal h2 { font-size: 22px; margin: 32px 0 10px; }
.legal h3 { font-size: 17px; margin: 20px 0 8px; }
.legal p { color: #374151; font-size: 15.5px; margin-bottom: 12px; }
.legal ul { margin: 0 0 14px 22px; }
.legal li { color: #374151; font-size: 15.5px; margin-bottom: 6px; }
.legal a { color: var(--indigo); font-weight: 600; }
.legal__toc { background: var(--surface-2); border: 1px solid var(--line); border-radius: 14px; padding: 18px 22px; margin-bottom: 32px; }
.legal__toc h4 { font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin-bottom: 10px; }
.legal__toc a { display: inline-block; margin: 3px 16px 3px 0; font-size: 14px; }
.legal__note { background: #eef6fc; border: 1px solid #cfe6f7; border-radius: 12px; padding: 14px 18px; font-size: 14px; color: #1e3556; margin: 18px 0; }

/* ---------- Contact page ---------- */
.contact { padding: 54px 0; }
.contact__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 44px; align-items: start; }
.contact__info h2 { font-size: 24px; margin-bottom: 10px; }
.contact__info > p { color: var(--muted); font-size: 16px; }
.contact__list { list-style: none; margin-top: 24px; display: grid; gap: 18px; }
.contact__list li { display: flex; gap: 14px; align-items: flex-start; }
.contact__ico { font-size: 20px; line-height: 1.4; }
.contact__list b { font-family: var(--font); display: block; font-size: 15px; }
.contact__list span, .contact__list a { color: var(--muted); font-size: 15px; }
.contact__card { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 30px; box-shadow: var(--shadow-md); }
.contact__card h3 { font-size: 20px; margin-bottom: 16px; }
.field textarea { width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px; font-size: 15px; font-family: var(--font-body); resize: vertical; min-height: 120px; transition: border-color .15s, box-shadow .15s; }
.field textarea:focus { outline: none; border-color: var(--indigo); box-shadow: 0 0 0 3px rgba(14,111,184,.15); }

/* ---------- Make-a-payment band ---------- */
.payband { background: var(--grad-navy); color: #fff; }
.payband__inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; padding: 30px 0; flex-wrap: wrap; }
.payband__text h2 { font-size: clamp(22px, 2.6vw, 30px); margin-bottom: 6px; }
.payband__text p { color: rgba(255,255,255,.82); font-size: 16px; max-width: 560px; }
.payband__btn { background: #fff; color: var(--ink); font-weight: 700; box-shadow: 0 10px 26px rgba(0,0,0,.18); }
.payband__btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(0,0,0,.26); }

/* ---------- Section base ---------- */
.section { padding: 84px 0; }
.section--alt { background: var(--surface-2); }
.section--dark { background: radial-gradient(900px 500px at 100% 0%, rgba(21,155,179,.35), transparent 55%), var(--ink); color: #fff; }
.section__head { max-width: 680px; margin: 0 auto 52px; text-align: center; }
.section__head h2 { font-size: clamp(28px, 3.4vw, 40px); margin: 14px 0 14px; }
.section__head p { color: var(--muted); font-size: 17px; }
.eyebrow { display: inline-block; font-family: var(--font); font-weight: 700; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--indigo); }
.eyebrow--light { color: var(--cyan-light); }

/* ---------- Methods ---------- */
.methods { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.method { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; transition: transform .2s, box-shadow .2s, border-color .2s; }
.method:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #d6dbf5; }
.method h3 { font-size: 19px; margin-bottom: 6px; }
.method p { color: var(--muted); font-size: 15px; }
.method__icon { width: 50px; height: 50px; border-radius: 14px; margin-bottom: 16px; background: var(--grad-soft); position: relative; border: 1px solid var(--line); }
.method__icon::after { content: ""; position: absolute; inset: 0; background-position: center; background-repeat: no-repeat; background-size: 26px; }
.i-card::after  { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230E6FB8' stroke-width='2' stroke-linecap='round'%3E%3Crect x='2' y='5' width='20' height='14' rx='2'/%3E%3Cpath d='M2 10h20'/%3E%3C/svg%3E"); }
.i-raast::after { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23159BB3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M13 2L4 14h7l-1 8 9-12h-7z'/%3E%3C/svg%3E"); }
.i-wallet::after{ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2334B98C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='6' width='18' height='13' rx='2'/%3E%3Cpath d='M16 12h2'/%3E%3C/svg%3E"); }
.i-bank::after  { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230E6FB8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 10l9-6 9 6'/%3E%3Cpath d='M5 10v8M19 10v8M9 10v8M15 10v8M3 20h18'/%3E%3C/svg%3E"); }
.i-otc::after   { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23159BB3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 7v10M9 10h4.5a1.5 1.5 0 010 3H9'/%3E%3C/svg%3E"); }
.i-qr::after    { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2334B98C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='7' height='7'/%3E%3Crect x='14' y='3' width='7' height='7'/%3E%3Crect x='3' y='14' width='7' height='7'/%3E%3Cpath d='M14 14h3v3M21 14v.01M21 21v-4M17 21h4'/%3E%3C/svg%3E"); }

/* ---------- Products ---------- */
.products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.product { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; transition: transform .2s, box-shadow .2s; }
.product:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.product--wide { grid-column: span 2; background: linear-gradient(180deg, #fff, var(--surface-3)); }
.product__icon { font-size: 30px; margin-bottom: 14px; }
.product h3 { font-size: 20px; margin-bottom: 8px; }
.product p { color: var(--muted); font-size: 15px; }
.product--cta { background: var(--ink); color: #fff; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 8px; }
.product--cta p { color: var(--muted-2); margin-bottom: 8px; }
.ticks { list-style: none; margin-top: 16px; display: grid; gap: 8px; }
.ticks li { position: relative; padding-left: 26px; font-size: 14px; color: var(--ink-2); }
.ticks li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 18px; height: 18px; background: var(--grad); color: #fff; border-radius: 50%; font-size: 11px; display: grid; place-items: center; }

/* ---------- Why / routing ---------- */
.why { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.why h2 { font-size: clamp(28px,3.2vw,38px); margin: 14px 0 16px; }
.why__copy > p { color: var(--muted); font-size: 17px; }
.feature-list { list-style: none; margin-top: 22px; display: grid; gap: 14px; }
.feature-list li { position: relative; padding-left: 30px; color: var(--ink-2); }
.feature-list li::before { content: ""; position: absolute; left: 0; top: 6px; width: 18px; height: 18px; border-radius: 6px; background: var(--grad); }
.why__visual { display: flex; justify-content: center; }
.route { width: 100%; max-width: 420px; background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 26px; box-shadow: var(--shadow-md); }
.route__node { text-align: center; font-family: var(--font); font-weight: 700; padding: 12px; border-radius: 12px; }
.route__node--src { background: var(--surface-3); color: var(--indigo); }
.route__node--dst { background: var(--grad); color: #fff; }
.route__rails { display: grid; gap: 10px; margin: 16px 0; }
.route__rail { display: flex; justify-content: space-between; align-items: center; padding: 12px 16px; border-radius: 10px; border: 1px solid var(--line); background: var(--surface-2); font-size: 14px; color: var(--muted); transition: .2s; }
.route__rail b { font-family: var(--font); color: var(--ink-2); }
.route__rail.is-best { border-color: transparent; background: linear-gradient(90deg, rgba(14,111,184,.12), rgba(52,185,140,.12)); color: var(--ink); box-shadow: 0 0 0 1.5px var(--indigo) inset; }
.route__rail.is-best b { color: var(--indigo); }

/* ---------- Integrations ---------- */
.integrations { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-bottom: 36px; }
.intg { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 18px; text-align: center; font-family: var(--font); font-weight: 600; font-size: 15px; color: var(--ink-2); transition: .2s; }
.intg:hover { border-color: var(--indigo); color: var(--indigo); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.code-card { max-width: 760px; margin: 0 auto; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid #1e293b; background: #0b1020; }
.code-card__bar { display: flex; align-items: center; gap: 8px; padding: 12px 16px; background: #11182e; border-bottom: 1px solid #1e293b; }
.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot--r { background: #ff5f57; } .dot--y { background: #febc2e; } .dot--g { background: #28c840; }
.code-card__file { margin-left: 8px; color: #64748b; font-size: 13px; font-family: ui-monospace, monospace; }
.code-card__body { margin: 0; padding: 22px; overflow-x: auto; }
.code-card__body code { font-family: ui-monospace, 'SF Mono', Menlo, monospace; font-size: 14px; line-height: 1.7; color: #cbd5e1; }
.c-key { color: #c084fc; } .c-fn { color: #38bdf8; } .c-str { color: #34d399; } .c-num { color: #fbbf24; } .c-com { color: #64748b; font-style: italic; }

/* ---------- Industries ---------- */
.industries { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.industry { display: flex; align-items: center; gap: 12px; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 18px 20px; font-family: var(--font); font-weight: 600; font-size: 15px; transition: .2s; }
.industry:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.industry__emoji { font-size: 22px; }

/* ---------- Pricing ---------- */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.plan { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 30px; display: flex; flex-direction: column; position: relative; }
.plan--featured { border-color: transparent; box-shadow: 0 0 0 2px var(--indigo), var(--shadow-lg); transform: translateY(-6px); }
.plan__badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--grad); color: #fff; font-size: 12px; font-weight: 700; font-family: var(--font); padding: 6px 14px; border-radius: 999px; }
.plan__name { font-size: 22px; }
.plan__for { color: var(--muted); font-size: 14px; margin: 4px 0 18px; }
.plan__price { display: flex; flex-direction: column; padding-bottom: 18px; margin-bottom: 6px; border-bottom: 1px solid var(--line); }
.plan__mdr { font-family: var(--font); font-weight: 800; font-size: 34px; }
.plan__per { color: var(--muted); font-size: 14px; }
.plan .ticks { flex: 1; margin-bottom: 24px; }
.pricing__note { text-align: center; color: var(--muted); font-size: 13px; margin-top: 24px; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step { background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; position: relative; }
.step__no { width: 42px; height: 42px; border-radius: 12px; background: var(--grad); color: #fff; font-family: var(--font); font-weight: 800; font-size: 19px; display: grid; place-items: center; margin-bottom: 16px; }
.step h3 { font-size: 18px; margin-bottom: 6px; }
.step p { color: var(--muted); font-size: 14px; }

/* ---------- Security ---------- */
.security { display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px; align-items: center; }
.security h2 { font-size: clamp(28px,3.2vw,38px); margin: 14px 0 14px; }
.security__copy p { color: var(--muted-2); font-size: 17px; }
.security__badges { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.badge { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: 14px; padding: 18px; }
.badge b { font-family: var(--font); display: block; font-size: 16px; }
.badge span { color: var(--muted-2); font-size: 13px; }

/* ---------- Support ---------- */
.support { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.support__card { text-align: center; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 24px; transition: .2s; }
.support__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.support__icon { font-size: 34px; margin-bottom: 12px; }
.support__card h3 { font-size: 19px; margin-bottom: 6px; }
.support__card p { color: var(--muted); font-size: 15px; }

/* ---------- CTA ---------- */
.cta { padding: 84px 0; background: radial-gradient(900px 500px at 0% 0%, rgba(52,185,140,.30), transparent 55%), radial-gradient(700px 500px at 100% 100%, rgba(21,155,179,.40), transparent 55%), var(--ink); color: #fff; }
.cta__inner { display: grid; grid-template-columns: 1fr 440px; gap: 56px; align-items: center; }
.cta__copy h2 { font-size: clamp(28px,3.6vw,42px); margin-bottom: 16px; }
.cta__copy > p { color: var(--muted-2); font-size: 18px; max-width: 460px; }
.cta__points { list-style: none; margin-top: 24px; display: grid; gap: 10px; color: #e2e8f0; }
.cta__contact { margin-top: 22px; display: grid; gap: 6px; font-size: 14px; color: var(--muted-2); }
.cta__contact a { color: #cfe9ff; }
.cta__contact a:hover { color: #fff; }
.cta__form { background: #fff; color: var(--ink); border-radius: 22px; padding: 30px; box-shadow: var(--shadow-lg); }
.cta__form h3 { font-size: 22px; margin-bottom: 18px; }
.field { margin-bottom: 14px; }
.field label { display: block; font-size: 13px; font-weight: 600; color: var(--ink-2); margin-bottom: 6px; }
.field input { width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px; font-size: 15px; font-family: var(--font-body); transition: border-color .15s, box-shadow .15s; }
.field input:focus { outline: none; border-color: var(--indigo); box-shadow: 0 0 0 3px rgba(14,111,184,.15); }
.field input.is-invalid { border-color: #ef4444; box-shadow: 0 0 0 3px rgba(239,68,68,.12); }
.cta__formnote { font-size: 12px; color: var(--muted); text-align: center; margin-top: 12px; }
.cta__success { margin-top: 14px; text-align: center; font-weight: 600; color: #16a34a; background: #dcfce7; padding: 12px; border-radius: 10px; }

/* ---------- Footer ---------- */
.footer { background: #0b1020; color: #cbd5e1; padding: 60px 0 28px; }
.footer__grid { display: grid; grid-template-columns: 1.5fr repeat(4, 1fr); gap: 32px; }
.footer__brand .brand__name { color: #fff; }
.footer__tag { color: var(--muted-2); font-size: 14px; margin-top: 14px; max-width: 260px; }
.footer__contact { font-style: normal; color: var(--muted-2); font-size: 13px; line-height: 1.8; margin-top: 16px; }
.footer__contact a { color: var(--muted-2); }
.footer__contact a:hover { color: #fff; }
.footer__col h4 { color: #fff; font-size: 14px; margin-bottom: 14px; letter-spacing: .04em; }
.footer__col a { display: block; color: var(--muted-2); font-size: 14px; margin-bottom: 10px; transition: color .15s; }
.footer__col a:hover { color: #fff; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; margin-top: 44px; padding-top: 22px; border-top: 1px solid #1e293b; font-size: 13px; color: var(--muted-2); }
.footer__legal a:hover { color: #fff; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav.is-open .nav__links { display: flex; position: absolute; top: 70px; left: 0; right: 0; flex-direction: column; background: #fff; padding: 18px 24px; gap: 16px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md); }
  .nav.is-open .nav__cta { display: flex; position: absolute; top: 100%; left: 0; right: 0; padding: 0 24px 18px; background: #fff; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__card { order: -1; }
  .why, .security, .cta__inner, .contact__grid { grid-template-columns: 1fr; gap: 36px; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .methods, .products, .industries, .pricing, .steps, .support, .integrations, .security__badges { grid-template-columns: repeat(2, 1fr); }
  .product--wide { grid-column: span 2; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .section { padding: 60px 0; }
  .methods, .products, .industries, .pricing, .steps, .support, .integrations, .security__badges, .footer__grid { grid-template-columns: 1fr; }
  .product--wide { grid-column: span 1; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; gap: 10px; }
  .plan--featured { transform: none; }
}

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