:root {
  --bg: #040506;
  --bg-soft: #090b0d;
  --panel: rgba(10, 13, 17, 0.92);
  --panel-2: rgba(11, 15, 20, 0.94);
  --panel-3: rgba(12, 16, 22, 0.96);
  --line: rgba(255, 255, 255, 0.06);
  --line-2: rgba(255, 255, 255, 0.1);
  --text: #f3f4f5;
  --muted: #a1a6ad;
  --white: #ffffff;
  --green: #68d35f;
  --yellow: #e2c34b;
  --pink: #ff3a8b;
  --orange: #f1a149;
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
  --shadow-lg: 0 26px 72px rgba(0, 0, 0, 0.3);
  --radius: 12px;
  --radius-sm: 8px;
  --container: 1200px;
  --font: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --header-height: 70px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.025), transparent 26%),
    linear-gradient(180deg, #040506 0%, #050607 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

main {
  overflow: clip;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

button,
input,
summary {
  font: inherit;
}

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

.section {
  position: relative;
  padding: 98px 0 0;
}

.texture-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.04) 1px, transparent 0);
  background-size: 14px 14px;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.9) 14%, transparent 78%);
  pointer-events: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(16px);
  background: rgba(4, 5, 6, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: var(--header-height);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 23px;
  height: 23px;
  color: var(--white);
}

.brand-mark svg {
  width: 23px;
  height: 23px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.nav-link {
  height: 18px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  letter-spacing: -0.025em;
}

.link-track {
  display: flex;
  flex-direction: column;
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.link-track span {
  line-height: 18px;
}

.nav-link:hover .link-track,
.nav-link:focus-visible .link-track {
  transform: translateY(-18px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.025em;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--white);
  color: #121417;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.header-cta {
  min-height: 38px;
  padding-inline: 18px;
  border-radius: 10px;
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--white);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  display: flex;
  align-items: stretch;
}

.hero-media,
.hero-overlay,
.hero-grid {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  filter: saturate(0.9) brightness(0.74);
  transform: scale(1.03);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(4, 5, 6, 0.92) 0%, rgba(4, 5, 6, 0.78) 30%, rgba(4, 5, 6, 0.58) 56%, rgba(4, 5, 6, 0.84) 100%),
    linear-gradient(180deg, rgba(4, 5, 6, 0.34) 0%, rgba(4, 5, 6, 0.1) 32%, rgba(4, 5, 6, 0.58) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100svh - var(--header-height));
  padding-top: 74px;
  padding-bottom: 52px;
}

.hero-copy {
  max-width: 620px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  font-size: 13px;
  letter-spacing: -0.025em;
  color: rgba(255, 255, 255, 0.8);
}

.eyebrow-dot {
  width: 13px;
  height: 7px;
  border-radius: 999px;
  background: currentColor;
  display: inline-block;
  flex: none;
}

.eyebrow-white { color: #f2f3f4; }
.eyebrow-green { color: var(--green); }
.eyebrow-yellow { color: var(--yellow); }
.eyebrow-pink { color: var(--pink); }
.eyebrow-orange { color: var(--orange); }

.hero h1,
.section-heading h2,
.contact-copy h2 {
  margin: 0;
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(3rem, 5.1vw, 5rem);
}

.section-heading h2,
.contact-copy h2 {
  max-width: 720px;
  font-size: clamp(2.5rem, 4vw, 3.7rem);
}

.section-lead {
  margin: 18px 0 0;
  max-width: 610px;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.25vw, 1.08rem);
  letter-spacing: -0.022em;
  line-height: 1.56;
}

.hero-lead {
  max-width: 540px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.scroll-indicator {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 56px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  letter-spacing: -0.02em;
}

.scroll-icon {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.scroll-icon svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: rgba(255, 255, 255, 0.86);
  stroke-width: 1.45;
}

.logo-section {
  position: relative;
  padding: 26px 0 8px;
}

.logo-inner {
  display: grid;
  gap: 16px;
}

.logo-title {
  margin: 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  letter-spacing: -0.02em;
}

.logo-marquee {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0, black 14%, black 86%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, black 14%, black 86%, transparent 100%);
}

.logo-track {
  display: flex;
  width: max-content;
  gap: 14px;
  animation: marquee 22s linear infinite;
}

.logo-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 154px;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  letter-spacing: -0.025em;
  white-space: nowrap;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 7px)); }
}

.section-heading {
  margin-bottom: 36px;
}

.narrow-heading {
  max-width: 760px;
}

.section-split {
  padding-top: 108px;
}

.feature-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1fr);
  align-items: start;
  gap: 24px;
}

.feature-list {
  display: grid;
  gap: 10px;
}

.feature-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(11, 15, 20, 0.95) 0%, rgba(9, 13, 18, 0.97) 100%);
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.feature-item.is-active {
  border-color: rgba(255, 255, 255, 0.09);
  background: linear-gradient(180deg, rgba(12, 16, 22, 0.98) 0%, rgba(10, 13, 18, 0.99) 100%);
  box-shadow: var(--shadow);
}

.feature-trigger {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  width: 100%;
  min-height: 60px;
  padding: 0 18px;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: left;
  cursor: pointer;
}

.feature-title {
  position: relative;
  padding-left: 16px;
  font-size: 16px;
  letter-spacing: -0.03em;
}

.feature-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 2px;
  height: 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  transform: translateY(-50%);
}

.feature-plus {
  position: relative;
  width: 12px;
  height: 12px;
  opacity: 0.6;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.feature-plus::before,
.feature-plus::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 12px;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.8);
  transform: translate(-50%, -50%);
}

.feature-plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.feature-item.is-active .feature-plus {
  opacity: 1;
  transform: rotate(45deg);
}

.feature-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.feature-panel-inner {
  padding: 0 18px 18px 34px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  letter-spacing: -0.02em;
}

.assistant-card {
  position: sticky;
  top: calc(var(--header-height) + 22px);
  justify-self: end;
  width: min(100%, 590px);
  min-height: 440px;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(11, 15, 20, 0.92) 0%, rgba(9, 13, 18, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-lg);
}

.assistant-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 6, 8, 0.02) 0%, rgba(5, 6, 8, 0.4) 100%);
  pointer-events: none;
}

.assistant-overlay {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  padding: 16px 16px 15px;
  border-radius: 10px;
  background: rgba(8, 10, 13, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.assistant-kicker {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  letter-spacing: -0.02em;
}

.assistant-overlay h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.assistant-overlay p:last-child {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -0.02em;
}

.section-benefits {
  padding-top: 98px;
}

.benefit-grid,
.pricing-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.benefit-card,
.pricing-card,
.contact-card,
.contact-shell {
  border-radius: var(--radius-sm);
}

.benefit-card {
  overflow: hidden;
  background: rgba(10, 13, 17, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.benefit-media {
  aspect-ratio: 1.62;
  overflow: hidden;
}

.benefit-body {
  padding: 22px 22px 24px;
  background: linear-gradient(180deg, rgba(12, 16, 21, 0.98) 0%, rgba(10, 13, 18, 0.98) 100%);
}

.card-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: clamp(1.6rem, 2vw, 2rem);
  letter-spacing: -0.05em;
}

.card-kicker .eyebrow-dot {
  width: 8px;
  height: 18px;
  color: var(--yellow);
}

.card-text {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.54;
  letter-spacing: -0.02em;
}

.section-pricing {
  padding-top: 104px;
}

.pricing-switch-row {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 24px;
}

.switch-label,
.discount-pill,
.popular-pill {
  font-size: 14px;
  letter-spacing: -0.02em;
}

.switch-label {
  color: rgba(255, 255, 255, 0.72);
}

.switch-label.active {
  color: var(--white);
}

.billing-switch {
  position: relative;
  width: 38px;
  height: 22px;
  padding: 0;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}

.billing-switch-thumb {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--white);
  transition: transform 0.24s ease;
}

.billing-switch.is-yearly .billing-switch-thumb {
  transform: translateX(16px);
}

.discount-pill,
.popular-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.78);
}

.pricing-card {
  display: flex;
  flex-direction: column;
  min-height: 520px;
  padding: 26px 24px 24px;
  background: linear-gradient(180deg, rgba(11, 15, 20, 0.98) 0%, rgba(9, 12, 17, 0.99) 100%);
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.pricing-card h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.pricing-copy {
  margin: 12px 0 0;
  max-width: 320px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.56;
  letter-spacing: -0.02em;
}

.pricing-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.price {
  margin: 22px 0 0;
  font-size: clamp(2.8rem, 3.6vw, 3.8rem);
  font-weight: 400;
  letter-spacing: -0.055em;
}

.price-note {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
}

.pricing-card hr {
  width: 100%;
  margin: 24px 0 20px;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.feature-checks {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 13px;
}

.feature-checks li {
  position: relative;
  padding-left: 26px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  letter-spacing: -0.02em;
}

.feature-checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.74);
  font-size: 10px;
}

.pricing-card .button {
  margin-top: auto;
  align-self: flex-start;
}

