*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
  --bg:#0a0e13;
  --bg2:#0f1419;
  --bg3:#141920;
  --bg4:#1a1f2e;
  --sky:#ff9900;
  --sky2:#ffb84d;
  --sky3:#e68900;
  --sky4:#2a1a00;
  --text:#E4EEF8;
  --text2:#8AAEC8;
  --text3:#506070;
  --border:#1E3050;
  --border2:#2A4060;
  --green:#3DCC8E;
  --red:#E85A5A;
  --nav-h:68px;
  --silk:cubic-bezier(0.16,1,0.3,1);
  --silk-fast:cubic-bezier(0.25,1,0.4,1);
  --max-w:1280px;
  --font-sans:system-ui,-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;
  --font-display:system-ui,-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;
}
html{scroll-behavior:smooth}
body{
  background:var(--bg);
  color:var(--text);
  font-family:var(--font-sans);
  font-size:16px;
  line-height:1.6;
  overflow-x:hidden;
}
.skip-link{
  position:fixed;
  left:-9999px;
  top:0.75rem;
  z-index:100000;
  padding:0.625rem 1rem;
  background:var(--bg3);
  color:var(--text);
  font-family:var(--font-sans);
  font-size:14px;
  font-weight:600;
  text-decoration:none;
  border:1px solid var(--border2);
  border-radius:8px;
  white-space:nowrap;
}
.skip-link:focus{
  left:0.75rem;
  outline:2px solid var(--sky);
  outline-offset:2px;
}

.ticker{
  background:var(--bg2);
  border-bottom:1px solid var(--border);
  height:36px;
  overflow:hidden;
  display:flex;
  align-items:center;
  width:100%;
  max-width:100%;
}
.ticker:hover .ticker-track{animation-play-state:paused}
.ticker-track{
  display:flex;
  gap:0;
  animation:ticker-scroll 30s linear infinite;
  white-space:nowrap;
  will-change:transform;
  flex-shrink:0;
}
.ticker-item{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:0 28px;
  font-size:12px;
  font-weight:500;
  letter-spacing:.04em;
  border-right:1px solid var(--border);
}
.ticker-sym{color:var(--text2)}
.ticker-price{color:var(--text)}
.ticker-up{color:var(--green)}
.ticker-dn{color:var(--red)}
@keyframes ticker-scroll{from{transform:translateX(0)}to{transform:translateX(-50%)}}
@keyframes silk-in{from{opacity:0;transform:translateY(24px)}to{opacity:1;transform:translateY(0)}}
@keyframes silk-in-left{from{opacity:0;transform:translateX(-20px)}to{opacity:1;transform:translateX(0)}}
@keyframes silk-in-right{from{opacity:0;transform:translateX(20px)}to{opacity:1;transform:translateX(0)}}
.silk-reveal{opacity:0}
.silk-reveal.visible{animation:silk-in .9s var(--silk) forwards}
.silk-reveal-left{opacity:0}
.silk-reveal-left.visible{animation:silk-in-left .9s var(--silk) forwards}
.silk-reveal-right{opacity:0}
.silk-reveal-right.visible{animation:silk-in-right .9s var(--silk) forwards}

nav{
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:100;
  height:var(--nav-h);
  display:flex;
  align-items:center;
  padding:0 max(48px, calc((100vw - var(--max-w)) / 2));
  border-bottom:1px solid transparent;
  transform:translateY(36px);
  transition:background .6s var(--silk),border-color .6s var(--silk),transform .5s var(--silk);
}
nav > *{position:relative}
nav.scrolled{background:rgba(15,19,25,.95);backdrop-filter:blur(20px);border-color:var(--border);transform:translateY(0)}
.nav-logo{
  font-family:var(--font-display);
  font-size:22px;
  font-weight:800;
  color:var(--text);
  letter-spacing:-.02em;
  text-decoration:none;
  display:flex;
  align-items:center;
  gap:8px;
}
.nav-logo-img{
  width:42px;height:42px;
  border-radius:10px;
  object-fit:cover;
  flex-shrink:0;
  display:block;
}
.nav-logo-text{
  line-height:1.15;
}
.nav-links{
  display:flex;
  align-items:center;
  gap:2px;
  margin-left:auto;
}
.nav-links a{
  color:var(--text2);
  text-decoration:none;
  font-size:14px;
  font-weight:400;
  padding:6px 14px;
  border-radius:6px;
  transition:color .4s var(--silk),background .4s var(--silk);
  letter-spacing:.01em;
}
.nav-links a:hover{color:var(--text);background:rgba(255,255,255,.05)}
.nav-cta{
  margin-left:12px;
  display:flex;
  align-items:center;
  gap:8px;
}
.btn-ghost{
  background:transparent;
  border:1px solid var(--border2);
  color:var(--text2);
  font-family:var(--font-sans);
  font-size:14px;
  font-weight:500;
  padding:8px 18px;
  border-radius:8px;
  cursor:pointer;
  transition:border-color .5s var(--silk),color .5s var(--silk);
  text-decoration:none;
}
.btn-ghost:hover{border-color:var(--sky);color:var(--sky)}
.btn-primary{
  background:var(--sky);
  border:1px solid var(--sky);
  color:#0A1A2C;
  font-family:var(--font-sans);
  font-size:14px;
  font-weight:600;
  padding:8px 20px;
  border-radius:8px;
  cursor:pointer;
  transition:background .5s var(--silk),transform .4s var(--silk);
  text-decoration:none;
}
.btn-primary:hover{background:var(--sky2);transform:translateY(-1px)}

.hamburger{
  display:none;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
  margin-left:auto;
  padding:4px;
  background:none;
  border:none;
}
.hamburger span{
  display:block;width:22px;height:2px;
  background:var(--text2);
  border-radius:2px;
  transition:all .3s;
}
.hamburger.open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.hamburger.open span:nth-child(2){opacity:0}
.hamburger.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

.mobile-menu{
  display:none;
  position:fixed;
  top:0;left:0;right:0;bottom:0;
  background:var(--bg);
  z-index:99;
  flex-direction:column;
  align-items:center;
  justify-content:flex-start;
  gap:4px;
  padding:100px 24px 60px;
  overflow-y:auto;
  -webkit-overflow-scrolling:touch;
  opacity:0;
  pointer-events:none;
  transition:opacity .3s;
}
.mobile-menu.open{opacity:1;pointer-events:all}
.mobile-menu a{
  font-family:var(--font-display);
  font-size:20px;
  font-weight:600;
  color:var(--text2);
  text-decoration:none;
  padding:8px 0;
  transition:color .2s;
  flex-shrink:0;
}
.mobile-menu a:hover{color:var(--sky)}
.mobile-menu .m-btns{
  display:flex;flex-direction:column;gap:10px;width:100%;max-width:260px;margin-top:20px;
  flex-shrink:0;
}
.mobile-menu .btn-primary,.mobile-menu .btn-ghost{
  width:100%;text-align:center;padding:12px;font-size:14px;
}

