/* ============================================================
   MyClawAgent.io — Stylesheet
   Black / Cream / Orange — openclaw.ai-inspired layout
   ============================================================ */

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

:root {
  --bg:       #080706;
  --bg2:      #111009;
  --bg3:      #1A1812;
  --border:   rgba(245,237,210,0.09);
  --accent:   #E8733A;
  --accent2:  #F0A06A;
  --accent-glow: rgba(232,115,58,0.25);
  --text:     #F5EDD8;
  --muted:    #9A8E78;
  --white:    #FBF6EC;
  --teal:     #00CDB0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Prompt', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ── CONTAINER ── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.18s ease;
  cursor: pointer;
  border: none;
  font-family: 'Prompt', sans-serif;
  letter-spacing: -0.1px;
}
.btn-sm    { padding: 9px 20px;  font-size: 14px; background: var(--accent); color: #fff; }
.btn-lg    { padding: 14px 30px; font-size: 15px; background: var(--accent); color: #fff; }
.btn-xl    { padding: 18px 44px; font-size: 17px; background: var(--accent); color: #fff; border-radius: 10px; font-weight: 700; }
.btn-ghost { background: transparent; border: 1px solid rgba(245,237,210,0.18); color: var(--text); }

.btn:hover, .btn-sm:hover, .btn-lg:hover, .btn-xl:hover {
  background: #C4561F;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px var(--accent-glow);
}
.btn-ghost:hover {
  background: rgba(245,237,210,0.06);
  border-color: rgba(245,237,210,0.28);
  transform: translateY(-1px);
}

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8,7,6,0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-size: 19px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo-dot { color: var(--accent); }
.logo-icon { width: 32px; height: 32px; display: block; }

/* ── CUSTOM CLAW CURSOR ── */
body {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Cg transform='rotate(-30,16,16)'%3E%3Cellipse cx='16' cy='22' rx='6' ry='9' fill='%23E8733A'/%3E%3Cellipse cx='10' cy='10' rx='3.5' ry='7' fill='%23E8733A' transform='rotate(-20,10,10)'/%3E%3Cellipse cx='22' cy='10' rx='3.5' ry='7' fill='%23E8733A' transform='rotate(20,22,10)'/%3E%3Cellipse cx='7' cy='14' rx='3' ry='6' fill='%23E8733A' transform='rotate(-35,7,14)'/%3E%3Cellipse cx='25' cy='14' rx='3' ry='6' fill='%23E8733A' transform='rotate(35,25,14)'/%3E%3C/g%3E%3C/svg%3E") 16 16, auto;
}
a, button, .btn, .mascot-wrap { cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Cg transform='rotate(-30,16,16)'%3E%3Cellipse cx='16' cy='22' rx='6' ry='9' fill='%23ff5500'/%3E%3Cellipse cx='10' cy='10' rx='3.5' ry='7' fill='%23ff5500' transform='rotate(-20,10,10)'/%3E%3Cellipse cx='22' cy='10' rx='3.5' ry='7' fill='%23ff5500' transform='rotate(20,22,10)'/%3E%3Cellipse cx='7' cy='14' rx='3' ry='6' fill='%23ff5500' transform='rotate(-35,7,14)'/%3E%3Cellipse cx='25' cy='14' rx='3' ry='6' fill='%23ff5500' transform='rotate(35,25,14)'/%3E%3C/g%3E%3C/svg%3E") 16 16, pointer; }

/* ── TICKER ── */
.ticker-wrap {
  overflow: hidden;
  background: var(--accent);
  padding: 11px 0;
}
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  animation: ticker-scroll 38s linear infinite;
  white-space: nowrap;
}
.ticker span { font-size: 13px; font-weight: 500; color: #fff; font-family: 'Prompt', sans-serif; white-space: nowrap; }
.ticker-dot { color: rgba(255,255,255,0.4) !important; font-size: 18px !important; }

/* ── MASCOT ANIMATIONS ── */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}
@keyframes shadow-pulse {
  0%, 100% { transform: scaleX(1); opacity: 0.3; }
  50%       { transform: scaleX(0.7); opacity: 0.15; }
}
@keyframes wiggle {
  0%,100% { transform: rotate(0deg); }
  15%     { transform: rotate(-18deg) scale(1.1); }
  30%     { transform: rotate(18deg) scale(1.1); }
  45%     { transform: rotate(-12deg); }
  60%     { transform: rotate(12deg); }
  75%     { transform: rotate(-5deg); }
  90%     { transform: rotate(5deg); }
}
@keyframes spin {
  0%   { transform: rotate(0deg) scale(1); }
  50%  { transform: rotate(180deg) scale(1.2); }
  100% { transform: rotate(360deg) scale(1); }
}
@keyframes bounce-big {
  0%,100% { transform: translateY(0) scaleY(1); }
  30%     { transform: translateY(-40px) scaleY(1.1); }
  60%     { transform: translateY(-20px) scaleY(1.05); }
  80%     { transform: translateY(-8px); }
}
@keyframes flip {
  0%   { transform: rotateY(0deg) scale(1); }
  50%  { transform: rotateY(180deg) scale(1.15); }
  100% { transform: rotateY(360deg) scale(1); }
}

.mascot-wrap {
  position: relative;
  width: fit-content;
  margin: 0 auto 28px;
  cursor: pointer;
  transition: transform 1.5s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}
.mascot-shadow {
  width: 60px; height: 12px;
  background: rgba(232,115,58,0.25);
  border-radius: 50%;
  margin: 6px auto 0;
  animation: shadow-pulse 2.8s ease-in-out infinite;
}
.hero-mascot {
  width: 90px; height: 90px;
  display: block;
  animation: float 2.8s ease-in-out infinite;
  cursor: pointer;
}
.dance-wiggle  { animation: wiggle 0.7s ease-in-out !important; }
.dance-spin    { animation: spin 0.6s ease-in-out !important; }
.dance-bounce  { animation: bounce-big 0.7s ease-in-out !important; }
.dance-flip    { animation: flip 0.6s ease-in-out !important; }

/* ── HERO ── */
.hero {
  padding: 72px 0 64px;
  text-align: center;
}
.hero-mascot {
  width: 90px;
  height: 90px;
  margin: 0 auto 28px;
  display: block;
}
.badge {
  display: inline-block;
  background: rgba(232,115,58,0.12);
  border: 1px solid rgba(232,115,58,0.3);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.hero h1 {
  font-size: clamp(38px, 6.5vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--white);
  margin-bottom: 10px;
}
.hero-tagline {
  font-size: clamp(13px, 1.5vw, 15px);
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.75;
}
.hero-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.hero-note { font-size: 13px; color: var(--muted); }

/* ── STATS BAR ── */
.stats-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
  background: var(--bg2);
}
.stats-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 52px;
  gap: 4px;
}
.stat-num   { font-size: 22px; font-weight: 800; color: var(--accent); letter-spacing: -0.5px; }
.stat-label { font-size: 12px; color: var(--muted); font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; }
.stat-divider { width: 1px; height: 36px; background: var(--border); }

/* ── PROOF BAR ── */
.proof-bar {
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  background: var(--bg);
}
.proof-bar .container {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.proof-bar p {
  font-size: 11px;
  color: var(--muted);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 600;
}
.proof-logos { display: flex; gap: 28px; flex-wrap: wrap; align-items: center; }
.proof-logos span { font-size: 13px; font-weight: 600; color: rgba(245,237,210,0.22); letter-spacing: 0.3px; }

/* ── SECTION COMMONS ── */
section { padding: 88px 0; }
h2 {
  font-size: clamp(26px, 3.8vw, 42px);
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--white);
  margin-bottom: 14px;
}
.section-header { display: flex; align-items: baseline; gap: 10px; margin-bottom: 14px; }
.section-arrow { color: var(--accent); font-size: 28px; font-weight: 800; }
.section-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 48px;
  line-height: 1.75;
}

/* ── BUILT FOR ── */
.built-for { background: var(--bg2); }
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 26px 22px;
  transition: border-color 0.2s, transform 0.2s;
}
.card:hover { border-color: rgba(232,115,58,0.35); transform: translateY(-2px); }
.card h3 { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.card p  { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ── ALWAYS ON ── */
.always-on { background: var(--bg); }
.always-on-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.always-on-text .section-sub { margin-bottom: 0; }
.timeline { display: flex; flex-direction: column; border-left: 1px solid var(--border); padding-left: 28px; }
.tl-item { padding: 16px 0; position: relative; }
.tl-item::before {
  content: '';
  position: absolute;
  left: -35px; top: 23px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
}
.tl-time { font-size: 11px; font-weight: 700; color: var(--accent); margin-bottom: 4px; letter-spacing: 0.8px; text-transform: uppercase; }
.tl-text { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ── HOW IT WORKS ── */
.how { background: var(--bg2); }
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 22px;
}
.step {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 30px 26px;
}
.step-num { display: none; }
.step-mascot-num {
  position: relative;
  width: 52px; height: 52px;
  margin-bottom: 16px;
}
.step-mascot-num img {
  width: 52px; height: 52px;
  display: block;
  filter: drop-shadow(0 0 6px var(--accent-glow));
}
.step-mascot-num span {
  position: absolute;
  bottom: -4px; right: -6px;
  background: var(--accent);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--bg2);
  font-family: 'Prompt', sans-serif;
}
.step h3 { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.step p  { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ── COMPARISON ── */
.comparison { background: var(--bg); }
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  max-width: 760px;
}
.compare-col { border-radius: 12px; padding: 30px 26px; border: 1px solid var(--border); }
.compare-col.bad  { background: var(--bg2); }
.compare-col.good { background: var(--bg3); border-color: rgba(232,115,58,0.32); }
.compare-col h3 { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 18px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.compare-col.good h3 { color: var(--accent); }
.compare-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.compare-col.bad  li { font-size: 14px; color: var(--muted); padding-left: 16px; position: relative; }
.compare-col.bad  li::before { content: '—'; position: absolute; left: 0; color: rgba(245,237,210,0.18); }
.compare-col.good li { font-size: 14px; color: var(--text); padding-left: 18px; position: relative; }
.compare-col.good li::before { content: ''; position: absolute; left: 0; top: 6px; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }

/* ── PRICING ── */
.pricing { background: var(--bg2); }
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 20px;
  max-width: 760px;
}
.pricing-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 34px 28px;
  position: relative;
}
.pricing-card.featured { border-color: var(--accent); box-shadow: 0 0 36px var(--accent-glow); }
.featured-badge {
  position: absolute;
  top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff;
  font-size: 11px; font-weight: 700;
  padding: 4px 14px; border-radius: 20px;
  letter-spacing: 0.5px; text-transform: uppercase;
  white-space: nowrap;
}
.pricing-card h3 { font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.price { font-size: 32px; font-weight: 800; color: var(--accent); margin-bottom: 24px; }
.pricing-card ul { list-style: none; margin-bottom: 26px; display: flex; flex-direction: column; gap: 9px; }
.price-mo { font-size: 18px; font-weight: 600; color: var(--muted); }
.price-note { font-size: 12px; color: var(--muted); margin-top: -16px; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.5px; font-weight: 600; }
.pricing-card li { font-size: 14px; color: var(--muted); padding-left: 16px; position: relative; }
.pricing-card li::before { content: ''; position: absolute; left: 0; top: 6px; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }

/* ── TWEETS ── */
.testimonials { background: var(--bg); }
.testimonials-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 36px;
}
.testimonials-header h2 { margin-bottom: 0; }
.view-all { font-size: 14px; font-weight: 600; color: var(--accent); text-decoration: none; }
.view-all:hover { text-decoration: underline; }
.tweet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 16px;
}
.tweet {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  transition: border-color 0.2s;
}
.tweet:hover { border-color: rgba(232,115,58,0.3); }
.tweet-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.tweet-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--border);
  background: #111;
}
.tweet-avatar.nft-border {
  border: 2px solid var(--accent);
  box-shadow: 0 0 8px var(--accent-glow);
  border-radius: 12px;
}
.tweet-user { flex: 1; display: flex; flex-direction: column; gap: 1px; }
.tweet-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 4px;
}
.tweet-check { width: 18px; height: 18px; flex-shrink: 0; }
.tweet-handle { font-size: 13px; color: var(--muted); }
.tweet-x-logo { width: 18px; height: 18px; color: var(--muted); margin-left: auto; flex-shrink: 0; }
.tweet-text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 14px;
}
.tweet-img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 12px;
  object-fit: cover;
  max-height: 200px;
  border: 1px solid var(--border);
}
.tweet-footer {
  display: flex;
  gap: 16px;
  align-items: center;
  font-size: 13px;
  color: var(--muted);
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.tweet-time { margin-left: auto; font-size: 12px; }

/* ── FAQ ── */
.faq { background: var(--bg2); }
.faq-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 16px;
}
.faq-item {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 22px;
}
.faq-item h3 { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.faq-item p  { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ── BOOK / CTA ── */
.book { background: var(--bg); text-align: center; border-top: 1px solid var(--border); }
.book-cta { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.book-note { font-size: 14px; color: var(--muted); }
.book-note a { color: var(--accent2); text-decoration: none; }
.book-note a:hover { text-decoration: underline; }

/* ── FOOTER ── */
.footer { background: var(--bg2); border-top: 1px solid var(--border); padding: 40px 0; }
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 22px;
}
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-links a { font-size: 13px; color: var(--muted); text-decoration: none; transition: color 0.18s; }
.footer-links a:hover { color: var(--text); }
.footer-copy { font-size: 12px; color: rgba(154,142,120,0.6); }
.footer-copy a { color: rgba(154,142,120,0.6); text-decoration: none; }
.footer-copy a:hover { color: var(--muted); }

/* ── RESPONSIVE ── */
@media (max-width: 760px) {
  .always-on-inner  { grid-template-columns: 1fr; gap: 40px; }
  .compare-grid     { grid-template-columns: 1fr; max-width: 100%; }
  .stats-bar .container { flex-wrap: wrap; }
  .stat { padding: 16px 22px; }
  .stat-divider { width: 80%; height: 1px; margin: 0 auto; }
}
@media (max-width: 560px) {
  .hero { padding: 56px 0 48px; }
  .hero-mascot { width: 70px; height: 70px; }
  .hero-cta { flex-direction: column; align-items: center; }
  .proof-bar .container { justify-content: center; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
  .pricing-cards { grid-template-columns: 1fr; }
  .faq-list { grid-template-columns: 1fr; }
  .testimonials-header { flex-direction: column; gap: 8px; }
}