.section-faq {
  padding-top: 116px;
  padding-bottom: 34px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.faq-column {
  display: grid;
  gap: 12px;
}

.faq-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(11, 15, 20, 0.98) 0%, rgba(9, 13, 18, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.faq-item summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  min-height: 64px;
  padding: 0 42px 0 18px;
  cursor: pointer;
  font-size: 16px;
  letter-spacing: -0.028em;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-indicator {
  position: absolute;
  top: 50%;
  right: 18px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-50%);
  transition: background 0.22s ease, transform 0.22s ease;
}

.faq-item[open] .faq-indicator {
  background: rgba(255, 255, 255, 0.26);
  transform: translateY(-50%) scale(1.1);
}

.faq-answer {
  padding: 0 18px 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.56;
  letter-spacing: -0.02em;
}

.section-contact {
  padding-top: 104px;
  padding-bottom: 34px;
}

.contact-shell {
  padding: 28px;
  background: linear-gradient(180deg, rgba(10, 13, 17, 0.98) 0%, rgba(8, 11, 15, 0.99) 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow);
}

.contact-copy {
  max-width: 760px;
  margin-bottom: 28px;
}

.contact-grid {
  gap: 16px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 220px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-card-primary {
  justify-content: space-between;
}

.contact-label,
.footer-heading {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.contact-card a:not(.button) {
  font-size: 24px;
  letter-spacing: -0.05em;
}

.contact-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.56;
}

.site-footer {
  padding: 18px 0 46px;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 36px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand {
  margin-bottom: 16px;
}

.footer-copy {
  margin: 0;
  max-width: 460px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.56;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.footer-links > div {
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  letter-spacing: -0.02em;
}

@media (max-width: 1120px) {
  .container {
    width: min(var(--container), calc(100% - 38px));
  }

  .header-inner {
    grid-template-columns: auto auto auto;
    justify-content: space-between;
  }

  .menu-toggle {
    display: inline-flex;
    order: 3;
  }

  .header-cta {
    display: none;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    background: rgba(10, 12, 14, 0.98);
    box-shadow: var(--shadow);
  }

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

  .nav-link {
    height: auto;
    width: 100%;
    overflow: visible;
  }

  .link-track {
    transform: none !important;
    display: block;
  }

  .link-track span:last-child {
    display: none;
  }

  .feature-layout,
  .benefit-grid,
  .pricing-grid,
  .faq-grid,
  .contact-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .assistant-card {
    position: relative;
    top: auto;
    width: 100%;
    min-height: 380px;
  }

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

@media (max-width: 820px) {
  :root {
    --header-height: 66px;
  }

  .container {
    width: calc(100% - 30px);
  }

  .section {
    padding-top: 76px;
  }

  .hero-inner {
    padding-top: 62px;
    padding-bottom: 36px;
  }

  .hero h1 {
    max-width: 620px;
  }

  .logo-section {
    padding-top: 20px;
  }

  .button-row {
    margin-top: 24px;
  }

  .scroll-indicator {
    padding-top: 38px;
  }

  .benefit-body,
  .pricing-card,
  .contact-card,
  .contact-shell {
    padding-inline: 20px;
  }

  .faq-item summary {
    min-height: 60px;
  }
}

@media (max-width: 600px) {
  .container {
    width: calc(100% - 24px);
  }

  .header-inner {
    gap: 12px;
  }

  .brand-name {
    font-size: 15px;
  }

  .button-row {
    flex-direction: column;
  }

  .button-row .button {
    width: 100%;
  }

  .logo-pill {
    min-width: 132px;
    padding-inline: 14px;
  }

  .feature-trigger {
    min-height: 56px;
    padding-inline: 16px;
  }

  .feature-panel-inner {
    padding-left: 32px;
    padding-right: 16px;
    padding-bottom: 16px;
  }

  .assistant-card {
    min-height: 320px;
  }

  .contact-card a:not(.button) {
    font-size: 20px;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }
}


/* polish update */
:root {
  --radius: 10px;
  --radius-sm: 6px;
}

html {
  scroll-padding-top: 92px;
}

body {
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.022), transparent 24%),
    linear-gradient(180deg, #040506 0%, #050607 100%);
}

.site-header {
  position: fixed;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none;
  transition: background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease, box-shadow 0.35s ease;
}

.site-header.is-solid {
  background: rgba(4, 5, 6, 0.78);
  border-bottom-color: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.hero {
  min-height: 100svh;
}

.hero-inner {
  min-height: 100svh;
  padding-top: calc(var(--header-height) + 56px);
  padding-bottom: 30px;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(4, 5, 6, 0.9) 0%, rgba(4, 5, 6, 0.72) 28%, rgba(4, 5, 6, 0.48) 54%, rgba(4, 5, 6, 0.78) 100%),
    linear-gradient(180deg, rgba(4, 5, 6, 0.18) 0%, rgba(4, 5, 6, 0.08) 22%, rgba(4, 5, 6, 0.34) 58%, rgba(4, 5, 6, 0.9) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 160px;
  background: linear-gradient(180deg, rgba(4, 5, 6, 0) 0%, rgba(4, 5, 6, 0.36) 48%, #040506 100%);
  pointer-events: none;
  z-index: 0;
}

.hero-media img {
  object-position: center center;
  filter: saturate(0.9) brightness(0.78);
  transform: scale(1.04);
}

.scroll-indicator {
  position: relative;
  width: fit-content;
  animation: floatScroll 2.6s ease-in-out infinite;
}

@keyframes floatScroll {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

.logo-section {
  margin-top: -1px;
  padding: 28px 0 12px;
  background: linear-gradient(180deg, rgba(4, 5, 6, 0) 0%, rgba(4, 5, 6, 0.76) 16%, #040506 100%);
}

.logo-inner {
  gap: 14px;
}

.logo-title {
  color: rgba(255, 255, 255, 0.62);
}

.logo-track {
  gap: 28px;
}

.logo-pill {
  min-width: auto;
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.46);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.03em;
  transition: opacity 0.25s ease, transform 0.25s ease, color 0.25s ease;
}

.logo-pill:hover {
  color: rgba(255, 255, 255, 0.72);
  transform: translateY(-1px);
}

.feature-item,
.assistant-card,
.benefit-card,
.pricing-card,
.contact-card,
.contact-shell,
.faq-item {
  border-radius: var(--radius-sm);
}

.button,
.header-cta,
.menu-toggle,
.assistant-overlay {
  border-radius: 8px;
}

.feature-item,
.benefit-card,
.pricing-card,
.contact-card,
.contact-shell,
.faq-item,
.assistant-card {
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease,
    opacity 0.35s ease;
  will-change: transform, opacity;
}

.feature-item:hover,
.benefit-card:hover,
.pricing-card:hover,
.contact-card:hover,
.faq-item:hover,
.assistant-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.08);
}

.feature-item.is-active {
  transform: translateY(-2px);
}

.faq-item:hover .faq-indicator {
  background: rgba(255, 255, 255, 0.2);
}

.feature-panel {
  opacity: 0;
  transition: max-height 0.32s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.22s ease;
}

.feature-item.is-active .feature-panel {
  opacity: 1;
}

.assistant-card {
  isolation: isolate;
}

.assistant-overlay {
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.assistant-card:hover .assistant-overlay {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.12);
}

.reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.988);
  filter: blur(3px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.75s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.reveal-delay-1 { transition-delay: 0.06s; }
.reveal-delay-2 { transition-delay: 0.12s; }
.reveal-delay-3 { transition-delay: 0.18s; }

.site-footer {
  padding-top: 28px;
}

.footer-links a,
.contact-card a,
.button,
.nav-link,
.brand {
  transition: color 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

.footer-links a:hover,
.contact-card a:hover,
.brand:hover {
  color: var(--white);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 10px 28px rgba(255, 255, 255, 0.12);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.06);
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .feature-item,
  .benefit-card,
  .pricing-card,
  .contact-card,
  .faq-item,
  .assistant-card,
  .button,
  .logo-track,
  .scroll-indicator,
  .site-header {
    transition: none !important;
    animation: none !important;
  }
}

@media (max-width: 1120px) {
  .site-nav {
    border-radius: 10px;
  }
}

@media (max-width: 820px) {
  .hero-inner {
    padding-top: calc(var(--header-height) + 42px);
  }

  .logo-pill {
    font-size: 15px;
  }
}

@media (max-width: 600px) {
  .hero-inner {
    padding-bottom: 24px;
  }

  .logo-track {
    gap: 20px;
  }

  .logo-pill {
    font-size: 14px;
  }
}


/* seam fix between hero and logo carousel */
.hero::after {
  bottom: -1px;
  height: 220px;
  background: linear-gradient(180deg, rgba(4, 5, 6, 0) 0%, rgba(4, 5, 6, 0.58) 44%, rgba(4, 5, 6, 0.9) 76%, #040506 100%);
}

.logo-section {
  margin-top: 0;
  padding: 18px 0 8px;
  background: transparent;
}

.logo-inner {
  gap: 12px;
}

/* premium motion refresh */
:root {
  --hero-parallax: 0px;
}

body {
  overflow-x: hidden;
}

.hero {
  isolation: isolate;
  min-height: 100svh;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 52% 24%, rgba(110, 140, 210, 0.16), transparent 28%),
    radial-gradient(circle at 50% 58%, rgba(255, 255, 255, 0.035), transparent 22%),
    linear-gradient(180deg, rgba(4, 5, 6, 0.12) 0%, rgba(4, 5, 6, 0.02) 28%, rgba(4, 5, 6, 0.36) 78%, rgba(4, 5, 6, 0.9) 100%);
  pointer-events: none;
}

.hero-media {
  overflow: hidden;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(255,255,255,0.05), transparent 35%),
    linear-gradient(90deg, rgba(4,5,6,0.82) 0%, rgba(4,5,6,0.56) 26%, rgba(4,5,6,0.34) 52%, rgba(4,5,6,0.74) 100%),
    linear-gradient(180deg, rgba(4,5,6,0.54) 0%, rgba(4,5,6,0.08) 22%, rgba(4,5,6,0.18) 55%, rgba(4,5,6,0.76) 100%);
}

.hero-media img {
  transform: translate3d(0, var(--hero-parallax), 0) scale(1.1);
  transform-origin: center center;
  object-position: center 34%;
  filter: saturate(0.88) brightness(0.6) contrast(1.06);
  transition: transform 0.18s linear;
}

.hero-overlay {
  background: transparent;
}

.hero-grid {
  opacity: 0.52;
}

.hero::after {
  height: 220px;
  background: linear-gradient(180deg, rgba(4, 5, 6, 0) 0%, rgba(4, 5, 6, 0.1) 24%, rgba(4, 5, 6, 0.48) 60%, #040506 100%);
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100svh;
  padding-top: calc(var(--header-height) + 42px);
  padding-bottom: 26px;
}

.hero-copy {
  max-width: 640px;
}

.hero-copy > * {
  opacity: 0;
  transform: translateY(20px);
}

body.is-ready .hero-copy > .eyebrow {
  animation: heroEnter 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.05s forwards;
}

body.is-ready .hero-copy > h1 {
  animation: heroEnter 0.95s cubic-bezier(0.22, 1, 0.36, 1) 0.16s forwards;
}

body.is-ready .hero-copy > .hero-lead {
  animation: heroEnter 0.95s cubic-bezier(0.22, 1, 0.36, 1) 0.28s forwards;
}

body.is-ready .hero-copy > .button-row {
  animation: heroEnter 0.95s cubic-bezier(0.22, 1, 0.36, 1) 0.42s forwards;
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 36px;
  z-index: 2;
  margin: 0;
  padding-top: 0;
  transform: translateX(-50%);
  gap: 11px;
  padding: 9px 14px 9px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(6, 8, 11, 0.36);
  backdrop-filter: blur(14px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
  opacity: 0;
}

body.is-ready .scroll-indicator {
  animation:
    heroEnterCenter 0.95s cubic-bezier(0.22, 1, 0.36, 1) 0.56s forwards,
    floatScrollCenter 3s ease-in-out 1.7s infinite;
}

.scroll-indicator:hover,
.scroll-indicator:focus-visible {
  color: rgba(255,255,255,0.92);
  border-color: rgba(255,255,255,0.14);
}

.scroll-icon {
  width: 28px;
  height: 28px;
  background: rgba(255,255,255,0.03);
  border-color: rgba(255,255,255,0.1);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.scroll-icon svg {
  width: 13px;
  height: 13px;
}

.logo-section {
  margin-top: -34px;
  padding: 72px 0 10px;
  background: linear-gradient(180deg, rgba(4, 5, 6, 0) 0%, rgba(4, 5, 6, 0.65) 18%, #040506 48%, #040506 100%);
}

.logo-title {
  margin-bottom: 2px;
}

.logo-marquee {
  mask-image: linear-gradient(90deg, transparent 0, black 12%, black 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, black 12%, black 88%, transparent 100%);
}

.logo-track {
  gap: 46px;
  animation-duration: 30s;
}

.logo-pill {
  position: relative;
  color: rgba(255,255,255,0.52);
  font-size: 17px;
}

.logo-pill::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.logo-pill:hover::after {
  opacity: 1;
}

.button {
  position: relative;
  overflow: hidden;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 25%, rgba(255,255,255,0.14) 50%, transparent 75%);
  transform: translateX(-130%);
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.button:hover::before,
.button:focus-visible::before {
  transform: translateX(130%);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 18px 36px rgba(255, 255, 255, 0.12);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.075);
}

.feature-item,
.benefit-card,
.pricing-card,
.contact-card,
.faq-item,
.assistant-card,
.contact-shell {
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.018), 0 18px 36px rgba(0, 0, 0, 0.18);
}

.feature-item:hover,
.benefit-card:hover,
.pricing-card:hover,
.contact-card:hover,
.faq-item:hover,
.assistant-card:hover,
.contact-shell:hover {
  transform: translateY(-4px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.028), 0 24px 44px rgba(0, 0, 0, 0.24);
}

.benefit-media img,
.assistant-card > img,
.contact-shell img,
.pricing-card img {
  object-fit: cover;
  object-position: center center;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), filter 0.45s ease;
}

.benefit-card:hover .benefit-media img,
.assistant-card:hover > img {
  transform: scale(1.035);
  filter: saturate(1.03) brightness(1.02);
}

.feature-trigger {
  transition: background 0.28s ease, color 0.28s ease;
}

.feature-item:hover .feature-trigger {
  background: rgba(255,255,255,0.012);
}

.feature-panel {
  transition: max-height 0.38s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
}

.feature-panel-inner {
  transform: translateY(8px);
  opacity: 0;
  transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s ease;
}

.feature-item.is-active .feature-panel-inner {
  transform: translateY(0);
  opacity: 1;
}

.assistant-overlay {
  background: rgba(8, 10, 13, 0.64);
  border-color: rgba(255,255,255,0.07);
  box-shadow: 0 12px 28px rgba(0,0,0,0.24);
}

.assistant-card::before {
  content: "";
  position: absolute;
  inset: auto 10% 8% 10%;
  height: 32%;
  background: radial-gradient(circle at center, rgba(0,0,0,0.42), transparent 74%);
  z-index: 0;
  pointer-events: none;
}

.reveal {
  transform: translateY(22px) scale(0.992);
  filter: blur(2px);
  transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1), transform 0.85s cubic-bezier(0.22, 1, 0.36, 1), filter 0.85s ease;
}

.site-header.is-solid .header-inner {
  min-height: calc(var(--header-height) - 2px);
}

.nav-link,
.footer-links a,
.contact-card a,
.brand {
  transition: color 0.25s ease, opacity 0.25s ease, transform 0.25s ease, text-shadow 0.25s ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.brand:hover {
  text-shadow: 0 0 18px rgba(255,255,255,0.12);
}

.contact-card a:not(.button) {
  transition: transform 0.25s ease, color 0.25s ease;
}

.contact-card:hover a:not(.button) {
  transform: translateX(2px);
}

@keyframes heroEnter {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroEnterCenter {
  from {
    opacity: 0;
    transform: translate(-50%, 18px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@keyframes floatScrollCenter {
  0%, 100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, 4px);
  }
}

@media (max-width: 980px) {
  .hero-inner {
    padding-top: calc(var(--header-height) + 28px);
  }

  .scroll-indicator {
    bottom: 28px;
  }

  .logo-section {
    margin-top: -20px;
    padding-top: 54px;
  }
}

@media (max-width: 820px) {
  .hero-media img {
    object-position: center center;
    transform: translate3d(0, calc(var(--hero-parallax) * 0.7), 0) scale(1.12);
  }

  .hero-copy {
    max-width: 100%;
  }

  .scroll-indicator {
    gap: 9px;
    font-size: 12px;
    padding: 8px 12px 8px 9px;
  }

  .logo-pill {
    font-size: 15px;
  }
}

@media (max-width: 600px) {
  .hero-inner {
    align-items: flex-end;
    padding-bottom: 84px;
  }

  .scroll-indicator {
    bottom: 18px;
    width: max-content;
  }

  .logo-track {
    gap: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-copy > *,
  .scroll-indicator {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }

  .hero-media img {
    transform: scale(1.08) !important;
  }
}

@media (max-width: 768px) {
  .hero-media img {
    object-position: center 38%;
    transform: scale(1.01);
  }
}


/* refinement update */
:root {
  --radius: 8px;
  --radius-sm: 5px;
}

.feature-item,
.assistant-card,
.benefit-card,
.pricing-card,
.contact-card,
.contact-shell,
.faq-item,
.button,
.header-cta,
.menu-toggle,
.assistant-overlay,
.site-nav {
  border-radius: var(--radius-sm);
}

.button,
.header-cta,
.menu-toggle,
.assistant-overlay,
.discount-pill,
.popular-pill,
.billing-switch {
  border-radius: 7px;
}

.hero-media img {
  filter: saturate(0.9) brightness(0.68) contrast(1.05) !important;
  object-position: center 36%;
}

.hero-media::after {
  background:
    radial-gradient(circle at center, rgba(255,255,255,0.045), transparent 35%),
    linear-gradient(90deg, rgba(4,5,6,0.78) 0%, rgba(4,5,6,0.5) 26%, rgba(4,5,6,0.28) 52%, rgba(4,5,6,0.68) 100%),
    linear-gradient(180deg, rgba(4,5,6,0.46) 0%, rgba(4,5,6,0.08) 22%, rgba(4,5,6,0.16) 55%, rgba(4,5,6,0.72) 100%);
}

.button::before {
  content: none !important;
}

.button-primary:hover,
.button-primary:focus-visible,
.button-secondary:hover,
.button-secondary:focus-visible {
  box-shadow: none !important;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #f2f4f6;
  transform: translateY(-1px);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

@media (max-width: 1120px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
    gap: 12px;
  }

  .brand {
    min-width: 0;
  }

  .menu-toggle {
    justify-self: end;
    position: relative;
    z-index: 75;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: rgba(11, 14, 18, 0.78);
    border-color: rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(18px);
  }

  .site-nav {
    top: calc(100% + 10px);
    left: auto;
    right: 0;
    width: min(300px, calc(100vw - 24px));
    align-items: stretch;
    gap: 4px;
    padding: 10px;
    border-radius: 10px;
    background: rgba(7, 9, 12, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(24px);
  }

  .nav-link {
    width: 100%;
    height: auto;
    border-radius: 7px;
    color: rgba(255, 255, 255, 0.9);
  }

  .nav-link:hover,
  .nav-link:focus-visible {
    text-shadow: none;
    background: rgba(255, 255, 255, 0.045);
  }

  .link-track span:first-child {
    display: block;
    padding: 11px 12px;
    line-height: 1.2;
  }
}

@media (max-width: 820px) {
  .hero-inner {
    padding-top: calc(var(--header-height) + 22px);
  }

  .hero-copy {
    max-width: min(100%, 560px);
  }

  .hero h1 {
    max-width: 11ch;
  }

  .section,
  .section-split {
    padding-top: 82px;
  }

  .feature-layout,
  .benefit-grid,
  .pricing-grid,
  .faq-grid,
  .contact-grid,
  .footer-inner {
    gap: 20px;
  }

  .assistant-card {
    min-height: 340px;
  }
}

@media (max-width: 600px) {
  html {
    scroll-padding-top: 78px;
  }

  .site-header {
    padding-top: env(safe-area-inset-top, 0px);
  }

  .header-inner {
    min-height: 62px;
  }

  .site-nav {
    right: 0;
    width: min(280px, calc(100vw - 24px));
  }

  .hero {
    min-height: 100svh;
  }

  .hero-media img {
    object-position: center 42%;
  }

  .hero-inner {
    align-items: center;
    justify-content: flex-end;
    min-height: 100svh;
    padding-top: calc(var(--header-height) + 18px);
    padding-bottom: 96px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero-lead {
    max-width: 100%;
  }

  .button-row {
    gap: 8px;
  }

  .button-row .button {
    width: 100%;
  }

  .scroll-indicator {
    bottom: 18px;
    padding: 8px 12px 8px 10px;
  }

  .assistant-card,
  .benefit-card,
  .pricing-card,
  .contact-shell,
  .contact-card,
  .faq-item {
    border-radius: 7px;
  }

  .benefit-body,
  .pricing-card,
  .contact-card,
  .contact-shell {
    padding-inline: 18px;
  }
}

/* premium motion + footer refinement update */
:root {
  --radius: 9px;
  --radius-sm: 6px;
}

.hero-media {
  overflow: hidden;
}

.hero-media img {
  --parallax-y: 0px;
  transform: translate3d(0, calc(var(--hero-parallax, 0px) + var(--parallax-y, 0px)), 0) scale(1.11);
  transition: transform 0.3s linear, filter 0.35s ease;
  will-change: transform;
}

.hero-copy > * {
  opacity: 0;
  transform: translateY(26px);
}

body.is-ready .hero-copy > .eyebrow {
  animation: heroEnterSlow 1.02s cubic-bezier(0.22, 1, 0.36, 1) 0.08s forwards;
}

body.is-ready .hero-copy > h1 {
  animation: heroEnterSlow 1.18s cubic-bezier(0.22, 1, 0.36, 1) 0.22s forwards;
}

body.is-ready .hero-copy > .hero-lead {
  animation: heroEnterSlow 1.18s cubic-bezier(0.22, 1, 0.36, 1) 0.4s forwards;
}

body.is-ready .hero-copy > .button-row {
  animation: heroEnterSlow 1.18s cubic-bezier(0.22, 1, 0.36, 1) 0.58s forwards;
}

body.is-ready .scroll-indicator {
  animation:
    heroEnterCenter 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.82s forwards,
    floatScrollCenter 3.8s ease-in-out 2.1s infinite;
}

.reveal {
  opacity: 0;
  transform: translateY(34px) scale(0.985);
  filter: blur(7px);
  transition:
    opacity 1.18s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.18s cubic-bezier(0.22, 1, 0.36, 1),
    filter 1.18s ease;
  transition-delay: var(--reveal-delay, 0s);
  will-change: transform, opacity, filter;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.section-heading > .eyebrow { --reveal-delay: 0.02s; }
.section-heading > h2 { --reveal-delay: 0.16s; }
.section-heading > .section-lead { --reveal-delay: 0.32s; }

.feature-list .feature-item:nth-child(1) { --reveal-delay: 0.06s; }
.feature-list .feature-item:nth-child(2) { --reveal-delay: 0.14s; }
.feature-list .feature-item:nth-child(3) { --reveal-delay: 0.22s; }
.feature-list .feature-item:nth-child(4) { --reveal-delay: 0.30s; }
.feature-list .feature-item:nth-child(5) { --reveal-delay: 0.38s; }
.feature-layout .assistant-card { --reveal-delay: 0.18s; }

.benefit-grid > :nth-child(1),
.pricing-grid > :nth-child(1),
.contact-grid > :nth-child(1),
.faq-column > :nth-child(1) { --reveal-delay: 0.05s; }

.benefit-grid > :nth-child(2),
.pricing-grid > :nth-child(2),
.contact-grid > :nth-child(2),
.faq-column > :nth-child(2) { --reveal-delay: 0.16s; }

.benefit-grid > :nth-child(3),
.pricing-grid > :nth-child(3),
.contact-grid > :nth-child(3),
.faq-column > :nth-child(3) { --reveal-delay: 0.27s; }

.faq-column > :nth-child(4) { --reveal-delay: 0.38s; }

.contact-copy > .eyebrow { --reveal-delay: 0.04s; }
.contact-copy > h2 { --reveal-delay: 0.18s; }
.contact-copy > .section-lead { --reveal-delay: 0.32s; }

.footer-spotlight > .eyebrow { --reveal-delay: 0.04s; }
.footer-spotlight > .footer-title { --reveal-delay: 0.18s; }
.footer-spotlight > .footer-lead { --reveal-delay: 0.34s; }
.footer-spotlight > .footer-actions { --reveal-delay: 0.48s; }
.footer-meta > *:nth-child(1) { --reveal-delay: 0.08s; }
.footer-meta > *:nth-child(2) { --reveal-delay: 0.18s; }
.footer-meta > *:nth-child(3) { --reveal-delay: 0.28s; }
.footer-links > div:nth-child(1) { --reveal-delay: 0.12s; }
.footer-links > div:nth-child(2) { --reveal-delay: 0.22s; }

.feature-item,
.benefit-card,
.pricing-card,
.contact-card,
.faq-item,
.assistant-card,
.contact-shell,
.footer-spotlight,
.footer-bottom {
  transition:
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.36s ease,
    box-shadow 0.42s ease,
    background 0.36s ease;
}

.feature-item:hover,
.benefit-card:hover,
.pricing-card:hover,
.contact-card:hover,
.faq-item:hover,
.assistant-card:hover,
.contact-shell:hover,
.footer-spotlight:hover {
  transform: translateY(-3px);
}

.benefit-media img,
.assistant-card > img {
  --parallax-y: 0px;
  --image-scale: 1.035;
  transform: translate3d(0, var(--parallax-y), 0) scale(var(--image-scale));
  transition: transform 1.15s cubic-bezier(0.22, 1, 0.36, 1), filter 0.5s ease;
  will-change: transform;
}

.benefit-card:hover .benefit-media img,
.assistant-card:hover > img {
  --image-scale: 1.058;
}

.feature-panel {
  transition: max-height 0.56s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.32s ease;
}

.feature-panel-inner {
  transition: transform 0.48s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.34s ease;
}

.site-footer {
  position: relative;
  margin-top: 64px;
  padding: 0 0 42px;
  background:
    radial-gradient(circle at 18% 12%, rgba(112, 132, 255, 0.16), transparent 26%),
    radial-gradient(circle at 76% 8%, rgba(255, 149, 86, 0.13), transparent 24%),
    radial-gradient(circle at 50% 0%, rgba(224, 106, 255, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(6, 8, 11, 0.3) 0%, rgba(4, 5, 6, 0.98) 18%, #040506 100%);
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(180deg, rgba(255,255,255,0.05), transparent 24%);
  pointer-events: none;
}

.footer-shell {
  position: relative;
  z-index: 1;
}

.footer-spotlight {
  position: relative;
  overflow: hidden;
  padding: 52px 44px 46px;
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(180deg, rgba(10, 13, 19, 0.74) 0%, rgba(7, 9, 13, 0.95) 100%);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.footer-spotlight::before,
.footer-spotlight::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(34px);
  pointer-events: none;
}

.footer-spotlight::before {
  width: 360px;
  height: 360px;
  top: -160px;
  left: -40px;
  background: radial-gradient(circle, rgba(112, 132, 255, 0.22) 0%, rgba(112, 132, 255, 0) 72%);
}

.footer-spotlight::after {
  width: 320px;
  height: 320px;
  right: -40px;
  bottom: -140px;
  background: radial-gradient(circle, rgba(255, 152, 104, 0.2) 0%, rgba(255, 152, 104, 0) 74%);
}

.footer-ambient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 52% 18%, rgba(255, 255, 255, 0.08), transparent 20%),
    linear-gradient(135deg, rgba(255,255,255,0.035), transparent 44%, rgba(255,255,255,0.02) 100%);
  pointer-events: none;
}

.footer-title,
.footer-lead,
.footer-actions,
.footer-spotlight .eyebrow {
  position: relative;
  z-index: 1;
}

.footer-title {
  margin: 0;
  max-width: 900px;
  font-size: clamp(2.2rem, 4.1vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.footer-lead {
  margin: 18px 0 0;
  max-width: 640px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.03rem;
  line-height: 1.6;
  letter-spacing: -0.02em;
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.footer-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 36px;
  padding-top: 28px;
  margin-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-meta {
  display: grid;
  gap: 14px;
}

.footer-brand {
  margin-bottom: 0;
}

.footer-copy {
  margin: 0;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.68);
}

.footer-email {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  letter-spacing: -0.02em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  padding-bottom: 2px;
}

.footer-links {
  align-self: start;
  padding-top: 2px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
}

.footer-links a:hover,
.footer-email:hover {
  color: var(--white);
}

@keyframes heroEnterSlow {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1120px) {
  .footer-spotlight {
    padding: 44px 32px 38px;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 820px) {
  .reveal {
    transform: translateY(26px) scale(0.99);
    filter: blur(5px);
  }

  .footer-title {
    max-width: 12ch;
  }

  .footer-spotlight {
    padding: 38px 24px 32px;
  }

  .footer-actions {
    margin-top: 24px;
  }
}

@media (max-width: 600px) {
  .footer-actions {
    flex-direction: column;
  }

  .footer-actions .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-media img,
  .benefit-media img,
  .assistant-card > img,
  .reveal,
  .scroll-indicator,
  .hero-copy > * {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    filter: none !important;
    opacity: 1 !important;
  }
}


/* footer + hero visibility refinement */
.site-footer {
  background: #040506 !important;
}

.site-footer::before {
  display: none !important;
}

.hero-media img {
  object-position: center 44%;
  filter: saturate(0.96) brightness(0.9) contrast(1.02) !important;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(4, 5, 6, 0.72) 0%, rgba(4, 5, 6, 0.54) 28%, rgba(4, 5, 6, 0.34) 56%, rgba(4, 5, 6, 0.62) 100%),
    linear-gradient(180deg, rgba(4, 5, 6, 0.18) 0%, rgba(4, 5, 6, 0.06) 32%, rgba(4, 5, 6, 0.34) 100%) !important;
}

@media (max-width: 1120px) {
  .hero-media img {
    object-position: center center;
    filter: saturate(0.98) brightness(0.94) contrast(1.02) !important;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(4, 5, 6, 0.48) 0%, rgba(4, 5, 6, 0.34) 38%, rgba(4, 5, 6, 0.54) 100%),
      linear-gradient(90deg, rgba(4, 5, 6, 0.36) 0%, rgba(4, 5, 6, 0.18) 100%) !important;
  }
}

/* mobile nav futurism + compact hero buttons */
.menu-toggle {
  display: none;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 4px;
  place-items: center;
}

.menu-toggle .menu-dot {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.05);
  transition:
    transform 0.34s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.24s ease,
    background 0.24s ease,
    box-shadow 0.32s ease;
}

.menu-toggle:hover .menu-dot,
.menu-toggle:focus-visible .menu-dot {
  background: rgba(255, 255, 255, 1);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.09),
    0 0 14px rgba(164, 124, 255, 0.14);
}

.menu-toggle[aria-expanded="true"] .menu-dot:nth-child(1) { transform: translate(1px, 1px); }
.menu-toggle[aria-expanded="true"] .menu-dot:nth-child(2) { transform: translate(-1px, 1px); }
.menu-toggle[aria-expanded="true"] .menu-dot:nth-child(3) { transform: translate(1px, -1px); }
.menu-toggle[aria-expanded="true"] .menu-dot:nth-child(4) { transform: translate(-1px, -1px); }

@media (max-width: 1120px) {
  .menu-toggle {
    display: inline-grid !important;
    align-self: center;
    justify-self: end;
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
      linear-gradient(180deg, rgba(16, 18, 24, 0.9), rgba(8, 10, 14, 0.92));
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.04),
      0 10px 22px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(20px);
  }

  .menu-toggle:hover,
  .menu-toggle:focus-visible {
    border-color: rgba(255, 255, 255, 0.13);
    transform: translateY(-1px);
  }

  .site-nav {
    display: flex !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px) scale(0.985);
    transform-origin: top right;
    transition:
      opacity 0.28s ease,
      transform 0.34s cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0s linear 0.28s;
    background:
      linear-gradient(180deg, rgba(10, 12, 16, 0.94), rgba(7, 9, 12, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
      0 22px 46px rgba(0, 0, 0, 0.34),
      inset 0 1px 0 rgba(255, 255, 255, 0.04);
    overflow: hidden;
  }

  .site-nav::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at top right, rgba(121, 142, 255, 0.11), transparent 28%),
      linear-gradient(180deg, rgba(255,255,255,0.03), transparent 24%);
    pointer-events: none;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    transition-delay: 0s;
  }

  .nav-link {
    position: relative;
    display: block;
    width: 100%;
    height: 42px;
    overflow: hidden;
    border-radius: 7px;
  }

  .link-track {
    display: flex !important;
    flex-direction: column;
    transform: translateY(0) !important;
    transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .link-track span {
    display: flex !important;
    align-items: center;
    min-height: 42px;
    padding: 0 12px;
    line-height: 1;
  }

  .link-track span:last-child {
    display: flex !important;
    color: rgba(255, 255, 255, 1);
  }

  .nav-link:hover,
  .nav-link:focus-visible {
    background: rgba(255, 255, 255, 0.045);
  }

  .nav-link:hover .link-track,
  .nav-link:focus-visible .link-track {
    transform: translateY(-42px) !important;
  }

  .site-nav .nav-link {
    opacity: 0;
    transform: translateY(8px);
    transition:
      opacity 0.28s ease,
      transform 0.34s cubic-bezier(0.22, 1, 0.36, 1),
      background 0.24s ease;
  }

  .site-nav.is-open .nav-link {
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav.is-open .nav-link:nth-child(1) { transition-delay: 0.03s; }
  .site-nav.is-open .nav-link:nth-child(2) { transition-delay: 0.06s; }
  .site-nav.is-open .nav-link:nth-child(3) { transition-delay: 0.09s; }
  .site-nav.is-open .nav-link:nth-child(4) { transition-delay: 0.12s; }
  .site-nav.is-open .nav-link:nth-child(5) { transition-delay: 0.15s; }
  .site-nav.is-open .nav-link:nth-child(6) { transition-delay: 0.18s; }
}

@media (max-width: 600px) {
  .hero-inner {
    padding-bottom: 88px;
  }

  .button-row {
    justify-content: center;
    gap: 9px;
    width: 100%;
  }

  .button-row .button {
    width: auto !important;
    min-height: 37px;
    padding-inline: 14px;
    border-radius: 8px;
    flex: 0 0 auto;
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-copy .eyebrow,
  .hero-copy h1,
  .hero-copy .hero-lead {
    text-align: center;
  }

  .hero-copy h1 {
    max-width: 11.5ch;
  }

  .hero-lead {
    max-width: 34ch;
  }
}

@media (max-width: 600px) {
  .hero-copy {
    display: block;
    text-align: left;
  }

  .hero-copy .eyebrow,
  .hero-copy h1,
  .hero-copy .hero-lead {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }
}


/* three-dot mobile menu + frameless creative services visual */
.menu-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 28px;
  height: 28px;
  padding: 0;
  margin: 0;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  appearance: none;
}

.menu-toggle .menu-dot {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: none !important;
  transition:
    transform 0.34s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.24s ease,
    background 0.24s ease;
}

.menu-toggle:hover .menu-dot,
.menu-toggle:focus-visible .menu-dot {
  background: rgba(255, 255, 255, 1);
}

.menu-toggle:hover .menu-dot:nth-child(1),
.menu-toggle:focus-visible .menu-dot:nth-child(1) {
  transform: translateY(-1px);
}

.menu-toggle:hover .menu-dot:nth-child(3),
.menu-toggle:focus-visible .menu-dot:nth-child(3) {
  transform: translateY(1px);
}

.menu-toggle[aria-expanded="true"] .menu-dot:nth-child(1) {
  transform: translate3d(-1px, -1px, 0);
}

.menu-toggle[aria-expanded="true"] .menu-dot:nth-child(2) {
  opacity: 0.52;
  transform: scale(0.9);
}

.menu-toggle[aria-expanded="true"] .menu-dot:nth-child(3) {
  transform: translate3d(1px, 1px, 0);
}

@media (max-width: 1120px) {
  .menu-toggle {
    display: inline-flex !important;
    align-self: center;
    justify-self: end;
  }

  .menu-toggle:hover,
  .menu-toggle:focus-visible {
    transform: none !important;
    border: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
  }
}

.assistant-card {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.assistant-card::before,
.assistant-card::after {
  display: none !important;
}

.assistant-card > img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: var(--radius) !important;
  box-shadow: none !important;
}

.assistant-card:hover {
  border-color: transparent !important;
  box-shadow: none !important;
}


/* final visibility + frameless creative services refinements */
.hero::before {
  background:
    radial-gradient(circle at 56% 22%, rgba(104, 139, 212, 0.11), transparent 24%),
    radial-gradient(circle at 48% 56%, rgba(255, 255, 255, 0.028), transparent 20%),
    linear-gradient(180deg, rgba(4, 5, 6, 0.04) 0%, rgba(4, 5, 6, 0.01) 24%, rgba(4, 5, 6, 0.16) 72%, rgba(4, 5, 6, 0.68) 100%);
}

.hero-media::after {
  background:
    radial-gradient(circle at center, rgba(255,255,255,0.03), transparent 34%),
    linear-gradient(90deg, rgba(4,5,6,0.52) 0%, rgba(4,5,6,0.26) 26%, rgba(4,5,6,0.12) 52%, rgba(4,5,6,0.44) 100%),
    linear-gradient(180deg, rgba(4,5,6,0.18) 0%, rgba(4,5,6,0.02) 24%, rgba(4,5,6,0.08) 58%, rgba(4,5,6,0.46) 100%);
}

.hero-media img {
  object-position: center 34%;
  filter: saturate(0.98) brightness(0.86) contrast(1.05);
  transform: translate3d(0, var(--hero-parallax), 0) scale(1.08);
}

.hero::after {
  height: 180px;
  background: linear-gradient(180deg, rgba(4, 5, 6, 0) 0%, rgba(4, 5, 6, 0.04) 24%, rgba(4, 5, 6, 0.24) 60%, #040506 100%);
}

.hero-copy {
  text-shadow: 0 10px 34px rgba(0, 0, 0, 0.18);
}

.assistant-card {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  outline: none !important;
  padding: 0 !important;
}

.assistant-card > img {
  border: 0 !important;
  outline: none !important;
  box-shadow: none !important;
  border-radius: 12px !important;
  object-fit: cover;
  object-position: center center;
  background: transparent !important;
}

.assistant-card::before,
.assistant-card::after {
  display: none !important;
  content: none !important;
}

.feature-layout {
  align-items: stretch;
}

@media (max-width: 900px) {
  .hero-media::after {
    background:
      linear-gradient(180deg, rgba(4,5,6,0.18) 0%, rgba(4,5,6,0.02) 26%, rgba(4,5,6,0.1) 64%, rgba(4,5,6,0.52) 100%),
      linear-gradient(90deg, rgba(4,5,6,0.42) 0%, rgba(4,5,6,0.18) 36%, rgba(4,5,6,0.32) 100%);
  }

  .hero-media img {
    object-position: center 30%;
    filter: saturate(1) brightness(0.9) contrast(1.04);
  }
}

/* hero visibility refinement v2 — reversible backup saved as style.backup-before-hero-lighten.css */
.hero-media::after {
  background: none !important;
}

.hero::before {
  background:
    radial-gradient(circle at 60% 24%, rgba(120, 148, 220, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(4, 5, 6, 0.03) 0%, rgba(4, 5, 6, 0.00) 34%, rgba(4, 5, 6, 0.10) 100%) !important;
}

.hero-overlay {
  background:
    linear-gradient(90deg,
      rgba(4, 5, 6, 0.38) 0%,
      rgba(4, 5, 6, 0.20) 24%,
      rgba(4, 5, 6, 0.08) 48%,
      rgba(4, 5, 6, 0.18) 100%) !important;
}

.hero-media img {
  object-position: center 32% !important;
  filter: saturate(1.02) brightness(1.05) contrast(1.03) !important;
  transform: translate3d(0, var(--hero-parallax, 0px), 0) scale(1.06) !important;
}

.hero::after {
  height: 120px !important;
  background: linear-gradient(180deg, rgba(4, 5, 6, 0) 0%, rgba(4, 5, 6, 0.04) 58%, #040506 100%) !important;
}

.hero-copy {
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.14) !important;
}

@media (max-width: 1120px) {
  .hero-overlay {
    background: linear-gradient(180deg, rgba(4, 5, 6, 0.22) 0%, rgba(4, 5, 6, 0.08) 34%, rgba(4, 5, 6, 0.22) 100%),
                linear-gradient(90deg, rgba(4, 5, 6, 0.26) 0%, rgba(4, 5, 6, 0.12) 100%) !important;
  }

  .hero-media img {
    object-position: center 30% !important;
    filter: saturate(1.01) brightness(1.02) contrast(1.03) !important;
  }
}

@media (max-width: 640px) {
  .hero-overlay {
    background: linear-gradient(180deg, rgba(4, 5, 6, 0.26) 0%, rgba(4, 5, 6, 0.10) 36%, rgba(4, 5, 6, 0.26) 100%) !important;
  }

  .hero-media img {
    object-position: center 28% !important;
    filter: saturate(1.01) brightness(1.00) contrast(1.03) !important;
  }
}


/* --- final mobile menu refinement: fullscreen black menu + 3 dots merge into one --- */
body.nav-open {
  overflow: hidden;
}

.mobile-menu-brand,
.mobile-menu-cta {
  display: none;
}

.mobile-menu-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 26px;
  height: 26px;
  padding: 0;
  margin: 0;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  appearance: none;
}

.menu-toggle .menu-dot {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  transition:
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.28s ease,
    background-color 0.24s ease,
    box-shadow 0.28s ease;
}

.menu-toggle:hover .menu-dot,
.menu-toggle:focus-visible .menu-dot {
  background: #ffffff;
}

.menu-toggle:hover .menu-dot:nth-child(1),
.menu-toggle:focus-visible .menu-dot:nth-child(1) {
  transform: translateY(-1px);
}
.menu-toggle:hover .menu-dot:nth-child(3),
.menu-toggle:focus-visible .menu-dot:nth-child(3) {
  transform: translateY(1px);
}

.menu-toggle[aria-expanded="true"] .menu-dot:nth-child(1) {
  transform: translateY(9px) scale(0.7);
  opacity: 0.18;
}
.menu-toggle[aria-expanded="true"] .menu-dot:nth-child(2) {
  transform: scale(1.08);
  opacity: 1;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.04);
}
.menu-toggle[aria-expanded="true"] .menu-dot:nth-child(3) {
  transform: translateY(-9px) scale(0.7);
  opacity: 0.18;
}

@media (max-width: 1120px) {
  .menu-toggle {
    display: inline-flex !important;
    align-self: center;
    justify-self: end;
    position: relative;
    z-index: 130;
  }

  .menu-toggle:hover,
  .menu-toggle:focus-visible {
    transform: none !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
  }

  .site-nav {
    position: fixed !important;
    inset: 0 !important;
    width: 100vw !important;
    height: 100svh !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0 !important;
    padding: 28px 24px 34px !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: #040506 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translateY(-10px) !important;
    transition:
      opacity 0.36s ease,
      visibility 0.36s ease,
      transform 0.52s cubic-bezier(0.22, 1, 0.36, 1) !important;
    z-index: 120 !important;
  }

  .site-nav.is-open {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
  }

  .mobile-menu-brand,
  .mobile-menu-links,
  .mobile-menu-cta {
    display: flex !important;
  }

  .mobile-menu-brand {
    align-items: center;
    gap: 12px;
    margin: 0 0 34px;
    color: rgba(255, 255, 255, 0.98);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.03em;
  }

  .mobile-menu-brand .brand-mark {
    width: 24px;
    height: 24px;
  }

  .mobile-menu-brand .brand-mark svg {
    width: 24px;
    height: 24px;
  }

  .mobile-menu-links {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .site-nav .nav-link {
    width: auto !important;
    height: 1.02em !important;
    overflow: hidden !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: rgba(255, 255, 255, 0.96) !important;
    font-size: clamp(1.45rem, 4.35vw, 2.12rem) !important;
    font-weight: 400;
    letter-spacing: -0.05em !important;
    line-height: 1.02 !important;
  }

  .site-nav .nav-link:hover,
  .site-nav .nav-link:focus-visible {
    background: transparent !important;
    text-shadow: none !important;
  }

  .site-nav .link-track {
    display: block !important;
    transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1) !important;
    transform: translateY(0) !important;
    will-change: transform;
  }

  .site-nav .link-track span {
    display: block !important;
    padding: 0 !important;
    height: 1.02em !important;
    line-height: 1.02em !important;
  }

  .site-nav .link-track span:last-child {
    display: block !important;
  }

  .site-nav .nav-link:hover .link-track,
  .site-nav .nav-link:focus-visible .link-track {
    transform: translateY(-50%) !important;
  }

  .mobile-menu-cta {
    margin-top: 34px;
    min-height: 40px;
    padding-inline: 18px;
  }

  .site-nav .mobile-menu-brand,
  .site-nav .mobile-menu-links .nav-link,
  .site-nav .mobile-menu-cta {
    opacity: 0;
    transform: translateY(14px);
    transition:
      opacity 0.44s ease,
      transform 0.58s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .site-nav.is-open .mobile-menu-brand,
  .site-nav.is-open .mobile-menu-links .nav-link,
  .site-nav.is-open .mobile-menu-cta {
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav.is-open .mobile-menu-brand { transition-delay: 0.08s; }
  .site-nav.is-open .mobile-menu-links .nav-link:nth-child(1) { transition-delay: 0.14s; }
  .site-nav.is-open .mobile-menu-links .nav-link:nth-child(2) { transition-delay: 0.18s; }
  .site-nav.is-open .mobile-menu-links .nav-link:nth-child(3) { transition-delay: 0.22s; }
  .site-nav.is-open .mobile-menu-links .nav-link:nth-child(4) { transition-delay: 0.26s; }
  .site-nav.is-open .mobile-menu-links .nav-link:nth-child(5) { transition-delay: 0.30s; }
  .site-nav.is-open .mobile-menu-links .nav-link:nth-child(6) { transition-delay: 0.34s; }
  .site-nav.is-open .mobile-menu-cta { transition-delay: 0.40s; }

  .header-cta {
    display: none !important;
  }
}

@media (max-width: 600px) {
  .mobile-menu-brand {
    margin-bottom: 30px;
  }

  .mobile-menu-links {
    gap: 16px;
  }

  .site-nav .nav-link {
    font-size: clamp(1.45rem, 7.5vw, 2rem) !important;
  }

  .mobile-menu-cta {
    margin-top: 28px;
  }
}


/* desktop nav visibility fix */
@media (min-width: 1121px) {
  .site-nav {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 24px;
  }

  .mobile-menu-links {
    display: flex !important;
    align-items: center;
    gap: 24px;
  }

  .mobile-menu-brand,
  .mobile-menu-cta {
    display: none !important;
  }
}

@media (max-width: 600px) {
  .site-nav .nav-link {
    font-size: clamp(1.36rem, 7vw, 1.9rem) !important;
  }
}


/* === March 29 refinement pass: darker atmosphere, refined ways-to-work cards, sharper geometry === */
:root {
  --radius: 7px;
  --radius-sm: 5px;
  --line: rgba(255, 255, 255, 0.07);
}

body {
  background:
    radial-gradient(circle at 50% -8%, rgba(255, 255, 255, 0.03) 0%, transparent 26%),
    radial-gradient(circle at 12% 18%, rgba(95, 110, 255, 0.018) 0%, transparent 22%),
    radial-gradient(circle at 86% 30%, rgba(255, 144, 104, 0.012) 0%, transparent 20%),
    linear-gradient(180deg, #030405 0%, #040506 46%, #030405 100%) !important;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.038;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.05' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='0.9'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 998;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,0.02), transparent 38%),
    linear-gradient(180deg, rgba(255,255,255,0.012) 0%, transparent 18%, transparent 82%, rgba(0,0,0,0.12) 100%);
}

.texture-grid::before {
  opacity: 0.68;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.03) 1px, transparent 0);
  background-size: 16px 16px;
}

.site-header,
.feature-item,
.benefit-card,
.pricing-card,
.contact-card,
.contact-shell,
.faq-item,
.assistant-overlay,
.assistant-card,
.button,
.mobile-menu-cta,
.feature-trigger,
.billing-switch,
.discount-pill,
.popular-pill {
  border-radius: var(--radius-sm) !important;
}

.section-pricing .section-heading {
  margin-bottom: 14px;
}

.pricing-switch-row {
  margin-bottom: 26px;
}

.pricing-grid {
  align-items: stretch;
  gap: 16px;
}

.pricing-card {
  position: relative;
  overflow: hidden;
  min-height: 568px;
  padding: 28px 28px 26px !important;
  background:
    linear-gradient(180deg, rgba(10, 12, 15, 0.97) 0%, rgba(7, 9, 12, 0.985) 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.03),
    0 20px 40px rgba(0,0,0,0.16) !important;
}

.pricing-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02) 0%, transparent 24%, transparent 100%),
    radial-gradient(circle at top center, rgba(255,255,255,0.035) 0%, transparent 38%);
  opacity: 0.9;
}

.pricing-card > * {
  position: relative;
  z-index: 1;
}

.pricing-card,
.pricing-card .pricing-title-row {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.pricing-title-row {
  flex-direction: row !important;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  min-height: 30px;
}

.pricing-card h3,
.pricing-title-row h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.038em;
}

.pricing-card h3 { order: 1; }
.pricing-title-row { order: 1; }

.price {
  order: 2;
  margin: 18px 0 0 !important;
  font-size: clamp(2.45rem, 3vw, 3.25rem) !important;
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.price-note {
  order: 3;
  margin: 8px 0 0 !important;
  color: rgba(255,255,255,0.56) !important;
  font-size: 13px !important;
  letter-spacing: -0.018em;
  text-transform: none;
}

.pricing-copy {
  order: 4;
  margin: 16px 0 0 !important;
  min-height: 4.8em;
  max-width: none !important;
  color: rgba(255,255,255,0.66) !important;
  font-size: 14px !important;
  line-height: 1.45 !important;
}

.pricing-card .button {
  order: 5;
  align-self: flex-start;
  margin-top: 26px !important;
  min-height: 40px;
  padding-inline: 16px;
}

.pricing-divider {
  order: 6;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  width: 100%;
  margin: 28px 0 18px;
  color: rgba(255,255,255,0.48);
  font-size: 12px;
  letter-spacing: -0.015em;
}

.pricing-divider::before,
.pricing-divider::after {
  content: "";
  display: block;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
}

.pricing-divider::after {
  background: linear-gradient(90deg, rgba(255,255,255,0.04), rgba(255,255,255,0.12));
}

.feature-checks {
  order: 7;
  gap: 12px;
}

.feature-checks li {
  padding-left: 24px;
  color: rgba(255,255,255,0.74) !important;
  font-size: 14px !important;
  line-height: 1.42;
}

.feature-checks li::before {
  top: 1px;
  width: 16px;
  height: 16px;
  font-size: 9px;
  background: rgba(255,255,255,0.055) !important;
  color: rgba(255,255,255,0.8) !important;
}

.popular-pill,
.discount-pill {
  min-height: 28px;
  padding: 0 11px;
  border-radius: 999px !important;
  font-size: 13px;
}

.billing-switch {
  border-radius: 999px !important;
}

@media (max-width: 1120px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card {
    min-height: auto;
  }

  .pricing-copy {
    min-height: 0;
  }
}


/* === March 29 refinement pass 3: preserve hero/nav, deepen site atmosphere, green active accent, premium button glow === */
:root {
  --bg: #030304;
  --bg-soft: #060709;
}

body {
  position: relative;
  background:
    radial-gradient(circle at 50% -10%, rgba(255, 255, 255, 0.03), transparent 23%),
    radial-gradient(circle at 18% 12%, rgba(23, 26, 34, 0.18), transparent 28%),
    radial-gradient(circle at 84% 10%, rgba(16, 18, 24, 0.16), transparent 26%),
    linear-gradient(180deg, #040506 0%, #020203 100%) !important;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  z-index: 0;
  background-image: url("assets/replacements/site-texture-from-image-2-text-removed.png");
  background-repeat: repeat;
  background-size: 220px 220px;
  opacity: 0.1;
  mix-blend-mode: soft-light;
}

body::after {
  z-index: 0;
  background:
    radial-gradient(circle at 50% -8%, rgba(255,255,255,0.016), transparent 22%),
    radial-gradient(circle at 50% 12%, rgba(255,255,255,0.012), transparent 34%),
    radial-gradient(circle at 50% 100%, rgba(0,0,0,0.12), transparent 48%);
}

main,
.site-footer {
  position: relative;
  z-index: 1;
}

.feature-item.is-active .feature-title::before {
  background: var(--green) !important;
  box-shadow: 0 0 0 1px rgba(104, 211, 95, 0.14), 0 0 12px rgba(104, 211, 95, 0.18);
}

.feature-item.is-active {
  border-color: rgba(104, 211, 95, 0.18);
}

.button {
  position: relative;
  isolation: isolate;
  overflow: visible;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.45s ease,
    background 0.45s ease,
    color 0.45s ease,
    box-shadow 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.button::before {
  content: "";
  position: absolute;
  inset: -6px;
  z-index: -1;
  border-radius: inherit;
  background: radial-gradient(circle at center, rgba(241, 161, 73, 0.28) 0%, rgba(241, 161, 73, 0.14) 34%, rgba(241, 161, 73, 0) 76%);
  filter: blur(12px);
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.button:hover::before,
.button:focus-visible::before {
  opacity: 0.9;
  transform: scale(1.02);
}

.button:hover,
.button:focus-visible {
  box-shadow: 0 0 0 1px rgba(241, 161, 73, 0.07), 0 0 0 7px rgba(241, 161, 73, 0.04), 0 18px 38px rgba(241, 161, 73, 0.12);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #ffffff;
  color: #121417;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(241, 161, 73, 0.16);
}

@media (max-width: 820px) {
  body::before {
    opacity: 0.08;
    background-size: 180px 180px;
  }
}


/* === March 30 compact alignment refinement === */
html {
  scroll-padding-top: calc(var(--header-height) + 24px);
}

:root {
  --header-height: 68px;
}

.section {
  padding-top: 90px !important;
}

.section-heading {
  margin-bottom: 34px !important;
  max-width: min(75vw, 1200px);
}

.section-heading h2,
.contact-copy h2 {
  font-size: clamp(2rem, 3.25vw, 3rem) !important;
  line-height: 1.06 !important;
  letter-spacing: -0.048em !important;
  margin-bottom: 14px !important;
  max-width: min(75vw, 22ch);
}

.section-lead,
.contact-copy .section-lead,
.hero-lead {
  font-size: 15px !important;
  line-height: 1.55 !important;
  max-width: 640px !important;
}

.eyebrow {
  font-size: 14px !important;
}

.section-benefits .section-heading,
.section-pricing .section-heading,
.section-faq .section-heading {
  margin-bottom: 26px !important;
}

.benefit-grid,
.pricing-grid,
.faq-grid,
.contact-grid {
  gap: 16px !important;
}

.benefit-card {
  min-height: 392px !important;
}

.benefit-media {
  min-height: 232px !important;
}

.benefit-body {
  padding: 18px 18px 20px !important;
}

.card-kicker {
  margin-bottom: 10px !important;
  font-size: 13px !important;
}

.card-text {
  font-size: 14px !important;
  line-height: 1.46 !important;
}

.feature-layout {
  align-items: start !important;
  gap: 18px !important;
}

.feature-item {
  padding: 0 !important;
}

.feature-trigger {
  min-height: 60px !important;
  padding: 0 18px !important;
}

.feature-title {
  font-size: 18px !important;
}

.feature-panel-inner {
  padding: 0 18px 16px !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
}

.assistant-overlay {
  padding: 22px 22px 20px !important;
}

.assistant-overlay h3 {
  font-size: clamp(1.85rem, 3.2vw, 2.5rem) !important;
  line-height: 1.02 !important;
}

.assistant-overlay p,
.assistant-kicker {
  font-size: 14px !important;
}

.section-pricing .container {
  display: flex;
  flex-direction: column;
}

.pricing-switch-row {
  margin-bottom: 22px !important;
}

.switch-label {
  font-size: 14px !important;
}

.discount-pill,
.popular-pill {
  min-height: 26px !important;
  padding: 0 10px !important;
  font-size: 12px !important;
}

.pricing-grid {
  align-items: stretch !important;
  gap: 16px !important;
}

.pricing-card {
  min-height: 510px !important;
  padding: 24px 24px 22px !important;
}

.pricing-title-row {
  min-height: 28px !important;
}

.pricing-card h3,
.pricing-title-row h3 {
  font-size: 16px !important;
  letter-spacing: -0.04em !important;
}

.price {
  margin-top: 14px !important;
  font-size: clamp(2.2rem, 2.8vw, 3rem) !important;
  line-height: 0.94 !important;
}

.price-note {
  margin-top: 7px !important;
  font-size: 12.5px !important;
}

.pricing-copy {
  margin-top: 12px !important;
  min-height: 4.25em !important;
  font-size: 13.5px !important;
  line-height: 1.42 !important;
}

.pricing-card .button {
  margin-top: 20px !important;
  min-height: 38px !important;
  padding-inline: 14px !important;
  font-size: 13.5px !important;
}

.pricing-divider {
  margin: 22px 0 16px !important;
}

.feature-checks {
  gap: 10px !important;
}

.feature-checks li {
  padding-left: 22px !important;
  font-size: 13.5px !important;
  line-height: 1.36 !important;
}

.feature-checks li::before {
  width: 15px !important;
  height: 15px !important;
  font-size: 8px !important;
}

.faq-item summary {
  padding: 18px 20px !important;
  font-size: 17px !important;
}

.faq-answer {
  padding: 0 20px 18px !important;
  font-size: 14px !important;
  line-height: 1.52 !important;
}

.contact-shell {
  padding: 34px !important;
}

.contact-card {
  padding: 22px !important;
}

.contact-card p,
.contact-card a:not(.button) {
  font-size: 14px !important;
}

#overview,
#features,
#pricing,
#about,
#integrations {
  scroll-margin-top: calc(var(--header-height) + 22px);
}

@media (min-width: 1121px) {
  .section-pricing .container {
    min-height: calc(100svh - var(--header-height) - 12px);
    justify-content: center;
  }
}

@media (max-width: 1120px) {
  .section {
    padding-top: 82px !important;
  }

  .section-heading h2,
  .contact-copy h2 {
    font-size: clamp(1.9rem, 5vw, 2.6rem) !important;
    line-height: 1.07 !important;
    max-width: min(82vw, 20ch);
  }

  .pricing-card {
    min-height: auto !important;
  }

  .pricing-copy {
    min-height: 0 !important;
  }
}

@media (max-width: 820px) {
  .feature-trigger {
    min-height: 56px !important;
  }

  .feature-title {
    font-size: 17px !important;
  }

  .pricing-card,
  .contact-card,
  .contact-shell,
  .benefit-body,
  .assistant-overlay {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}

@media (max-width: 600px) {
  .section {
    padding-top: 74px !important;
  }

  .section-heading {
    margin-bottom: 24px !important;
  }

  .section-heading h2,
  .contact-copy h2 {
    font-size: clamp(1.7rem, 7.2vw, 2.2rem) !important;
    line-height: 1.08 !important;
    max-width: 88vw;
  }

  .section-lead,
  .hero-lead,
  .contact-copy .section-lead {
    font-size: 14px !important;
  }

  .pricing-card {
    padding: 22px 18px 20px !important;
  }

  .price {
    font-size: clamp(2rem, 10vw, 2.6rem) !important;
  }

  .pricing-copy,
  .feature-checks li,
  .card-text,
  .feature-panel-inner,
  .faq-answer,
  .contact-card p,
  .contact-card a:not(.button) {
    font-size: 13.5px !important;
  }
}


/* Section headline width expansion refinement */
.section-heading {
  max-width: min(75vw, 1200px) !important;
}
.section-heading h2,
.contact-copy h2 {
  max-width: min(75vw, 22ch) !important;
}
@media (max-width: 1120px) {
  .section-heading h2,
  .contact-copy h2 {
    max-width: min(82vw, 20ch) !important;
  }
}
@media (max-width: 768px) {
  .section-heading {
    max-width: 100% !important;
  }
  .section-heading h2,
  .contact-copy h2 {
    max-width: 88vw !important;
  }
}


/* Ways to work consistency refinements */
.popular-pill {
  display: none !important;
}

.pricing-card .pricing-title-row {
  display: contents !important;
}

.pricing-card h3 {
  margin-top: 0 !important;
}

/* Contact card button alignment */
.contact-grid {
  align-items: stretch !important;
}
.contact-card {
  display: flex !important;
  flex-direction: column !important;
  min-height: 100% !important;
}
.contact-card .button {
  margin-top: auto !important;
  align-self: flex-start !important;
}


/* --- intro brand reveal --- */
body.intro-active {
  overflow: hidden;
}

.intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.03), transparent 34%),
    linear-gradient(180deg, #030405 0%, #050607 100%);
  opacity: 1;
  visibility: visible;
  transition:
    opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0.85s;
}

body.intro-complete .intro-overlay {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.intro-grain,
.intro-overlay::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.intro-grain {
  opacity: 0.12;
  background-image:
    radial-gradient(circle at 18% 24%, rgba(255, 255, 255, 0.16) 0 0.7px, transparent 0.9px),
    radial-gradient(circle at 72% 68%, rgba(255, 255, 255, 0.1) 0 0.8px, transparent 1px),
    radial-gradient(circle at 36% 74%, rgba(255, 255, 255, 0.08) 0 0.7px, transparent 1px),
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.09) 0 0.6px, transparent 0.95px),
    radial-gradient(circle at 56% 44%, rgba(255, 255, 255, 0.06) 0 0.65px, transparent 0.9px);
  background-size: 170px 170px, 210px 210px, 190px 190px, 230px 230px, 150px 150px;
  mix-blend-mode: soft-light;
}

.intro-overlay::before {
  content: "";
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.05), transparent 42%),
    radial-gradient(circle at center, rgba(255, 255, 255, 0.025), transparent 60%);
  opacity: 0.95;
}

.intro-content {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #f5f6f7;
}

.intro-mark,
.intro-wordmark {
  opacity: 0;
  will-change: transform, opacity, filter;
}

.intro-mark {
  width: 36px;
  height: 36px;
  transform: scale(0.9);
  filter: blur(2px);
  animation: introMarkIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.14s forwards;
}

.intro-mark svg {
  width: 100%;
  height: 100%;
  display: block;
}

.intro-wordmark {
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  transform: translateY(10px);
  filter: blur(5px);
  animation: introWordmarkIn 0.95s cubic-bezier(0.22, 1, 0.36, 1) 0.72s forwards;
}

@keyframes introMarkIn {
  0% {
    opacity: 0;
    transform: scale(0.88);
    filter: blur(4px);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}

@keyframes introWordmarkIn {
  0% {
    opacity: 0;
    transform: translateY(10px);
    filter: blur(5px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .intro-overlay {
    transition-duration: 0.35s;
  }

  .intro-mark,
  .intro-wordmark {
    animation-duration: 0.01ms !important;
    animation-delay: 0ms !important;
    opacity: 1;
    transform: none;
    filter: none;
  }
}


/* === mobile refinement: centered hero, compact buttons, smaller fullscreen menu type === */
@media (max-width: 768px) {
  .hero-inner {
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    padding-top: calc(var(--header-height) + 44px) !important;
    padding-bottom: 92px !important;
  }

  .hero-copy {
    max-width: min(92vw, 680px) !important;
    margin-inline: auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }

  .hero-copy .eyebrow,
  .hero-copy h1,
  .hero-copy .section-lead {
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }

  .hero-copy h1 {
    max-width: 12.5ch !important;
  }

  .hero-lead {
    max-width: 34ch !important;
  }

  .button-row {
    width: auto !important;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 10px !important;
    margin-top: 22px !important;
  }

  .button-row .button {
    width: auto !important;
    min-width: 0 !important;
    min-height: 38px !important;
    padding: 0 15px !important;
    font-size: 0.92rem !important;
    line-height: 1 !important;
    justify-content: center !important;
    flex: 0 0 auto !important;
  }

  .scroll-indicator {
    left: 50% !important;
    transform: translateX(-50%) !important;
  }
}

@media (max-width: 600px) {
  .hero-inner {
    padding-top: calc(var(--header-height) + 36px) !important;
    padding-bottom: 90px !important;
  }

  .hero-copy {
    max-width: 92vw !important;
  }

  .hero-copy h1 {
    max-width: 12.8ch !important;
  }

  .hero-lead {
    max-width: 31ch !important;
    font-size: 0.95rem !important;
    line-height: 1.52 !important;
  }

  .button-row {
    gap: 9px !important;
    margin-top: 20px !important;
  }

  .button-row .button {
    min-height: 36px !important;
    padding: 0 14px !important;
    font-size: 0.9rem !important;
    border-radius: 7px !important;
  }
}

@media (max-width: 1120px) {
  .mobile-menu-brand {
    margin-bottom: 28px !important;
  }

  .mobile-menu-brand .brand-name {
    font-size: 0.98rem !important;
    letter-spacing: -0.03em !important;
  }

  .mobile-menu-links {
    gap: 14px !important;
  }

  .site-nav .nav-link {
    font-size: clamp(1.12rem, 3.8vw, 1.42rem) !important;
    line-height: 1.02 !important;
    letter-spacing: -0.045em !important;
    height: 1.04em !important;
  }

  .site-nav .link-track span {
    height: 1.04em !important;
    line-height: 1.04em !important;
  }

  .mobile-menu-cta {
    margin-top: 28px !important;
    min-height: 38px !important;
    padding-inline: 16px !important;
  }
}

@media (max-width: 600px) {
  .site-nav .nav-link {
    font-size: clamp(1.06rem, 5vw, 1.26rem) !important;
  }

  .mobile-menu-links {
    gap: 13px !important;
  }
}


/* === mobile compact refinement: cards + images smaller and more refined === */
@media (max-width: 768px) {
  .section {
    padding-top: 72px !important;
    padding-bottom: 72px !important;
  }

  .section-heading {
    margin-bottom: 24px !important;
  }

  .feature-layout,
  .services-grid,
  .pricing-grid,
  .faq-grid,
  .contact-grid,
  .benefits-grid,
  .work-grid,
  .cards-grid {
    gap: 14px !important;
  }

  .feature-card,
  .service-card,
  .pricing-card,
  .faq-item,
  .contact-card,
  .benefit-card,
  .work-card,
  .card,
  .accordion-item,
  .feature-item {
    padding: 16px !important;
    border-radius: 10px !important;
  }

  .feature-card h3,
  .service-card h3,
  .pricing-card h3,
  .contact-card h3,
  .benefit-card h3,
  .work-card h3,
  .card h3 {
    margin-bottom: 10px !important;
  }

  .feature-card p,
  .service-card p,
  .pricing-card p,
  .contact-card p,
  .benefit-card p,
  .work-card p,
  .card p,
  .faq-item p {
    font-size: 0.93rem !important;
    line-height: 1.48 !important;
  }

  .feature-visual,
  .service-visual,
  .card-visual,
  .media-card,
  .image-card,
  .assistant-card,
  .creative-visual,
  .pricing-card .card-image,
  .contact-card .card-image {
    min-height: 220px !important;
    border-radius: 10px !important;
    overflow: hidden !important;
  }

  .feature-visual img,
  .service-visual img,
  .card-visual img,
  .media-card img,
  .image-card img,
  .assistant-card img,
  .creative-visual img,
  .pricing-card .card-image img,
  .contact-card .card-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  .feature-list,
  .feature-checks,
  .check-list,
  .faq-list {
    gap: 8px !important;
  }

  .feature-list li,
  .feature-checks li,
  .check-list li {
    padding-block: 8px !important;
    font-size: 0.91rem !important;
  }

  .pricing-card {
    min-height: 0 !important;
  }

  .pricing-card .price,
  .pricing-card .price-row {
    margin-block: 10px 12px !important;
  }

  .pricing-card .button,
  .contact-card .button,
  .service-card .button,
  .feature-card .button {
    min-height: 36px !important;
    padding-inline: 14px !important;
    font-size: 0.9rem !important;
  }

  .faq-item,
  .accordion-item {
    padding-top: 14px !important;
    padding-bottom: 14px !important;
  }

  .faq-item button,
  .accordion-trigger {
    min-height: 0 !important;
    padding: 0 !important;
    font-size: 0.97rem !important;
  }

  .contact-card {
    gap: 10px !important;
  }

  .contact-card .button {
    margin-top: auto !important;
  }
}

@media (max-width: 600px) {
  .section {
    padding-top: 62px !important;
    padding-bottom: 62px !important;
  }

  .feature-layout,
  .services-grid,
  .pricing-grid,
  .faq-grid,
  .contact-grid,
  .benefits-grid,
  .work-grid,
  .cards-grid {
    gap: 12px !important;
  }

  .feature-card,
  .service-card,
  .pricing-card,
  .faq-item,
  .contact-card,
  .benefit-card,
  .work-card,
  .card,
  .accordion-item,
  .feature-item {
    padding: 14px !important;
    border-radius: 9px !important;
  }

  .feature-visual,
  .service-visual,
  .card-visual,
  .media-card,
  .image-card,
  .assistant-card,
  .creative-visual,
  .pricing-card .card-image,
  .contact-card .card-image {
    min-height: 190px !important;
    border-radius: 9px !important;
  }

  .feature-card p,
  .service-card p,
  .pricing-card p,
  .contact-card p,
  .benefit-card p,
  .work-card p,
  .card p,
  .faq-item p {
    font-size: 0.9rem !important;
    line-height: 1.45 !important;
  }

  .feature-list li,
  .feature-checks li,
  .check-list li {
    padding-block: 7px !important;
    font-size: 0.89rem !important;
  }

  .pricing-card .button,
  .contact-card .button,
  .service-card .button,
  .feature-card .button {
    min-height: 35px !important;
    padding-inline: 13px !important;
    font-size: 0.88rem !important;
  }
}



:root {
  --green: #ff4f2a;
  --yellow: #ff4f2a;
  --pink: #ff4f2a;
  --orange: #ff4f2a;
}

/* unify existing accent usage to the same orange tone */
.eyebrow-green,
.eyebrow-yellow,
.eyebrow-pink,
.eyebrow-orange,
.card-kicker,
.card-kicker .eyebrow-dot {
  color: var(--orange) !important;
}

.feature-item.is-active .feature-title::before {
  background: var(--orange) !important;
  box-shadow:
    0 0 0 1px rgba(255, 79, 42, 0.12),
    0 0 12px rgba(255, 79, 42, 0.14) !important;
}

.feature-item.is-active {
  border-color: rgba(255, 79, 42, 0.18) !important;
}

.button::before {
  background:
    radial-gradient(circle at center,
      rgba(255, 79, 42, 0.26) 0%,
      rgba(255, 79, 42, 0.14) 38%,
      rgba(255, 79, 42, 0) 76%) !important;
}

.button:hover,
.button:focus-visible {
  box-shadow:
    0 0 0 1px rgba(255, 79, 42, 0.18),
    0 12px 32px rgba(255, 79, 42, 0.13) !important;
}

/* intro sequence */
body.intro-active {
  overflow: hidden;
}

.intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 240;
  display: grid;
  place-items: center;
  background: #ff4f2a;
  color: #080808;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition:
    transform 1.05s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.68s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 1.05s;
}

body.intro-exit .intro-overlay {
  transform: translateY(-100%);
  opacity: 1;
}

body.intro-complete .intro-overlay {
  visibility: hidden;
  pointer-events: none;
}

.intro-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
  transform: translateY(0);
}

.intro-mark,
.intro-wordmark {
  opacity: 0;
  will-change: transform, opacity;
}

.intro-mark {
  width: 112px;
  height: 112px;
  transform: translateY(14px) scale(0.94);
  animation: introLogoIn 0.95s cubic-bezier(0.22, 1, 0.36, 1) 0.16s forwards;
}

.intro-mark svg {
  width: 100%;
  height: 100%;
  display: block;
}

.intro-wordmark {
  font-size: clamp(1.15rem, 1.1rem + 0.3vw, 1.45rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  transform: translateY(14px);
  animation: introTextIn 0.95s cubic-bezier(0.22, 1, 0.36, 1) 0.34s forwards;
}

body.intro-exit .intro-mark,
body.intro-exit .intro-wordmark {
  opacity: 0;
  transform: translateY(-10px) scale(0.985);
  transition:
    opacity 0.5s ease,
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes introLogoIn {
  0% {
    opacity: 0;
    transform: translateY(14px) scale(0.94);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes introTextIn {
  0% {
    opacity: 0;
    transform: translateY(14px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .intro-content {
    gap: 14px;
  }

  .intro-mark {
    width: 90px;
    height: 90px;
  }

  .intro-wordmark {
    font-size: 1.08rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .intro-overlay {
    transition-duration: 0.25s;
  }

  .intro-mark,
  .intro-wordmark {
    animation-duration: 0.01ms !important;
    animation-delay: 0ms !important;
    opacity: 1 !important;
    transform: none !important;
  }
}


/* === intro crispness fix === */
.intro-content,
.intro-mark,
.intro-wordmark,
.intro-mark svg,
.intro-mark path,
.intro-mark g {
  filter: none !important;
  text-rendering: geometricPrecision;
  shape-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  backface-visibility: hidden;
  transform-style: preserve-3d;
}

.intro-mark,
.intro-wordmark {
  will-change: transform, opacity !important;
}

.intro-wordmark {
  line-height: 1 !important;
  letter-spacing: -0.035em !important;
}

.intro-mark svg {
  overflow: visible;
}

.intro-mark path {
  vector-effect: non-scaling-stroke;
}


/* === exact provided logo asset integration === */
.brand-mark {
  width: 23px !important;
  height: 21px !important;
  display: inline-grid !important;
  place-items: center !important;
}

.brand-mark img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  max-width: 100% !important;
}

.intro-mark {
  width: 132px !important;
  height: auto !important;
  display: grid !important;
  place-items: center !important;
  transform: translateY(14px) scale(0.94);
}

.intro-mark img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  max-width: 100% !important;
  filter: none !important;
}

.intro-wordmark {
  margin-top: 4px !important;
}

@media (max-width: 768px) {
  .brand-mark {
    width: 22px !important;
    height: 20px !important;
  }

  .intro-mark {
    width: 108px !important;
  }
}


/* === intro logo color correction: white on orange === */
.intro-overlay {
  color: #ffffff !important;
}

.intro-mark img {
  filter: none !important;
  opacity: 1 !important;
}

.intro-wordmark {
  color: #ffffff !important;
}


/* === intro logo/text black on orange === */
.intro-overlay {
  color: #050505 !important;
}

.intro-mark img {
  filter: none !important;
  opacity: 1 !important;
}

.intro-wordmark {
  color: #050505 !important;
}


/* === menu animation reliability fix === */
.site-nav .link-track {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start;
  will-change: transform;
  transform: translate3d(0, 0, 0) !important;
}

.site-nav .link-track span {
  flex: 0 0 100% !important;
}

.site-nav .nav-link:hover .link-track,
.site-nav .nav-link:focus-visible .link-track,
.site-nav .nav-link.is-hovered .link-track,
.site-nav .nav-link.is-pressed .link-track,
.site-nav .nav-link:active .link-track {
  transform: translate3d(0, -50%, 0) !important;
}

@media (max-width: 1120px) {
  .site-nav .nav-link {
    -webkit-tap-highlight-color: transparent;
  }
}


/* === restored multicolor accent system === */
:root {
  --green: #66dd6a;
  --yellow: #e2c34a;
  --blue: #7f8cff;
  --pink: #ff4fa0;
  --orange: #f4a24f;
}

/* Generic accent helpers */
.accent-green, .eyebrow-green, .section-tag-green, .card-kicker.accent-green, .section-label.accent-green, .eyebrow.accent-green {
  color: var(--green) !important;
}
.accent-yellow, .eyebrow-yellow, .section-tag-yellow, .card-kicker.accent-yellow, .section-label.accent-yellow, .eyebrow.accent-yellow {
  color: var(--yellow) !important;
}
.accent-blue, .eyebrow-blue, .section-tag-blue, .card-kicker.accent-blue, .section-label.accent-blue, .eyebrow.accent-blue {
  color: var(--blue) !important;
}
.accent-pink, .eyebrow-pink, .section-tag-pink, .card-kicker.accent-pink, .section-label.accent-pink, .eyebrow.accent-pink {
  color: var(--pink) !important;
}
.accent-orange, .eyebrow-orange, .section-tag-orange, .card-kicker.accent-orange, .section-label.accent-orange, .eyebrow.accent-orange {
  color: var(--orange) !important;
}

.accent-green .eyebrow-dot, .eyebrow-green .eyebrow-dot, .section-tag-green .eyebrow-dot, .card-kicker.accent-green .eyebrow-dot, .section-label.accent-green .eyebrow-dot, .eyebrow.accent-green .eyebrow-dot {
  background: var(--green) !important;
}
.accent-yellow .eyebrow-dot, .eyebrow-yellow .eyebrow-dot, .section-tag-yellow .eyebrow-dot, .card-kicker.accent-yellow .eyebrow-dot, .section-label.accent-yellow .eyebrow-dot, .eyebrow.accent-yellow .eyebrow-dot {
  background: var(--yellow) !important;
}
.accent-blue .eyebrow-dot, .eyebrow-blue .eyebrow-dot, .section-tag-blue .eyebrow-dot, .card-kicker.accent-blue .eyebrow-dot, .section-label.accent-blue .eyebrow-dot, .eyebrow.accent-blue .eyebrow-dot {
  background: var(--blue) !important;
}
.accent-pink .eyebrow-dot, .eyebrow-pink .eyebrow-dot, .section-tag-pink .eyebrow-dot, .card-kicker.accent-pink .eyebrow-dot, .section-label.accent-pink .eyebrow-dot, .eyebrow.accent-pink .eyebrow-dot {
  background: var(--pink) !important;
}
.accent-orange .eyebrow-dot, .eyebrow-orange .eyebrow-dot, .section-tag-orange .eyebrow-dot, .card-kicker.accent-orange .eyebrow-dot, .section-label.accent-orange .eyebrow-dot, .eyebrow.accent-orange .eyebrow-dot {
  background: var(--orange) !important;
}

/* Restore active creative-services accent to green */
.feature-item.is-active .feature-title::before,
.feature-item.is-open .feature-title::before,
.accordion-item.is-active .accordion-title::before {
  background: var(--green) !important;
  box-shadow:
    0 0 0 1px rgba(102, 221, 106, 0.12),
    0 0 12px rgba(102, 221, 106, 0.14) !important;
}

.feature-item.is-active,
.feature-item.is-open,
.accordion-item.is-active {
  border-color: rgba(102, 221, 106, 0.18) !important;
}


/* === hero title update: centered HYPERFRAME® === */
.hero-copy {
  text-align: center !important;
  align-items: center !important;
  margin-inline: auto !important;
}

.hero-copy .eyebrow,
.hero-copy h1,
.hero-copy .hero-lead,
.hero-copy .section-lead,
.hero-copy .button-row {
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

.hero-copy h1 {
  max-width: none !important;
  width: auto !important;
  font-size: clamp(3.6rem, 8vw, 8.8rem) !important;
  line-height: 0.94 !important;
  letter-spacing: -0.07em !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
}

.hero-copy h1 sup {
  font-size: 0.28em;
  line-height: 1;
  vertical-align: top;
  margin-left: 0.08em;
}

.hero-copy .hero-lead,
.hero-copy .section-lead {
  font-size: clamp(1rem, 1.15vw, 1.28rem) !important;
  line-height: 1.35 !important;
  letter-spacing: -0.02em !important;
  max-width: none !important;
  width: auto !important;
  opacity: 0.92;
  margin-top: 16px !important;
}

@media (min-width: 1121px) {
  .hero-inner {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .hero-copy {
    max-width: min(90vw, 1200px) !important;
    width: 100% !important;
    padding-left: 0 !important;
  }
}

@media (max-width: 768px) {
  .hero-copy h1 {
    font-size: clamp(2.8rem, 14vw, 4.8rem) !important;
    letter-spacing: -0.06em !important;
  }

  .hero-copy .hero-lead,
  .hero-copy .section-lead {
    font-size: 0.98rem !important;
    line-height: 1.4 !important;
    max-width: 90vw !important;
  }
}


/* === hero subtitle removal + centered responsive CTA buttons === */
.hero-copy .hero-lead,
.hero-copy .section-lead {
  display: none !important;
}

.hero-copy .button-row {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 12px !important;
  width: 100% !important;
  margin-top: 22px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.hero-copy .button-row .button {
  width: auto !important;
  min-width: 0 !important;
  flex: 0 0 auto !important;
  justify-content: center !important;
}

@media (max-width: 768px) {
  .hero-copy .button-row {
    gap: 10px !important;
    max-width: 92vw !important;
  }

  .hero-copy .button-row .button {
    min-height: 38px !important;
    padding: 0 15px !important;
    font-size: 0.92rem !important;
  }
}

@media (max-width: 480px) {
  .hero-copy .button-row {
    gap: 9px !important;
    max-width: 94vw !important;
  }

  .hero-copy .button-row .button {
    min-height: 36px !important;
    padding: 0 13px !important;
    font-size: 0.88rem !important;
  }
}


/* === remove intro + final centered hero alignment === */
.hero-inner {
  align-items: center !important;
}

.hero-copy {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  max-width: min(94vw, 1080px) !important;
  margin-inline: auto !important;
}

.hero-copy .eyebrow,
.hero-copy h1,
.hero-copy .button-row {
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
  align-self: center !important;
}

.hero-copy .eyebrow {
  justify-content: center !important;
}

.hero-copy h1 {
  display: inline-flex !important;
  justify-content: center !important;
  align-items: flex-start !important;
  max-width: none !important;
  width: auto !important;
  transform: translateX(-0.04em) !important;
}

.hero-copy h1 sup {
  position: relative;
  top: 0.04em;
  margin-left: 0.02em !important;
}

.hero-copy .button-row {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  width: auto !important;
  max-width: 100% !important;
}

.scroll-indicator {
  left: 50% !important;
  transform: translateX(-50%) !important;
}

@media (max-width: 768px) {
  .hero-copy {
    max-width: 92vw !important;
  }

  .hero-copy h1 {
    transform: translateX(-0.03em) !important;
  }
}



/* === hero carousel implementation === */
:root {
  --hero-carousel-card-radius: 14px;
  --hero-carousel-card-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
  --hero-carousel-stroke: rgba(255, 255, 255, 0.12);
  --hero-carousel-speed-a: 42s;
  --hero-carousel-speed-b: 48s;
}

.hero {
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  z-index: 0;
}

.hero-carousel,
.hero-overlay,
.hero-grid {
  position: absolute;
  inset: 0;
}

.hero-carousel {
  z-index: 1;
  pointer-events: none;
  display: grid;
  align-content: center;
  justify-items: center;
}

.hero-carousel::before {
  content: "";
  position: absolute;
  inset: 12% 8% 16%;
  border-radius: 36px;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.06), transparent 46%),
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
  opacity: 0.9;
  filter: blur(24px);
}

.hero-carousel-mask {
  position: absolute;
  left: 0;
  width: 100%;
  height: 22%;
  z-index: 2;
  pointer-events: none;
}

.hero-carousel-mask-top {
  top: 0;
  background: linear-gradient(180deg, rgba(4,5,6,0.98), rgba(4,5,6,0));
}

.hero-carousel-mask-bottom {
  bottom: 0;
  background: linear-gradient(180deg, rgba(4,5,6,0), rgba(4,5,6,0.98));
}

.hero-carousel-row {
  position: relative;
  width: min(1520px, 136vw);
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.92) 10%, rgba(0,0,0,0.92) 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.92) 10%, rgba(0,0,0,0.92) 90%, transparent 100%);
}

.hero-carousel-row + .hero-carousel-row {
  margin-top: 18px;
}

.hero-carousel-row-a {
  transform: translate3d(0, -28px, 0) rotate(-5deg);
  opacity: 0.5;
}

.hero-carousel-row-b {
  transform: translate3d(0, 26px, 0) rotate(4deg);
  opacity: 0.34;
}

.hero-carousel-track {
  display: flex;
  align-items: center;
  gap: 22px;
  width: max-content;
  will-change: transform;
}

.hero-carousel-row-a .hero-carousel-track {
  animation: heroCarouselLeft var(--hero-carousel-speed-a) linear infinite;
}

.hero-carousel-row-b .hero-carousel-track {
  animation: heroCarouselRight var(--hero-carousel-speed-b) linear infinite;
}

.hero-carousel-card {
  position: relative;
  flex: 0 0 auto;
  width: 248px;
  aspect-ratio: 0.78;
  border-radius: var(--hero-carousel-card-radius);
  overflow: hidden;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--hero-carousel-stroke);
  box-shadow: var(--hero-carousel-card-shadow);
  backdrop-filter: blur(6px);
}

.hero-carousel-card-wide {
  width: 334px;
  aspect-ratio: 1.28;
}

.hero-carousel-card-tall {
  width: 228px;
  aspect-ratio: 0.66;
}

.hero-carousel-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.01) 30%, rgba(5,6,8,0.1) 100%),
    radial-gradient(circle at center, rgba(255,255,255,0.06), transparent 55%);
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-carousel-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.95) contrast(1.04) brightness(0.9);
  transform: scale(1.02);
}

.hero-overlay {
  z-index: 2;
  background:
    radial-gradient(circle at center, rgba(4, 5, 6, 0.18) 0%, rgba(4, 5, 6, 0.28) 28%, rgba(4, 5, 6, 0.56) 58%, rgba(4, 5, 6, 0.88) 100%),
    linear-gradient(180deg, rgba(4, 5, 6, 0.5) 0%, rgba(4, 5, 6, 0.14) 28%, rgba(4, 5, 6, 0.2) 58%, rgba(4, 5, 6, 0.78) 100%);
}

.hero-grid {
  z-index: 3;
  opacity: 0.24;
}

.hero-inner {
  z-index: 4;
}

.hero-copy {
  position: relative;
  z-index: 5;
  max-width: 980px;
  margin-inline: auto;
  text-align: center;
  align-items: center;
}

.hero-copy h1 {
  position: relative;
  z-index: 2;
  max-width: none;
  margin-inline: auto;
  text-shadow: 0 10px 34px rgba(4,5,6,0.62);
  backdrop-filter: blur(0.8px);
}

.hero-copy h1::before {
  content: "";
  position: absolute;
  inset: -0.22em -0.28em;
  z-index: -1;
  border-radius: 999px;
  background: radial-gradient(circle at center, rgba(4,5,6,0.42), rgba(4,5,6,0) 70%);
  filter: blur(28px);
}

.hero-copy .eyebrow,
.hero-copy .button-row {
  position: relative;
  z-index: 2;
}

@keyframes heroCarouselLeft {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(calc(-50% - 11px), 0, 0); }
}

@keyframes heroCarouselRight {
  from { transform: translate3d(calc(-50% - 11px), 0, 0); }
  to { transform: translate3d(0, 0, 0); }
}

@media (max-width: 1120px) {
  :root {
    --hero-carousel-speed-a: 34s;
    --hero-carousel-speed-b: 40s;
  }

  .hero-carousel-row {
    width: 138vw;
  }

  .hero-carousel-card {
    width: 198px;
    border-radius: 12px;
  }

  .hero-carousel-card-wide {
    width: 272px;
  }

  .hero-carousel-card-tall {
    width: 178px;
  }

  .hero-carousel-row-a {
    transform: translate3d(0, -16px, 0) rotate(-4deg);
    opacity: 0.42;
  }

  .hero-carousel-row-b {
    transform: translate3d(0, 20px, 0) rotate(3deg);
    opacity: 0.28;
  }
}

@media (max-width: 768px) {
  :root {
    --hero-carousel-speed-a: 28s;
    --hero-carousel-speed-b: 34s;
  }

  .hero-carousel {
    inset: 6% -4% 0;
  }

  .hero-carousel-row {
    width: 172vw;
  }

  .hero-carousel-row + .hero-carousel-row {
    margin-top: 12px;
  }

  .hero-carousel-card {
    width: 148px;
    border-radius: 10px;
  }

  .hero-carousel-card-wide {
    width: 204px;
  }

  .hero-carousel-card-tall {
    width: 134px;
  }

  .hero-carousel-row-a {
    transform: translate3d(0, -10px, 0) rotate(-3.5deg);
    opacity: 0.32;
  }

  .hero-carousel-row-b {
    transform: translate3d(0, 12px, 0) rotate(2.5deg);
    opacity: 0.24;
  }

  .hero-overlay {
    background:
      radial-gradient(circle at center, rgba(4, 5, 6, 0.34) 0%, rgba(4, 5, 6, 0.52) 34%, rgba(4, 5, 6, 0.82) 100%),
      linear-gradient(180deg, rgba(4, 5, 6, 0.68) 0%, rgba(4, 5, 6, 0.18) 32%, rgba(4, 5, 6, 0.82) 100%);
  }

  .hero-copy {
    max-width: min(92vw, 680px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-carousel-row-a .hero-carousel-track,
  .hero-carousel-row-b .hero-carousel-track {
    animation: none;
    transform: translate3d(-12%, 0, 0);
  }

  .hero-carousel-card img {
    transform: none;
  }
}


/* === seamless infinite hero carousel refinement === */
.hero-carousel {
  z-index: 1;
  pointer-events: none;
  display: grid;
  align-content: center;
  justify-items: center;
  overflow: hidden;
  perspective: 1600px;
}

.hero-carousel::before {
  content: "";
  position: absolute;
  inset: 10% 6% 14%;
  border-radius: 40px;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.05), transparent 44%),
    linear-gradient(180deg, rgba(255,255,255,0.018), rgba(255,255,255,0));
  opacity: 0.9;
  filter: blur(26px);
}

.hero-carousel-row {
  position: relative;
  width: min(1680px, 150vw);
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.96) 8%, rgba(0,0,0,0.96) 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.96) 8%, rgba(0,0,0,0.96) 92%, transparent 100%);
  transform-origin: center center;
}

.hero-carousel-row + .hero-carousel-row {
  margin-top: 22px;
}

.hero-carousel-row-a {
  transform: translate3d(0, -34px, 0) rotate(-7deg);
  opacity: 0.54;
}

.hero-carousel-row-b {
  transform: translate3d(0, 30px, 0) rotate(6deg);
  opacity: 0.38;
}

.hero-carousel-track {
  display: flex !important;
  align-items: center;
  gap: 24px;
  width: max-content;
  will-change: transform;
  animation: none !important;
  transform: translate3d(0, 0, 0);
}

.hero-carousel-sequence {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 0 0 auto;
}

.hero-carousel-card {
  position: relative;
  flex: 0 0 auto;
  width: 252px;
  aspect-ratio: 0.78;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 22px 52px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255,255,255,0.06);
  backdrop-filter: blur(6px);
}

.hero-carousel-card-wide {
  width: 340px;
  aspect-ratio: 1.28;
}

.hero-carousel-card-tall {
  width: 232px;
  aspect-ratio: 0.66;
}

.hero-carousel-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.015) 26%, rgba(5,6,8,0.12) 100%),
    radial-gradient(circle at center, rgba(255,255,255,0.05), transparent 58%);
  pointer-events: none;
}

