/*
 * Corta marketing surface styles.
 *
 * All rules prefixed with `.marketing-*` or scoped to the marketing layout.
 * Loaded only on public marketing routes via public_site.php, after styles.css.
 *
 * Display + UI font: Manrope (defined on body in styles.css).
 * Palette tokens live in :root below; bespoke gradient stops stay as literals.
 */

:root {
  --marketing-dark: #173354;
  --marketing-dark-alt: #08131f;
  --marketing-ink: #152540;
  --marketing-ink-inverse: #ffffff;
  --marketing-muted: #4f627c;
  --marketing-surface: #f5f8fd;
  --marketing-surface-alt: #f5f8ff;
  --marketing-accent: #214b80;
}

.marketing-html {
  min-height: 100%;
  scroll-behavior: smooth;
}

.marketing-page {
  min-height: 100vh;
  min-height: 100svh;
  background:
    radial-gradient(circle at 14% 10%, rgba(100, 143, 205, 0.18), transparent 24%),
    radial-gradient(circle at 82% 16%, rgba(22, 61, 110, 0.12), transparent 26%),
    linear-gradient(180deg, #ebf1f8 0%, #f6f8fb 44%, #eaf0f8 100%);
  color: var(--marketing-ink);
  overflow-x: hidden;
}

.marketing-page::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(21, 37, 64, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 37, 64, 0.03) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.16), transparent 76%);
  opacity: 0.22;
}

.marketing-page .button-primary,
.marketing-page .button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.marketing-page .button-secondary {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(19, 49, 92, 0.12);
  color: var(--marketing-dark);
}

.marketing-page .button-secondary:hover,
.marketing-page .button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.94);
  color: #102544;
}

.marketing-site {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 20px 0 48px;
  position: relative;
  z-index: 1;
}

