:root {
  --bg: #faf3ee;
  --surface: #ffffff;
  --ink: #2b1210;
  --ink-soft: #7a5c50;
  --ink-muted: #a68a7d;
  --border: #e8dcd3;
  --green: #6b1f1f;
  --green-ink: #faf3ee;
  --orange: #a8791f;
  --orange-ink: #2e2005;
  --gold: #a8791f;
  --gold-ink: #2e2005;
  --font-headline: 'Manrope', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-accent: 'Instrument Serif', serif;
}

html[data-theme="dark"] {
  --bg: #1c100d;
  --surface: #2a1815;
  --ink: #f5ece5;
  --ink-soft: #cbb0a4;
  --ink-muted: #96786c;
  --border: #3d2620;
  --green: #a8342f;
  --green-ink: #faf3ee;
  --orange: #d9a94a;
  --orange-ink: #2e2005;
  --gold: #d9a94a;
  --gold-ink: #2e2005;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body, .nav, .service-card, .acc-item, .btn, .marquee, .stats-marquee {
  transition: background-color 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }

.nav {
  position: sticky;
  top: 16px;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 12px 20px 12px 28px;
  max-width: 1220px;
  margin: 16px auto 0;
  background: rgba(245, 244, 238, 0.65);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid rgba(20, 20, 16, 0.08);
  border-radius: 999px;
  box-shadow: 0 4px 24px rgba(20, 20, 16, 0.06);
}

html[data-theme="dark"] .nav {
  background: rgba(22, 22, 19, 0.65);
  border-color: rgba(245, 244, 238, 0.1);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.nav-logo {
  display: flex;
  align-items: center;
  justify-self: start;
}

.nav-logo-img {
  height: 38px;
  width: auto;
  display: block;
}

.logo-for-dark { display: none; }
html[data-theme="dark"] .logo-for-light { display: none; }
html[data-theme="dark"] .logo-for-dark { display: block; }

.nav-links {
  display: flex;
  gap: 36px;
}

.nav-links a {
  font-size: 14px;
  color: var(--ink-soft);
  position: relative;
}

.nav-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-self: end;
}

.lang-select {
  background: transparent;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 12px;
  cursor: pointer;
  appearance: none;
}

.theme-toggle {
  background: transparent;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  color: var(--ink);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.2s ease;
}

.theme-toggle:hover { transform: rotate(-15deg) scale(1.08); border-color: var(--ink-muted); }

.hl-serif {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  background: linear-gradient(transparent 82%, rgba(168, 52, 47, 0.32) 82%);
  padding: 0 0.06em;
}

.btn {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 999px;
  display: inline-block;
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(0.97); }

.btn-neon {
  background: var(--green);
  color: var(--green-ink);
}

.btn-ghost {
  border: 1.5px solid var(--ink);
  color: var(--ink);
}

.btn-large {
  font-size: 16px;
  padding: 16px 32px;
}

.hero {
  max-width: 900px;
  margin: 0 auto;
  padding: 90px 24px 60px;
  text-align: center;
}

.hero-eyebrow {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 24px;
}

.hero-headline {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 64px;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}

.accent-serif {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 400;
  color: var(--orange);
  margin-right: 0.18em;
}

.word-rotator {
  display: inline-block;
  min-width: 1ch;
  transition: transform 0.4s cubic-bezier(0.34, 1.2, 0.64, 1), opacity 0.3s ease;
}

.word-rotator.swap {
  transform: translateY(-12px);
  opacity: 0;
}

.hero-sub {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
}

.marquee {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  margin: 30px 0 50px;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  animation: marquee-scroll 22s linear infinite;
  will-change: transform;
}

.marquee-track span {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
}

.marquee-track .tick { color: var(--orange); font-size: 13px; }

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.section-headline {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 40px;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 44px;
}

.illustration-section {
  max-width: 700px;
  margin: 40px auto 100px;
  padding: 0 24px;
  text-align: center;
}

.line-art {
  width: 260px;
  height: auto;
  margin: 0 auto 24px;
}

.line-art-duo {
  width: 340px;
}

.wave-arm {
  transform-origin: 520px 258px;
  animation: wave 2.6s ease-in-out infinite;
}

@keyframes wave {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(9deg); }
}

.fig-seated {
  transform-origin: 300px 480px;
  animation: bob 3.4s ease-in-out infinite;
}

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.illustration-caption {
  font-size: 15px;
  color: var(--ink-soft);
  margin-bottom: 4px;
}