.hero{
  min-height:100vh;
  padding-top:calc(36px + var(--nav-h) + 60px);
  padding-bottom:80px;
  padding-left:max(48px, calc((100vw - var(--max-w)) / 2));
  padding-right:max(48px, calc((100vw - var(--max-w)) / 2));
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
  position:relative;
  overflow:hidden;
}
.hero::before{
  content:'';
  position:absolute;
  top:0;left:0;
  width:100%;height:100%;
  background-image:
    repeating-linear-gradient(45deg,transparent 0,transparent 119px,rgba(255,153,0,.35) 119px,rgba(255,153,0,.35) 120px),
    repeating-linear-gradient(-45deg,transparent 0,transparent 119px,rgba(255,153,0,.35) 119px,rgba(255,153,0,.35) 120px);
  -webkit-mask-image:radial-gradient(ellipse 100% 100% at 0% 0%,#000 0%,transparent 70%);
  mask-image:radial-gradient(ellipse 100% 100% at 0% 0%,#000 0%,transparent 70%);
  pointer-events:none;
  z-index:0;
}
.hero::after{
  content:'';
  position:absolute;
  top:-200px;right:-200px;
  width:600px;height:600px;
  background:radial-gradient(circle,rgba(255,153,0,.08) 0%,transparent 70%);
  pointer-events:none;
  z-index:0;
}
.hero > *{position:relative;z-index:1}
.hero-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:rgba(255,153,0,.1);
  border:1px solid rgba(255,153,0,.25);
  color:var(--sky);
  font-size:12px;
  font-weight:500;
  letter-spacing:.06em;
  text-transform:uppercase;
  padding:6px 14px;
  border-radius:20px;
  margin-bottom:24px;
}
.badge-dot{width:6px;height:6px;background:var(--sky);border-radius:50%;animation:pulse 2s infinite}
@keyframes pulse{0%,100%{opacity:1}50%{opacity:.4}}
.hero h1{
  font-family:var(--font-display);
  font-size:clamp(40px,5vw,68px);
  font-weight:800;
  line-height:1.05;
  letter-spacing:-.03em;
  color:var(--text);
  margin-bottom:24px;
}
.hero h1 span{color:var(--sky)}
.hero-sub{
  font-size:17px;
  color:var(--text2);
  line-height:1.7;
  max-width:460px;
  margin-bottom:36px;
  font-weight:300;
}
.hero-btns{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom:48px;
}
.btn-hero{
  background:var(--sky);
  border:none;
  color:#0A1A2C;
  font-family:var(--font-sans);
  font-size:15px;
  font-weight:600;
  padding:14px 28px;
  border-radius:10px;
  cursor:pointer;
  transition:background .6s var(--silk),transform .6s var(--silk),box-shadow .6s var(--silk);
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  gap:8px;
}
.btn-hero:hover{background:var(--sky2);transform:translateY(-2px);box-shadow:0 12px 32px rgba(255,153,0,.25)}
.btn-hero svg{width:16px;height:16px;fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;transition:transform .5s var(--silk)}
.btn-hero:hover svg{transform:translateX(3px)}
.btn-outline{
  background:transparent;
  border:1px solid var(--border2);
  color:var(--text);
  font-family:var(--font-sans);
  font-size:15px;
  font-weight:400;
  padding:14px 28px;
  border-radius:10px;
  cursor:pointer;
  transition:border-color .5s var(--silk),color .5s var(--silk);
  text-decoration:none;
}
.btn-outline:hover{border-color:var(--sky);color:var(--sky)}
.hero-trust{
  display:flex;
  align-items:center;
  gap:12px;
}
.hero-avatars{display:flex}
.hero-avatars span{
  width:32px;height:32px;
  border-radius:50%;
  border:2px solid var(--bg);
  background:var(--bg3);
  display:flex;align-items:center;justify-content:center;
  font-size:11px;font-weight:600;
  color:var(--sky);
  margin-right:-10px;
}
.hero-trust-text{
  font-size:13px;
  color:var(--text2);
  margin-left:18px;
}
.hero-trust-text strong{color:var(--text);font-weight:500}

.hero-visual{
  position:relative;
}
.dash-card{
  background:var(--bg2);
  border:1px solid var(--border);
  border-radius:16px;
  overflow:hidden;
  position:relative;
}
.dash-topbar{
  background:var(--bg3);
  padding:14px 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  border-bottom:1px solid var(--border);
}
.dash-dots{display:flex;gap:6px}
.dash-dots span{width:10px;height:10px;border-radius:50%}
.dash-title-bar{font-size:12px;color:var(--text3);font-weight:500;letter-spacing:.04em}
.dash-body{padding:20px}
.dash-stats{display:grid;grid-template-columns:repeat(3,1fr);gap:10px;margin-bottom:16px}
.dash-stat{
  background:var(--bg3);
  border:1px solid var(--border);
  border-radius:10px;
  padding:12px 14px;
}
.dash-stat-label{font-size:10px;color:var(--text3);letter-spacing:.05em;text-transform:uppercase;margin-bottom:6px}
.dash-stat-val{font-family:var(--font-display);font-size:18px;font-weight:700;color:var(--text)}
.dash-stat-change{font-size:10px;margin-top:2px}
.chart-wrap{
  background:var(--bg3);
  border:1px solid var(--border);
  border-radius:10px;
  padding:14px;
  margin-bottom:12px;
}
.chart-head{display:flex;justify-content:space-between;align-items:center;margin-bottom:12px}
.chart-head-title{font-size:12px;font-weight:500;color:var(--text2)}
.chart-badge{font-size:10px;background:rgba(61,204,142,.12);color:var(--green);border:1px solid rgba(61,204,142,.2);padding:2px 8px;border-radius:10px}
.tx-list{display:flex;flex-direction:column;gap:6px}
.tx-item{
  display:flex;align-items:center;gap:10px;
  background:var(--bg3);border:1px solid var(--border);
  border-radius:8px;padding:8px 12px;
}
.tx-icon{
  width:28px;height:28px;border-radius:7px;
  display:flex;align-items:center;justify-content:center;
  font-size:11px;font-weight:700;
  flex-shrink:0;
}
.tx-info{flex:1}
.tx-name{font-size:12px;font-weight:500;color:var(--text)}
.tx-date{font-size:10px;color:var(--text3)}
.tx-amount{font-size:13px;font-weight:600}

.float-badge{
  position:absolute;
  background:var(--bg2);
  border:1px solid var(--border2);
  border-radius:12px;
  padding:10px 16px;
  display:flex;align-items:center;gap:10px;
  animation:float 3s ease-in-out infinite;
  z-index:2;
}
.float-badge:nth-child(2){animation-delay:1.5s}
.float-badge-icon{width:32px;height:32px;border-radius:8px;display:flex;align-items:center;justify-content:center;font-size:14px}
.float-badge-info .val{font-family:var(--font-display);font-size:14px;font-weight:700;color:var(--text)}
.float-badge-info .lbl{font-size:10px;color:var(--text3)}
.fb-left{left:-60px;top:30%}
.fb-right{right:-50px;bottom:25%}
@keyframes float{0%,100%{transform:translateY(0)}50%{transform:translateY(-8px)}}

.logos-section{
  padding:40px max(48px, calc((100vw - var(--max-w)) / 2));
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
  overflow:hidden;
  max-width:100%;
}
.logos-label{
  text-align:center;
  font-size:12px;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--text3);
  margin-bottom:24px;
}
.logos-track-wrap{overflow:hidden;position:relative;max-width:100%;width:100%}
.logos-track-wrap::before,.logos-track-wrap::after{
  content:'';
  position:absolute;top:0;bottom:0;width:120px;z-index:2;
  pointer-events:none;
}
.logos-track-wrap::before{left:0;background:linear-gradient(to right,var(--bg),transparent)}
.logos-track-wrap::after{right:0;background:linear-gradient(to left,var(--bg),transparent)}
.logos-track{
  display:flex;gap:0;
  animation:ticker-scroll 22s linear infinite;
  width:max-content;
  will-change:transform;
  flex-shrink:0;
}
.logo-item{
  padding:0 40px;
  font-family:var(--font-display);
  font-size:15px;
  font-weight:700;
  color:var(--text3);
  letter-spacing:.05em;
  white-space:nowrap;
  border-right:1px solid var(--border);
  transition:color .2s;
}

.stats-section{
  padding:60px max(48px, calc((100vw - var(--max-w)) / 2));
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
  background:var(--bg);
}
.stat-block{
  background:var(--bg2);
  border:1px solid var(--border);
  border-radius:16px;
  padding:28px 24px;
  position:relative;
  overflow:hidden;
  transition:border-color .6s var(--silk),transform .6s var(--silk),background .6s var(--silk);
}
.stat-block:hover{border-color:var(--border2);transform:translateY(-3px);background:var(--bg3)}
.stat-icon{
  width:38px;height:38px;
  background:rgba(255,153,0,.1);
  border:1px solid rgba(255,153,0,.15);
  border-radius:10px;
  display:flex;align-items:center;justify-content:center;
  margin-bottom:16px;
  position:relative;
  transition:transform .6s var(--silk);
}
.stat-block:hover .stat-icon{transform:scale(1.08) rotate(-4deg)}
.stat-icon::before,.stat-icon::after{
  content:'';
  position:absolute;
  inset:-1px;
  border-radius:10px;
  border:1px solid var(--sky);
  opacity:0;
  pointer-events:none;
}
.stat-block:hover .stat-icon::before{
  animation:ring-pulse 1.4s var(--silk) infinite;
}
.stat-block:hover .stat-icon::after{
  animation:ring-pulse 1.4s var(--silk) infinite;
  animation-delay:.7s;
}
@keyframes ring-pulse{
  0%{opacity:.7;transform:scale(1)}
  100%{opacity:0;transform:scale(1.7)}
}
.stat-icon svg{width:18px;height:18px;fill:none;stroke:var(--sky);stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
.stat-num{
  font-family:var(--font-display);
  font-size:clamp(28px,3vw,42px);
  font-weight:800;
  color:var(--text);
  letter-spacing:-.03em;
  line-height:1;
  margin-bottom:6px;
}
.stat-label{font-size:13px;color:var(--text3);font-weight:400;margin-bottom:14px}
.stat-bar-wrap{background:var(--bg3);border-radius:4px;height:4px;margin-bottom:8px}
.stat-bar{height:100%;border-radius:4px;background:var(--sky);transition:width 1.2s ease}
.stat-trend{
  display:flex;align-items:center;gap:5px;
  font-size:11px;font-weight:600;
}
.stat-trend svg{width:12px;height:12px;fill:none;stroke:currentColor;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round}

.features-section{
  padding:100px max(48px, calc((100vw - var(--max-w)) / 2));
}
.features-header{
  text-align:center;
  max-width:600px;
  margin:0 auto 80px;
}
.section-tag{
  display:inline-block;
  font-size:11px;
  font-weight:600;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--sky);
  margin-bottom:16px;
}
.section-title{
  font-family:var(--font-display);
  font-size:clamp(32px,4vw,48px);
  font-weight:800;
  letter-spacing:-.03em;
  line-height:1.1;
  margin-bottom:16px;
}
.section-sub{font-size:16px;color:var(--text2);font-weight:300;line-height:1.7}