.hero-carousel-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.95) contrast(1.04) brightness(0.9);
  transform: scale(1.02);
}

.hero-overlay {
  z-index: 2;
  background:
    radial-gradient(circle at center, rgba(4, 5, 6, 0.14) 0%, rgba(4, 5, 6, 0.22) 25%, rgba(4, 5, 6, 0.46) 54%, rgba(4, 5, 6, 0.82) 100%),
    linear-gradient(180deg, rgba(4, 5, 6, 0.82) 0%, rgba(4, 5, 6, 0.48) 24%, rgba(4, 5, 6, 0.4) 50%, rgba(4, 5, 6, 0.72) 100%);
}

@media (max-width: 1120px) {
  .hero-carousel-row {
    width: min(1380px, 168vw);
  }

  .hero-carousel-row-a {
    transform: translate3d(0, -24px, 0) rotate(-6deg);
  }

  .hero-carousel-row-b {
    transform: translate3d(0, 20px, 0) rotate(5deg);
  }

  .hero-carousel-card {
    width: 204px;
    border-radius: 16px;
  }

  .hero-carousel-card-wide {
    width: 272px;
  }

  .hero-carousel-card-tall {
    width: 190px;
  }
}

@media (max-width: 768px) {
  .hero-carousel-row {
    width: min(1200px, 210vw);
  }

  .hero-carousel-row + .hero-carousel-row {
    margin-top: 16px;
  }

  .hero-carousel-row-a {
    transform: translate3d(0, -16px, 0) rotate(-5deg);
    opacity: 0.48;
  }

  .hero-carousel-row-b {
    transform: translate3d(0, 14px, 0) rotate(4deg);
    opacity: 0.34;
  }

  .hero-carousel-track,
  .hero-carousel-sequence {
    gap: 16px;
  }

  .hero-carousel-card {
    width: 156px;
    border-radius: 14px;
  }

  .hero-carousel-card-wide {
    width: 210px;
  }

  .hero-carousel-card-tall {
    width: 144px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-carousel-track {
    transform: translate3d(0, 0, 0) !important;
  }
}


/* === single-row equal-size hero carousel refinement === */
.hero-carousel::before,
.hero-carousel-mask,
.hero-carousel-card::after {
  display: none !important;
}

.hero-carousel {
  z-index: 1 !important;
  display: grid !important;
  place-items: center !important;
  overflow: hidden !important;
}

.hero-carousel-row {
  position: relative !important;
  width: min(1760px, 154vw) !important;
  overflow: hidden !important;
  background: transparent !important;
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.98) 10%, rgba(0,0,0,0.98) 90%, transparent 100%) !important;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.98) 10%, rgba(0,0,0,0.98) 90%, transparent 100%) !important;
}

