/* Clicker Remote — public site styles.
   Highloop dark family (same base as highloop.html) skinned with Clicker's
   signature amber. Brand tokens mirror the app's default "original" theme:
   ios/TCLRemote/Theme/Theme.swift (accent #F5A623 on near-black #0E0F13). */
:root {
  --bg:      #0E0F13;
  --card:    #1A1C22;
  --card-hi: #25272F;
  --line:    #2A2D36;
  --text:    #F4F2EE;
  --muted:   #A6A69E;
  --clicker: #F5A623;   /* warm amber — theater-lamp accent */
  --on-accent:#1B1300;
  --radius:  16px;
  --max-w:   760px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
a { color: var(--clicker); text-decoration: none; }
a:hover { opacity: .85; }

/* Header / nav */
header.site {
  display: flex; align-items: center; gap: 12px;
  max-width: var(--max-w); width: 100%; margin: 0 auto;
  padding: 22px 24px;
}
header.site .brand {
  display: flex; align-items: center; gap: 11px;
  font-size: 19px; font-weight: 700; letter-spacing: -.01em; color: var(--text);
}
header.site .logo {
  width: 34px; height: 34px; border-radius: 9px;
  background: linear-gradient(135deg, #F7B94A, var(--clicker));
  display: grid; place-items: center; font-size: 18px;
  box-shadow: 0 2px 12px rgba(245,166,35,.35);
}
header.site nav { margin-left: auto; display: flex; gap: 20px; font-size: 14px; }
header.site nav a { color: var(--muted); }
header.site nav a:hover { color: var(--text); opacity: 1; }

/* Shared page container */
.wrap { max-width: var(--max-w); width: 100%; margin: 0 auto; padding: 8px 24px 72px; flex: 1; }

/* ---- Marketing (landing) ---- */
.hero { text-align: center; padding: clamp(32px,7vw,72px) 0 clamp(28px,5vw,48px); }
.hero .crown {
  width: 64px; height: 64px; margin: 0 auto 20px; border-radius: 17px;
  background: linear-gradient(135deg, #F7B94A, var(--clicker));
  display: grid; place-items: center; font-size: 32px;
  box-shadow: 0 8px 28px rgba(245,166,35,.35);
}
.hero h1 { font-size: clamp(34px,7vw,52px); font-weight: 800; letter-spacing: -.03em; margin: 0 0 12px; }
.hero .tag { color: var(--muted); font-size: clamp(16px,2.6vw,20px); max-width: 34ch; margin: 0 auto; }
.badges { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 26px; }
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--clicker); color: var(--on-accent);
  font-weight: 700; font-size: 15px; padding: 12px 20px; border-radius: 13px;
}
.badge.soft { background: var(--card); color: var(--muted); border: 1px solid var(--line); font-weight: 600; }

.platstrip {
  display: flex; flex-wrap: wrap; gap: 8px 10px; justify-content: center;
  margin: 8px auto 0; max-width: 640px;
}
.chip {
  font-size: 13px; color: var(--muted);
  background: var(--card); border: 1px solid var(--line);
  padding: 6px 12px; border-radius: 999px;
}

.features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 44px; }
@media (max-width: 620px) { .features { grid-template-columns: 1fr; } }
.feature {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px; display: flex; flex-direction: column; gap: 8px;
  transition: border-color .2s, transform .2s;
}
.feature:hover { border-color: var(--clicker); transform: translateY(-2px); }
.feature .ico { font-size: 22px; }
.feature h3 { margin: 0; font-size: 17px; font-weight: 700; }
.feature p { margin: 0; color: var(--muted); font-size: 14.5px; }

.promise {
  margin-top: 40px; text-align: center; color: var(--muted);
  font-size: 14.5px; background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px 24px;
}
.promise strong { color: var(--text); }

/* ---- Section blocks (free / don't-do / pair / pro) ---- */
.section { margin-top: 52px; }
.section > h2 {
  text-align: center; font-size: clamp(13px,2.4vw,15px); font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--clicker);
  margin: 0 0 6px;
}
.section > .sub { text-align: center; color: var(--muted); font-size: 15px; margin: 0 0 22px; }

.panel {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 24px 26px;
}
.panel p { margin: 0 0 12px; color: #D8D6CF; font-size: 15.5px; }
.panel p:last-child { margin-bottom: 0; }
.panel .kicker { color: var(--text); font-weight: 700; }

/* one-time-purchase emphasis line */
.stamp {
  display: inline-block; margin-top: 4px;
  background: var(--card-hi); color: var(--text);
  font-weight: 700; font-size: 14px; padding: 8px 14px; border-radius: 11px;
  border: 1px solid var(--line);
}

.checklist { list-style: none; padding: 0; margin: 6px 0 0; display: grid; gap: 9px; }
.checklist li {
  color: #D8D6CF; font-size: 15px; padding-left: 28px; position: relative;
}
.checklist li::before {
  content: "✓"; position: absolute; left: 0; top: -1px;
  color: var(--clicker); font-weight: 800;
}

/* ---- Legal / prose ---- */
.legal h1 { font-size: clamp(30px,6vw,42px); font-weight: 800; letter-spacing: -.02em; margin: 20px 0 6px; }
.legal .updated { color: var(--muted); font-size: 14px; margin-bottom: 8px; }
.legal .lede { font-size: 17px; color: var(--muted); margin: 12px 0 28px; }
.legal h2 { font-size: 20px; font-weight: 700; margin: 34px 0 8px; letter-spacing: -.01em; }
.legal h3 { font-size: 16px; font-weight: 700; margin: 22px 0 4px; }
.legal p, .legal li { color: #D8D6CF; font-size: 15.5px; }
.legal ul { padding-left: 20px; margin: 8px 0; }
.legal li { margin: 6px 0; }
.legal strong { color: var(--text); }
.legal .callout {
  background: var(--card); border: 1px solid var(--line); border-left: 3px solid var(--clicker);
  border-radius: 12px; padding: 16px 18px; margin: 18px 0; color: #D8D6CF;
}
.legal hr { border: 0; border-top: 1px solid var(--line); margin: 32px 0; }

/* Footer */
footer.site {
  border-top: 1px solid var(--line); color: var(--muted); font-size: 13.5px;
  text-align: center; padding: 26px 24px;
}
footer.site a { color: var(--muted); }
footer.site a:hover { color: var(--text); opacity: 1; }
footer.site .dot { opacity: .5; padding: 0 6px; }