.sticky-layout{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:start;
}
.sticky-cards{
  display:flex;
  flex-direction:column;
  gap:16px;
}
.sticky-card{
  background:var(--bg2);
  border:1px solid var(--border);
  border-radius:16px;
  padding:28px;
  cursor:pointer;
  transition:border-color .6s var(--silk),background .6s var(--silk),transform .6s var(--silk);
  position:relative;
  overflow:hidden;
}
.sticky-card::before{
  content:'';
  position:absolute;
  left:0;top:0;bottom:0;
  width:3px;
  background:var(--sky);
  opacity:0;
  transition:opacity .5s var(--silk);
}
.sticky-card:hover{transform:translateX(4px)}
.sticky-card.active{border-color:var(--border2);background:var(--bg3)}
.sticky-card.active::before{opacity:1}
.sticky-card-icon{
  width:44px;height:44px;
  background:rgba(255,153,0,.1);
  border:1px solid rgba(255,153,0,.2);
  border-radius:10px;
  display:flex;align-items:center;justify-content:center;
  margin-bottom:16px;
  transition:background .3s;
}
.sticky-card.active .sticky-card-icon{background:rgba(255,153,0,.18)}
.sticky-card-icon svg{width:20px;height:20px;fill:none;stroke:var(--sky);stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
.sticky-card h3{
  font-family:var(--font-display);
  font-size:18px;
  font-weight:700;
  margin-bottom:8px;
  color:var(--text);
}
.sticky-card p{font-size:14px;color:var(--text2);line-height:1.65;font-weight:300}
.sticky-card-pills{display:flex;gap:6px;margin-top:14px;flex-wrap:wrap}
.sticky-card-cta{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-top:16px;
  padding:10px 16px;
  font-family:var(--font-sans);
  font-size:13px;
  font-weight:600;
  color:var(--sky);
  background:rgba(255,153,0,.08);
  border:1px solid rgba(255,153,0,.35);
  border-radius:8px;
  text-decoration:none;
  transition:border-color .35s var(--silk),background .35s var(--silk),color .35s var(--silk);
}
.sticky-card-cta svg{
  width:14px;
  height:14px;
  fill:none;
  stroke:currentColor;
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
  flex-shrink:0;
}
.sticky-card-cta:hover,
.sticky-card-cta:focus-visible{
  background:rgba(255,153,0,.16);
  border-color:var(--sky);
  color:var(--sky2);
}
.sticky-card-cta:focus-visible{
  outline:2px solid var(--sky);
  outline-offset:2px;
}
.sc-pill{
  font-size:11px;font-weight:500;
  padding:3px 10px;border-radius:20px;
  background:rgba(255,153,0,.08);
  border:1px solid rgba(255,153,0,.15);
  color:var(--sky2);
}

.sticky-panel-wrap{
  position:sticky;
  top:calc(36px + var(--nav-h) + 32px);
}
.sticky-panel{
  background:var(--bg2);
  border:1px solid var(--border);
  border-radius:20px;
  overflow:hidden;
  min-height:400px;
}
.panel-topbar{
  background:var(--bg3);
  padding:14px 18px;
  display:flex;
  align-items:center;
  gap:8px;
  border-bottom:1px solid var(--border);
}
.panel-dots{display:flex;gap:5px}
.panel-dots span{width:9px;height:9px;border-radius:50%}
.panel-content{
  padding:24px;
  min-height:360px;
  display:flex;
  flex-direction:column;
  gap:14px;
}
.panel-view{display:none}
.panel-view.active{display:flex;flex-direction:column;gap:12px;animation:fadein .35s ease}
@keyframes fadein{from{opacity:0;transform:translateY(8px)}to{opacity:1;transform:translateY(0)}}

.pm-row{display:flex;gap:10px}
.pm-card{
  flex:1;
  background:var(--bg3);
  border:1px solid var(--border);
  border-radius:10px;
  padding:14px;
}
.pm-label{font-size:10px;color:var(--text3);text-transform:uppercase;letter-spacing:.06em;margin-bottom:6px}
.pm-val{font-family:var(--font-display);font-size:20px;font-weight:700;color:var(--text)}
.pm-change{font-size:11px;margin-top:3px}
.pm-bar-wrap{background:var(--bg);border-radius:6px;height:6px;margin-top:8px;overflow:hidden}
.pm-bar{height:100%;border-radius:6px;background:var(--sky)}
.pm-list{display:flex;flex-direction:column;gap:8px}
.pm-list-item{
  display:flex;align-items:center;gap:10px;
  background:var(--bg3);border:1px solid var(--border);
  border-radius:8px;padding:10px 12px;
}
.pm-list-icon{
  width:30px;height:30px;border-radius:7px;
  display:flex;align-items:center;justify-content:center;
  font-size:12px;font-weight:700;flex-shrink:0;
}
.pm-list-info{flex:1}
.pm-list-name{font-size:12px;font-weight:500}
.pm-list-sub{font-size:10px;color:var(--text3)}
.pm-list-amt{font-size:13px;font-weight:600}
.pm-chart-mini{
  background:var(--bg3);border:1px solid var(--border);
  border-radius:10px;padding:14px;
}
.pm-sparkline{
  display:flex;align-items:flex-end;gap:4px;height:50px;margin-top:8px;
}
.pm-spark-bar{
  flex:1;background:rgba(255,153,0,.25);border-radius:3px 3px 0 0;
  border-top:2px solid var(--sky);
  transition:height .4s ease;
}
.pm-security-grid{display:grid;grid-template-columns:1fr 1fr;gap:8px}
.pm-sec-item{
  background:var(--bg3);border:1px solid var(--border);
  border-radius:10px;padding:14px 12px;
  display:flex;flex-direction:column;gap:6px;
}
.pm-sec-icon{font-size:20px}
.pm-sec-name{font-size:11px;font-weight:600;color:var(--text)}
.pm-sec-status{font-size:10px;color:var(--green)}

.dashboard-section{
  padding:100px max(48px, calc((100vw - var(--max-w)) / 2));
  background:var(--bg2);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.dashboard-inner{max-width:900px;margin:0 auto}
.dashboard-preview{
  background:var(--bg);
  border:1px solid var(--border);
  border-radius:20px;
  overflow:hidden;
  margin-top:48px;
}
.dp-topbar{
  background:var(--bg2);
  padding:16px 24px;
  display:flex;align-items:center;justify-content:space-between;
  border-bottom:1px solid var(--border);
}
.dp-title{font-family:var(--font-display);font-size:14px;font-weight:700;color:var(--text)}
.dp-live{
  display:flex;align-items:center;gap:6px;
  font-size:11px;color:var(--green);font-weight:500;
}
.dp-live-dot{width:6px;height:6px;background:var(--green);border-radius:50%;animation:pulse 1.5s infinite}
.dp-body{padding:24px;display:grid;grid-template-columns:2fr 1fr;gap:20px}
.dp-chart-area{
  background:var(--bg2);border:1px solid var(--border);
  border-radius:12px;padding:20px;
}
.dp-chart-head{display:flex;justify-content:space-between;align-items:flex-start;margin-bottom:16px}
.dp-chart-val{font-family:var(--font-display);font-size:28px;font-weight:800;color:var(--text)}
.dp-chart-change{font-size:12px;color:var(--green);margin-top:4px}
.dp-chart-period{display:flex;gap:4px}
.dp-period-btn{
  font-size:11px;padding:4px 10px;border-radius:5px;
  background:transparent;border:1px solid var(--border);
  color:var(--text3);cursor:pointer;font-family:var(--font-sans);
  transition:all .2s;
}
.dp-period-btn.active{background:var(--sky4);border-color:var(--sky3);color:var(--sky)}
.dp-side{display:flex;flex-direction:column;gap:12px}
.dp-side-card{
  background:var(--bg2);border:1px solid var(--border);
  border-radius:12px;padding:16px;
}
.dp-side-label{font-size:10px;color:var(--text3);text-transform:uppercase;letter-spacing:.06em;margin-bottom:8px}
.dp-side-val{font-family:var(--font-display);font-size:22px;font-weight:700;color:var(--text)}
.dp-side-change{font-size:11px;margin-top:4px}
.dp-allocations{margin-top:12px;display:flex;flex-direction:column;gap:8px}
.dp-alloc-row{display:flex;align-items:center;gap:10px}
.dp-alloc-dot{width:8px;height:8px;border-radius:50%;flex-shrink:0}
.dp-alloc-name{font-size:12px;color:var(--text2);flex:1}
.dp-alloc-pct{font-size:12px;font-weight:500;color:var(--text)}
.dp-alloc-bar-wrap{flex:1;background:var(--bg3);border-radius:3px;height:4px}
.dp-alloc-bar{height:100%;border-radius:3px}

.pricing-section{padding:100px max(48px, calc((100vw - var(--max-w)) / 2))}
.pricing-toggle-wrap{
  display:flex;align-items:center;justify-content:center;
  gap:12px;margin-bottom:48px;margin-top:32px;
}
.toggle-label{font-size:14px;color:var(--text2)}
.toggle-switch{
  width:44px;height:24px;background:var(--bg3);
  border:1px solid var(--border2);border-radius:12px;
  cursor:pointer;position:relative;transition:background .2s;
}
.toggle-switch.on{background:var(--sky3)}
.toggle-knob{
  position:absolute;top:3px;left:3px;
  width:16px;height:16px;background:var(--text2);
  border-radius:50%;transition:transform .2s,background .2s;
}
.toggle-switch.on .toggle-knob{transform:translateX(20px);background:#fff}
.toggle-save{
  font-size:11px;font-weight:600;
  background:rgba(61,204,142,.12);
  color:var(--green);
  border:1px solid rgba(61,204,142,.2);
  padding:3px 10px;border-radius:20px;
}
.pricing-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  max-width:960px;
  margin:0 auto;
}
.price-card{
  background:var(--bg2);
  border:1px solid var(--border);
  border-radius:20px;
  padding:32px 28px;
  position:relative;
  transition:border-color .6s var(--silk),transform .6s var(--silk),box-shadow .6s var(--silk);
}
.price-card:hover{border-color:var(--border2);transform:translateY(-4px);box-shadow:0 20px 48px rgba(0,0,0,.3)}
.price-card.featured{border-color:var(--sky3);background:var(--bg3)}
.featured-badge{
  position:absolute;top:-12px;left:50%;transform:translateX(-50%);
  background:var(--sky);
  color:#0A1A2C;
  font-size:11px;font-weight:700;
  padding:4px 16px;border-radius:20px;
  white-space:nowrap;letter-spacing:.04em;
}
.price-plan{font-size:12px;font-weight:600;letter-spacing:.1em;text-transform:uppercase;color:var(--text2);margin-bottom:16px}
.price-amount{
  font-family:var(--font-display);
  font-size:42px;font-weight:800;
  color:var(--text);
  letter-spacing:-.03em;
  line-height:1;
  margin-bottom:4px;
}
.price-amount sup{font-size:20px;vertical-align:top;margin-top:8px;display:inline-block}
.price-period{font-size:13px;color:var(--text3);margin-bottom:24px}
.price-features{list-style:none;display:flex;flex-direction:column;gap:10px;margin-bottom:28px}
.price-features li{
  display:flex;align-items:center;gap:10px;
  font-size:14px;color:var(--text2);
}
.price-features li svg{width:16px;height:16px;fill:none;stroke:var(--green);stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round;flex-shrink:0}
.price-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  padding:12px;border-radius:10px;
  font-family:var(--font-sans);
  font-size:14px;font-weight:600;
  text-align:center;
  text-decoration:none;
  cursor:pointer;transition:all .2s;border:none;
  box-sizing:border-box;
}
.price-btn-ghost{
  background:transparent;
  border:1px solid var(--border2);
  color:var(--text);
}
.price-btn-ghost:hover{border-color:var(--sky);color:var(--sky)}
.price-btn-primary{background:var(--sky);color:#0A1A2C}
.price-btn-primary:hover{background:var(--sky2)}

.security-section{
  padding:100px max(48px, calc((100vw - var(--max-w)) / 2));
  background:var(--bg2);
  border-top:1px solid var(--border);
}
.security-inner{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
  max-width:1100px;
  margin:0 auto;
}
.security-badges{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.sec-badge{
  background:var(--bg);
  border:1px solid var(--border);
  border-radius:14px;
  padding:20px;
  display:flex;flex-direction:column;gap:8px;
  transition:border-color .6s var(--silk),transform .6s var(--silk);
}
.sec-badge:hover{border-color:var(--border2);transform:translateY(-2px)}
.sec-badge-icon{
  width:40px;height:40px;
  background:rgba(255,153,0,.1);
  border:1px solid rgba(255,153,0,.2);
  border-radius:10px;
  display:flex;align-items:center;justify-content:center;
}
.sec-badge-icon svg{width:20px;height:20px;fill:none;stroke:var(--sky);stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
.sec-badge-name{font-size:14px;font-weight:600;color:var(--text)}
.sec-badge-desc{font-size:12px;color:var(--text3);line-height:1.5}
.sec-badge-status{
  display:inline-flex;align-items:center;gap:5px;
  font-size:11px;color:var(--green);font-weight:500;margin-top:4px;
}
.sec-badge-status::before{content:'';width:5px;height:5px;background:var(--green);border-radius:50%}

.testimonials-section{padding:100px max(48px, calc((100vw - var(--max-w)) / 2))}
.testi-track-wrap{margin-top:48px;max-width:var(--max-w);margin-left:auto;margin-right:auto;width:100%}
.testi-track{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:16px;
  width:100%;
}
.testi-card{
  background:var(--bg2);
  border:1px solid var(--border);
  border-radius:16px;
  padding:24px;
}
.testi-stars{display:flex;gap:3px;margin-bottom:14px}
.testi-stars svg{width:14px;height:14px;fill:var(--sky);stroke:none}
.testi-quote{font-size:14px;color:var(--text2);line-height:1.65;margin-bottom:16px;font-style:italic}
.testi-author{display:flex;align-items:center;gap:10px}
.testi-avatar{
  width:36px;height:36px;border-radius:50%;
  background:var(--bg3);border:1px solid var(--border2);
  display:flex;align-items:center;justify-content:center;
  font-size:12px;font-weight:700;color:var(--sky);
}
.testi-name{font-size:13px;font-weight:600;color:var(--text)}
.testi-role{font-size:11px;color:var(--text3)}

.app-section{
  padding:100px max(48px, calc((100vw - var(--max-w)) / 2));
  background:var(--bg2);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
  position:relative;
  overflow:hidden;
}
.app-section::before{
  content:'';
  position:absolute;
  bottom:0;right:0;
  width:100%;height:100%;
  background-image:
    repeating-linear-gradient(45deg,transparent 0,transparent 119px,rgba(255,153,0,.35) 119px,rgba(255,153,0,.35) 120px),
    repeating-linear-gradient(-45deg,transparent 0,transparent 119px,rgba(255,153,0,.35) 119px,rgba(255,153,0,.35) 120px);
  -webkit-mask-image:radial-gradient(ellipse 100% 100% at 100% 100%,#000 0%,transparent 70%);
  mask-image:radial-gradient(ellipse 100% 100% at 100% 100%,#000 0%,transparent 70%);
  pointer-events:none;
  z-index:0;
}
.app-section > *{position:relative;z-index:1}
.app-inner{
  display:grid;grid-template-columns:3fr 2fr;
  gap:80px;align-items:center;max-width:1000px;margin:0 auto;
}
.app-btns{display:flex;gap:12px;flex-wrap:wrap;margin-top:28px}
.app-store-btn{
  display:flex;align-items:center;gap:12px;
  background:var(--bg3);border:1px solid var(--border2);
  border-radius:14px;padding:14px 26px;
  text-decoration:none;transition:border-color .5s var(--silk),background .5s var(--silk);
  min-width:200px;
}
.app-store-btn:hover{border-color:var(--sky);background:var(--bg4)}
.app-store-btn svg{fill:var(--text);flex-shrink:0}
.app-store-btn-info{display:flex;flex-direction:column}
.app-store-btn-sub{font-size:10px;color:var(--text3);letter-spacing:.02em}
.app-store-btn-name{font-size:16px;font-weight:700;color:var(--text);font-family:var(--font-display);letter-spacing:-.01em}
.phone-mockup{
  width:220px;
  margin:0 auto;
  background:var(--bg3);
  border:2px solid var(--border2);
  border-radius:36px;
  padding:20px 14px;
  position:relative;
}
.phone-notch{
  width:70px;height:20px;background:var(--bg);
  border-radius:0 0 12px 12px;margin:0 auto 16px;
}
.phone-screen{
  background:var(--bg);
  border-radius:16px;
  padding:16px;
  min-height:320px;
  display:flex;flex-direction:column;gap:10px;
}
.phone-header{
  display:flex;align-items:center;justify-content:space-between;margin-bottom:4px;
}
.phone-greeting{font-size:12px;color:var(--text3)}
.phone-name{font-size:14px;font-weight:700;color:var(--text);font-family:var(--font-display)}
.phone-balance{
  background:var(--bg3);border:1px solid var(--border);
  border-radius:12px;padding:14px;
}
.phone-bal-label{font-size:9px;color:var(--text3);text-transform:uppercase;letter-spacing:.06em}
.phone-bal-val{font-family:var(--font-display);font-size:22px;font-weight:800;color:var(--text);margin-top:4px}
.phone-bal-change{font-size:10px;color:var(--green);margin-top:2px}
.phone-quick{display:grid;grid-template-columns:repeat(3,1fr);gap:6px}
.phone-quick-btn{
  background:var(--bg3);border:1px solid var(--border);
  border-radius:8px;padding:8px 4px;text-align:center;
  font-size:9px;color:var(--text2);
}
.phone-quick-icon{font-size:16px;margin-bottom:3px}
.phone-chart-mini{
  background:var(--bg3);border:1px solid var(--border);
  border-radius:8px;padding:10px;
}
.phone-spark{display:flex;align-items:flex-end;gap:3px;height:30px}
.phone-spark-bar{flex:1;background:rgba(255,153,0,.2);border-radius:2px 2px 0 0;border-top:1.5px solid var(--sky)}
.phone-qr{
  width:60px;height:60px;
  background:var(--bg3);border:1px solid var(--border);
  border-radius:8px;margin-top:12px;
  display:flex;align-items:center;justify-content:center;
  font-size:10px;color:var(--text3);
}

.faq-section{
  padding:100px max(48px, calc((100vw - var(--max-w)) / 2));
  position:relative;
  overflow:hidden;
}
.faq-section::before{
  content:'';
  position:absolute;
  bottom:0;left:0;
  width:140%;height:140%;
  background-image:
    repeating-linear-gradient(45deg,transparent 0,transparent 119px,rgba(255,153,0,.35) 119px,rgba(255,153,0,.35) 120px),
    repeating-linear-gradient(-45deg,transparent 0,transparent 119px,rgba(255,153,0,.35) 119px,rgba(255,153,0,.35) 120px);
  -webkit-mask-image:radial-gradient(ellipse 100% 100% at 0% 100%,#000 0%,transparent 70%);
  mask-image:radial-gradient(ellipse 100% 100% at 0% 100%,#000 0%,transparent 70%);
  pointer-events:none;
  z-index:0;
}
.faq-section > *{position:relative;z-index:1}
.faq-inner{max-width:720px;margin:0 auto}
.faq-list{margin-top:48px;display:flex;flex-direction:column;gap:4px}
.faq-item{
  background:rgba(20,25,32,.4);
  border:1px solid var(--border);
  border-radius:12px;
  overflow:hidden;
  transition:border-color .5s var(--silk),background .5s var(--silk);
}
.faq-item.open{border-color:var(--border2);background:rgba(20,25,32,.65)}
.faq-q{
  display:flex;align-items:center;justify-content:space-between;
  padding:20px 24px;
  cursor:pointer;
  gap:16px;
}
.faq-q-text{font-size:15px;font-weight:500;color:var(--text);transition:color .4s var(--silk)}
.faq-q:hover .faq-q-text{color:var(--sky)}
.faq-chevron{
  width:20px;height:20px;flex-shrink:0;
  fill:none;stroke:var(--text3);stroke-width:2;
  stroke-linecap:round;stroke-linejoin:round;
  transition:transform .6s var(--silk),stroke .4s var(--silk);
}
.faq-item.open .faq-chevron{transform:rotate(180deg);stroke:var(--sky)}
.faq-a{
  max-height:0;overflow:hidden;
  transition:max-height .6s var(--silk),padding .5s var(--silk);
  font-size:14px;color:var(--text2);line-height:1.7;
  padding:0 24px;font-weight:300;
}
.faq-item.open .faq-a{max-height:480px;padding-bottom:20px}
.faq-a a{color:var(--sky);text-decoration:underline;text-underline-offset:2px}
.faq-a a:hover{color:var(--sky2)}

footer{
  padding:40px max(48px, calc((100vw - var(--max-w)) / 2)) 28px;
  border-top:1px solid var(--border);
}
.footer-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:48px;
  margin-bottom:28px;
  align-items:start;
}
.footer-brand{max-width:300px}
.footer-logo{
  font-family:var(--font-display);
  font-size:20px;font-weight:800;
  color:var(--text);margin-bottom:10px;
  display:flex;align-items:center;gap:8px;
}
.footer-desc{font-size:13px;color:var(--text3);line-height:1.6;margin-bottom:14px}
.footer-newsletter{display:flex;gap:8px}
.footer-input{
  flex:1;background:var(--bg2);
  border:1px solid var(--border);
  border-radius:8px;padding:10px 14px;
  color:var(--text);font-family:var(--font-sans);
  font-size:13px;outline:none;
}
.footer-input::placeholder{color:var(--text3)}
.footer-input:focus{border-color:var(--sky)}
.footer-sub-btn{
  background:var(--sky);border:none;
  color:#0A1A2C;font-family:var(--font-sans);
  font-size:13px;font-weight:600;
  padding:10px 16px;border-radius:8px;cursor:pointer;
  white-space:nowrap;transition:background .2s;
}
.footer-sub-btn:hover{background:var(--sky2)}
.footer-col-title{font-size:12px;font-weight:600;letter-spacing:.08em;text-transform:uppercase;color:var(--text2);margin-bottom:16px}
.footer-links{list-style:none;display:flex;flex-direction:column;gap:10px}
.footer-links a{font-size:14px;color:var(--text3);text-decoration:none;transition:color .2s}
.footer-links a:hover{color:var(--sky)}
.footer-bottom{
  border-top:1px solid var(--border);
  padding-top:20px;
  display:flex;align-items:center;justify-content:space-between;
}
.footer-copy{font-size:13px;color:var(--text3)}
.footer-link{
  font-size:13px;color:var(--text3);text-decoration:none;
  transition:color .4s var(--silk);
}
.footer-link:hover{color:var(--sky)}
.footer-socials{display:flex;gap:8px}
.social-btn{
  width:34px;height:34px;border-radius:8px;
  background:var(--bg2);border:1px solid var(--border);
  display:flex;align-items:center;justify-content:center;
  text-decoration:none;transition:border-color .2s;
}
.social-btn:hover{border-color:var(--sky)}
.social-btn svg{width:16px;height:16px;fill:none;stroke:var(--text3);stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}

@media(max-width:900px){
  nav{padding:0 24px}
  .nav-links,.nav-cta{display:none}
  .hamburger{display:flex;min-width:44px;min-height:44px;align-items:center;justify-content:center}
  .mobile-menu{display:flex}
  .mobile-menu .m-btns{
    width:min(100%,260px);
    margin-inline:auto;
    align-self:center;
  }
  .hero{grid-template-columns:1fr;padding:calc(36px + var(--nav-h) + 40px) 24px 60px;gap:40px}
  .fb-left,.fb-right{display:none}
  .stats-section{grid-template-columns:1fr 1fr}
  .features-section,.pricing-section,.faq-section,.testimonials-section,.dashboard-section,.logos-section,.security-section,.app-section,.stats-section{padding:60px 24px}
  footer{padding-left:24px !important;padding-right:24px !important}
  .sticky-layout{grid-template-columns:1fr}
  .sticky-panel-wrap{position:static}
  .pricing-grid{grid-template-columns:1fr}
  .security-inner{grid-template-columns:1fr;gap:40px}
  .app-inner{grid-template-columns:1fr;gap:40px}
  .footer-grid{grid-template-columns:1fr;gap:32px}
  .footer-bottom{flex-direction:column;gap:16px;text-align:center}
  .dp-body{grid-template-columns:1fr}
}
@media(max-width:600px){
  nav{padding:0 16px}
  .stats-section{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr}
  .hero h1{font-size:clamp(28px,8vw,36px)}
  .pricing-grid{gap:16px}
  .features-section,.pricing-section,.faq-section,.testimonials-section,.logos-section,.security-section,.app-section,.stats-section{padding:48px 16px}
  .mobile-menu a{min-height:44px;display:flex;align-items:center}
  .faq-item{padding:16px 18px}
}

/* --- tgk-loader.css --- */

#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#load {
  position: relative;
  width: min(600px, 92vw);
  height: 36px;
}

#load div {
  position: absolute;
  width: 20px;
  height: 36px;
  opacity: 0;
  font-family: var(--font-display);
  animation: tgk-load-move 2s linear infinite;
  transform: rotate(180deg);
  color: #ff9900;
  font-size: 24px;
  font-weight: 700;
}

#load div:nth-child(1) { animation-delay: 0s; }
#load div:nth-child(2) { animation-delay: 0.2s; }
#load div:nth-child(3) { animation-delay: 0.4s; }
#load div:nth-child(4) { animation-delay: 0.6s; }
#load div:nth-child(5) { animation-delay: 0.8s; }
#load div:nth-child(6) { animation-delay: 1s; }
#load div:nth-child(7) { animation-delay: 1.2s; }

@keyframes tgk-load-move {
  0% {
    left: 0;
    opacity: 0;
  }
  35% {
    left: 41%;
    transform: rotate(0deg);
    opacity: 1;
  }
  65% {
    left: 59%;
    transform: rotate(0deg);
    opacity: 1;
  }
  100% {
    left: 100%;
    transform: rotate(-180deg);
    opacity: 0;
  }
}

.tgk-contact-form-card {
  position: relative;
}

.tgk-form-loader {
  position: absolute;
  inset: 0;
  z-index: 8;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  background: rgba(10, 14, 19, 0.9);
  border-radius: 20px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.tgk-contact-form-card.is-submitting .tgk-form-loader {
  display: flex;
}

.tgk-contact-form-card.is-submitting .tgk-contact-form {
  opacity: 0.35;
  pointer-events: none;
}

.tgk-form-load {
  position: relative;
  width: min(320px, 80vw);
  height: 28px;
}

.tgk-form-load span {
  position: absolute;
  width: 18px;
  height: 28px;
  opacity: 0;
  font-family: var(--font-display);
  animation: tgk-load-move 2s linear infinite;
  transform: rotate(180deg);
  color: #ff9900;
  font-size: 18px;
  font-weight: 700;
}

.tgk-form-load span:nth-child(1) { animation-delay: 0s; }
.tgk-form-load span:nth-child(2) { animation-delay: 0.2s; }
.tgk-form-load span:nth-child(3) { animation-delay: 0.4s; }
.tgk-form-load span:nth-child(4) { animation-delay: 0.6s; }
.tgk-form-load span:nth-child(5) { animation-delay: 0.8s; }
.tgk-form-load span:nth-child(6) { animation-delay: 1s; }
.tgk-form-load span:nth-child(7) { animation-delay: 1.2s; }

.tgk-form-loader-label {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text2);
}

@media (prefers-reduced-motion: reduce) {
  #load div,
  .tgk-form-load span {
    animation: none;
    opacity: 1;
    left: auto;
    position: static;
    transform: none;
    display: inline-block;
    margin: 0 1px;
  }
  #load,
  .tgk-form-load {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2px;
    width: auto;
    height: auto;
  }
}

/* --- tgk-single.css --- */

.tgk-footer-brand .tgk-footer-logo {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  object-fit: cover;
  display: block;
  margin-bottom: 12px;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 110;
  background: rgba(255, 153, 0, 0.12);
  pointer-events: none;
}
.scroll-progress-bar {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--sky3), var(--sky), var(--sky2));
  box-shadow:
    0 0 8px rgba(255, 153, 0, 0.95),
    0 0 16px rgba(255, 153, 0, 0.55);
  transition: width 0.06s linear;
  border-radius: 0 2px 2px 0;
}

nav {
  transform: translateY(0);
}

.kenya-map-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  max-width: 100%;
}
.kenya-map-topbar {
  background: var(--bg3);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--border);
}
.kenya-map-title {
  font-size: 13px;
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0.02em;
  flex: 1;
  text-align: center;
}
.kenya-map-badge {
  font-size: 10px;
  color: var(--sky);
  font-weight: 600;
  background: rgba(255, 153, 0, 0.1);
  border: 1px solid rgba(255, 153, 0, 0.25);
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
}
.kenya-map-body {
  padding: 16px 12px 14px;
}
.kenya-map-svg {
  width: 100%;
  height: auto;
  display: block;
  min-height: 300px;
  max-height: 420px;
}
.kenya-map-card:hover .kenya-map-svg {
  filter: brightness(1.06);
}
.kenya-map-caption {
  text-align: center;
  font-size: 15px;
  color: var(--text);
  margin: 14px 0 0;
  font-weight: 700;
  letter-spacing: 0.02em;
}
@media (max-width: 900px) {
  .kenya-map-svg {
    min-height: 260px;
    max-height: 360px;
  }
  .fb-left { left: -20px; }
  .fb-right { right: -20px; }
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(
    --hero-bg,
    url('https://cdn.techgroupkenya.co.ke/images/hero1.jpg')
  );
  background-size: cover;
  background-position: center;
  filter: brightness(0.42);
  transition: opacity 1.2s ease, transform 2s ease;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10, 14, 19, 0.88) 0%,
    rgba(10, 14, 19, 0.55) 45%,
    rgba(10, 14, 19, 0.35) 100%
  );
  pointer-events: none;
}
.hero.transitioning .hero-bg {
  opacity: 0.65;
  transform: scale(1.04);
}
.hero::before,
.hero::after {
  z-index: 1;
}
.hero > .hero-content,
.hero > .hero-visual {
  position: relative;
  z-index: 2;
}

