/* Balaban Digital — dark luxury single page */

:root {
  --bg: #0A0A0A;
  --bg-2: #0F0F0F;
  --bg-3: #161616;
  --line: #1F1F1F;
  --line-2: #2A2A2A;
  --fg: #F5F2EC;
  --fg-dim: #A8A39A;
  --fg-faint: #66635D;
  --accent: #BEFF00;
  --accent-soft: rgba(190, 255, 0, 0.12);
  --max: 1440px;
  --gutter: clamp(20px, 4vw, 64px);
  --serif: "Instrument Serif", "Cormorant Garamond", Georgia, serif;
  --sans: "Bricolage Grotesque", "Familjen Grotesk", Helvetica, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SF Mono", monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
img, svg { display: block; max-width: 100%; }

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

/* ───────────── Grain / texture overlay ───────────── */
.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 200;
  opacity: 0.05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* Cursor follower */
.cursor-blob {
  position: fixed; left: 0; top: 0; width: 320px; height: 320px;
  border-radius: 50%; pointer-events: none; z-index: 1;
  background: radial-gradient(circle at center, var(--accent-soft) 0%, transparent 60%);
  transform: translate(-50%, -50%); opacity: 0; transition: opacity .4s ease;
  filter: blur(20px);
}
body:hover .cursor-blob { opacity: 1; }

/* ───────────── Type ───────────── */
.serif { font-family: var(--serif); font-weight: 400; }
.mono { font-family: var(--mono); }

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-dim);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px; background: var(--accent);
}

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; margin: 0; letter-spacing: -0.01em; line-height: 1.02; }

