/* ============================================================
   altropost — Creator Energy redesign
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400..800&family=Hanken+Grotesk:ital,wght@0,400..800;1,400..600&family=Space+Mono:wght@400;700&display=swap');

:root {
  /* canvas + ink */
  --cream: #F6F1E7;
  --cream-2: #FBF8F1;
  --paper: #FFFFFF;
  --ink: #141019;
  --ink-soft: #4a4453;
  --line: #1410190f;

  /* vibrant multicolor */
  --violet: #6B2BFF;
  --pink:   #FF3D8B;
  --coral:  #FF6A3D;
  --lime:   #BBF246;
  --cyan:   #1FD3C9;
  --yellow: #FFC93C;
  --blue:   #2E6BFF;

  /* type */
  --display: 'Bricolage Grotesque', sans-serif;
  --body: 'Hanken Grotesk', sans-serif;
  --mono: 'Space Mono', monospace;

  --maxw: 1240px;
  --radius: 26px;
  --shadow-pop: 0 18px 40px -18px rgba(20,16,25,.34);
  --ease: cubic-bezier(.22,1,.36,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.5;
  overflow-x: hidden;
  font-size: 17px;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
::selection { background: var(--lime); color: var(--ink); }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 26px; }

/* grain overlay */
body::before {
  content: ""; position: fixed; inset: 0; z-index: 9999; pointer-events: none;
  opacity: .035; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- shared bits ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--mono); font-size: 12.5px; letter-spacing: .14em;
  text-transform: uppercase; font-weight: 700;
  padding: 8px 15px; border-radius: 100px;
  background: var(--ink); color: var(--cream);
}
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); animation: blink 1.6s steps(1) infinite; }
@keyframes blink { 50% { opacity: .25; } }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--body); font-weight: 700; font-size: 16px;
  padding: 15px 26px; border-radius: 100px; border: 2px solid var(--ink);
  cursor: pointer; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s;
  white-space: nowrap;
}
.btn-primary { background: var(--ink); color: var(--cream); box-shadow: 5px 5px 0 0 var(--violet); }
.btn-primary:hover { transform: translate(-3px,-3px); box-shadow: 8px 8px 0 0 var(--violet); }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--cream); transform: translate(-2px,-2px); }
.btn .arr { transition: transform .25s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }

.section { padding: clamp(64px, 9vw, 130px) 0; position: relative; }
.sec-head { max-width: 760px; }
.kicker {
  font-family: var(--mono); font-size: 13px; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--violet); margin-bottom: 18px; display: inline-block;
}
h2.big {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(2.2rem, 5.4vw, 4.1rem); line-height: .98; letter-spacing: -.02em;
  text-wrap: balance;
}
.lead { font-size: clamp(1.05rem,1.6vw,1.3rem); color: var(--ink-soft); margin-top: 20px; max-width: 60ch; }

/* highlighter marker behind words */
.mark { position: relative; white-space: nowrap; z-index: 0; }
.mark::after {
  content: ""; position: absolute; left: -.08em; right: -.08em; bottom: .06em; height: .42em;
  background: var(--hl, var(--lime)); z-index: -1; border-radius: 3px;
  transform: rotate(-1.2deg) scaleX(1); transform-origin: left;
}
@keyframes markIn { from { transform: rotate(-1.2deg) scaleX(0); } to { transform: rotate(-1.2deg) scaleX(1); } }
.reveal.in .mark::after { animation: markIn .55s var(--ease) .35s; }

