/* klink.cloud Trust Center.
   Its own stylesheet rather than the marketing design system: this is a separate
   service, and site/assets/klink.css is 69 KB of marketing components none of
   which appear here. The brand tokens are copied so the two cannot look like
   different companies, but nothing else is shared. */

:root{
  --ink:#0A0E27; --ink-2:#2C3357; --muted:#5A6488; --faint:#8A93B2;
  --line:#E6E9F2; --line-soft:#EEF1F8; --surface:#F7F8FC; --white:#fff;
  --brand:#283182; --brand-2:#4F5FE8; --violet:#7859F8; --cyan:#22C7EE;
  --ok:#15A66A; --warn:#B7791F;
  --shadow-sm:0 1px 2px rgba(10,14,39,.06),0 1px 3px rgba(10,14,39,.05);
  --shadow-md:0 8px 24px -10px rgba(10,14,39,.18);
  --r:12px; --r-lg:16px; --maxw:1180px;
}
*{box-sizing:border-box}
html{-webkit-text-size-adjust:100%; scroll-behavior:smooth}
body{margin:0; background:var(--white); color:var(--ink);
  font-family:Inter,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  font-size:15.5px; line-height:1.6; -webkit-font-smoothing:antialiased}
img{max-width:100%; height:auto; display:block}
a{color:var(--brand-2); text-decoration:none}
a:hover{text-decoration:underline}
button{font:inherit; cursor:pointer}

/* padding-inline, not the padding shorthand: the shorthand also zeroes the
   vertical padding that sections set, which has already shipped a broken page
   once on the marketing site. */
.wrap{max-width:var(--maxw); margin:0 auto; padding-inline:24px}

h1,h2,h3,h4{font-family:"Plus Jakarta Sans",Inter,sans-serif; margin:0;
  letter-spacing:-.022em; line-height:1.15; font-weight:700}
h1{font-size:clamp(2rem,4vw,2.7rem); font-weight:800; letter-spacing:-.03em}
h2{font-size:1.05rem; font-weight:700}
h3{font-size:.98rem; font-weight:650}
p{margin:0}

.skip{position:absolute; left:-9999px}
.skip:focus{left:12px; top:12px; z-index:200; background:#fff; padding:10px 14px;
  border-radius:8px; box-shadow:var(--shadow-md)}

/* ---------- top bar ---------- */
/* Opaque, not translucent. A see-through sticky bar lets the rows underneath
   ghost through it while scrolling, which shipped once already. */
.topbar{position:sticky; top:0; z-index:60; background:var(--white);
  border-bottom:1px solid var(--line-soft)}
.topbar-in{display:flex; align-items:center; gap:12px; height:60px}
.topbar-logo{height:26px; width:auto; border-radius:6px}
.topbar-name{font-family:"Plus Jakarta Sans",sans-serif; font-weight:800;
  font-size:16px; letter-spacing:-.02em; color:var(--ink)}
.topbar-sep{width:1px; height:20px; background:var(--line); margin-inline:4px}
.topbar-label{color:var(--muted); font-size:14.5px}
.topbar-cta{margin-left:auto}

