/* Focus Photos EP — mid-fi homepage (Direction A)
   Monzo-adjacent playful · electric purple · black section bands · real photography */

:root {
  --ink:        #0a0a0b;         /* near-black */
  --paper:      #faf7f2;         /* warm off-white */
  --paper-2:    #f2efe7;         /* slightly deeper paper */
  --line:       rgba(10, 10, 11, 0.14);
  --line-2:     rgba(10, 10, 11, 0.08);
  --muted:      rgba(10, 10, 11, 0.6);
  --purple:     #6b3df5;         /* electric */
  --purple-ink: #4a26c4;         /* pressed state */
  --purple-bg:  #efe9ff;         /* very light tint */
  --lime:       #d4ff3f;         /* occasional secondary pop */
  --coral:      #ff6b5b;         /* rare accent */
}

* { box-sizing: border-box; }

html, body {
  margin: 0; padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Inter', system-ui, sans-serif;
  font-feature-settings: 'ss01', 'cv11';
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.mono { font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 11px; letter-spacing: 0.04em; text-transform: uppercase; }
.display { font-family: 'Space Grotesk', system-ui, sans-serif; letter-spacing: -0.035em; font-weight: 700; line-height: 0.95; }
.display-ita { font-family: 'Fraunces', 'Space Grotesk', serif; font-style: italic; font-weight: 400; letter-spacing: -0.015em; }

/* ── buttons ─────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  font-family: 'Inter', sans-serif;
  font-weight: 600; font-size: 15px;
  border-radius: 999px;
  border: 1.5px solid var(--ink);
  background: transparent; color: var(--ink);
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--ink); color: var(--paper);
  border-color: var(--ink);
}
.btn-primary:hover { background: var(--purple); border-color: var(--purple); color: white; }
.btn-purple {
  background: var(--purple); color: white; border-color: var(--purple);
}
.btn-purple:hover { background: var(--purple-ink); border-color: var(--purple-ink); }
.btn-ghost-dark {
  background: transparent; color: white; border-color: rgba(255,255,255,0.3);
}
.btn-ghost-dark:hover { background: white; color: var(--ink); border-color: white; }
.btn-small { padding: 8px 14px; font-size: 13px; }

/* arrow char */
.arrow { font-family: 'JetBrains Mono', monospace; font-weight: 400; transform: translateY(-1px); }

/* ── nav ─────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 40;
  background: rgba(250, 247, 242, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line-2);
}
.nav-inner {
  max-width: 1320px; margin: 0 auto;
  padding: 14px 32px;
  display: flex; align-items: center; gap: 32px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); }
.nav-logo img { width: 28px; height: 28px; }
.nav-logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 16px; letter-spacing: -0.015em;
}
.nav-logo-text b { font-weight: 700; }
.nav-logo-text span { opacity: 0.55; font-weight: 500; margin-left: 4px; }
.nav-links { display: flex; gap: 26px; margin-left: auto; }
.nav-link {
  font-size: 14px; font-weight: 500; color: var(--ink); text-decoration: none;
  opacity: 0.72; transition: opacity 0.15s;
}
.nav-link:hover { opacity: 1; }

/* ── wrap/section helpers ─────────────────────────── */
.wrap { max-width: 1320px; margin: 0 auto; padding: 0 32px; }
.section { padding: 120px 0; }
.section-sm { padding: 72px 0; }
.section-band-black { background: var(--ink); color: var(--paper); }
.section-band-purple { background: var(--purple); color: white; }
.section-band-paper-2 { background: var(--paper-2); }

/* eyebrow */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  opacity: 0.7;
}
.eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--purple); }
.section-band-black .eyebrow-dot { background: var(--lime); }
.section-band-purple .eyebrow-dot { background: var(--lime); }

