/* ===================================================================
   TEZ888  —  "TEZ SPEED" DESIGN SYSTEM
   Tez = fast (Hindi). Green go-signal, yellow caution, pure velocity.
   Fonts: Aldrich (headings, technical squared) + Spline Sans (body)
   =================================================================== */

/* ---------- Design Tokens ---------- */
:root {
  /* Brand palette */
  --primary: #16a34a;          /* speed green */
  --primary-dark: #15803d;
  --primary-darker: #166534;
  --secondary: #fde047;        /* caution yellow */
  --secondary-dark: #facc15;
  --bg-body: #f0fdf4;          /* mint wash */
  --bg-dark: #14532d;          /* deep forest */
  --bg-dark-2: #0f3d21;        /* deeper forest */
  --text: #14532d;             /* dark green ink */
  --text-soft: #3f6b4f;
  --text-mut: #6b8a76;
  --accent: #ec4899;           /* logo magenta (the "888") */
  --white: #ffffff;
  --line: #d5ebdc;
  --line-dark: rgba(255, 255, 255, .12);

  /* Type */
  --f-head: 'Aldrich', 'Segoe UI', sans-serif;
  --f-body: 'Spline Sans', 'Segoe UI', system-ui, sans-serif;

  /* Radii */
  --r-sm: 8px;
  --r: 14px;
  --r-lg: 22px;
  --r-pill: 999px;

  /* Shadow */
  --sh-sm: 0 2px 8px rgba(20, 83, 45, .08);
  --sh: 0 10px 30px rgba(20, 83, 45, .12);
  --sh-lg: 0 24px 60px rgba(20, 83, 45, .18);
  --sh-green: 0 12px 30px rgba(22, 163, 74, .35);
  --sh-yellow: 0 12px 30px rgba(250, 204, 21, .45);

  /* Motion */
  --t-fast: .16s cubic-bezier(.2, .8, .2, 1);
  --t: .28s cubic-bezier(.2, .8, .2, 1);

  /* Layout */
  --wrap: 1200px;
  --gutter: clamp(18px, 4vw, 40px);
  --header-h: 74px;
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--f-body);
  font-weight: 400;
  color: var(--text);
  background: var(--bg-body);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
input, select, textarea { font-family: inherit; font-size: 1rem; }

h1, h2, h3, h4, h5 {
  font-family: var(--f-head);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: .5px;
  color: var(--text);
}

::selection { background: var(--secondary); color: var(--bg-dark); }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }

.section { padding: clamp(56px, 8vw, 100px) 0; position: relative; }
.section--dark { background: var(--bg-dark); color: #e8f5ec; }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }

.sec-head { max-width: 720px; margin: 0 auto clamp(34px, 5vw, 56px); text-align: center; }
.sec-head.left { margin-inline: 0; text-align: left; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-head);
  font-size: .74rem; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--primary);
  background: rgba(22, 163, 74, .1);
  padding: 7px 15px; border-radius: var(--r-pill);
  margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 16px; height: 2px; background: var(--primary); display: inline-block; }
.section--dark .eyebrow { color: var(--secondary); background: rgba(253, 224, 71, .14); }
.section--dark .eyebrow::before { background: var(--secondary); }

.h-xl { font-size: clamp(2.3rem, 6vw, 4.1rem); }
.h-lg { font-size: clamp(1.9rem, 4.4vw, 2.9rem); }
.h-md { font-size: clamp(1.4rem, 3vw, 1.9rem); }

