:root {
  --bg: #0a0b0d;
  --surface: #131418;
  --border: #20222a;
  --text: #f4f5f7;
  --muted: #8b9098;
  --dim: #5d626b;
  --gold: #eeab21;
  --green: #3abc70;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overscroll-behavior-x: none;
}
img { -webkit-user-drag: none; user-select: none; }
.wrap { max-width: 720px; margin: 0 auto; padding: 0 24px; }

/* index container: wide enough for the full-width hero, with the sections
   below capped to a readable width but sharing the hero's left edge */
.page { max-width: 1340px; margin: 0 auto; padding: 0 24px; }
.page > section:not(.hero),
.page > footer { max-width: 680px; margin-left: auto; margin-right: auto; }
@media (min-width: 920px) {
  .page { padding: 0 48px; }
}

/* nav */
header {
  display: flex; align-items: center;
  padding: 24px 0;
}
/* index: full-bleed header so the wordmark lines up with the full-width hero */
.page header {
  display: block;
  position: sticky; top: 0; z-index: 100;
  width: 100vw; margin-left: calc(50% - 50vw);
  padding: 18px 0;
  background: rgba(10, 11, 13, 0.82);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1340px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center;
}
@media (min-width: 920px) {
  .header-inner { padding: 0 48px; }
}
.wordmark {
  font-size: 26px; font-weight: 900; font-style: italic;
  letter-spacing: -0.6px; color: var(--text); text-decoration: none;
}
.nav-cta { font-size: 14px; font-weight: 600; color: var(--muted); text-decoration: none; }
.nav-cta:hover { color: var(--text); }

/* primary nav */
.nav-links { display: flex; align-items: center; gap: 30px; margin-left: auto; }
.nav-links a {
  font-size: 15px; font-weight: 600; color: var(--muted);
  text-decoration: none; transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--text); }
.nav-links .nav-contact {
  color: #0a0b0d; font-weight: 800;
  background: var(--gold); border: 1px solid var(--gold);
  border-radius: 999px; padding: 9px 18px;
  transition: opacity 0.15s ease;
}
.nav-links .nav-contact:hover { background: var(--gold); opacity: 0.9; }
@media (max-width: 640px) {
  .nav-links { gap: 0; }
  .nav-links a:not(.nav-contact) { display: none; }
  .nav-links .nav-contact { padding: 8px 15px; font-size: 14px; }
}