.marketing-header {
  position: sticky;
  top: 18px;
  z-index: 22;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 14px 18px;
  border: 1px solid rgba(19, 49, 92, 0.1);
  border-radius: 26px;
  background: rgba(247, 250, 255, 0.76);
  box-shadow:
    0 16px 34px rgba(11, 24, 49, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(16px) saturate(135%);
  -webkit-backdrop-filter: blur(16px) saturate(135%);
}

.marketing-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.marketing-brand-mark {
  width: 44px;
  flex: 0 0 auto;
}

.marketing-brand-wordmark {
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.marketing-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: var(--marketing-muted);
  font-size: 0.95rem;
}

.marketing-nav a {
  position: relative;
  padding-bottom: 4px;
}

.marketing-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(34, 84, 150, 0.4);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.marketing-nav a:hover::after,
.marketing-nav a:focus-visible::after {
  transform: scaleX(1);
}

.marketing-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.marketing-locale-toggle {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(19, 49, 92, 0.08);
}

.marketing-locale-toggle-link {
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--marketing-muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  text-decoration: none;
  transition: background-color 160ms ease, color 160ms ease;
}

.marketing-locale-toggle-link:hover,
.marketing-locale-toggle-link:focus-visible {
  color: var(--marketing-dark);
  background: rgba(255, 255, 255, 0.82);
}

.marketing-locale-toggle-link:focus-visible {
  outline: 2px solid rgba(34, 84, 150, 0.4);
  outline-offset: 1px;
}

.marketing-locale-toggle-link.is-active {
  background: var(--marketing-dark);
  color: var(--marketing-ink-inverse);
}

.marketing-header-link {
  color: #355271;
  font-weight: 700;
}

.marketing-login-button {
  white-space: nowrap;
}

.marketing-menu-toggle {
  display: none;
  border: 1px solid rgba(19, 49, 92, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--marketing-dark);
  padding: 0.7rem 1rem;
  font-weight: 800;
  cursor: pointer;
}

.marketing-flash-wrap {
  margin-top: 20px;
}

.marketing-main,
.marketing-main-contact {
  display: grid;
  gap: 24px;
}

.marketing-main {
  padding-top: 24px;
  gap: 0;
  grid-template-columns: minmax(0, 1fr);
}

.marketing-section {
  position: relative;
  padding-block: clamp(26px, 4vw, 56px);
}

.marketing-main > .marketing-section {
  padding-block: clamp(28px, 3.8vw, 52px);
}

.marketing-story-section {
  position: relative;
  margin-inline: calc(50% - 50vw);
  padding-inline: calc(50vw - 50%);
  color: #f6f8fc;
  background:
    radial-gradient(circle at 18% 24%, rgba(74, 139, 223, 0.2), transparent 34%),
    radial-gradient(circle at 82% 76%, rgba(86, 125, 179, 0.16), transparent 28%),
    linear-gradient(180deg, #08111d 0%, #091522 44%, #060c15 100%);
}

.marketing-story-section > * {
  position: relative;
}

.marketing-story-section::after {
  content: "";
  position: absolute;
  inset: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.marketing-story-section .marketing-section-heading {
  max-width: 52rem;
  margin-bottom: clamp(22px, 3.2vw, 40px);
}

.marketing-story-section .marketing-eyebrow,
.marketing-story-section .marketing-kicker {
  background: rgba(255, 255, 255, 0.08);
  color: #d8e5fa;
}

.marketing-story-section .marketing-section-heading h2 {
  max-width: 10ch;
  color: var(--marketing-ink-inverse);
  font-size: clamp(2.85rem, 5vw, 4.9rem);
}

.marketing-story-section .marketing-section-copy {
  max-width: 34rem;
  color: rgba(225, 234, 245, 0.72);
}

.marketing-hero {
  position: relative;
  isolation: isolate;
  min-height: calc(82vh - 140px);
  min-height: calc(82svh - 140px);
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  align-items: center;
  gap: clamp(40px, 6vw, 86px);
  padding: clamp(36px, 5.5vw, 68px) 0 clamp(26px, 3.4vw, 44px);
  color: var(--marketing-surface);
}

.marketing-hero::before {
  content: "";
  position: absolute;
  inset: 0 calc(50% - 50vw);
  z-index: -2;
  background:
    radial-gradient(circle at 17% 24%, rgba(85, 137, 214, 0.26), transparent 26%),
    radial-gradient(circle at 80% 18%, rgba(110, 154, 217, 0.16), transparent 24%),
    linear-gradient(180deg, #08111d 0%, #0a1522 54%, #08131f 100%);
}

.marketing-hero::after {
  content: "";
  position: absolute;
  inset: 16px calc(50% - 50vw) 0;
  z-index: -1;
  pointer-events: none;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.marketing-hero-copy {
  max-width: min(100%, 44rem);
}

.marketing-hero .marketing-eyebrow {
  background: rgba(255, 255, 255, 0.08);
  color: #d7e7ff;
}

.marketing-eyebrow,
.marketing-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(19, 49, 92, 0.08);
  color: var(--marketing-accent);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.marketing-hero h1,
.marketing-section-heading h2,
.marketing-contact-hero h1,
.marketing-final-copy h2 {
  margin: 16px 0 0;
  font-family: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.02;
  text-wrap: balance;
}

.marketing-hero h1 {
  color: var(--marketing-ink-inverse);
  font-size: clamp(3.5rem, 5.8vw, 6.4rem);
  max-width: 10.4ch;
}

.marketing-section-heading h2,
.marketing-contact-hero h1 {
  font-size: clamp(2.4rem, 4.2vw, 4rem);
  max-width: 13.2ch;
}

.marketing-final-copy h2 {
  font-size: clamp(2.3rem, 4.2vw, 3.6rem);
}

.marketing-hero-body,
.marketing-section-copy,
.marketing-contact-card p,
.marketing-notes-list p,
.marketing-story-copy p,
.marketing-footer p {
  max-width: 42ch;
  color: var(--marketing-muted);
  font-size: 1.05rem;
  line-height: 1.72;
}

.marketing-hero-body {
  max-width: 36ch;
  color: rgba(226, 235, 246, 0.74);
}

.marketing-hero-actions,
.marketing-final-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.marketing-hero-visual {
  position: relative;
  min-height: clamp(520px, 74svh, 820px);
}

.marketing-hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(12px);
}

.marketing-hero-glow-left {
  inset: 18% auto auto -2%;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(90, 154, 233, 0.35), rgba(90, 154, 233, 0));
  animation: marketingGlowShift 10s ease-in-out infinite;
}

.marketing-hero-glow-right {
  inset: auto 0 10% auto;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(19, 49, 92, 0.24), rgba(19, 49, 92, 0));
  animation: marketingGlowShift 12s ease-in-out infinite reverse;
}

.marketing-device {
  position: absolute;
  overflow: visible;
  border-radius: 34px;
  background: transparent;
  border: none;
  box-shadow: none;
}

.marketing-device img,
.marketing-story-visual img {
  width: 100%;
  height: auto;
  display: block;
}

.marketing-device img {
  border-radius: 18px;
  box-shadow: 0 34px 82px rgba(2, 8, 18, 0.32);
}

.marketing-device-main {
  left: 0;
  top: 108px;
  width: min(100%, 780px);
  transform: rotate(-3deg);
  animation: marketingFloatMain 11s ease-in-out infinite;
}

.marketing-device-float {
  right: 18px;
  top: 36px;
  width: min(41%, 292px);
  transform: rotate(5deg);
  animation: marketingFloatSide 9s ease-in-out infinite;
}

.marketing-pricing-grid,
.marketing-contact-grid {
  display: grid;
  gap: 18px;
}

.marketing-pricing-grid,
.marketing-contact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.marketing-contact-card,
.marketing-notes-list article {
  padding: 24px;
  border-radius: 30px;
  border: 1px solid rgba(19, 49, 92, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.7)),
    linear-gradient(135deg, rgba(77, 146, 233, 0.05), transparent 50%);
  box-shadow: 0 18px 42px rgba(11, 24, 49, 0.08);
}

.marketing-contact-card h2,
.marketing-story-copy h3,
.marketing-pricing-card h3,
.marketing-notes-list h3 {
  margin: 14px 0 8px;
  font-size: 1.35rem;
  line-height: 1.15;
  text-wrap: balance;
}

.marketing-story-stage {
  display: grid;
  grid-template-columns: minmax(156px, 196px) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 72px);
  align-items: start;
}