.hero-content {
  min-width: 0;
  max-width: 100%;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.hero-brand {
  color: var(--sky);
}
.hero h1 .hero-headline-lead {
  display: block;
  color: var(--text);
}
.hero-typewriter-line {
  display: block;
  width: var(--typewriter-slot, 100%);
  max-width: 100%;
  min-height: 1.12em;
  margin-top: 0.06em;
  font-size: var(--typewriter-font-size, clamp(26px, 4vw, 64px));
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.hero h1 .typewriter {
  color: var(--sky);
  font-weight: 800;
  display: inline-block;
  max-width: 100%;
  white-space: nowrap;
  vertical-align: bottom;
}
.hero h1 .typewriter::after {
  content: '|';
  color: var(--sky);
  margin-left: 2px;
  animation: tgk-cursor-blink 0.7s step-end infinite;
}
@keyframes tgk-cursor-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
@media (max-width: 900px) {
  .hero-typewriter-line {
    font-size: var(--typewriter-font-size, clamp(22px, 5.5vw, 40px));
  }
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 18px;
  margin-top: 4px;
  transition:
    opacity 0.35s var(--silk),
    transform 0.35s var(--silk);
  will-change: opacity, transform;
}
.hero-trust-chips,
.tgk-scroll-trust-chips {
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
}
.hero-chip {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-right: -10px;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s var(--silk), z-index 0s;
}
.hero-chip:last-child {
  margin-right: 0;
}
.hero-trust-chips:hover .hero-chip,
.tgk-scroll-trust-chips:hover .hero-chip {
  margin-right: 4px;
}
.hero-trust-chips:hover .hero-chip:last-child,
.tgk-scroll-trust-chips:hover .hero-chip:last-child {
  margin-right: 0;
}
.hero-chip:hover {
  transform: translateY(-3px) scale(1.08);
  z-index: 2;
}
.hero-chip-ke {
  background: linear-gradient(145deg, #1a472a 0%, #0d2818 100%);
  color: #fff;
  border-color: rgba(61, 204, 142, 0.5);
}
.hero-chip-ng {
  background: linear-gradient(145deg, #1e3a5f 0%, #0f1419 100%);
  color: var(--sky2);
  border-color: rgba(255, 153, 0, 0.45);
}
.hero-chip-dev {
  background: linear-gradient(145deg, #2a1a00 0%, #141920 100%);
  color: var(--sky);
  border-color: rgba(255, 153, 0, 0.55);
}
.hero-chip-more {
  background: var(--bg3);
  color: var(--text2);
  border: 2px dashed rgba(255, 153, 0, 0.45);
  font-size: 14px;
  font-weight: 600;
}
.hero-trust-text {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 8px;
  margin: 0;
  margin-left: 4px;
  font-size: 14px;
  color: var(--text2);
  line-height: 1.4;
}
.hero-trust-word strong {
  color: var(--text);
  font-weight: 600;
}
.hero-trust-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--sky);
  opacity: 0.85;
  flex-shrink: 0;
}
.hero-trust-tail {
  color: var(--text3);
  font-weight: 400;
}

.tgk-scroll-trust {
  position: fixed;
  left: 50%;
  bottom: max(20px, env(safe-area-inset-bottom));
  z-index: 95;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px 10px 12px;
  background: rgba(15, 20, 25, 0.92);
  border: 1px solid var(--border2);
  border-radius: 999px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 153, 0, 0.12);
  transform: translate(-50%, calc(100% + 24px));
  opacity: 0;
  pointer-events: none;
  transition:
    transform 0.45s var(--silk),
    opacity 0.35s var(--silk);
}
.tgk-scroll-trust.is-armed {
  pointer-events: auto;
}
.tgk-scroll-trust.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
}
.tgk-scroll-trust.is-hidden {
  transform: translate(-50%, calc(100% + 24px));
  opacity: 0;
  pointer-events: none;
}
.tgk-scroll-trust .hero-chip {
  width: 30px;
  height: 30px;
  font-size: 9px;
  margin-right: -8px;
}
.tgk-scroll-trust-text {
  font-size: 12px;
  color: var(--text2);
  white-space: nowrap;
}
.tgk-scroll-trust-text strong {
  color: var(--text);
  font-weight: 600;
}

#about.security-section {
  padding: 80px max(24px, calc((100vw - var(--max-w)) / 2));
}
#about .tgk-about-blurb .section-sub {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
#contact.contact-section-tgk {
  padding: 100px max(48px, calc((100vw - var(--max-w)) / 2));
  background: var(--bg);
}
.contact-section-tgk .contact-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 900px) {
  .contact-section-tgk .contact-inner { grid-template-columns: 1fr; }
}
.contact-info-card,
.tgk-reach-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
}
.tgk-reach-card {
  border-color: var(--border2);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}
