:root {
  --brand: #ff6c4d;
  --brand-mid: #ff9a3c;
  --brand-dark: #e85a38;
  --brand-soft: #fff5f0;
  --teal: #0d9488;
  --teal-soft: #f0fdfa;
  --ink: #0f172a;
  --muted: #64748b;
  --line: #e2e8f0;
  --surface: #f8fafc;
  --max: min(100%, 72rem);
  --radius: 1rem;
  --shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.07), 0 12px 24px -4px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 50px -12px rgba(15, 23, 42, 0.15);
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  font-family: "Quicksand", "Segoe UI", Arial, sans-serif;
  font-weight: 500;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
  font-size: 1rem;
}
h1, h2, h3, h4, h5, h6 {
  font-family: "Roboto Slab", Georgia, serif;
  font-weight: 800;
}
p, a, li, button, label { font-family: "Quicksand", "Segoe UI", Arial, sans-serif; }
a { color: var(--brand-dark); }
img { max-width: 100%; height: auto; vertical-align: middle; }
.wrap { max-width: var(--max); margin: 0 auto; padding-left: 1.25rem; padding-right: 1.25rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn:active { transform: scale(0.98); }
.btn-primary {
  background: linear-gradient(180deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #fff !important;
  box-shadow: 0 2px 8px rgba(255, 108, 77, 0.35);
}
.btn-primary:hover { filter: brightness(1.05); }
.btn-ghost {
  background: #fff;
  color: var(--ink) !important;
  border: 1px solid var(--line);
}
.btn-ghost:hover { border-color: var(--brand); color: var(--brand-dark) !important; }

.hero .btn-primary {
  background: #fff !important;
  color: #0f2747 !important;
  box-shadow: 0 4px 14px rgba(15, 39, 71, 0.12);
}
.hero .btn-primary:hover { filter: brightness(0.97); }
.hero .btn-ghost {
  background: rgba(255, 255, 255, 0.12) !important;
  border: 1px solid rgba(255, 255, 255, 0.45) !important;
  color: #fff !important;
}
.hero .btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.85) !important;
  color: #fff !important;
  background: rgba(255, 255, 255, 0.2) !important;
}
.hero-grid { position: relative; }
@keyframes hero-copy-in {
  from { opacity: 0; transform: translateY(-2rem); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes hero-media-in {
  from { opacity: 0; transform: translateX(2.75rem); }
  to   { opacity: 1; transform: translateX(0); }
}
.hero-animate-copy  { opacity: 0; animation: hero-copy-in 0.72s cubic-bezier(0.22, 1, 0.36, 1) 0.04s forwards; }
.hero-animate-media { opacity: 0; animation: hero-media-in 0.78s cubic-bezier(0.22, 1, 0.36, 1) 0.14s forwards; }
@media (prefers-reduced-motion: reduce) {
  .hero-animate-copy, .hero-animate-media { animation: none; opacity: 1; transform: none; }
}
@media (min-width: 1024px) {
  .hero-figure-edge img { aspect-ratio: auto; min-height: min(56vh, 520px); height: 100%; }
}
.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4.5vw, 2.85rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: #fff;
}
.hero-lede {
  margin: 0 0 1.5rem;
  font-size: 1.125rem;
  color: #fff7ed;
  max-width: 44rem;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1.5rem; }
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.88);
}
.hero-meta strong { color: #fff; }
.figure-hero {
  margin: 0;
  display: flex;
  flex-direction: column;
}
.figure-hero img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.hero-figure-edge img { aspect-ratio: 16 / 10; }

section { padding: 4rem 0; }
section.alt { background: var(--surface); }
.section-head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 3rem;
}
.section-head h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}
.section-head p { margin: 0; color: var(--muted); font-size: 1.05rem; }
.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--brand-dark);
  margin-bottom: 0.5rem;
}

.logo-strip {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.logo-strip p {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin: 0 0 1.25rem;
}
.logo-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5rem 2rem;
}
.logo-row img { height: 2rem; width: auto; opacity: 0.85; filter: grayscale(0.2); }

.tri-grid { display: grid; gap: 1.25rem; }
@media (min-width: 560px) { .tri-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .tri-grid { grid-template-columns: repeat(3, 1fr); } }
.feat-card {
  background: #fff;
  border: none;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: none;
}
.feat-card .ph {
  aspect-ratio: 16 / 10;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  border-bottom: none;
}
.feat-card .ph.feat-icon-slot { background: #fff; color: var(--ink); }
.feat-card .ph .feat-lucide {
  width: clamp(4.25rem, 16vmin, 5.75rem);
  height: clamp(4.25rem, 16vmin, 5.75rem);
  flex-shrink: 0;
  color: var(--brand-dark);
}
.feat-card .ph img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 16 / 10; }
.feat-card .body { padding: 1.25rem 1.35rem 1.4rem; text-align: center; }
.feat-card h3 { margin: 0 0 0.5rem; font-size: 1.05rem; font-weight: 700; }
.feat-card p { margin: 0; font-size: 0.94rem; color: var(--muted); }

