@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&family=Oswald:wght@500;700&display=swap');

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

/* ─── Tokens ─────────────────────────────────────────────── */
:root {
  --bg-base:   #0E0E12;
  --bg-card:   #18181F;
  --accent:    #E31C2F;
  --highlight: #F4A800;
  --text:      #F0F0F2;
  --muted:     #8A8A9E;
  --border:    #2A2A38;

  --font-head: 'Oswald', Arial, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --radius:    10px;
  --radius-sm: 6px;
  --trans:     0.2s ease;
  --max-w:     1100px;
}

/* ─── Base ────────────────────────────────────────────────── */
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg-base);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 70px;
}
@media (min-width: 768px) { body { padding-bottom: 0; } }

/* Custom scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-base); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

/* ─── Typography ──────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.2; color: var(--text); }
h1 { font-size: clamp(1.8rem, 5vw, 2.8rem); font-weight: 700; }
h2 { font-size: clamp(1.35rem, 4vw, 2rem); font-weight: 700; }
h3 { font-size: clamp(1.05rem, 3vw, 1.35rem); font-weight: 500; }
h4 { font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
strong { color: var(--text); }
a  { color: var(--accent); text-decoration: none; transition: color var(--trans); }
a:hover { color: var(--highlight); }

/* ─── Container ───────────────────────────────────────────── */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 16px; }
@media (min-width: 768px) { .container { padding: 0 24px; } }

/* ─── Buttons ─────────────────────────────────────────────── */
.p7k_btn {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm); font-family: var(--font-body); font-weight: 600;
  cursor: pointer; border: 2px solid transparent; transition: all var(--trans);
  min-height: 44px; white-space: nowrap; text-decoration: none; line-height: 1;
}
.p7k_btn--primary  { background: var(--accent);    color: #fff;     border-color: var(--accent); }
.p7k_btn--primary:hover  { background: #c61528; border-color: #c61528; color: #fff; }
.p7k_btn--highlight { background: var(--highlight); color: #0E0E12; border-color: var(--highlight); }
.p7k_btn--highlight:hover { background: #d9950a; border-color: #d9950a; color: #0E0E12; }
.p7k_btn--outline  { background: transparent; color: var(--text); border-color: var(--border); }
.p7k_btn--outline:hover  { border-color: var(--accent); color: var(--accent); }
.p7k_btn--ghost    { background: transparent; color: var(--muted); border-color: transparent; }
.p7k_btn--ghost:hover    { color: var(--text); }
.p7k_btn--sm  { padding: 8px 16px;  font-size: .84rem; }
.p7k_btn--md  { padding: 12px 24px; font-size: .95rem; }
.p7k_btn--lg  { padding: 14px 32px; font-size: 1.05rem; }
.p7k_btn--full { width: 100%; }

/* ─── Navigation ──────────────────────────────────────────── */
.p7k_nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--bg-card); border-bottom: 1px solid var(--border);
}
.p7k_nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 60px; gap: 16px;
}
.p7k_nav__logo { display: flex; align-items: center; flex-shrink: 0; }
.p7k_nav__logo img { height: 34px; width: auto; }
.p7k_nav__links { display: none; list-style: none; gap: 24px; }
.p7k_nav__links a { color: var(--muted); font-size: .88rem; font-weight: 600; }
.p7k_nav__links a:hover { color: var(--text); }
.p7k_nav__cta { display: none; gap: 8px; }
.p7k_nav__toggle {
  background: none; border: none; cursor: pointer; min-height: 44px; min-width: 44px;
  display: flex; flex-direction: column; gap: 5px; align-items: center; justify-content: center;
}
.p7k_nav__toggle span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all var(--trans); }
@media (min-width: 768px) {
  .p7k_nav__links { display: flex; }
  .p7k_nav__cta   { display: flex; }
  .p7k_nav__toggle { display: none; }
}

/* Mobile nav */
.p7k_mobile-nav {
  display: none; flex-direction: column;
  background: var(--bg-card); border-top: 1px solid var(--border);
  padding: 12px 16px; gap: 4px;
}
.p7k_mobile-nav.open { display: flex; }
.p7k_mobile-nav a {
  color: var(--muted); padding: 11px 0; border-bottom: 1px solid var(--border);
  font-weight: 600; font-size: .9rem;
}
.p7k_mobile-nav a:last-child { border-bottom: none; }
.p7k_mobile-nav a:hover { color: var(--text); }

