/* ============================================================
   PRIVORIO — Landing premium (dark). Design system.
   Herda o DNA do dashboard: navy/indigo profundo, roxo de marca,
   verde de conformidade, âmbar de opt-out, escudo.
   ============================================================ */

/* Satoshi (premium geometric sans) + JetBrains Mono (técnico) */
@import url('https://api.fontshare.com/v2/css?f[]=satoshi@400,500,700,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
  /* surfaces */
  --bg:        #0B0916;   /* deepest */
  --bg-2:      #0F0C1F;   /* base */
  --surface:   #16132E;   /* card */
  --surface-2: #1C1838;   /* elevated / hover */
  --hairline:  rgba(255,255,255,0.07);
  --hairline-2:rgba(255,255,255,0.12);

  /* brand */
  --brand:        #6A5BE8;   /* primary accent */
  --brand-bright: #7C6CFF;
  --brand-deep:   #534AB7;
  --brand-ink:    #3C40E1;

  /* data semantics */
  --green:  #2FBF6B;
  --green-bright: #3DD884;
  --amber:  #E0890C;
  --amber-bright: #F59E2E;
  --red:    #E2574C;

  /* text */
  --text:   #F4F3FB;
  --text-2: #B4B0CE;   /* muted */
  --text-3: #807CA0;   /* faint */

  --maxw: 1200px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-sm: 10px;

  --shadow-card: 0 1px 0 rgba(255,255,255,0.04) inset, 0 24px 60px -30px rgba(0,0,0,0.8);
  --glow: 0 0 80px -10px rgba(106,91,232,0.55);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --font: 'Satoshi', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, 'SF Mono', monospace;
}

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

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

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* page-wide ambient backdrop */
.aurora {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(620px 420px at 18% -4%, rgba(106,91,232,0.22), transparent 70%),
    radial-gradient(680px 520px at 92% 6%, rgba(60,64,225,0.16), transparent 72%),
    radial-gradient(900px 700px at 50% 120%, rgba(47,191,107,0.06), transparent 70%);
}
.grid-veil {
  position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: 0.5;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(80% 60% at 50% 0%, #000 0%, transparent 80%);
          mask-image: radial-gradient(80% 60% at 50% 0%, #000 0%, transparent 80%);
}

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
::selection { background: rgba(124,108,255,0.35); }

/* ---------- type ---------- */
.eyebrow {
  font-family: var(--mono);
  font-size: 12px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--brand-bright);
}
h1,h2,h3 { font-weight: 700; letter-spacing: -0.02em; line-height: 1.05; color: var(--text); }
.display { font-size: clamp(40px, 6.4vw, 76px); font-weight: 900; letter-spacing: -0.035em; line-height: 0.98; }
.h2 { font-size: clamp(30px, 4vw, 46px); font-weight: 700; letter-spacing: -0.03em; }
.lead { font-size: clamp(16px, 1.6vw, 19px); color: var(--text-2); line-height: 1.6; text-wrap: pretty; }
.grad-text {
  background: linear-gradient(96deg, #fff 6%, var(--brand-bright) 52%, #9ad4ff 96%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font); font-weight: 700; font-size: 15px;
  border-radius: 12px; padding: 13px 22px; cursor: pointer; border: 1px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s, border-color .2s;
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; }
.btn-primary {
  color: #fff;
  background: linear-gradient(180deg, var(--brand-bright), var(--brand));
  box-shadow: 0 1px 0 rgba(255,255,255,0.25) inset, 0 10px 30px -8px rgba(106,91,232,0.7);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 1px 0 rgba(255,255,255,0.3) inset, 0 18px 44px -10px rgba(106,91,232,0.85); }
.btn-ghost { color: var(--text); background: rgba(255,255,255,0.04); border-color: var(--hairline-2); }
.btn-ghost:hover { background: rgba(255,255,255,0.08); transform: translateY(-2px); }
.btn-lg { padding: 16px 28px; font-size: 16px; }

/* pill badge */
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500; color: var(--text-2);
  background: rgba(255,255,255,0.04); border: 1px solid var(--hairline);
  padding: 6px 14px; border-radius: 999px;
}
.pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green-bright); box-shadow: 0 0 0 4px rgba(61,216,132,0.18); }
.pill code { font-family: var(--mono); color: var(--brand-bright); font-size: 12px; }

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .3s, border-color .3s, backdrop-filter .3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled { background: rgba(11,9,22,0.72); backdrop-filter: blur(16px) saturate(140%); border-bottom-color: var(--hairline); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 11px; }
.brand .mark { width: 34px; height: 34px; flex: none; }
.brand-name { font-weight: 700; font-size: 19px; letter-spacing: -0.02em; }
.brand-sub { display: block; font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.18em; color: var(--text-3); margin-top: 1px; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: 15px; color: var(--text-2); transition: color .2s; white-space: nowrap; }
.nav-links a:hover { color: var(--text); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-actions .login { font-size: 15px; color: var(--text-2); padding: 8px 4px; }

/* mobile nav (hamburger) — injected by nav.js */
.nav-toggle { display: none; width: 44px; height: 44px; padding: 0; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  background: var(--surface); border: 1px solid var(--hairline); border-radius: 11px; }
.nav-toggle span { display: block; width: 19px; height: 2px; border-radius: 2px; background: var(--text);
  transition: transform .25s var(--ease), opacity .2s; }
.nav.menu-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile { display: none; position: absolute; top: 72px; left: 0; right: 0; flex-direction: column;
  padding: 12px 24px 22px; background: rgba(11,9,22,0.97); backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--hairline); box-shadow: 0 24px 48px -24px #000; }
.nav.menu-open .nav-mobile { display: flex; animation: panelIn .3s var(--ease); }
.nav-mobile a { font-size: 16px; color: var(--text-2); padding: 14px 4px; border-bottom: 1px solid var(--hairline); transition: color .2s; }
.nav-mobile a:hover { color: var(--text); }
.nav-mobile-actions { display: flex; flex-direction: column; gap: 12px; margin-top: 16px; }
.nav-mobile-actions .login { font-size: 16px; color: var(--text-2); text-align: center; padding: 10px; border-bottom: none; }
.nav-mobile-actions .btn { width: 100%; justify-content: center; padding: 14px; }
.nav-actions .login:hover { color: var(--text); }
.nav-burger { display: none; }

/* ---------- sections ---------- */
section { position: relative; z-index: 1; }
.section { padding: clamp(72px, 11vw, 130px) 0; }
.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head .eyebrow { display: inline-block; margin-bottom: 16px; }
.section-head .h2 { margin-bottom: 16px; }

/* ---------- hero ---------- */
.hero { padding: 148px 0 0; text-align: center; }
.hero .pill { margin-bottom: 26px; }
.hero .display { margin: 0 auto 22px; max-width: 16ch; }
.hero .lead { max-width: 620px; margin: 0 auto 34px; }
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-note { margin-top: 18px; font-size: 13.5px; color: var(--text-3); display: flex; gap: 8px; justify-content: center; align-items: center; }
.hero-note svg { width: 15px; height: 15px; color: var(--green-bright); }

/* hero product shot */
.hero-shot { margin-top: 64px; position: relative; }
.hero-shot::before {
  content: ''; position: absolute; left: 50%; top: -6%; transform: translateX(-50%);
  width: 80%; height: 70%; z-index: -1;
  background: radial-gradient(60% 60% at 50% 40%, rgba(106,91,232,0.5), transparent 70%);
  filter: blur(40px);
}
.float-card {
  position: absolute; z-index: 3;
  background: rgba(22,19,46,0.82); backdrop-filter: blur(12px);
  border: 1px solid var(--hairline-2); border-radius: 14px; padding: 14px 16px;
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.85);
}
.float-card .fc-label { font-size: 11px; color: var(--text-3); font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; }
.float-card .fc-val { font-size: 26px; font-weight: 800; letter-spacing: -0.02em; line-height: 1.1; margin-top: 2px; }
.fc-a { top: 16%; left: -3%; }
.fc-b { bottom: 16%; right: -2%; }

