/* ==========================================================================
   PIXEL LATTICE — DESIGN SYSTEM v2
   Editorial, card-free, black / white / magenta
   ========================================================================== */

:root {
  --ink:           #000000;
  --paper:         #FFFFFF;
  --accent:        #E900B8;
  --accent-dim:    #C400A0; /* hover/active state for accent */
  --ink-soft:      #4A4A4A;
  --ink-faint:     #8A8A8A;
  --line:          #E4E4E4;
  --line-strong:   #CFCFCF;
  --surface-tint:  #FAFAFA;

  --font: 'Plus Jakarta Sans', sans-serif;
  --ease: cubic-bezier(.4,0,.2,1);
  --ease-out: cubic-bezier(0,.55,.45,1);

  --container: 1440px;
  --container-narrow: 900px;

  --section-gap: clamp(64px, 10vw, 148px);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

body {
  font-family: var(--font);
  background: var(--paper);
  color: var(--ink);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.5;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: var(--font); }

::selection { background: var(--accent); color: #fff; }

a:focus-visible,
button:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

.wrap { max-width: var(--container); margin: 0 auto; padding: 0 clamp(24px, 4vw, 72px); }
.wrap-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 clamp(24px, 4vw, 72px); }

/* ==========================================================================
   TYPE SCALE
   ========================================================================== */

h1, .h1 {
  font-size: clamp(2.75rem, 6vw, 5.5rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--ink);
}
h2, .h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--ink);
}
h3, .h3 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
}
p { font-size: 1.02rem; line-height: 1.7; color: var(--ink); font-weight: 400; }
.lede { font-size: clamp(1.1rem, 1.6vw, 1.35rem); line-height: 1.6; color: var(--ink); font-weight: 400; }

.eyebrow { display: none !important; }

.accent { color: var(--accent); }

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.92rem;
  border-radius: 10px;
  padding: 15px 28px;
  cursor: pointer;
  border: none;
  letter-spacing: -0.01em;
  transition: all .25s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover { background: var(--accent-dim); transform: translateY(-2px); }

