/* McDonald's-style parody theme: white ground, #FFBC0D yellow, #DA291C red, #292929 ink */
:root {
  --yellow: #ffbc0d;
  --yellow-hover: #ffc72c;
  --red: #da291c;
  --red-hover: #c0231a;
  --ink: #292929;
  --ink-2: #4d4d4d;
  --muted: #6f6f6f;
  --line: #e6e6e6;
  --bg: #ffffff;
  --bg-soft: #f7f7f7;
  --bg-warm: #fff4d6;
  --radius: 12px;
  --font: "Nunito Sans", "Speedee", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { line-height: 1.15; font-weight: 800; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.skip {
  position: absolute; left: 8px; top: -60px;
  background: var(--yellow); color: var(--ink); padding: 8px 12px; font-weight: 700; border-radius: 4px; z-index: 200;
}
.skip:focus { top: 8px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 24px; border-radius: 4px; font-weight: 700; font-size: 15px;
  border: 2px solid transparent; cursor: pointer; transition: background 0.15s, color 0.15s, border-color 0.15s;
  font-family: inherit; white-space: nowrap;
}
.btn--yellow { background: var(--yellow); color: var(--ink); border-color: var(--yellow); }
.btn--yellow:hover { background: var(--yellow-hover); border-color: var(--yellow-hover); }
.btn--red { background: var(--red); color: #fff; border-color: var(--red); }
.btn--red:hover { background: var(--red-hover); border-color: var(--red-hover); }
.btn--outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: #fff; }
.btn--sm { padding: 8px 16px; font-size: 13px; }
.btn--lg { padding: 14px 32px; font-size: 16px; }
.link { color: var(--ink); font-weight: 700; border-bottom: 2px solid var(--yellow); padding-bottom: 2px; }
.link:hover { color: var(--red); border-color: var(--red); }

/* Header */
.header {
  position: sticky; top: 0; z-index: 100;
  background: #fff; border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 6px rgba(0,0,0,0.06);
}
.header__inner {
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 32px; height: 72px;
}
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo__arches { width: 44px; height: 38px; display: block; }
.logo__word { font-weight: 900; font-size: 22px; letter-spacing: -0.01em; color: var(--ink); }
.nav { display: flex; gap: 28px; flex: 1; font-weight: 700; font-size: 15px; color: var(--ink); }
.nav a { padding: 6px 0; border-bottom: 3px solid transparent; }
.nav a:hover { border-color: var(--yellow); }
.header__actions { display: flex; align-items: center; gap: 18px; margin-left: auto; }
.icon-btn { background: none; border: none; color: var(--ink); cursor: pointer; display: grid; place-items: center; padding: 4px; }
.icon-btn:hover { color: var(--red); }
.lang { font-weight: 700; font-size: 14px; color: var(--ink-2); }
.burger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 8px; margin-left: auto; }
.burger span { width: 24px; height: 3px; background: var(--ink); border-radius: 2px; display: block; }
.nav--mobile { display: none; flex-direction: column; gap: 4px; padding: 12px 24px 20px; border-top: 1px solid var(--line); background: #fff; }
.nav--mobile a { padding: 12px 0; font-weight: 700; border-bottom: 1px solid var(--line); }
.nav--mobile .btn { margin-top: 12px; border-bottom: none; }
.nav--mobile.open { display: flex; }
@media (max-width: 1000px) {
  .nav, .header__actions { display: none; }
  .burger { display: flex; }
}

/* Hero */
.hero {
  position: relative; overflow: hidden;
  background: #fff;
  min-height: 580px;
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  max-width: 1400px; margin: 0 auto;
}
@media (max-width: 900px) { .hero { background: #fff; grid-template-columns: 1fr; } }
.hero__content {
  position: relative; z-index: 2;
  padding: 72px 24px 72px max(24px, calc((100vw - 1200px) / 2));
  align-self: center;
}
.hero__art {
  position: relative;
  display: flex; align-items: flex-end; justify-content: center; gap: 0;
  padding-top: 90px;
}
@media (max-width: 900px) { .hero__art { padding-top: 80px; } }
.hero__wojak {
  width: clamp(240px, 30vw, 380px); height: clamp(300px, 36vw, 460px);
  object-fit: cover; object-position: 60% 100%;
  position: relative; z-index: 2; margin-right: -16px; margin-bottom: 0;
}
@media (min-width: 901px) { .hero__art { padding-right: 32px; } }
.bubble {
  position: absolute; top: 28px; left: 50%; transform: translateX(-78%);
  background: #fff; color: var(--ink); font-weight: 800; font-size: 15px;
  padding: 12px 18px; border-radius: 18px; border: 2px solid var(--ink);
  white-space: nowrap; z-index: 3;
}
.bubble::after {
  content: ""; position: absolute; bottom: -14px; left: 48%;
  border: 8px solid transparent; border-top-color: var(--ink); border-bottom: 0;
}
.bubble::before {
  content: ""; position: absolute; bottom: -10px; left: calc(48% + 1px); z-index: 1;
  border: 7px solid transparent; border-top-color: #fff; border-bottom: 0;
}
@media (max-width: 1100px) { .bubble { font-size: 13px; } }
.hero__eyebrow { font-weight: 700; color: var(--red); text-transform: uppercase; letter-spacing: 0.1em; font-size: 13px; margin-bottom: 12px; }
.hero__title { font-size: clamp(40px, 6vw, 72px); font-weight: 900; letter-spacing: -0.02em; max-width: 620px; margin-bottom: 20px; }
.hero__copy { font-size: 18px; color: var(--ink-2); max-width: 520px; margin-bottom: 28px; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 20px; }
.hero__legal { font-size: 12px; color: var(--muted); max-width: 520px; }

.fries { position: relative; width: 240px; height: 380px; flex-shrink: 0; z-index: 1; }
.fries__box {
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 210px; height: 195px; background: var(--red);
  clip-path: polygon(0 8%, 100% 8%, 92% 100%, 8% 100%);
  display: flex; align-items: center; justify-content: center;
  box-shadow: inset 0 -24px 0 rgba(0,0,0,0.08);
}
.fries__box svg { width: 105px; height: 92px; margin-top: 16px; }
.fries__stick {
  position: absolute; bottom: 160px; width: 28px;
  background: linear-gradient(90deg, #f7c948 0%, #ffd766 50%, #f0b429 100%);
  border-radius: 5px; transform-origin: bottom center;
  box-shadow: 2px 0 0 rgba(0,0,0,0.06) inset;
}
.s1 { left: 32px; height: 200px; transform: rotate(-16deg); }
.s2 { left: 62px; height: 235px; transform: rotate(-8deg); }
.s3 { left: 92px; height: 220px; transform: rotate(-2deg); }
.s4 { left: 120px; height: 245px; transform: rotate(3deg); }
.s5 { left: 150px; height: 215px; transform: rotate(9deg); }
.s6 { left: 180px; height: 195px; transform: rotate(16deg); }
.s7 { left: 106px; height: 180px; transform: rotate(-12deg); opacity: 0.85; }
@media (max-width: 520px) { .fries { width: 170px; height: 300px; } .fries__box { width: 150px; height: 140px; } .fries__stick { bottom: 116px; width: 20px; } .s1{left:22px;height:140px} .s2{left:44px;height:165px} .s3{left:66px;height:155px} .s4{left:86px;height:172px} .s5{left:108px;height:150px} .s6{left:128px;height:136px} .s7{left:76px;height:126px} }

/* Contract strip */
.ca-strip { background: var(--ink); color: #fff; }
.ca-strip__inner { display: flex; align-items: center; gap: 16px; padding: 14px 24px; flex-wrap: wrap; }
.ca-strip__label { font-size: 12px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--yellow); }
.ca-strip__addr { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 14px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 60vw; }
.ca-strip__pair { margin-left: auto; font-size: 14px; color: #ccc; }
.ca-strip__pair strong { color: #fff; }

/* Sections */
.section { padding: 72px 0; }
.section__title { font-size: clamp(30px, 4vw, 44px); font-weight: 900; text-align: center; letter-spacing: -0.02em; margin-bottom: 16px; }
.section__title--left { text-align: left; }
.section__sub { text-align: center; color: var(--ink-2); font-size: 17px; max-width: 640px; margin: 0 auto 44px; }
.eyebrow { font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; font-size: 13px; margin-bottom: 8px; }
.eyebrow--red { color: var(--red); }

/* Featured cards */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; margin-top: 36px; }
.feature { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column; border: 1px solid var(--line); }
.feature__img { height: 200px; display: grid; place-items: center; font-size: 84px; }
.feature__img--yellow { background: var(--yellow); }
.feature__img--red { background: var(--red); }
.feature__img--dark { background: var(--ink); }
.feature__body { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.feature__body h3 { font-size: 20px; }
.feature__body p { color: var(--ink-2); flex: 1; }

/* Greentext post (4chan-style) */
.section--poem { background: #ffffee; border-top: 1px solid #d9bfb7; border-bottom: 1px solid #d9bfb7; padding: 56px 0; }
.post {
  max-width: 820px; margin: 0 auto;
  background: #f0e0d6; border: 1px solid #d9bfb7; border-radius: 4px;
  padding: 10px 16px 16px; font-family: Arial, Helvetica, sans-serif; font-size: 14px; color: #800000;
  box-shadow: var(--shadow);
}
.post__meta { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 8px; }
.post__name { color: #117743; font-weight: 700; }
.post__id { color: #800000; }
.post__date, .post__no { color: #800000; }
.post__body { display: flex; gap: 16px; align-items: flex-start; }
.post__thumb { flex-shrink: 0; text-align: center; color: #707070; font-size: 11px; }
.post__thumb img { width: 150px; height: auto; display: block; background: #fff; border: 1px solid #d9bfb7; }
.post__text p { margin: 0 0 12px; line-height: 1.5; }
.post__text em { color: #800000; }
.green { color: #789922; font-weight: 700; letter-spacing: 0.02em; }
.post__reply { margin: 12px 0 0 40px; background: #f0e0d6; border: 1px solid #d9bfb7; padding: 8px 12px; display: inline-block; }
.post__reply p { margin: 6px 0 0; }
.quote { color: #d00; text-decoration: underline; }
.stop { display: inline-block; margin-top: 4px; color: #000; font-size: 22px; font-weight: 900; }
@media (max-width: 560px) { .post__body { flex-direction: column; } .post__reply { margin-left: 0; } }

/* NEET vs Wagie */
.section--neet { background: #fff; }
.versus { display: grid; grid-template-columns: 1fr auto 1fr; gap: 24px; align-items: start; }
@media (max-width: 860px) { .versus { grid-template-columns: 1fr; } .versus__vs { justify-self: center; } }
.versus__col { border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); border: 1px solid var(--line); text-align: center; }
.versus__col--neet { background: #f3f0fa; }
.versus__col--wagie { background: var(--bg-warm); }
.versus__col img {
  width: 100%; max-width: 320px; aspect-ratio: 1 / 1; height: auto; object-fit: cover;
  display: block; margin: 0 auto 16px; border-radius: var(--radius); border: 1px solid var(--line); background: #fff;
}
.versus__col--wagie img { object-position: 60% 40%; }
.versus__col--neet img { object-position: 40% 50%; }
.versus__col h3 { font-size: 26px; margin-bottom: 16px; }
.versus__col ul { list-style: none; text-align: left; display: flex; flex-direction: column; gap: 10px; color: var(--ink-2); font-size: 15px; }
.versus__col li strong { display: inline-block; min-width: 82px; color: var(--ink); }
.versus__col--neet li strong { color: #5b3fb0; }
.versus__col--wagie li strong { color: var(--red); }
.versus__vs {
  align-self: center; width: 72px; height: 72px; border-radius: 50%;
  background: var(--ink); color: var(--yellow); font-weight: 900; font-size: 24px;
  display: grid; place-items: center;
}
.versus__note { text-align: center; margin-top: 32px; font-weight: 800; font-size: 18px; }

/* App band */
.band { background: var(--yellow); padding: 72px 0; }
.band__inner { display: grid; grid-template-columns: 340px 1fr; gap: 64px; align-items: center; }
@media (max-width: 860px) { .band__inner { grid-template-columns: 1fr; } }
.band__copy p { font-size: 17px; color: var(--ink); margin-bottom: 20px; max-width: 560px; }
.checks { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; font-weight: 700; }
.checks li::before { content: "✓"; display: inline-grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; background: var(--ink); color: var(--yellow); font-size: 13px; margin-right: 10px; }
.store-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.store-btn { background: var(--ink); color: #fff; padding: 12px 20px; border-radius: 8px; font-weight: 700; }
.store-btn:hover { background: #000; }

.phone {
  width: 300px; height: 600px; margin: 0 auto;
  background: #111; border-radius: 40px; padding: 14px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.25);
}
.phone__screen { background: #fff; border-radius: 28px; height: 100%; padding: 20px 18px; display: flex; flex-direction: column; gap: 12px; }
.phone__bar { display: flex; justify-content: space-between; font-weight: 900; font-size: 14px; }
.phone__chart { height: 150px; background: var(--bg-soft); border-radius: 12px; padding: 12px; }
.phone__chart svg { width: 100%; height: 100%; }
.phone__price { font-size: 36px; font-weight: 900; color: var(--ink); }
.phone__price small { font-size: 14px; color: var(--muted); font-weight: 700; }
.phone__row { display: flex; justify-content: space-between; font-size: 14px; color: var(--ink-2); border-top: 1px solid var(--line); padding-top: 10px; }
.phone__row strong { color: var(--ink); font-variant-numeric: tabular-nums; }
.phone__btn { margin-top: auto; background: var(--yellow); text-align: center; padding: 14px; border-radius: 8px; font-weight: 800; }

/* Pair section */
.pair-hero { display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; align-items: center; margin-bottom: 64px; }
@media (max-width: 860px) { .pair-hero { grid-template-columns: 1fr; } }
.pair-hero__copy p { color: var(--ink-2); font-size: 17px; margin-bottom: 16px; }
.pair-hero__copy .btn { margin-top: 8px; }
.pair-hero__visual { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; }
.chip { width: 180px; padding: 28px 16px; border-radius: 16px; text-align: center; display: flex; flex-direction: column; gap: 4px; box-shadow: var(--shadow); }
.chip--wagie { background: var(--yellow); color: var(--ink); }
.chip--mcd { background: var(--red); color: #fff; }
.chip__icon { font-size: 56px; line-height: 1; margin-bottom: 8px; }
.chip img { width: 96px; height: 96px; object-fit: cover; object-position: 60% 30%; border-radius: 50%; margin: 0 auto 8px; display: block; background: #fff; border: 3px solid var(--ink); }
.chip strong { font-size: 24px; font-weight: 900; }
.chip small { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.85; }
.chip__x { font-size: 48px; font-weight: 900; color: var(--ink); }
.value-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.value { padding: 28px; border-top: 4px solid var(--yellow); background: #fff; border-radius: 0 0 var(--radius) var(--radius); box-shadow: var(--shadow); }
.value h3 { font-size: 18px; margin-bottom: 8px; }
.value p { color: var(--ink-2); font-size: 15px; }

/* Order */
.section--buy { background: var(--red); color: #fff; }
.section--buy .section__sub { color: rgba(255,255,255,0.85); }
.order-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; margin-bottom: 40px; }
.order-step { background: rgba(255,255,255,0.08); border-radius: var(--radius); padding: 28px; border: 1px solid rgba(255,255,255,0.15); }
.order-step__num { display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: var(--yellow); color: var(--ink); font-weight: 900; font-size: 18px; margin-bottom: 14px; }
.order-step h3 { font-size: 19px; margin-bottom: 6px; }
.order-step p { color: rgba(255,255,255,0.85); font-size: 15px; }
.order-cta { text-align: center; }

/* Footer */
.footer { background: var(--bg-soft); border-top: 1px solid var(--line); padding: 56px 0 32px; color: var(--ink-2); font-size: 14px; }
.footer__cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 32px; margin-bottom: 40px; }
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col h4 { color: var(--ink); font-size: 15px; margin-bottom: 4px; }
.footer__col a:hover { color: var(--red); text-decoration: underline; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; padding: 24px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.footer__social { display: flex; gap: 14px; }
.footer__social a { width: 40px; height: 40px; border-radius: 50%; background: #fff; border: 1px solid var(--line); display: grid; place-items: center; font-size: 18px; color: var(--ink); }
.footer__social a:hover { border-color: var(--red); }
.footer__legal { display: flex; gap: 20px; flex-wrap: wrap; font-weight: 600; }
.footer__legal a:hover { text-decoration: underline; }
.footer__disclaimer { margin-top: 24px; font-size: 12px; color: var(--muted); max-width: 900px; }
.footer__copy { margin-top: 16px; font-size: 12px; color: var(--muted); }

/* Toast */
.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translate(-50%, 20px);
  background: var(--ink); color: #fff; font-weight: 700; padding: 12px 20px; border-radius: 8px;
  opacity: 0; pointer-events: none; transition: opacity 0.2s, transform 0.2s; z-index: 200;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}