/* ---------- browser frame ---------- */
.browser {
  border-radius: var(--radius-lg); overflow: hidden; position: relative;
  background: var(--surface);
  border: 1px solid var(--hairline-2);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06) inset, 0 50px 120px -40px rgba(0,0,0,0.9), 0 0 0 1px rgba(0,0,0,0.5);
}
.browser-bar {
  display: flex; align-items: center; gap: 14px; padding: 13px 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0));
  border-bottom: 1px solid var(--hairline);
}
.dots { display: flex; gap: 8px; }
.dots i { width: 12px; height: 12px; border-radius: 50%; display: block; }
.dots i:nth-child(1){ background:#FF5F57; } .dots i:nth-child(2){ background:#FEBC2E; } .dots i:nth-child(3){ background:#28C840; }
.url {
  flex: 1; max-width: 420px; margin: 0 auto;
  font-family: var(--mono); font-size: 12.5px; color: var(--text-2);
  background: rgba(0,0,0,0.35); border: 1px solid var(--hairline); border-radius: 8px;
  padding: 6px 14px; text-align: center; display: flex; align-items: center; gap: 8px; justify-content: center;
}
.url svg { width: 12px; height: 12px; color: var(--green-bright); }
.browser img { width: 100%; height: auto; display: block; }
.browser.crop img { object-fit: cover; object-position: top; }

/* ---------- marquee / trust ---------- */
.trust { border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); background: rgba(255,255,255,0.012); }
.trust-inner { display: flex; align-items: center; justify-content: center; gap: clamp(28px,5vw,72px); flex-wrap: wrap; padding: 26px 0; }
.trust-label { font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-3); }
.trust-logo { font-size: 17px; font-weight: 700; color: var(--text-2); letter-spacing: -0.01em; opacity: .85; transition: opacity .2s, color .2s; }
.trust-logo:hover { opacity: 1; color: var(--text); }

/* ---------- stat strip ---------- */
.stats { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: var(--hairline); border: 1px solid var(--hairline); border-radius: var(--radius); overflow: hidden; }
.stat { background: var(--bg-2); padding: 26px 22px; text-align: center; }
.stat .n { font-size: clamp(26px, 3vw, 36px); font-weight: 900; letter-spacing: -0.03em; }
.stat .n.mono { font-family: var(--mono); font-weight: 600; }
.stat .l { font-size: 13px; color: var(--text-3); margin-top: 6px; }
.stat .n .u { color: var(--brand-bright); }

/* ---------- problem cards ---------- */
.cards-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.card {
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  border: 1px solid var(--hairline); border-radius: var(--radius); padding: 26px;
  box-shadow: var(--shadow-card); transition: transform .35s var(--ease), border-color .3s;
}
.card:hover { transform: translateY(-4px); border-color: var(--hairline-2); }
.tag-bad { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 600; color: #FCA5A0;
  background: rgba(226,87,76,0.12); border: 1px solid rgba(226,87,76,0.25); padding: 5px 11px; border-radius: 8px; margin-bottom: 16px; }
