/* CLAWESOME STUDIOS — style.css */
:root {
  --red: #E63946; --red-dark: #c1121f; --black: #0a0a0a; --dark: #111111;
  --dark-2: #1a1a1a; --dark-3: #222222; --text: #f0f0f0; --text-muted: #888888;
  --text-dim: #555555; --white: #ffffff; --border: rgba(255,255,255,0.06);
  --border-light: rgba(255,255,255,0.12); --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', sans-serif; --font-mono: 'DM Mono', monospace;
  --radius: 16px; --radius-sm: 10px; --max-w: 1200px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--black); color: var(--text); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
.centered { text-align: center; }
.red { color: var(--red); }
.eyebrow { font-family: var(--font-mono); font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--red); display: block; margin-bottom: 16px; }
h2 { font-family: var(--font-display); font-size: clamp(42px, 5vw, 72px); letter-spacing: 1px; line-height: 1; margin-bottom: 20px; }
.section-sub { color: var(--text-muted); font-size: 18px; max-width: 560px; margin: 0 auto 60px; }
.btn-primary { display: inline-block; background: var(--red); color: var(--white); padding: 16px 36px; border-radius: 100px; text-decoration: none; font-weight: 600; font-size: 16px; font-family: var(--font-body); transition: all 0.2s ease; border: none; cursor: pointer; }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(230,57,70,0.35); }
.btn-ghost { display: inline-block; color: var(--text-muted); text-decoration: none; font-size: 16px; font-weight: 500; padding: 16px 24px; transition: color 0.2s; }
.btn-ghost:hover { color: var(--text); }
.full-width { width: 100%; text-align: center; }
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 200; background: rgba(10,10,10,0.88); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); }
.nav-inner { max-width: var(--max-w); margin: 0 auto; padding: 14px 40px; display: flex; justify-content: space-between; align-items: center; }
.nav-logo { height: 28px; width: auto; }
.nav-right { display: flex; align-items: center; gap: 24px; }
.status-indicator { font-family: var(--font-mono); font-size: 11px; color: var(--text-muted); letter-spacing: 1px; display: flex; align-items: center; gap: 6px; }
.status-dot { width: 7px; height: 7px; background: var(--red); border-radius: 50%; box-shadow: 0 0 8px var(--red); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
.nav-cta { background: var(--red); color: white; padding: 10px 22px; border-radius: 100px; text-decoration: none; font-size: 14px; font-weight: 600; transition: all 0.2s; }
.nav-cta:hover { background: var(--red-dark); }
.hero { min-height: 100vh; padding: 140px 40px 80px; max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-content { padding-right: 20px; }
h1 { font-family: var(--font-display); font-size: clamp(64px, 8vw, 110px); line-height: 0.95; letter-spacing: 2px; margin-bottom: 28px; margin-top: 20px; }
.hero-sub { font-size: 18px; color: var(--text-muted); max-width: 480px; margin-bottom: 40px; line-height: 1.7; }
.hero-actions { display: flex; align-items: center; gap: 8px; margin-bottom: 60px; flex-wrap: wrap; }
.hero-stats { display: flex; align-items: center; border: 1px solid var(--border-light); border-radius: var(--radius); overflow: hidden; background: var(--dark-2); }
.stat { padding: 20px 24px; }
.stat-num { display: block; font-family: var(--font-display); font-size: 32px; color: var(--red); line-height: 1; margin-bottom: 4px; }
.stat-label { font-family: var(--font-mono); font-size: 10px; color: var(--text-muted); letter-spacing: 1px; text-transform: uppercase; }
.stat-divider { width: 1px; height: 60px; background: var(--border-light); flex-shrink: 0; }
.hero-visual { position: relative; min-width: 0; }
.img-frame { position: relative; border-radius: 20px; overflow: hidden; box-shadow: 0 40px 100px -20px rgba(230,57,70,0.2), 0 0 0 1px var(--border); width: 100%; }
.img-frame img { width: 100%; display: block; }
.img-badge { position: absolute; bottom: 20px; right: 20px; background: rgba(0,0,0,0.8); backdrop-filter: blur(12px); border: 1px solid var(--border-light); padding: 10px 18px; border-radius: 100px; font-family: var(--font-mono); font-size: 12px; color: var(--text); display: flex; align-items: center; gap: 8px; }
.badge-dot { width: 8px; height: 8px; background: #30d158; border-radius: 50%; box-shadow: 0 0 8px #30d158; animation: pulse 2s infinite; }
.pitch { background: var(--dark-2); padding: 100px 40px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.pitch-inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.pitch-text p { color: var(--text-muted); font-size: 17px; line-height: 1.75; margin-bottom: 16px; }
.pitch-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.pitch-card { background: var(--dark-3); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; transition: border-color 0.2s, transform 0.2s; }
.pitch-card:hover { border-color: var(--border-light); transform: translateY(-3px); }
.pitch-icon { font-size: 24px; margin-bottom: 12px; }
.pitch-card h4 { font-size: 15px; font-weight: 600; margin-bottom: 8px; color: var(--text); }
.pitch-card p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }
.vs-section { padding: 100px 40px; background: var(--black); }
.vs-inner { max-width: 900px; margin: 0 auto; }
.vs-table { display: grid; grid-template-columns: 1fr auto 1fr; gap: 0; margin: 60px 0 30px; border: 1px solid var(--border); border-radius: 20px; overflow: hidden; }
.vs-col-header { padding: 20px 32px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); border-bottom: 1px solid var(--border); background: var(--dark-2); }
.vs-col-header.red { color: var(--red); background: var(--dark-3); }
.vs-them { background: var(--dark-3); }
.vs-us { background: var(--dark-2); }
.vs-row { padding: 14px 32px; font-size: 15px; display: flex; align-items: center; gap: 12px; border-bottom: 1px solid var(--border); color: var(--text-muted); }
.vs-us .vs-row { color: var(--text); }
.vs-row:last-child { border-bottom: none; }
.x-icon { color: var(--text-dim); font-size: 13px; }
.check-icon { color: var(--red); font-size: 14px; font-weight: 700; }
.vs-middle { display: flex; align-items: center; justify-content: center; padding: 0 20px; font-family: var(--font-display); font-size: 36px; color: var(--text-dim); background: var(--dark-2); border-left: 1px solid var(--border); border-right: 1px solid var(--border); }
.vs-note { text-align: center; color: var(--text-muted); font-size: 15px; line-height: 1.6; max-width: 600px; margin: 0 auto; }
.how { padding: 100px 40px; background: var(--dark-2); border-top: 1px solid var(--border); }
.timeline { max-width: var(--max-w); margin: 10px auto 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.step { background: var(--dark-3); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 24px; transition: border-color 0.2s, transform 0.2s; }
.step:hover { border-color: var(--red); transform: translateY(-4px); }
.step-num { font-family: var(--font-mono); font-size: 11px; color: var(--red); letter-spacing: 2px; margin-bottom: 20px; display: block; }
.step h4 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.step p { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 20px; }
.step-time { font-family: var(--font-mono); font-size: 10px; color: var(--text-dim); letter-spacing: 1px; text-transform: uppercase; }
.pricing { padding: 100px 40px; background: var(--black); border-top: 1px solid var(--border); }
.pricing-grid { max-width: var(--max-w); margin: 0 auto 40px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pricing-card { background: var(--dark-2); border: 1px solid var(--border); border-radius: 20px; padding: 36px 32px; position: relative; transition: transform 0.2s, border-color 0.2s; }
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card.featured { border-color: var(--red); background: var(--dark-3); box-shadow: 0 0 40px rgba(230,57,70,0.12); }
.featured-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--red); color: white; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 5px 18px; border-radius: 100px; white-space: nowrap; font-family: var(--font-mono); }
.tier-label { font-family: var(--font-mono); font-size: 10px; color: var(--red); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 8px; }
.pricing-card h3 { font-family: var(--font-display); font-size: 36px; letter-spacing: 1px; margin-bottom: 16px; }
.price { font-family: var(--font-display); font-size: 56px; color: var(--red); line-height: 1; margin-bottom: 6px; }
.price-note { font-size: 13px; color: var(--text-dim); margin-bottom: 28px; font-family: var(--font-mono); }
.feature-list { list-style: none; margin-bottom: 32px; }
.feature-list li { padding: 10px 0; font-size: 14px; color: var(--text-muted); border-bottom: 1px solid var(--border); display: flex; align-items: flex-start; gap: 10px; }
.feature-list li::before { content: "\2713"; color: var(--red); font-weight: 700; font-size: 12px; margin-top: 2px; flex-shrink: 0; }
.feature-list li:last-child { border-bottom: none; }
.addon-note { max-width: var(--max-w); margin: 0 auto 24px; background: var(--dark-2); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 28px; font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.addon-note strong { color: var(--text); }
.rebuild-note { max-width: var(--max-w); margin: 0 auto; }
.rebuild-inner { background: var(--dark-3); border: 1px solid var(--border); border-left: 3px solid var(--red); border-radius: var(--radius); padding: 24px 28px; }
.rebuild-label { font-weight: 700; font-size: 15px; display: block; margin-bottom: 8px; color: var(--text); }
.rebuild-inner p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.faq { padding: 100px 40px; background: var(--dark-2); border-top: 1px solid var(--border); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; background: none; border: none; padding: 28px 0; display: flex; justify-content: space-between; align-items: center; gap: 20px; cursor: pointer; font-family: var(--font-body); font-size: 17px; font-weight: 600; color: var(--text); text-align: left; }
.faq-icon { font-size: 24px; color: var(--text-muted); transition: transform 0.25s, color 0.25s; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--red); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.open .faq-a { max-height: 400px; }
.faq-a p { color: var(--text-muted); font-size: 16px; line-height: 1.75; padding-bottom: 28px; }
.caveat { padding: 60px 40px; background: var(--black); border-top: 1px solid var(--border); }
.caveat-box { max-width: 700px; margin: 0 auto; background: var(--dark-3); border: 1px solid var(--border); border-top: 3px solid var(--red); border-radius: 20px; padding: 48px; text-align: center; }
.caveat-skull { font-size: 36px; margin-bottom: 16px; }
.caveat-box h2 { font-family: var(--font-display); font-size: 36px; color: var(--red); letter-spacing: 4px; margin-bottom: 20px; }
.caveat-box p { font-size: 15px; color: var(--text-muted); line-height: 1.75; }
.order { padding: 100px 40px; background: var(--dark-2); border-top: 1px solid var(--border); }
.order-inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.order-text h2 { margin-bottom: 16px; }
.order-text > p { color: var(--text-muted); font-size: 17px; line-height: 1.75; margin-bottom: 36px; }
.order-details { display: flex; flex-direction: column; gap: 14px; }
.order-detail { font-size: 14px; color: var(--text-muted); }
.order-form { background: var(--dark-3); border: 1px solid var(--border); border-radius: 20px; padding: 40px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text-muted); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; background: var(--dark-2); border: 1px solid var(--border-light); border-radius: var(--radius-sm); padding: 13px 16px; color: var(--text); font-family: var(--font-body); font-size: 15px; outline: none; transition: border-color 0.2s; -webkit-appearance: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--red); }
.form-group select { cursor: pointer; }
.form-group textarea { resize: vertical; }
.form-group select option { background: var(--dark-3); color: var(--text); }
.submit-btn { margin-top: 8px; font-size: 16px; padding: 18px; }
.form-note { text-align: center; font-size: 12px; color: var(--text-dim); margin-top: 14px; line-height: 1.5; }
footer { background: var(--black); border-top: 1px solid var(--border); padding: 60px 40px; }
.footer-inner { max-width: var(--max-w); margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 32px; }
.footer-logo { height: 22px; width: auto; opacity: 0.6; }
.footer-links { display: flex; gap: 32px; }
.footer-links a { font-size: 14px; color: var(--text-dim); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--text-muted); }
.footer-legal { font-size: 12px; color: var(--text-dim); text-align: center; max-width: 700px; line-height: 1.7; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.hero-content { animation: fadeUp 0.8s ease both; }
.hero-visual { animation: fadeUp 0.8s 0.2s ease both; }

/* === GLOBAL OVERFLOW FIX === */
html { max-width: 100%; overflow-x: hidden; }
img { max-width: 100%; height: auto; }
*, *::before, *::after { box-sizing: border-box; }

/* === TABLET === */
@media (max-width: 900px) {
  .nav-inner { padding: 14px 20px; }
  .hero { grid-template-columns: 1fr; padding: 110px 20px 60px; gap: 36px; width: 100%; max-width: 100%; }
  .hero-content { padding-right: 0; }
  .hero-visual { width: 100%; max-width: 560px; margin: 0 auto; }
  h1 { font-size: 68px; }
  .hero-stats { display: grid; grid-template-columns: 1fr 1fr; width: 100%; }
  .stat-divider { display: none; }
  .stat { border-bottom: 1px solid var(--border-light); }
  .stat:nth-child(1), .stat:nth-child(3) { border-right: 1px solid var(--border-light); }
  .stat:nth-child(3), .stat:nth-child(4) { border-bottom: none; }
  .pitch-inner { grid-template-columns: 1fr; gap: 40px; }
  .pitch-grid { grid-template-columns: 1fr 1fr; }
  .vs-table { grid-template-columns: 1fr; }
  .vs-middle { padding: 16px; border-left: none; border-right: none; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .timeline { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
  .hw-table { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .order-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero, .pitch, .vs-section, .how, .pricing, .faq, .caveat, .order, footer { padding-left: 20px; padding-right: 20px; }
}

/* === MOBILE === */
@media (max-width: 600px) {
  h1 { font-size: 50px; letter-spacing: 0; line-height: 1; }
  h2 { font-size: 36px; }
  .section-sub { font-size: 16px; }
  .nav-logo { height: 22px; }
  .nav-inner { padding: 12px 16px; }
  .nav-cta { padding: 9px 18px; font-size: 13px; }
  .hero { padding: 96px 16px 48px; gap: 28px; }
  .hero-visual { max-width: 100%; }
  .hero-sub { font-size: 16px; max-width: 100%; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 10px; }
  .btn-ghost { padding: 4px 0; }
  .img-badge { font-size: 11px; padding: 8px 12px; bottom: 12px; right: 12px; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .stat { padding: 14px 16px; }
  .stat-num { font-size: 26px; }
  .stat-label { font-size: 9px; }
  .pitch { padding-top: 60px; padding-bottom: 60px; }
  .pitch-grid { grid-template-columns: 1fr; }
  .vs-row { padding: 12px 14px; font-size: 13px; }
  .vs-col-header { padding: 14px; }
  .timeline { grid-template-columns: 1fr; }
  .pricing-grid { max-width: 100%; }
  .pricing-card { padding: 26px 20px; }
  .price { font-size: 44px; }
  .hw-row { grid-template-columns: 1fr; gap: 2px; padding: 12px 14px; }
  .hw-row.hw-head { display: none; }
  .faq-q { font-size: 15px; padding: 20px 0; }
  .caveat-box { padding: 28px 18px; }
  .caveat-box h2 { font-size: 28px; }
  .order-form { padding: 22px 16px; }
  .featured-badge { font-size: 10px; padding: 4px 14px; }
  .hero, .pitch, .vs-section, .how, .pricing, .faq, .caveat, .order, footer { padding-left: 16px; padding-right: 16px; }
}
/* Hardware upgrade table */
.hw-upgrade-note { max-width: var(--max-w); margin: 0 auto 24px; }
.hw-upgrade-inner { background: var(--dark-2); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; }
.hw-upgrade-label { font-weight: 700; font-size: 15px; display: block; margin-bottom: 8px; color: var(--text); }
.hw-upgrade-inner > p { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 20px; }
.hw-table { border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; margin-bottom: 16px; }
.hw-row { display: grid; grid-template-columns: 2fr 1fr 1fr; padding: 12px 18px; font-size: 14px; border-bottom: 1px solid var(--border); color: var(--text-muted); gap: 12px; align-items: center; }
.hw-row:last-child { border-bottom: none; }
.hw-row.hw-head { background: var(--dark-3); font-family: var(--font-mono); font-size: 10px; letter-spacing: 1px; text-transform: uppercase; color: var(--text-dim); }
.hw-row em { font-style: normal; color: var(--text-dim); font-size: 12px; }
.hw-row span:last-child { color: var(--text); font-weight: 600; }
.hw-note { font-size: 13px; color: var(--text-dim); line-height: 1.5; }

/* Form success state */
.form-success { background: var(--dark-2); border: 1px solid rgba(48,209,88,0.3); border-radius: var(--radius); padding: 24px; text-align: center; margin-top: 16px; }
.success-icon { font-size: 32px; margin-bottom: 10px; }
.form-success strong { display: block; font-size: 17px; margin-bottom: 8px; color: var(--text); }
.form-success p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
