@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap');

/* ── TOKENS ──────────────────────────────────────────────── */
:root {
  --cream:        #F5F0E8;
  --cream-deep:   #EDE8DF;
  --cream-light:  #FAF8F4;
  --white:        #FFFFFF;

  --ink:          #0C0C0C;
  --ink-2:        #1A1A1A;
  --ink-3:        #2E2E2E;
  --muted:        #6B6B6B;
  --faint:        #AEAEAE;
  --border:       #DDD8CE;
  --border-dark:  #C8C2B6;

  --orange:       #E8600A;
  --orange-lt:    #F97316;
  --orange-dim:   rgba(232,96,10,0.08);
  --orange-glow:  rgba(232,96,10,0.15);

  --r-sm:  6px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 26px;

  --ease: cubic-bezier(0.4,0,0.2,1);
  --t: all 0.22s var(--ease);

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.05);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.1), 0 4px 12px rgba(0,0,0,0.06);
}

/* ── RESET ───────────────────────────────────────────────── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:'Inter',-apple-system,sans-serif;
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
  line-height:1.6;
}
::-webkit-scrollbar{width:5px}
::-webkit-scrollbar-track{background:var(--cream-deep)}
::-webkit-scrollbar-thumb{background:var(--orange);border-radius:3px}

/* ── UTILS ───────────────────────────────────────────────── */
.wrap{max-width:1120px;margin:0 auto;padding:0 28px}
.label{
  display:inline-block;
  font-size:11px;font-weight:700;letter-spacing:0.12em;text-transform:uppercase;
  color:var(--orange);margin-bottom:12px;
}
.hl{
  background:linear-gradient(90deg, var(--ink) 0%, var(--orange) 100%);
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;
}