.card h3 { font-size: 18px; margin-bottom: 9px; }
.card p { font-size: 14.5px; color: var(--text-2); line-height: 1.6; }

/* ---------- how steps ---------- */
.how { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(32px,5vw,72px); align-items: center; }
.steps { display: flex; flex-direction: column; gap: 8px; }
.step { display: grid; grid-template-columns: 48px 1fr; gap: 18px; padding: 22px; border-radius: var(--radius);
  border: 1px solid transparent; transition: background .3s, border-color .3s; cursor: default; }
.step:hover, .step.active { background: var(--surface); border-color: var(--hairline); }
.step .num { width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center;
  font-family: var(--mono); font-weight: 600; font-size: 18px; color: var(--brand-bright);
  background: rgba(106,91,232,0.12); border: 1px solid rgba(106,91,232,0.3); }
.step > div { min-width: 0; }
.step h3 { font-size: 18px; margin-bottom: 6px; }
.step p { font-size: 14.5px; color: var(--text-2); line-height: 1.55; }
.step .code { display: block; margin-top: 10px; font-family: var(--mono); font-size: 12.5px;
  background: rgba(0,0,0,0.4); border: 1px solid var(--hairline); border-radius: 8px; padding: 7px 12px; color: #9ad4ff;
  max-width: 100%; overflow-x: auto; white-space: nowrap; -webkit-overflow-scrolling: touch; }
.step .code b { color: var(--brand-bright); font-weight: 500; }

/* ---------- bento features ---------- */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: minmax(0, auto); gap: 18px; }
.bento .b {
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  border: 1px solid var(--hairline); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-card); display: flex; flex-direction: column;
  transition: transform .35s var(--ease), border-color .3s;
}
.bento .b:hover { transform: translateY(-4px); border-color: var(--hairline-2); }
.b-pad { padding: 28px 28px 24px; }
.b-ico { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; margin-bottom: 16px;
  background: rgba(106,91,232,0.12); border: 1px solid rgba(106,91,232,0.28); color: var(--brand-bright); }
.b-ico svg { width: 21px; height: 21px; }
.b h3 { font-size: 19px; margin-bottom: 8px; }
.b p { font-size: 14.5px; color: var(--text-2); line-height: 1.6; }
.b-shot { margin-top: auto; padding: 0 0 0 0; position: relative; }
.b-shot img { width: 100%; display: block; border-top: 1px solid var(--hairline); }
.b-shot.inset { padding: 22px 22px 0; }
.b-shot.inset img { border-radius: 12px 12px 0 0; border: 1px solid var(--hairline); border-bottom: none;
  box-shadow: 0 -10px 40px -20px rgba(0,0,0,0.8); }

/* spans */
.col-3 { grid-column: span 3; } .col-2 { grid-column: span 2; } .col-4 { grid-column: span 4; } .col-6 { grid-column: span 6; }

.kpi-row { display: flex; gap: 26px; flex-wrap: wrap; margin-top: 18px; }
.kpi .v { font-size: 28px; font-weight: 900; letter-spacing: -0.03em; }
.kpi .v.green { color: var(--green-bright); } .kpi .v.amber { color: var(--amber-bright); }
.kpi .k { font-size: 12px; color: var(--text-3); margin-top: 2px; }

