/* ============================================================
   wetrigr.css — shared styles for all pages
   To change brand colours, fonts, or spacing — edit here only.
   ============================================================ */

/* ── TOKENS ── */
:root {
  --navy:         #0f1117;
  --navy2:        #161b27;
  --navy3:        #1e2538;
  --orange:       #ff6a00;
  --orange2:      #ff8c00;
  --orange-light: #ffb347;
  --white:        #ffffff;
  --muted:        #8b95a8;
  --border:       rgba(255,255,255,0.08);
  --red:          #ff4455;
  --amber:        #ffaa00;
  --green:        #22cc88;
  --grad:         linear-gradient(135deg, #ff6a00, #ff8c00, #ffb347);

  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  24px;

  --font: 'Inter', sans-serif;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--navy);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── TYPOGRAPHY ── */
.eyebrow {
  font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--orange); margin-bottom: 14px;
}
.section-title {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 900; letter-spacing: -1.5px; line-height: 1.05;
  margin-bottom: 14px;
}
.section-sub {
  color: var(--muted); font-size: 18px;
  max-width: 560px; line-height: 1.65;
}
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── NAV ── */
.wt-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 24px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(15,17,23,0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-pill {
  width: 36px; height: 20px; background: var(--grad);
  border-radius: 20px; display: flex; align-items: center; justify-content: center;
}
.nav-pill::after { content: '›'; color: white; font-size: 18px; font-weight: 900; margin-left: 2px; }
.nav-wordmark { font-size: 20px; font-weight: 800; color: white; }
.nav-wordmark em { color: var(--orange); font-style: normal; }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 14px; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--white); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: none; border-radius: var(--radius-md);
  font-family: var(--font); font-weight: 700; cursor: pointer;
  text-decoration: none; transition: opacity .2s, transform .15s;
  white-space: nowrap;
}
.btn:hover { opacity: .88; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-sm  { padding: 9px 18px;  font-size: 14px; }
.btn-md  { padding: 14px 26px; font-size: 15px; }
.btn-lg  { padding: 17px 32px; font-size: 16px; font-weight: 800; }
.btn-full { width: 100%; }

.btn-orange  { background: var(--grad); color: white; }
.btn-ghost   { background: transparent; color: white; border: 1px solid var(--border); }
.btn-ghost:hover { border-color: rgba(255,106,0,.4); background: rgba(255,106,0,.06); }
.btn-wa      { background: #25D366; color: white; }
.btn-nav     { background: var(--grad); color: white; border-radius: var(--radius-sm); padding: 9px 18px; font-size: 14px; font-weight: 700; text-decoration: none; }

/* ── CARDS ── */
.card {
  background: var(--navy2); border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color .2s, transform .2s;
}
.card:hover { border-color: rgba(255,106,0,.25); }
.card-p { padding: 32px; }

/* ── SECTIONS ── */
.section       { padding: 88px 24px; }
.section-dark  { background: var(--navy); }
.section-mid   { background: var(--navy2); }
.section-inner { max-width: 1020px; margin: 0 auto; }

/* ── BADGE ── */
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,106,0,.12); border: 1px solid rgba(255,106,0,.3);
  border-radius: 100px; padding: 6px 16px;
  font-size: 12px; font-weight: 700; color: var(--orange-light);
  text-transform: uppercase; letter-spacing: 1px;
}
.badge-dot {
  width: 7px; height: 7px; background: var(--orange);
  border-radius: 50%; animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.35} }

/* ── FORMS ── */
.form-label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.form-hint  { font-size: 13px; color: var(--muted); margin-bottom: 8px; }
.form-input {
  width: 100%; background: var(--navy2); border: 1.5px solid var(--border);
  border-radius: var(--radius-md); padding: 13px 18px;
  font-size: 16px; color: var(--white); outline: none;
  transition: border-color .2s; font-family: var(--font);
}
.form-input:focus { border-color: var(--orange); }
.form-input::placeholder { color: var(--muted); }
.form-group { margin-bottom: 18px; }

/* ── FOOTER ── */
.wt-footer {
  background: var(--navy2); border-top: 1px solid var(--border);
  padding: 40px 24px; color: var(--muted); font-size: 14px;
}
.wt-footer a { color: var(--muted); text-decoration: none; transition: color .2s; }
.wt-footer a:hover { color: white; }
.footer-inner {
  max-width: 1020px; margin: 0 auto;
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 16px;
}
.footer-logo { font-size: 18px; font-weight: 800; color: white; }
.footer-logo em { color: var(--orange); font-style: normal; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }

/* ── UTILS ── */
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.text-muted  { color: var(--muted); }
.text-orange { color: var(--orange); }
.text-center { text-align: center; }
.divider { height: 1px; background: var(--border); margin: 32px 0; }

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
  .nav-links { display: none; }
  .section { padding: 64px 20px; }
  .section-title { letter-spacing: -1px; }
  .hide-mobile { display: none; }
}
