/* ==========================================================================
   INFINITREATS — Bold Sport-Sticker Style
   ========================================================================== */

:root {
  --purple: #6d28d9;
  --purple-dark: #3b0764;
  --purple-soft: #f2e9fd;
  --black: #0e0e10;
  --white: #ffffff;
  --ink-soft: #46424c;

  --font-display: 'Anton', 'Arial Narrow', sans-serif;
  --font-head: 'Poppins', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;

  --line: 3px solid var(--black);
  --line-thin: 2px solid var(--black);
  --radius: 20px;
  --radius-sm: 12px;

  --pop: 7px 7px 0 var(--black);
  --pop-sm: 5px 5px 0 var(--black);
  --pop-lg: 10px 10px 0 var(--black);

  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin: 0 0 0.4em;
  line-height: 1.05;
  color: var(--black);
}

p {
  margin: 0 0 1em;
  line-height: 1.7;
  color: var(--ink-soft);
  font-size: 16px;
}

a {
  color: inherit;
}

img, video {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--purple);
  border: var(--line-thin);
  padding: 6px 16px;
  border-radius: 999px;
  box-shadow: var(--pop-sm);
  margin-bottom: 20px;
}

.center-wrap {
  text-align: center;
}

.center-wrap .eyebrow {
  margin-left: auto;
  margin-right: auto;
}

section {
  position: relative;
  padding: 100px 0;
}

.section-head {
  max-width: 620px;
  margin: 0 auto 50px;
}

.section-head h2 {
  font-size: clamp(30px, 5vw, 50px);
}

.section-head p {
  font-size: 17px;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14.5px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 15px 30px;
  border-radius: var(--radius-sm);
  border: var(--line);
  cursor: pointer;
  text-decoration: none;
  background: var(--white);
  color: var(--black);
  box-shadow: var(--pop-sm);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 var(--black);
}

.btn:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--black);
}

.btn-purple {
  background: var(--purple);
  color: var(--white);
}

.btn-block {
  width: 100%;
}

/* ---------- Nav ---------- */

.nav {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: var(--line);
  padding: 16px 0;
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-family: var(--font-display);
  font-size: 24px;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.brand.small {
  color: var(--white);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--black);
  text-decoration: none;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--purple);
}

.nav-cta {
  background: var(--purple);
  color: var(--white) !important;
  border: var(--line-thin);
  border-radius: 999px;
  padding: 10px 20px !important;
  box-shadow: var(--pop-sm);
}

.nav-toggle {
  display: none;
  background: var(--white);
  border: var(--line-thin);
  border-radius: var(--radius-sm);
  color: var(--black);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  padding: 8px 14px;
  cursor: pointer;
}

/* ---------- Hero ---------- */

.hero {
  background: var(--purple-soft);
  overflow: hidden;
  padding: 80px 0 0;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-copy .eyebrow {
  background: var(--black);
}

.hero-copy h1 {
  font-size: clamp(46px, 7vw, 80px);
  line-height: 0.98;
}

.hero-copy h1 .accent {
  color: var(--purple);
  -webkit-text-stroke: 2px var(--black);
}

.hero-copy p {
  font-size: 18px;
  max-width: 460px;
  color: var(--black);
}

.hero-actions {
  display: flex;
  gap: 18px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px 0;
}

.hero-blob {
  position: absolute;
  width: 420px;
  height: 420px;
  max-width: 90%;
  aspect-ratio: 1;
  background: var(--purple);
  border-radius: 50%;
  border: var(--line);
  z-index: 0;
}

.hero-photo {
  position: relative;
  z-index: 1;
  border: var(--line);
  border-radius: var(--radius);
  box-shadow: var(--pop-lg);
  overflow: hidden;
  transform: rotate(-4deg);
  background: var(--white);
  max-width: 380px;
}

.hero-sticker {
  position: absolute;
  z-index: 2;
  top: -6px;
  right: -10px;
  background: var(--white);
  border: var(--line);
  border-radius: 50%;
  width: 108px;
  height: 108px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  line-height: 1.25;
  transform: rotate(10deg);
  box-shadow: var(--pop-sm);
}

.hero-dots {
  position: absolute;
  left: -10px;
  bottom: 10px;
  width: 120px;
  height: 90px;
  background-image: radial-gradient(var(--purple) 3px, transparent 3px);
  background-size: 16px 16px;
  opacity: 0.5;
  z-index: 0;
}

/* ---------- Diagonal divider ---------- */

.diagonal-top {
  position: relative;
}

.diagonal-top::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 60px;
  background: inherit;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  transform: translateY(-100%);
}

/* ---------- Stats ---------- */

.stats {
  background: var(--black);
  padding: 60px 0;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.stat-chip {
  background: var(--white);
  border: var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--pop-sm);
  padding: 26px 16px;
  text-align: center;
}

.stat-chip .num {
  display: block;
  font-family: var(--font-display);
  font-size: 34px;
  color: var(--purple);
  margin-bottom: 4px;
}