/* ---------- comparison ---------- */
.cmp-wrap { border: 1px solid var(--hairline); border-radius: var(--radius-lg); overflow: hidden; background: var(--bg-2); }
table.cmp { width: 100%; border-collapse: collapse; }
table.cmp th, table.cmp td { padding: 16px 20px; text-align: left; font-size: 14.5px; border-bottom: 1px solid var(--hairline); }
table.cmp thead th { font-size: 13px; color: var(--text-3); font-weight: 600; }
table.cmp tbody td:first-child { color: var(--text-2); }
table.cmp .col-priv { background: rgba(106,91,232,0.10); border-left: 1px solid rgba(106,91,232,0.3); border-right: 1px solid rgba(106,91,232,0.3); color: var(--text); font-weight: 600; text-align: center; }
table.cmp thead .col-priv { border-top: 1px solid rgba(106,91,232,0.3); border-top-left-radius: 0; }
table.cmp td.center { text-align: center; }
table.cmp tbody tr:last-child td { border-bottom: none; }
.priv-head { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: #fff; }
.priv-head .mark { width: 20px; height: 20px; }
.yes { color: var(--green-bright); } .no { color: var(--text-3); } .partial { color: var(--amber-bright); }
.ck { width: 19px; height: 19px; display: inline-block; vertical-align: middle; }

/* ---------- pricing ---------- */
.toggle { display: inline-flex; background: var(--surface); border: 1px solid var(--hairline); border-radius: 999px; padding: 4px; margin: 0 auto; }
.toggle button { font-family: var(--font); font-weight: 600; font-size: 14px; color: var(--text-2); background: transparent; border: none; padding: 9px 20px; border-radius: 999px; cursor: pointer; transition: color .2s; display: inline-flex; align-items: center; gap: 7px; }
.toggle button.active { background: linear-gradient(180deg, var(--brand-bright), var(--brand)); color: #fff; box-shadow: 0 8px 20px -8px rgba(106,91,232,0.7); }
.save { font-family: var(--mono); font-size: 11px; color: var(--green-bright); background: rgba(47,191,107,0.14); padding: 2px 7px; border-radius: 6px; }
.toggle button.active .save { color: #fff; background: rgba(255,255,255,0.2); }

.plans { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 48px; align-items: stretch; }
.plan { background: linear-gradient(180deg, var(--surface), var(--bg-2)); border: 1px solid var(--hairline); border-radius: var(--radius-lg); padding: 28px; display: flex; flex-direction: column; transition: transform .35s var(--ease); }
.plan:hover { transform: translateY(-4px); }
.plan.feat { border: 1px solid transparent; background:
  linear-gradient(var(--surface), var(--surface)) padding-box,
  linear-gradient(160deg, var(--brand-bright), rgba(106,91,232,0.1)) border-box;
  box-shadow: var(--glow), var(--shadow-card); position: relative; }
.plan-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); font-size: 11px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: #fff; background: linear-gradient(180deg, var(--brand-bright), var(--brand)); padding: 5px 14px; border-radius: 999px; white-space: nowrap; box-shadow: 0 8px 20px -8px rgba(106,91,232,0.8); }
.plan .pname { font-size: 14px; font-weight: 700; color: var(--text-2); letter-spacing: 0.02em; }
.plan .pprice { font-size: 42px; font-weight: 900; letter-spacing: -0.04em; margin-top: 14px; line-height: 1; }
.plan .pprice .cur { font-size: 20px; font-weight: 700; color: var(--text-2); vertical-align: top; margin-right: 2px; }
.plan .pper { font-size: 14px; color: var(--text-3); margin-top: 6px; }
.plan .pprice .psuf { font-size: 14px; font-weight: 400; color: var(--text-3); letter-spacing: normal; margin-left: 4px; }
.plan .pfeat { list-style: none; margin: 22px 0; flex: 1; display: flex; flex-direction: column; gap: 12px; }
.plan .pfeat li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--text-2); }
.plan .pfeat li svg { width: 17px; height: 17px; flex: none; color: var(--green-bright); margin-top: 2px; }
.plan .pfeat li b { color: var(--text); font-weight: 600; }

/* ---------- testimonials ---------- */
.quotes { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.quote { background: linear-gradient(180deg, var(--surface), var(--bg-2)); border: 1px solid var(--hairline); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-card); }
.quote .stars { color: var(--amber-bright); font-size: 14px; letter-spacing: 2px; margin-bottom: 14px; }
.quote p { font-size: 15px; color: var(--text); line-height: 1.65; }
.quote .who { margin-top: 18px; font-size: 13px; color: var(--text-3); display: flex; align-items: center; gap: 10px; }
.quote .who .av { width: 34px; height: 34px; border-radius: 50%; background: rgba(106,91,232,0.18); border: 1px solid rgba(106,91,232,0.3); display: grid; place-items: center; color: var(--brand-bright); }
.quote .who .av svg { width: 16px; height: 16px; }
.placeholder-note { text-align: center; font-family: var(--mono); font-size: 12px; color: var(--text-3); margin-top: 22px; }

/* report highlight band */
.report { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px,5vw,64px); align-items: center;
  background: linear-gradient(160deg, rgba(106,91,232,0.14), var(--bg-2)); border: 1px solid var(--hairline-2);
  border-radius: var(--radius-lg); padding: clamp(32px,5vw,56px); box-shadow: var(--shadow-card); overflow: hidden; }