/* hero — full-bleed so it can use the whole laptop width */
.hero {
  width: 100vw; margin-left: calc(50% - 50vw);
  text-align: center; padding: 52px 0 60px; border-top: none;
}
.hero-inner { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.hero h1 {
  font-size: clamp(40px, 8vw, 58px);
  font-weight: 900; letter-spacing: -1.5px; line-height: 1.04;
  margin-bottom: 22px;
}
.hero h1 .gold { color: var(--gold); }
.hero p {
  font-size: 18px; color: var(--muted);
  max-width: 440px; margin: 0 auto 32px;
}

/* laptop: text left, phones right, both filling the width */
@media (min-width: 920px) {
  .hero { padding: 80px 0; }
  .hero-inner {
    display: flex; align-items: center; justify-content: center; gap: 56px;
    max-width: 1340px; padding: 0 48px; text-align: left;
  }
  .hero-copy { flex: 0 1 480px; position: relative; left: 34px; }
  .hero h1 { font-size: clamp(44px, 4.6vw, 62px); margin-bottom: 24px; }
  .hero p { font-size: 19px; margin: 0 0 34px; max-width: 460px; }
  .hero-phones { flex: 0 0 auto; margin: 0; max-width: none; gap: 18px; }
  .hero-phones .phone { flex: 0 0 auto; width: 272px; padding: 9px; border-radius: 58px; }
  .hero-phones .phone img { border-radius: 49px; }
}
.btn {
  display: inline-block;
  background: var(--text); color: #0a0b0d;
  font-weight: 800; font-size: 16px; text-decoration: none;
  padding: 15px 30px; border-radius: 999px;
}
.btn:hover { opacity: 0.9; }

.hero-phones {
  display: flex; gap: 14px; justify-content: center; align-items: flex-start;
  margin: 54px auto 0; max-width: 620px;
}
/* iPhone-style body: titanium rail, dark bezel, rounded screen, side buttons */
.hero-phones .phone {
  position: relative;
  flex: 1 1 0; min-width: 0;
  border-radius: 44px; padding: 7px;
  background: #0b0c0f;
  box-shadow: inset 0 0 0 1.5px #2b2e37, 0 16px 36px rgba(0,0,0,0.45);
}
.hero-phones .phone img { display: block; width: 100%; border-radius: 37px; }
.hero-phones .phone::before,
.hero-phones .phone::after {
  content: ""; position: absolute; background: #15171c; border-radius: 3px;
}
.hero-phones .phone::after  { left: -2px;  top: 25%; height: 9%;  width: 3px; }  /* volume */
.hero-phones .phone::before { right: -2px; top: 31%; height: 12%; width: 3px; }  /* power */
@media (max-width: 480px) {
  .hero-phones { gap: 8px; }
  .hero-phones .phone { padding: 5px; border-radius: 34px; }
  .hero-phones .phone img { border-radius: 29px; }
}

/* sections */
section { padding: 54px 0; border-top: 1px solid var(--border); }
.kicker {
  font-size: 12px; font-weight: 800; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 12px;
}
h2 {
  font-size: clamp(26px, 4.5vw, 33px);
  font-weight: 900; letter-spacing: -0.8px; line-height: 1.12;
  margin-bottom: 14px;
}
.lead { font-size: 16px; color: var(--muted); max-width: 540px; }

/* steps */
.steps { margin-top: 26px; }
.step {
  display: flex; gap: 18px; align-items: baseline;
  padding: 18px 0; border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; padding-bottom: 0; }
.step .n { color: var(--gold); font-weight: 900; font-size: 15px; flex: none; width: 20px; }
.step h3 { font-size: 17px; font-weight: 800; margin-bottom: 3px; letter-spacing: -0.2px; }
.step p { font-size: 14.5px; color: var(--muted); }

/* two ways to play */
.modes {
  display: grid; grid-template-columns: 1fr; gap: 14px; margin-top: 26px;
}
@media (min-width: 600px) { .modes { grid-template-columns: 1fr 1fr; } }
.mode {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 18px; padding: 22px 22px 24px;
}
.mode-shot {
  position: relative;
  width: 62%; max-width: 210px; margin: 2px auto 20px;
  background: #0b0c0f; border-radius: 44px; padding: 7px;
  box-shadow: inset 0 0 0 1.5px #2b2e37, 0 16px 36px rgba(0,0,0,0.45);
  cursor: zoom-in;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.mode-shot:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow: inset 0 0 0 1.5px #2b2e37, 0 28px 56px rgba(0,0,0,0.6);
}
.mode-shot img { display: block; width: 100%; border-radius: 37px; }
/* iPhone-style side buttons to match the hero phones */
.mode-shot::before,
.mode-shot::after {
  content: ""; position: absolute; background: #15171c; border-radius: 3px;
}
.mode-shot::after  { left: -2px;  top: 25%; height: 9%;  width: 3px; }  /* volume */
.mode-shot::before { right: -2px; top: 31%; height: 12%; width: 3px; }  /* power */
.mode-tag {
  display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: 1px;
  text-transform: uppercase; padding: 4px 11px; border-radius: 999px; margin-bottom: 14px;
  color: #0a0b0d;
}
.tag-gold { background: var(--gold); }
.tag-green { background: var(--green); }
.mode h3 { font-size: 19px; font-weight: 800; letter-spacing: -0.3px; margin-bottom: 8px; }
.mode p { font-size: 14.5px; color: var(--muted); line-height: 1.55; }

/* click-to-enlarge lightbox for the mode-card phones */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  display: none; align-items: center; justify-content: center;
  padding: 28px; cursor: zoom-out;
  background: rgba(6, 7, 9, 0.9);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  opacity: 0; transition: opacity 0.2s ease;
}
.lightbox.open { display: flex; opacity: 1; }
.lightbox .frame {
  position: relative;
  background: #0b0c0f; border-radius: 54px; padding: 9px;
  box-shadow: inset 0 0 0 1.5px #2b2e37, 0 30px 70px rgba(0,0,0,0.7);
  transform: scale(0.94); transition: transform 0.22s ease;
}
.lightbox.open .frame { transform: scale(1); }
.lightbox img {
  display: block; width: auto;
  max-width: min(340px, 82vw); max-height: 86vh;
  border-radius: 46px;
}

/* contact form modal */
.modal {
  position: fixed; inset: 0; z-index: 300;
  display: none; align-items: center; justify-content: center;
  padding: 24px; overflow-y: auto;
  background: rgba(6, 7, 9, 0.9);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}