.tgk-reach-title,
.contact-info-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text);
  letter-spacing: -0.02em;
}
.contact-info-row {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
  align-items: flex-start;
}
.contact-info-row:last-child {
  margin-bottom: 0;
}
.tgk-contact-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 153, 0, 0.1);
  border: 1px solid rgba(255, 153, 0, 0.22);
  border-radius: 12px;
  color: var(--sky);
}
.tgk-contact-icon svg {
  width: 20px;
  height: 20px;
}
.tgk-contact-details strong {
  display: block;
  color: var(--sky);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.tgk-contact-details p {
  color: var(--text2);
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
}
.tgk-business-hours {
  line-height: 1.65;
}
.tgk-contact-details a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.25s var(--silk);
}
.tgk-contact-details a:hover {
  color: var(--sky2);
}

.tgk-contact-form-card,
.contact-form-card {
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}
.tgk-contact-form-card label,
.contact-form-card label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sky);
  margin-bottom: 8px;
}
.tgk-contact-form {
  position: relative;
}
.tgk-contact-form .tgk-form-field {
  margin-bottom: 4px;
}
.tgk-contact-form-card input,
.tgk-contact-form-card textarea,
.contact-form-card input,
.contact-form-card textarea {
  width: 100%;
  box-sizing: border-box;
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 15px;
  margin-bottom: 4px;
  transition:
    border-color 0.35s var(--silk),
    box-shadow 0.35s var(--silk),
    background 0.35s var(--silk);
}
.tgk-contact-form-card input::placeholder,
.tgk-contact-form-card textarea::placeholder,
.contact-form-card input::placeholder,
.contact-form-card textarea::placeholder {
  color: var(--text3);
}
.tgk-contact-form-card input:hover,
.tgk-contact-form-card textarea:hover,
.contact-form-card input:hover,
.contact-form-card textarea:hover {
  border-color: rgba(255, 153, 0, 0.35);
}
.tgk-contact-form-card input:focus,
.tgk-contact-form-card textarea:focus,
.contact-form-card input:focus,
.contact-form-card textarea:focus {
  outline: none;
  border-color: var(--sky);
  background: var(--bg4);
  box-shadow: 0 0 0 3px rgba(255, 153, 0, 0.18);
}
.tgk-contact-form-card input[aria-invalid='true'],
.tgk-contact-form-card textarea[aria-invalid='true'],
.contact-form-card input[aria-invalid='true'],
.contact-form-card textarea[aria-invalid='true'] {
  border-color: #e07050;
  box-shadow: 0 0 0 3px rgba(224, 112, 80, 0.2);
}
.tgk-contact-form-card textarea,
.contact-form-card textarea {
  min-height: 128px;
  resize: vertical;
  margin-bottom: 4px;
}
.tgk-contact-submit,
.contact-form-card .tgk-contact-submit,
.contact-form-card button[data-fs-submit-btn] {
  width: 100%;
  justify-content: center;
  margin-top: 20px;
  padding: 14px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
}
.tgk-contact-submit:hover,
.contact-form-card button[data-fs-submit-btn]:not(:disabled):hover {
  box-shadow: 0 12px 32px rgba(255, 153, 0, 0.25);
}
.contact-form-card button[data-fs-submit-btn]:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.tgk-formspree-banner {
  display: none;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  padding: 14px 16px;
  border-radius: 12px;
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.55;
}
.tgk-formspree-banner[data-fs-active] {
  display: flex;
}
.tgk-formspree-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 1px;
}
.tgk-formspree-success {
  background: rgba(255, 153, 0, 0.1);
  border: 1px solid rgba(255, 153, 0, 0.35);
  color: var(--text);
}
.tgk-formspree-success .tgk-formspree-icon {
  stroke: var(--sky);
}
.tgk-formspree-success span strong {
  color: var(--sky2);
}
.tgk-formspree-error {
  background: rgba(20, 25, 32, 0.9);
  border: 1px solid rgba(224, 112, 80, 0.45);
  color: var(--text2);
}
.tgk-formspree-error .tgk-formspree-icon {
  stroke: #e88b6a;
}
.tgk-field-error,
.contact-form-card span[data-fs-error] {
  display: block;
  min-height: 0;
  color: #e88b6a;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  margin: 0 0 14px;
  padding-left: 2px;
  line-height: 1.4;
}
.tgk-field-error:empty,
.contact-form-card span[data-fs-error]:empty {
  display: none;
  margin: 0;
  padding: 0;
}

