/* Hotman Studio — shared styles */
:root{
  --bg: #0b0e14;
  --bg-soft: #111623;
  --surface: #161c2b;
  --surface-2: #1c2438;
  --border: #262f45;
  --text: #eef1f8;
  --text-muted: #9aa4bf;
  --brand: #ff5b3c;
  --brand-2: #ffb14c;
  --accent: #4cc9ff;
  --radius: 16px;
  --max-width: 1140px;
  --shadow: 0 20px 60px rgba(0,0,0,0.35);
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

body{
  margin: 0;
  font-family: "Inter", "Segoe UI", -apple-system, BlinkMacSystemFont, sans-serif;
  background: radial-gradient(1200px 600px at 80% -10%, #1c2440 0%, transparent 60%),
              radial-gradient(900px 500px at -10% 20%, #241a33 0%, transparent 55%),
              var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a{ color: inherit; text-decoration: none; }
img{ max-width: 100%; display: block; }

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

/* Header */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(11,14,20,0.72);
  border-bottom: 1px solid var(--border);
}
.nav{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.brand{
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.2px;
}
.brand-mark{
  width: 34px; height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  color: #14100c;
  font-size: 1rem;
}
.nav-links{
  display: flex;
  gap: 30px;
  align-items: center;
}
.nav-links a{
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease;
}
.nav-links a:hover, .nav-links a.active{ color: var(--text); }
.nav-cta{
  padding: 10px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #14100c !important;
  font-weight: 700;
  font-size: 0.9rem;
}
.nav-toggle{
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  padding: 8px 10px;
  cursor: pointer;
}

/* Hero */
.hero{
  padding: 100px 0 80px;
  text-align: center;
}
.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 24px;
}
.dot{ width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.hero h1{
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.15;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}
.hero h1 span{
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p{
  color: var(--text-muted);
  font-size: 1.15rem;
  max-width: 640px;
  margin: 0 auto 36px;
}
.hero-actions{
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn{
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-primary{
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #14100c;
}
.btn-secondary{
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}
.btn-secondary:hover{ border-color: var(--accent); color: var(--accent); }

/* Platform strip */
.platforms{
  padding: 30px 0 70px;
}
.platforms-inner{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.platform-chip{
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 600;
}

/* Sections */
section{ padding: 70px 0; }
.section-head{
  text-align: center;
  max-width: 680px;
  margin: 0 auto 50px;
}
.section-tag{
  color: var(--brand-2);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.section-head h2{
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}
.section-head p{ color: var(--text-muted); margin: 0; }

/* Cards grid */
.grid{
  display: grid;
  gap: 24px;
}
.grid-3{ grid-template-columns: repeat(3, 1fr); }
.grid-2{ grid-template-columns: repeat(2, 1fr); }

.card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.card:hover{ transform: translateY(-4px); border-color: var(--accent); }
.card-icon{
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--surface-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 18px;
}
.card h3{ margin: 0 0 10px; font-size: 1.15rem; }
.card p{ margin: 0; color: var(--text-muted); font-size: 0.95rem; }

/* Steps */
.steps{
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.step{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
}
.step::before{
  counter-increment: step;
  content: counter(step);
  width: 36px; height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #14100c;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  margin-bottom: 16px;
}
.step h3{ margin: 0 0 8px; font-size: 1.05rem; }
.step p{ margin: 0; color: var(--text-muted); font-size: 0.92rem; }

/* Stats */
.stats{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-num{
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-label{ color: var(--text-muted); font-size: 0.9rem; margin-top: 6px; }

/* CTA band */
.cta-band{
  background: linear-gradient(135deg, rgba(255,91,60,0.14), rgba(76,201,255,0.1));
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
  margin: 0 auto;
}
.cta-band h2{ margin: 0 0 14px; font-size: clamp(1.5rem, 3vw, 2rem); }
.cta-band p{ color: var(--text-muted); margin: 0 0 30px; }

/* Legal / content pages */
.page-hero{
  padding: 70px 0 40px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.page-hero h1{ font-size: clamp(1.9rem, 4vw, 2.6rem); margin: 0 0 12px; }
.page-hero p{ color: var(--text-muted); margin: 0; }
.updated{
  display: inline-block;
  margin-top: 18px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.82rem;
}

.legal{
  max-width: 820px;
  margin: 0 auto;
  padding: 60px 24px 100px;
}
.legal h2{
  font-size: 1.35rem;
  margin: 46px 0 14px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}
.legal h2:first-of-type{ border-top: none; margin-top: 0; padding-top: 0; }
.legal p, .legal li{ color: var(--text-muted); font-size: 0.98rem; }
.legal ul{ padding-left: 20px; }
.legal strong{ color: var(--text); }
.toc{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 30px;
  margin-bottom: 10px;
}
.toc h3{ margin: 0 0 12px; font-size: 1rem; }
.toc ol{ margin: 0; padding-left: 20px; color: var(--text-muted); }
.toc a{ color: var(--accent); }
.toc a:hover{ text-decoration: underline; }

/* Team / about */
.team{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.team-card{
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 20px;
}
.avatar{
  width: 76px; height: 76px;
  border-radius: 50%;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--brand), var(--accent));
}
.team-card h3{ margin: 0 0 4px; font-size: 1.05rem; }
.team-card span{ color: var(--brand-2); font-size: 0.85rem; font-weight: 600; }
.team-card p{ color: var(--text-muted); font-size: 0.9rem; margin-top: 10px; }

.values{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.value-item{
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.value-num{
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--brand-2);
  min-width: 34px;
}

/* Footer */
.site-footer{
  border-top: 1px solid var(--border);
  padding: 50px 0 30px;
  background: var(--bg-soft);
  margin-top: 60px;
}
.footer-grid{
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 36px;
}
.footer-grid h4{ margin: 0 0 14px; font-size: 0.92rem; color: var(--text); }
.footer-grid p{ color: var(--text-muted); font-size: 0.9rem; max-width: 320px; }
.footer-links{ list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-links a{ color: var(--text-muted); font-size: 0.9rem; }
.footer-links a:hover{ color: var(--text); }
.footer-bottom{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 12px;
}

/* Responsive */
@media (max-width: 900px){
  .grid-3, .steps, .stats, .team, .values{ grid-template-columns: repeat(2, 1fr); }
  .footer-grid{ grid-template-columns: 1fr; }
}
@media (max-width: 640px){
  .nav-links{
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: var(--bg-soft);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 20px 24px;
    gap: 18px;
    display: none;
  }
  .nav-links.open{ display: flex; }
  .nav-toggle{ display: block; }
  .grid-3, .grid-2, .steps, .stats, .team, .values{ grid-template-columns: 1fr; }
  .cta-band{ padding: 40px 24px; }
}