.lead { font-size: clamp(1.02rem, 1.6vw, 1.18rem); color: var(--text-soft); }
.section--dark .lead { color: #b6d8c2; }

.text-accent { color: var(--primary); }
.text-yellow { color: var(--secondary-dark); }

/* ---------- Speed-line motifs ---------- */
/* thin diagonal streaks used as background texture */
.speedlines {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 0;
}
.speedlines::before {
  content: ""; position: absolute; inset: -20%;
  background-image: repeating-linear-gradient(
    -68deg,
    transparent 0, transparent 26px,
    rgba(22, 163, 74, .05) 26px, rgba(22, 163, 74, .05) 28px
  );
}
.section--dark .speedlines::before {
  background-image: repeating-linear-gradient(
    -68deg,
    transparent 0, transparent 26px,
    rgba(255, 255, 255, .045) 26px, rgba(255, 255, 255, .045) 28px
  );
}
.wrap { position: relative; z-index: 1; }

/* a single darting streak */
@keyframes dart {
  0%   { transform: translateX(-120%) skewX(-18deg); opacity: 0; }
  40%  { opacity: 1; }
  100% { transform: translateX(280%) skewX(-18deg); opacity: 0; }
}

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--primary);
  --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--f-head); font-size: .92rem; letter-spacing: .6px;
  padding: 14px 26px; border-radius: var(--r-pill);
  background: var(--btn-bg); color: var(--btn-fg);
  position: relative; overflow: hidden; isolation: isolate;
  transition: transform var(--t-fast), box-shadow var(--t), filter var(--t);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
/* light-sweep shine on hover — the "speed" flourish */
.btn::after {
  content: ""; position: absolute; top: 0; left: -60%; width: 45%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .55), transparent);
  transform: skewX(-20deg); z-index: -1; transition: left .5s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--sh-green); }
.btn:hover::after { left: 120%; }
.btn:active { transform: translateY(0); }

.btn--yellow { --btn-bg: var(--secondary); --btn-fg: var(--bg-dark); font-weight: 500; }
.btn--yellow:hover { box-shadow: var(--sh-yellow); }

.btn--ghost {
  --btn-bg: transparent; --btn-fg: var(--text);
  box-shadow: inset 0 0 0 2px var(--line);
}
.section--dark .btn--ghost { --btn-fg: #fff; box-shadow: inset 0 0 0 2px var(--line-dark); }
.btn--ghost:hover { box-shadow: inset 0 0 0 2px var(--primary); }

.btn--white { --btn-bg:#fff; --btn-fg: var(--bg-dark); }

.btn--lg { padding: 17px 34px; font-size: 1rem; }
.btn--block { display: flex; width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(20, 83, 45, .96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-dark);
}
.nav {
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.brand { display: flex; align-items: center; }
.brand img { height: 30px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  font-family: var(--f-head); font-size: .86rem; letter-spacing: .5px;
  color: #d7ecdd; padding: 10px 16px; border-radius: var(--r-pill);
  transition: color var(--t-fast), background var(--t-fast);
}
.nav-links a:hover, .nav-links a.active { color: #fff; background: rgba(255, 255, 255, .08); }
.nav-links a.nav-cta {
  background: var(--secondary); color: var(--bg-dark);
  box-shadow: 0 6px 16px rgba(250, 204, 21, .3);
}
.nav-links a.nav-cta:hover { background: #fff; color: var(--bg-dark); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: var(--t); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 820px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute; top: var(--header-h); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: var(--bg-dark); padding: 16px var(--gutter) 24px;
    border-bottom: 1px solid var(--line-dark);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: var(--t);
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 13px 16px; text-align: center; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1100px 500px at 88% -10%, rgba(22, 163, 74, .16), transparent 60%),
    radial-gradient(700px 420px at 5% 110%, rgba(253, 224, 71, .18), transparent 60%),
    var(--bg-body);
  padding: clamp(48px, 8vw, 96px) 0 clamp(56px, 9vw, 104px);
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(30px, 5vw, 64px);
  align-items: center;
}
.hero h1 { margin-bottom: 22px; }
.hero .flash {
  color: var(--primary);
  position: relative; display: inline-block;
}
.hero p.lead { margin-bottom: 30px; max-width: 540px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 30px; }
.hero-stats .stat b {
  font-family: var(--f-head); font-size: 1.7rem; color: var(--text); display: block;
}
.hero-stats .stat span { font-size: .82rem; color: var(--text-mut); letter-spacing: .3px; }

/* hero visual — the deposit-timer tool lives here on home */
.hero-visual { position: relative; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
}

/* speed badge chips */
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; }
.chip {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .8rem; font-weight: 500;
  background: #fff; color: var(--text-soft);
  padding: 7px 14px; border-radius: var(--r-pill); box-shadow: var(--sh-sm);
}
.chip .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--primary); box-shadow: 0 0 0 4px rgba(22, 163, 74, .18); }