.btn-dark {
  background: var(--ink);
  color: #fff;
}
.btn-dark:hover { background: #1a1a1a; transform: translateY(-2px); }

.btn-white {
  background: #fff;
  color: var(--ink);
}
.btn-white:hover { background: var(--surface-tint); transform: translateY(-2px); }

/* pill — liquid fill from bottom on hover */
.btn-pill {
  position: relative;
  overflow: hidden;
  padding: 10px 22px 10px 8px;
  background: transparent;
  border: 1px solid #000;
  color: var(--ink);
  border-radius: 10px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: color 0.2s ease;
}
.btn-pill::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #000;
  transform: scaleY(0);
  transform-origin: bottom center;
  transition: transform 0.22s cubic-bezier(.4,0,.2,1);
  z-index: 0;
}
.btn-pill:hover::before { transform: scaleY(1); }
.btn-pill:hover { color: #fff !important; }
.btn-pill > * { position: relative; z-index: 1; }
.btn-pill > span { position: relative; z-index: 1; }

/* dark bg — fill white, text black */
.section-black .btn-pill { border: 1px solid #fff; color: #fff; }
.section-black .btn-pill::before { background: #fff; }
.section-black .btn-pill:hover { color: #000 !important; }
.section-black .btn-pill:hover::before { transform: scaleY(1); }

/* connect form */
.connect-band .btn-pill { border: 1px solid var(--accent); color: #fff; }
.connect-band .btn-pill::before { background: var(--accent); }
.connect-band .btn-pill:hover { color: #fff !important; }

.icon-badge {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.icon-badge img { width: 28px; height: 28px; display: block; object-fit: contain; }


/* ==========================================================================
   NAV
   ========================================================================== */

nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transform: translateY(0);
  transition: transform .4s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
}
nav.nav-hidden { transform: translateY(-100%); }
nav.scrolled { border-bottom-color: var(--line); }

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 72px);
  display: flex; align-items: center; justify-content: space-between;
  height: 74px;
}
.logo-wrap { display: flex; align-items: center; }
.logo-text { font-weight: 600; font-size: 1.05rem; letter-spacing: -0.02em; color: var(--ink); }
.logo-img { height: 28px; width: auto; display: block; }
.logo-img-inv { filter: invert(1) brightness(2); }

.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 0.88rem; font-weight: 500; color: var(--ink);
  transition: color .2s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--ink); font-weight: 600; }

.nav-right { display: flex; align-items: center; gap: 18px; }

.ham { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 6px; }
.ham span { display: block; width: 22px; height: 1.5px; background: var(--ink); transition: .3s; }
.ham.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.ham.open span:nth-child(2) { opacity: 0; }
.ham.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mob-nav {
  display: none; position: fixed; top: 74px; left: 0; right: 0; z-index: 199;
  background: #fff; border-bottom: 1px solid var(--line);
  padding: 8px 24px 24px; flex-direction: column;
}
.mob-nav.open { display: flex; }
.mob-nav a {
  font-weight: 500; font-size: 1.05rem; color: var(--ink-soft);
  padding: 15px 0; border-bottom: 1px solid var(--line);
}
.mob-nav a:last-of-type { border-bottom: none; }
.mob-nav a:hover, .mob-nav a.active { color: var(--ink); }
.mob-cta { margin-top: 16px; text-align: center; background: var(--accent); color: #fff; border-radius: 10px; padding: 16px; font-weight: 600; }

/* ==========================================================================
   HERO — bento grid layout
   ========================================================================== */

#hero {
  background: var(--paper);
  padding: clamp(100px, 13vw, 150px) 0 clamp(48px, 6vw, 72px);
}

/* grid skeleton */
.hero-bento {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto auto auto;
  gap: 14px;
  grid-template-areas:
    "head  head   meta"
    "head  head   shopify"
    "s1    s2     webdev"
    "ctas  ctas   ctas";
}

/* ── headline cell ── */
.hb-head {
  grid-area: head;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(28px, 3.5vw, 52px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--paper);
  position: relative;
  overflow: hidden;
  min-height: clamp(280px, 38vw, 480px);
}
/* subtle dot-grid texture */
.hb-head::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0,0,0,.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.hb-head-top { position: relative; z-index: 1; }
.hb-head-bottom { position: relative; z-index: 1; }

.hero-h1 {
  font-size: clamp(2.8rem, 5.5vw, 5.8rem);
  font-weight: 600;
  line-height: 0.97;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin: 0;
  user-select: none;
}
.hero-h1 .word {
  display: inline-block;
  overflow: visible;
  margin-right: 0.18em;
  will-change: transform;
}
.hero-break { display: block; height: 0; }
.hero-lede {
  font-size: clamp(0.88rem, 1.1vw, 1rem);
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 40ch;
  margin: 0;
}

/* ── service cards ── */
.hb-svc {
  border-radius: 24px;
  padding: clamp(20px, 2.5vw, 32px);
  background: #0C0C0C;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  cursor: default;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  position: relative;
  overflow: hidden;
}
.hb-svc::before {
  content: '';
  position: absolute;
  inset: -60%;
  background: radial-gradient(circle at 70% 30%, rgba(233,0,184,.10) 0%, transparent 60%);
  pointer-events: none;
}
.hb-svc:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,.25); }
.hb-svc-top { display: flex; align-items: center; justify-content: space-between; }
.hb-icon { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; }
.hb-icon img { width: 40px; height: 40px; object-fit: contain; }
.hb-svc-name { font-size: clamp(1.2rem, 2vw, 1.8rem); font-weight: 600; color: #fff; line-height: 1.1; position: relative; z-index: 1; }
.hb-svc-price { font-size: 0.82rem; color: rgba(255,255,255,.4); position: relative; z-index: 1; }
.hb-meta    { grid-area: meta; }
.hb-shopify { grid-area: shopify; }
.hb-webdev  { grid-area: webdev; }

/* ── stat cells ── */
.hb-stat {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(20px, 2.5vw, 36px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--paper);
  transition: border-color .3s;
}
.hb-stat:hover { border-color: var(--accent); }
.hb-stat-num {
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--ink);
  line-height: 1;
}
.hb-stat-label { font-size: 0.82rem; color: var(--ink-soft); margin-top: 8px; }
.hb-s1 { grid-area: s1; }
.hb-s2 { grid-area: s2; }

