:root {
  --black: #080808;
  --black-2: #0f0f0f;
  --black-3: #161616;
  --black-4: #1e1e1e;
  --green: #39ff14;
  --green-dim: #22cc0a;
  --green-dark: #0a4403;
  --green-glow: rgba(57,255,20,0.15);
  --green-glow-sm: rgba(57,255,20,0.08);
  --white: #f5f5f0;
  --gray: #888;
  --gray-2: #555;
  --border: rgba(57,255,20,0.18);
  --border-dim: rgba(255,255,255,0.06);
  --font-display: 'Bebas Neue', Impact, 'Arial Narrow', Arial, sans-serif;
  --font-body: 'Syne', Arial, Helvetica, sans-serif;
  --font-mono: 'DM Mono', 'Courier New', Courier, monospace;
  --radius: 4px;
  --radius-lg: 8px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* SCANLINE TEXTURE */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.03) 2px,
    rgba(0,0,0,0.03) 4px
  );
  pointer-events: none;
  z-index: 9999;
  contain: strict;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 1.25rem;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  color: var(--green);
}

.nav-logo span {
  color: var(--white);
}

.nav-links {
  display: flex;
  gap: 0.25rem;
  list-style: none;
  align-items: center;
}

.nav-links a,
.nav-links button {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
  padding: 0.35rem 0.65rem;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links button:hover {
  color: var(--green);
}

.nav-links .api-btn {
  color: var(--green);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.nav-links .api-btn:hover {
  background: var(--green-glow-sm);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 56px;
  left: 0;
  right: 0;
  background: rgba(8,8,8,0.98);
  border-bottom: 1px solid var(--border);
  z-index: 99;
  padding: 1rem 1.25rem;
  flex-direction: column;
  gap: 0;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a,
.mobile-menu button {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border-dim);
  background: transparent;
  border-top: none;
  border-left: none;
  border-right: none;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s;
}

.mobile-menu a:hover,
.mobile-menu button:hover {
  color: var(--green);
}

/* SECTIONS */
section {
  padding: 5rem 1.25rem;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--green);
}

/* HERO */
#home {
  padding-top: 7rem;
  padding-bottom: 4rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

#home .container {
  width: 100%;
}

#home::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: min(600px, 60vw);
  height: min(600px, 60vw);
  transform: translate(20%, -10%);
  background: radial-gradient(circle, rgba(57,255,20,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.3rem 0.85rem;
  margin-bottom: 1.5rem;
  background: var(--green-glow-sm);
  animation: pulse-border 3s infinite;
}

@keyframes pulse-border {
  0%, 100% { border-color: rgba(57,255,20,0.18); }
  50% { border-color: rgba(57,255,20,0.5); }
}

.hero-tag .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: blink 1.5s infinite;
}

@keyframes blink {
  0%,100% { opacity:1; }
  50% { opacity:0.2; }
}

h1 {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 8rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 0.5rem;
  min-height: 2.8em;
}

h1 .accent {
  color: var(--green);
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--gray);
  max-width: 540px;
  margin: 1.5rem 0 2.5rem;
  line-height: 1.7;
  min-height: 5.5rem;
}

.hero-sub strong {
  color: var(--white);
  font-weight: 500;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  padding: 0.85rem 1.75rem;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--green);
  color: var(--black);
  border: 1px solid var(--green);
  font-weight: 500;
}

.btn-primary:hover {
  background: var(--green-dim);
  border-color: var(--green-dim);
  transform: translateY(-1px);
  box-shadow: 0 6px 30px rgba(57,255,20,0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.15);
}

.btn-ghost:hover {
  border-color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.04);
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 3rem;
  align-items: center;
  min-height: 56px;
}

.hero-resp {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-dim);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-resp::before {
  content: '⏱';
  font-size: 0.8rem;
}

.hero-ticker {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-dim);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 3rem;
  max-width: 600px;
  min-height: 98px;
}

.ticker-item {
  background: var(--black-2);
  padding: 1.1rem 1.25rem;
  text-align: center;
}

.ticker-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--green);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.ticker-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
}