/* ---------- Cards & grids ---------- */
.grid { display: grid; gap: clamp(16px, 2.4vw, 26px); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 28px; box-shadow: var(--sh-sm);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--sh); border-color: rgba(22, 163, 74, .35); }
.card .ico {
  width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center; margin-bottom: 18px;
  background: linear-gradient(135deg, var(--primary), var(--primary-darker));
  color: #fff;
}
.card .ico svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.15rem; margin-bottom: 9px; }
.card p { color: var(--text-soft); font-size: .96rem; }
/* accent top-streak that widens on hover */
.card::before {
  content: ""; position: absolute; top: 0; left: 0; height: 4px; width: 0;
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  transition: width var(--t);
}
.card:hover::before { width: 100%; }

/* numbered step card */
.step { position: relative; padding-top: 34px; }
.step .num {
  position: absolute; top: 0; left: 28px;
  font-family: var(--f-head); font-size: 2.4rem; color: var(--secondary-dark);
  opacity: .8; line-height: 1;
}

/* ---------- Game showcase ---------- */
.game-card {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--sh); border: 1px solid var(--line);
  transition: transform var(--t), box-shadow var(--t);
}
.game-card img { width: 100%; aspect-ratio: 500 / 299; object-fit: cover; transition: transform .5s ease; }
.game-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.game-card:hover img { transform: scale(1.06); }
.game-card .tag {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  font-family: var(--f-head); font-size: .72rem; letter-spacing: 1px;
  background: var(--secondary); color: var(--bg-dark);
  padding: 6px 12px; border-radius: var(--r-pill);
}
.game-card .g-body {
  position: absolute; inset: auto 0 0 0; z-index: 2;
  padding: 42px 18px 16px;
  background: linear-gradient(to top, rgba(15, 61, 33, .96), transparent);
  color: #fff;
}
.game-card .g-body h3 { color: #fff; font-size: 1.1rem; }
.game-card .g-body span { font-size: .82rem; color: #bfe4cc; }

/* ---------- Bonus banner ---------- */
.bonus-band {
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-lg);
  border: 1px solid var(--line);
}
.bonus-band img { width: 100%; }

/* ---------- Stat strip ---------- */
.stat-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat-strip .s b { font-family: var(--f-head); font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--secondary); display: block; }
.stat-strip .s span { font-size: .86rem; color: #b6d8c2; letter-spacing: .4px; }
@media (max-width: 620px) { .stat-strip { grid-template-columns: repeat(2, 1fr); gap: 26px; } }

/* ===================================================================
   INTERACTIVE TOOLS
   =================================================================== */
.tool {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--sh); padding: clamp(22px, 3vw, 34px); position: relative; overflow: hidden;
}
.tool::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}
.tool-head { display: flex; align-items: center; gap: 12px; margin-bottom: 6px; }
.tool-head .ico {
  width: 44px; height: 44px; border-radius: 12px; flex: none;
  display: grid; place-items: center; color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-darker));
}
.tool-head .ico svg { width: 22px; height: 22px; }
.tool-head h3 { font-size: 1.2rem; }
/* tools always sit on a light card — keep headings dark even in dark sections */
.section--dark .tool h3, .section--dark .tool h4 { color: var(--text); }
.tool > p.tool-sub { color: var(--text-mut); font-size: .9rem; margin-bottom: 22px; }

.field { margin-bottom: 16px; }
.field label {
  display: block; font-family: var(--f-head); font-size: .76rem; letter-spacing: 1px;
  text-transform: uppercase; color: var(--text-mut); margin-bottom: 7px;
}
.field select, .field input {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--r-sm);
  background: var(--bg-body); color: var(--text); transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.field select:focus, .field input:focus {
  outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px rgba(22, 163, 74, .14);
}