.illustration-word {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 400;
  font-size: 72px;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.illustration-word.swap {
  opacity: 0;
  transform: translateY(10px);
}

.section-label {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  text-align: center;
  margin-bottom: 20px;
}

.services {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 24px 100px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s ease;
}

.service-card-wide { grid-column: span 2; }

.service-num {
  font-family: var(--font-headline);
  font-weight: 700;
  color: var(--ink-muted);
  font-size: 14px;
}

.service-card h3 {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 22px;
  margin: 12px 0 8px;
  letter-spacing: -0.01em;
}

.service-card p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.55;
}

.hover-lift:hover {
  transform: translateY(-6px);
  border-color: var(--green);
}

.services-allgood {
  max-width: 1180px;
  margin: 0 auto;
  padding: 60px 24px 100px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.services-left {
  position: sticky;
  top: 90px;
}

.services-count {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 28px;
}

.serif-num {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 88px;
  line-height: 1;
  color: var(--ink);
}

.services-count .of {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.section-label.left { text-align: left; }

.services-headline {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 38px;
  letter-spacing: -0.02em;
  line-height: 1.18;
  margin-bottom: 18px;
}

.services-intro {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.65;
  max-width: 380px;
}

.services-list { border-top: 1px solid var(--border); }

.acc-item { border-bottom: 1px solid var(--border); }

.acc-head {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 26px 8px;
  text-align: left;
  color: var(--ink);
}

.acc-num {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 20px;
  color: var(--ink-muted);
  min-width: 34px;
}

.acc-title {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -0.01em;
  flex: 1;
}

.acc-title em {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 400;
}

.acc-icon {
  font-size: 24px;
  color: var(--ink-muted);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.acc-item.open .acc-icon { transform: rotate(45deg); color: var(--orange); }

.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.22, 1, 0.36, 1), padding 0.3s ease;
  padding: 0 8px 0 66px;
}

.acc-item.open .acc-body {
  max-height: 260px;
  padding-bottom: 30px;
}

.acc-body p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: 16px;
}

.acc-hook {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 19px !important;
  color: var(--ink) !important;
  margin-bottom: 12px !important;
}

.acc-item.open .acc-body { max-height: 320px; }

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chips span {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 7px 14px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.chips span:hover { border-color: var(--green); }

.stats-marquee {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 34px 0;
  margin: 40px 0 80px;
  white-space: nowrap;
}

.stats-track { animation-duration: 28s; }

.stat {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.stats-track span.stat-num {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 58px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.stats-track span.stat-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0;
}

.stats-track span.spark {
  color: var(--green);
  font-size: 30px;
  -webkit-text-stroke: 1px var(--ink);
}

html[data-theme="dark"] .cta-marquee { border-top-color: rgba(20, 20, 16, 0.2); }

.showcase {
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px 24px 100px;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}

.showcase-wide { grid-column: span 2; }

.showcase-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.showcase-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.showcase-wide .showcase-img { height: 320px; }

.showcase-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(20, 20, 16, 0.75);
  backdrop-filter: blur(4px);
  color: #f5f4ee;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 999px;
}

.showcase-tag .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.process {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 24px 100px;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.process-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s ease;
}

.process-big {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 74px;
  line-height: 1;
  color: var(--green);
  -webkit-text-stroke: 1.5px var(--ink);
  display: block;
  margin-bottom: 14px;
}

.process-card h3 {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 22px;
  margin-bottom: 8px;
}

.process-card p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.55;
}

.contact-grid-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px 24px 100px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s ease;
}

.contact-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg);
  font-size: 20px;
  margin-bottom: 16px;
}

.contact-card-label {
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 8px;
}

.contact-card-value {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 17px;
}

.contact-card-links {
  display: flex;
  justify-content: center;
  gap: 16px;
}

@media (max-width: 768px) {
  .contact-grid-section { grid-template-columns: 1fr; }
}

.scramble-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 24px 100px;
  text-align: center;
}

.scramble-text {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 34px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  opacity: 0.15;
  transform: translateY(18px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.scramble-text.in-range {
  opacity: 1;
  transform: translateY(0);
}

.scramble-text .sc-hl { color: var(--green); -webkit-text-stroke: 0.5px var(--ink); }

.logos-section {
  padding: 20px 0 90px;
}

.logos-marquee {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 30px 0;
}

.client-logo {
  display: inline-flex;
  align-items: center;
  opacity: 0.75;
  transition: opacity 0.2s ease;
}

.client-logo:hover { opacity: 1; }

.client-logo img {
  height: 32px;
  width: auto;
  filter: grayscale(1);
}

html[data-theme="dark"] .client-logo img { filter: grayscale(1) invert(1); }

.tools-hero-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 40px 24px 100px;
}

.tools-glow-panel {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  padding: 90px 24px 60px;
  text-align: center;
  background:
    radial-gradient(ellipse 90% 70% at 50% 100%, rgba(168, 52, 47, 0.35), transparent 65%),
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(217, 169, 74, 0.18), transparent 70%),
    #0a0d05;
  border: 1px solid rgba(168, 52, 47, 0.25);
  box-shadow: 0 0 80px rgba(168, 52, 47, 0.12);
}