.hero-carousel-row + .hero-carousel-row {
  display: none !important;
}

.hero-carousel-row-a {
  transform: translate3d(0, 4px, 0) rotate(-5.5deg) !important;
  opacity: 0.52 !important;
}

.hero-carousel-track,
.hero-carousel-sequence {
  display: flex !important;
  align-items: center !important;
  gap: 24px !important;
  width: max-content !important;
}

.hero-carousel-card,
.hero-carousel-card-wide,
.hero-carousel-card-tall {
  position: relative !important;
  flex: 0 0 auto !important;
  width: 336px !important;
  aspect-ratio: 1.52 !important;
  border-radius: 22px !important;
  overflow: hidden !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.hero-carousel-card img,
.hero-carousel-card-wide img,
.hero-carousel-card-tall img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
  filter: saturate(0.96) contrast(1.03) brightness(0.92) !important;
  transform: scale(1.015) !important;
}

.hero-overlay {
  z-index: 2 !important;
  background:
    radial-gradient(circle at center, rgba(4, 5, 6, 0.08) 0%, rgba(4, 5, 6, 0.16) 30%, rgba(4, 5, 6, 0.42) 62%, rgba(4, 5, 6, 0.82) 100%),
    linear-gradient(180deg, rgba(4, 5, 6, 0.46) 0%, rgba(4, 5, 6, 0.14) 28%, rgba(4, 5, 6, 0.18) 58%, rgba(4, 5, 6, 0.66) 100%) !important;
}