/* --- Speed Deposit Timer --- */
.timer-ring { display: grid; place-items: center; margin: 6px auto 20px; position: relative; width: 210px; height: 210px; }
.timer-ring svg { transform: rotate(-90deg); width: 210px; height: 210px; }
.timer-ring .track { fill: none; stroke: var(--line); stroke-width: 14; }
.timer-ring .prog {
  fill: none; stroke: url(#speedgrad); stroke-width: 14; stroke-linecap: round;
  stroke-dasharray: 596; stroke-dashoffset: 596;
  transition: stroke-dashoffset .1s linear;
}
.timer-ring .readout { position: absolute; text-align: center; }
.timer-ring .readout .num { font-family: var(--f-head); font-size: 2.9rem; color: var(--text); line-height: 1; }
.timer-ring .readout .unit { font-size: .8rem; color: var(--text-mut); letter-spacing: 1px; text-transform: uppercase; }
.timer-status {
  text-align: center; font-family: var(--f-head); font-size: .9rem; letter-spacing: .5px;
  padding: 12px; border-radius: var(--r-sm); margin-bottom: 18px;
  background: rgba(22, 163, 74, .08); color: var(--primary-dark); min-height: 46px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.timer-status.done { background: var(--secondary); color: var(--bg-dark); }
.timer-steps { display: flex; justify-content: space-between; gap: 6px; margin-bottom: 20px; }
.timer-steps .ts { flex: 1; text-align: center; font-size: .72rem; color: var(--text-mut); position: relative; }
.timer-steps .ts .b { width: 100%; height: 6px; border-radius: 3px; background: var(--line); margin-bottom: 7px; transition: background var(--t); }
.timer-steps .ts.on .b { background: var(--primary); }
.timer-steps .ts.on { color: var(--primary-dark); font-weight: 500; }

/* --- Tez Tap Challenge --- */
.tap-zone {
  position: relative; height: 210px; border-radius: var(--r); overflow: hidden;
  background: linear-gradient(135deg, var(--bg-dark), var(--bg-dark-2));
  display: grid; place-items: center; margin-bottom: 18px; user-select: none;
  cursor: pointer; border: 2px solid transparent; transition: border-color var(--t-fast);
}
.tap-zone.live { border-color: var(--secondary); }
.tap-zone .tap-inner { text-align: center; color: #fff; pointer-events: none; padding: 0 20px; }
.tap-zone .tap-count { font-family: var(--f-head); font-size: 4rem; line-height: 1; color: var(--secondary); }
.tap-zone .tap-label { font-size: .92rem; color: #cdebd6; margin-top: 6px; }
.tap-zone .tap-time { font-family: var(--f-head); font-size: 1.1rem; color: #fff; margin-top: 10px; }
.tap-ripple { position: absolute; border-radius: 50%; background: rgba(253, 224, 71, .5); transform: translate(-50%, -50%) scale(0); pointer-events: none; }
@keyframes ripple { to { transform: translate(-50%, -50%) scale(9); opacity: 0; } }
.tap-result { text-align: center; margin-bottom: 16px; min-height: 30px; font-weight: 500; }
.tap-result b { font-family: var(--f-head); color: var(--primary); }
.tap-bar { height: 10px; border-radius: 5px; background: var(--line); overflow: hidden; margin: 10px 0 4px; }
.tap-bar i { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--primary), var(--secondary)); transition: width .8s cubic-bezier(.2,.8,.2,1); }
.tap-scale { display: flex; justify-content: space-between; font-size: .72rem; color: var(--text-mut); }

/* --- Express Withdrawal Estimator --- */
.est-result {
  margin-top: 18px; border-radius: var(--r); overflow: hidden; border: 1.5px solid var(--line);
  opacity: 0; transform: translateY(8px); transition: var(--t); max-height: 0;
}
.est-result.show { opacity: 1; transform: none; max-height: 600px; }
.est-main { background: linear-gradient(135deg, var(--primary), var(--primary-darker)); color: #fff; padding: 22px; text-align: center; }
.est-main .lbl { font-size: .78rem; letter-spacing: 1.5px; text-transform: uppercase; opacity: .85; }
.est-main .time { font-family: var(--f-head); font-size: 2.6rem; line-height: 1.1; margin: 4px 0; }
.est-alt { background: var(--bg-body); padding: 16px 20px; display: flex; align-items: center; gap: 12px; }
.est-alt .flash-ico { width: 38px; height: 38px; border-radius: 10px; background: var(--secondary); color: var(--bg-dark); display: grid; place-items: center; flex: none; }
.est-alt .flash-ico svg { width: 20px; height: 20px; }
.est-alt p { font-size: .9rem; color: var(--text-soft); }
.est-alt p b { color: var(--primary-dark); font-family: var(--f-head); font-weight: 400; }

/* ---------- FAQ accordion ---------- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--r); margin-bottom: 12px; overflow: hidden; transition: box-shadow var(--t); }
.faq-item:hover { box-shadow: var(--sh-sm); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 19px 22px; text-align: left; font-family: var(--f-head); font-size: 1rem; color: var(--text);
}
.faq-q .pm { flex: none; width: 26px; height: 26px; border-radius: 50%; background: rgba(22,163,74,.1); color: var(--primary); display: grid; place-items: center; transition: var(--t); font-size: 1.2rem; line-height: 1; }
.faq-item.open .pm { transform: rotate(45deg); background: var(--primary); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height var(--t); }
.faq-a p { padding: 0 22px 20px; color: var(--text-soft); font-size: .96rem; }

/* ---------- Auth (login / signup) ---------- */
.auth {
  min-height: calc(100vh - var(--header-h));
  display: grid; grid-template-columns: 1.1fr 1fr; align-items: stretch;
}
.auth-aside {
  background: linear-gradient(150deg, var(--bg-dark), var(--bg-dark-2));
  color: #fff; padding: clamp(40px, 6vw, 76px) clamp(30px, 5vw, 64px);
  display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden;
}
.auth-aside h2 { color: #fff; font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 18px; }
.auth-aside p { color: #b6d8c2; margin-bottom: 26px; max-width: 440px; }
.auth-aside .a-list li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 16px; color: #d7ecdd; }
.auth-aside .a-list .tick { flex: none; width: 26px; height: 26px; border-radius: 50%; background: rgba(253,224,71,.16); color: var(--secondary); display: grid; place-items: center; }
.auth-aside .a-list .tick svg { width: 15px; height: 15px; }
.auth-main {
  display: flex; align-items: center; justify-content: center;
  padding: clamp(40px, 6vw, 72px) clamp(24px, 5vw, 56px); background: var(--bg-body);
}
.auth-card { width: 100%; max-width: 420px; }
.auth-card > h1 { font-size: clamp(1.7rem, 3vw, 2.2rem); margin-bottom: 8px; }
.auth-card > p.sub { color: var(--text-mut); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.check { display: flex; align-items: flex-start; gap: 10px; font-size: .88rem; color: var(--text-soft); margin: 4px 0 22px; }
.check input { width: 17px; height: 17px; margin-top: 3px; accent-color: var(--primary); flex: none; }
.auth-alt { text-align: center; margin-top: 22px; font-size: .92rem; color: var(--text-mut); }
.auth-alt a { color: var(--primary); font-weight: 500; }
.pw-wrap { position: relative; }
.pw-wrap .toggle { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); color: var(--text-mut); padding: 4px; }
.pw-wrap .toggle svg { width: 20px; height: 20px; }
@media (max-width: 860px) { .auth { grid-template-columns: 1fr; } .auth-aside { display: none; } }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; position: relative; overflow: hidden; }
.cta-band .btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 26px; }

/* ---------- Page hero (interior) ---------- */
.page-hero {
  background:
    radial-gradient(900px 400px at 90% -20%, rgba(22,163,74,.14), transparent 60%),
    var(--bg-dark);
  color: #fff; padding: clamp(50px, 8vw, 88px) 0 clamp(40px, 6vw, 60px);
  position: relative; overflow: hidden;
}
.page-hero h1 { color: #fff; font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 14px; }
.page-hero p { color: #b6d8c2; max-width: 620px; }
.crumb { font-size: .82rem; color: #8fc0a1; margin-bottom: 16px; font-family: var(--f-head); letter-spacing: .5px; }
.crumb a:hover { color: var(--secondary); }

/* ---------- Legal / prose ---------- */
.prose { max-width: 820px; }
.prose h2 { font-size: 1.4rem; margin: 34px 0 12px; }
.prose h3 { font-size: 1.12rem; margin: 24px 0 8px; }
.prose p, .prose li { color: var(--text-soft); margin-bottom: 12px; font-size: .98rem; }
.prose ul { padding-left: 22px; list-style: disc; }
.prose ul li { margin-bottom: 8px; }
.prose a { color: var(--primary); font-weight: 500; text-decoration: underline; }
.prose .updated { font-size: .86rem; color: var(--text-mut); margin-bottom: 26px; font-style: italic; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 48px); align-items: start; }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-methods .cm { display: flex; gap: 16px; align-items: flex-start; padding: 20px; background: #fff; border: 1px solid var(--line); border-radius: var(--r); margin-bottom: 14px; transition: var(--t); }
.contact-methods .cm:hover { box-shadow: var(--sh); transform: translateY(-3px); }
.contact-methods .cm .ico { flex: none; width: 46px; height: 46px; border-radius: 12px; background: linear-gradient(135deg, var(--primary), var(--primary-darker)); color: #fff; display: grid; place-items: center; }
.contact-methods .cm .ico svg { width: 22px; height: 22px; }
.contact-methods .cm h4 { font-family: var(--f-head); font-weight: 400; margin-bottom: 3px; }
.contact-methods .cm p, .contact-methods .cm a { color: var(--text-soft); font-size: .94rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-dark-2); color: #b6d8c2; padding: clamp(48px, 6vw, 72px) 0 28px; position: relative; overflow: hidden; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand img { height: 30px; margin-bottom: 18px; }
.footer-brand p { font-size: .92rem; max-width: 340px; color: #93bda3; }
.footer-col h4 { color: #fff; font-family: var(--f-head); font-weight: 400; font-size: .82rem; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 16px; }
.footer-col a { display: block; padding: 6px 0; font-size: .92rem; color: #b6d8c2; transition: color var(--t-fast); }
.footer-col a:hover { color: var(--secondary); }
.footer-disclaimer { border-top: 1px solid var(--line-dark); padding-top: 24px; }
.footer-disclaimer .age {
  display: inline-flex; align-items: center; gap: 8px; font-family: var(--f-head); font-size: .8rem;
  color: var(--secondary); border: 1px solid rgba(253,224,71,.4); padding: 5px 12px; border-radius: var(--r-pill); margin-bottom: 14px;
}
.footer-disclaimer p { font-size: .82rem; color: #7ba88b; margin-bottom: 12px; line-height: 1.6; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: .82rem; color: #7ba88b; }
@media (max-width: 780px) { .footer-top { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: 1 / -1; } }
@media (max-width: 480px) { .footer-top { grid-template-columns: 1fr; } }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%; background: #25d366;
  display: grid; place-items: center; box-shadow: 0 10px 30px rgba(37, 211, 102, .5);
  transition: transform var(--t);
}
.wa-float svg { width: 30px; height: 30px; fill: #fff; }
.wa-float:hover { transform: scale(1.08) translateY(-2px); }
.wa-float::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid #25d366; animation: waPulse 2s ease-out infinite;
}
@keyframes waPulse { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(1.6); opacity: 0; } }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Misc ---------- */
.center { text-align: center; }
.mt-s { margin-top: 14px; } .mt-m { margin-top: 26px; } .mt-l { margin-top: 42px; }
.mb-0 { margin-bottom: 0; }
.notice {
  display: flex; gap: 12px; align-items: flex-start; background: rgba(253,224,71,.16);
  border: 1px solid rgba(250,204,21,.5); border-radius: var(--r); padding: 16px 18px; font-size: .9rem; color: var(--text-soft);
}
.notice .ico { flex: none; color: var(--secondary-dark); }
.notice .ico svg { width: 22px; height: 22px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
