:root {
  --bg: #f7fafc;
  --bg-soft: #eef5f9;
  --surface: #ffffff;
  --surface-2: #f9fcfe;
  --text: #071426;
  --muted: #5d6b7a;
  --muted-2: #7f8da0;
  --navy: #0b1d3f;
  --navy-2: #183060;
  --cyan: #009ccc;
  --cyan-2: #2fc4ec;
  --cyan-soft: #e6f7fc;
  --border: #dde7ef;
  --border-strong: #c9d8e5;
  --shadow-sm: 0 2px 8px rgba(15, 34, 58, 0.05);
  --shadow-md: 0 16px 40px rgba(15, 34, 58, 0.10);
  --shadow-lg: 0 28px 70px rgba(15, 34, 58, 0.16);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --container: 1200px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }

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

button, input, textarea, select { font: inherit; }

.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(221, 231, 239, 0.9);
}

.navbar {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  min-width: 150px;
}

.logo-link img { width: 155px; height: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.1rem;
  color: #334155;
  font-size: 0.94rem;
  font-weight: 600;
}

.nav-links a {
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.15rem;
  width: 0;
  height: 2px;
  background: var(--cyan);
  border-radius: 999px;
  transition: width 0.2s ease;
}

.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover, .nav-links a.active { color: var(--navy); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 999px;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 10px;
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle span::before { top: -6px; }
.menu-toggle span::after { top: 6px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-radius: 12px;
  padding: 0.85rem 1.15rem;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.94rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--navy);
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(11, 29, 63, 0.14);
}

.btn-primary:hover { background: #071630; box-shadow: 0 14px 30px rgba(11, 29, 63, 0.20); }

.btn-secondary {
  background: #ffffff;
  color: var(--navy);
  border-color: var(--border-strong);
}

.btn-secondary:hover { border-color: var(--navy-2); box-shadow: var(--shadow-sm); }

.btn-soft {
  background: var(--cyan-soft);
  color: #075c78;
  border-color: rgba(0, 156, 204, 0.16);
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f3f8fc 100%);
  border-bottom: 1px solid var(--border);
}

.hero::before {
  content: "";
  position: absolute;
  inset: -20% -15% auto auto;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(0, 156, 204, 0.12), transparent 65%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(460px, 1.12fr);
  align-items: center;
  gap: 4.2rem;
  padding: 5.7rem 0 4.6rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.85rem;
  background: var(--cyan-soft);
  border: 1px solid rgba(0, 156, 204, 0.12);
  color: #075c78;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  margin-bottom: 1.35rem;
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--cyan);
}

.hero-title {
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  margin: 0 0 1.15rem;
  max-width: 620px;
  font-size: clamp(2.1rem, 4vw, 3.75rem);
  line-height: 1.08;
  letter-spacing: -0.055em;
  color: var(--navy);
}