.report ul { list-style: none; margin: 22px 0 28px; display: flex; flex-direction: column; gap: 13px; }
.report ul li { display: flex; gap: 11px; font-size: 15px; color: var(--text-2); }
.report ul li svg { width: 18px; height: 18px; color: var(--green-bright); flex: none; margin-top: 2px; }
.doc { background: #0a0814; border: 1px solid var(--hairline); border-radius: 14px; padding: 26px; font-family: var(--mono); box-shadow: 0 30px 70px -30px #000; }
.doc .doc-h { display: flex; align-items: center; justify-content: space-between; border-bottom: 1px dashed var(--hairline-2); padding-bottom: 14px; margin-bottom: 14px; }
.doc .doc-h .t { font-size: 13px; color: var(--text); font-weight: 600; }
.doc .doc-h .seal { font-size: 10px; color: var(--green-bright); border: 1px solid rgba(47,191,107,0.4); border-radius: 6px; padding: 3px 7px; }
.doc .row { display: flex; justify-content: space-between; font-size: 11.5px; padding: 5px 0; color: var(--text-3); }
.doc .row span:last-child { color: var(--text-2); }
.doc .hashline { color: #9ad4ff; word-break: break-all; }

/* ---------- faq ---------- */
.faq { max-width: 760px; margin: 0 auto; border-top: 1px solid var(--hairline); }
.faq-item { border-bottom: 1px solid var(--hairline); }
.faq-q { width: 100%; background: none; border: none; cursor: pointer; text-align: left; color: var(--text);
  font-family: var(--font); font-weight: 600; font-size: 17px; padding: 22px 4px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.faq-q .ic { width: 26px; height: 26px; flex: none; border-radius: 50%; border: 1px solid var(--hairline-2); display: grid; place-items: center; transition: transform .3s var(--ease), background .3s; position: relative; }
.faq-q .ic::before, .faq-q .ic::after { content:''; position: absolute; background: var(--text-2); border-radius: 2px; }
.faq-q .ic::before { width: 11px; height: 2px; } .faq-q .ic::after { width: 2px; height: 11px; transition: opacity .3s; }
.faq-item.open .faq-q .ic { background: var(--brand); transform: rotate(90deg); }
.faq-item.open .faq-q .ic::after { opacity: 0; }
.faq-item.open .faq-q .ic::before, .faq-item.open .faq-q .ic::after { background: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a p { font-size: 15px; color: var(--text-2); line-height: 1.7; padding: 0 4px 24px; max-width: 90%; }

/* ---------- final cta ---------- */
.cta-final { text-align: center; position: relative; }
.cta-box { position: relative; border: 1px solid var(--hairline-2); border-radius: var(--radius-lg); padding: clamp(48px,7vw,88px) 24px; overflow: hidden;
  background: radial-gradient(120% 140% at 50% 0%, rgba(106,91,232,0.28), var(--bg-2) 60%); }
.cta-box::after { content:''; position: absolute; inset: 0; background: radial-gradient(50% 60% at 50% 120%, rgba(47,191,107,0.12), transparent 70%); pointer-events: none; }
.cta-box .h2 { margin-bottom: 14px; }
.cta-box .lead { max-width: 540px; margin: 0 auto 30px; }
.cta-box .hero-cta { position: relative; z-index: 1; }

/* ---------- footer ---------- */
.footer { border-top: 1px solid var(--hairline); padding: 64px 0 40px; position: relative; z-index: 1; }
.foot-grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 40px; margin-bottom: 48px; }
.foot-brand .lead { font-size: 14px; max-width: 320px; margin-top: 16px; }
.foot-col h4 { font-size: 13px; color: var(--text-3); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px; }
.foot-col a { display: block; font-size: 14.5px; color: var(--text-2); padding: 6px 0; transition: color .2s; }
.foot-col a:hover { color: var(--text); }
.foot-bottom { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; padding-top: 26px; border-top: 1px solid var(--hairline); }
.foot-bottom p { font-size: 13px; color: var(--text-3); }
.foot-bottom .made { font-family: var(--mono); font-size: 12px; color: var(--text-3); }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; } .reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }

/* ---------- responsive ---------- */
@media (max-width: 1000px) {
  .stats { grid-template-columns: repeat(3,1fr); }
  .stats .stat:nth-child(4), .stats .stat:nth-child(5) { border-top: 1px solid var(--hairline); }
  .cards-4 { grid-template-columns: repeat(2,1fr); }
  .how { grid-template-columns: 1fr; }
  .bento .b { grid-column: span 6 !important; }
  .plans { grid-template-columns: repeat(2,1fr); }
  .quotes { grid-template-columns: 1fr; }
  .report { grid-template-columns: 1fr; }
  .fc-a, .fc-b { display: none; }
}
@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-actions { display: none; }
  .nav-toggle { display: flex; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stats .stat:nth-child(5) { grid-column: span 2; }
  .cards-4 { grid-template-columns: 1fr; }
  .plans { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .foot-brand { grid-column: span 2; }
  table.cmp { font-size: 13px; }
  table.cmp th, table.cmp td { padding: 12px 10px; }
  .cmp-scroll { overflow-x: auto; }
  table.cmp { min-width: 640px; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   LEGAL PAGES (Política de Privacidade / Termos de Uso)
   ============================================================ */
.legal-hero { padding: 132px 0 40px; position: relative; }
.legal-hero::before {
  content: ''; position: absolute; left: 50%; top: 0; transform: translateX(-50%);
  width: 90%; height: 200px; z-index: -1;
  background: radial-gradient(60% 100% at 50% 0%, rgba(106,91,232,0.22), transparent 70%); filter: blur(20px);
}
.legal-hero .eyebrow { display: inline-block; margin-bottom: 16px; }
.legal-hero h1 { font-size: clamp(34px, 5vw, 56px); font-weight: 900; letter-spacing: -0.03em; line-height: 1.02; }
.legal-hero .updated {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 20px;
  font-family: var(--mono); font-size: 12.5px; color: var(--text-2);
  background: rgba(255,255,255,0.04); border: 1px solid var(--hairline); padding: 7px 14px; border-radius: 999px;
}
.legal-hero .updated .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green-bright); box-shadow: 0 0 0 4px rgba(61,216,132,0.18); }
.legal-intro { margin-top: 26px; max-width: 760px; }
.legal-intro p { font-size: 16.5px; color: var(--text-2); line-height: 1.7; text-wrap: pretty; }

.legal-shell { display: grid; grid-template-columns: 248px 1fr; gap: clamp(32px, 5vw, 72px); padding: 24px 0 40px; align-items: start; }

/* sticky table of contents */
.toc { position: sticky; top: 96px; min-width: 0; }
.toc h4 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-3); margin-bottom: 14px; padding-left: 14px; }
.toc nav { display: flex; flex-direction: column; gap: 1px; border-left: 1px solid var(--hairline); }
.toc a { font-size: 13.5px; color: var(--text-3); padding: 7px 14px; border-left: 2px solid transparent; margin-left: -1px; transition: color .2s, border-color .2s; line-height: 1.35; }
.toc a:hover { color: var(--text-2); }
.toc a.active { color: var(--text); border-left-color: var(--brand-bright); }