.display {
  font-family: var(--serif);
  font-size: clamp(56px, 9.4vw, 160px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  font-weight: 400;
}
.display em { font-style: italic; color: var(--accent); font-weight: 400; }

/* ───────────── Containers ───────────── */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
section { padding: clamp(80px, 12vh, 160px) 0; position: relative; }

.section-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: end;
  margin-bottom: clamp(48px, 8vh, 96px);
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.section-head .num {
  font-family: var(--mono);
  font-size: 12px; letter-spacing: 0.2em;
  color: var(--fg-faint);
}
.section-head h2 {
  font-size: clamp(40px, 6vw, 84px);
  letter-spacing: -0.02em;
}
.section-head h2 em { font-style: italic; color: var(--accent); }
.section-head .head-meta {
  font-size: 13px; color: var(--fg-dim); max-width: 32ch;
  font-family: var(--sans);
}

@media (max-width: 760px) {
  .section-head { grid-template-columns: 1fr; gap: 24px; }
}

/* ───────────── Nav ───────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 10px var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  background: rgba(10,10,10,0.55);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}
.nav.scrolled { border-bottom-color: var(--line); background: rgba(10,10,10,0.85); }
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { height: 140px; width: auto; display: block; margin: -40px 0; }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-link {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--fg);
  position: relative;
  padding: 6px 0;
  transition: color .25s;
}
.nav-link::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 2px;
  height: 1px; background: var(--accent);
  transition: right .35s cubic-bezier(.7,0,.2,1);
}
.nav-link:hover { color: var(--accent); }
.nav-link:hover::after { right: 0; }

.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 12px 22px;
  border-radius: 999px;
  font-family: var(--sans); font-size: 13px; font-weight: 500;
  letter-spacing: 0.01em;
  border: 1px solid var(--line-2);
  background: transparent; color: var(--fg);
  transition: all .25s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover { border-color: var(--accent); color: var(--accent); }
.btn .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
}
.btn-primary {
  background: var(--accent); color: #000; border-color: var(--accent);
}
.btn-primary:hover { background: #d6ff5e; border-color: #d6ff5e; color: #000; transform: translateY(-1px); }
.btn-primary .dot { background: #000; box-shadow: none; }

.btn-arrow svg { transition: transform .3s ease; }
.btn:hover .btn-arrow svg { transform: translateX(4px); }

.mobile-menu-btn { display: none; }

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .mobile-menu-btn { display: inline-flex; }
}

/* Mobile menu */
.mobile-panel {
  position: fixed; inset: 0; z-index: 99;
  background: var(--bg);
  padding: 100px var(--gutter) 40px;
  display: flex; flex-direction: column; gap: 24px;
  transform: translateY(-100%);
  transition: transform .5s cubic-bezier(.7,0,.2,1);
}
.mobile-panel.open { transform: translateY(0); }
.mobile-panel a {
  font-family: var(--serif); font-size: 48px; line-height: 1;
  padding: 12px 0; border-bottom: 1px solid var(--line);
}

/* ───────────── Hero ───────────── */
.hero {
  min-height: 100vh;
  padding-top: clamp(120px, 18vh, 200px);
  padding-bottom: clamp(60px, 10vh, 100px);
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.hero-meta {
  display: flex; justify-content: space-between; gap: 24px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em;
  color: var(--fg-dim); text-transform: uppercase;
  margin-bottom: clamp(40px, 8vh, 80px);
}
.hero-meta > div { display: flex; flex-direction: column; gap: 6px; }
.hero-meta b { color: var(--fg); font-weight: 500; }

.hero-headline {
  font-family: var(--serif);
  font-size: clamp(44px, 8.5vw, 160px);
  line-height: 0.92;
  letter-spacing: -0.03em;
  font-weight: 400;
  padding-right: clamp(220px, 26vw, 360px);
}
@media (max-width: 720px) {
  .hero-headline { padding-right: 0; font-size: clamp(48px, 12vw, 96px); }
}
.hero-headline .line { display: block; }
.hero-headline .line.indent { padding-left: clamp(40px, 12vw, 220px); }
.hero-headline em { font-style: italic; color: var(--accent); }
.hero-headline .stroke {
  -webkit-text-stroke: 1px var(--fg-dim);
  color: transparent;
}

.hero-foot {
  margin-top: clamp(48px, 8vh, 96px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: end;
}
.hero-foot p {
  max-width: 48ch;
  font-size: 16px;
  line-height: 1.6;
  color: var(--fg-dim);
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

@media (max-width: 760px) {
  .hero-foot { grid-template-columns: 1fr; }
  .hero-headline .line.indent { padding-left: 0; }
}

/* Spinning seal */
.seal {
  position: absolute;
  right: var(--gutter);
  top: clamp(100px, 16vh, 180px);
  width: clamp(120px, 14vw, 200px);
  height: clamp(120px, 14vw, 200px);
  z-index: 2;
  pointer-events: none;
}
.seal svg { width: 100%; height: 100%; animation: spin 28s linear infinite; }
.seal::after {
  content: ""; position: absolute; inset: 0; margin: auto;
  width: 36%; height: 36%; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 60px rgba(190,255,0,0.45);
  animation: pulse 3s ease-in-out infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(0.86); } }
body.no-seal .seal { display: none; }

/* Marquee */
.marquee {
  border-block: 1px solid var(--line);
  padding: 22px 0;
  overflow: hidden;
  display: flex;
  white-space: nowrap;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(28px, 4vw, 56px);
  letter-spacing: -0.02em;
  background: var(--bg);
}
.marquee-track { display: inline-flex; gap: 48px; animation: marq 32s linear infinite; }
.marquee-track span { display: inline-flex; align-items: center; gap: 48px; }
.marquee-track i { font-style: normal; color: var(--accent); }
.marquee .dot-sep { color: var(--accent); }
@keyframes marq { to { transform: translateX(-50%); } }

/* ───────────── About ───────────── */
.about-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
@media (max-width: 880px) { .about-grid { grid-template-columns: 1fr; } }
.about-photo {
  position: relative;
  aspect-ratio: 3/4;
  background: var(--bg-3);
  overflow: hidden;
  border: 1px solid var(--line);
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-photo-tag {
  position: absolute; bottom: 16px; left: 16px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em;
  color: var(--fg-dim); text-transform: uppercase;
  padding: 6px 10px;
  background: rgba(10,10,10,0.7); backdrop-filter: blur(6px);
  border: 1px solid var(--line-2);
}
.about-photo-corner {
  position: absolute; top: 16px; right: 16px;
  width: 10px; height: 10px; background: var(--accent); border-radius: 50%;
  box-shadow: 0 0 14px var(--accent);
}

.about-copy h3 {
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.05;
  margin-bottom: 24px;
}
.about-copy h3 em { color: var(--accent); font-style: italic; }
.about-copy p {
  color: var(--fg-dim); font-size: 15px; line-height: 1.7; max-width: 60ch;
  margin: 0 0 18px;
}
.about-copy p.lede { color: var(--fg); font-size: 17px; }

.skill-tags {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 32px;
}
.skill-tag {
  padding: 8px 14px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-size: 12px;
  font-family: var(--mono);
  letter-spacing: 0.04em;
  color: var(--fg-dim);
  transition: all .25s;
}
.skill-tag:hover { color: var(--accent); border-color: var(--accent); }

.about-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.stat-num {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-num em { color: var(--accent); font-style: italic; }
.stat-lbl {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em;
  color: var(--fg-faint); text-transform: uppercase; margin-top: 8px;
}

/* ───────────── Services ───────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
@media (max-width: 980px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .services-grid { grid-template-columns: 1fr; } }

.service {
  position: relative;
  padding: 40px 32px 36px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg);
  transition: background .35s ease;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}
.service::before {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 0; background: var(--accent);
  transition: height .45s cubic-bezier(.7,0,.2,1);
  z-index: 0;
}
.service:hover::before { height: 100%; }
.service > * { position: relative; z-index: 1; }
.service:hover { color: #000; }
.service:hover .service-num,
.service:hover .service-desc,
.service:hover .service-meta { color: #000; }
.service:hover .service-icon { color: #000; border-color: #000; }
.service:hover .service-arrow svg { transform: rotate(-45deg); color: #000; }

.service-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; }
.service-num {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em;
  color: var(--fg-faint);
}
.service-icon {
  width: 44px; height: 44px;
  border: 1px solid var(--line-2); border-radius: 50%;
  display: grid; place-items: center;
  color: var(--accent);
  transition: all .35s;
}
.service-body { margin-top: auto; }
.service-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 24px 0 12px;
}
.service-desc {
  font-size: 14px;
  color: var(--fg-dim);
  line-height: 1.55;
  margin: 0;
  max-width: 36ch;
  transition: color .35s;
}
.service-meta {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 28px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.15em;
  color: var(--fg-faint);
  text-transform: uppercase;
  transition: color .35s;
}
.service-arrow svg { transition: transform .35s ease; }

/* ───────────── Portfolio ───────────── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}
.proj { position: relative; overflow: hidden; cursor: pointer; background: var(--bg-3); }
.proj.big { grid-column: span 7; aspect-ratio: 4/3; }
.proj.small { grid-column: span 5; aspect-ratio: 4/3; }
.proj.wide { grid-column: span 12; aspect-ratio: 21/8; }
.proj.third { grid-column: span 4; aspect-ratio: 4/5; }
@media (max-width: 880px) {
  .proj.big, .proj.small, .proj.wide, .proj.third { grid-column: span 12; aspect-ratio: 4/3; }
}

.proj-canvas {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  transition: transform .8s cubic-bezier(.7,0,.2,1);
}
.proj:hover .proj-canvas { transform: scale(1.04); }

.proj-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 50%);
  color: var(--fg);
}
.proj-tag {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.22em;
  color: var(--accent); text-transform: uppercase; margin-bottom: 8px;
}
.proj-title {
  font-family: var(--serif); font-size: clamp(24px, 2.4vw, 36px); line-height: 1.05;
  letter-spacing: -0.01em;
}
.proj-sub { font-size: 13px; color: var(--fg-dim); margin-top: 6px; }

.proj-cta {
  position: absolute; top: 20px; right: 20px;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--accent); color: #000;
  display: grid; place-items: center;
  opacity: 0; transform: scale(0.6) rotate(-45deg);
  transition: all .4s cubic-bezier(.7,0,.2,1);
}
.proj:hover .proj-cta { opacity: 1; transform: scale(1) rotate(0); }

/* ───────────── Instagram ───────────── */
.ig-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 4px; }
@media (max-width: 980px) { .ig-grid { grid-template-columns: repeat(3, 1fr); } }
.ig-cell {
  position: relative; aspect-ratio: 1/1; overflow: hidden;
  background: var(--bg-3);
}
.ig-cell-art {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  transition: transform .6s ease;
}
.ig-cell:hover .ig-cell-art { transform: scale(1.08); }
.ig-cell-overlay {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  background: rgba(190, 255, 0, 0.85);
  color: #000;
  opacity: 0;
  transition: opacity .3s;
}
.ig-cell:hover .ig-cell-overlay { opacity: 1; }
.ig-cell-stats { display: flex; gap: 14px; font-family: var(--mono); font-size: 12px; font-weight: 600; }
.ig-cell-stats div { display: flex; align-items: center; gap: 5px; }

.ig-cta {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  margin-top: 48px;
  padding: 28px 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.ig-cta-text { display: flex; align-items: center; gap: 14px; }
.ig-cta strong { font-family: var(--serif); font-size: 24px; }

/* ───────────── Contact ───────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(40px, 6vw, 96px);
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info h3 {
  font-size: clamp(36px, 4.6vw, 60px);
  line-height: 1.02;
  margin-bottom: 24px;
}
.contact-info h3 em { color: var(--accent); font-style: italic; }
.contact-info > p {
  color: var(--fg-dim); font-size: 15px; line-height: 1.7;
  max-width: 40ch; margin-bottom: 36px;
}

.contact-list { display: flex; flex-direction: column; gap: 18px; margin-bottom: 32px; }
.contact-item {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: all .25s;
}
.contact-item:hover { border-color: var(--accent); transform: translateY(-1px); }
.contact-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  border: 1px solid var(--line-2); border-radius: 50%;
  display: grid; place-items: center;
  color: var(--accent);
}
.contact-item .lbl {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em;
  color: var(--fg-faint); text-transform: uppercase;
}
.contact-item .val { font-size: 15px; color: var(--fg); margin-top: 2px; }

.wa-btn {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 18px 28px;
  background: var(--accent); color: #000;
  border-radius: 999px;
  font-family: var(--sans); font-weight: 600; font-size: 15px;
  letter-spacing: 0.01em;
  transition: all .25s;
  position: relative; overflow: hidden;
}
.wa-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 40px -10px var(--accent); }
.wa-btn::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 40%, rgba(255,255,255,0.4) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform .8s;
}
.wa-btn:hover::after { transform: translateX(100%); }

/* ───────────── Instagram embed ───────────── */
.ig-embed {
  margin-top: 48px;
  min-height: 200px;
}
.ig-embed behold-widget {
  display: block;
  width: 100%;
}
.wa-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 14px;
  background: linear-gradient(160deg, #0f1d12 0%, #0a0a0a 70%);
  border: 1px solid rgba(190,255,0,0.18);
  padding: clamp(32px, 4vw, 56px);
  color: var(--fg);
  text-decoration: none;
  isolation: isolate;
  transition: transform .4s cubic-bezier(.2,.7,.3,1), border-color .4s, box-shadow .4s;
}
.wa-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 30px 80px -30px rgba(190,255,0,0.45);
}
.wa-card-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.wa-card-bg span {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(190,255,0,0.22), transparent 70%);
  filter: blur(20px);
}
.wa-card-bg span:nth-child(1) { width: 320px; height: 320px; top: -80px; right: -80px; animation: wa-orb 9s ease-in-out infinite; }
.wa-card-bg span:nth-child(2) { width: 220px; height: 220px; bottom: -60px; left: -40px; background: radial-gradient(circle, rgba(190,255,0,0.10), transparent 70%); animation: wa-orb 11s ease-in-out infinite reverse; }
.wa-card-bg span:nth-child(3) { width: 140px; height: 140px; top: 40%; left: 50%; background: radial-gradient(circle, rgba(190,255,0,0.08), transparent 70%); animation: wa-orb 7s ease-in-out infinite; }
@keyframes wa-orb {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(20px, -16px) scale(1.08); }
}
.wa-card-inner { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 18px; }
.wa-card-icon {
  width: 84px; height: 84px; border-radius: 22px;
  background: var(--accent); color: #000;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px -5px rgba(190,255,0,0.5);
}
.wa-card-tag {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.22em;
  color: var(--fg-faint); text-transform: uppercase;
}
.wa-card-title {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.96; letter-spacing: -0.02em;
  font-weight: 400;
  margin: 0;
}
.wa-card-title em { font-style: italic; color: var(--accent); }
.wa-card-sub {
  font-size: 16px; line-height: 1.55; color: var(--fg-dim);
  max-width: 44ch; margin: 0;
}
.wa-card-cta {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 16px 24px; align-self: flex-start;
  background: var(--accent); color: #000;
  border-radius: 999px;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.18em;
  text-transform: uppercase; font-weight: 600;
  margin-top: 8px;
  transition: transform .3s, box-shadow .3s;
}
.wa-card:hover .wa-card-cta {
  transform: translateX(4px);
  box-shadow: 0 10px 30px -5px rgba(190,255,0,0.6);
}
.wa-card-cta svg { transition: transform .35s; }
.wa-card:hover .wa-card-cta svg { transform: translateX(4px); }
.wa-card-pulse {
  width: 8px; height: 8px; border-radius: 50%; background: #000;
  position: relative;
}
.wa-card-pulse::before {
  content: ""; position: absolute; inset: -4px; border-radius: 50%;
  border: 1px solid #000; opacity: .5;
  animation: wa-pulse 1.6s ease-out infinite;
}
@keyframes wa-pulse {
  0% { transform: scale(0.6); opacity: .7; }
  100% { transform: scale(1.8); opacity: 0; }
}
.wa-card-foot {
  display: flex; justify-content: space-between; gap: 16px;
  padding-top: 20px; margin-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em;
  color: var(--fg-faint); text-transform: uppercase;
}

/* Hide legacy form styles (no longer used) */
.form-card { display: none; }

/* ───────────── /WhatsApp Card ───────────── */
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: clamp(28px, 4vw, 48px);
  border-radius: 10px;
}
.form-card h4 {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--fg-dim); margin-bottom: 28px; font-weight: 500;
  display: flex; align-items: center; gap: 12px;
}
.form-card h4::before { content: ""; width: 24px; height: 1px; background: var(--accent); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
@media (max-width: 620px) { .form-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.field label {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--fg-faint);
}
.field input, .field textarea, .field select {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-2);
  padding: 12px 0;
  color: var(--fg);
  font-family: var(--sans); font-size: 15px;
  outline: none;
  transition: border-color .25s;
  resize: vertical;
  border-radius: 0;
  appearance: none;
}
.field select {
  background: var(--bg-3) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23BEFF00' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>") no-repeat right 4px center;
  padding-right: 24px;
  cursor: pointer;
}
.field select option {
  background: #161616;
  color: var(--fg);
  font-family: var(--sans);
  padding: 12px;
}
.field textarea { min-height: 100px; }
.field input:focus, .field textarea:focus, .field select:focus {
  border-bottom-color: var(--accent);
}
.field input::placeholder, .field textarea::placeholder { color: var(--fg-faint); }