.zig {
  display: grid;
  gap: 2rem;
  align-items: center;
  margin-bottom: 4rem;
}
.zig:last-child { margin-bottom: 0; }
@media (min-width: 860px) {
  .zig { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .zig.rev .zig-text { order: 2; }
  .zig.rev .zig-media { order: 1; }
}
.zig h3 { margin: 0 0 0.75rem; font-size: 1.35rem; font-weight: 800; letter-spacing: -0.02em; }
.zig p { margin: 0 0 1rem; color: var(--muted); }
.zig ul { margin: 0; padding-left: 1.2rem; color: var(--muted); }
.zig li { margin-bottom: 0.4rem; }
.zig-media {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.zig-media img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }

.use-cases { padding: 0 !important; background: #f1f5f9; }
.use-cases-wrap { display: flex; flex-direction: column; align-items: stretch; }
.use-cases-copy {
  padding-top: 3rem;
  padding-bottom: 1rem;
  text-align: center;
  max-width: 40rem;
}
.use-cases-copy h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.use-cases-copy p {
  margin: 0;
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.65;
}
.use-cases-scroller {
  padding: 1rem 0 2.5rem;
  min-height: min(60vh, 600px);
  display: flex;
  align-items: center;
}
@media (min-width: 960px) {
  .use-cases-scroller { padding: 2rem 0 3rem; min-height: min(72vh, 720px); }
}
.use-scroll-track {
  --use-gap: 1rem;
  display: flex;
  gap: var(--use-gap);
  width: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 1rem;
  padding: 0.75rem 1rem 1.25rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(15, 23, 42, 0.25) transparent;
}
.use-scroll-track::-webkit-scrollbar { height: 7px; }
.use-scroll-track::-webkit-scrollbar-thumb { background: rgba(15, 23, 42, 0.2); border-radius: 999px; }
.use-slide {
  margin: 0;
  flex: 0 0 calc((100% - var(--use-gap)) / 1.5);
  scroll-snap-align: start;
  scroll-snap-stop: always;
}
.use-slide-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 1rem;
  overflow: hidden;
  background: #fff;
  border: none;
  box-shadow: none;
}
.use-slide-media { margin: 0; background: #e2e8f0; }
.use-slide-media img { display: block; width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.use-slide-text { padding: 1.15rem 1.25rem 1.35rem; }
.use-slide-text h3 {
  margin: 0 0 0.45rem;
  font-family: "Roboto Slab", Georgia, serif;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--ink);
}
.use-slide-text p { margin: 0; font-size: 0.92rem; color: var(--muted); line-height: 1.55; }
@media (prefers-reduced-motion: reduce) {
  .use-scroll-track { scroll-snap-type: none; }
  .use-slide { scroll-snap-stop: normal; }
}

.stat-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  max-width: 52rem;
  margin: 0 auto;
}
.stat-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem 1.1rem;
  text-align: center;
}
.stat-card strong {
  display: block;
  font-family: "Roboto Slab", Georgia, serif;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 800;
  color: var(--brand-dark);
  letter-spacing: -0.03em;
  line-height: 1.2;
}
.stat-card span { font-size: 0.8rem; color: var(--muted); display: block; margin-top: 0.35rem; }
.stat-note {
  max-width: 40rem;
  margin: 1.5rem auto 0;
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.5;
}

.bento { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 768px) {
  .bento { grid-template-columns: repeat(3, 1fr); grid-template-rows: auto auto; }
  .bento .wide { grid-column: 1 / 3; grid-row: 1; }
  .bento .tall { grid-column: 3; grid-row: 1 / 3; }
  .bento .b-small-a { grid-column: 1; grid-row: 2; }
  .bento .b-small-b { grid-column: 2; grid-row: 2; }
}
.bento-item {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  background: #fff;
  min-height: 12rem;
  display: flex;
  flex-direction: column;
}
.bento-item .bento-ph {
  flex: 1;
  min-height: 8rem;
  background: linear-gradient(160deg, #fff5f0 0%, #fff 60%);
  position: relative;
}
.bento-item .bento-ph img { width: 100%; height: 100%; min-height: 8rem; object-fit: cover; }
.bento-item .bento-copy { padding: 1.1rem 1.25rem; }
.bento-item h4 { margin: 0 0 0.35rem; font-size: 0.95rem; font-weight: 800; }
.bento-item p { margin: 0; font-size: 0.88rem; color: var(--muted); }

.quote-grid { display: grid; gap: 1.25rem; }
@media (min-width: 700px) { .quote-grid { grid-template-columns: repeat(2, 1fr); } }
.quote {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.quote p { margin: 0 0 1.25rem; font-size: 1.05rem; color: var(--ink); line-height: 1.55; }
.quote-footer { display: flex; align-items: center; gap: 0.85rem; }
.quote-footer img {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--line);
}
.quote-footer .who strong { display: block; font-size: 0.92rem; color: var(--ink); font-family: "Roboto Slab", Georgia, serif; }
.quote-footer .who span { font-size: 0.8rem; color: var(--muted); }

.cta-band {
  margin: 3rem 1.25rem 4rem;
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  padding: 3rem 1.5rem;
  border-radius: 1.25rem;
  background: linear-gradient(135deg, var(--ink) 0%, #1e293b 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255, 108, 77, 0.38) 0%, transparent 45%);
  pointer-events: none;
}
.cta-band .inner { position: relative; z-index: 1; max-width: 36rem; margin: 0 auto; }
.cta-band h2 { margin: 0 0 0.75rem; font-size: clamp(1.35rem, 2.5vw, 1.75rem); font-weight: 800; }
.cta-band p { margin: 0 0 1.25rem; color: rgba(255, 255, 255, 0.82); font-size: 1rem; }
.cta-band .btn-primary { background: #fff; color: var(--ink) !important; box-shadow: none; }
.cta-band .btn-primary:hover { filter: brightness(0.97); }