.marketing-story-tabs {
  position: sticky;
  top: 124px;
  display: grid;
  gap: 6px;
  align-self: start;
  padding: 18px 0 18px 18px;
}

.marketing-story-tabs::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.05));
}

.marketing-story-tab {
  position: relative;
  border: none;
  border-radius: 0;
  background: transparent;
  color: rgba(226, 233, 244, 0.52);
  padding: 10px 0 10px 18px;
  text-align: left;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  cursor: pointer;
  transition:
    color 180ms ease,
    opacity 180ms ease;
}

.marketing-story-tab::before {
  content: "";
  position: absolute;
  left: -18px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  opacity: 0.38;
  transition:
    background 180ms ease,
    opacity 180ms ease;
}

.marketing-story-tab:hover,
.marketing-story-tab:focus-visible {
  color: rgba(255, 255, 255, 0.78);
}

.marketing-story-tab.is-active {
  color: var(--marketing-ink-inverse);
}

.marketing-story-tab.is-active::before {
  background: linear-gradient(180deg, #7ab8ff, #ffffff);
  opacity: 1;
}

.marketing-story-panels {
  display: grid;
  gap: clamp(24px, 4vw, 64px);
  min-width: 0;
}

.marketing-story-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.05fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  min-height: clamp(460px, 68svh, 680px);
  padding: clamp(28px, 4vw, 54px);
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 72% 24%, rgba(76, 129, 198, 0.22), transparent 26%),
    linear-gradient(180deg, rgba(17, 27, 44, 0.96), rgba(8, 14, 25, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 34px 80px rgba(2, 8, 18, 0.38);
  opacity: 0.56;
  scroll-margin-top: 136px;
  overflow: hidden;
  transition:
    opacity 260ms ease,
    transform 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease,
    background 260ms ease;
  transform: scale(0.988);
}

.marketing-story-panel.is-active {
  opacity: 1;
  transform: scale(1);
  border-color: rgba(166, 194, 235, 0.28);
  background:
    radial-gradient(circle at 74% 22%, rgba(103, 163, 236, 0.28), transparent 28%),
    linear-gradient(180deg, rgba(20, 33, 54, 0.98), rgba(8, 14, 25, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 40px 88px rgba(2, 8, 18, 0.44);
}

.marketing-story-panel::before {
  content: "";
  position: absolute;
  inset: auto auto -24% -12%;
  width: 44%;
  aspect-ratio: 1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(123, 184, 255, 0.14), transparent 68%);
  pointer-events: none;
}

.marketing-story-panel[data-marketing-lane-panel="field"]::before {
  background: radial-gradient(circle, rgba(122, 182, 159, 0.18), transparent 68%);
}

.marketing-story-panel[data-marketing-lane-panel="admin"]::before {
  background: radial-gradient(circle, rgba(154, 172, 214, 0.16), transparent 68%);
}

.marketing-story-copy {
  position: relative;
  z-index: 1;
  max-width: 32rem;
  align-self: end;
  min-width: 0;
}

.marketing-story-copy .marketing-kicker {
  margin-bottom: 14px;
}

.marketing-story-copy h3 {
  margin-top: 0;
  margin-bottom: 16px;
  color: var(--marketing-ink-inverse);
  font-size: clamp(1.85rem, 2.95vw, 3rem);
  line-height: 1.02;
  max-width: 16ch;
  overflow-wrap: break-word;
  hyphens: auto;
}

.marketing-story-copy p {
  color: rgba(226, 234, 245, 0.74);
}

.marketing-story-copy ul {
  margin-top: 24px;
  padding-left: 0;
  list-style: none;
  color: rgba(239, 243, 248, 0.9);
}

.marketing-story-copy li {
  position: relative;
  padding-left: 20px;
}

.marketing-story-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(210, 228, 255, 0.88);
}

.marketing-story-visual {
  position: relative;
  display: grid;
  place-items: center;
  align-self: stretch;
  min-height: clamp(320px, 60svh, 680px);
  padding: clamp(6px, 1.2vw, 18px);
}

.marketing-story-visual img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 18px;
  box-shadow: 0 28px 64px rgba(2, 8, 18, 0.24);
  transform: translate3d(0, 16px, 0) scale(0.98);
  transition: transform 500ms ease, box-shadow 500ms ease;
}

.marketing-story-panel.is-active .marketing-story-visual img {
  transform: translate3d(0, 0, 0) scale(1);
  box-shadow: 0 32px 76px rgba(2, 8, 18, 0.3);
}

.marketing-pricing-card ul {
  margin: 18px 0 0;
  padding-left: 18px;
  color: #38506a;
  display: grid;
  gap: 10px;
}