/* STATS BAND */
.stats-band {
  background: var(--black-3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2rem 1.25rem;
  overflow: hidden;
}

.stats-track {
  display: flex;
  gap: 4rem;
  align-items: center;
  animation: scroll-track 20s linear infinite;
  width: max-content;
}

@keyframes scroll-track {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.stat-pill {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  white-space: nowrap;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
}

.stat-pill .ico {
  width: 32px;
  height: 32px;
  background: var(--green-glow-sm);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.stat-num {
  color: var(--green);
  font-weight: 500;
}

.stat-text {
  color: var(--gray);
  font-size: 0.78rem;
}

/* IMAGES GRID */
.images-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--border-dim);
}

@media (min-width: 700px) {
  .images-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.img-card {
  background: var(--black-3);
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
}

.img-card:hover .img-overlay {
  opacity: 1;
}

.img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.example-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3 / 4;
}

.img-p1 { background: linear-gradient(135deg, #0a1f0a 0%, #0f3a1a 40%, #1a5c2e 70%, #2d8a4a 100%); }
.img-p2 { background: linear-gradient(160deg, #0d0d1f 0%, #1a1a3d 50%, #0f2d4a 100%); }
.img-p3 { background: linear-gradient(180deg, #1a0a0a 0%, #3d1a1a 60%, #5c0000 100%); }
.img-p4 { background: linear-gradient(120deg, #0a0f1f 0%, #0f1a3d 40%, #1a2a5c 80%); }

.img-inner {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.art-realistic::before {
  content: '';
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: 55%;
  height: 55%;
  background: radial-gradient(ellipse, rgba(57,255,20,0.15) 0%, rgba(20,100,40,0.4) 50%, transparent 80%);
  border-radius: 50%;
}

.art-realistic::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(0,30,0,0.8), transparent);
}

.art-illo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.art-illo::before {
  content: '';
  position: absolute;
  width: 70%;
  height: 70%;
  border: 2px solid rgba(57,255,20,0.3);
  border-radius: 50%;
  top: 15%;
  left: 15%;
  animation: spin-slow 12s linear infinite;
}

.art-illo::after {
  content: '';
  position: absolute;
  width: 40%;
  height: 40%;
  border: 1px solid rgba(57,255,20,0.5);
  border-radius: 50%;
  top: 30%;
  left: 30%;
}

@keyframes spin-slow {
  to { transform: rotate(360deg); }
}

.art-color::before {
  content: '';
  position: absolute;
  inset: 10%;
  background:
    radial-gradient(circle at 30% 30%, rgba(57,255,20,0.2) 0%, transparent 40%),
    radial-gradient(circle at 70% 60%, rgba(57,255,20,0.12) 0%, transparent 35%);
  border: 1px solid rgba(57,255,20,0.2);
  border-radius: var(--radius);
}

.art-fantasy {
  background: linear-gradient(180deg, #050010 0%, #0f0030 40%, #200050 100%);
}

.art-fantasy::before {
  content: '';
  position: absolute;
  top: 10%;
  left: 20%;
  right: 20%;
  height: 60%;
  background: radial-gradient(ellipse at 50% 100%, rgba(80,20,200,0.5) 0%, transparent 70%);
}

.art-fantasy::after {
  content: '';
  position: absolute;
  bottom: 15%;
  left: 10%;
  right: 10%;
  height: 30%;
  background: linear-gradient(to top, rgba(57,255,20,0.08), transparent);
}

.img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,8,8,0.75);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 1rem;
}

.img-badge {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.2rem 0.6rem;
  background: rgba(8,8,8,0.8);
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
}

.img-cap {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  text-align: center;
  line-height: 1.4;
}

/* HOW IT WORKS */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  position: relative;
}

@media (min-width: 700px) {
  .steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

.step {
  background: var(--black-2);
  border: 1px solid var(--border-dim);
  padding: 1.75rem 1.5rem;
  position: relative;
  transition: border-color 0.3s;
}

.step:hover {
  border-color: var(--border);
}

@media (min-width: 700px) {
  .step:not(:last-child) {
    border-right: none;
  }

  .step:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--green);
    font-size: 1.1rem;
    z-index: 2;
  }
}

.step-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--green);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.step-icon {
  width: 38px;
  height: 38px;
  background: var(--green-glow-sm);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.step h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--white);
}

.step p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.55;
}

/* PRICING */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 600px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .pricing-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.price-card {
  background: var(--black-2);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  position: relative;
  transition: transform 0.2s, border-color 0.2s;
}

.price-card:hover {
  transform: translateY(-3px);
  border-color: var(--border);
}

.price-card.featured {
  border-color: var(--green);
  background: var(--green-dark);
}

.price-card.featured::before {
  content: 'BESTSELLER';
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  background: var(--green);
  color: var(--black);
  padding: 0.2rem 0.75rem;
  border-radius: 100px;
  font-weight: 500;
  white-space: nowrap;
}

.price-qty {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 1rem;
}

.price-num {
  font-family: var(--font-display);
  font-size: 3.2rem;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.2rem;
}

.price-num .unit {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--gray);
  font-weight: 400;
}

.price-total {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--gray-2);
  margin-bottom: 1.25rem;
}

