:root {
  --bg: #fff6f2;
  --surface: rgba(255,255,255,.84);
  --surface-strong: #ffffff;
  --ink: #172126;
  --muted: #5f6b70;
  --accent: #f15a24;
  --accent-dark: #cf3b0f;
  --accent-2: #ff8a1f;
  --line: rgba(22,33,38,.08);
  --shadow: 0 20px 50px rgba(18,31,34,.1);
  --shadow-soft: 0 14px 30px rgba(18,31,34,.08);
  --maxw: 1180px;
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 14% 12%, rgba(255,138,31,.18), transparent 20%),
    radial-gradient(circle at 88% 18%, rgba(241,90,36,.12), transparent 18%),
    linear-gradient(180deg, #fff9f5 0%, #fff0e8 100%);
  font-family: "Manrope", sans-serif;
  line-height: 1.6;
}
a { color: inherit; }
img { max-width: 100%; display: block; }

.skip-link {
  position: absolute; left: 16px; top: -48px; z-index: 1000;
  padding: 10px 14px; border-radius: 999px; background: #fff; box-shadow: var(--shadow-soft); text-decoration: none;
  transition: top 160ms ease;
}
.skip-link:focus { top: 16px; }
.container { width: min(var(--maxw), calc(100% - 40px)); margin: 0 auto; }
.section { padding: 84px 0; }
.section-alt {
  color: #fff;
  background: linear-gradient(135deg, #172126 0%, #283235 100%);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.section-alt h2,.section-alt h3,.section-alt strong { color: #fff; }
.section-alt p,.section-alt li,.section-alt span { color: rgba(255,255,255,.72); }
.section-alt .eyebrow { color: #ff9d62; }
.section-alt .quote-panel {
  border-color: rgba(255,255,255,.12);
  background: rgba(255,255,255,.055);
  box-shadow: none;
}
.section-alt .quote-panel p { color: rgba(255,255,255,.9); }
.section-alt .quote-panel span { color: rgba(255,255,255,.58); }
.section-alt .integration-logos {
  border-color: rgba(255,255,255,.12);
  background: rgba(255,255,255,.045);
  box-shadow: none;
}
.section-alt .integration-logos span {
  color: var(--ink);
  background: rgba(255,255,255,.95);
  border-color: rgba(255,255,255,.18);
}
.site-header {
  position: sticky; top: 0; z-index: 20; backdrop-filter: blur(18px);
  background: rgba(255,248,244,.76); border-bottom: 1px solid rgba(22,33,38,.06);
}
.header-inner {
  position: relative; min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 18px;
}
.brand {
  display: inline-flex; align-items: center; gap: 12px; text-decoration: none; font-family: "Sora", sans-serif; font-weight: 800; letter-spacing: -.03em;
}
.brand-logo {
  height: 36px;
  width: auto;
  display: block;
}
.brand-mark {
  width: 34px; height: 34px; border-radius: 11px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,188,72,.95) 0 22%, transparent 23%),
    radial-gradient(circle at 68% 34%, #f15a24 0 20%, transparent 21%),
    radial-gradient(circle at 50% 70%, #cf3b0f 0 26%, transparent 27%),
    linear-gradient(135deg, #ff8a1f, #cf3b0f);
  box-shadow: 0 10px 24px rgba(207,59,15,.24);
}
.brand-text { font-size: 1.1rem; }
.site-nav { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; justify-content: center; }
.site-nav a { text-decoration: none; color: var(--muted); font-weight: 700; font-size: .95rem; }
.site-nav a:hover { color: var(--ink); }
.menu-toggle,.site-nav .mobile-nav-cta { display: none; }
.menu-toggle {
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(22,33,38,.1);
  border-radius: 10px;
  background: rgba(255,255,255,.72);
  color: var(--ink);
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}
.menu-toggle span + span { margin-top: 4px; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-6px) rotate(-45deg); }
.menu-toggle:focus-visible,.site-nav a:focus-visible {
  outline: 3px solid rgba(241,90,36,.32);
  outline-offset: 3px;
}
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 18px;
  border-radius: 999px; border: 1px solid transparent; text-decoration: none; font: inherit; font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { color: #fff; background: linear-gradient(135deg, var(--accent), var(--accent-dark)); box-shadow: 0 14px 26px rgba(74,170,44,.24); }
.btn-primary { box-shadow: 0 14px 26px rgba(207,59,15,.24); }
.btn-secondary { color: var(--ink); background: rgba(255,255,255,.85); border-color: rgba(22,33,38,.08); }
.btn-secondary:hover { border-color: rgba(22,33,38,.15); }
.eyebrow { display: inline-flex; margin-bottom: 14px; color: var(--accent-2); text-transform: uppercase; letter-spacing: .14em; font-size: .92rem; font-weight: 800; }
h1,h2,h3 { margin: 0; font-family: "Sora", sans-serif; line-height: 1.08; letter-spacing: -.03em; }
h1 { font-size: clamp(2.7rem, 5.2vw, 4.8rem); max-width: 12ch; }
h2 { font-size: clamp(1.8rem, 3.1vw, 3.0rem); max-width: 22ch; }
h3 { font-size: 1.15rem; }
p { margin: 0; color: var(--muted); }
.lead { font-size: 1.08rem; max-width: 56ch; }
.hero {
  min-height: min(760px, calc(100vh - 82px));
  display: grid;
  align-items: center;
  padding: 96px 0;
  background:
    linear-gradient(90deg, rgba(13,24,29,.9) 0%, rgba(13,24,29,.78) 32%, rgba(13,24,29,.34) 57%, rgba(13,24,29,.08) 100%),
    url("assets/images/contact.webp") center top / cover no-repeat;
}
.hero-grid,.split-grid,.brand-grid,.support-grid { display: grid; gap: 34px; align-items: center; }
.hero-grid { display: block; }
.split-grid,.support-grid { grid-template-columns: 1fr 1fr; }
.reverse-grid > :first-child { order: 2; }
.hero-copy,.section-copy,.support-copy { position: relative; z-index: 1; }
.hero-copy { max-width: 620px; }
.hero h1 { color: #fff; }
.hero .eyebrow { color: #ffad72; }
.hero .lead { max-width: 50ch; color: rgba(255,255,255,.86); }
.btn-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.check-list li { position: relative; padding-left: 28px; }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: .42em; width: 16px; height: 16px; border-radius: 999px;
  background: linear-gradient(135deg, #ffb14c, #cf3b0f); box-shadow: 0 0 0 4px rgba(241,90,36,.12);
}
.section-photo { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.dashboard-card,.feature-panel,.quote-panel,.cta-card,.usecase-card,.benefit-card,.support-panel,.support-contact-card,.logo-wall,.integration-logos {
  border: 1px solid var(--line); border-radius: var(--radius-xl); background: var(--surface); box-shadow: var(--shadow-soft);
}
.product-intro {
  padding: 96px 0;
  background: rgba(255,255,255,.64);
}
.product-intro .container {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
  gap: clamp(44px, 6vw, 84px);
  align-items: center;
}
.product-intro-copy {
  max-width: 480px;
}
.product-intro-copy h2 {
  max-width: 16ch;
}
.product-intro-copy p {
  max-width: 62ch;
  margin-top: 20px;
  font-size: 1.08rem;
}
.product-preview {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid rgba(22,33,38,.1);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(18,31,34,.08);
}
.product-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.dashboard-header { display: flex; justify-content: space-between; gap: 16px; align-items: center; font-size: .86rem; color: var(--muted); font-weight: 700; }
.dashboard-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin: 28px 0 20px; }
.metric { padding: 18px; border-radius: 22px; background: rgba(255,255,255,.78); border: 1px solid rgba(22,33,38,.06); }
.metric strong { display: block; font-family: "Sora", sans-serif; font-size: 2.1rem; line-height: 1; }
.metric span { display: block; margin-top: 8px; color: var(--muted); font-size: .88rem; font-weight: 600; }
.metric.accent { background: linear-gradient(135deg, rgba(255,138,31,.14), rgba(241,90,36,.1)); }
.pipeline { display: flex; gap: 10px; flex-wrap: wrap; }
.pipeline div { display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; font-size: .75rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.pipeline div { padding: 10px 14px; color: var(--accent-dark); background: rgba(241,90,36,.08); }
.section-heading { margin-bottom: 28px; }
.section-heading h2 + p { max-width: 62ch; margin-top: 18px; }
.feature-panel,.cta-card,.quote-panel,.support-panel { padding: 28px; }
.feature-panel h3,.support-panel h2 { margin-bottom: 16px; }
.feature-copy h2 + p,.section-copy h2 + p,.cta-card h2 + p,.how-copy h2 + p { margin-top: 18px; }
.cta-card h2 { max-width: none; font-size: clamp(1.65rem, 2.4vw, 2.35rem); }
.cta-card .btn { margin-top: 24px; }
.check-list { margin: 20px 0 0; padding: 0; list-style: none; display: grid; gap: 14px; }
.check-list.subtle li::before { background: linear-gradient(135deg, rgba(111,203,79,.7), rgba(15,107,103,.7)); }
.check-list.subtle li::before { background: linear-gradient(135deg, rgba(255,177,76,.72), rgba(207,59,15,.72)); }
.feature-split { display: grid; grid-template-columns: .88fr 1.12fr; gap: 32px; align-items: center; }
.how-copy { max-width: 940px; }
.how-copy h2 { max-width: 18ch; }
.how-copy > p { max-width: 76ch; }
.how-copy .check-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 34px;
}
.how-copy + .quote-panel { margin-top: 48px; }
.image-frame { position: relative; min-height: 360px; border-radius: var(--radius-xl); border: 1px solid rgba(22,33,38,.08); background: radial-gradient(circle at 20% 22%, rgba(111,203,79,.18), transparent 24%), radial-gradient(circle at 82% 26%, rgba(15,107,103,.16), transparent 22%), linear-gradient(180deg, #fff, #f4faf4); overflow: hidden; box-shadow: var(--shadow-soft); }
.image-frame-large { min-height: 440px; }
.image-frame .section-photo { position: absolute; inset: 0; }
.grid-lines { position: absolute; inset: 18% 12% 12%; background-image: linear-gradient(rgba(22,33,38,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(22,33,38,.08) 1px, transparent 1px); background-size: 100% 32px, 32px 100%; border-radius: 24px; }
.frame-shape,.frame-circle { position: absolute; border-radius: 28px; background: linear-gradient(135deg, rgba(255,177,76,.18), rgba(241,90,36,.14)); box-shadow: inset 0 0 0 1px rgba(22,33,38,.06); }
.frame-shape { width: 190px; height: 120px; right: 18%; bottom: 18%; }
.frame-circle { width: 200px; height: 200px; right: 16%; top: 16%; border-radius: 50%; }
.quote-panel { margin-top: 22px; background: linear-gradient(135deg, rgba(15,107,103,.08), rgba(111,203,79,.08)); }
.quote-panel { margin-top: 22px; background: linear-gradient(135deg, rgba(255,138,31,.08), rgba(241,90,36,.08)); }
.quote-panel p { font-size: 1.02rem; color: var(--ink); max-width: 60ch; }
.quote-panel div { margin-top: 18px; display: grid; gap: 2px; }
.quote-panel span { color: var(--muted); font-size: .95rem; }
.cta-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.cta-card-dark { background: linear-gradient(135deg, rgba(241,90,36,.96), rgba(207,59,15,.98)); color: #fff; }
.cta-card-dark p,.cta-card-dark .eyebrow { color: rgba(255,255,255,.82); }
.cta-card-dark .btn-secondary { background: rgba(255,255,255,.92); }
.usecase-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.usecase-card,.benefit-card { padding: 24px; }
.usecase-icon { display: inline-flex; margin-bottom: 18px; width: 48px; height: 48px; align-items: center; justify-content: center; border-radius: 16px; background: linear-gradient(135deg, rgba(255,177,76,.16), rgba(241,90,36,.14)); font-family: "Sora", sans-serif; font-weight: 800; color: var(--accent-dark); }
.integration-logos { padding: 28px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.integration-logos span,.logo-wall span { padding: 18px; border-radius: 20px; background: rgba(255,255,255,.74); border: 1px solid rgba(22,33,38,.06); font-weight: 800; }
.integration-logos span {
  display: flex;
  align-items: center;
  gap: 12px;
}
.integration-logos img {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  object-fit: contain;
}
.benefit-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.section-brand .brand-grid { grid-template-columns: 1fr .92fr; }
.logo-wall { padding: 28px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.support-page { padding-top: 68px; }
.support-panel { background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(247,250,247,.92)); }
.support-panel { background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,243,237,.92)); }
.support-contact-card { padding: 22px; display: grid; gap: 18px; margin: 24px 0; }
.support-links { display: flex; gap: 14px; flex-wrap: wrap; }
.support-links a { text-decoration: none; color: var(--accent-2); font-weight: 800; }
.bookings-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
}
.bookings-modal[hidden] {
  display: none !important;
}
.bookings-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(23,33,38,.54);
  backdrop-filter: blur(6px);
}
.bookings-dialog {
  position: relative;
  z-index: 1;
  width: min(1040px, 100%);
  max-height: min(88vh, 940px);
  display: grid;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255,250,246,.98);
  box-shadow: var(--shadow);
}
.bookings-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}
.bookings-close {
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: rgba(22,33,38,.06);
  color: var(--ink);
  font: inherit;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}
.bookings-frame-wrap {
  min-height: 70vh;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(22,33,38,.08);
  background: #fff;
}
.bookings-frame {
  width: 100%;
  height: 100%;
  min-height: 70vh;
  border: 0;
  background: #fff;
}
.bookings-fallback {
  font-size: .95rem;
}
.bookings-fallback a {
  color: var(--accent-dark);
  font-weight: 800;
}
.site-footer { padding: 30px 0 44px; border-top: 1px solid rgba(22,33,38,.08); background: rgba(255,255,255,.58); }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 20px; }
.footer-brand { margin-bottom: 10px; }
.footer-grid h3 { margin-bottom: 14px; font-size: 1rem; }
.footer-grid a { text-decoration: none; }
.reveal { animation: fadeUp 700ms ease both; }
.delay-1 { animation-delay: 120ms; }
.delay-2 { animation-delay: 240ms; }
.delay-3 { animation-delay: 360ms; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
@media (max-width: 1040px) {
  .split-grid,.support-grid,.section-brand .brand-grid,.footer-grid,.cta-grid,.feature-split { grid-template-columns: 1fr; }
  .reverse-grid > :first-child { order: 0; }
  .usecase-grid,.benefit-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 820px) {
  .site-header { position: sticky; }
  .header-inner { min-height: 70px; flex-wrap: nowrap; padding: 10px 0; }
  .brand-logo { height: 32px; }
  .menu-toggle { display: block; margin-left: auto; }
  .header-cta { display: none; }
  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    width: 100%;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 4px;
    padding: 12px;
    border: 1px solid rgba(22,33,38,.1);
    border-radius: 0 0 14px 14px;
    background: rgba(255,250,247,.98);
    box-shadow: 0 18px 36px rgba(18,31,34,.14);
    backdrop-filter: blur(18px);
  }
  .site-nav.is-open { display: flex; }
  .site-nav > a:not(.btn) {
    padding: 11px 10px;
    border-radius: 8px;
  }
  .site-nav > a:not(.btn):hover { background: rgba(22,33,38,.05); }
  .site-nav .mobile-nav-cta {
    display: inline-flex;
    width: 100%;
    margin-top: 6px;
    color: #fff;
  }
  .section.hero {
    min-height: 680px;
    padding: 84px 0;
    background:
      linear-gradient(90deg, rgba(13,24,29,.92) 0%, rgba(13,24,29,.78) 48%, rgba(13,24,29,.26) 100%),
      url("assets/images/contact.webp") 56% top / cover no-repeat;
  }
  .section { padding: 68px 0; }
  .product-intro { padding: 76px 0; }
  .product-intro .container {
    grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
    gap: 32px;
  }
  .product-intro-copy h2 { font-size: clamp(1.75rem, 4vw, 2.35rem); }
  .product-intro-copy p { font-size: 1rem; }
  .how-copy .check-list { grid-template-columns: 1fr; gap: 14px; }
  .usecase-grid,.benefit-grid,.integration-logos,.logo-wall { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .container { width: min(var(--maxw), calc(100% - 28px)); }
  .btn-row,.support-links { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .menu-toggle { width: 44px; }
  .bookings-modal { padding: 12px; }
  .bookings-dialog { padding: 16px; max-height: 92vh; }
  .bookings-header { gap: 12px; }
  .bookings-frame-wrap,.bookings-frame { min-height: 62vh; }
  .section.hero {
    min-height: 640px;
    background:
      linear-gradient(180deg, rgba(13,24,29,.82) 0%, rgba(13,24,29,.58) 58%, rgba(13,24,29,.78) 100%),
      url("assets/images/contact.webp") 58% top / cover no-repeat;
  }
  .hero h1 { max-width: 10ch; }
  .product-intro .container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .product-preview {
    aspect-ratio: 4 / 3;
    border-radius: 16px;
  }
}