.marketing-pricing-card {
  position: relative;
  padding: 30px;
  border-radius: 32px;
  border: 1px solid rgba(19, 49, 92, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.4)),
    linear-gradient(135deg, rgba(95, 145, 214, 0.06), transparent 55%);
  box-shadow: 0 24px 54px rgba(11, 24, 49, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  filter: none;
  opacity: 1;
}

.marketing-pricing-head {
  margin-bottom: 14px;
}

.marketing-pricing-blur {
  display: inline-block;
  margin: 10px 0 0;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  filter: blur(6px);
  user-select: none;
}

.marketing-pricing-lock {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  color: #50647f;
  font-size: 0.9rem;
  font-weight: 800;
}

.marketing-contact-notes {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 0.86fr);
  gap: clamp(28px, 5vw, 84px);
  align-items: start;
}

.marketing-final-section {
  position: relative;
  isolation: isolate;
  margin-inline: calc(50% - 50vw);
  padding-inline: calc(50vw - 50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(20px, 2.5vw, 32px);
  overflow: hidden;
}

.marketing-final-copy {
  position: relative;
  z-index: 1;
  max-width: 44rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(14px, 1.6vw, 22px);
}

.marketing-final-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 18%, rgba(88, 148, 223, 0.22), transparent 32%),
    linear-gradient(180deg, #061020 0%, #0d2147 58%, #07111f 100%);
}

.marketing-final-section .marketing-eyebrow,
.marketing-final-section .marketing-kicker {
  background: rgba(255, 255, 255, 0.10);
  color: rgba(232, 242, 255, 0.94);
}

.marketing-final-section h2,
.marketing-final-section p,
.marketing-final-section .marketing-section-copy {
  color: var(--marketing-surface-alt);
  margin: 0;
}

.marketing-final-section h2 {
  max-width: 18ch;
  font-size: clamp(2.55rem, 4vw, 3.8rem);
  text-wrap: balance;
}

.marketing-final-section .marketing-section-copy {
  max-width: 38rem;
  color: rgba(225, 235, 248, 0.82);
  line-height: 1.65;
}

.marketing-final-actions {
  position: relative;
  z-index: 1;
  justify-content: center;
  margin-top: clamp(4px, 1vw, 12px);
}

.marketing-final-section .button-secondary {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--marketing-surface-alt);
}

.marketing-contact-hero {
  padding-top: 42px;
}

.marketing-notes-list {
  display: grid;
  gap: 16px;
}

.marketing-footer {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin: 0 calc(50% - 50vw);
  padding: 38px calc(50vw - 50%) 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(225, 234, 245, 0.76);
  background: linear-gradient(180deg, #08111d 0%, #08131f 100%);
}

.marketing-footer > * {
  position: relative;
}

.marketing-footer strong {
  display: block;
  margin-bottom: 8px;
  color: var(--marketing-surface-alt);
}

.marketing-footer-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: rgba(225, 234, 245, 0.76);
}

.marketing-footer a,
.marketing-footer p {
  color: inherit;
}

[data-marketing-reveal] {
  opacity: 1;
  transform: none;
  transition:
    opacity 520ms ease,
    transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

[data-marketing-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes marketingFloatMain {
  0%,
  100% {
    transform: rotate(-4deg) translateY(0);
  }

  50% {
    transform: rotate(-2deg) translateY(-12px);
  }
}

@keyframes marketingFloatSide {
  0%,
  100% {
    transform: rotate(7deg) translateY(0);
  }

  50% {
    transform: rotate(4deg) translateY(10px);
  }
}

@keyframes marketingGlowShift {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.08);
    opacity: 0.72;
  }
}

@media (max-width: 1080px) {
  .marketing-header {
    grid-template-columns: auto auto;
    grid-template-areas:
      "brand actions"
      "nav nav";
    align-items: start;
  }

  .marketing-brand {
    grid-area: brand;
  }

  .marketing-header-actions {
    grid-area: actions;
  }

  .marketing-nav {
    grid-area: nav;
    justify-content: flex-start;
    padding-top: 8px;
  }

  .marketing-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .marketing-hero-visual {
    min-height: 560px;
  }

  .marketing-story-stage {
    grid-template-columns: 1fr;
  }

  .marketing-story-tabs {
    position: static;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    padding: 0 0 14px;
  }

  .marketing-story-tabs::before {
    left: 0;
    right: 0;
    top: auto;
    bottom: 0;
    width: auto;
    height: 1px;
  }

  .marketing-story-panel {
    grid-template-columns: 1fr;
    min-height: clamp(480px, 68svh, 680px);
  }

  .marketing-story-tab {
    padding: 0 0 16px;
  }

  .marketing-story-tab::before {
    left: 0;
    right: 0;
    top: auto;
    bottom: -14px;
    width: auto;
    height: 2px;
  }

  .marketing-story-copy {
    max-width: 34rem;
    align-self: start;
  }

  .marketing-story-visual {
    min-height: 420px;
  }
}