.price-card.featured .price-total {
  color: rgba(57,255,20,0.5);
}

.price-divider {
  height: 1px;
  background: var(--border-dim);
  margin: 1rem 0;
}

.price-feature {
  font-size: 0.82rem;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}

.price-feature::before {
  content: '✓';
  color: var(--green);
  font-size: 0.75rem;
  flex-shrink: 0;
}

.pricing-note {
  text-align: center;
  margin-top: 2rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--gray);
  padding: 1rem;
  border: 1px dashed var(--border-dim);
  border-radius: var(--radius);
}

.pricing-note a {
  color: var(--green);
}

/* BENEFITS */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border-dim);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

@media (min-width: 700px) {
  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.benefit {
  background: var(--black-2);
  padding: 1.75rem 1.5rem;
  transition: background 0.2s;
}

.benefit:hover {
  background: var(--black-3);
}

.benefit-icon {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.benefit h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--white);
}

.benefit p {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.55;
}

/* CTA BAND */
.cta-band {
  background: var(--green-dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 4rem 1.25rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(57,255,20,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  color: var(--green);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.cta-band p {
  color: rgba(57,255,20,0.65);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.cta-band .btn-primary {
  font-size: 0.9rem;
  padding: 1rem 2.5rem;
}

/* FAQ */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-dim);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  padding: 1.25rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.2s;
}

.faq-question:hover {
  color: var(--green);
}

.faq-icon {
  width: 24px;
  height: 24px;
  border: 1px solid var(--border-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--green);
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding-bottom: 1.25rem;
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* SECTION HEADINGS */
h2.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1;
  margin-bottom: 0.5rem;
  color: var(--white);
}

h2.section-title .acc {
  color: var(--green);
}

.section-desc {
  color: var(--gray);
  font-size: 0.95rem;
  max-width: 520px;
  margin-bottom: 3rem;
  line-height: 1.7;
}

/* CONTACT FORM */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 800px) {
  .contact-wrap {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.contact-info p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--gray);
}

.contact-detail span:first-child {
  width: 34px;
  height: 34px;
  background: var(--green-glow-sm);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-detail a {
  color: var(--green);
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--black-3);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color 0.2s;
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--green);
  background: var(--black-2);
}

.form-group textarea {
  min-height: 110px;
  resize: vertical;
}

.form-success {
  display: none;
  background: var(--green-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--green);
  min-height: 120px;
}

/* FOOTER */
footer {
  background: var(--black-2);
  border-top: 1px solid var(--border-dim);
  padding: 3rem 1.25rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-brand .nav-logo {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 0.75rem;
}

.footer-brand p {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.6;
  max-width: 240px;
}

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 0.85rem;
}

.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: var(--gray-2);
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid var(--border-dim);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  color: var(--gray-2);
}

/* MODAL */
.modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.modal-backdrop.open {
  display: flex;
}