.hero-copy {
  margin: 0;
  max-width: 560px;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.hero-note {
  margin-top: 1.25rem;
  color: var(--muted-2);
  font-size: 0.9rem;
}

.hero-visual {
  min-height: 390px;
  position: relative;
  isolation: isolate;
  overflow: visible;
}

.hero-visual:hover .browser-frame {
  animation-play-state: paused;
}

.browser-frame {
  position: absolute;
  width: min(78%, 560px);
  height: 310px;
  left: 50%;
  top: 50%;
  background: #ffffff;
  border: 1px solid rgba(201, 216, 229, 0.9);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform-origin: center center;
  will-change: transform, opacity;
  animation: heroStack 15s infinite cubic-bezier(0.22, 0.8, 0.25, 1);
}

.browser-frame::before {
  content: "";
  display: block;
  height: 28px;
  background:
    radial-gradient(circle at 18px 14px, #ff6b6b 0 4px, transparent 4.5px),
    radial-gradient(circle at 34px 14px, #f5c542 0 4px, transparent 4.5px),
    radial-gradient(circle at 50px 14px, #41c981 0 4px, transparent 4.5px),
    linear-gradient(#f9fbfd, #f9fbfd);
  border-bottom: 1px solid rgba(221, 231, 239, 0.9);
}

.browser-frame img {
  display: block;
  width: 100%;
  height: calc(100% - 28px);
  object-fit: cover;
  object-position: top left;
}

.hero-main-frame {
  animation-delay: 0s;
}

.hero-mid-frame {
  animation-delay: -5s;
}

.hero-back-frame {
  animation-delay: -10s;
}

@keyframes heroStack {
  0%, 28% {
    transform: translate(-50%, -50%) translate(0, 38px) scale(1);
    opacity: 1;
    z-index: 3;
  }

  33%, 61% {
    transform: translate(-50%, -50%) translate(120px, -48px) scale(0.84);
    opacity: 0.62;
    z-index: 1;
  }

  66%, 94% {
    transform: translate(-50%, -50%) translate(-120px, -14px) scale(0.88);
    opacity: 0.76;
    z-index: 2;
  }

  100% {
    transform: translate(-50%, -50%) translate(0, 38px) scale(1);
    opacity: 1;
    z-index: 3;
  }
}

.trust-strip {
  background: rgba(255, 255, 255, 0.72);
  border-top: 1px solid rgba(221, 231, 239, 0.8);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  min-height: 78px;
  color: var(--navy);
  font-weight: 750;
  border-right: 1px solid var(--border);
}

.trust-item:last-child { border-right: 0; }

.trust-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: var(--cyan-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
}

.section { padding: 5.6rem 0; }

.section-light { background: #ffffff; }
.section-soft { background: var(--bg-soft); }
.section-navy { background: var(--navy); color: #ffffff; }

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.6rem;
}

.section-kicker {
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
}

.section-title {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  color: var(--navy);
  font-size: clamp(1.9rem, 3vw, 2.65rem);
  line-height: 1.12;
  letter-spacing: -0.045em;
}

.section-navy .section-title { color: #ffffff; }

.section-subtitle {
  margin: 0.85rem 0 0;
  max-width: 640px;
  color: var(--muted);
  font-size: 1rem;
}

.section-navy .section-subtitle { color: rgba(255, 255, 255, 0.72); }

.product-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #ffffff;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.product-tile {
  padding: 1.55rem;
  border-right: 1px solid var(--border);
}

.product-tile:last-child { border-right: 0; }

.product-heading {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  min-height: 110px;
}

.icon-box {
  width: 46px;
  height: 46px;
  border-radius: 15px;
  background: var(--cyan-soft);
  color: var(--cyan);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.product-tile h3 {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: 1.1rem;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.product-tile p {
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.65;
}

.product-image {
  margin-top: 1.25rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: #0b1220;
  aspect-ratio: 16 / 9;
}

.product-image img {
  width: 100%;

  object-fit: cover;
  object-position: top left;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.large-panel {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.large-panel h3, .process-card h3, .event-card h3, .feature-card h3 {
  margin: 0 0 0.7rem;
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  color: var(--navy);
  letter-spacing: -0.025em;
}

.large-panel p, .process-card p, .event-card p, .feature-card p { color: var(--muted); margin: 0; }

.focus-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.4rem;
}

.focus-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: start;
  padding: 1rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 16px;
}

.focus-dot {
  width: 10px;
  height: 10px;
  margin-top: 0.45rem;
  border-radius: 999px;
  background: var(--cyan);
}

.focus-item strong { display: block; color: var(--navy); margin-bottom: 0.15rem; }
.focus-item span { color: var(--muted); font-size: 0.92rem; }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.process-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.3rem;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--navy);
  color: #ffffff;
  font-weight: 800;
  margin-bottom: 1.2rem;
}

.page-hero {
  padding: 4.8rem 0 4.2rem;
  background: linear-gradient(180deg, #ffffff 0%, #f2f7fb 100%);
  border-bottom: 1px solid var(--border);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  align-items: center;
  gap: 3rem;
}

.page-title {
  margin: 0 0 1rem;
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.055em;
  color: var(--navy);
}

.page-copy {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.8;
  max-width: 650px;
}

.page-actions { margin-top: 1.65rem; display: flex; gap: 0.85rem; flex-wrap: wrap; }

.screenshot-panel {
  border-radius: 24px;
  overflow: hidden;
}

.screenshot-panel img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: top left;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.feature-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.45rem;
}

.feature-card .icon-box { margin-bottom: 1rem; }

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: start;
}

.details-list {
  display: grid;
  gap: 0.8rem;
}

.detail-row {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.detail-row strong { color: var(--navy); display: block; margin-bottom: 0.2rem; }
.detail-row span { color: var(--muted); }

.event-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.event-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.4rem;
}

.event-meta {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: var(--cyan-soft);
  color: #075c78;
  font-weight: 800;
  font-size: 0.8rem;
}

.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: var(--navy);
  color: #ffffff;
}

.cta-panel h2 {
  margin: 0 0 0.6rem;
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  letter-spacing: -0.035em;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
}

.cta-panel p { margin: 0; color: rgba(255, 255, 255, 0.72); max-width: 620px; }
.cta-panel .btn-primary { background: #ffffff; color: var(--navy); }
.cta-panel .btn-secondary { background: transparent; color: #ffffff; border-color: rgba(255,255,255,0.28); }

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(420px, 1fr);
  gap: 2rem;
}

.contact-card, .form-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-field { display: grid; gap: 0.45rem; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { color: var(--navy); font-size: 0.88rem; font-weight: 750; }
.form-field input, .form-field textarea, .form-field select {
  width: 100%;
  border: 1px solid var(--border-strong);
  background: #ffffff;
  border-radius: 12px;
  padding: 0.9rem 1rem;
  color: var(--text);
  outline: none;
}
.form-field textarea { min-height: 140px; resize: vertical; }
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { border-color: var(--cyan); box-shadow: 0 0 0 4px rgba(0, 156, 204, 0.10); }

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--navy);
  color: #ffffff;
  padding: 1rem 1.2rem;
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 100;
}
.toast.visible { opacity: 1; transform: translateY(0); }

.site-footer {
  background: #ffffff;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.6fr) repeat(4, minmax(120px, 1fr));
  gap: 2rem;
  padding: 3.2rem 0 2.2rem;
}

.footer-brand img { width: 150px; margin-bottom: 1rem; }
.footer-brand p { margin: 0; color: var(--muted); max-width: 320px; font-size: 0.94rem; }
.footer-col h4 { margin: 0 0 0.85rem; color: var(--navy); font-size: 0.92rem; }
.footer-col a { display: block; color: var(--muted); font-size: 0.9rem; margin: 0.45rem 0; }
.footer-col a:hover { color: var(--cyan); }

.footer-social { display: flex; gap: 0.55rem; margin-top: 1.15rem; }
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--border);
  transition: color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}
.footer-social a:hover { color: var(--cyan); border-color: var(--cyan); transform: translateY(-1px); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0 1.5rem;
  border-top: 1px solid var(--border);
  color: var(--muted-2);
  font-size: 0.86rem;
}

.footer-bottom a { color: var(--muted); margin-left: 1rem; }
.footer-bottom a:hover { color: var(--cyan); }

.legal-content {
  max-width: 860px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
}

.legal-content h2 { color: var(--navy); font-family: "Plus Jakarta Sans", "Inter", sans-serif; letter-spacing: -0.025em; margin-top: 2rem; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li { color: var(--muted); }

@media (max-width: 1040px) {
  .hero-grid, .page-hero-grid, .split-section, .contact-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 2rem; padding: 4.4rem 0 3.6rem; }
  .hero-visual { display:none;}
  .screenshot-panel, .screeshot-panel { display: none; } /* .screeshot-panel: typo'd class on careers.html */
  .hero-main-frame { right: 2%; }
  .product-showcase, .feature-grid, .event-grid { grid-template-columns: 1fr; }
  .product-tile { border-right: 0; border-bottom: 1px solid var(--border); }
  .product-tile:last-child { border-bottom: 0; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .navbar { height: 64px; }
  .logo-link img { width: 138px; }
  /* Full-screen overlay menu. Pure opacity fade with a *delayed* visibility flip:
     show instantly on open, and keep it visible through the fade-out on close, then
     hide. The old code transitioned `visibility` over a duration, which is what made
     the menu flicker / feel stuck mid-transition. */
  .nav-links {
    position: fixed;
    /* The header's backdrop-filter makes it the containing block for this fixed
       element, so `inset: 0` would size to the header, not the screen. Pin to the
       top-left (the header sits at the viewport origin) and size in viewport units. */
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    z-index: 40;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 4px;
    margin: 0;
    padding: 84px 20px 28px;          /* clear the 64px sticky header bar */
    background: #ffffff;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    overflow-y: auto;
    /* Slide down from behind the header. transform is GPU-composited so it stays
       smooth, with an ease-out curve; the visibility flip is delayed until the
       panel has finished sliding back up so it can't disappear mid-animation. */
    transform: translateY(-100%);
    visibility: hidden;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear 0.3s;
  }
  body.nav-open .nav-links {
    transform: translateY(0);
    visibility: visible;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear 0s;
  }
  /* Keep the logo + hamburger above the overlay so the menu stays closeable. */
  .logo-link, .nav-actions { position: relative; z-index: 60; }
  /* Freeze the page behind the open menu so it can't scroll or peek through. */
  body.nav-open { overflow: hidden; }
  .nav-links a { padding: 1rem 0.9rem; border-radius: 12px; font-size: 1.05rem; -webkit-tap-highlight-color: transparent; }
  .nav-links a:hover { background: var(--bg-soft); }

  /* Morph the hamburger into an X while the menu is open (clear close affordance). */
  .menu-toggle span,
  .menu-toggle span::before,
  .menu-toggle span::after { transition: transform 0.2s ease, top 0.2s ease, background 0.2s ease; }
  body.nav-open .menu-toggle span { background: transparent; }
  body.nav-open .menu-toggle span::before { top: 0; transform: rotate(45deg); }
  body.nav-open .menu-toggle span::after  { top: 0; transform: rotate(-45deg); }
  .nav-actions .btn { display: none; }
  .menu-toggle { display: inline-flex; }
  .hero-title { font-size: clamp(2rem, 10vw, 3rem); }
  .hero-visual { min-height: 290px; }
  .hero-main-frame { width: 88%; height: 245px; }
  .hero-mid-frame { width: 68%; height: 205px; }
  .hero-back-frame { width: 64%; height: 185px; top: 70px; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item { min-height: 68px; font-size: 0.9rem; }
  .section { padding: 4.2rem 0; }
  .section-header { display: block; }
  .editorial-grid, .process-grid { grid-template-columns: 1fr; }
  .cta-panel { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .footer-bottom a { margin-left: 0; margin-right: 1rem; }
}

@media (max-width: 520px) {
  .container { width: min(100% - 28px, var(--container)); }
  .hero-grid { padding: 3.6rem 0 3rem; }
  .hero-copy, .page-copy { font-size: 0.98rem; }
  .hero-actions, .page-actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .hero-visual { min-height: 230px; }
  .hero-main-frame { height: 205px; }
  .hero-mid-frame { height: 170px; }
  .hero-back-frame { height: 150px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--border); justify-content: flex-start; padding: 0 1rem; }
  .trust-item:last-child { border-bottom: 0; }
  .large-panel, .contact-card, .form-card, .legal-content { padding: 1.35rem; }
}

/* Mobile: on hero-photo-bg pages (Products / Careers / Community), the hero
   screenshot becomes a faint full-bleed background behind the hero text instead
   of a stacked panel below it. */
@media (max-width: 820px) {
  .hero-photo-bg .page-hero-grid { position: relative; }
  .hero-photo-bg .page-hero-grid > div:first-child { position: relative; z-index: 1; }
  .hero-photo-bg .screenshot-panel {
    position: absolute;
    inset: 0;
    margin: 0;
    border: none;
    border-radius: 0;
    box-shadow: none;
    opacity: 0.12;
    z-index: 0;
    pointer-events: none;
  }
  .hero-photo-bg .screenshot-panel img {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
  }
}

/* ── Image download deterrents ───────────────────────────────────────
   Discourage casual saving of site imagery: blocks drag-to-save, image/text
   selection, and the iOS long-press "Save Image" callout. This is a
   client-side deterrent only — it cannot stop screenshots or someone opening
   the file URL / network tab directly. Paired with handlers in main.js. */
img,
picture,
svg,
video,
.screenshot-panel,
.screeshot-panel {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