.tgk-contact-form-card:has([data-fs-success][data-fs-active]) .tgk-contact-form {
  display: none;
}

[data-fs-field][aria-invalid='true'] {
  border-color: #e07050 !important;
}
[data-fs-submit-btn]:disabled {
  cursor: wait;
}

.tgk-hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}
.tgk-contact-privacy {
  margin: 4px 0 0;
  font-size: 12px;
  line-height: 1.5;
  color: var(--text3);
}
#donate .donate-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 700px;
  margin: 40px auto 0;
}
@media (max-width: 600px) {
  #donate .donate-cards { grid-template-columns: 1fr; }
}
.donate-card-opt {
  background: var(--bg3);
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.3s, transform 0.3s;
}
.donate-card-opt:hover {
  border-color: var(--sky);
  transform: translateY(-4px);
}
.donate-card-opt img {
  height: 48px;
  object-fit: contain;
  margin-bottom: 16px;
}
.donate-card-opt h3 {
  font-family: var(--font-display);
  color: var(--text);
  margin-bottom: 8px;
}
.donate-card-opt p { color: var(--text2); font-size: 0.95rem; }

#careers .careers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}
.careers-role-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 22px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.careers-role-card:hover {
  border-color: rgba(255, 153, 0, 0.45);
  transform: translateY(-3px);
}
.careers-role-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 10px;
}
.careers-role-card p {
  color: var(--text2);
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 14px;
}
.careers-role-meta {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--sky);
}
.careers-apply {
  text-align: center;
  margin: 40px 0 0;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.careers-apply-note {
  font-size: 13px;
  color: var(--text3);
}
.careers-apply-note a {
  color: var(--sky);
  text-decoration: underline;
}

#paypal-donate-wrap {
  display: none;
  max-width: 400px;
  margin: 32px auto 0;
  text-align: center;
}
.nav-links a.active { color: var(--sky); font-weight: 600; }