.form-submit {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; margin-top: 12px;
}
.form-submit small { font-family: var(--mono); font-size: 10px; letter-spacing: 0.15em; color: var(--fg-faint); text-transform: uppercase; }

.form-success {
  text-align: center; padding: 40px 20px;
}
.form-success-circle {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 20px;
  background: var(--accent); color: #000;
  display: grid; place-items: center;
  animation: pop .5s cubic-bezier(.5,1.6,.5,1);
}
@keyframes pop { 0% { transform: scale(0); } 100% { transform: scale(1); } }
.form-success h5 { font-family: var(--serif); font-size: 32px; margin: 0 0 8px; }
.form-success p { color: var(--fg-dim); font-size: 14px; margin: 0; }

/* ───────────── Footer ───────────── */
.footer {
  border-top: 1px solid var(--line);
  padding: 60px var(--gutter) 32px;
  position: relative;
}
.footer-top {
  font-family: var(--serif);
  font-size: clamp(60px, 12vw, 220px);
  line-height: 0.9;
  letter-spacing: -0.03em;
  margin-bottom: 60px;
}
.footer-top em { font-style: italic; color: var(--accent); }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 48px; border-bottom: 1px solid var(--line);
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-col h6 {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--fg-faint); margin: 0 0 16px; font-weight: 500;
}
.footer-col a, .footer-col p { display: block; font-size: 14px; color: var(--fg-dim); margin-bottom: 8px; transition: color .25s; }
.footer-col a:hover { color: var(--accent); }
.footer-brand img { height: 180px; margin: -40px 0 -10px -28px; }
.footer-brand p { font-size: 13px; max-width: 32ch; }
.footer-bot {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 28px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.15em;
  color: var(--fg-faint); text-transform: uppercase;
  flex-wrap: wrap; gap: 12px;
}
.footer-bot .live-dot {
  display: inline-flex; align-items: center; gap: 8px;
}
.footer-bot .live-dot span:first-child {
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
  animation: blink 2s infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

/* ───────────── Reveal on scroll ───────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s cubic-bezier(.2,.6,.2,1), transform .9s cubic-bezier(.2,.6,.2,1); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ───────────── Utility ───────────── */
.divider {
  height: 1px; background: var(--line); margin: 0; border: 0;
}

@media (max-width: 620px) {
  .hero-meta { flex-wrap: wrap; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
}

/* ───────────── Hero Phone ───────────── */
.hero-phone {
  position: absolute;
  top: clamp(96px, 13vh, 150px);
  right: clamp(12px, 3vw, 48px);
  width: clamp(170px, 17vw, 220px);
  z-index: 3;
  transform: rotate(-4deg);
  pointer-events: none;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.55)) drop-shadow(0 0 0 1px rgba(190,255,0,0.08));
  animation: phone-float 7s ease-in-out infinite;
}
@keyframes phone-float {
  0%, 100% { transform: rotate(-4deg) translateY(0); }
  50% { transform: rotate(-3deg) translateY(-10px); }
}
.hero-phone-frame {
  position: relative;
  aspect-ratio: 9 / 19.2;
  background: linear-gradient(160deg, #1a1a14 0%, #0c0c08 100%);
  border: 1.5px solid #2a2a20;
  border-radius: 36px;
  padding: 9px;
  overflow: hidden;
}
.hero-phone-notch {
  position: absolute;
  top: 12px; left: 50%; transform: translateX(-50%);
  width: 36%; height: 18px;
  background: #000;
  border-radius: 12px;
  z-index: 4;
}
.hero-phone-screen {
  position: relative;
  width: 100%; height: 100%;
  background: linear-gradient(180deg, #0a0a0a 0%, #131310 100%);
  border-radius: 28px;
  overflow: hidden;
  padding: 28px 12px 14px;
  display: flex; flex-direction: column;
  gap: 8px;
  font-family: var(--sans, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif);
  color: #f5f2ec;
}
.hero-phone-glare {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0) 35%, rgba(255,255,255,0) 70%, rgba(255,255,255,0.04) 100%);
  border-radius: 36px;
  pointer-events: none;
}