/* ─── Hero — Layout A ─────────────────────────────────────── */
.p7k_hero { padding: 36px 0 40px; }
.p7k_hero__inner { display: grid; grid-template-columns: 1fr; gap: 28px; }
@media (min-width: 1024px) {
  .p7k_hero__inner { grid-template-columns: 1fr 400px; align-items: start; }
}
.p7k_hero__badge {
  display: inline-block; background: var(--accent); color: #fff;
  font-size: .72rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; padding: 4px 12px; border-radius: 4px; margin-bottom: 14px;
}
.p7k_hero__title  { margin-bottom: 14px; }
.p7k_hero__lead   { color: var(--muted); font-size: 1rem; margin-bottom: 22px; }
.p7k_hero__ctas   { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 20px; }
.p7k_hero__meta   { display: flex; flex-wrap: wrap; gap: 16px; }
.p7k_hero__meta-item { display: flex; align-items: center; gap: 6px; font-size: .82rem; color: var(--muted); }
.p7k_hero__meta-item strong { color: var(--highlight); }

/* Bonus widget */
.p7k_widget {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px;
}
.p7k_widget__header {
  text-align: center; margin-bottom: 18px; padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.p7k_widget__label { font-size: .75rem; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 6px; }
.p7k_widget__amount {
  font-family: var(--font-head); font-size: 2.1rem; font-weight: 700;
  color: var(--highlight); display: block; line-height: 1;
}
.p7k_widget__sub { color: var(--muted); font-size: .82rem; margin-top: 6px; }
.p7k_widget__code-box {
  background: var(--bg-base); border: 2px dashed var(--highlight);
  border-radius: var(--radius-sm); padding: 12px; text-align: center; margin-bottom: 14px;
}
.p7k_widget__code-label { display: block; font-size: .72rem; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 4px; }
.p7k_widget__code { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; color: var(--highlight); letter-spacing: .1em; }
.p7k_widget__terms { font-size: .75rem; color: var(--muted); text-align: center; margin-top: 10px; line-height: 1.5; }

/* ─── Trust bar ───────────────────────────────────────────── */
.p7k_trust {
  background: var(--bg-card); border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border); padding: 12px 0;
  content-visibility: auto; contain-intrinsic-size: 0 52px;
}
.p7k_trust__list {
  display: flex; flex-wrap: wrap; gap: 12px 20px;
  justify-content: center; list-style: none;
}
.p7k_trust__item { display: flex; align-items: center; gap: 6px; font-size: .8rem; color: var(--muted); }
.p7k_trust__icon { color: var(--highlight); }

/* ─── Content sections ────────────────────────────────────── */
.p7k_section { padding: 44px 0; content-visibility: auto; contain-intrinsic-size: 0 500px; }
.p7k_section--alt { background: var(--bg-card); }
.p7k_section__eyebrow { display: block; font-size: .75rem; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 8px; }
.p7k_section__title { margin-bottom: 10px; }
.p7k_section__title::after { content: ''; display: block; width: 44px; height: 3px; background: var(--accent); margin-top: 10px; border-radius: 2px; }
.p7k_section__intro { color: var(--muted); margin-bottom: 28px; }

@media (min-width: 768px) { .p7k_section { padding: 60px 0; } }