@media (max-width: 900px) {
  .marketing-pricing-grid,
  .marketing-contact-grid,
  .marketing-contact-notes {
    grid-template-columns: 1fr;
  }

  .marketing-hero-visual {
    min-height: 480px;
  }

  .marketing-device-main {
    width: min(100%, 640px);
  }

  .marketing-device-float {
    width: min(52%, 300px);
  }

  .marketing-story-tabs {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 18px 0 18px 18px;
  }

  .marketing-story-tabs::before {
    left: 0;
    right: auto;
    top: 0;
    bottom: 0;
    width: 1px;
    height: auto;
  }

  .marketing-story-tab {
    padding: 10px 0 10px 18px;
  }

  .marketing-story-tab::before {
    left: -18px;
    right: auto;
    top: 6px;
    bottom: 6px;
    width: 2px;
    height: auto;
  }

  .marketing-story-panel {
    min-height: auto;
    padding: 30px;
    scroll-margin-top: 108px;
  }

  .marketing-story-visual {
    min-height: 320px;
    border-radius: 18px;
  }
}

@media (max-width: 767px) {
  .marketing-site {
    width: min(100%, calc(100% - 24px));
    padding-top: 14px;
  }

  .marketing-header {
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "brand toggle"
      "actions actions"
      "nav nav";
    padding: 14px;
  }

  .marketing-menu-toggle {
    display: inline-flex;
    grid-area: toggle;
    justify-self: end;
  }

  .marketing-header-actions {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .marketing-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .marketing-site.is-menu-open .marketing-nav {
    display: flex;
  }

  .marketing-hero {
    padding-top: 26px;
  }

  .marketing-hero h1 {
    font-size: clamp(2.25rem, 9.2vw, 2.9rem);
    max-width: 100%;
  }

  .marketing-hero-visual {
    min-height: 360px;
  }

  .marketing-device-main {
    top: 72px;
    transform: rotate(-2deg);
  }

  .marketing-device-float {
    width: min(56%, 228px);
    transform: rotate(5deg);
  }

  .marketing-final-copy {
    padding-left: 0;
  }

  .marketing-final-section h2 {
    max-width: 14ch;
    font-size: clamp(2.3rem, 8vw, 3.2rem);
  }

  .marketing-final-actions {
    justify-content: center;
    flex-wrap: wrap;
  }

  .marketing-story-section {
    padding: 46px 0 54px;
  }

  .marketing-story-section::after {
    inset: 12px calc(50% - 50vw) 12px;
  }

  .marketing-story-section .marketing-section-heading h2 {
    font-size: clamp(2.5rem, 11vw, 3.6rem);
  }

  .marketing-story-copy h3 {
    font-size: clamp(1.75rem, 8vw, 2.6rem);
    max-width: 14ch;
    overflow-wrap: break-word;
    hyphens: auto;
  }

  .marketing-story-panel {
    padding: 24px;
    border-radius: 28px;
  }

  .marketing-story-visual {
    min-height: 260px;
    border-radius: 14px;
  }

  .marketing-footer {
    flex-direction: column;
  }

  .marketing-footer-links {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .marketing-html {
    scroll-behavior: auto;
  }

  [data-marketing-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .marketing-hero-glow-left,
  .marketing-hero-glow-right,
  .marketing-device-main,
  .marketing-device-float {
    animation: none;
  }

  .marketing-story-tab {
    transition: none;
  }

  .marketing-story-panel {
    transition: none;
  }

  .marketing-story-visual img {
    transition: none;
  }
}

.marketing-site-home .marketing-main > section[id] {
  scroll-margin-top: 132px;
}

.marketing-utility-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 16px;
  padding: 10px 18px;
  border: 1px solid rgba(19, 49, 92, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 30px rgba(11, 24, 49, 0.06);
}

.marketing-utility-bar p,
.marketing-utility-bar a {
  margin: 0;
  font-size: 0.94rem;
  font-weight: 700;
  color: #23476f;
}

.marketing-utility-bar a {
  text-decoration: none;
}

.marketing-site-home .marketing-nav {
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 14px;
  overflow-x: auto;
  scrollbar-width: none;
}

.marketing-site-home .marketing-nav::-webkit-scrollbar {
  display: none;
}

.marketing-site-home .marketing-hero {
  padding-top: clamp(44px, 7vw, 92px);
  gap: clamp(44px, 6vw, 102px);
}

.marketing-site-home .marketing-hero-copy {
  max-width: min(100%, 48rem);
}

.marketing-site-home .marketing-hero h1 {
  max-width: 11.8ch;
  font-size: clamp(3.35rem, 4.8vw, 4.7rem);
}

.marketing-site-home .marketing-hero-body {
  max-width: 44ch;
}

.marketing-site-home .marketing-device-main {
  left: 2%;
  top: 112px;
  width: min(100%, 820px);
}

.marketing-site-home .marketing-device-float {
  top: 34px;
  right: 14px;
  width: min(42%, 304px);
}

.marketing-overview-section {
  position: relative;
  margin-inline: calc(50% - 50vw);
  padding-inline: calc(50vw - 50%);
  padding-top: clamp(26px, 3vw, 42px);
  color: var(--marketing-surface);
  background: linear-gradient(180deg, #08131f 0%, #08131f 34%, #0d1826 100%);
}

.marketing-overview-section > * {
  position: relative;
}

.marketing-overview-section .marketing-section-heading {
  max-width: 50rem;
  margin-bottom: clamp(20px, 2.6vw, 32px);
}

.marketing-overview-section .marketing-eyebrow,
.marketing-overview-section .marketing-kicker {
  background: rgba(255, 255, 255, 0.08);
  color: #dce8fb;
}

.marketing-overview-section .marketing-section-heading h2,
.marketing-overview-section .marketing-section-copy,
.marketing-overview-card h3,
.marketing-overview-card p {
  color: var(--marketing-surface);
}

.marketing-overview-section .marketing-section-heading h2 {
  max-width: 15.8ch;
  font-size: clamp(2.45rem, 4vw, 4.05rem);
}

.marketing-overview-section .marketing-section-copy,
.marketing-overview-card p {
  color: rgba(226, 234, 245, 0.74);
}

.marketing-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.marketing-overview-card {
  padding: 22px 26px 20px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.marketing-overview-card:nth-child(2) {
  padding-left: 26px;
  padding-right: 26px;
}

.marketing-overview-card:last-child {
  padding-left: 26px;
  padding-right: 0;
  border-right: none;
}

.marketing-overview-card h3 {
  margin: 10px 0 8px;
  font-size: 1.34rem;
  line-height: 1.08;
  text-wrap: balance;
}

.marketing-compare-section {
  position: relative;
  margin-inline: calc(50% - 50vw);
  padding-inline: calc(50vw - 50%);
  background:
    radial-gradient(circle at 18% 18%, rgba(87, 140, 216, 0.1), transparent 24%),
    linear-gradient(180deg, #eef3f9 0%, #f5f7fb 100%);
}

.marketing-compare-section .marketing-section-heading {
  max-width: 54rem;
  margin-bottom: clamp(20px, 2.6vw, 34px);
}

.marketing-compare-section .marketing-section-heading h2 {
  max-width: 15.5ch;
  font-size: clamp(2.35rem, 3.8vw, 3.85rem);
}

.marketing-compare-grid,
.marketing-faq-list {
  display: grid;
  gap: 16px;
}

.marketing-compare-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.marketing-compare-card,
.marketing-faq-item {
  border: 1px solid rgba(19, 49, 92, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.76)),
    linear-gradient(135deg, rgba(96, 143, 210, 0.08), transparent 58%);
  box-shadow: 0 20px 44px rgba(11, 24, 49, 0.08);
}

.marketing-compare-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 282px;
  padding: 24px;
  border-radius: 28px;
}

.marketing-compare-card h3,
.marketing-faq-item h3 {
  margin: 0;
  color: var(--marketing-ink);
  font-size: 1.26rem;
  line-height: 1.15;
  text-wrap: balance;
}

.marketing-compare-card p,
.marketing-faq-item p {
  margin: 0;
  color: var(--marketing-muted);
  font-size: 1rem;
  line-height: 1.66;
}

.marketing-compare-card a {
  align-self: end;
  color: var(--marketing-accent);
  font-weight: 800;
  text-decoration: none;
}

.marketing-highlights-section {
  position: relative;
  margin-inline: calc(50% - 50vw);
  padding-inline: calc(50vw - 50%);
  background:
    radial-gradient(circle at 18% 18%, rgba(87, 140, 216, 0.12), transparent 24%),
    linear-gradient(180deg, #f5f7fb 0%, #eef3f9 100%);
}

.marketing-highlights-section > * {
  position: relative;
}

.marketing-highlights-section .marketing-section-heading {
  max-width: 56rem;
  margin-bottom: clamp(20px, 2.6vw, 32px);
}

.marketing-highlights-section .marketing-section-heading h2 {
  max-width: 14.2ch;
  font-size: clamp(2.45rem, 4vw, 4rem);
}

.marketing-highlight-rail {
  display: grid;
  grid-template-columns: repeat(6, minmax(228px, 1fr));
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: none;
}

.marketing-highlight-rail::-webkit-scrollbar {
  display: none;
}

.marketing-highlight-card {
  display: grid;
  gap: 12px;
  min-height: 248px;
  padding: 22px;
  border-radius: 28px;
  border: 1px solid rgba(19, 49, 92, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.74)),
    linear-gradient(135deg, rgba(96, 143, 210, 0.08), transparent 58%);
  box-shadow: 0 20px 44px rgba(11, 24, 49, 0.08);
  transition:
    transform 200ms ease,
    box-shadow 200ms ease,
    border-color 200ms ease;
}

.marketing-highlight-card:hover,
.marketing-highlight-card:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(34, 84, 150, 0.22);
  box-shadow: 0 28px 56px rgba(11, 24, 49, 0.12);
}

.marketing-highlight-label {
  display: inline-flex;
  width: fit-content;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(19, 49, 92, 0.07);
  color: var(--marketing-accent);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.marketing-highlight-card strong,
.marketing-integration-card h3,
.marketing-security-card h3 {
  font-size: 1.28rem;
  line-height: 1.12;
  text-wrap: balance;
}

.marketing-highlight-card span,
.marketing-integration-card p,
.marketing-security-card p,
.marketing-pricing-note {
  font-size: 1rem;
  line-height: 1.66;
  color: var(--marketing-muted);
}

.marketing-highlight-card em,
.marketing-story-proof,
.marketing-workflow-proof {
  font-style: normal;
  color: var(--marketing-dark);
  font-weight: 800;
  line-height: 1.45;
}

.marketing-story-section .marketing-section-heading h2 {
  max-width: 13.8ch;
  font-size: clamp(2.55rem, 4.2vw, 4.2rem);
}

.marketing-story-proof {
  margin-top: 18px;
  color: var(--marketing-surface-alt);
}

.marketing-workflows-section .marketing-section-heading {
  max-width: 58rem;
}

.marketing-workflows-section .marketing-section-heading h2,
.marketing-integrations-section .marketing-section-heading h2,
.marketing-security-section .marketing-section-heading h2,
.marketing-pricing-section .marketing-section-heading h2 {
  max-width: 13.6ch;
  font-size: clamp(2.45rem, 4vw, 4rem);
}

.marketing-workflow-stack {
  display: grid;
  gap: clamp(12px, 1.6vw, 20px);
}

.marketing-workflow-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: clamp(22px, 3vw, 44px);
  align-items: center;
  padding: clamp(18px, 2.4vw, 30px);
  border-radius: 34px;
  border: 1px solid rgba(19, 49, 92, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.66)),
    linear-gradient(135deg, rgba(88, 142, 219, 0.06), transparent 56%);
  box-shadow: 0 26px 58px rgba(11, 24, 49, 0.08);
}

.marketing-workflow-panel-reversed {
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
}

.marketing-workflow-panel-reversed .marketing-workflow-copy {
  order: 2;
}

.marketing-workflow-panel-reversed .marketing-workflow-visual {
  order: 1;
}

.marketing-workflow-copy {
  max-width: 31rem;
}

.marketing-workflow-copy h3 {
  margin: 10px 0 10px;
  font-size: clamp(1.85rem, 3.2vw, 3rem);
  line-height: 0.98;
  text-wrap: balance;
  overflow-wrap: break-word;
  hyphens: auto;
}

.marketing-workflow-copy p {
  margin: 0;
  max-width: 37ch;
  color: var(--marketing-muted);
  font-size: 1.03rem;
  line-height: 1.72;
}

.marketing-workflow-proof {
  margin-top: 12px;
}

.marketing-workflow-visual {
  display: grid;
  place-items: center;
  min-height: clamp(150px, 20svh, 220px);
}

.marketing-workflow-visual img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 26px 62px rgba(11, 24, 49, 0.12);
}

.marketing-integrations-section,
.marketing-pricing-section {
  position: relative;
}

.marketing-integrations-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.marketing-integration-card {
  display: grid;
  gap: 12px;
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(19, 49, 92, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.74)),
    linear-gradient(135deg, rgba(96, 143, 210, 0.08), transparent 58%);
  box-shadow: 0 20px 44px rgba(11, 24, 49, 0.06);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.marketing-integration-card:hover,
.marketing-integration-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(34, 84, 150, 0.22);
  box-shadow: 0 24px 50px rgba(11, 24, 49, 0.1);
}