.logos-track-wrap:hover .logos-track {
  animation-play-state: paused;
}
.logos-track {
  animation-duration: 70s;
}

.tgk-stats-three {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 900px) {
  .tgk-stats-three {
    grid-template-columns: 1fr;
  }
}

.tgk-site-footer {
  position: relative;
  border-top: 1px solid var(--border);
  background: var(--bg);
  background-image: radial-gradient(
    ellipse 90% 60% at 50% 0%,
    rgba(255, 153, 0, 0.07) 0%,
    transparent 55%
  );
  padding: 56px max(24px, calc((100vw - var(--max-w)) / 2)) 32px;
  color: var(--text);
}
.tgk-site-footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.tgk-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px 32px;
  margin-bottom: 40px;
}
.tgk-footer-section h3 {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 16px;
}
.tgk-footer-brand h3,
.tgk-footer-brand-name {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: none;
  color: var(--text);
}
.tgk-footer-brand-name {
  margin: 0 0 10px;
}
.tgk-footer-brand p {
  color: var(--text3);
  font-size: 13px;
  line-height: 1.6;
  max-width: 300px;
  margin-bottom: 20px;
}
.tgk-social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tgk-social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text3);
  text-decoration: none;
  transition: border-color 0.25s var(--silk), color 0.25s var(--silk), background 0.25s var(--silk);
}
.tgk-icon {
  display: block;
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
}
.tgk-footer-donate .tgk-icon {
  width: 1rem;
  height: 1rem;
  margin-right: 0.4em;
  vertical-align: -0.15em;
}
.tgk-social-icons a:hover {
  background: rgba(255, 153, 0, 0.1);
  border-color: var(--sky);
  color: var(--sky);
  transform: none;
}
.tgk-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.tgk-footer-links li {
  margin-bottom: 10px;
}
.tgk-footer-links a {
  color: var(--text3);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}