.modal {
  background: var(--black-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  max-width: 440px;
  width: 100%;
  text-align: center;
  position: relative;
  animation: modal-in 0.25s ease;
}

@keyframes modal-in {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: 1px solid var(--border-dim);
  color: var(--gray);
  width: 32px;
  height: 32px;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  border-color: var(--white);
  color: var(--white);
}

.modal-icon {
  width: 60px;
  height: 60px;
  background: var(--green-glow-sm);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin: 0 auto 1.25rem;
}

.modal h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.modal p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.3rem 0.85rem;
  background: var(--green-glow-sm);
}

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  max-width: 520px;
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  z-index: 500;
  box-shadow: 0 8px 40px rgba(0,0,0,0.6);
  animation: slide-up 0.4s ease;
}

@keyframes slide-up {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-banner.hidden {
  display: none;
}

.cookie-banner p {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.55;
  margin-bottom: 1rem;
}

.cookie-banner p a {
  color: var(--green);
}

.cookie-btns {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.cookie-accept {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--green);
  color: var(--black);
  border: none;
  border-radius: var(--radius);
  padding: 0.5rem 1.1rem;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.2s;
}

.cookie-accept:hover {
  background: var(--green-dim);
}

.cookie-reject {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: transparent;
  color: var(--gray);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius);
  padding: 0.5rem 1.1rem;
  cursor: pointer;
  transition: all 0.2s;
}

.cookie-reject:hover {
  border-color: var(--white);
  color: var(--white);
}

/* LEGAL MODALS */
.legal-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 1001;
  overflow-y: auto;
  padding: 2rem 1.25rem;
}

.legal-modal.open {
  display: block;
}

.legal-content {
  max-width: 780px;
  margin: 0 auto;
  background: var(--black-2);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
}

.legal-close {
  position: sticky;
  top: 0;
  display: flex;
  justify-content: flex-end;
  margin-bottom: 1rem;
}

.legal-close button {
  background: var(--black-3);
  border: 1px solid var(--border-dim);
  color: var(--gray);
  border-radius: var(--radius);
  padding: 0.5rem 1rem;
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.2s;
}

.legal-close button:hover {
  color: var(--white);
  border-color: var(--white);
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--green);
  margin-bottom: 0.5rem;
}

.legal-content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin: 1.75rem 0 0.5rem;
}

.legal-content p,
.legal-content li {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 0.5rem;
}

.legal-content ul {
  padding-left: 1.25rem;
  margin-bottom: 0.75rem;
}

.legal-content .meta {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--gray-2);
  margin-bottom: 2rem;
}

/* CALCULATOR */
.calc-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 700px) {
  .calc-wrap {
    grid-template-columns: 1.2fr 1fr;
    align-items: start;
  }
}

.calc-box {
  background: var(--black-2);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.calc-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 0.5rem;
  display: block;
}

.calc-slider {
  width: 100%;
  margin: 0.5rem 0 0.25rem;
  accent-color: var(--green);
  height: 4px;
  cursor: pointer;
}

.calc-slider-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--gray-2);
  margin-bottom: 1.5rem;
}

.calc-number-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin: 0.25rem 0 1.5rem;
}

.calc-qty-display {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--green);
  line-height: 1;
}

.calc-qty-unit {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--gray);
}

.calc-result {
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.calc-result-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 0.5rem;
}

.calc-price-big {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.calc-price-big span {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--gray);
  font-weight: 400;
}

.calc-breakdown {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--gray);
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.calc-tier-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 100px;
  border: 1px solid var(--border);
  color: var(--green);
  background: var(--green-glow-sm);
  margin-bottom: 1.25rem;
}

.calc-savings {
  background: var(--green-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.6rem 0.85rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: rgba(57,255,20,0.8);
  display: none;
}

.calc-savings.show {
  display: block;
}

.calc-tips {
  margin-top: 1.5rem;
}

.calc-tip {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
  font-size: 0.82rem;
  color: var(--gray);
}

.calc-tip-ico {
  width: 22px;
  height: 22px;
  background: var(--green-glow-sm);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* USE CASES / PLATFORMS */
.usecase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 700px) {
  .usecase-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1000px) {
  .usecase-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.usecase-card {
  background: var(--black-2);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.25rem;
  transition: border-color 0.2s, transform 0.2s;
  cursor: default;
}

.usecase-card:hover {
  border-color: var(--border);
  transform: translateY(-2px);
}

.usecase-card.hot {
  border-color: rgba(57,255,20,0.35);
}

.usecase-icon {
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
}

.usecase-platform {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.25rem;
}

.usecase-card h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.35rem;
}

.usecase-card p {
  font-size: 0.75rem;
  color: var(--gray);
  line-height: 1.5;
}

.usecase-badge {
  display: inline-block;
  margin-top: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.15rem 0.5rem;
  border-radius: 100px;
  background: var(--green-glow-sm);
  border: 1px solid var(--border);
  color: var(--green);
}

/* PAYMENT METHODS */
.payment-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
  margin-top: 1rem;
}