/* ── CTA row ── */
.hb-ctas {
  grid-area: ctas;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* hero pill on white bg */
.hero-h1 .word { color: var(--ink); }
#hero .btn-pill { border: 1px solid #000; color: var(--ink); }
#hero .btn-pill::before { background: #000; }
#hero .btn-pill:hover { color: #fff !important; }

@media (max-width: 900px) {
  .hero-bento { grid-template-columns: 1fr 1fr; grid-template-areas: "head head" "meta shopify" "webdev s1" "s2 s2" "ctas ctas"; }
}
@media (max-width: 600px) {
  .hero-bento { grid-template-columns: 1fr; grid-template-areas: "head" "meta" "shopify" "webdev" "s1" "s2" "ctas"; }
}

/* ==========================================================================
   CUSTOM CURSOR
   ========================================================================== */
@media (pointer: fine) {
  html, body, a, button, input, textarea, select, [role="button"] { cursor: none !important; }
}
.cur {
  position: fixed;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--accent);
  border: none;
  pointer-events: none;
  z-index: 99999;
  top: 0; left: 0;
  will-change: transform;
}




/* ==========================================================================
   SECTION HEADER
   ========================================================================== */

.section { padding: var(--section-gap) 0; border-top: 1px solid var(--line); }
.section.no-rule { border-top: none; }
.section-alt { background: var(--surface-tint); }

.section-head { margin-bottom: clamp(48px, 6vw, 88px); max-width: 640px; }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head h2 { margin-bottom: 16px; }
.section-head p { max-width: 52ch; }

.section-head-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
  margin-bottom: clamp(48px, 6vw, 88px);
}
.section-head-row .section-head { margin-bottom: 0; }

/* ==========================================================================
   SERVICES — editorial stacked rows (no cards)
   ========================================================================== */