.tgk-footer-links a:hover {
  color: var(--sky);
}
.tgk-footer-section > p {
  color: var(--text3);
  font-size: 13px;
  margin-bottom: 16px;
  line-height: 1.6;
}
.tgk-footer-donate {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  padding: 10px 18px;
}
.tgk-footer-sponsors {
  margin-top: 8px;
  padding: 28px 0 32px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.tgk-footer-sponsors-label {
  margin: 0 0 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text3);
}
.tgk-sponsor-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.tgk-sponsor-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.25s var(--silk), box-shadow 0.25s var(--silk);
}
.tgk-sponsor-logo:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}
.tgk-sponsor-logo img {
  display: block;
  width: auto;
  max-width: min(220px, 70vw);
  height: auto;
  max-height: 44px;
  object-fit: contain;
}
.tgk-footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  text-align: center;
  background: transparent;
}
.tgk-footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px 20px;
  margin-bottom: 12px;
}
.tgk-footer-copy {
  font-size: 13px;
  color: var(--text3);
  margin: 0;
}
.tgk-legal-links {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
}
.tgk-legal-links a {
  color: var(--text2);
  text-decoration: none;
  transition: color 0.2s ease;
}
.tgk-legal-links a:hover {
  color: var(--sky);
}
.tgk-legal-links span {
  color: var(--border2);
}
.tgk-footer-tagline {
  font-size: 13px;
  color: var(--text3);
  margin: 0;
  font-style: italic;
}
.tgk-footer-credit {
  font-size: 12px;
  color: var(--text3);
  margin: 10px 0 0;
}
.tgk-footer-credit a {
  color: var(--sky);
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.tgk-footer-credit a:hover {
  opacity: 0.85;
  text-decoration: underline;
}
@media (max-width: 900px) {
  .tgk-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .tgk-footer-brand {
    grid-column: 1 / -1;
    text-align: center;
  }
  .tgk-footer-brand p {
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
  .tgk-social-icons {
    justify-content: center;
  }
  .tgk-footer-legal {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }
  .tgk-legal-links {
    justify-content: center;
  }
  .tgk-footer-section:has(.tgk-footer-donate) {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .tgk-footer-donate {
    margin-inline: auto;
  }
}
@media (max-width: 600px) {
  .tgk-site-footer {
    padding-left: 24px;
    padding-right: 24px;
  }
  .tgk-footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .tgk-footer-section {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .tgk-footer-brand p {
    max-width: none;
  }
  .tgk-footer-links {
    width: 100%;
  }
  .tgk-footer-links li {
    margin-bottom: 8px;
  }
  .tgk-footer-donate {
    margin: 0 auto;
  }
}

.tgk-feature-visual {
  padding: 0;
  min-height: 0;
  position: relative;
  background: var(--bg3);
}
.tgk-feature-visual .panel-view-image {
  display: none;
  margin: 0;
  animation: fadein 0.45s ease;
}
.tgk-feature-visual .panel-view-image.active {
  display: block;
}
.tgk-feature-link {
  display: block;
  position: relative;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
.tgk-feature-link img {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  min-height: 0;
  object-fit: contain;
  object-position: top center;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.tgk-feature-link:hover img,
.tgk-feature-link:focus-visible img {
  opacity: 0.92;
  transform: scale(1.01);
}
.tgk-feature-link:focus-visible {
  outline: 2px solid var(--sky);
  outline-offset: 3px;
  border-radius: 4px;
}
.tgk-feature-link-hint {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  background: rgba(0, 0, 0, 0.72);
  border: 1px solid rgba(255, 153, 0, 0.45);
  border-radius: 20px;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}
.tgk-feature-link:hover .tgk-feature-link-hint,
.tgk-feature-link:focus-visible .tgk-feature-link-hint {
  opacity: 1;
  transform: translateY(0);
}
.features-section .sticky-panel {
  min-height: auto;
}
.features-section .panel-content {
  min-height: 0;
  display: block;
}

.pricing-section .tgk-price-title {
  font-size: 1.35rem;
  line-height: 1.25;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.pricing-section .price-period {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text2);
  margin-bottom: 20px;
}
.pricing-section .tgk-donate-note {
  font-size: 13px;
  color: var(--text3);
  margin: -8px 0 20px;
  line-height: 1.5;
}

.tgk-playstore-soon {
  display: inline-block;
  margin-top: 8px;
  font-weight: 600;
  color: var(--sky);
}
.tgk-app-store-soon {
  cursor: default;
  border-style: dashed;
  border-color: rgba(255, 153, 0, 0.45);
  background: rgba(255, 153, 0, 0.06);
  opacity: 0.95;
}
.tgk-app-store-soon:hover {
  border-color: rgba(255, 153, 0, 0.55);
  background: rgba(255, 153, 0, 0.1);
}
.tgk-app-store-soon .app-store-btn-name {
  color: var(--sky2);
}
.tgk-app-features {
  margin: 20px 0 24px;
  max-width: 420px;
}
.tgk-app-features li svg {
  stroke: var(--sky);
}
.tgk-app-join-btn {
  margin-bottom: 28px;
  display: inline-flex;
}
.app-section .tgk-app-btns-two {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 0;
}
.tgk-web-app-btn:hover {
  border-color: var(--sky);
}
.tgk-web-app-btn:hover svg {
  stroke: var(--sky);
}
.tgk-web-app-btn:hover .app-store-btn-name {
  color: var(--sky2);
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
}
body {
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
:where(img, video) {
  max-width: 100%;
  height: auto;
}
.tgk-contact-form-card input,
.tgk-contact-form-card textarea,
.contact-form-card input,
.contact-form-card textarea {
  font-size: 16px; 
}

@supports (padding: max(0px)) {
  nav {
    padding-left: max(16px, env(safe-area-inset-left));
    padding-right: max(16px, env(safe-area-inset-right));
  }
  .mobile-menu {
    padding-left: max(24px, env(safe-area-inset-left));
    padding-right: max(24px, env(safe-area-inset-right));
    padding-bottom: max(24px, env(safe-area-inset-bottom));
  }
  .tgk-site-footer {
    padding-bottom: max(32px, env(safe-area-inset-bottom));
  }
}

@media (max-width: 900px) {
  #contact.contact-section-tgk {
    padding: 60px 24px;
  }
  .contact-section-tgk .contact-inner {
    gap: 28px;
  }
  .tgk-contact-form-card,
  .contact-form-card {
    padding: 24px 20px;
  }
  .features-section .sticky-layout {
    gap: 28px;
  }
  .features-section .sticky-panel-wrap {
    order: -1;
  }
  .features-section .sticky-card {
    padding: 22px 20px;
  }
  .features-section .sticky-card:hover {
    transform: none;
  }
  .features-header {
    padding-left: 8px;
    padding-right: 8px;
    text-align: center;
  }
  #donate.pricing-section .pricing-grid {
    margin-top: 28px;
  }
  #donate .price-card {
    text-align: center;
  }
  #donate .price-features {
    align-items: flex-start;
    text-align: left;
    max-width: 100%;
  }
  #donate .price-btn {
    margin-inline: auto;
    max-width: 280px;
  }
  .price-card {
    padding: 28px 22px;
  }
  .app-inner > div:first-child {
    text-align: center;
  }
  .tgk-app-features {
    margin-left: auto;
    margin-right: auto;
  }
  .tgk-app-join-btn {
    margin-left: auto;
    margin-right: auto;
  }
  .app-section .tgk-app-btns-two {
    justify-content: center;
  }
  .hero-visual {
    width: 100%;
    max-width: 480px;
    margin-inline: auto;
  }
  .kenya-map-topbar {
    flex-wrap: wrap;
    row-gap: 8px;
  }
  .kenya-map-title {
    flex: 1 1 100%;
    text-align: center;
    order: -1;
  }
  .tgk-about-blurb {
    margin-bottom: 40px !important;
  }
  #about .security-badges {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .hero-sub {
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 28px;
  }
  .hero-btns {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    margin-bottom: 32px;
  }
  .hero-btns .btn-hero,
  .hero-btns .btn-outline {
    width: 100%;
    justify-content: center;
    text-align: center;
    min-height: 48px;
  }
  .hero-trust {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 12px;
    text-align: center;
  }
  .hero-trust-text {
    margin-left: 0;
    font-size: 13px;
    justify-content: center;
  }
  .tgk-scroll-trust {
    left: 16px;
    right: 16px;
    bottom: max(16px, env(safe-area-inset-bottom));
    transform: translateY(calc(100% + 24px));
    max-width: calc(100vw - 32px);
    padding: 8px 14px 8px 10px;
  }
  .tgk-scroll-trust.is-visible {
    transform: translateY(0);
  }
  .tgk-scroll-trust.is-hidden {
    transform: translateY(calc(100% + 24px));
  }
  .tgk-scroll-trust-text {
    white-space: normal;
    font-size: 11px;
    line-height: 1.35;
  }
  .hero-typewriter-line {
    font-size: clamp(20px, 6.5vw, 34px) !important;
  }
  .hero h1 .typewriter {
    white-space: normal;
    word-break: break-word;
  }
  .section-title {
    font-size: clamp(26px, 7vw, 36px);
  }
  .section-sub {
    font-size: 15px;
  }
  .stats-section.tgk-stats-three {
    gap: 16px;
  }
  .stat-block {
    padding: 20px 16px;
  }
  .features-section .panel-topbar {
    flex-wrap: wrap;
    gap: 8px;
  }
  .tgk-feature-link-hint {
    opacity: 1;
    transform: none;
    font-size: 11px;
    padding: 5px 10px;
  }
  .sticky-card-cta {
    width: 100%;
    justify-content: center;
    min-height: 44px;
  }
  #donate .price-features li {
    font-size: 13px;
  }
  #about .security-badges {
    grid-template-columns: 1fr;
  }
  #about .security-inner > div:first-child {
    text-align: center;
  }
  #about .security-inner .btn-outline {
    display: inline-flex !important;
    margin-inline: auto;
  }
  .testimonials-section > div:first-child {
    padding: 0 8px;
  }
  .faq-section .faq-inner > div:first-child {
    flex-direction: column;
    align-items: stretch !important;
  }
  .faq-section .faq-inner > div:first-child > div {
    text-align: center;
  }
  #faqToggleAll {
    width: 100%;
    justify-content: center;
    margin-bottom: 0 !important;
  }
  #phoneTiltWrap {
    perspective: none;
    padding: 0 12px;
  }
  #phoneFrame {
    width: min(260px, 88vw) !important;
    margin-inline: auto;
  }
  .app-store-btn {
    min-width: 0;
    flex: 1 1 calc(50% - 6px);
    padding: 12px 16px;
  }
  .app-section .tgk-app-btns-two {
    width: 100%;
  }
  .tgk-footer-sponsors {
    padding: 24px 12px 28px;
  }
  .tgk-sponsor-logo {
    padding: 10px 16px;
  }
  .tgk-footer-copy {
    font-size: 12px;
    text-align: center;
  }
  .tgk-legal-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 380px) {
  .nav-logo {
    font-size: 17px;
    gap: 6px;
  }
  .nav-logo-img {
    width: 34px;
    height: 34px;
  }
  .price-card .featured-badge {
    font-size: 10px;
    padding: 3px 12px;
  }
  .tgk-price-title {
    font-size: 1.15rem !important;
  }
}

@media (min-width: 1400px) {
  .hero-sub {
    max-width: 520px;
  }
}

@media (max-height: 520px) and (orientation: landscape) {
  .hero {
    padding-top: calc(var(--nav-h) + 28px) !important;
    padding-bottom: 40px !important;
  }
  .mobile-menu {
    overflow-y: auto;
    max-height: 100dvh;
    -webkit-overflow-scrolling: touch;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .hero-bg,
  .hero-trust,
  .tgk-scroll-trust,
  .logos-track,
  .testi-track,
  .sticky-card,
  .price-card,
  .tgk-sponsor-logo,
  .scroll-progress-bar {
    transition: none !important;
    animation: none !important;
  }
  .hero h1 .typewriter::after {
    animation: none;
  }
}