.hero-copy {
  position: relative !important;
  z-index: 5 !important;
}

.hero-copy h1 {
  position: relative !important;
  z-index: 6 !important;
  text-shadow: 0 12px 34px rgba(4,5,6,0.58) !important;
}

.hero-copy h1::before {
  content: "" !important;
  position: absolute !important;
  inset: -0.24em -0.34em !important;
  z-index: -1 !important;
  border-radius: 999px !important;
  background: radial-gradient(circle at center, rgba(4,5,6,0.38), rgba(4,5,6,0) 72%) !important;
  filter: blur(24px) !important;
}

@media (max-width: 1120px) {
  .hero-carousel-row {
    width: min(1440px, 186vw) !important;
  }

  .hero-carousel-row-a {
    transform: translate3d(0, 0, 0) rotate(-5deg) !important;
    opacity: 0.48 !important;
  }

  .hero-carousel-track,
  .hero-carousel-sequence {
    gap: 18px !important;
  }

  .hero-carousel-card,
  .hero-carousel-card-wide,
  .hero-carousel-card-tall {
    width: 246px !important;
    aspect-ratio: 1.52 !important;
    border-radius: 18px !important;
  }
}

@media (max-width: 768px) {
  .hero-carousel-row {
    width: min(1220px, 238vw) !important;
  }

  .hero-carousel-row-a {
    transform: translate3d(0, 6px, 0) rotate(-4.4deg) !important;
    opacity: 0.42 !important;
  }

  .hero-carousel-track,
  .hero-carousel-sequence {
    gap: 14px !important;
  }

  .hero-carousel-card,
  .hero-carousel-card-wide,
  .hero-carousel-card-tall {
    width: 182px !important;
    aspect-ratio: 1.52 !important;
    border-radius: 15px !important;
  }
}