/* ── hero ─────────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  background: var(--ink);
  color: white;
  overflow: hidden;
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
.hero-scrim {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 30% 40%, rgba(107,61,245,0.35), transparent 60%),
    linear-gradient(180deg, rgba(10,10,11,0.4) 0%, rgba(10,10,11,0.1) 35%, rgba(10,10,11,0.85) 100%);
}
.hero-content {
  position: relative;
  max-width: 1320px; margin: 0 auto;
  padding: 80px 32px 96px;
  min-height: 92vh;
  display: flex; flex-direction: column; justify-content: space-between;
}
.hero-top {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 32px;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 999px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  background: rgba(10,10,11,0.35);
  backdrop-filter: blur(8px);
}
.hero-tag-live {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--lime); box-shadow: 0 0 0 4px rgba(212,255,63,0.15);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; }
  50% { opacity: 0.45; }
}
.hero-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(64px, 9vw, 148px);
  line-height: 0.9;
  letter-spacing: -0.045em;
  margin: 0;
  max-width: 18ch;
}
.hero-headline .ital {
  font-family: 'Fraunces', serif; font-style: italic; font-weight: 300;
  letter-spacing: -0.02em;
}
.hero-headline .under {
  background: var(--purple); padding: 0 12px; border-radius: 6px;
  display: inline-block; transform: translateY(-4px);
}
.hero-sub {
  margin-top: 28px;
  max-width: 56ch;
  font-size: 19px; line-height: 1.45;
  color: rgba(255,255,255,0.78);
}
.hero-cta-row { display: flex; gap: 12px; margin-top: 36px; flex-wrap: wrap; }
.hero-meta-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.05em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.hero-stats { display: flex; gap: 40px; flex-wrap: wrap; }
.hero-stat-num {
  font-family: 'Space Grotesk', sans-serif; font-weight: 700;
  font-size: 40px; letter-spacing: -0.03em; line-height: 1;
}
.hero-stat-num .purple-dot { color: var(--lime); }
.hero-stat-label {
  font-size: 12px; margin-top: 4px;
  color: rgba(255,255,255,0.6);
}

/* ── ticker / clients ─────────────────────────── */
.ticker {
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
  background: var(--paper);
  padding: 22px 0;
  overflow: hidden;
}
.ticker-track {
  display: flex; gap: 56px; align-items: center;
  animation: scroll 45s linear infinite;
  white-space: nowrap;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.ticker-item {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600; font-size: 20px;
  letter-spacing: -0.02em;
  opacity: 0.55;
  display: flex; align-items: center; gap: 14px;
  flex-shrink: 0;
}
.ticker-item::after {
  content: '✳'; color: var(--purple); font-size: 14px; opacity: 0.6;
}

/* ── section headers ─────────────────────────── */
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-bottom: 56px; flex-wrap: wrap; }
.sec-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(44px, 5.6vw, 84px);
  line-height: 0.95; letter-spacing: -0.035em;
  margin: 12px 0 0; max-width: 20ch;
}
.sec-title .ital { font-family: 'Fraunces', serif; font-style: italic; font-weight: 300; }
.sec-kicker { max-width: 44ch; font-size: 17px; line-height: 1.5; opacity: 0.7; }

/* ── services grid ─────────────────────────── */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.svc {
  padding: 36px 32px 40px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  background: var(--paper);
  transition: background 0.2s ease;
  cursor: pointer;
  min-height: 280px;
  display: flex; flex-direction: column;
}
.svc:hover { background: var(--paper-2); }
.svc:hover .svc-arrow { transform: translate(4px, -4px); color: var(--purple); }
.svc-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.1em;
  opacity: 0.5;
}
.svc-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 32px;
  letter-spacing: -0.03em; line-height: 1;
  margin: 14px 0 10px;
}
.svc-desc { font-size: 15px; line-height: 1.5; opacity: 0.72; }
.svc-foot {
  margin-top: auto; padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px;
}
.svc-tag {
  display: inline-block;
  padding: 3px 10px;
  background: var(--purple-bg); color: var(--purple-ink);
  border-radius: 999px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase;
  font-weight: 500;
}
.svc-arrow { font-size: 22px; transition: transform 0.2s ease, color 0.2s ease; }
.svc-featured { background: var(--ink); color: var(--paper); }
.svc-featured:hover { background: var(--ink); }
.svc-featured .svc-num { opacity: 0.55; }
.svc-featured .svc-desc { opacity: 0.75; }
.svc-featured .svc-tag { background: var(--purple); color: white; }

