/* ═══════════════════════════════════════
   IT PORI — Global Design System v3
   Fonts : Clash Display (headings) + Satoshi (body) + JetBrains Mono (labels)
   Brand : #FF6B00 orange / #080808 black
═══════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  /* Brand */
  --orange:        #FF6B00;
  --orange-dim:    #CC5200;
  --orange-glow:   rgba(255, 107, 0, 0.15);
  --orange-faint:  rgba(255, 107, 0, 0.06);
  /* Surfaces */
  --black:         #080808;
  --surface:       #0f0f0f;
  --surface2:      #161616;
  --surface3:      #1d1d1d;
  /* Borders */
  --border:        rgba(255, 107, 0, 0.13);
  --border2:       rgba(255, 255, 255, 0.07);
  /* Text */
  --text:          #EDEAE4;
  --muted:         #6e6e6e;
  --muted2:        #484848;
  /* Fonts */
  --clash:         'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --satoshi:       'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --mono:          'JetBrains Mono', SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace;
  /* Radius */
  --r:             8px;
  --r2:            12px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--text);
  font-family: var(--satoshi);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
::selection { background: var(--orange); color: #000; }
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--orange); }

/* ════════ NAV ════════ */
.nav {
  position: fixed; top: 0; width: 100%; z-index: 999;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 60px;
  background: rgba(8,8,8,0.75);
  backdrop-filter: blur(18px) saturate(1.3);
  border-bottom: 1px solid var(--border);
  transition: padding .3s ease, background .3s ease;
}
.nav.scrolled { padding: 14px 60px; background: rgba(8,8,8,0.96); }
.logo {
  font-family: var(--clash); font-size: 20px; font-weight: 700;
  letter-spacing: 4px; display: flex; align-items: center; gap: 10px;
}
.nav-logo-img {
  height: 30px;
  width: 30px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--border);
}
.logo-accent { color: var(--orange); }
.nav-links { display: flex; align-items: center; gap: 38px; list-style: none; }
.nav-links a {
  font-family: var(--satoshi); font-size: 13.5px; font-weight: 500;
  color: var(--muted); letter-spacing: .2px;
  transition: color .2s; position: relative; padding-bottom: 3px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--orange); transition: width .3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--clash); font-size: 13px; font-weight: 600;
  letter-spacing: .5px; color: #000; background: var(--orange);
  padding: 10px 22px; border-radius: var(--r);
  transition: background .2s, transform .2s;
}
.nav-btn:hover { background: #fff; transform: translateY(-1px); }
.nav-btn svg { width: 14px; height: 14px; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 1px solid var(--border2); border-radius: var(--r);
  padding: 9px; cursor: pointer;
}
.hamburger span { width: 18px; height: 1.5px; background: var(--text); display: block; }

/* ════════ TICKER ════════ */
.ticker-wrap {
  background: var(--orange); overflow: hidden;
  height: 38px; display: flex; align-items: center;
  margin-top: 86px;
}
.ticker {
  display: flex; white-space: nowrap;
  animation: tickerMove 50s linear infinite;
}
.ticker-item {
  display: inline-flex; align-items: center; gap: 16px;
  font-family: var(--mono); font-size: 10px; font-weight: 500;
  letter-spacing: 2px; color: #000; text-transform: uppercase;
  padding: 0 28px;
}
.ticker-dot { width: 3px; height: 3px; border-radius: 50%; background: rgba(0,0,0,.4); }
@keyframes tickerMove { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ════════ BUTTONS ════════ */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--clash); font-weight: 600; font-size: 13.5px;
  letter-spacing: .4px; padding: 13px 26px; border-radius: var(--r);
  border: none; cursor: pointer; transition: all .22s;
}
.btn svg { width: 15px; height: 15px; flex-shrink: 0; }
.btn-primary { background: var(--orange); color: #000; }
.btn-primary:hover { background: #fff; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(255,107,0,.22); }
.btn-outline {
  background: transparent; color: var(--text);
  border: 1px solid var(--border2);
}
.btn-outline:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-2px); }
.btn-sm { padding: 9px 18px; font-size: 12.5px; }

/* ════════ LAYOUT ════════ */
.container { max-width: 1180px; margin: 0 auto; padding: 0 48px; }
section { padding: 110px 0; }
.divider { height: 1px; background: var(--border2); }