/* content */
.legal-content { max-width: 760px; min-width: 0; }
.legal-content section { scroll-margin-top: 96px; padding: 0 0 38px; }
.legal-content section + section { border-top: 1px solid var(--hairline); padding-top: 38px; }
.legal-content h2 {
  font-size: clamp(22px, 2.6vw, 28px); font-weight: 700; letter-spacing: -0.02em; margin-bottom: 18px;
  display: flex; gap: 14px; align-items: baseline;
}
.legal-content h2 .nseq { font-family: var(--mono); font-size: 15px; font-weight: 500; color: var(--brand-bright); flex: none; }
.legal-content h3 { font-size: 17px; font-weight: 700; color: var(--text); margin: 24px 0 10px; }
.legal-content p { font-size: 15.5px; color: var(--text-2); line-height: 1.72; margin-bottom: 14px; text-wrap: pretty; }
.legal-content p:last-child { margin-bottom: 0; }
.legal-content a.inline { color: var(--brand-bright); }
.legal-content a.inline:hover { text-decoration: underline; }
.legal-content strong { color: var(--text); font-weight: 700; }
.legal-content ul { list-style: none; margin: 0 0 16px; display: flex; flex-direction: column; gap: 11px; }
.legal-content ul li { position: relative; padding-left: 26px; font-size: 15.5px; color: var(--text-2); line-height: 1.65; }
.legal-content ul li::before { content: ''; position: absolute; left: 4px; top: 9px; width: 6px; height: 6px; border-radius: 50%; background: var(--brand-bright); opacity: .8; }
.legal-content ol { margin: 0 0 16px; padding-left: 20px; display: flex; flex-direction: column; gap: 10px; }
.legal-content ol li { font-size: 15.5px; color: var(--text-2); line-height: 1.65; padding-left: 6px; }

/* callout / important note */
.callout {
  border: 1px solid rgba(106,91,232,0.3); background: rgba(106,91,232,0.08);
  border-radius: 14px; padding: 18px 20px; margin: 4px 0 18px; display: flex; gap: 13px;
}
.callout svg { width: 20px; height: 20px; color: var(--brand-bright); flex: none; margin-top: 1px; }
.callout p { font-size: 15px; color: var(--text); margin: 0; }

/* legalese / uppercase clause */
.clause-strong { font-size: 14px !important; color: var(--text-2) !important; letter-spacing: 0.01em; background: rgba(255,255,255,0.03); border: 1px solid var(--hairline); border-radius: 12px; padding: 16px 18px; }

/* table */
.legal-table-wrap { border: 1px solid var(--hairline); border-radius: 14px; overflow: hidden; margin: 6px 0 16px; }
.legal-table-scroll { overflow-x: auto; }
table.legal-table { width: 100%; border-collapse: collapse; min-width: 480px; }
table.legal-table th, table.legal-table td { text-align: left; padding: 13px 18px; font-size: 14px; border-bottom: 1px solid var(--hairline); }
table.legal-table thead th { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-3); font-weight: 500; background: rgba(255,255,255,0.02); }
table.legal-table td:first-child { color: var(--text); font-weight: 600; }
table.legal-table tbody tr:last-child td { border-bottom: none; }
table.legal-table .tag-need { font-family: var(--mono); font-size: 11px; color: var(--green-bright); background: rgba(47,191,107,0.12); border: 1px solid rgba(47,191,107,0.3); padding: 3px 9px; border-radius: 6px; white-space: nowrap; }

/* contact card */
.contact-card { background: linear-gradient(160deg, rgba(106,91,232,0.14), var(--bg-2)); border: 1px solid var(--hairline-2); border-radius: 18px; padding: 26px 28px; margin-top: 4px; }
.contact-card .rows { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 32px; }
.contact-card .row .k { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-3); margin-bottom: 4px; }
.contact-card .row .v { font-size: 15px; color: var(--text); }
.contact-card .row .v a { color: var(--brand-bright); }
.legal-foot-note { margin-top: 26px; font-family: var(--mono); font-size: 12.5px; color: var(--text-3); }

/* back-to-top + page switch links */
.legal-switch { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.legal-switch a { font-size: 14px; color: var(--text-2); display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px; border: 1px solid var(--hairline); border-radius: 10px; transition: border-color .2s, color .2s, background .2s; }
.legal-switch a:hover { color: var(--text); border-color: var(--hairline-2); background: rgba(255,255,255,0.03); }
.legal-switch a svg { width: 15px; height: 15px; }

@media (max-width: 900px) {
  .legal-shell { grid-template-columns: 1fr; gap: 28px; }
  .toc { position: relative; top: 0; }
  .toc nav { flex-flow: row wrap; border-left: none; gap: 8px; }
  .toc a { border: 1px solid var(--hairline); border-radius: 999px; padding: 6px 13px; margin-left: 0; }
  .toc a.active { border-color: var(--brand-bright); border-left-color: var(--brand-bright); }
  .contact-card .rows { grid-template-columns: 1fr; }
}

/* ============================================================
   SUPPORT / CONTACT FORM
   ============================================================ */
.support-shell {
  display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(32px, 5vw, 64px);
  align-items: start; padding: 16px 0 48px;
}

/* left rail — support channels / expectations */
.support-aside { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 14px; min-width: 0; }
.support-info { display: flex; gap: 14px; padding: 20px; border: 1px solid var(--hairline);
  border-radius: var(--radius); background: linear-gradient(180deg, var(--surface), var(--bg-2)); box-shadow: var(--shadow-card); }
.support-info .si-ico { width: 42px; height: 42px; flex: none; border-radius: 12px; display: grid; place-items: center;
  background: rgba(106,91,232,0.12); border: 1px solid rgba(106,91,232,0.28); color: var(--brand-bright); }
.support-info .si-ico svg { width: 20px; height: 20px; }
.support-info h3 { font-size: 15.5px; margin-bottom: 4px; }
.support-info p { font-size: 13.5px; color: var(--text-2); line-height: 1.55; }
.support-info p a { color: var(--brand-bright); }

/* form card */
.form-card {
  min-width: 0;
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  border: 1px solid var(--hairline-2); border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px); box-shadow: var(--shadow-card); position: relative; overflow: hidden;
}
.form-card::before {
  content: ''; position: absolute; left: 0; top: 0; right: 0; height: 200px; pointer-events: none;
  background: radial-gradient(80% 100% at 50% 0%, rgba(106,91,232,0.12), transparent 70%);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 20px; position: relative; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: span 2; }