.stat-chip .label {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ---------- Split sections ---------- */

.split {
  background: var(--white);
}

.split.alt {
  background: var(--purple-soft);
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.split.reverse .split-grid {
  grid-template-columns: 1.1fr 1fr;
}

.split.reverse .split-media {
  order: 2;
}

.split.reverse .split-copy {
  order: 1;
}

.split-media {
  border: var(--line);
  border-radius: var(--radius);
  box-shadow: var(--pop);
  overflow: hidden;
  transform: rotate(-2deg);
  background: var(--white);
}

.split.reverse .split-media {
  transform: rotate(2deg);
}

.split-media img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.split-copy .section-head {
  margin: 0 0 24px;
  text-align: left;
}

.num-list {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.num-list li {
  display: flex;
  gap: 14px;
  align-items: center;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 15px;
  color: var(--black);
}

.num-badge {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--purple);
  color: var(--white);
  border: var(--line-thin);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 13px;
}

/* ---------- Watch (video) ---------- */

.watch {
  background: var(--black);
  color: var(--white);
  text-align: center;
}

.watch .section-head h2 {
  color: var(--white);
}

.watch .section-head p {
  color: rgba(255, 255, 255, 0.7);
}

.frame {
  max-width: 860px;
  margin: 0 auto;
  border: var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 10px 10px 0 var(--purple);
  background: #000;
}

.frame video {
  width: 100%;
  display: block;
  max-height: 500px;
  background: #000;
}

.frame-missing {
  padding: 80px 24px;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-head);
}

/* ---------- Facts (sticker grid) ---------- */

.facts {
  background: var(--white);
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.fact {
  background: var(--white);
  border: var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--pop-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.fact:nth-child(3n+1) { transform: rotate(-1.5deg); }
.fact:nth-child(3n+2) { transform: rotate(1deg); }
.fact:nth-child(3n+3) { transform: rotate(-1deg); }

.fact:hover {
  transform: rotate(0deg) translateY(-6px);
  box-shadow: var(--pop);
}

.fact-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 16px;
}

.fact h3 {
  font-size: 19px;
  margin-bottom: 10px;
}

.fact p {
  font-size: 14.5px;
  margin-bottom: 0;
}

/* ---------- Moments (chips) ---------- */

.moments {
  background: var(--purple);
  color: var(--white);
}

.moments .section-head h2,
.moments .section-head p {
  color: var(--white);
}

.moments .eyebrow {
  background: var(--black);
}

.moments-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.moment {
  background: var(--white);
  color: var(--black);
  border: var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--pop-sm);
  padding: 24px 20px;
  text-align: center;
}

.moment h4 {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 800;
  text-transform: none;
  margin-bottom: 8px;
}

.moment p {
  font-size: 13.5px;
  margin-bottom: 0;
}

/* ---------- Facility ---------- */

.facility {
  background: var(--purple-soft);
}

.facility-frame {
  max-width: 960px;
  margin: 0 auto;
  border: var(--line);
  border-radius: var(--radius);
  box-shadow: var(--pop);
  overflow: hidden;
  aspect-ratio: 3 / 2;
}

.facility-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Partner (distributor) ---------- */

.partner {
  background: var(--black);
  color: var(--white);
}

.partner-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
}

.partner-copy .section-head {
  text-align: left;
  margin: 0 0 24px;
}

.partner-copy .section-head h2,
.partner-copy .section-head p {
  color: var(--white);
}

.partner-copy .eyebrow {
  background: var(--purple);
}

.partner-list {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.partner-list li {
  display: flex;
  gap: 12px;
  align-items: center;
  font-family: var(--font-head);
  font-size: 14.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}

.partner-list li::before {
  content: "★";
  color: var(--purple);
  -webkit-text-stroke: 1px var(--white);
  font-size: 16px;
}

.partner-card {
  background: var(--white);
  border: var(--line);
  border-radius: var(--radius);
  box-shadow: 8px 8px 0 var(--purple);
  padding: 40px;
}

.form-alert {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: var(--line-thin);
  font-size: 14px;
  margin-bottom: 20px;
  font-weight: 600;
  font-family: var(--font-head);
}

.form-alert.success {
  background: #dff8e6;
}

.form-alert.error ul {
  margin: 0;
  padding-left: 18px;
  font-weight: 400;
}

.form-alert.error {
  background: #fde3e6;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-family: var(--font-head);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--black);
  margin-bottom: 7px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 13px 14px;
  border-radius: var(--radius-sm);
  border: var(--line-thin);
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--black);
  background: var(--white);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  box-shadow: 4px 4px 0 var(--purple);
  transform: translate(-2px, -2px);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.6);
  padding: 50px 0 26px;
  border-top: var(--line);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 26px;
  margin-bottom: 20px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.15);
}

.footer-links {
  display: flex;
  gap: 26px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.footer-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--white);
}

/* ---------- Reveal animation ---------- */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */

@media (max-width: 960px) {
  .hero .container,
  .split-grid,
  .split.reverse .split-grid,
  .partner-grid {
    grid-template-columns: 1fr;
  }

  .split.reverse .split-media,
  .split.reverse .split-copy {
    order: initial;
  }

  .hero-visual { order: -1; margin-bottom: 20px; }

  .facts-grid { grid-template-columns: repeat(2, 1fr); }
  .moments-row { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(3, 1fr); }

  .nav-links { display: none; }
  .nav-toggle { display: block; }

  .partner-card { padding: 28px; }
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: var(--line);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 6px 24px 18px;
  }

  .nav-links.is-open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 14px 0;
    width: 100%;
    border-bottom: 1px solid rgba(0,0,0,0.1);
  }

  section { padding: 70px 0; }
  .facts-grid, .moments-row { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-photo { max-width: 280px; }
  .hero-blob { width: 320px; height: 320px; }
}
