/* joinfomoapp */

:root {
  --bg:        #060510;   /* deepest background */
  --surface:   #12111a;   /* section surface */
  --card:      #161522;   /* card */
  --card-2:    #1c1a2b;
  --violet:    #221d4b;   /* violet accent */
  --blue:      #516af6;   /* primary */
  --blue-soft: #eaedff;
  --orange:    #ff622e;   /* CTA / down */
  --yellow:    #ffc74f;
  --green:     #22c55e;
  --fg:        #f7f7f7;
  --fg-dim:    #9899a3;
  --fg-mute:   #474b52;
  --line:      #221f33;
  --r:         14px;
  --mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font: 16px/1.6 -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.hidden { display: none !important; }
.mono { font-family: var(--mono); }

h1, h2, h3 { line-height: 1.15; margin: 0; letter-spacing: -.02em; }

/* ---------------- nav ---------------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; gap: 28px;
  padding: 14px 28px;
  background: rgba(6, 5, 16, .82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: baseline; gap: 8px; text-decoration: none; }
.wordmark {
  font-size: 26px; font-weight: 700; letter-spacing: -.04em; color: #fff;
}
.wordmark.sm { font-size: 19px; }
.brand-tag {
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em;
  color: var(--bg); background: var(--orange); padding: 3px 7px; border-radius: 6px;
}
.nav-links { display: flex; align-items: center; gap: 26px; margin-left: auto; }

/* hamburger — sadece dar ekranda gorunur */
.burger {
  display: none; margin-left: auto; width: 42px; height: 38px;
  background: none; border: 1px solid #2e2b40; border-radius: 10px;
  cursor: pointer; padding: 9px 10px; gap: 4px;
  flex-direction: column; justify-content: center;
}
.burger span {
  display: block; height: 2px; width: 100%; background: var(--fg);
  border-radius: 2px; transition: .22s;
}
.burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.nav-links a {
  color: var(--fg-dim); text-decoration: none; font-size: 14.5px; font-weight: 500;
  transition: color .15s;
}
.nav-links a:hover { color: var(--fg); }

/* ---------------- buttons ---------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid transparent; border-radius: 10px;
  padding: 10px 18px; font-size: 14.5px; font-weight: 650;
  cursor: pointer; text-decoration: none; transition: .15s; white-space: nowrap;
  font-family: inherit;
}
.btn-primary {
  /* bottom-left to top-right */
  background: linear-gradient(45deg, #52579f 0%, #333779 100%);
  color: #fff;
}
.btn-primary:hover {
  background: linear-gradient(45deg, #5f64b3 0%, #3d4290 100%);
  transform: translateY(-1px);
}
.btn-ghost { background: transparent; color: var(--fg); border-color: #2e2b40; }
.btn-ghost:hover { border-color: var(--blue); color: var(--blue-soft); }
.btn-lg { padding: 14px 26px; font-size: 15.5px; border-radius: 12px; }
.btn-sm { padding: 7px 13px; font-size: 13px; }
.btn:disabled { opacity: .45; cursor: default; transform: none; }

/* ---------------- hero ---------------- */
.hero {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 60px;
  align-items: center;
  max-width: 1180px; margin: 0 auto; padding: 84px 28px 72px;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: var(--green);
  background: rgba(34, 197, 94, .09); border: 1px solid rgba(34, 197, 94, .25);
  padding: 6px 13px; border-radius: 999px; margin-bottom: 22px;
}
.dot {
  width: 7px; height: 7px; border-radius: 50%; background: currentColor;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }

.hero h1 { font-size: clamp(40px, 5.4vw, 62px); font-weight: 700; }
.hero h1 em {
  font-style: normal;
  background: linear-gradient(100deg, var(--orange), var(--yellow));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lede { color: var(--fg-dim); font-size: 17.5px; max-width: 34em; margin: 22px 0 30px; }
.lede strong { color: var(--fg); }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-meta { display: flex; gap: 12px; margin-top: 26px; color: var(--fg-mute); font-size: 14px; }
.hero-meta b { color: var(--fg); font-family: var(--mono); }
.sep { color: var(--fg-mute); }

/* ---------------- hero phone ---------------- */
.hero-art { display: flex; justify-content: center; }
.phone {
  width: 100%; max-width: 340px;
  background: linear-gradient(180deg, var(--card), var(--surface));
  border: 1px solid var(--line); border-radius: 26px; padding: 18px;
  box-shadow: 0 30px 80px -30px rgba(81, 106, 246, .35);
}
.phone-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.pill { font-size: 12px; font-weight: 700; padding: 4px 9px; border-radius: 999px; font-family: var(--mono); }
.pill-green { color: var(--green); background: rgba(34, 197, 94, .12); }
.spark { background: var(--bg); border-radius: 12px; padding: 8px; margin-bottom: 12px; }
.spark canvas { width: 100%; height: 90px; display: block; }
.phone-rows { display: flex; flex-direction: column; gap: 1px; background: var(--line); border-radius: 12px; overflow: hidden; }
.prow {
  display: grid; grid-template-columns: 1fr auto auto; gap: 10px; align-items: center;
  background: var(--card); padding: 10px 12px; font-size: 13px;
}
.tk { font-weight: 600; }
.mc { color: var(--fg-dim); font-family: var(--mono); font-size: 12px; }
.chg { font-family: var(--mono); font-size: 11.5px; font-weight: 700; min-width: 74px; text-align: right; }
.chg.up { color: var(--green); }
.chg.dn { color: var(--orange); }
.phone-buy {
  width: 100%; margin-top: 12px; padding: 12px; border: 0; border-radius: 12px;
  background: rgba(34, 197, 94, .14); color: var(--green);
  font-weight: 700; font-size: 15px; cursor: pointer; font-family: inherit;
}

/* ---------------- claim ---------------- */
.claim { max-width: 1180px; margin: 0 auto; padding: 40px 28px 80px; }
.claim-head { text-align: center; margin-bottom: 44px; }
.claim-head h2 { font-size: clamp(30px, 3.6vw, 42px); font-weight: 700; }
.claim-head p { color: var(--fg-dim); font-size: 17px; margin-top: 12px; }
.claim-head strong { color: var(--yellow); }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r);
  padding: 26px 24px; display: flex; flex-direction: column; gap: 12px;
}
.step-n {
  width: 34px; height: 34px; border-radius: 10px;
  display: grid; place-items: center;
  background: var(--violet); color: var(--blue-soft);
  font-weight: 800; font-size: 15px; font-family: var(--mono);
}
.step h3 { font-size: 19px; font-weight: 700; }
.step p { color: var(--fg-dim); font-size: 14.5px; margin: 0; }
.hint { color: var(--fg-mute); font-size: 12.5px; margin: 0; }

.field { display: flex; gap: 8px; margin-top: 4px; }
.field input {
  flex: 1; min-width: 0; background: var(--bg); border: 1px solid #2b2840;
  color: var(--fg); border-radius: 10px; padding: 11px 13px;
  font-family: var(--mono); font-size: 13px; outline: none;
}
.field input:focus { border-color: var(--blue); }

.qr-wrap { margin-top: 6px; display: flex; flex-direction: column; gap: 8px; }
.qr-card {
  display: flex; gap: 16px; align-items: center;
  background: var(--bg); border: 1px solid var(--line); border-radius: 12px; padding: 14px;
}
.qr-card canvas { border-radius: 8px; display: block; background: #fff; }
.qr-side { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.qr-label { font-size: 10.5px; text-transform: uppercase; letter-spacing: .1em; color: var(--fg-mute); }
.qr-addr { font-size: 11.5px; color: var(--fg-dim); word-break: break-all; }

.tweet-preview {
  background: var(--bg); border: 1px solid var(--line); border-radius: 12px; padding: 14px;
}
.tw-head { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.tw-avatar { width: 26px; height: 26px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--orange)); }
.tw-name { font-weight: 700; font-size: 13.5px; }
.tw-handle { color: var(--fg-mute); font-size: 13px; }
.tw-body { font-size: 14px; margin: 0 0 10px; }
.tw-img {
  border: 1px dashed #35314d; border-radius: 10px; padding: 14px;
  text-align: center; color: var(--fg-mute); font-size: 12.5px;
}

.payout-demo { background: var(--bg); border: 1px solid var(--line); border-radius: 12px; padding: 14px; }
.pd-row { display: flex; align-items: center; gap: 8px; font-size: 14px; }
.pd-check { color: var(--green); font-weight: 800; }
.pd-amt { margin-left: auto; font-family: var(--mono); font-weight: 700; color: var(--green); }
.pd-bar { height: 5px; background: var(--line); border-radius: 3px; margin: 12px 0 8px; overflow: hidden; }
.pd-bar span { display: block; height: 100%; background: linear-gradient(90deg, var(--orange), var(--yellow)); }
.pd-note { color: var(--fg-mute); font-size: 12px; }

/* ---------------- payouts ---------------- */
.payouts { background: var(--surface); border-block: 1px solid var(--line); padding: 54px 0; }
.sec-head {
  max-width: 1180px; margin: 0 auto 24px; padding: 0 28px;
  display: flex; align-items: center; gap: 14px;
}
.sec-head h2 { font-size: 26px; font-weight: 700; }
.live {
  display: inline-flex; align-items: center; gap: 7px;
  color: var(--green); font-size: 13px; font-weight: 600;
}
.ticker { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.ticker-track { display: flex; gap: 12px; width: max-content; animation: slide 42s linear infinite; }
.ticker:hover .ticker-track { animation-play-state: paused; }
@keyframes slide { to { transform: translateX(-50%); } }
.tk-item {
  display: flex; align-items: center; gap: 10px;
  background: var(--card); border: 1px solid var(--line); border-radius: 999px;
  padding: 9px 16px; white-space: nowrap; font-size: 13.5px;
}
.tk-item .who { color: var(--fg-dim); font-family: var(--mono); font-size: 12.5px; }
.tk-item .amt { color: var(--green); font-weight: 700; font-family: var(--mono); }
.tk-item .ok { color: var(--blue); }

/* ---------------- stats ---------------- */
.stats {
  max-width: 1180px; margin: 0 auto; padding: 64px 28px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.stat-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r);
  padding: 22px; display: flex; flex-direction: column; gap: 6px;
}
.stat-card label { font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--fg-mute); }
.stat-card b { font-size: 28px; font-weight: 700; font-family: var(--mono); letter-spacing: -.02em; }

/* ---------------- faq ---------------- */
.faq { max-width: 780px; margin: 0 auto; padding: 20px 28px 90px; }
.faq h2 { font-size: 30px; font-weight: 700; margin-bottom: 22px; }
details {
  background: var(--card); border: 1px solid var(--line); border-radius: 12px;
  padding: 16px 18px; margin-bottom: 10px;
}
details[open] { border-color: #2e2b45; }
summary { cursor: pointer; font-weight: 620; font-size: 15.5px; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary::after { content: '+'; float: right; color: var(--fg-mute); font-weight: 400; }
details[open] summary::after { content: '−'; }
details p { color: var(--fg-dim); font-size: 14.5px; margin: 10px 0 0; }

/* ---------------- footer ---------------- */
.foot {
  border-top: 1px solid var(--line); padding: 34px 28px;
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
  max-width: 1180px; margin: 0 auto;
}
.foot-brand { display: flex; align-items: baseline; gap: 8px; }
.foot-links { display: flex; gap: 20px; margin-left: auto; }
.foot-links a { color: var(--fg-dim); text-decoration: none; font-size: 14px; }
.foot-links a:hover { color: var(--fg); }
.foot-note { width: 100%; color: var(--fg-mute); font-size: 12.5px; margin: 0; }

/* ---------------- toasts ---------------- */
.toasts { position: fixed; right: 18px; bottom: 18px; z-index: 90; display: flex; flex-direction: column; gap: 8px; }
.toast {
  background: var(--card); border: 1px solid var(--line); border-left: 3px solid var(--green);
  border-radius: 10px; padding: 11px 15px; font-size: 13.5px; max-width: 320px;
  animation: slidein .25s ease-out;
}
.toast.err { border-left-color: var(--orange); }
@keyframes slidein { from { transform: translateX(16px); opacity: 0; } }

/* ---------------- responsive ---------------- */
@media (max-width: 860px) {
  .burger { display: flex; }
  .nav { flex-wrap: wrap; }
  .nav-links {
    display: none; width: 100%; order: 3;
    flex-direction: column; align-items: stretch; gap: 4px;
    padding: 12px 0 6px; margin-left: 0;
    border-top: 1px solid var(--line);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 4px; font-size: 16px; }
}


/* ---------------- how it works page ---------------- */
.hiw { max-width: 1500px; margin: 0 auto; padding: 28px 32px 60px; }
.hiw-head { text-align: center; margin-bottom: 34px; }
.hiw-head h1 { font-size: clamp(26px, 2.6vw, 34px); font-weight: 700; margin-bottom: 8px; }
.hiw-head .lede { margin: 0 auto; font-size: 14.5px; max-width: 62ch; }
.hiw-head strong { color: var(--yellow); }

.hiw-sec { display: grid; grid-template-columns: 46px 1fr; gap: 22px; margin-bottom: 48px; }
.hiw-num {
  width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center;
  background: var(--violet); color: var(--blue-soft);
  font-family: var(--mono); font-weight: 800; font-size: 17px;
  position: sticky; top: 84px;
}
.hiw-body h2 { font-size: 22px; font-weight: 700; margin-bottom: 6px; }
.hiw-body > p { color: var(--fg-dim); margin: 0 0 16px; font-size: 15px; }

/* four steps */
.taps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.taps li {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r);
  padding: 16px; display: flex; flex-direction: column; gap: 12px;
}
.tap-txt { display: flex; flex-direction: column; gap: 4px; }
.tap-n {
  font-size: 10.5px; text-transform: uppercase; letter-spacing: .1em;
  color: var(--orange); font-weight: 700;
}
.tap-txt b { font-size: 17px; }
.tap-txt span:last-child { color: var(--fg-dim); font-size: 14px; }
.taps figure { margin: 0; background: var(--bg); border-radius: 12px; padding: 12px; }
.taps img { width: 100%; height: auto; border-radius: 8px; display: block; }

.callout {
  background: rgba(255, 199, 79, .07); border: 1px solid rgba(255, 199, 79, .25);
  border-radius: 12px; padding: 14px 16px; font-size: 14.5px; color: var(--fg-dim);
}
.callout b { color: var(--yellow); }

/* copyable message */
.copybox {
  display: flex; align-items: center; gap: 12px; margin-bottom: 18px;
  background: var(--bg); border: 1px solid #2b2840; border-radius: 12px; padding: 14px 16px;
}
.copybox code { flex: 1; font-family: var(--mono); font-size: 13.5px; color: var(--fg); }
.mention { color: var(--blue); }

.rules { display: flex; flex-direction: column; gap: 9px; margin: 18px 0 22px; }
.rule { display: flex; align-items: center; gap: 10px; font-size: 14.5px; color: var(--fg-dim); }
.rule .ok { color: var(--green); font-weight: 800; }
.rule .no { color: var(--orange); font-weight: 800; }
.rule b { color: var(--fg); }


.hiw-close h2 { font-size: clamp(26px, 3.4vw, 36px); font-weight: 700; margin-bottom: 10px; }
.hiw-close p { color: var(--fg-dim); margin: 0 0 24px; }
.nav-links a.active { color: var(--fg); }

@media (max-width: 980px) { .taps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 820px) {
  .hiw-sec { grid-template-columns: 1fr; gap: 16px; }
  .hiw-num { position: static; }
}
@media (max-width: 520px) { .taps { grid-template-columns: 1fr; } }
.mini-shot { margin: 0; background: var(--bg); border: 1px solid var(--line); border-radius: 12px; padding: 10px; }
.mini-shot img { width: 100%; height: auto; border-radius: 8px; display: block; }

/* ---------------- centered hero ---------------- */
/* Vertically centred in the space left below the nav (~65px). */
.hero-center {
  max-width: 900px; margin: 0 auto; padding: 40px 28px; text-align: center;
  min-height: calc(100vh - 65px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.hero-center h1 {
  font-size: clamp(38px, 6.4vw, 76px); font-weight: 800; letter-spacing: -.03em;
}
.hero-center h1 em {
  font-style: normal;
  background: linear-gradient(45deg, #52579f, #333779);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-center .lede { margin: 26px auto 34px; max-width: 60ch; }
.hero-center h1 { margin: 0; }
.hero-center .hero-meta { justify-content: center; margin-top: 30px; }
.btn-xl { padding: 17px 38px; font-size: 17px; border-radius: 13px; }

/* ---------------- verified contract ---------------- */
.contract { max-width: 1180px; margin: 0 auto; padding: 56px 28px 90px; }
.contract-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: 24px;
  display: flex; flex-direction: column; gap: 14px;
}
.cc-row { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; }
.cc-row label { font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--fg-mute); }
.cc-row b { font-size: 15px; text-align: right; word-break: break-all; }