.svc-row {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 40px 0;
  border-top: 1px solid var(--line);
  transition: padding .3s var(--ease);
}
.svc-list { border-bottom: 1px solid var(--line); }
.svc-row:hover { padding-left: 12px; }
.svc-num { font-size: 0.85rem; font-weight: 600; color: var(--ink-faint); letter-spacing: 0.04em; }
.svc-body h3 { margin-bottom: 8px; }
.svc-body p { max-width: 54ch; }
.svc-arrow {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink); flex-shrink: 0;
  transition: all .25s var(--ease);
}
.svc-row:hover .svc-arrow { background: var(--accent); border-color: var(--accent); color: #fff; transform: rotate(45deg); }

@media (max-width: 720px) {
  .svc-row { grid-template-columns: 1fr auto; row-gap: 12px; }
  .svc-num { grid-column: 1 / 2; grid-row: 1; }
  .svc-arrow { grid-row: 1 / 3; }
  .svc-body { grid-column: 1 / 2; }
}

/* ==========================================================================
   WHY — sticky left, scrolling right
   ========================================================================== */

.why-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.why-sticky {
  position: sticky;
  top: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  align-self: start;
  padding: 80px 0;
}
.why-sticky h2 { margin: 20px 0 32px; max-width: 12ch; }

.why-scroll { display: flex; flex-direction: column; }
.why-point {
  padding: 56px 0;
  border-top: 1px solid var(--line);
}
.why-point:last-child { border-bottom: 1px solid var(--line); }
.why-point .why-num { display: block; font-size: 0.85rem; font-weight: 600; color: var(--ink-faint); letter-spacing: 0.04em; margin-bottom: 16px; }
.why-point h3 { margin-bottom: 14px; }
.why-point p { max-width: 52ch; }

@media (max-width: 860px) {
  .why-grid { grid-template-columns: 1fr; gap: 8px; }
  .why-sticky { position: static; margin-bottom: 8px; }
}

/* ==========================================================================
   SERVICES SHOWCASE — alternating feature rows, icon tile, black section
   ========================================================================== */

.svc-showcase { display: flex; flex-direction: column; gap: clamp(64px, 8vw, 110px); }
.svc-feature { display: flex; align-items: center; gap: 64px; }
.svc-feature:nth-child(even) { flex-direction: row-reverse; }
.svc-feature-text { flex: 1 1 50%; }
.svc-feature-text h3 {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin-bottom: 20px;
  color: #fff;
}
.svc-feature-text p { max-width: 44ch; margin-bottom: 32px; color: #fff; }
.svc-feature-visual { flex: 1 1 50%; display: flex; justify-content: flex-end; }
.svc-feature:nth-child(even) .svc-feature-visual { justify-content: flex-start; }
.svc-visual-card {
  width: 100%; max-width: 380px; aspect-ratio: 1/1;
  background: #111;
  border-radius: 28px;
  display: flex; align-items: center; justify-content: center;
}
.svc-visual-card img { width: 52%; height: auto; }

@media (max-width: 760px) {
  .svc-feature, .svc-feature:nth-child(even) { flex-direction: column; gap: 32px; }
  .svc-visual-card { max-width: 240px; }
}

/* ==========================================================================
   SECTION — BLACK VARIANT
   ========================================================================== */

.section-black { background: var(--ink); color: #fff; }
.section-black.no-rule { border-top: none; }
.section-black .eyebrow { color: #fff; }
.section-black .eyebrow::before { background: var(--accent); }
.section-black h2 { color: #fff; }
.section-black p { color: #fff; }

/* ==========================================================================
   STATS — bare numbers, hairline vertical dividers
   ========================================================================== */

.stats-row {
  display: flex; flex-wrap: wrap;
}
.stat {
  flex: 1 1 200px;
  padding: 0 36px 0 0;
  margin-right: 36px;
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.stat-num { font-size: clamp(2.4rem, 4.5vw, 3.6rem); font-weight: 600; letter-spacing: -0.03em; color: var(--ink); line-height: 1; }
.stat-label { font-size: 0.9rem; color: var(--ink-soft); margin-top: 12px; }

@media (max-width: 640px) {
  .stat { flex: 1 1 45%; border-right: none; margin-right: 0; padding-right: 0; margin-bottom: 32px; }
}

/* ==========================================================================
   TEAM
   ========================================================================== */

.team-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
}
.team-member img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  margin-bottom: 24px; filter: grayscale(100%);
  transition: filter .4s var(--ease);
}
.team-member:hover img { filter: grayscale(0%); }
.team-member h3 { margin-bottom: 4px; }
.team-member .role { font-size: 0.86rem; color: var(--ink-soft); font-weight: 600; letter-spacing: 0.02em; }

@media (max-width: 700px) { .team-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   TESTIMONIAL — pull quote
   ========================================================================== */

.quote-block { max-width: 780px; }
.quote-block blockquote {
  font-size: clamp(1.4rem, 2.6vw, 2.1rem);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 32px;
}
.quote-attr { display: flex; align-items: center; gap: 14px; }
.quote-attr-name { font-weight: 600; font-size: 0.92rem; color: var(--ink); }
.quote-attr-role { font-size: 0.86rem; color: var(--ink-faint); }
.quote-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--line-strong); }

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); padding: 36px 0; }
.faq-q { font-weight: 600; font-size: clamp(1.15rem, 1.6vw, 1.4rem); color: var(--ink); margin-bottom: 14px; line-height: 1.3; }
.faq-a { font-size: clamp(1rem, 1.2vw, 1.15rem); color: var(--ink); line-height: 1.8; max-width: 100%; }
.faq-a a { color: var(--accent); font-weight: 600; }

/* ==========================================================================
   MANIFESTO — problem/answer contrast section
   ========================================================================== */

.manifesto { padding: var(--section-gap) 0; border-top: 1px solid var(--line); }
.manifesto-statement {
  font-size: clamp(1.5rem, 3vw, 2.6rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.025em;
  color: var(--ink);
  max-width: 22ch;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.manifesto-statement em { font-style: italic; color: var(--ink); }

/* problem/solution pairs — no cards, pure typography */
.problem-list { border-top: 1px solid var(--line); }
.problem-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: clamp(20px, 3vw, 32px) 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.problem-bad {
  font-size: clamp(0.95rem, 1.1vw, 1.08rem);
  color: var(--ink);
  text-decoration: line-through;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 2px;
  line-height: 1.5;
}
.problem-good {
  font-size: clamp(0.95rem, 1.1vw, 1.08rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.5;
}
@media (max-width: 640px) {
  .problem-item { grid-template-columns: 1fr; gap: 8px; }
  .problem-bad { text-decoration: none; color: var(--ink-soft); font-size: 0.9rem; }
}

/* remarkable stats strip */
.remarkable-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.remarkable-item {
  padding: clamp(28px, 4vw, 48px) clamp(20px, 3vw, 40px);
  border-right: 1px solid var(--line);
}
.remarkable-item:last-child { border-right: none; }
.remarkable-num {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 10px;
}
.remarkable-label { font-size: 0.88rem; color: var(--ink); line-height: 1.5; }

@media (max-width: 720px) {
  .contrast-grid { grid-template-columns: 1fr; }
  .contrast-col:first-child { border-right: none; border-bottom: 1px solid var(--line); }
  .remarkable-strip { grid-template-columns: 1fr 1fr; }
  .remarkable-item:nth-child(2) { border-right: none; }
  .remarkable-item:nth-child(3) { border-top: 1px solid var(--line); }
  .remarkable-item:nth-child(4) { border-top: 1px solid var(--line); border-right: none; }
}



.connect-band {
  background: #000;
  padding: clamp(72px, 10vw, 120px) 0;
}
.connect-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}
.connect-inner {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 60%;
}
.connect-top h2 { color: #fff; margin-bottom: 12px; }
.connect-top p { color: rgba(255,255,255,.65); max-width: 40ch; margin-top: 8px; margin-bottom: 0; }
.connect-band .cf-field { color: #fff !important; border-bottom-color: #fff !important; }
.connect-band .cf-field::placeholder { color: rgba(255,255,255,.45) !important; }
.connect-band .cf-label { color: #fff !important; }

.cf-wrap { display: flex; flex-direction: column; }
.cf-field-group { margin-bottom: 28px; }
.cf-field {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #fff;
  color: #fff;
  font-family: var(--font);
  font-size: 1.3rem;
  font-weight: 400;
  padding: 16px 0 10px;
  outline: none;
  transition: border-color .2s;
  resize: none;
}
.cf-field::placeholder { color: rgba(255,255,255,.5); }
.cf-field:hover { border-bottom-width: 2px; border-bottom-color: #fff; }
.cf-field:focus { border-bottom-width: 2px; border-bottom-color: #fff; outline: none; }

.cf-label {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,.55);
  margin-top: 44px;
  margin-bottom: 16px;
}

/* chips — accent border, liquid fill on hover, shrink on active */
.chip-group { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  position: relative;
  overflow: hidden;
  background: transparent;
  border: 1px solid var(--accent);
  color: #fff;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 500;
  padding: 13px 26px;
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.15s ease, transform 0.2s ease;
  line-height: 1;
}
.chip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.16s cubic-bezier(.4,0,.2,1);
  z-index: 0;
}
.chip:hover::before { transform: scaleY(1); }
.chip:hover { color: #fff !important; }
.chip span { position: relative; z-index: 1; }
.chip.active {
  background: var(--accent);
  color: #fff !important;
  transform: scale(0.93);
}
.chip.active::before { transform: scaleY(1); }

.cf-submit {
  width: 100%;
  margin-top: 40px;
  background: var(--accent);
  color: #fff;
  border: 2px solid transparent;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  padding: 20px;
  border-radius: 10px;
  cursor: pointer;
  transition: background .2s, border-color .2s;
  letter-spacing: -0.01em;
}
.cf-submit:hover { background: var(--accent); border-color: #fff; }
.cf-submit:disabled { opacity: 0.6; cursor: not-allowed; }

@media (max-width: 860px) {
  .connect-inner { grid-template-columns: 1fr; gap: 48px; }
}

/* ==========================================================================
   FOOTER — redesigned with large wordmark
   ========================================================================== */

footer {
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 72px;
  overflow: hidden;
}

.ft-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.ft-brand .logo-img { height: 26px; width: auto; margin-bottom: 20px; }
.ft-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  color: #fff;
  max-width: 28ch;
  margin-bottom: 28px;
}
.ft-socials { display: flex; gap: 10px; }
.ft-social {
  width: 36px; height: 36px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5); transition: all .2s var(--ease);
}
.ft-social:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

.ft-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding-top: 4px;
}
.ft-col-h {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: 20px;
}
.ft-links { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.ft-links a { font-size: 0.92rem; color: #fff; transition: color .2s var(--ease); }
.ft-links a:hover { color: #fff; }

/* large brand wordmark */
.ft-wordmark {
  font-size: clamp(4.5rem, 11vw, 13rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  color: #fff;
  line-height: 0.85;
  padding: 48px 0 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  text-align: center;
}

.ft-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,.7);
  flex-wrap: wrap;
  gap: 10px;
}
.ft-bottom a { color: rgba(255,255,255,.28); transition: color .2s; }
.ft-bottom a:hover { color: #fff; }

@media (max-width: 860px) {
  .ft-top { grid-template-columns: 1fr; gap: 48px; }
  .ft-nav { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .ft-nav { grid-template-columns: 1fr 1fr; }
  .ft-bottom { flex-direction: column; align-items: flex-start; }
  .ft-wordmark { font-size: clamp(3rem, 14vw, 6rem); }
}

/* ==========================================================================
   WHATSAPP FLOAT
   ========================================================================== */

.wa-float-wrap { position: fixed; bottom: 28px; right: 28px; z-index: 999; }
.wa-float {
  display: flex; align-items: center; justify-content: center;
  background: var(--accent); color: #fff;
  width: 56px; height: 56px; border-radius: 50%;
  box-shadow: 0 6px 24px rgba(233,0,184,.35);
  transition: all .3s var(--ease);
  overflow: hidden;
}
.wa-float:hover { width: 178px; border-radius: 30px; gap: 10px; padding: 0 20px; justify-content: flex-start; }
.wa-float svg { flex-shrink: 0; }
.wa-label { white-space: nowrap; opacity: 0; width: 0; font-weight: 600; font-size: 0.86rem; transition: opacity .2s .1s, width .3s; overflow: hidden; }
.wa-float:hover .wa-label { opacity: 1; width: auto; }

@media (max-width: 480px) { .wa-float-wrap { bottom: 20px; right: 20px; } }

/* ==========================================================================
   REVEAL / MOTION
   ========================================================================== */

/* reveal handled by GSAP ScrollTrigger — see main.js */

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-right .btn { display: none; }
  .ham { display: flex; }
  .hero-trust-item { flex: 1 1 45%; margin-bottom: 20px; }
}

/* ==========================================================================
   MOBILE RESPONSIVE — comprehensive
   ========================================================================== */

/* ── Shared token overrides ── */
@media (max-width: 768px) {
  :root { --section-gap: clamp(48px, 10vw, 80px); }

  .wrap, .wrap-narrow {
    padding: 0 20px;
  }
  .nav-inner { padding: 0 20px; }
}

/* ── Hero bento — tablet ── */
@media (max-width: 900px) {
  .hero-bento {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "head    head"
      "meta    shopify"
      "webdev  s1"
      "s2      s2"
      "ctas    ctas";
    gap: 10px;
  }
  .hb-head { min-height: clamp(220px, 45vw, 360px); }
  .hero-h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); }
}

/* ── Hero bento — mobile ── */
@media (max-width: 540px) {
  #hero { padding-top: 90px; }
  .hero-bento {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "head     head"
      "meta     shopify"
      "webdev   webdev"
      "s1       s2"
      "ctas     ctas";
    gap: 8px;
  }
  .hb-head {
    min-height: auto;
    padding: 20px;
    border-radius: 16px;
  }
  .hero-h1 { font-size: clamp(1.7rem, 7vw, 2.4rem); margin-bottom: 12px; }
  .hero-lede { font-size: 0.82rem; max-width: none; margin-bottom: 0; }
  .hb-head::before { background-size: 20px 20px; }
  .hb-svc { padding: 16px; border-radius: 16px; min-height: 110px; }
  .hb-svc-name { font-size: 1rem; }
  .hb-svc-price { font-size: 0.72rem; }
  .hb-icon { width: 36px; height: 36px; }
  .hb-icon img { width: 28px; height: 28px; }
  .hb-stat { padding: 16px; border-radius: 16px; }
  .hb-stat-num { font-size: 1.6rem; }
  .hb-stat-label { font-size: 0.72rem; }
  .hb-ctas { flex-direction: column; gap: 8px; }
  .hb-ctas .btn-primary { width: 100%; justify-content: center; }
  .hb-ctas .btn-pill { width: 100%; justify-content: center; }
  .hb-ctas > span { display: none; }
}

/* ── Nav ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-right .btn { display: none; }
  .ham { display: flex; }
}

/* ── Sections ── */
@media (max-width: 768px) {
  .section-head h2 { font-size: clamp(1.8rem, 6vw, 2.8rem); }
  .section-head-row { flex-direction: column; gap: 20px; align-items: flex-start; }
}

/* ── Manifesto ── */
@media (max-width: 680px) {
  .manifesto-statement { font-size: clamp(1.2rem, 4.5vw, 1.8rem); }
  .problem-item {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 18px 0;
  }
  .problem-bad {
    font-size: 0.85rem;
    text-decoration: line-through;
    text-decoration-color: var(--accent);
    text-decoration-thickness: 2px;
    opacity: 1;
    color: var(--ink-soft);
  }
  .problem-good { font-size: 0.95rem; font-weight: 600; }
}

/* ── Remarkable strip ── */
@media (max-width: 768px) {
  .remarkable-strip { grid-template-columns: 1fr 1fr; }
  .remarkable-item { border-right: none; padding: 20px; }
  .remarkable-item:nth-child(odd)  { border-right: 1px solid var(--line); }
  .remarkable-item:nth-child(3),
  .remarkable-item:nth-child(4)    { border-top: 1px solid var(--line); }
  .remarkable-num { font-size: clamp(1.8rem, 6vw, 2.8rem); }
}

/* ── Why sticky — disable sticky on mobile ── */
@media (max-width: 860px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .why-sticky {
    position: static;
    min-height: auto;
    padding: 0 0 40px;
  }
  .why-sticky h2 { font-size: clamp(1.8rem, 6vw, 2.8rem); margin: 16px 0 24px; }
  .why-point { padding: 32px 0; }
  .why-point h3 { font-size: clamp(1.1rem, 3.5vw, 1.5rem); }
}

/* ── Services showcase ── */
@media (max-width: 760px) {
  .svc-showcase { gap: 52px; }
  .svc-feature,
  .svc-feature:nth-child(even) {
    display: grid !important;
    grid-template-columns: 1fr 110px !important;
    flex-direction: unset !important;
    gap: 20px;
    align-items: start;
  }
  .svc-feature:nth-child(even) {
    grid-template-columns: 110px 1fr !important;
  }
  .svc-feature:nth-child(even) .svc-feature-text { order: 2; }
  .svc-feature:nth-child(even) .svc-feature-visual { order: 1; }
  .svc-feature-visual {
    display: flex !important;
    justify-content: center !important;
    width: 110px;
  }
  .svc-visual-card {
    width: 110px !important;
    max-width: 110px !important;
    aspect-ratio: 1/1;
    border-radius: 16px;
  }
  .svc-visual-card img { width: 58%; }
  .svc-feature-text { min-width: 0; }
  .svc-feature-text h3 { font-size: clamp(1.5rem, 6vw, 2.2rem); letter-spacing: -0.03em; }
  .svc-feature-text p { font-size: 0.86rem; max-width: none; margin-bottom: 18px; }
}
@media (max-width: 420px) {
  .svc-feature,
  .svc-feature:nth-child(even) {
    grid-template-columns: 1fr 90px !important;
  }
  .svc-feature:nth-child(even) {
    grid-template-columns: 90px 1fr !important;
  }
  .svc-feature-visual { width: 90px !important; }
  .svc-visual-card { width: 90px !important; max-width: 90px !important; }
  .svc-feature-text h3 { font-size: clamp(1.2rem, 5.5vw, 1.6rem); }
}

/* ── FAQ ── */
@media (max-width: 768px) {
  .faq-q { font-size: 1rem; }
  .faq-a { font-size: 0.96rem; }
  .faq-item { padding: 24px 0; }
}

/* ── Connect form ── */
@media (max-width: 860px) {
  .connect-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
  }
  .connect-top h2 { font-size: clamp(1.4rem, 5vw, 2rem); }
  .connect-top p { display: none; }
  .connect-inner { max-width: 100%; }
  .cf-field { font-size: 1rem; padding: 12px 0 8px; }
  .cf-field-group { margin-bottom: 0; }
  .cf-label { margin-top: 24px; margin-bottom: 10px; font-size: 0.82rem; }
  .chip { font-size: 0.84rem; padding: 9px 16px; }
  .chip-group { gap: 6px; }
  .cf-submit { font-size: 0.95rem; padding: 15px; margin-top: 24px; }
}
@media (max-width: 600px) {
  .connect-inner {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 100%;
  }
  .cf-field-group { width: 100%; }
  .cf-full { width: 100%; }
  .connect-band { padding: clamp(48px, 8vw, 72px) 0; }
}

/* ── Footer ── */
@media (max-width: 860px) {
  .ft-top { grid-template-columns: 1fr; gap: 40px; }
  .ft-nav { grid-template-columns: 1fr 1fr 1fr; }
}
@media (max-width: 560px) {
  .ft-nav { grid-template-columns: 1fr 1fr; }
  .ft-bottom { flex-direction: column; align-items: flex-start; gap: 6px; }
  .ft-wordmark { font-size: clamp(2.6rem, 13vw, 5rem); padding: 32px 0 28px; }
}

/* ── Team grid (if restored) ── */
@media (max-width: 700px) { .team-grid { grid-template-columns: 1fr; } }

/* ── WhatsApp float ── */
@media (max-width: 480px) {
  .wa-float-wrap { bottom: 16px; right: 16px; }
  .wa-float { width: 50px; height: 50px; }
}

/* ── Buttons — full width on small screens ── */
@media (max-width: 400px) {
  .btn { padding: 14px 20px; font-size: 0.88rem; }
  .btn-primary { width: 100%; justify-content: center; }
}

/* ── Disable cursor on touch ── */
@media (pointer: coarse) {
  .cur { display: none; }
  body, a, button, input, textarea, select { cursor: auto !important; }
}

/* ── Reduce motion ── */
@media (prefers-reduced-motion: reduce) {
  .hs1, .hs2 { animation: none; }
}

/* ==========================================================================
   FORM VALIDATION
   ========================================================================== */
.cf-field.cf-invalid { border-bottom-color: #ff6b6b !important; border-bottom-width: 2px; }
.cf-field.cf-valid   { border-bottom-color: rgba(255,255,255,.5); }

.cf-err {
  font-size: 0.76rem;
  color: #ff6b6b;
  font-weight: 500;
  margin-top: 5px;
  display: none;
  letter-spacing: 0.01em;
}
.cf-err.show { display: block; }

.chip-group.chips-invalid { padding: 10px; border-radius: 10px; outline: 1px solid #ff6b6b; }
.chips-err {
  font-size: 0.76rem;
  color: #ff6b6b;
  font-weight: 500;
  margin-top: 6px;
  display: none;
}
.chips-err.show { display: block; }

.cf-submit:disabled { opacity: 0.5; cursor: not-allowed; transform: none !important; }