.btn{display:inline-flex; align-items:center; gap:8px; border:0; border-radius:9px;
  padding:9px 16px; font-size:14.5px; font-weight:600; background:var(--brand-2);
  color:#fff; text-decoration:none; transition:background .15s, transform .15s}
.btn:hover{background:var(--brand); text-decoration:none; transform:translateY(-1px)}
.btn-ghost{background:rgba(255,255,255,.12); color:#fff;
  border:1px solid rgba(255,255,255,.28); backdrop-filter:blur(6px)}
.btn-ghost:hover{background:rgba(255,255,255,.2)}
.btn-quiet{background:var(--surface); color:var(--ink-2); border:1px solid var(--line)}
.btn-quiet:hover{background:var(--line-soft)}

/* ---------- hero ---------- */
.hero{position:relative; overflow:hidden; background:#070B1F; color:#fff;
  padding-block:64px 60px}
/* The glow is a pseudo-element rather than a gradient on the section so the
   text sits above it at full contrast regardless of where it lands. */
.hero::after{content:""; position:absolute; inset:0; pointer-events:none;
  background:
    radial-gradient(760px 380px at 78% 116%, rgba(79,95,232,.62), transparent 68%),
    radial-gradient(520px 300px at 96% 94%, rgba(34,199,238,.28), transparent 70%),
    radial-gradient(600px 340px at 12% -12%, rgba(120,89,248,.24), transparent 66%)}
.hero-in{position:relative; z-index:1; max-width:760px; margin-right:auto}
.hero h1{margin-bottom:16px}
.hero p{color:rgba(255,255,255,.76); font-size:16.5px; max-width:640px}
.hero-links{display:flex; flex-wrap:wrap; gap:22px; margin-top:26px}
.hero-links a{display:inline-flex; align-items:center; gap:8px;
  color:rgba(255,255,255,.9); font-size:14.5px; text-decoration:underline;
  text-underline-offset:3px; text-decoration-color:rgba(255,255,255,.35)}
.hero-links a:hover{color:#fff; text-decoration-color:#fff}
.hero-links svg{width:15px; height:15px; flex:none; opacity:.8}

/* ---------- tabs ---------- */
.tabs{border-bottom:1px solid var(--line); background:var(--white);
  position:sticky; top:60px; z-index:50}
.tabs-in{display:flex; gap:26px; overflow-x:auto; scrollbar-width:none}
.tabs-in::-webkit-scrollbar{display:none}
.tabs a{padding:14px 0; font-size:14.5px; font-weight:600; color:var(--muted);
  border-bottom:2px solid transparent; margin-bottom:-1px; white-space:nowrap;
  text-decoration:none}
.tabs a:hover{color:var(--ink); text-decoration:none}
.tabs a.on{color:var(--ink); border-bottom-color:var(--brand-2)}

/* ---------- layout ---------- */
main{padding-block:34px 72px}
.card{background:var(--white); border:1px solid var(--line); border-radius:var(--r-lg);
  box-shadow:var(--shadow-sm)}
.card-pad{padding:22px 24px}
.overview{margin-bottom:34px}
.overview p + p{margin-top:14px}
.overview p{color:var(--ink-2); font-size:15.5px}

.cols{display:grid; grid-template-columns:1fr; gap:34px; align-items:start}
@media (min-width:1000px){ .cols{grid-template-columns:330px 1fr; gap:36px} }

.sec{scroll-margin-top:132px}
.sec + .sec{margin-top:32px}
.sec-head{display:flex; align-items:center; gap:12px; margin-bottom:13px}
.sec-head h2{flex:none}
.sec-head .more{margin-left:auto; font-size:13.5px; font-weight:600}

.pill{display:inline-flex; align-items:center; gap:6px; font-size:12px; font-weight:600;
  padding:3px 9px; border-radius:999px; background:rgba(21,166,106,.1); color:var(--ok)}
.pill svg{width:12px; height:12px}
.pill-warn{background:rgba(183,121,31,.12); color:var(--warn)}

/* ---------- compliance badges ---------- */
.frameworks{list-style:none; margin:0; padding:0}
.frameworks li{display:flex; gap:13px; align-items:flex-start; padding:15px 20px}
.frameworks li + li{border-top:1px solid var(--line-soft)}
.fw-mark{flex:none; width:42px; height:42px; border-radius:50%; display:grid;
  place-items:center; background:var(--surface); border:1px solid var(--line);
  font-family:"Plus Jakarta Sans",sans-serif; font-size:9.5px; font-weight:800;
  color:var(--brand); text-align:center; line-height:1.1; letter-spacing:-.02em}
.fw-body{min-width:0; flex:1}
.fw-name{font-weight:650; font-size:14.5px; color:var(--ink)}
.fw-meta{font-size:12.5px; color:var(--faint); margin-top:2px}
.fw-sum{font-size:13px; color:var(--muted); margin-top:5px}

/* ---------- documents ---------- */
.docs{list-style:none; margin:0; padding:0}
.docs li{display:flex; gap:11px; align-items:center; padding:12px 20px}
.docs li + li{border-top:1px solid var(--line-soft)}
.doc-t{flex:1; min-width:0; font-size:14px; line-height:1.4}
.doc-t small{display:block; color:var(--faint); font-size:12.5px; margin-top:2px}
.doc-ic{flex:none; width:15px; height:15px; color:var(--faint)}
.doc-open{color:var(--brand-2)}

/* ---------- controls ---------- */
.ctrl-grid{display:grid; grid-template-columns:1fr; gap:16px}
@media (min-width:700px){ .ctrl-grid{grid-template-columns:1fr 1fr} }
.ctrl-card{padding:18px 20px}
.ctrl-card h3{margin-bottom:12px; font-size:14.5px}
.ctrl-list{list-style:none; margin:0; padding:0}
.ctrl-list li{display:flex; gap:9px; align-items:flex-start; padding:5px 0;
  font-size:13.6px; color:var(--ink-2); line-height:1.45}
.tick{flex:none; width:16px; height:16px; margin-top:1px; color:var(--ok)}
/* A details/summary disclosure rather than script: the remaining controls are
   real content and must be in the HTML for a reviewer who prints the page. */
.ctrl-card details{margin-top:4px}
.ctrl-card summary{list-style:none; cursor:pointer; font-size:13.2px; font-weight:600;
  color:var(--brand-2); padding-top:7px}
.ctrl-card summary::-webkit-details-marker{display:none}
.ctrl-card summary:hover{text-decoration:underline}
.ctrl-card details[open] summary{color:var(--muted)}

/* ---------- subprocessors ---------- */
.subs{width:100%; border-collapse:collapse; font-size:13.6px}
.subs th,.subs td{text-align:left; padding:11px 20px; vertical-align:top}
.subs thead th{font-size:11.5px; text-transform:uppercase; letter-spacing:.06em;
  color:var(--faint); font-weight:700; border-bottom:1px solid var(--line)}
.subs tbody tr + tr td{border-top:1px solid var(--line-soft)}
.subs td:first-child{font-weight:600; color:var(--ink)}
.table-scroll{overflow-x:auto}

/* ---------- request form ---------- */
.form-page{max-width:620px; margin-inline:auto}
.field{margin-bottom:16px}
.field label{display:block; font-size:13.5px; font-weight:600; margin-bottom:6px}
.field input,.field textarea,.field select{width:100%; padding:10px 13px; font:inherit;
  font-size:14.5px; border:1px solid var(--line); border-radius:9px; background:var(--white);
  color:var(--ink)}
.field input:focus,.field textarea:focus{outline:2px solid var(--brand-2); outline-offset:-1px;
  border-color:var(--brand-2)}
.field textarea{min-height:96px; resize:vertical}
.hint{font-size:12.5px; color:var(--faint); margin-top:5px}
.checks{display:grid; gap:8px; margin-top:8px}
.check{display:flex; gap:9px; align-items:flex-start; font-size:14px; color:var(--ink-2)}
.check input{width:auto; margin-top:3px; flex:none}
.err{background:#FEF2F2; border:1px solid #FECACA; color:#991B1B; padding:11px 14px;
  border-radius:9px; font-size:14px; margin-bottom:18px}
.note{background:var(--surface); border:1px solid var(--line); border-radius:var(--r);
  padding:14px 16px; font-size:13.5px; color:var(--muted); margin-bottom:20px}

/* ---------- footer ---------- */
.foot{border-top:1px solid var(--line); padding-block:26px; color:var(--faint);
  font-size:13px}
.foot-in{display:flex; flex-wrap:wrap; gap:8px 20px; align-items:center}
.foot a{color:var(--muted)}
.foot .sp{margin-left:auto}

/* ---------- narrow screens ---------- */
/* The top bar is one non-wrapping flex row, so its intrinsic width sets the
   floor for the whole document: at 390px the logo, name, "Trust Center" label
   and the button together came to about 407px and pushed the body into a
   horizontal scroll. The label is the part a phone can lose, since the page it
   sits on is the Trust Center. */
@media (max-width:560px){
  .topbar-sep,.topbar-label{display:none}
  .topbar-cta{padding:8px 13px; font-size:14px}
  .hero{padding-block:44px 40px}
  .hero-links{gap:14px 20px}
  .frameworks li,.docs li{padding-inline:16px}
  .subs th,.subs td{padding-inline:16px}
}

/* ---------- tab pages ---------- */
.page-head{display:flex; align-items:center; gap:12px; flex-wrap:wrap; margin-bottom:6px}
.page-head h2{font-size:1.45rem}
.page-actions{margin-left:auto; display:flex; align-items:center; gap:10px}
.search{padding:8px 13px; font:inherit; font-size:14px; border:1px solid var(--line);
  border-radius:9px; min-width:220px; background:var(--white); color:var(--ink)}
.search:focus{outline:2px solid var(--brand-2); outline-offset:-1px; border-color:var(--brand-2)}

/* resources */
.res-cat{font-size:12px; text-transform:uppercase; letter-spacing:.07em; color:var(--faint);
  font-weight:700; margin-bottom:9px}
.res-list{overflow:hidden}
.res-row{display:flex; gap:16px; align-items:center; padding:15px 20px}
.res-row + .res-row{border-top:1px solid var(--line-soft)}
.res-main{flex:1; min-width:0}
.res-title{display:flex; align-items:center; gap:9px; flex-wrap:wrap;
  font-size:14.6px; font-weight:600; color:var(--ink)}
.res-desc{font-size:13.2px; color:var(--muted); margin-top:3px}
.res-cta{flex:none; white-space:nowrap}
.res-cta svg{width:14px; height:14px}
.chip{display:inline-flex; align-items:center; gap:5px; background:var(--surface);
  border:1px solid var(--line); border-radius:7px; padding:3px 8px; font-size:11.5px;
  font-weight:600; color:var(--muted)}
.chip:hover{background:var(--line-soft); color:var(--ink)}
.chip svg{width:11px; height:11px}

/* controls */
.ctrl-page{display:grid; grid-template-columns:1fr; gap:24px; align-items:start}
@media (min-width:900px){ .ctrl-page{grid-template-columns:216px 1fr; gap:32px} }
.ctrl-rail{display:flex; flex-wrap:wrap; gap:6px}
@media (min-width:900px){
  .ctrl-rail{position:sticky; top:132px; flex-direction:column; flex-wrap:nowrap; gap:1px}
}
.ctrl-rail a{display:flex; align-items:center; gap:8px; padding:8px 11px; border-radius:8px;
  font-size:13.6px; font-weight:600; color:var(--muted)}
.ctrl-rail a:hover{background:var(--surface); color:var(--ink); text-decoration:none}
.ctrl-rail a span{margin-left:auto; font-size:11.5px; font-weight:700; color:var(--faint);
  background:var(--surface); border:1px solid var(--line); border-radius:999px; padding:0 6px}
.ctrl-h{font-size:1.02rem; margin-bottom:10px}
.ctrl-table{width:100%; border-collapse:collapse; font-size:14px}
.ctrl-table thead th{text-align:left; padding:10px 20px; font-size:11.5px; font-weight:700;
  text-transform:uppercase; letter-spacing:.06em; color:var(--faint);
  border-bottom:1px solid var(--line)}
.ctrl-table td{padding:13px 20px; vertical-align:top}
.ctrl-table tbody tr + tr td{border-top:1px solid var(--line-soft)}
.ctrl-table .st{width:74px; text-align:right; white-space:nowrap}
.ctrl-table thead .st{text-align:right}
.ct-name{font-weight:600; color:var(--ink)}
.ct-desc{font-size:13.2px; color:var(--muted); margin-top:3px; max-width:70ch}
.ctrl-table .tick{width:18px; height:18px; display:inline-block; margin-top:0; color:var(--ok)}
.sr{position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap}
.ctrl-more{margin-top:8px; font-size:13.2px}
.ctrl-card h3 a{color:inherit}
.ctrl-card h3 a:hover{color:var(--brand-2)}

/* ---------- tooltip ---------- */
/* CSS only, and focusable, so it works without script and on a keyboard. It is
   not the only place the information lives: the same explanation is in the page
   text, because a tooltip is unreachable on a touch screen. */
.has-tip{position:relative; cursor:help}
.tip{position:absolute; top:calc(100% + 8px); left:0; z-index:70; width:270px;
  background:var(--ink); color:#fff; border-radius:10px; padding:10px 12px;
  font-size:12.5px; font-weight:400; line-height:1.5; letter-spacing:0;
  box-shadow:var(--shadow-md); opacity:0; visibility:hidden; transform:translateY(-4px);
  transition:opacity .15s, transform .15s, visibility .15s; pointer-events:none}
.has-tip:hover .tip,.has-tip:focus .tip,.has-tip:focus-visible .tip{
  opacity:1; visibility:visible; transform:translateY(0)}
@media (max-width:560px){ .tip{width:min(270px,74vw)} }

/* ---------- data residency ---------- */
.pill-quiet{background:var(--surface); color:var(--muted); border:1px solid var(--line)}
.region-list{overflow:hidden}
.region{padding:14px 20px}
.region + .region{border-top:1px solid var(--line-soft)}
.region-head{display:flex; align-items:baseline; gap:9px; flex-wrap:wrap}
.region-name{font-weight:650; font-size:14.5px; color:var(--ink)}
.region-prov{font-size:11.5px; font-weight:600; color:var(--muted); background:var(--surface);
  border:1px solid var(--line); border-radius:999px; padding:1px 8px}
.region-sum{font-size:13.2px; color:var(--muted); margin-top:5px}
.region-suits{font-size:12.4px; color:var(--faint); margin-top:4px}
.sub-note{display:block; font-size:12.4px; color:var(--faint); margin-top:3px}

@media print{
  .topbar,.tabs,.hero-links,.btn{display:none}
  .hero{background:none; color:var(--ink); padding-block:20px}
  .hero::after{display:none}
  .hero p{color:var(--muted)}
  .ctrl-card details{display:block}
  .card{box-shadow:none}
}