/* ════════ SECTION LABEL ════════ */
.label {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 10px; color: var(--orange);
  letter-spacing: 3px; text-transform: uppercase; margin-bottom: 20px;
}
.label::before { content: ''; display: block; width: 24px; height: 1px; background: var(--orange); }
.section-title {
  font-family: var(--clash); font-weight: 700;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.06; letter-spacing: -.3px; margin-bottom: 18px;
}
.section-title em { color: var(--orange); font-style: normal; }
.section-sub { font-size: 15px; color: var(--muted); max-width: 500px; line-height: 1.82; }

/* ════════ GRID BG ════════ */
.grid-bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,107,0,.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,107,0,.032) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 85% 85% at 50% 30%, #000 25%, transparent 100%);
}

/* ════════ CARD ════════ */
.card {
  background: var(--surface); border: 1px solid var(--border2);
  border-radius: var(--r2); padding: 32px; position: relative; overflow: hidden;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.card:hover { border-color: rgba(255,107,0,.28); transform: translateY(-5px); box-shadow: 0 18px 52px rgba(0,0,0,.55); }
.card-icon {
  width: 46px; height: 46px; border-radius: var(--r);
  background: var(--orange-faint); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange); margin-bottom: 22px;
}
.card-icon svg { width: 21px; height: 21px; stroke-width: 1.5; }

/* ════════ BADGE ════════ */
.badge {
  display: inline-block;
  font-family: var(--mono); font-size: 9px; letter-spacing: 2px;
  background: var(--orange-faint); color: var(--orange);
  border: 1px solid var(--border); padding: 3px 9px; border-radius: 4px;
  text-transform: uppercase;
}

/* ════════ FOOTER ════════ */
footer {
  background: var(--surface); border-top: 1px solid var(--border2);
  padding: 80px 0 36px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 64px; margin-bottom: 64px;
}
.footer-logo {
  font-family: var(--clash); font-size: 18px; font-weight: 700;
  letter-spacing: 4px; display: block; margin-bottom: 16px;
}
.footer-logo .footer-logo-accent { color: var(--orange); }
.footer-desc { font-size: 13px; color: var(--muted); line-height: 1.85; max-width: 240px; margin-bottom: 26px; }
.footer-socials { display: flex; gap: 8px; }
.footer-social {
  width: 34px; height: 34px; border-radius: var(--r);
  border: 1px solid var(--border2); background: var(--surface2);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); transition: all .2s;
}
.footer-social:hover { border-color: var(--orange); color: var(--orange); }
.footer-social svg { width: 14px; height: 14px; }
.footer-col-title {
  font-family: var(--clash); font-size: 11px; font-weight: 600;
  letter-spacing: 2.5px; color: var(--text); margin-bottom: 20px; text-transform: uppercase;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 13px; color: var(--muted); transition: color .2s; }
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid var(--border2); padding-top: 32px;
  font-size: 12px; color: var(--muted2);
}
.footer-bottom a { color: var(--orange); }

/* ════════ WA FLOAT ════════ */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 998;
  width: 50px; height: 50px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,.42);
  transition: transform .2s, box-shadow .2s;
}
.wa-float:hover { transform: scale(1.1) translateY(-2px); box-shadow: 0 8px 32px rgba(37,211,102,.55); }
.wa-float svg { width: 24px; height: 24px; fill: #fff; }

/* ════════ ANIMATIONS ════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
@keyframes pulseRing {
  0%   { box-shadow: 0 0 0 0 rgba(255,107,0,.5); }
  70%  { box-shadow: 0 0 0 10px rgba(255,107,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,107,0,0); }
}
.fade-up { animation: fadeUp .65s ease forwards; opacity: 0; }
.d1 { animation-delay: .1s; } .d2 { animation-delay: .22s; }
.d3 { animation-delay: .36s; } .d4 { animation-delay: .5s; }

/* ════════ RESPONSIVE ════════ */
@media (max-width: 980px) {
  .nav { padding: 16px 24px; }
  .nav.scrolled { padding: 12px 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .container { padding: 0 24px; }
  section { padding: 76px 0; }
  .ticker-wrap { margin-top: 62px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}