.field label { font-size: 13px; font-weight: 600; color: var(--text-2); letter-spacing: 0.01em; }
.field label .req { color: var(--brand-bright); margin-left: 2px; }
.field input, .field textarea {
  font-family: var(--font); font-size: 15px; color: var(--text);
  background: rgba(0,0,0,0.32); border: 1px solid var(--hairline-2); border-radius: 12px;
  padding: 13px 15px; width: 100%; transition: border-color .2s, box-shadow .2s, background .2s;
  -webkit-appearance: none; appearance: none;
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-3); }
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--brand-bright); background: rgba(0,0,0,0.45);
  box-shadow: 0 0 0 4px rgba(124,108,255,0.16);
}
.field textarea { resize: vertical; min-height: 138px; line-height: 1.6; }
.field.hp { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

.form-submit { grid-column: span 2; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 4px; }
.form-submit .btn { min-width: 180px; justify-content: center; }
.form-submit .btn[disabled] { opacity: .6; cursor: progress; transform: none; }
.form-note { font-size: 12.5px; color: var(--text-3); display: inline-flex; align-items: center; gap: 7px; }
.form-note svg { width: 14px; height: 14px; color: var(--green-bright); flex: none; }

.form-error {
  grid-column: span 2; display: none; align-items: center; gap: 10px; margin-top: 2px;
  font-size: 13.5px; color: #FCA5A0; background: rgba(226,87,76,0.10);
  border: 1px solid rgba(226,87,76,0.28); border-radius: 10px; padding: 11px 14px;
}
.form-error.show { display: flex; }
.form-error svg { width: 16px; height: 16px; flex: none; }

/* spinner */
.spin { width: 16px; height: 16px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.35); border-top-color: #fff; animation: spin .7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* success state */
.form-success { display: none; flex-direction: column; align-items: center; text-align: center; padding: clamp(28px, 4vw, 44px) 8px; animation: successIn .55s var(--ease) both; }
.form-card.sent .form-grid { display: none; }
.form-card.sent .form-success { display: flex; }
.success-mark { width: 76px; height: 76px; border-radius: 50%; display: grid; place-items: center; margin-bottom: 22px;
  background: rgba(47,191,107,0.12); border: 1px solid rgba(47,191,107,0.4); box-shadow: 0 0 0 8px rgba(47,191,107,0.06), 0 0 60px -10px rgba(47,191,107,0.5); }
.success-mark svg { width: 36px; height: 36px; color: var(--green-bright); }
.form-success h2 { font-size: clamp(24px, 3vw, 30px); margin-bottom: 12px; }
.form-success p { font-size: 16px; color: var(--text-2); line-height: 1.65; max-width: 440px; margin: 0 auto 26px; text-wrap: pretty; }
@keyframes successIn { from { opacity: 0; transform: translateY(16px) scale(.98); } to { opacity: 1; transform: none; } }

@media (max-width: 900px) {
  .support-shell { grid-template-columns: 1fr; gap: 28px; }
  .support-aside { position: relative; top: 0; flex-flow: row wrap; }
  .support-info { flex: 1 1 240px; }
}
@media (max-width: 560px) {
  .form-grid { grid-template-columns: 1fr; }
  .field.full, .form-submit, .form-error { grid-column: span 1; }
  .support-aside { flex-direction: column; }
}

/* ============================================================
   DOCS + INSTALL GUIDE
   ============================================================ */
/* screenshot figure (wraps .browser frame) */
.figure { margin: 10px 0 6px; }
.figure .cap { margin-top: 13px; font-size: 12.5px; color: var(--text-3); font-family: var(--mono); text-wrap: pretty; }
.browser.doc-shot img { border-bottom-left-radius: var(--radius-lg); border-bottom-right-radius: var(--radius-lg); }

/* segmented method tabs */
.seg { display: inline-flex; background: var(--surface); border: 1px solid var(--hairline); border-radius: 13px; padding: 4px; gap: 4px; flex-wrap: wrap; }
.seg button { font-family: var(--font); font-weight: 600; font-size: 14px; color: var(--text-2); background: transparent; border: none; padding: 11px 20px; border-radius: 9px; cursor: pointer; transition: color .2s, background .2s; display: inline-flex; align-items: center; gap: 9px; }
.seg button svg { width: 16px; height: 16px; }
.seg button.active { background: linear-gradient(180deg, var(--brand-bright), var(--brand)); color: #fff; box-shadow: 0 8px 20px -8px rgba(106,91,232,.6); }

.panel { display: none; }
.panel.active { display: block; animation: panelIn .4s var(--ease); }
@keyframes panelIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* code block */
.code-wrap { background: #0a0814; border: 1px solid var(--hairline-2); border-radius: 14px; overflow: hidden; box-shadow: 0 20px 50px -30px #000; }
.code-head { display: flex; align-items: center; justify-content: space-between; padding: 11px 16px; border-bottom: 1px solid var(--hairline); background: rgba(255,255,255,.02); }
.code-head .lang { font-family: var(--mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-3); }
.code-copy { font-family: var(--font); font-weight: 600; font-size: 12.5px; color: var(--brand-bright); background: rgba(106,91,232,.12); border: 1px solid rgba(106,91,232,.3); border-radius: 8px; padding: 6px 12px; cursor: pointer; display: inline-flex; gap: 7px; align-items: center; transition: background .2s; }
.code-copy svg { width: 14px; height: 14px; }
.code-copy:hover { background: rgba(106,91,232,.2); }
.code-copy.ok { color: var(--green-bright); border-color: rgba(47,191,107,.4); background: rgba(47,191,107,.12); }
.code-wrap pre { margin: 0; padding: 18px 20px; overflow-x: auto; }
.code-wrap code { font-family: var(--mono); font-size: 13.5px; line-height: 1.75; color: #cdd6f4; white-space: pre; }
.tok-tag { color: #9ad4ff; } .tok-attr { color: var(--brand-bright); } .tok-str { color: var(--green-bright); } .tok-com { color: var(--text-3); }

/* "included" checklist */
.incl { list-style: none; display: flex; flex-direction: column; gap: 11px; margin: 4px 0; }
.incl li { display: flex; gap: 11px; font-size: 14.5px; color: var(--text-2); align-items: flex-start; }
.incl li svg { width: 18px; height: 18px; flex: none; color: var(--green-bright); margin-top: 2px; }

/* numbered steps */
.nsteps { list-style: none; counter-reset: s; display: flex; flex-direction: column; gap: 16px; margin: 8px 0; }
.nsteps li { display: grid; grid-template-columns: 40px 1fr; gap: 16px; align-items: start; }
.nsteps li .sn { counter-increment: s; width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; font-family: var(--mono); font-weight: 600; font-size: 15px; color: var(--brand-bright); background: rgba(106,91,232,.12); border: 1px solid rgba(106,91,232,.3); }
.nsteps li .sn::before { content: counter(s, decimal-leading-zero); }
.nsteps li h4 { font-size: 16px; margin-bottom: 4px; }
.nsteps li p { font-size: 14.5px; color: var(--text-2); line-height: 1.6; }
.nsteps li p code, p code.ic { font-family: var(--mono); font-size: 12.5px; color: #9ad4ff; background: rgba(0,0,0,.35); border: 1px solid var(--hairline); border-radius: 6px; padding: 2px 7px; }

/* verification stepper */
.verif { display: grid; grid-template-columns: repeat(3, 1fr); margin: 20px 0 4px; }
.verif .node { text-align: center; position: relative; padding: 0 10px; }
.verif .node::before { content: ''; position: absolute; top: 19px; right: 50%; width: 100%; height: 2px; background: rgba(47,191,107,.4); z-index: 0; }
.verif .node:first-child::before { display: none; }
.verif .node .vd { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; margin: 0 auto 12px; position: relative; z-index: 1; background: var(--green); color: #fff; box-shadow: 0 0 0 6px rgba(47,191,107,.12); }
.verif .node .vd svg { width: 19px; height: 19px; }
.verif .node .t { font-size: 14px; font-weight: 600; }
.verif .node .d { font-size: 12.5px; color: var(--text-3); margin-top: 4px; }

/* monitoring card */
.mon { display: flex; gap: 15px; align-items: flex-start; border: 1px solid var(--hairline-2); background: linear-gradient(160deg, rgba(106,91,232,.12), var(--bg-2)); border-radius: 16px; padding: 20px 22px; }
.mon .mi { width: 44px; height: 44px; border-radius: 12px; flex: none; display: grid; place-items: center; background: rgba(106,91,232,.14); border: 1px solid rgba(106,91,232,.3); color: var(--brand-bright); }
.mon .mi svg { width: 21px; height: 21px; }
.mon h4 { font-size: 15.5px; margin-bottom: 5px; }
.mon p { font-size: 14px; color: var(--text-2); line-height: 1.6; }

/* doc hub cards */
.doc-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 6px; }
.doc-card { display: block; background: linear-gradient(180deg, var(--surface), var(--bg-2)); border: 1px solid var(--hairline); border-radius: var(--radius); padding: 22px; transition: transform .3s var(--ease), border-color .3s; }
.doc-card:hover { transform: translateY(-4px); border-color: var(--hairline-2); }
.doc-card .di { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; margin-bottom: 14px; background: rgba(106,91,232,.12); border: 1px solid rgba(106,91,232,.28); color: var(--brand-bright); }
.doc-card .di svg { width: 20px; height: 20px; }
.doc-card h3 { font-size: 16px; margin-bottom: 6px; }
.doc-card p { font-size: 13.5px; color: var(--text-2); line-height: 1.55; }
.doc-card .more { display: inline-flex; align-items: center; gap: 6px; margin-top: 12px; font-size: 13px; font-weight: 600; color: var(--brand-bright); }
.doc-card .more svg { width: 14px; height: 14px; }

@media (max-width: 900px) {
  .doc-cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .doc-cards { grid-template-columns: 1fr; }
  .verif { grid-template-columns: 1fr; gap: 18px; }
  .verif .node::before { display: none; }
}
