:root {
  --bg: #ffffff;
  --text: #111111;
  --muted: #6a6a6a;
  --faint: #9a9a9a;
  --line: #ececec;
  --soft: #f5f5f5;
  --card: #f7f7f7;
  --dark: #0d0d0d;
  --hero-overlay: rgba(12, 12, 12, 0.42);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --pill: 999px;
  --font: "Geist", "Arimo", system-ui, sans-serif;
  --font-body: "Arimo", system-ui, sans-serif;
  --font-mono: "Chivo Mono", ui-monospace, monospace;
  --max: 1240px;
  --header-h: 72px;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
ul { list-style: none; }
input, textarea, select { font-family: inherit; }

.wrap { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; }
.wrap-wide { width: min(1360px, calc(100% - 32px)); margin: 0 auto; }

.kicker {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.muted { color: var(--muted); }
.faint { color: var(--faint); }

h1, h2, h3, .display {
  font-family: var(--font);
  font-weight: 300;
  letter-spacing: -0.045em;
  line-height: 1.05;
}
.display-xl { font-size: clamp(42px, 6.4vw, 80px); letter-spacing: -0.05em; }
.display-lg { font-size: clamp(36px, 5vw, 64px); }
.display-md { font-size: clamp(28px, 3.6vw, 44px); }
.lede { font-size: 18px; color: var(--muted); max-width: 560px; line-height: 1.55; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 0 28px;
  border-radius: var(--pill);
  font-size: 14px;
  font-weight: 500;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-dark { background: #111; color: #fff; }
.btn-dark:hover { background: #000; }
.btn-light { background: #fff; color: #111; }
.btn-glass {
  background: rgba(255,255,255,0.16);
  color: #fff;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.18);
}
.btn-outline { background: #fff; color: #111; border: 1px solid #e5e5e5; }
.btn-ghost { background: var(--soft); color: #111; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  height: var(--header-h);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled { border-bottom-color: var(--line); }
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1360px, calc(100% - 40px));
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo img {
  display: block;
  height: 28px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  object-position: left center;
}
.logo-footer {
  margin-bottom: 18px;
}
.logo-footer img {
  height: 32px;
  max-width: 160px;
  filter: invert(1);
}
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 22px;
  height: 100%;
}
.nav-desktop .btn { height: 40px; padding: 0 18px; font-size: 13px; }
.nav-item {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 100%;
  font-size: 15px;
  color: #2a2a2a;
  padding: 0;
}
.nav-link svg { opacity: 0.55; }
.menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}

.mega {
  position: absolute;
  top: 100%;
  left: 0;
  right: auto;
  min-width: min(720px, calc(100vw - 48px));
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 22px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease;
  z-index: 90;
}
.mega::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -20px;
  height: 20px;
}
.nav-item:hover .mega,
.nav-item:focus-within .mega,
.nav-item.open .mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}
.mega-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 28px; }
.mega-col h4 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--faint);
  margin-bottom: 10px;
  letter-spacing: 0;
}
.mega-link {
  display: block;
  padding: 10px 10px 10px 0;
  border-radius: 10px;
}
.mega-link strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 2px;
  letter-spacing: -0.02em;
}
.mega-link span { font-size: 13px; color: var(--muted); }
.mega-link:hover strong { text-decoration: underline; }
.mega-foot {
  display: flex;
  gap: 18px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  font-weight: 600;
}
.mega-company {
  min-width: min(520px, calc(100vw - 48px));
  left: auto;
  right: 0;
}
.mega-company .mega-grid { grid-template-columns: 1fr 1fr; }

.mobile-panel {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: #fff;
  overflow: auto;
  padding: 16px 24px 40px;
  z-index: 70;
}
.mobile-panel.open { display: block; }
.mobile-acc { border-bottom: 1px solid var(--line); }
.mobile-acc > button {
  width: 100%;
  text-align: left;
  padding: 16px 0;
  font-size: 18px;
  display: flex;
  justify-content: space-between;
}
.mobile-sub { display: none; padding: 0 0 16px; }
.mobile-acc.open .mobile-sub { display: block; }
.mobile-sub a { display: block; padding: 8px 0; color: var(--muted); }