.pay-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-dim);
  color: var(--gray);
  background: var(--black-3);
  white-space: nowrap;
}

.pay-badge .pay-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.pay-blik .pay-dot { background: #e2001a; }
.pay-revolut .pay-dot { background: #0075eb; }
.pay-buycoffee .pay-dot { background: #ffdd00; }
.pay-przelew .pay-dot { background: var(--green); }

.footer-pay-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-2);
  margin-bottom: 0.5rem;
}

/* ANIMATED BACKGROUND CANVAS */
#bg-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.45;
  will-change: transform;
}

/* UWAGA: modale nie mogą być tutaj, bo psuje to ich pozycjonowanie */
nav,
section,
.stats-band,
.cta-band,
footer,
.cookie-banner,
.mobile-menu {
  position: relative;
  z-index: 1;
}

/* jawnie przywracamy overlaye nad całą stronę */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1000;
}

.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 1001;
}

/* ===================== RESPONSIVE ===================== */

/* Large tablets & small desktops */
@media (max-width: 1024px) {
  h1 {
    font-size: clamp(3rem, 9vw, 6rem);
  }

  .container {
    padding: 0 1.5rem;
  }
}

/* Tablets */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  section {
    padding: 3.5rem 1.25rem;
  }

  #home {
    padding-top: 6rem;
    min-height: auto;
  }

  h1 {
    font-size: clamp(2.8rem, 12vw, 5rem);
  }

  .hero-sub {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }

  .hero-ticker {
    grid-template-columns: repeat(3, 1fr);
  }

  .ticker-num {
    font-size: 1.5rem;
  }

  .steps {
    grid-template-columns: 1fr 1fr;
  }

  .step::after {
    display: none;
  }

  .step:nth-child(odd) {
    border-right: none;
  }

  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }

  .benefits-grid {
    grid-template-columns: 1fr 1fr;
  }

  .usecase-grid {
    grid-template-columns: 1fr 1fr;
  }

  .images-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .calc-wrap {
    grid-template-columns: 1fr;
  }

  .contact-wrap {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cta-band h2 {
    font-size: clamp(2rem, 8vw, 3.5rem);
  }

  h2.section-title {
    font-size: clamp(1.8rem, 6vw, 2.8rem);
  }
}