/* ── work gallery ─────────────────────────── */
.work-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}
.work-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--paper-2);
  cursor: pointer;
  isolation: isolate;
}
.work-item img, .work-item video {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.work-item:hover img, .work-item:hover video { transform: scale(1.04); }
.work-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10,10,11,0.7) 100%);
  z-index: 1;
}
.work-meta {
  position: absolute; left: 20px; right: 20px; bottom: 18px;
  z-index: 2; color: white;
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 12px;
}
.work-meta-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 22px;
  letter-spacing: -0.02em; line-height: 1.05;
}
.work-meta-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 10px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  white-space: nowrap;
}
.work-item-tall { grid-column: span 4; aspect-ratio: 3 / 4; }
.work-item-wide { grid-column: span 8; aspect-ratio: 16 / 10; }
.work-item-square { grid-column: span 4; aspect-ratio: 1; }
.work-item-thin { grid-column: span 6; aspect-ratio: 3 / 2; }

/* ── testimonial card ─────────────────────────── */
.testi {
  border: 1.5px solid var(--line);
  border-radius: 16px;
  padding: 40px;
  background: var(--paper);
  display: flex; flex-direction: column;
  min-height: 280px;
}
.testi-quote-mark {
  font-family: 'Fraunces', serif; font-style: italic;
  color: var(--purple);
  font-size: 96px; line-height: 0.6;
  margin-bottom: 4px;
}
.testi-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px; line-height: 1.3;
  letter-spacing: -0.015em;
  font-weight: 500;
  flex: 1;
}
.testi-footer { display: flex; align-items: center; gap: 14px; margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--line); }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--purple-bg);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 15px;
  color: var(--purple-ink);
}
.testi-name { font-weight: 600; font-size: 14px; }
.testi-role { font-size: 12px; opacity: 0.6; }
.testi-dark { background: var(--ink); color: white; border-color: var(--ink); }
.testi-dark .testi-footer { border-color: rgba(255,255,255,0.1); }
.testi-dark .testi-role { opacity: 0.55; }
.testi-purple { background: var(--purple); color: white; border-color: var(--purple); }
.testi-purple .testi-quote-mark { color: var(--lime); }
.testi-purple .testi-footer { border-color: rgba(255,255,255,0.2); }
.testi-purple .testi-avatar { background: rgba(255,255,255,0.2); color: white; }

/* ── big marquee headline block ─────────────────────────── */
.marquee-wrap {
  padding: 160px 0;
  background: var(--ink); color: white;
  overflow: hidden;
  position: relative;
}
.marquee-line {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(80px, 12vw, 200px);
  line-height: 0.9; letter-spacing: -0.04em;
  white-space: nowrap;
  display: flex; gap: 48px;
  animation: scroll 50s linear infinite;
}
.marquee-line.rev { animation: scrollRev 60s linear infinite; opacity: 0.3; }
@keyframes scrollRev {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}
.marquee-line .ital { font-family: 'Fraunces', serif; font-style: italic; font-weight: 300; color: var(--purple); }
.marquee-line .lime { color: var(--lime); }