.phone-status {
  position: absolute; top: 4px; left: 14px; right: 14px;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono); font-size: 8px;
  color: #f5f2ec;
  z-index: 3;
  letter-spacing: 0.04em;
}
.phone-status-icons { display: inline-flex; align-items: center; gap: 4px; }
.phone-bars { display: inline-flex; align-items: end; gap: 1px; }
.phone-bars i { display: block; width: 2px; background: #f5f2ec; }
.phone-bars i:nth-child(1) { height: 3px; }
.phone-bars i:nth-child(2) { height: 5px; }
.phone-bars i:nth-child(3) { height: 7px; }
.phone-bars i:nth-child(4) { height: 9px; }
.phone-batt {
  width: 14px; height: 7px; border: 1px solid #f5f2ec; border-radius: 1.5px;
  padding: 1px; display: block; position: relative;
}
.phone-batt::after { content: ''; position: absolute; right: -2.5px; top: 1.5px; width: 1.5px; height: 3px; background: #f5f2ec; border-radius: 0 1px 1px 0; }
.phone-batt b { display: block; width: 80%; height: 100%; background: var(--accent); border-radius: 0.5px; }

.phone-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 2px 4px 6px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.phone-app {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.04em;
  color: #f5f2ec;
}
.phone-app-dot {
  width: 5px; height: 5px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}
.phone-live {
  display: inline-flex; align-items: center; gap: 4px;
  font-family: var(--mono); font-size: 7px; letter-spacing: 0.18em;
  color: var(--accent);
  border: 1px solid rgba(190,255,0,0.35);
  padding: 2px 6px; border-radius: 999px;
}
.phone-live-dot {
  width: 4px; height: 4px; border-radius: 50%; background: var(--accent);
  animation: blink 1.4s infinite;
}

.phone-revenue {
  margin-top: 4px;
  padding: 10px 12px 12px;
  border-radius: 12px;
  background: linear-gradient(160deg, rgba(190,255,0,0.10), rgba(190,255,0,0.02));
  border: 1px solid rgba(190,255,0,0.20);
  animation: revPulse 0.45s ease;
}
@keyframes revPulse {
  0% { background: linear-gradient(160deg, rgba(190,255,0,0.22), rgba(190,255,0,0.04)); }
  100% { background: linear-gradient(160deg, rgba(190,255,0,0.10), rgba(190,255,0,0.02)); }
}
.phone-revenue-lbl {
  font-family: var(--mono); font-size: 8px; letter-spacing: 0.16em;
  color: rgba(245,242,236,0.55); text-transform: uppercase;
}
.phone-revenue-val {
  font-family: var(--serif); font-size: 26px; line-height: 1.05;
  color: #f5f2ec; margin-top: 4px;
  display: inline-flex; align-items: baseline; gap: 6px;
  letter-spacing: -0.02em;
}
.phone-revenue-up {
  color: var(--accent); font-size: 14px; font-family: var(--sans);
}
.phone-revenue-sub {
  font-family: var(--mono); font-size: 8px; letter-spacing: 0.08em;
  color: rgba(245,242,236,0.45); margin-top: 4px;
}

.phone-chart {
  display: flex; align-items: flex-end; gap: 4px;
  height: 38px; padding: 0 2px;
}
.phone-bar {
  flex: 1; position: relative;
  background: rgba(255,255,255,0.04);
  border-radius: 2px 2px 0 0;
  height: 100% !important;
}
.phone-bar span {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(180deg, var(--accent), oklch(0.78 0.22 122 / 0.8));
  border-radius: 2px 2px 0 0;
  transition: height 0.8s cubic-bezier(.2,.7,.3,1);
}
.phone-bar:last-child span { box-shadow: 0 0 8px rgba(190,255,0,0.4); }

.phone-mini {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6px;
}
.phone-mini > div {
  padding: 7px 9px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
}
.phone-mini-lbl {
  font-family: var(--mono); font-size: 7px; letter-spacing: 0.16em;
  color: rgba(245,242,236,0.5); text-transform: uppercase;
}
.phone-mini-val {
  font-family: var(--serif); font-size: 16px; color: #f5f2ec; margin-top: 2px;
  letter-spacing: -0.01em;
}

.phone-feed {
  margin-top: auto;
  display: flex; flex-direction: column; gap: 4px;
  max-height: 130px; overflow: hidden;
}
.phone-feed-row {
  display: grid;
  grid-template-columns: 18px 1fr auto;
  align-items: center; gap: 7px;
  padding: 6px 7px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
  animation: feedIn 0.5s cubic-bezier(.2,.7,.3,1);
}
@keyframes feedIn {
  0% { opacity: 0; transform: translateY(-8px) scale(0.96); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
.phone-feed-row.t-sale { border-color: rgba(190,255,0,0.20); background: rgba(190,255,0,0.06); }
.phone-feed-icon {
  width: 18px; height: 18px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 9px; font-weight: 600;
  background: rgba(255,255,255,0.08); color: #f5f2ec;
}
.phone-feed-row.t-sale .phone-feed-icon { background: var(--accent); color: #000; }
.phone-feed-row.t-like .phone-feed-icon { color: #ff4d6d; background: rgba(255,77,109,0.12); }
.phone-feed-row.t-view .phone-feed-icon { color: #6cb6ff; background: rgba(108,182,255,0.12); }
.phone-feed-row.t-follow .phone-feed-icon { background: rgba(255,255,255,0.08); }
.phone-feed-label {
  font-size: 9px; font-weight: 500; color: #f5f2ec; line-height: 1.1;
}
.phone-feed-who {
  font-family: var(--mono); font-size: 7px; letter-spacing: 0.08em;
  color: rgba(245,242,236,0.45); margin-top: 1px;
}
.phone-feed-val {
  font-family: var(--mono); font-size: 9px; font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.04em;
}
.phone-feed-row.t-like .phone-feed-val { color: #ff4d6d; }
.phone-feed-row.t-view .phone-feed-val { color: #6cb6ff; }

@media (max-width: 980px) {
  .hero-phone {
    width: clamp(150px, 22vw, 200px);
    top: clamp(84px, 11vh, 120px);
    right: clamp(10px, 2.5vw, 28px);
  }
}
@media (max-width: 720px) {
  .hero-phone {
    position: relative;
    top: auto; right: auto;
    width: 200px;
    margin: 24px auto 8px;
    transform: rotate(-3deg);
    animation: phone-float-mob 7s ease-in-out infinite;
  }
  @keyframes phone-float-mob {
    0%, 100% { transform: rotate(-3deg) translateY(0); }
    50% { transform: rotate(-2deg) translateY(-6px); }
  }
  .hero { padding-top: clamp(96px, 14vh, 140px); }
}
@media (max-width: 420px) {
  .hero-phone { width: 170px; }
}

/* ───────────── Service info button ───────────── */
.service-actions {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; margin-top: 28px;
  flex-wrap: wrap;
}
.service-info-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  border: 1px solid var(--line-2);
  color: var(--fg);
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 9px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: all .25s ease;
}
.service-info-btn:hover {
  background: var(--accent); color: #000; border-color: var(--accent);
}
.service:hover .service-info-btn {
  background: #000; color: var(--accent); border-color: #000;
}
.service:hover .service-info-btn:hover {
  background: var(--accent); color: #000; border-color: var(--accent);
}
.service-meta-tag {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em;
  color: var(--fg-faint);
  text-transform: uppercase;
}
.service:hover .service-meta-tag { color: #000; }
.service-meta {
  margin-top: 16px;
  display: flex; justify-content: flex-end;
}

/* ───────────── About photo shrink ───────────── */
.about-grid { grid-template-columns: 4fr 8fr; }
.about-photo {
  max-width: 360px;
  align-self: start;
  aspect-ratio: 4/5;
}
@media (max-width: 880px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { max-width: 320px; }
}