/* scroll reveal — content visible at rest; entrance only enhances in a live browser */
@keyframes revealUp { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
.reveal { opacity: 1; }
.reveal.in { animation: revealUp .7s var(--ease); }
.reveal.d1.in { animation-delay: .08s; } .reveal.d2.in { animation-delay: .16s; }
.reveal.d3.in { animation-delay: .24s; } .reveal.d4.in { animation-delay: .32s; }
@media (prefers-reduced-motion: reduce) { .reveal.in { animation: none; } }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 16px; left: 0; right: 0; z-index: 200;
  display: flex; justify-content: center; pointer-events: none;
}
.nav-inner {
  pointer-events: auto;
  display: flex; align-items: center; gap: 8px;
  width: min(var(--maxw), calc(100% - 32px));
  padding: 9px 9px 9px 22px;
  background: rgba(255,255,255,.72); backdrop-filter: blur(16px) saturate(1.4);
  border: 1.5px solid var(--ink); border-radius: 100px;
  box-shadow: var(--shadow-pop);
}
.brand { font-family: var(--display); font-weight: 700; font-size: 22px; letter-spacing: -.03em; margin-right: auto; display: flex; align-items: center; gap: 8px; }
.brand .blip { width: 12px; height: 12px; border-radius: 50%; background: var(--pink); box-shadow: 0 0 0 0 var(--pink); animation: pulse 2.4s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(255,61,139,.5)} 70%{box-shadow:0 0 0 9px rgba(255,61,139,0)} 100%{box-shadow:0 0 0 0 rgba(255,61,139,0)} }
.nav-links { display: flex; gap: 4px; }
.nav-links a { font-weight: 600; font-size: 15px; padding: 9px 14px; border-radius: 100px; color: var(--ink-soft); transition: color .2s, background .2s; white-space: nowrap; }
.nav-links a:hover { color: var(--ink); background: #1410190a; }
.nav-right { display: flex; align-items: center; gap: 10px; }

.lang {
  display: inline-flex; background: var(--cream); border: 1.5px solid var(--ink); border-radius: 100px; padding: 3px; position: relative; font-family: var(--mono); font-weight: 700; font-size: 12px;
}
.lang button { border: 0; background: transparent; cursor: pointer; padding: 6px 11px; border-radius: 100px; color: var(--ink-soft); z-index: 1; transition: color .25s; }
.lang button.on { color: var(--cream); }
.lang .pill { position: absolute; top: 3px; bottom: 3px; width: 42px; background: var(--ink); border-radius: 100px; }
.lang button { transition: none; }
.lang[data-l="en"] .pill { transform: translateX(42px); }

.nav .btn { padding: 11px 19px; font-size: 14.5px; box-shadow: 3px 3px 0 0 var(--violet); }
.nav .btn:hover { box-shadow: 5px 5px 0 0 var(--violet); }
.nav .login { font-weight: 700; font-size: 15px; padding: 9px 12px; white-space: nowrap; }

.menu-btn { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding: 150px 0 60px; position: relative; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; }
.hero h1 {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(2.9rem, 7.2vw, 6.4rem); line-height: .92; letter-spacing: -.035em;
  text-wrap: balance;
}
.hero h1 .row { display: block; }
.hero-sub { font-size: clamp(1.05rem,1.7vw,1.35rem); color: var(--ink-soft); margin: 26px 0 30px; max-width: 46ch; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.proof { display: flex; align-items: center; gap: 14px; margin-top: 34px; }
.stars { color: var(--ink); font-size: 18px; letter-spacing: 2px; }
.proof .avs { display: flex; }
.proof .avs span { width: 36px; height: 36px; border-radius: 50%; border: 2.5px solid var(--cream); margin-left: -12px; background-size: cover; background-position: center; }
.proof small { font-weight: 600; color: var(--ink-soft); font-size: 14.5px; line-height: 1.3; }
.proof small b { color: var(--ink); }

/* floating photo collage */
.collage { position: relative; height: 540px; }
.pc {
  position: absolute; border-radius: 22px; overflow: hidden;
  border: 3px solid var(--ink); box-shadow: var(--shadow-pop);
  background: #ddd;
}
.pc img { width: 100%; height: 100%; object-fit: cover; }
.pc.a { width: 230px; height: 300px; top: 8px; left: 4%; transform: rotate(-6deg); animation: float1 7s ease-in-out infinite; z-index: 2; }
.pc.b { width: 210px; height: 260px; top: 0; right: 2%; transform: rotate(5deg); animation: float2 8s ease-in-out infinite; z-index: 3; }
.pc.c { width: 200px; height: 250px; bottom: 6px; left: 18%; transform: rotate(4deg); animation: float2 9s ease-in-out infinite .4s; z-index: 4; }
.pc.d { width: 185px; height: 225px; bottom: 24px; right: 6%; transform: rotate(-7deg); animation: float1 7.5s ease-in-out infinite .6s; z-index: 1; }
@keyframes float1 { 50% { transform: rotate(-6deg) translateY(-18px); } }
@keyframes float2 { 50% { transform: rotate(5deg) translateY(16px); } }

.sticker {
  position: absolute; z-index: 6; font-family: var(--mono); font-weight: 700; font-size: 13px;
  padding: 9px 14px; border-radius: 100px; border: 2.5px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink); display: inline-flex; align-items: center; gap: 6px;
}
.sticker.s1 { background: var(--lime); top: 40%; left: -2%; transform: rotate(-8deg); animation: wob 5s ease-in-out infinite; }
.sticker.s2 { background: var(--yellow); top: 12%; right: 30%; transform: rotate(7deg); animation: wob 6s ease-in-out infinite .5s; }
.sticker.s3 { background: var(--pink); color: var(--cream); bottom: 2%; right: 24%; transform: rotate(-5deg); border-color: var(--ink); box-shadow: 3px 3px 0 var(--ink); animation: wob 5.5s ease-in-out infinite .8s; }
@keyframes wob { 50% { transform: rotate(3deg) translateY(-6px); } }

.blob { position: absolute; border-radius: 50%; filter: blur(46px); opacity: .5; z-index: 0; pointer-events: none; }
.blob.v { width: 360px; height: 360px; background: var(--violet); top: -80px; right: -60px; }
.blob.c { width: 300px; height: 300px; background: var(--cyan); bottom: -90px; left: 30%; opacity: .35; }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee { background: var(--ink); color: var(--cream); padding: 20px 0; overflow: hidden; border-top: 2.5px solid var(--ink); border-bottom: 2.5px solid var(--ink); }
.marquee.alt { background: var(--violet); transform: rotate(-1.4deg); margin: -10px 0; width: 102%; margin-left: -1%; }
.mq-track { display: flex; gap: 0; white-space: nowrap; width: max-content; animation: scroll 26s linear infinite; }
.marquee:hover .mq-track { animation-play-state: paused; }
.mq-track span { font-family: var(--display); font-weight: 700; font-size: clamp(1.4rem,2.6vw,2.1rem); padding: 0 26px; display: inline-flex; align-items: center; gap: 26px; letter-spacing: -.01em; }
.mq-track .star { color: var(--lime); font-size: 1.3em; }
.marquee.alt .mq-track .star { color: var(--yellow); }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ============================================================
   FEATURES (bento)
   ============================================================ */
.feat-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; margin-top: 54px; }
.fcard {
  grid-column: span 2; background: var(--paper); border: 2px solid var(--ink);
  border-radius: var(--radius); padding: 30px; position: relative; overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease); min-height: 240px;
  display: flex; flex-direction: column;
}
.fcard:hover { transform: translateY(-6px); box-shadow: 8px 10px 0 var(--ac, var(--violet)); }
.fcard .num { font-family: var(--mono); font-weight: 700; font-size: 13px; color: var(--ink-soft); }
.fcard .ic { width: 56px; height: 56px; border-radius: 16px; background: var(--ac); border: 2px solid var(--ink); display: grid; place-items: center; margin: 6px 0 18px; transition: transform .3s var(--ease); }
.fcard:hover .ic { transform: rotate(-8deg) scale(1.06); }
.fcard .ic svg { width: 28px; height: 28px; }
.fcard h3 { font-family: var(--display); font-weight: 700; font-size: 1.42rem; line-height: 1.05; letter-spacing: -.02em; margin-bottom: 10px; }
.fcard p { color: var(--ink-soft); font-size: 15.5px; }
/* feature emphasis layout */
.fcard.wide { grid-column: span 3; }
.fcard.tall { grid-row: span 1; }
.fcard .glow { position: absolute; width: 150px; height: 150px; border-radius: 50%; background: var(--ac); filter: blur(50px); opacity: .22; bottom: -40px; right: -30px; }