/* ── audit form ─────────────────────────── */
.audit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--ink); color: white;
  border-radius: 24px;
  overflow: hidden;
}
.audit-left { padding: 56px; }
.audit-right { padding: 56px; background: #131416; }
.audit-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 48px;
  letter-spacing: -0.03em; line-height: 0.95;
  margin: 12px 0 18px;
}
.audit-sub { opacity: 0.72; font-size: 16px; line-height: 1.5; margin-bottom: 28px; max-width: 40ch; }
.audit-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.audit-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; line-height: 1.45;
}
.audit-check {
  flex-shrink: 0;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 12px;
  margin-top: 1px;
}
.audit-form { display: flex; flex-direction: column; gap: 16px; }
.audit-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  display: block; margin-bottom: 6px;
}
.audit-input, .audit-textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  transition: border-color 0.15s;
}
.audit-input:focus, .audit-textarea:focus {
  outline: none; border-color: var(--purple);
  background: rgba(107,61,245,0.08);
}
.audit-input::placeholder, .audit-textarea::placeholder { color: rgba(255,255,255,0.35); }
.audit-textarea { resize: vertical; min-height: 88px; }
.audit-submit {
  margin-top: 8px;
  padding: 16px 24px;
  background: var(--purple); color: white;
  border: none; border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-weight: 600; font-size: 15px;
  cursor: pointer;
  transition: background 0.15s;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
}
.audit-submit:hover { background: var(--purple-ink); }
.audit-success {
  padding: 32px;
  background: rgba(212,255,63,0.08);
  border: 1px solid rgba(212,255,63,0.3);
  border-radius: 12px;
  text-align: center;
}
.audit-success-mark {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--lime); color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 28px;
  margin-bottom: 14px;
}

/* ── process ─────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.proc-card { display: flex; flex-direction: column; gap: 10px; }
.proc-num {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 64px;
  letter-spacing: -0.04em; line-height: 0.85;
  color: var(--purple);
}
.proc-num .ital {
  font-family: 'Fraunces', serif; font-style: italic; font-weight: 300;
  opacity: 0.5;
}
.proc-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 22px;
  letter-spacing: -0.02em;
}
.proc-desc { font-size: 14px; line-height: 1.5; opacity: 0.72; }

/* ── pricing ─────────────────────────── */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.price {
  border: 1.5px solid var(--line);
  border-radius: 16px;
  padding: 36px 32px;
  background: var(--paper);
  display: flex; flex-direction: column;
  position: relative;
  min-height: 480px;
}
.price-featured {
  background: var(--ink); color: white; border-color: var(--ink);
}
.price-featured .pr-desc, .price-featured .pr-item { opacity: 0.82; }
.price-featured .pr-list li { border-color: rgba(255,255,255,0.1); }
.price-featured .pr-price-big { color: var(--lime); }
.pr-badge {
  position: absolute; top: -10px; right: 24px;
  padding: 4px 10px;
  background: var(--purple); color: white;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: 999px;
  font-weight: 500;
}
.pr-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 28px;
  letter-spacing: -0.02em;
}
.pr-desc { font-size: 14px; line-height: 1.5; opacity: 0.7; margin: 8px 0 20px; }
.pr-price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 24px; }
.pr-price-big {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 52px;
  letter-spacing: -0.03em; line-height: 1;
  color: var(--purple);
}
.pr-price-unit { font-size: 14px; opacity: 0.6; }
.pr-list { list-style: none; padding: 0; margin: 0 0 28px; flex: 1; }
.pr-list li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line-2);
  font-size: 14px; line-height: 1.4;
}
.pr-list li:last-child { border-bottom: none; }
.pr-check {
  flex-shrink: 0;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--purple-bg); color: var(--purple-ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700;
  margin-top: 1px;
}
.price-featured .pr-check { background: var(--purple); color: white; }