/* === responsive anchored hero carousel refinement === */
:root {
  --hero-carousel-card-w: clamp(180px, 23vw, 336px);
  --hero-carousel-gap: clamp(14px, 1.6vw, 24px);
  --hero-carousel-radius: clamp(15px, 1.4vw, 22px);
  --hero-carousel-angle: -5.5deg;
  --hero-carousel-y: 50%;
  --hero-carousel-x: 50%;
}

.hero {
  position: relative !important;
  overflow: hidden !important;
}

.hero-carousel {
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  overflow: hidden !important;
  pointer-events: none !important;
}

.hero-carousel-row {
  position: absolute !important;
  top: var(--hero-carousel-y) !important;
  left: var(--hero-carousel-x) !important;
  width: min(1760px, 160vw) !important;
  max-width: none !important;
  overflow: hidden !important;
  background: transparent !important;
  transform: translate3d(-50%, -50%, 0) rotate(var(--hero-carousel-angle)) !important;
  transform-origin: center center !important;
  will-change: transform !important;
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.98) 10%, rgba(0,0,0,0.98) 90%, transparent 100%) !important;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.98) 10%, rgba(0,0,0,0.98) 90%, transparent 100%) !important;
}

.hero-carousel-row-a {
  opacity: 0.52 !important;
}