.modal.open { display: flex; }
.modal-card {
  position: relative; width: 100%; max-width: 520px; margin: auto;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 20px; padding: 34px 30px 30px;
}
.modal-card h3 { font-size: 27px; font-weight: 900; letter-spacing: -0.6px; }
.modal-sub { color: var(--muted); font-size: 15px; margin: 7px 0 24px; }
.modal-close {
  position: absolute; top: 14px; right: 18px;
  background: none; border: none; color: var(--muted);
  font-size: 30px; line-height: 1; cursor: pointer; padding: 4px;
}
.modal-close:hover { color: var(--text); }
#contact-form label {
  display: block; font-size: 13px; font-weight: 700;
  color: var(--text); margin-bottom: 16px;
}
.form-row { display: flex; gap: 14px; }
.form-row label { flex: 1; }
#contact-form input,
#contact-form textarea {
  display: block; width: 100%; margin-top: 8px;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 11px; padding: 12px 14px;
  color: var(--text); font-size: 15px; font-family: inherit; font-weight: 400;
}
#contact-form input::placeholder,
#contact-form textarea::placeholder { color: var(--dim); }
#contact-form input:focus,
#contact-form textarea:focus { outline: none; border-color: var(--gold); }
#contact-form textarea { resize: vertical; min-height: 120px; line-height: 1.5; }
.form-submit {
  width: 100%; margin-top: 8px;
  background: var(--gold); color: #0a0b0d;
  font-weight: 800; font-size: 16px; border: none;
  border-radius: 999px; padding: 14px; cursor: pointer;
  transition: opacity 0.15s ease;
}
.form-submit:hover { opacity: 0.9; }
.form-submit:disabled { opacity: 0.6; cursor: default; }
.form-status { margin: 12px 0 0; font-size: 14px; min-height: 18px; text-align: center; }
.form-status.ok { color: var(--green); }
.form-status.err { color: #ef5858; }
@media (max-width: 480px) {
  .form-row { display: block; }
  .modal-card { padding: 30px 22px 24px; }
}

/* worked example */
.example {
  margin-top: 26px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 18px; padding: 24px 22px;
}
.example .scenario { font-size: 14.5px; color: var(--muted); margin-bottom: 16px; }
.example .scenario b { color: var(--text); }
table { width: 100%; border-collapse: collapse; }
th {
  font-size: 10px; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--dim); text-align: left; padding: 8px 6px; border-bottom: 1px solid var(--border);
}
td { padding: 12px 6px; font-size: 14px; border-bottom: 1px solid var(--border); }
tr:last-child td { border-bottom: none; }
.name { font-weight: 800; }
.pct { color: var(--muted); }
.lost { color: #ef5858; font-weight: 700; white-space: nowrap; }
.lost.none { color: var(--dim); font-weight: 600; }
.back { font-weight: 800; text-align: right; white-space: nowrap; }
.win .name, .win .back { color: var(--gold); }
.note { margin-top: 16px; font-size: 13.5px; color: var(--muted); }
.note b { color: var(--text); }
@media (max-width: 560px) {
  th:nth-child(3), td:nth-child(3) { display: none; }
  th, td { padding: 10px 4px; }
}

/* faq */
.faq { margin-top: 24px; display: grid; gap: 8px; }
.faq details {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; padding: 0 20px;
}
.faq summary {
  cursor: pointer; list-style: none;
  font-size: 15.5px; font-weight: 700; padding: 17px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--gold); font-size: 20px; flex: none; }
.faq details[open] summary::after { content: "–"; }
.faq details p { color: var(--muted); font-size: 14.5px; padding-bottom: 18px; }

/* cta */
.cta { text-align: center; }
.cta h2 { margin-bottom: 22px; }

/* article (legal) */
article { padding: 24px 0 56px; }
article h1 { font-size: 30px; font-weight: 900; letter-spacing: -0.5px; margin: 22px 0 6px; }
article .updated { color: var(--dim); font-size: 13px; margin-bottom: 26px; }
article h2 { font-size: 18px; margin: 26px 0 8px; }
article p, article li { color: var(--muted); font-size: 15px; margin-bottom: 10px; }
article ul { padding-left: 20px; }
article a { color: var(--gold); }

/* footer */
footer {
  border-top: 1px solid var(--border);
  padding: 28px 0 48px; font-size: 13px; color: var(--dim);
  text-align: center;
}
footer a { color: var(--muted); text-decoration: none; margin: 0 10px; }
footer a:hover { color: var(--text); }
footer .small { margin-top: 12px; }