/* ─── Steps ───────────────────────────────────────────────── */
.p7k_steps { display: grid; grid-template-columns: 1fr; gap: 14px; }
.p7k_step {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 18px;
}
.p7k_step__num {
  flex-shrink: 0; width: 34px; height: 34px; background: var(--accent); color: #fff;
  font-family: var(--font-head); font-size: 1rem; font-weight: 700; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.p7k_step__title { font-weight: 600; font-size: .92rem; margin-bottom: 3px; }
.p7k_step__desc  { color: var(--muted); font-size: .86rem; margin-bottom: 0; }
@media (min-width: 768px)  { .p7k_steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .p7k_steps { grid-template-columns: repeat(2, 1fr); } }

/* ─── Table ───────────────────────────────────────────────── */
.p7k_table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); }
.p7k_table { width: 100%; border-collapse: collapse; font-size: .88rem; }
.p7k_table th {
  background: var(--bg-base); color: var(--muted); font-weight: 600;
  text-align: left; padding: 11px 14px; border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.p7k_table td { padding: 11px 14px; border-bottom: 1px solid var(--border); color: var(--text); }
.p7k_table tr:last-child td { border-bottom: none; }
.p7k_table tr:nth-child(even) td { background: rgba(255,255,255,.02); }
.p7k_badge-ok {
  display: inline-flex; align-items: center; gap: 4px; font-size: .76rem;
  font-weight: 700; padding: 2px 9px; border-radius: 20px;
  background: rgba(34,197,94,.12); color: #22c55e;
}
.p7k_badge-warn {
  background: rgba(244,168,0,.12); color: var(--highlight);
  display: inline-flex; align-items: center; gap: 4px; font-size: .76rem;
  font-weight: 700; padding: 2px 9px; border-radius: 20px;
}

/* ─── Cards grid ──────────────────────────────────────────── */
.p7k_cards { display: grid; grid-template-columns: 1fr; gap: 14px; }
.p7k_card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px;
}
.p7k_card__icon  { font-size: 1.4rem; color: var(--highlight); margin-bottom: 10px; }
.p7k_card__title { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; margin-bottom: 7px; }
.p7k_card__text  { color: var(--muted); font-size: .87rem; margin-bottom: 0; }
@media (min-width: 768px)  { .p7k_cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .p7k_cards { grid-template-columns: repeat(3, 1fr); } }

/* ─── FAQ accordion ───────────────────────────────────────── */
.p7k_faq { display: flex; flex-direction: column; gap: 7px; }
.p7k_faq-item {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
}
.p7k_faq-btn {
  width: 100%; background: none; border: none; padding: 15px 18px;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  cursor: pointer; color: var(--text); font-family: var(--font-body); font-size: .92rem;
  font-weight: 600; text-align: left; min-height: 44px; transition: background var(--trans);
}
.p7k_faq-btn:hover { background: rgba(255,255,255,.03); }
.p7k_faq-icon { flex-shrink: 0; color: var(--accent); font-size: 1.3rem; font-weight: 300; transition: transform var(--trans); }
.p7k_faq-item.open .p7k_faq-icon { transform: rotate(45deg); }
.p7k_faq-answer { display: none; padding: 0 18px 16px; color: var(--muted); font-size: .88rem; line-height: 1.7; }
.p7k_faq-item.open .p7k_faq-answer { display: block; }