/* ── NAV ─────────────────────────────────────────────────── */
.nav{
  position:fixed;top:0;left:0;right:0;z-index:200;
  height:62px;
  border-bottom:1px solid var(--border);
  background:rgba(245,240,232,0.92);
  backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px);
}
.nav-inner{
  max-width:1120px;margin:0 auto;padding:0 28px;
  height:100%;display:flex;align-items:center;justify-content:space-between;
}
.nav-logo{display:flex;align-items:center;gap:10px;text-decoration:none}
.nav-logo img{height:32px;width:auto;border-radius:7px}
.nav-links{display:flex;align-items:center;gap:2px}
.nav-links a{
  font-size:14px;font-weight:500;color:var(--muted);
  text-decoration:none;padding:6px 14px;border-radius:var(--r-sm);
  transition:var(--t);
}
.nav-links a:hover{color:var(--ink);background:var(--cream-deep)}
.nav-pill{
  background:var(--ink) !important;
  color:var(--cream) !important;font-weight:700 !important;
  padding:7px 18px !important;border-radius:var(--r-sm) !important;
}
.nav-pill:hover{background:var(--orange) !important;color:#fff !important;transform:translateY(-1px)}

/* ── HERO ────────────────────────────────────────────────── */
.hero{
  position:relative;
  padding:140px 28px 96px;
  background:var(--cream);
  overflow:hidden;
}
.hero::before{
  content:'';
  position:absolute;inset:0;pointer-events:none;z-index:0;
  background:
    radial-gradient(ellipse 60% 50% at 50% -10%, rgba(232,96,10,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 80% 90%, rgba(232,96,10,0.04) 0%, transparent 60%);
}
.hero-inner{
  position:relative;z-index:1;
  max-width:1120px;margin:0 auto;
  display:grid;grid-template-columns:1fr 420px;gap:64px;align-items:center;
}
.hero-tag{
  display:inline-flex;align-items:center;gap:8px;
  font-size:12px;font-weight:600;letter-spacing:0.08em;text-transform:uppercase;
  color:var(--orange);
  background:var(--orange-dim);border:1px solid rgba(232,96,10,0.18);
  padding:5px 14px;border-radius:30px;margin-bottom:28px;
}
.hero-dot{width:6px;height:6px;border-radius:50%;background:var(--orange);animation:blink 2s infinite;flex-shrink:0}
@keyframes blink{0%,100%{opacity:1;transform:scale(1)}50%{opacity:0.3;transform:scale(1.5)}}

.hero-h1{
  font-size:clamp(44px,5.5vw,78px);font-weight:900;
  line-height:1.03;letter-spacing:-0.04em;
  color:var(--ink);margin-bottom:22px;
}
.hero-h1 em{font-style:normal;color:var(--orange)}
.hero-sub{
  font-size:17px;color:var(--muted);line-height:1.75;
  max-width:460px;margin-bottom:40px;
}
.btns{display:flex;gap:12px;flex-wrap:wrap}
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  font-size:14px;font-weight:700;font-family:inherit;
  padding:12px 24px;border-radius:var(--r-md);
  text-decoration:none;cursor:pointer;border:none;
  transition:var(--t);letter-spacing:-0.01em;
}
.btn-primary{
  background:var(--ink);color:var(--cream);
  box-shadow:var(--shadow-sm);
}
.btn-primary:hover{background:var(--orange);color:#fff;transform:translateY(-2px);box-shadow:var(--shadow-md)}
.btn-ghost{
  background:transparent;color:var(--ink-3);
  border:1.5px solid var(--border-dark);
}
.btn-ghost:hover{border-color:var(--orange);color:var(--orange);transform:translateY(-2px)}

/* hero panel */
.hero-panel{
  background:var(--white);
  border:1px solid var(--border);
  border-radius:var(--r-xl);
  box-shadow:var(--shadow-lg);
  overflow:hidden;
}
.hero-panel-head{
  padding:14px 18px;border-bottom:1px solid var(--border);
  display:flex;align-items:center;gap:6px;
  background:var(--cream-light);
}
.hp-dot{width:10px;height:10px;border-radius:50%}
.hp-label{font-size:11px;font-weight:600;color:var(--faint);margin-left:6px}
.hero-panel-body{padding:14px}
.hp-row{
  display:flex;align-items:center;gap:12px;
  padding:9px 12px;border-radius:var(--r-sm);margin-bottom:4px;
  background:var(--cream-light);border:1px solid var(--border);
  text-decoration:none;
  transition:var(--t);
}
.hp-row:last-child{margin-bottom:0}
.hp-row:hover{border-color:var(--orange);background:var(--orange-dim)}
.hp-logo{
  width:30px;height:30px;border-radius:7px;
  background:var(--white);
  display:flex;align-items:center;justify-content:center;
  overflow:hidden;flex-shrink:0;
  border:1px solid var(--border);
}
.hp-logo img{width:100%;height:100%;object-fit:contain}
.hp-name{font-size:13px;font-weight:600;color:var(--ink);flex:1}
.hp-cat{
  font-size:10px;font-weight:700;letter-spacing:0.05em;
  padding:3px 8px;border-radius:20px;
}

/* ── STATS ───────────────────────────────────────────────── */
.stats{
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
  background:var(--white);
}
.stats-grid{
  max-width:1120px;margin:0 auto;padding:0 28px;
  display:grid;grid-template-columns:repeat(4,1fr);
}
.stat{
  padding:40px 20px;text-align:center;
  border-right:1px solid var(--border);
  transition:var(--t);
}
.stat:last-child{border-right:none}
.stat:hover .stat-n{color:var(--orange)}
.stat-n{
  font-size:44px;font-weight:900;letter-spacing:-0.05em;
  color:var(--ink);transition:var(--t);line-height:1;
}
.stat-n b{color:var(--orange);font-weight:900}
.stat-l{font-size:13px;color:var(--muted);font-weight:500;margin-top:6px}

/* ── SECTION ─────────────────────────────────────────────── */
.section{position:relative;padding:96px 28px}
.section-hd{margin-bottom:56px}
.section-title{
  font-size:clamp(28px,3.5vw,42px);font-weight:800;
  letter-spacing:-0.03em;color:var(--ink);line-height:1.15;
}
.section-sub{font-size:16px;color:var(--muted);margin-top:12px;max-width:520px;line-height:1.7}

/* ── PRODUCT GRID ────────────────────────────────────────── */
.grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}
.pcard{
  background:var(--white);
  border:1px solid var(--border);
  border-radius:var(--r-lg);
  padding:24px 20px 20px;
  text-decoration:none;
  display:flex;flex-direction:column;gap:12px;
  transition:var(--t);
  position:relative;
  box-shadow:var(--shadow-sm);
}
.pcard:hover{
  border-color:var(--orange);
  transform:translateY(-4px);
  box-shadow:var(--shadow-lg);
}
.pcard-top{display:flex;align-items:flex-start;justify-content:space-between;gap:8px}
.pcard-logo{
  width:52px;height:52px;border-radius:14px;
  background:var(--cream-light);
  border:1px solid var(--border);
  overflow:hidden;flex-shrink:0;
  display:flex;align-items:center;justify-content:center;
  transition:var(--t);box-shadow:var(--shadow-sm);
}
.pcard-logo img{width:100%;height:100%;object-fit:contain}
.pcard:hover .pcard-logo{border-color:var(--c,var(--orange));box-shadow:0 0 0 3px rgba(232,96,10,0.12)}
.pcard-badge{
  font-size:10px;font-weight:700;letter-spacing:0.06em;text-transform:uppercase;
  padding:3px 9px;border-radius:20px;
  background:var(--cream-deep);border:1px solid var(--border);
  color:var(--muted);white-space:nowrap;margin-top:2px;
}
.pcard-name{
  font-size:16px;font-weight:800;color:var(--ink);
  letter-spacing:-0.02em;
}
.pcard-desc{
  font-size:13px;color:var(--muted);line-height:1.65;flex:1;
}
.pcard-foot{
  display:flex;align-items:center;justify-content:space-between;
  padding-top:12px;border-top:1px solid var(--border);
}
.pcard-domain{font-size:11px;color:var(--faint);font-weight:500}
.pcard-visit{
  font-size:12px;font-weight:700;color:var(--c,var(--orange));
  display:flex;align-items:center;gap:4px;
  opacity:0;transition:var(--t);
}
.pcard:hover .pcard-visit{opacity:1}
.pcard-visit svg{width:12px;height:12px}

/* ── ABOUT ───────────────────────────────────────────────── */
.about{background:var(--white)}
.about-grid{
  display:grid;grid-template-columns:1fr 1fr;
  gap:72px;align-items:start;
}
.pillars{display:flex;flex-direction:column;gap:12px;margin-top:32px}
.pillar{
  display:flex;gap:16px;align-items:flex-start;
  padding:20px;border-radius:var(--r-md);
  border:1px solid var(--border);background:var(--cream-light);
  transition:var(--t);
}
.pillar:hover{border-color:var(--orange);background:var(--orange-dim)}
.pillar-icon{
  width:38px;height:38px;border-radius:10px;flex-shrink:0;
  background:var(--orange-dim);border:1px solid rgba(232,96,10,0.18);
  display:flex;align-items:center;justify-content:center;
  color:var(--orange);transition:var(--t);
}
.pillar-icon svg{width:17px;height:17px}
.pillar:hover .pillar-icon{background:var(--orange);color:#fff;border-color:var(--orange)}
.pillar-title{font-size:14px;font-weight:700;color:var(--ink);margin-bottom:3px}
.pillar-desc{font-size:13px;color:var(--muted);line-height:1.6}

.blockquote{
  border-left:3px solid var(--orange);
  background:var(--cream-light);
  border-radius:0 var(--r-lg) var(--r-lg) 0;
  border-top:1px solid var(--border);border-right:1px solid var(--border);border-bottom:1px solid var(--border);
  padding:28px 28px 28px 30px;
  font-size:18px;font-weight:600;font-style:italic;
  color:var(--ink-3);line-height:1.55;
}
.blockquote cite{
  display:block;margin-top:18px;
  font-size:13px;font-style:normal;font-weight:500;color:var(--muted);
}
.blockquote cite strong{color:var(--orange)}

.founder-card{
  display:flex;align-items:center;gap:16px;
  background:var(--cream-light);border:1px solid var(--border);
  border-radius:var(--r-md);padding:20px;margin-top:16px;
  transition:var(--t);
}
.founder-card:hover{border-color:var(--orange)}
.founder-avatar{
  width:50px;height:50px;border-radius:50%;flex-shrink:0;
  background:var(--ink);
  display:flex;align-items:center;justify-content:center;
  font-size:20px;font-weight:800;color:var(--cream);
}
.founder-name{font-size:15px;font-weight:700;color:var(--ink)}
.founder-role{font-size:12px;color:var(--muted);margin-top:2px}
.founder-link{
  margin-left:auto;
  display:flex;align-items:center;gap:6px;
  font-size:13px;font-weight:600;color:var(--orange);
  text-decoration:none;transition:var(--t);
  padding:8px 14px;border:1.5px solid rgba(232,96,10,0.25);
  border-radius:var(--r-sm);background:var(--orange-dim);
}
.founder-link:hover{background:var(--orange);color:#fff;border-color:var(--orange)}
.founder-link svg{width:14px;height:14px}

/* ── CONTACT ─────────────────────────────────────────────── */
.contact-inner{max-width:600px;margin:0 auto;text-align:center}
.contact-options{
  display:grid;grid-template-columns:1fr 1fr;gap:14px;
  margin-top:40px;
}
.contact-opt{
  display:flex;flex-direction:column;align-items:center;gap:10px;
  padding:30px 20px;border-radius:var(--r-xl);
  border:1.5px solid var(--border);background:var(--white);
  box-shadow:var(--shadow-sm);
  text-decoration:none;transition:var(--t);
}
.contact-opt:hover{border-color:var(--orange);transform:translateY(-4px);box-shadow:var(--shadow-lg)}
.contact-opt-icon{
  width:52px;height:52px;border-radius:14px;
  background:var(--orange-dim);border:1px solid rgba(232,96,10,0.18);
  display:flex;align-items:center;justify-content:center;
  color:var(--orange);transition:var(--t);
}
.contact-opt-icon svg{width:22px;height:22px}
.contact-opt:hover .contact-opt-icon{background:var(--orange);color:#fff;border-color:var(--orange)}
.contact-opt-label{font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:0.08em;color:var(--faint)}
.contact-opt-value{font-size:15px;font-weight:700;color:var(--ink)}

/* ── FOOTER ──────────────────────────────────────────────── */
.footer{
  border-top:1px solid var(--border);
  padding:40px 28px;background:var(--cream-deep);
}
.footer-inner{
  max-width:1120px;margin:0 auto;
  display:flex;align-items:center;justify-content:space-between;
  flex-wrap:wrap;gap:16px;
}
.footer-logo{display:flex;align-items:center;gap:10px;text-decoration:none}
.footer-logo img{height:26px;border-radius:6px}
.footer-copy{font-size:13px;color:var(--faint);margin-top:6px}
.footer-products{display:flex;flex-wrap:wrap;gap:4px;justify-content:flex-end}
.footer-products a{
  font-size:12px;color:var(--muted);text-decoration:none;
  padding:4px 10px;border-radius:var(--r-sm);transition:var(--t);
}
.footer-products a:hover{color:var(--orange);background:var(--white)}

/* ── ANIMATIONS ──────────────────────────────────────────── */
.reveal{opacity:0;transform:translateY(18px);transition:opacity 0.5s var(--ease),transform 0.5s var(--ease)}
.reveal.on{opacity:1;transform:translateY(0)}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media(max-width:1020px){
  .hero-inner{grid-template-columns:1fr;gap:48px}
  .hero-panel{max-width:480px}
  .grid{grid-template-columns:repeat(2,1fr)}
  .about-grid{grid-template-columns:1fr;gap:48px}
  .stats-grid{grid-template-columns:repeat(2,1fr)}
  .stat:nth-child(2){border-right:none}
  .stat:nth-child(3){border-top:1px solid var(--border)}
}
@media(max-width:640px){
  .grid{grid-template-columns:1fr}
  .contact-options{grid-template-columns:1fr}
  .hero-h1{font-size:40px}
  .btns{flex-direction:column}
  .btn{width:100%}
  .stats-grid{grid-template-columns:1fr 1fr}
}