/* ── about strip ─────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}
.about-photo {
  aspect-ratio: 4 / 5;
  border-radius: 16px;
  overflow: hidden;
  background: var(--paper-2);
  position: relative;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-photo-tag {
  position: absolute; top: 20px; left: 20px;
  padding: 6px 12px;
  background: var(--lime); color: var(--ink);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: 999px;
  font-weight: 500;
}
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
.about-stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 56px;
  letter-spacing: -0.03em; line-height: 0.9;
  color: var(--purple);
}
.about-stat-label { font-size: 13px; margin-top: 6px; opacity: 0.65; }

/* ── chat bot ─────────────────────────── */
.chat-fab {
  position: fixed; bottom: 24px; right: 24px;
  z-index: 60;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--purple);
  border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(107,61,245,0.4);
  transition: transform 0.2s;
}
.chat-fab:hover { transform: scale(1.05); }
.chat-fab svg { color: white; }
.chat-panel {
  position: fixed; bottom: 100px; right: 24px;
  z-index: 60;
  width: 360px; max-height: 560px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.25);
  display: flex; flex-direction: column;
  overflow: hidden;
}
.chat-header {
  padding: 16px 20px;
  background: var(--ink); color: white;
  display: flex; align-items: center; gap: 12px;
}
.chat-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--purple);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 14px;
}
.chat-header-name { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 15px; }
.chat-header-status { font-size: 11px; opacity: 0.6; display: flex; align-items: center; gap: 6px; }
.chat-header-status::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--lime); }
.chat-close {
  margin-left: auto;
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: white; border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.chat-messages {
  flex: 1; overflow-y: auto;
  padding: 20px;
  display: flex; flex-direction: column; gap: 10px;
}
.chat-msg {
  max-width: 85%;
  padding: 10px 14px;
  font-size: 14px; line-height: 1.45;
  border-radius: 14px;
}
.chat-msg-bot {
  background: white;
  border: 1px solid var(--line-2);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.chat-msg-user {
  background: var(--purple); color: white;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.chat-input-row {
  padding: 14px;
  border-top: 1px solid var(--line-2);
  display: flex; gap: 8px;
  background: white;
}
.chat-input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  background: var(--paper);
}
.chat-input:focus { outline: none; border-color: var(--purple); }
.chat-send {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--purple); color: white;
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.chat-suggestions { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; }
.chat-suggestion {
  padding: 6px 10px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  cursor: pointer;
  color: var(--ink);
}
.chat-suggestion:hover { background: var(--purple-bg); border-color: var(--purple); color: var(--purple-ink); }
.chat-typing { display: flex; gap: 4px; padding: 10px 14px; align-self: flex-start; background: white; border: 1px solid var(--line-2); border-radius: 14px; }
.chat-typing span { width: 6px; height: 6px; border-radius: 50%; background: var(--muted); animation: bounce 1.4s infinite; }
.chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes bounce {
  0%,60%,100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-4px); opacity: 1; }
}

/* ── footer ─────────────────────────── */
.footer {
  background: var(--ink); color: var(--paper);
  padding: 96px 0 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer h4 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  margin: 0 0 16px;
  opacity: 0.55; font-weight: 500;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link { color: white; text-decoration: none; font-size: 15px; opacity: 0.85; }
.footer-link:hover { opacity: 1; color: var(--lime); }
.footer-huge {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(100px, 14vw, 240px);
  line-height: 0.85; letter-spacing: -0.05em;
  padding: 56px 0 32px;
  text-align: left;
}
.footer-huge .ital { font-family: 'Fraunces', serif; font-style: italic; font-weight: 300; color: var(--purple); }
.footer-bot {
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px; flex-wrap: wrap;
  font-size: 13px; opacity: 0.55;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* ── mobile ─────────────────────────── */
@media (max-width: 960px) {
  .section { padding: 80px 0; }
  .wrap { padding: 0 20px; }
  .nav-inner { padding: 12px 20px; }
  .nav-links { display: none; }
  .hero-content { padding: 40px 20px 32px; min-height: 0; }
  .hero { min-height: 0; }
  .hero-sub { font-size: 17px; }
  .hero-stats { gap: 24px; }
  .hero-stat-num { font-size: 32px; }
  .svc-grid { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: repeat(4, 1fr); gap: 12px; }
  .work-item-tall, .work-item-wide, .work-item-square, .work-item-thin { grid-column: span 4; aspect-ratio: 4/3; }
  .audit { grid-template-columns: 1fr; }
  .audit-left, .audit-right { padding: 32px 24px; }
  .audit-title { font-size: 36px; }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .price-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .testi { padding: 28px 24px; }
  .testi-text { font-size: 18px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-huge { font-size: 80px; }
  .chat-panel { right: 12px; left: 12px; width: auto; }
}