/* ─── CTA band ────────────────────────────────────────────── */
.p7k_cta-band {
  background: linear-gradient(135deg, #130609 0%, var(--bg-card) 100%);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 48px 0; text-align: center;
  content-visibility: auto; contain-intrinsic-size: 0 200px;
}
.p7k_cta-band__title { font-family: var(--font-head); font-size: clamp(1.4rem, 4vw, 2.1rem); margin-bottom: 10px; }
.p7k_cta-band__sub   { color: var(--muted); margin-bottom: 26px; }
.p7k_cta-band__btns  { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }

/* ─── Footer ──────────────────────────────────────────────── */
.p7k_footer {
  background: var(--bg-card); border-top: 1px solid var(--border);
  padding: 40px 0 24px;
  content-visibility: auto; contain-intrinsic-size: 0 280px;
}
.p7k_footer__inner { display: grid; grid-template-columns: 1fr; gap: 28px; margin-bottom: 28px; }
.p7k_footer__brand p { color: var(--muted); font-size: .83rem; margin-top: 12px; line-height: 1.6; }
.p7k_footer__col h4  { margin-bottom: 14px; }
.p7k_footer__col ul  { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.p7k_footer__col a   { color: var(--muted); font-size: .86rem; }
.p7k_footer__col a:hover { color: var(--text); }
.p7k_footer__bottom {
  border-top: 1px solid var(--border); padding-top: 18px;
  display: flex; flex-direction: column; gap: 8px; align-items: center; text-align: center;
}
.p7k_footer__copy { color: var(--muted); font-size: .78rem; }
.p7k_footer__age {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; background: var(--accent); color: #fff;
  font-weight: 700; font-size: .72rem; border-radius: 50%; flex-shrink: 0;
}
@media (min-width: 768px) {
  .p7k_footer__inner  { grid-template-columns: 2fr 1fr 1fr; }
  .p7k_footer__bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* ─── Sticky mobile CTA ───────────────────────────────────── */
.p7k_sticky-cta {
  display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  background: var(--bg-card); border-top: 2px solid var(--accent);
  padding: 9px 14px; gap: 10px; align-items: center;
}
.p7k_sticky-cta__text  { flex: 1; font-size: .78rem; color: var(--muted); line-height: 1.4; }
.p7k_sticky-cta__text strong { display: block; color: var(--highlight); font-size: .82rem; }
@media (min-width: 768px) { .p7k_sticky-cta { display: none; } }

/* ─── Utilities ───────────────────────────────────────────── */
.p7k_highlight { color: var(--highlight); }
.p7k_accent    { color: var(--accent); }
.p7k_notice {
  background: rgba(227,28,47,.08); border: 1px solid rgba(227,28,47,.2);
  border-radius: var(--radius-sm); padding: 15px 18px; margin-bottom: 18px;
}
.p7k_notice--gold {
  background: rgba(244,168,0,.08); border-color: rgba(244,168,0,.25);
}
.p7k_notice p { margin-bottom: 0; font-size: .88rem; }

.p7k_list { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-bottom: 1rem; }
.p7k_list li { display: flex; gap: 9px; align-items: flex-start; color: var(--muted); font-size: .9rem; }
.p7k_list li::before { content: '✓'; color: var(--highlight); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* Breadcrumb */
.p7k_breadcrumb { display: flex; flex-wrap: wrap; gap: 5px; list-style: none; padding: 12px 0; font-size: .8rem; }
.p7k_breadcrumb li { display: flex; align-items: center; gap: 5px; }
.p7k_breadcrumb li::after { content: '/'; color: var(--border); }
.p7k_breadcrumb li:last-child::after { display: none; }
.p7k_breadcrumb a   { color: var(--muted); }
.p7k_breadcrumb span { color: var(--text); }

/* Author bar */
.p7k_author-bar {
  display: flex; align-items: center; gap: 12px; padding: 13px 18px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); margin-bottom: 28px;
}
.p7k_author-bar__avatar {
  width: 42px; height: 42px; border-radius: 50%; background: var(--accent);
  color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 1rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.p7k_author-bar__name { font-weight: 600; font-size: .88rem; }
.p7k_author-bar__role { font-size: .78rem; color: var(--muted); }

/* Mirror card */
.p7k_mirror-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 18px 20px;
  display: flex; flex-direction: column; gap: 10px; margin-bottom: 10px;
}
.p7k_mirror-url { font-family: var(--font-head); font-size: 1.05rem; color: var(--highlight); word-break: break-all; }
.p7k_mirror-meta { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }

/* Status badges */
.p7k_status-ok   { display: inline-flex; align-items: center; gap: 3px; font-size: .74rem; font-weight: 700; padding: 3px 9px; border-radius: 20px; background: rgba(34,197,94,.1); color: #22c55e; }
.p7k_status-warn { background: rgba(244,168,0,.1); color: var(--highlight); display: inline-flex; align-items: center; gap: 3px; font-size: .74rem; font-weight: 700; padding: 3px 9px; border-radius: 20px; }

/* Contact card */
.p7k_contact-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px;
}
.p7k_contact-card__icon { font-size: 1.6rem; margin-bottom: 10px; }
.p7k_contact-card__title { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; }
.p7k_contact-card__text  { color: var(--muted); font-size: .86rem; margin-bottom: 6px; }
.p7k_contact-card__meta  { font-size: .78rem; color: var(--muted); }

/* Privacy/legal sections */
.p7k_legal-section { padding: 32px 0; border-bottom: 1px solid var(--border); }
.p7k_legal-section:last-child { border-bottom: none; }
.p7k_legal-section h2 { font-size: 1.2rem; margin-bottom: 12px; }

/* ─── Animations ──────────────────────────────────────────── */
@keyframes p7k_fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.p7k_animate { opacity: 0; }
.p7k_animate.p7k_visible { animation: p7k_fadeUp .5s ease forwards; }

/* ─── Responsive ──────────────────────────────────────────── */
@media (min-width: 480px) {
  .p7k_mirror-card { flex-direction: row; align-items: center; justify-content: space-between; }
}
@media (min-width: 768px) {
  .p7k_cards--2 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .p7k_cards--4 { grid-template-columns: repeat(4, 1fr); }
}