/* ============================================================
   CREATORS showcase
   ============================================================ */
.creators { background: var(--ink); color: var(--cream); border-radius: 40px; margin: 0 14px; overflow: hidden; position: relative; }
.creators .kicker { color: var(--lime); }
.creators h2.big, .creators .brand { color: var(--cream); }
.cr-top { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; flex-wrap: wrap; }
.cr-rail { display: flex; gap: 20px; margin-top: 50px; width: max-content; animation: scroll 40s linear infinite; }
.cr-rail-wrap { overflow: hidden; margin: 0 -26px; -webkit-mask: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.cr-rail-wrap:hover .cr-rail { animation-play-state: paused; }
.ccard { width: 270px; flex: 0 0 auto; background: #221b2e; border: 1.5px solid #ffffff22; border-radius: 22px; overflow: hidden; transition: transform .3s var(--ease); }
.ccard:hover { transform: translateY(-8px) rotate(-1deg); }
.ccard .ph { height: 230px; background-size: cover; background-position: center; position: relative; }
.ccard .tag { position: absolute; top: 12px; left: 12px; font-family: var(--mono); font-size: 11px; font-weight: 700; padding: 5px 10px; border-radius: 100px; background: var(--lime); color: var(--ink); }
.ccard .vbadge { position: absolute; bottom: 12px; right: 12px; width: 30px; height: 30px; background: var(--cyan); border-radius: 50%; display: grid; place-items: center; border: 2px solid var(--ink); }
.ccard .meta { padding: 16px 18px 20px; }
.ccard .meta h4 { font-family: var(--display); font-weight: 700; font-size: 1.2rem; }
.ccard .meta .role { color: #cdbfe0; font-size: 14px; margin-top: 2px; }
.ccard .meta .stat { display: flex; gap: 14px; margin-top: 12px; font-family: var(--mono); font-size: 12px; color: #cdbfe0; }
.ccard .meta .stat b { color: var(--cream); }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin-top: 54px; counter-reset: s; }
.step { background: var(--cream-2); border: 2px solid var(--ink); border-radius: var(--radius); padding: 28px; position: relative; transition: transform .3s var(--ease); }
.step:hover { transform: translateY(-6px) rotate(-1deg); }
.step .sn { font-family: var(--display); font-weight: 700; font-size: 4.2rem; line-height: .8; letter-spacing: -.04em; -webkit-text-stroke: 2px var(--ink); color: transparent; display: block; margin-bottom: 14px; }
.step:nth-child(1) .sn { color: var(--violet); -webkit-text-stroke: 0; }
.step:nth-child(2) .sn { color: var(--pink); -webkit-text-stroke: 0; }
.step:nth-child(3) .sn { color: var(--coral); -webkit-text-stroke: 0; }
.step:nth-child(4) .sn { color: var(--cyan); -webkit-text-stroke: 0; }
.step h3 { font-family: var(--display); font-weight: 700; font-size: 1.35rem; margin-bottom: 8px; letter-spacing: -.01em; }
.step p { color: var(--ink-soft); font-size: 15px; }
.step .line { position: absolute; top: 48px; right: -18px; width: 18px; height: 2px; background: var(--ink); z-index: 2; }
.step:last-child .line { display: none; }

/* ============================================================
   CALCULATOR
   ============================================================ */
.calc-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 50px; align-items: center; margin-top: 50px; }
.calc-card { background: var(--ink); color: var(--cream); border-radius: 32px; padding: 38px; position: relative; overflow: hidden; }
.calc-card .kicker { color: var(--lime); }
.slider-wrap { margin: 26px 0 30px; }
.slider-wrap .val { font-family: var(--display); font-weight: 700; font-size: 3.4rem; letter-spacing: -.03em; }
.slider-wrap .val small { font-size: 1.2rem; color: #b9a9d0; }
input[type=range] { -webkit-appearance: none; width: 100%; height: 10px; border-radius: 100px; background: #ffffff1f; margin-top: 16px; cursor: pointer; }
input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; width: 30px; height: 30px; border-radius: 50%; background: var(--lime); border: 3px solid var(--ink); box-shadow: 0 0 0 3px var(--lime); cursor: grab; transition: transform .15s; }
input[type=range]::-webkit-slider-thumb:active { transform: scale(1.12); cursor: grabbing; }
input[type=range]::-moz-range-thumb { width: 30px; height: 30px; border-radius: 50%; background: var(--lime); border: 3px solid var(--ink); cursor: grab; }
.bars { display: flex; flex-direction: column; gap: 16px; }
.bar-row .bl { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 7px; }
.bar-row .bl span { font-size: 14.5px; color: #d7cce6; }
.bar-row .bl b { font-family: var(--mono); font-weight: 700; font-size: 17px; }
.bar-track { height: 16px; border-radius: 100px; background: #ffffff14; overflow: hidden; }
.bar-fill { height: 100%; border-radius: 100px; width: 0; }
.bar-fill { animation: barGrow .6s var(--ease) both; }
@keyframes barGrow { from { opacity: .4; } to { opacity: 1; } }
.bar-fill.neto { background: var(--lime); }
.bar-fill.comm { background: var(--coral); }
.bar-fill.tax  { background: var(--yellow); }
.tax-toggle { display: inline-flex; align-items: center; gap: 10px; margin-top: 24px; font-size: 14.5px; color: #d7cce6; cursor: pointer; user-select: none; }
.tax-toggle .sw { width: 46px; height: 26px; border-radius: 100px; background: #ffffff22; position: relative; flex: 0 0 auto; }
.tax-toggle .sw::after { content: ""; position: absolute; top: 3px; left: 3px; width: 20px; height: 20px; border-radius: 50%; background: var(--cream); }
.tax-toggle.on .sw { background: var(--cyan); }
.tax-toggle.on .sw::after { transform: translateX(20px); }

/* ============================================================
   PRICING
   ============================================================ */
.price-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 54px; align-items: stretch; }
.pcard { background: var(--paper); border: 2px solid var(--ink); border-radius: var(--radius); padding: 34px 30px; display: flex; flex-direction: column; position: relative; transition: transform .3s var(--ease); }
.pcard:hover { transform: translateY(-6px); }
.pcard.pop { background: var(--ink); color: var(--cream); box-shadow: 8px 10px 0 var(--violet); transform: scale(1.02); }
.pcard.pop:hover { transform: scale(1.02) translateY(-6px); }
.pcard .pname { font-family: var(--display); font-weight: 700; font-size: 1.5rem; display: flex; align-items: center; gap: 10px; }
.pcard .ribbon { font-family: var(--mono); font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 100px; background: var(--lime); color: var(--ink); }
.pcard .price { font-family: var(--display); font-weight: 700; font-size: 3rem; letter-spacing: -.03em; margin: 18px 0 4px; }
.pcard .price small { font-family: var(--body); font-size: 1rem; font-weight: 600; color: var(--ink-soft); }
.pcard.pop .price small { color: #b9a9d0; }
.pcard ul { list-style: none; margin: 22px 0; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.pcard li { display: flex; gap: 11px; align-items: flex-start; font-size: 15.5px; }
.pcard li .ck { width: 22px; height: 22px; border-radius: 50%; background: var(--lime); display: grid; place-items: center; flex: 0 0 auto; margin-top: 1px; }
.pcard.pop li .ck { background: var(--cyan); }
.pcard .btn { justify-content: center; }
.pcard.pop .btn-primary { background: var(--lime); color: var(--ink); border-color: var(--lime); box-shadow: 4px 4px 0 var(--violet); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 50px; margin-top: 30px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 2px solid var(--ink); border-radius: 20px; background: var(--paper); overflow: hidden; }
.faq-item.open { background: var(--cream-2); }
.faq-q { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 22px 26px; cursor: pointer; font-family: var(--display); font-weight: 700; font-size: 1.18rem; letter-spacing: -.01em; }
.faq-q .pm { width: 30px; height: 30px; border-radius: 50%; border: 2px solid var(--ink); display: grid; place-items: center; flex: 0 0 auto; font-size: 20px; }
.faq-item.open .pm { transform: rotate(45deg); background: var(--violet); color: var(--cream); border-color: var(--violet); }
.faq-a { max-height: 0; overflow: hidden; }
.faq-item.open .faq-a { animation: faqOpen .35s var(--ease) forwards; }
@keyframes faqOpen { from { opacity: .3; } to { opacity: 1; } }
.faq-a p { padding: 0 26px 24px; color: var(--ink-soft); font-size: 16px; }

/* ============================================================
   CTA + FOOTER
   ============================================================ */
.cta { text-align: center; position: relative; overflow: hidden; }
.cta-card { background: var(--violet); color: var(--cream); border-radius: 40px; padding: clamp(50px,7vw,90px) 30px; position: relative; overflow: hidden; border: 3px solid var(--ink); }
.cta-card h2 { font-family: var(--display); font-weight: 700; font-size: clamp(2.4rem,6vw,5rem); line-height: .96; letter-spacing: -.03em; text-wrap: balance; position: relative; z-index: 2; }
.cta-card .lead { color: #efe7ff; margin: 22px auto 34px; max-width: 50ch; position: relative; z-index: 2; }
.cta-card .btn-primary { background: var(--lime); color: var(--ink); border-color: var(--ink); box-shadow: 5px 5px 0 var(--ink); position: relative; z-index: 2; }
.cta-card .cb { position: absolute; border-radius: 50%; filter: blur(40px); }
.cta-card .cb.p { width: 280px; height: 280px; background: var(--pink); top: -90px; left: -60px; opacity: .6; }
.cta-card .cb.c { width: 240px; height: 240px; background: var(--cyan); bottom: -80px; right: -40px; opacity: .5; }

footer { padding: 60px 0 50px; }
.foot-grid { display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; align-items: flex-start; }
.foot-brand { max-width: 320px; }
.foot-brand .brand { font-size: 28px; margin-bottom: 14px; }
.foot-brand p { color: var(--ink-soft); font-size: 15px; }
.foot-cols { display: flex; gap: 60px; flex-wrap: wrap; }
.foot-col h5 { font-family: var(--mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 14px; }
.foot-col a { display: block; padding: 6px 0; font-weight: 600; line-height: 1.4; white-space: nowrap; transition: color .2s; }
.foot-col a:hover { color: var(--violet); }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; margin-top: 50px; padding-top: 26px; border-top: 2px solid var(--ink); flex-wrap: wrap; gap: 14px; font-size: 14px; color: var(--ink-soft); font-family: var(--mono); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; }
  .collage { height: 440px; margin-top: 10px; }
  .feat-grid { grid-template-columns: repeat(4,1fr); }
  .fcard, .fcard.wide { grid-column: span 2; }
  .calc-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; gap: 26px; }
}
@media (max-width: 860px) {
  .nav-links { display: none; }
  .steps { grid-template-columns: repeat(2,1fr); }
  .step .line { display: none; }
  .price-grid { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; }
  .pcard.pop { transform: none; }
  .pcard.pop:hover { transform: translateY(-6px); }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .feat-grid { grid-template-columns: 1fr; }
  .fcard, .fcard.wide { grid-column: span 1; }
  .steps { grid-template-columns: 1fr; }
  .nav-inner { padding-left: 18px; }
  .nav .login { display: none; }
  .hero { padding-top: 120px; }
  .collage { height: 380px; }
  .pc.a { width: 170px; height: 220px; } .pc.b { width: 150px; height: 190px; }
  .pc.c { width: 145px; height: 180px; } .pc.d { width: 135px; height: 165px; }
}

/* Plan me çmim me kërkesë */
.price .price-custom { font-size: 1.6rem; font-weight: 800; letter-spacing: -.5px; }

.brand img { height: 30px; max-width: 168px; width: auto; object-fit: contain; display: block; }
.foot-brand .brand img { height: 40px; max-width: 200px; }