.tools-eyebrow {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 244, 238, 0.55);
  margin-bottom: 14px;
}

.tools-big-headline {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 88px;
  letter-spacing: -0.03em;
  color: var(--green);
  line-height: 1;
  margin-bottom: 20px;
  text-shadow: 0 0 40px rgba(168, 52, 47, 0.5);
}

.tools-sub {
  color: rgba(245, 244, 238, 0.7);
  font-size: 16px;
  max-width: 460px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.tools-pill-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  position: relative;
  z-index: 2;
}

.tool-pill {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: #f5f4ee;
  background: rgba(245, 244, 238, 0.06);
  border: 1px solid rgba(245, 244, 238, 0.18);
  border-radius: 999px;
  padding: 12px 20px;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.tool-pill:hover {
  border-color: var(--green);
  background: rgba(168, 52, 47, 0.12);
  transform: translateY(-3px);
}

.tools-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(245, 244, 238, 0.8);
  background: rgba(20, 20, 16, 0.6);
  border: 1px solid rgba(245, 244, 238, 0.15);
  border-radius: 999px;
  padding: 8px 14px;
  backdrop-filter: blur(6px);
  animation: float-bob 5s ease-in-out infinite;
}

.tf-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.tf-1 { top: 14%; left: 6%; animation-delay: 0s; }
.tf-2 { top: 20%; right: 7%; animation-delay: 1.2s; }
.tf-3 { top: 32%; left: 8%; animation-delay: 2.4s; }

@keyframes float-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.tool-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 8, 0.7);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  padding: 24px;
}

.tool-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.tool-modal {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
  max-width: 480px;
  width: 100%;
  position: relative;
  transform: scale(0.94) translateY(10px);
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.tool-modal-overlay.open .tool-modal {
  transform: scale(1) translateY(0);
}

.tool-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--ink-muted);
  cursor: pointer;
  line-height: 1;
}

.tool-modal-label {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 8px;
}

.tool-modal-title {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 26px;
  margin-bottom: 24px;
}

.tool-modal-logos {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tool-modal-logo-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
}

.tool-modal-logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--ink);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
}

.tool-modal-logo-name {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 15px;
}

@media (max-width: 768px) {
  .tools-big-headline { font-size: 52px; }
  .tools-glow-panel { padding: 60px 20px 40px; }
  .tools-float { display: none; }
}

.products-highlight {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 24px 60px;
}

.products-glow-card {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  padding: 70px 24px;
  text-align: center;
  background:
    radial-gradient(ellipse 90% 65% at 50% 100%, rgba(217, 169, 74, 0.4), transparent 68%),
    #0d0c0a;
  border: 1px solid var(--border);
  border-bottom: 1px solid rgba(217, 169, 74, 0.5);
  box-shadow: 0 0 90px rgba(217, 169, 74, 0.16), 0 0 30px rgba(217, 169, 74, 0.1);
}

.products-glow-card::before {
  content: '';
  position: absolute;
  bottom: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 260px;
  background: radial-gradient(ellipse 60% 100% at 50% 100%, rgba(217, 169, 74, 0.32), transparent 75%);
  pointer-events: none;
}

.products-glow-card::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 200px;
  background: radial-gradient(ellipse 50% 100% at 50% 100%, rgba(217, 169, 74, 0.2), transparent 75%);
  pointer-events: none;
}

.products-glow-card .section-label {
  color: var(--ink-muted);
}

.products-glow-card .section-headline {
  color: var(--ink);
}

.products-sub {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.6;
  max-width: 520px;
  margin: 0 auto 32px;
  position: relative;
}

.products-glow-card .btn-neon {
  position: relative;
  background: var(--orange);
  color: var(--orange-ink);
}

.products-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-soft);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 14px;
  animation: float-bob 5s ease-in-out infinite;
  z-index: 2;
}

.pf-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}

.pf-1 { top: 8%; left: 5%; animation-delay: 0s; }
.pf-2 { top: 14%; right: 6%; animation-delay: 1.4s; }
.pf-3 { bottom: 10%; left: 8%; animation-delay: 2.8s; }