/* Placeholders */
.ph {
  background:
    linear-gradient(135deg, #2b2b2b 0%, #111 42%, #3a322c 100%);
  position: relative;
  overflow: hidden;
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.ph::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(255,255,255,0.08), transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(180,140,90,0.18), transparent 35%);
}
.ph-label { position: relative; z-index: 1; }
.ph-person {
  background: linear-gradient(160deg, #cfc7bc, #8f8680 40%, #4a4541);
}
.ph-warm { background: linear-gradient(145deg, #d7c4ae, #8a6a52 50%, #2c241f); }
.ph-cool { background: linear-gradient(145deg, #c9d2d6, #5d6b72 50%, #1c2428); }
.ph-studio { background: linear-gradient(145deg, #e8e2d8, #9a8f82 45%, #2a2622); }
.avatar {
  width: 48px; height: 48px; border-radius: 50%;
  flex-shrink: 0;
  object-fit: cover;
}
.avatar.lg { width: 64px; height: 64px; }

/* Hero */
.hero { padding: 12px 0 8px; }
.hero-card {
  position: relative;
  min-height: min(78vh, 760px);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 64px;
}
.hero-card .ph,
.hero-card .hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(20,16,12,0.18), rgba(10,10,10,0.52) 58%);
  pointer-events: none;
}
.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 560px;
  margin-left: auto;
  color: #fff;
}
.hero-copy h1 { color: #fff; margin-bottom: 16px; }
.hero-copy p { color: rgba(255,255,255,0.82); font-size: 18px; margin-bottom: 28px; max-width: 460px; }
.hero-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }

/* Quote / founder */
.quote-sec { padding: 88px 0 40px; }
.quote-top { margin-bottom: 28px; }
.quote-sec h2 {
  color: #e4e4e4;
  font-size: clamp(36px, 5.4vw, 72px);
  max-width: 980px;
  margin-bottom: 40px;
}
.quote-meta { display: flex; align-items: center; gap: 14px; margin-bottom: 56px; }
.quote-meta strong { display: block; font-size: 15px; }
.quote-meta span { font-size: 13px; color: var(--muted); }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; border-top: 1px solid var(--line); padding-top: 28px; }
.stat-num {
  font-family: var(--font);
  font-weight: 300;
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 10px;
}
.stat-label { color: var(--muted); font-size: 15px; max-width: 220px; }

/* Logos */
.logos { padding: 72px 0 40px; text-align: center; }
.logos h2 { margin: 12px auto 10px; max-width: 720px; }
.logos .lede { margin: 0 auto 36px; }
.marquee { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track {
  display: flex; gap: 56px; width: max-content;
  animation: marquee 28s linear infinite;
  padding: 10px 0 30px;
}
.brand-logo {
  font-family: var(--font);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.04em;
  color: #c4c4c4;
  white-space: nowrap;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* Features */
.features { padding: 48px 0 80px; }
.features-head { max-width: 720px; margin-bottom: 36px; }
.features-head h2 { margin: 8px 0 12px; }
.feat-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 22px; }
.feat-tab {
  padding: 10px 16px;
  border-radius: var(--pill);
  background: var(--soft);
  font-size: 14px;
  color: var(--muted);
}
.feat-tab.active { background: #111; color: #fff; }
.feat-panel { display: none; }
.feat-panel.active { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 28px; align-items: center; }
.ui-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 22px;
  min-height: 420px;
  border: 1px solid var(--line);
}
.ui-card h3 { font-size: 22px; font-weight: 400; letter-spacing: -0.03em; margin-bottom: 16px; }
.row {
  display: flex; align-items: center; justify-content: space-between;
  background: #fff; border-radius: 12px; padding: 12px 14px; margin-bottom: 8px;
  font-size: 14px;
}
.row .left { display: flex; align-items: center; gap: 10px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: #111; }
.tag { font-size: 11px; padding: 3px 8px; border-radius: 999px; background: var(--soft); color: var(--muted); }
.tag.ok { background: #eaf6ea; color: #1d6b2a; }
.tag.warn { background: #fff3d6; color: #8a5a00; }
.tag.pending { background: #eee; color: #555; }
.bar-row { margin-bottom: 14px; }
.bar-top { display: flex; justify-content: space-between; font-size: 13px; margin-bottom: 6px; }
.bar { height: 8px; background: #ececec; border-radius: 99px; overflow: hidden; }
.bar > span { display: block; height: 100%; background: #111; border-radius: 99px; }
.feat-copy p { font-size: 18px; color: var(--muted); }

/* Tools */
.tools { padding: 40px 0 80px; }
.tools-head { max-width: 640px; margin-bottom: 32px; }
.tools-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.tool-card {
  background: var(--soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 420px;
  display: flex;
  flex-direction: column;
}
.tool-card .ph { height: 220px; }
.tool-card .body { padding: 22px; }
.tool-card h3 { font-size: 22px; font-weight: 400; margin-bottom: 8px; }

/* Workflows */
.workflows { padding: 20px 0 80px; }
.wf-layout { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 40px; }
.wf-list { display: grid; gap: 18px; }
.wf-item { padding: 18px 0; border-top: 1px solid var(--line); }
.wf-item h3 { font-size: 20px; font-weight: 400; margin-bottom: 6px; }
.wf-visual { border-radius: var(--radius-lg); overflow: hidden; min-height: 520px; }
.wf-visual .ph { height: 100%; min-height: 520px; }

/* Testimonials */
.testimonials { padding: 40px 0 80px; }
.t-head { margin-bottom: 28px; }
.t-slider { position: relative; overflow: hidden; }
.t-track { display: flex; transition: transform 0.4s ease; }
.t-slide { min-width: 100%; }
.t-card { max-width: 820px; }
.t-card blockquote {
  font-family: var(--font);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.25;
  margin: 18px 0 28px;
}
.t-metrics { display: flex; gap: 40px; }
.t-metrics strong {
  display: block;
  font-family: var(--font);
  font-size: 40px;
  font-weight: 300;
  letter-spacing: -0.04em;
}
.t-nav { display: flex; gap: 8px; margin-top: 24px; }
.t-nav button {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--line);
}

/* Case highlight */
.case-hl { padding: 10px 0 80px; }
.case-hl-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  background: var(--soft);
  border-radius: var(--radius-xl);
  overflow: hidden;
  padding: 28px;
}
.case-hl h3 { font-size: clamp(26px, 3vw, 36px); margin: 10px 0 16px; }
.case-stats { display: flex; gap: 32px; margin-top: 28px; }
.case-stats strong { display: block; font-size: 36px; font-weight: 300; font-family: var(--font); }
.case-photo { border-radius: var(--radius-lg); min-height: 360px; }

/* Blog preview */
.blog-prev { padding: 20px 0 80px; }
.blog-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 28px; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.blog-card { display: block; }
.blog-card .ph { height: 220px; border-radius: var(--radius-md); margin-bottom: 14px; }
.blog-card .meta { font-size: 13px; color: var(--muted); margin-bottom: 8px; }
.blog-card h3 { font-size: 22px; font-weight: 400; letter-spacing: -0.03em; margin-bottom: 12px; }
.author { display: flex; align-items: center; gap: 10px; font-size: 14px; }
.author span { color: var(--muted); display: block; font-size: 12px; }

/* CTA */
.cta-band { padding: 0 0 80px; }
.cta-inner {
  background: var(--soft);
  border-radius: var(--radius-xl);
  padding: 48px;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 24px;
  align-items: center;
}
.cta-inner h3 { font-size: 36px; margin-bottom: 10px; }
.cta-points { display: grid; gap: 10px; font-size: 14px; color: var(--muted); }

/* Footer */
.site-footer { background: #111; color: #fff; padding: 64px 0 28px; }
.foot-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.foot-top h3 { font-size: 40px; color: #fff; margin-bottom: 16px; }
.foot-contact a { display: block; color: rgba(255,255,255,0.72); margin-bottom: 6px; }
.foot-col h4 { font-size: 14px; margin-bottom: 12px; color: rgba(255,255,255,0.5); font-weight: 600; letter-spacing: 0; }
.foot-col a { display: block; padding: 5px 0; color: rgba(255,255,255,0.82); font-size: 15px; }
.foot-mid {
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  padding: 22px 0; border-top: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.55); font-size: 14px;
}
.legal-links { display: flex; gap: 18px; }
.foot-legal {
  color: rgba(255,255,255,0.38);
  font-size: 12px;
  line-height: 1.6;
  display: grid;
  gap: 12px;
  padding-top: 18px;
}

/* Inner pages */
.page-hero { padding: 56px 0 28px; }
.page-hero.center { text-align: center; }
.page-hero.center .lede { margin-left: auto; margin-right: auto; }
.page-hero h1 { margin: 8px 0 14px; }
.hero-split { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: end; }
.pricing-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}
.pricing-toggle {
  display: inline-flex;
  align-items: center;
  background: var(--soft);
  border-radius: var(--pill);
  padding: 4px;
  gap: 0;
}
.pricing-toggle button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 16px;
  border-radius: var(--pill);
  font-size: 13px;
  line-height: 1;
  color: var(--muted);
  white-space: nowrap;
}
.pricing-toggle button.active { background: #fff; color: #111; box-shadow: 0 1px 4px rgba(0,0,0,0.06); }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: stretch; margin: 20px 0 64px; }
.price-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  background: #fff;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.price-card.featured { background: #111; color: #fff; }
.price-card.featured h3 { color: #fff; padding-right: 92px; }
.price-card.featured p, .price-card.featured li { color: rgba(255,255,255,0.72); }
.badge {
  position: absolute; top: 18px; right: 18px;
  background: #fff; color: #111; font-size: 11px; padding: 4px 8px; border-radius: 99px; font-weight: 600;
}
.price { font-family: var(--font); font-size: 48px; font-weight: 300; letter-spacing: -0.04em; margin: 12px 0 4px; }
.price-card > .btn,
.price-card > p:has(+ ul) { margin-top: 16px; }
.price-card ul { margin: 20px 0 0; display: grid; gap: 10px; font-size: 14px; flex: 1; }
.price-card li { padding-left: 18px; position: relative; }
.price-card li::before { content: "–"; position: absolute; left: 0; }

.compare { overflow-x: auto; margin-bottom: 72px; }
.compare table { width: 100%; border-collapse: collapse; font-size: 14px; }
.compare th, .compare td { text-align: left; padding: 12px 10px; border-bottom: 1px solid var(--line); vertical-align: middle; }
.compare th { font-weight: 600; }
.compare th:not(:first-child),
.compare td:not(:first-child) { text-align: center; width: 18%; }
.compare .group { font-size: 13px; color: var(--faint); padding-top: 22px; text-align: left; }

.faq-layout { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 32px; padding-bottom: 80px; }
.faq-cta { background: var(--soft); border-radius: var(--radius-lg); padding: 28px; height: fit-content; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item button {
  width: 100%; text-align: left; padding: 18px 0;
  font-size: 16px; font-weight: 600; display: flex; justify-content: space-between; gap: 12px;
}
.faq-item .ans { display: none; padding: 0 0 18px; color: var(--muted); }
.faq-item.open .ans { display: block; }

.about-photo { height: 420px; border-radius: var(--radius-xl); margin: 12px 0 48px; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; padding: 20px 0 60px; }
.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; padding-bottom: 72px; }
.pillar { background: var(--soft); border-radius: var(--radius-md); padding: 22px; }
.awards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; padding-bottom: 72px; }
.award { border: 1px solid var(--line); border-radius: var(--radius-md); padding: 22px; color: var(--muted); }

.job-group { margin-bottom: 28px; }
.job-group h3 { font-size: 18px; margin-bottom: 10px; }
.job {
  display: grid; grid-template-columns: 1.4fr 1fr auto; gap: 12px; align-items: center;
  padding: 16px 0; border-top: 1px solid var(--line);
}
.benefits { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; padding: 20px 0 60px; }
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; padding-bottom: 60px; }

.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; padding: 10px 0 60px; }
.contact-card { background: var(--soft); border-radius: var(--radius-lg); padding: 28px; min-height: 220px; }

.form {
  display: grid; gap: 12px; max-width: 560px;
}
.form label { font-size: 13px; color: var(--muted); }
.form input, .form textarea, .form select {
  width: 100%; border: 1px solid var(--line); border-radius: 12px; padding: 12px 14px; font-size: 15px;
  background: #fff;
}
.form textarea { min-height: 120px; resize: vertical; }
.form-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; padding-bottom: 80px; }

.filters { display: flex; gap: 8px; flex-wrap: wrap; margin: 8px 0 28px; }
.filter {
  padding: 8px 14px; border-radius: var(--pill); background: var(--soft); font-size: 13px; color: var(--muted);
}
.filter.active { background: #111; color: #fff; }

.case-list { display: grid; gap: 16px; padding-bottom: 80px; }
.case-row {
  display: grid; grid-template-columns: 1.4fr 0.6fr auto; gap: 20px; align-items: center;
  background: var(--soft); border-radius: var(--radius-lg); padding: 24px;
}
.article { max-width: 760px; margin: 0 auto; padding-bottom: 64px; }
.article p { margin: 0 0 16px; color: #333; font-size: 17px; }
.article h2 { font-size: 28px; margin: 28px 0 12px; }
.article ul { list-style: disc; padding-left: 20px; margin: 0 0 16px; color: #333; }
.toc { background: var(--soft); border-radius: 16px; padding: 18px; margin: 20px 0 32px; font-size: 14px; }
.legal-doc { max-width: 820px; padding-bottom: 80px; }
.legal-doc h2 { font-size: 22px; margin: 28px 0 10px; }
.legal-doc p, .legal-doc li { color: var(--muted); margin-bottom: 10px; }
.legal-doc ol { padding-left: 18px; }

.product-block { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 36px; align-items: center; padding: 48px 0; }
.product-block.reverse { grid-template-columns: 0.95fr 1.05fr; }
.product-block.reverse .copy { order: 2; }
.compare-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; padding: 20px 0 72px; }
.compare-col { border-radius: var(--radius-lg); padding: 28px; }
.compare-col.old { background: var(--soft); }
.compare-col.new { background: #111; color: #fff; }
.compare-col li { padding: 10px 0; border-bottom: 1px solid rgba(0,0,0,0.06); }
.compare-col.new li { border-bottom-color: rgba(255,255,255,0.1); }

.integrations { display: flex; flex-wrap: wrap; gap: 10px; padding: 10px 0 60px; }
.chip { padding: 10px 16px; border: 1px solid var(--line); border-radius: 99px; font-size: 14px; color: var(--muted); }

.notice { background: #eef8ee; color: #146c2e; padding: 12px 14px; border-radius: 12px; display: none; }
.notice.show { display: block; }

@media (max-width: 980px) {
  .nav-desktop { display: none; }
  .menu-btn { display: flex; }
  .hero-card { padding: 36px 24px; min-height: 640px; }
  .hero-copy { margin: 0; }
  .stats, .feat-panel.active, .tools-grid, .wf-layout, .blog-grid, .cta-inner,
  .foot-top, .price-grid, .faq-layout, .split, .pillars, .awards, .benefits,
  .values, .contact-cards, .product-block, .product-block.reverse, .compare-cols,
  .form-layout, .case-hl-card, .case-row, .job, .hero-split {
    grid-template-columns: 1fr;
  }
  .hero-actions { align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .product-block.reverse .copy { order: 0; }
  .wrap { width: min(var(--max), calc(100% - 28px)); }
}