.marketing-integration-card span {
  color: var(--marketing-dark);
  font-weight: 800;
}

.marketing-security-section {
  position: relative;
  margin-inline: calc(50% - 50vw);
  padding-inline: calc(50vw - 50%);
  color: #f6f8fc;
  background:
    radial-gradient(circle at 18% 18%, rgba(79, 137, 221, 0.18), transparent 24%),
    linear-gradient(180deg, #0a1522 0%, #08131f 100%);
}

.marketing-security-section > * {
  position: relative;
}

.marketing-security-section .marketing-section-heading {
  max-width: 46rem;
  margin-bottom: clamp(20px, 2.6vw, 32px);
}

.marketing-security-section .marketing-eyebrow {
  background: rgba(255, 255, 255, 0.08);
  color: #dce8fb;
}

.marketing-security-section .marketing-section-heading h2,
.marketing-security-section .marketing-section-copy,
.marketing-security-card h3,
.marketing-security-card p {
  color: var(--marketing-surface);
}

.marketing-security-section .marketing-section-copy,
.marketing-security-card p {
  color: rgba(226, 234, 245, 0.76);
}

.marketing-security-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.marketing-security-card {
  padding: 22px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
    linear-gradient(135deg, rgba(96, 143, 210, 0.12), transparent 58%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.marketing-faq-section {
  position: relative;
  margin-inline: calc(50% - 50vw);
  padding-inline: calc(50vw - 50%);
  background:
    radial-gradient(circle at 82% 10%, rgba(87, 140, 216, 0.1), transparent 24%),
    linear-gradient(180deg, #eef3f9 0%, #f6f8fb 100%);
}

.marketing-faq-section .marketing-section-heading {
  max-width: 54rem;
  margin-bottom: clamp(20px, 2.6vw, 34px);
}

.marketing-faq-section .marketing-section-heading h2 {
  max-width: 15ch;
}

.marketing-faq-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.marketing-faq-item {
  display: grid;
  gap: 12px;
  padding: 24px;
  border-radius: 24px;
}

.marketing-pricing-section .marketing-section-heading {
  max-width: 46rem;
}

.marketing-pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.marketing-pricing-card {
  min-height: 100%;
}

.marketing-pricing-head .marketing-kicker {
  margin-bottom: 12px;
}

.marketing-pricing-actions {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.marketing-pricing-note {
  max-width: 42rem;
  margin: 0;
}

.marketing-final-section h2 {
  max-width: 13ch;
  font-size: clamp(2.4rem, 3.8vw, 4rem);
}

@media (max-width: 1200px) {
  .marketing-highlight-rail {
    grid-template-columns: repeat(6, minmax(250px, 1fr));
  }
}

@media (max-width: 1080px) {
  .marketing-overview-grid,
  .marketing-compare-grid,
  .marketing-security-grid,
  .marketing-integrations-grid,
  .marketing-pricing-grid,
  .marketing-faq-list,
  .marketing-workflow-panel,
  .marketing-workflow-panel-reversed {
    grid-template-columns: 1fr;
  }

  .marketing-workflow-panel-reversed .marketing-workflow-copy,
  .marketing-workflow-panel-reversed .marketing-workflow-visual {
    order: initial;
  }

  .marketing-highlight-rail {
    grid-template-columns: repeat(3, minmax(240px, 1fr));
  }
}

@media (max-width: 900px) {
  .marketing-overview-card {
    padding: 24px 0;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .marketing-overview-card:nth-child(2),
  .marketing-overview-card:last-child {
    padding-left: 0;
    padding-right: 0;
  }

  .marketing-overview-card:last-child {
    border-bottom: none;
  }

  .marketing-security-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .marketing-compare-card {
    min-height: 0;
  }
}

@media (max-width: 767px) {
  .marketing-utility-bar {
    align-items: flex-start;
    flex-direction: column;
    border-radius: 24px;
  }

  .marketing-site-home .marketing-nav {
    gap: 12px;
  }

  .marketing-site-home .marketing-hero h1 {
    font-size: clamp(2.25rem, 9.2vw, 2.9rem);
    max-width: 100%;
  }

  .marketing-highlight-rail {
    grid-template-columns: 1fr;
  }

  .marketing-highlight-card,
  .marketing-compare-card,
  .marketing-integration-card,
  .marketing-security-card,
  .marketing-faq-item,
  .marketing-pricing-card,
  .marketing-workflow-panel {
    border-radius: 24px;
  }

  .marketing-security-grid {
    grid-template-columns: 1fr;
  }

  .marketing-workflow-panel {
    padding: 24px;
  }

  .marketing-workflow-copy h3 {
    font-size: clamp(2rem, 10vw, 3rem);
    max-width: 11ch;
  }

  .marketing-workflow-visual {
    min-height: 260px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .marketing-highlight-card,
  .marketing-integration-card {
    transition: none;
  }
}

.marketing-zoom-trigger {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: inherit;
  cursor: zoom-in;
  line-height: 0;
  font: inherit;
  color: inherit;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.marketing-zoom-trigger:focus-visible {
  outline: 2px solid rgba(123, 184, 255, 0.9);
  outline-offset: 4px;
}

.marketing-zoom-trigger:hover {
  transform: translateY(-2px);
}

.marketing-zoom-trigger img {
  display: block;
  width: 100%;
  height: auto;
}

.marketing-device .marketing-zoom-trigger,
.marketing-story-visual .marketing-zoom-trigger,
.marketing-workflow-visual .marketing-zoom-trigger {
  width: auto;
  max-width: 100%;
}

.marketing-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(24px, 4vw, 56px);
  background: rgba(6, 12, 22, 0.86);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  transition: opacity 180ms ease;
}

.marketing-lightbox.is-open {
  display: flex;
  opacity: 1;
}

.marketing-lightbox-dialog {
  position: relative;
  max-width: min(1400px, 96vw);
  max-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.marketing-lightbox-image {
  display: block;
  width: auto;
  height: auto;
  max-width: min(1400px, 96vw);
  max-height: 92vh;
  object-fit: contain;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.6);
}

.marketing-lightbox-close {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.95);
  color: #0a1424;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  transition: transform 140ms ease, background 140ms ease;
}

.marketing-lightbox-close:hover,
.marketing-lightbox-close:focus-visible {
  transform: scale(1.06);
  background: #ffffff;
  outline: none;
}

@media (prefers-reduced-motion: reduce) {
  .marketing-zoom-trigger,
  .marketing-lightbox,
  .marketing-lightbox-close {
    transition: none;
  }
}