.products-preview-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 760px;
  margin: 0 auto 40px;
  position: relative;
  z-index: 2;
}

.products-preview-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px 18px;
  text-align: left;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s ease;
}

.products-preview-card:hover {
  transform: translateY(-4px);
  border-color: var(--orange);
}

.ppc-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--surface);
  color: var(--orange);
  font-size: 16px;
  margin-bottom: 14px;
}

.ppc-title {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 8px;
  line-height: 1.3;
}

.ppc-tag {
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.products-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.products-cta-arrow {
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.products-cta:hover .products-cta-arrow {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .products-preview-row { grid-template-columns: 1fr; }
  .products-float { display: none; }
}

@media (max-width: 768px) {
  .products-glow-card { padding: 48px 20px; }
}

.cta-perk {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--ink-muted);
  margin-bottom: 28px;
}

.cta-perk .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
}

.founder {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 24px 100px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: center;
}

.founder-photo-wrap {
  border-radius: 24px;
  overflow: hidden;
}

.founder-photo {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.founder-photo-wrap:hover .founder-photo { transform: scale(1.04); }

.founder-headline {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 34px;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 20px;
}

.founder-text {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 28px;
}

.founder-name {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 8px;
}

.founder-name .accent-serif {
  font-size: 26px;
  color: var(--orange);
}

.founder-role {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.metric-section {
  text-align: center;
  padding: 60px 24px 100px;
}

.metric-big {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 140px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.metric-percent { color: var(--orange); }

.metric-caption {
  color: var(--ink-soft);
  font-size: 15px;
  margin-top: 8px;
}

.team {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 24px 100px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.team-card {
  text-align: center;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.team-photo {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 16px;
  object-fit: cover;
  display: block;
  margin-bottom: 14px;
}

.placeholder-photo {
  background: var(--ink);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 32px;
}

.team-card h4 {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 16px;
}

.team-card p {
  color: var(--ink-muted);
  font-size: 14px;
}

.cta-section {
  text-align: center;
  padding: 90px 24px 0;
  background: var(--ink);
  color: var(--bg);
  border-radius: 32px;
  max-width: 1180px;
  margin: 0 auto 40px;
  overflow: hidden;
}

.cta-label {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 20px;
}

.cta-headline {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 52px;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.cta-email-big {
  display: inline-block;
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 28px;
  color: var(--bg);
  text-decoration: none;
  background: linear-gradient(transparent 78%, rgba(168, 52, 47, 0.3) 78%);
  padding: 0 0.1em;
  margin-bottom: 32px;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cta-email-big:hover { transform: translateY(-3px) rotate(-1deg); }

.cta-actions { margin-bottom: 64px; }

.cta-marquee {
  overflow: hidden;
  border-top: 1px solid rgba(245, 244, 238, 0.15);
  padding: 20px 0;
  white-space: nowrap;
}

.cta-track span {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 15px;
  color: var(--bg);
  opacity: 0.8;
}

.cta-track .tick { color: var(--green); opacity: 1; }

.footer {
  max-width: 1180px;
  margin: 0 auto;
  padding: 32px 24px 48px;
  font-size: 14px;
  color: var(--ink-muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border);
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-logo {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 18px;
  color: var(--ink);
}

.footer-tag {
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 300px;
}

.footer-head {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 4px;
}

.footer-col a {
  color: var(--ink-soft);
  font-size: 14px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 13px;
}



.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.in-view {
  opacity: 1;
  transform: none;
}

.hover-warp {
  display: inline-block;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.25s ease;
}

.hover-warp:hover {
  transform: translateY(-3px) rotate(-2deg);
  color: var(--orange);
}

@media (max-width: 900px) {
  .services-allgood { grid-template-columns: 1fr; gap: 40px; }
  .services-left { position: static; }
}

@media (max-width: 768px) {
  .hero-headline { font-size: 40px; }
  .section-headline { font-size: 28px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card-wide { grid-column: span 1; }
  .team-grid { grid-template-columns: 1fr; }
  .metric-big { font-size: 84px; }
  .cta-headline { font-size: 32px; }
  .nav-links { display: none; }
  .founder { grid-template-columns: 1fr; gap: 32px; }
  .founder-headline { font-size: 26px; }
  .acc-title { font-size: 20px; }
  .stats-track span.stat-num { font-size: 40px; }
  .serif-num { font-size: 60px; }
  .process-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .cta-headline { font-size: 34px; }
  .cta-email-big { font-size: 20px; }
}