.hero-carousel-track,
.hero-carousel-sequence {
  gap: var(--hero-carousel-gap) !important;
}

.hero-carousel-card,
.hero-carousel-card-wide,
.hero-carousel-card-tall {
  width: var(--hero-carousel-card-w) !important;
  aspect-ratio: 1.52 !important;
  border-radius: var(--hero-carousel-radius) !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.hero-carousel-card img,
.hero-carousel-card-wide img,
.hero-carousel-card-tall img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

.hero-overlay {
  z-index: 2 !important;
}

.hero-copy {
  position: relative !important;
  z-index: 5 !important;
}

@media (max-width: 1120px) {
  :root {
    --hero-carousel-card-w: clamp(170px, 28vw, 260px);
    --hero-carousel-gap: clamp(12px, 1.8vw, 18px);
    --hero-carousel-radius: clamp(14px, 1.5vw, 18px);
    --hero-carousel-angle: -5.2deg;
  }

  .hero-carousel-row {
    width: min(1500px, 188vw) !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate3d(-50%, -50%, 0) rotate(var(--hero-carousel-angle)) !important;
  }
}

@media (max-width: 768px) {
  :root {
    --hero-carousel-card-w: clamp(150px, 38vw, 196px);
    --hero-carousel-gap: clamp(10px, 2.2vw, 14px);
    --hero-carousel-radius: clamp(13px, 2vw, 16px);
    --hero-carousel-angle: -4.9deg;
  }

  .hero-carousel-row {
    width: min(1360px, 238vw) !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate3d(-50%, -50%, 0) rotate(var(--hero-carousel-angle)) !important;
  }

  .hero-carousel-row-a {
    opacity: 0.44 !important;
  }
}

@media (max-width: 480px) {
  :root {
    --hero-carousel-card-w: clamp(142px, 42vw, 178px);
    --hero-carousel-gap: 10px;
    --hero-carousel-radius: 14px;
    --hero-carousel-angle: -4.7deg;
  }

  .hero-carousel-row {
    width: min(1280px, 248vw) !important;
  }
}