/* Mobile phones */
@media (max-width: 480px) {
  nav {
    padding: 0 1rem;
  }

  .nav-logo {
    font-size: 1.4rem;
  }

  section {
    padding: 3rem 1rem;
  }

  #home {
    padding-top: 5.5rem;
    padding-bottom: 2.5rem;
  }

  h1 {
    font-size: clamp(2.6rem, 14vw, 4rem);
    line-height: 0.9;
    min-height: 3.1em;
  }

  .hero-tag {
    font-size: 0.65rem;
    padding: 0.25rem 0.7rem;
  }

  .hero-sub {
    font-size: 0.9rem;
    min-height: 6.5rem;
  }

  .hero-btns {
    gap: 0.5rem;
  }

  .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.75rem;
  }

  .hero-ticker {
    grid-template-columns: 1fr;
    max-width: 100%;
    min-height: 180px;
  }

  .ticker-item {
    padding: 0.85rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .ticker-num {
    font-size: 1.75rem;
    margin-bottom: 0;
  }

  .ticker-label {
    font-size: 0.6rem;
  }

  .stats-band {
    padding: 1.25rem 1rem;
  }

  .section-label {
    font-size: 0.65rem;
  }

  h2.section-title {
    font-size: clamp(1.7rem, 10vw, 2.4rem);
  }

  .section-desc {
    font-size: 0.85rem;
    margin-bottom: 2rem;
  }

  .images-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

  .img-badge {
    font-size: 0.55rem;
    padding: 0.15rem 0.45rem;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .step {
    padding: 1.25rem 1rem;
  }

  .step-num {
    font-size: 2.5rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .price-card {
    padding: 1.25rem 1rem;
  }

  .price-num {
    font-size: 2.4rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .benefit {
    padding: 1.25rem 1rem;
  }

  .usecase-grid {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .usecase-card {
    padding: 1rem;
  }

  .calc-box {
    padding: 1.25rem 1rem;
  }

  .calc-qty-display {
    font-size: 2.2rem;
  }

  .calc-price-big {
    font-size: 2.8rem;
  }

  .calc-result {
    padding: 1.25rem 1rem;
  }

  .calc-slider-row {
    font-size: 0.6rem;
  }

  .contact-info h3 {
    font-size: 1.5rem;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    font-size: 0.85rem;
    padding: 0.65rem 0.85rem;
  }

  .cta-band {
    padding: 3rem 1rem;
  }

  .cta-band h2 {
    font-size: clamp(1.8rem, 10vw, 3rem);
  }

  .cta-band p {
    font-size: 0.72rem;
  }

  .faq-question {
    font-size: 0.9rem;
    padding: 1rem 0;
  }

  .footer-brand p {
    max-width: 100%;
  }

  .payment-row {
    gap: 0.4rem;
  }

  .pay-badge {
    font-size: 0.62rem;
    padding: 0.3rem 0.65rem;
  }

  .modal {
    padding: 1.75rem 1.25rem;
  }

  .modal h3 {
    font-size: 1.4rem;
  }

  .legal-content {
    padding: 1.5rem 1rem;
  }

  .legal-content h2 {
    font-size: 1.5rem;
  }

  .cookie-banner {
    bottom: 0.75rem;
    left: 0.75rem;
    right: 0.75rem;
    padding: 1rem;
  }

  .mobile-menu a,
  .mobile-menu button {
    font-size: 0.8rem;
    padding: 0.75rem 0;
  }
}

/* Very small phones */
@media (max-width: 360px) {
  h1 {
    font-size: clamp(2.2rem, 14vw, 3rem);
  }

  .btn {
    padding: 0.65rem 1rem;
    font-size: 0.7rem;
  }

  .price-num {
    font-size: 2rem;
  }

  .calc-price-big {
    font-size: 2.2rem;
  }
}

/* ===== SOCIAL MEDIA / STOPKA ===== */
.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  text-decoration: none;
}

.social-link span {
  line-height: 1.2;
}

.social-icon {
  width: 18px;
  height: 18px;
  min-width: 18px;
  max-width: 18px;
  min-height: 18px;
  max-height: 18px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

/* ===== WYMUSZENIE UKŁADU STOPKI ===== */
footer .footer-grid {
  display: grid !important;
  grid-template-columns: 1.4fr 1fr 1fr 1fr !important;
  gap: 2rem !important;
  align-items: start !important;
}

footer .social-col {
  min-width: 0;
}

footer .social-col .social-link {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin-bottom: 10px !important;
  text-decoration: none !important;
}

footer .social-col .social-icon {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  max-width: 18px !important;
  min-height: 18px !important;
  max-height: 18px !important;
  object-fit: contain !important;
  display: block !important;
  flex-shrink: 0 !important;
}

footer .social-col a img {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  max-width: 18px !important;
  min-height: 18px !important;
  max-height: 18px !important;
  object-fit: contain !important;
  display: block !important;
}

/* ===== RESPONSYWNOŚĆ STOPKI ===== */
@media (max-width: 900px) {
  footer .footer-grid {
    grid-template-columns: 1fr 1fr !important;
  }

  footer .footer-brand p {
    max-width: 100% !important;
  }
}

@media (max-width: 480px) {
  footer .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  footer .footer-bottom {
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  footer .social-col .social-icon,
  footer .social-col a img {
    width: 16px !important;
    height: 16px !important;
    min-width: 16px !important;
    max-width: 16px !important;
    min-height: 16px !important;
    max-height: 16px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}