/* ============================================================
   Arcware — recreation v2 (matched to extracted computed styles)
   ============================================================ */
:root {
  --ink: #151515;            /* rgb(21,21,21) — primary dark */
  --dark: #151515;           /* dark section bg */
  --gray-bg: #eeedec;        /* rgb(238,237,236) — light gray section/card bg */
  --white: #ffffff;
  --muted: #737373;          /* rgb(115,115,115) */
  --body-muted: #565656;
  --line: rgba(0, 0, 0, 0.08);
  --line-dark: rgba(255, 255, 255, 0.12);

  --serif: "Newsreader", "Times New Roman", Times, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1280px;
  --pad: 80px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, video, svg { display: block; max-width: 100%; }
button { font-family: inherit; }

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   Buttons — matched: white bg, black text, 6px radius
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.28px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
}
.btn--white { background: var(--white); color: #000; }
.btn--white:hover { opacity: 0.88; }
.btn--nav { height: 36px; padding: 8px 16px; }
.btn--hero { height: 44px; padding: 8px 20px; }
.btn--dark { background: var(--ink); color: #fff; height: 44px; padding: 8px 20px; }
.btn--dark:hover { opacity: 0.86; }

/* ============================================================
   Announcement bar — 45px black
   ============================================================ */
.announce {
  background: var(--orange, #ff751f);
  color: #fff;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  letter-spacing: -0.28px;
  position: relative;
  z-index: 60;
}
.announce__inner { display: flex; align-items: center; padding: 0 16px; }
.announce__link { text-decoration: underline; text-underline-offset: 3px; }
.announce__link:hover { opacity: 0.7; }

/* ============================================================
   Navigation — absolute overlay, centered links
   ============================================================ */
.nav {
  position: absolute;
  left: 0; right: 0;
  z-index: 50;
  padding: 16px 0;
}
.nav__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo { color: #fff; display: flex; align-items: center; }
.nav__logo img { height: 20px; width: auto; display: block; }
.nav__links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  font-size: 14px;
  letter-spacing: -0.28px;
  color: #fff;
}
.nav__links a { padding: 8px 12px; transition: opacity 0.2s; }
.nav__links a:hover { opacity: 0.6; }
.nav__actions { display: flex; align-items: center; gap: 8px; }
.nav__login {
  font-size: 14px;
  letter-spacing: -0.28px;
  color: #fff;
  padding: 8px 16px;
  transition: opacity 0.2s;
}
.nav__login:hover { opacity: 0.6; }

/* Light variant (subpages with light backgrounds) */
.nav--light .nav__logo,
.nav--light .nav__links,
.nav--light .nav__login { color: var(--ink); }
.nav--light .btn--white { background: var(--ink); color: #fff; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav__toggle span { width: 22px; height: 1.5px; background: #fff; transition: transform 0.3s var(--ease); }
.nav--light .nav__toggle span { background: var(--ink); }
.nav__toggle.open span:first-child { transform: translateY(3.25px) rotate(45deg); }
.nav__toggle.open span:last-child { transform: translateY(-3.25px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: var(--white);
  padding: 120px 28px 40px;
  display: flex;
  flex-direction: column;
  transform: translateY(-100%);
  transition: transform 0.45s var(--ease);
  visibility: hidden;
}
.mobile-menu.open { transform: none; visibility: visible; }
.mobile-menu__links { display: flex; flex-direction: column; }
.mobile-menu__links a {
  font-family: var(--serif);
  font-size: 28px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.mobile-menu__cta { margin-top: 24px; align-self: flex-start; background: var(--ink); color: #fff; height: 44px; padding: 8px 20px; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  height: calc(100vh - 45px);
  min-height: 640px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.hero__scrim {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(0,0,0,0.42) 0%, rgba(0,0,0,0.10) 30%, rgba(0,0,0,0.10) 60%, rgba(0,0,0,0.55) 100%);
}
.hero__content { padding: 0 24px; margin-top: -3vh; }
.hero__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 64px;
  line-height: 0.95;
  letter-spacing: -0.05em;
}
.hero__sub {
  margin-top: 24px;
  font-size: 20px;
  line-height: 25px;
  letter-spacing: -0.4px;
}
.hero__content .btn { margin-top: 32px; }

/* Logo marquee */
.logowall {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  padding: 26px 0 30px;
  overflow: hidden;
}
.logowall__track {
  display: flex;
  width: max-content;
  animation: marquee 36s linear infinite;
}
.logowall__set {
  display: flex;
  align-items: center;
  gap: 76px;
  padding-right: 76px;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.logo {
  color: #fff;
  font-weight: 600;
  white-space: nowrap;
  font-size: 20px;
  letter-spacing: 0.02em;
  opacity: 0.95;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.logo--jefferies { font-family: var(--serif); font-weight: 500; font-size: 24px; letter-spacing: 0; }
.logo--lazard { font-family: var(--serif); font-weight: 400; letter-spacing: 0.18em; font-size: 21px; }
.logo--tiger { letter-spacing: 0.05em; font-weight: 700; font-size: 18px; }
.logo--moelis { font-family: var(--serif); font-weight: 500; font-size: 24px; letter-spacing: 0.01em; }
.logo--nomura { letter-spacing: 0.1em; font-weight: 700; font-size: 18px; }
.logo--rothschild { font-family: var(--serif); font-weight: 400; font-size: 21px; }
.logo--bnp { font-weight: 700; font-size: 17px; letter-spacing: 0.03em; }
.logo--raymond { font-family: var(--serif); font-weight: 500; font-size: 20px; letter-spacing: 0.08em; }
.logo__mark { font-size: 12px; letter-spacing: -2px; }

/* ============================================================
   Offerings — three large cards
   ============================================================ */
.offers {
  background: var(--white);
  padding: 128px var(--pad) 120px;
}
.offers__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 44px;
  line-height: 1.05;
  letter-spacing: -0.05em;
  text-align: center;
  margin-bottom: 64px;
}
.offers__grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.ocard {
  background: var(--gray-bg);
  border-radius: 8px;
  padding: 40px 36px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
}
.ocard h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 30px;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.ocard p {
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: -0.32px;
  color: var(--body-muted);
}
.ocard .btn { align-self: flex-start; }

/* ============================================================
   Testimonials — expandable cards
   ============================================================ */
.testimonials {
  background: var(--white);
  padding: 128px var(--pad) 120px;
}
.testimonials__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 44px;
  line-height: 1.05;
  letter-spacing: -0.05em;
  text-align: center;
  margin-bottom: 64px;
}
.tcards {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  gap: 16px;
  min-height: 620px;
}
.tcard {
  position: relative;
  background: var(--gray-bg);
  border-radius: 8px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex: 1 1 0;
  min-width: 0;
  cursor: pointer;
  overflow: hidden;
  transition: flex-grow 0.65s var(--ease);
}
.tcard.is-open { flex-grow: 5.2; cursor: default; }
.tcard__head { margin-bottom: 24px; }
.tcard__logo {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: #9a9893;
  white-space: nowrap;
}
.tcard__logomark { letter-spacing: 0; }
.tcard__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  min-width: 480px;
  pointer-events: none;
}
.tcard.is-open .tcard__body { opacity: 1; transition: opacity 0.5s var(--ease) 0.25s; pointer-events: auto; }
.tcard__quote {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.45;
  letter-spacing: -0.02em;
  max-width: 840px;
  padding-top: 8px;
}
.tcard__attrib { display: flex; flex-direction: column; margin-top: 48px; }
.tcard__name { font-size: 16px; font-weight: 500; letter-spacing: -0.32px; }
.tcard__role { font-size: 16px; font-weight: 400; letter-spacing: -0.32px; color: var(--muted); }
.tcard__toggle {
  position: absolute;
  bottom: 24px;
  left: 28px;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.14);
  background: transparent;
  color: var(--ink);
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, opacity 0.3s;
}
.tcard__toggle:hover { background: rgba(0,0,0,0.06); }
.tcard.is-open .tcard__toggle { opacity: 0; pointer-events: none; }

/* ============================================================
   Why Arcware — sticky left title, right feature list
   ============================================================ */
.why {
  background: var(--white);
  padding: 96px var(--pad) 140px;
}
.why__grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.why__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 44px;
  line-height: 1.05;
  letter-spacing: -0.05em;
  position: sticky;
  top: 96px;
}
.why__right { display: flex; flex-direction: column; max-width: 596px; }
.witem { padding: 80px 0; border-top: 1px solid var(--line); }
.witem:first-child { border-top: none; padding-top: 8px; }
.witem__icon { width: 26px; height: 26px; color: var(--ink); margin-bottom: 22px; }
.witem__icon svg { width: 100%; height: 100%; }
.witem h4 {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.48px;
  margin-bottom: 18px;
}
.witem p {
  font-size: 18px;
  line-height: 27px;
  letter-spacing: -0.1px;
  color: var(--body-muted);
}

/* ============================================================
   By the numbers — light gray, stacked rows
   ============================================================ */
.numbers {
  background: var(--gray-bg);
  padding: 96px var(--pad) 110px;
}
.numbers__inner { max-width: var(--container); margin: 0 auto; }
.numbers__label {
  font-size: 16px;
  letter-spacing: -0.32px;
  margin-bottom: 40px;
}
.nrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  border-top: 1px solid rgba(0,0,0,0.10);
}
.nrow__value {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 140px;
  line-height: 1;
  letter-spacing: -0.04em;
}
.nrow__label {
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.4px;
  width: 240px;
  flex-shrink: 0;
  margin-left: 32px;
}

/* ============================================================
   Security — dark, 5 bordered cards
   ============================================================ */
.security {
  background: var(--dark);
  color: #fff;
  padding: 128px var(--pad) 128px;
}
.security__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 48px;
  line-height: 1.05;
  letter-spacing: -0.05em;
  text-align: center;
  margin-bottom: 80px;
}
.security__grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.scard {
  border: 1px solid var(--line-dark);
  margin-left: -1px;
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 24px;
}
.scard:first-child { margin-left: 0; }
.scard__icon { width: 96px; height: 96px; color: #8a8a8a; }
.scard__icon svg { width: 100%; height: 100%; }
.scard__label {
  font-size: 12px;
  letter-spacing: -0.24px;
  color: var(--muted);
}

/* ============================================================
   CTA — dark bar, title left / button right
   ============================================================ */
.cta {
  background: var(--dark);
  color: #fff;
  padding: 96px var(--pad) 40px;
}
.cta__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.cta__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 48px;
  line-height: 1.1;
  letter-spacing: -0.05em;
}
.cta__logo {
  width: 100%;
  max-width: var(--container);
  height: auto;
  display: block;
  flex-shrink: 1;
  min-width: 0;
  filter: brightness(1.25);
}

/* ============================================================
   Footer — dark, 4 cols + small base line
   ============================================================ */
.footer {
  background: var(--dark);
  color: #fff;
  padding: 24px var(--pad) 32px;
}
.footer__cols {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col h4 {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.28px;
  color: var(--muted);
  margin-bottom: 6px;
}
.footer__col a {
  font-size: 14px;
  letter-spacing: -0.28px;
  line-height: 21px;
  transition: opacity 0.2s;
}
.footer__col a:hover { opacity: 0.6; }
.footer__base {
  max-width: var(--container);
  margin: 96px auto 0;
  display: flex;
  justify-content: center;
}
.footer__base span {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -0.24px;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================================
   Subpage generic helpers
   ============================================================ */
.page-hero {
  padding: 200px var(--pad) 96px;
  background: var(--white);
}
.page-hero--dark { background: var(--dark); color: #fff; }
.page-hero__inner { max-width: var(--container); margin: 0 auto; }
.page-hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 64px;
  line-height: 0.98;
  letter-spacing: -0.05em;
  max-width: 800px;
}
.page-hero p.lede {
  margin-top: 28px;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: -0.4px;
  max-width: 520px;
  color: var(--body-muted);
}
.page-hero--dark p.lede { color: rgba(255,255,255,0.75); }

/* ============================================================
   Felix page
   ============================================================ */
.felix-page {
  background: #f7f6f4;
  transition: background-color 0.7s var(--ease);
}
.felix-page.in-green { background: #1a2a25; }
.felix-page.in-built { background: #ededed; }
.nav--static { position: relative; background: transparent; }
.nav--sticky {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #f7f6f4;
}

.fhero { padding: 96px var(--pad) 0; text-align: center; }
.fhero__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 64px;
  line-height: 1.02;
  letter-spacing: -0.05em;
}
.fhero .btn { margin-top: 30px; }
.fhero__card {
  max-width: 1280px;
  margin: 56px auto 0;
  border-radius: 12px;
  overflow: hidden;
  background: #fdfdfc;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.fhero__card video { width: 100%; }

.ftrust { padding: 96px var(--pad) 64px; }
.ftrust__label {
  text-align: center;
  font-size: 14px;
  letter-spacing: -0.28px;
  color: var(--muted);
  margin-bottom: 24px;
}
.ftrust__grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.fcell {
  background: var(--gray-bg);
  border-radius: 6px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-dark {
  color: #8f8d88;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.03em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-align: center;
}
.logo-dark.logo--jefferies, .logo-dark.logo--moelis { font-family: var(--serif); font-weight: 500; font-size: 21px; letter-spacing: 0; }
.logo-dark.logo--lazard, .logo-dark.logo--rothschild { font-family: var(--serif); font-weight: 400; font-size: 18px; letter-spacing: 0.14em; }
.logo-dark.logo--raymond { font-family: var(--serif); font-weight: 500; font-size: 17px; letter-spacing: 0.06em; }
.logo-dark.logo--truist { letter-spacing: 0.2em; }
.logo-dark.logo--leerink { font-size: 15px; line-height: 1.1; letter-spacing: 0.12em; }
.logo-dark.logo--leerink small { font-size: 8px; letter-spacing: 0.34em; font-weight: 500; }
.logo-dark.logo--cg { font-family: var(--serif); font-size: 26px; font-style: italic; font-weight: 500; letter-spacing: 0; }
.logo-dark.logo--baird { letter-spacing: 0.26em; }
.logo-dark.logo--hcw { font-size: 18px; letter-spacing: 0.06em; }

/* Future state — green transition + scroll highlight text */
.ffuture { padding: 200px var(--pad) 220px; }
.ffuture__inner { max-width: 560px; margin: 0 auto; }
.ffuture__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 46px;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin-bottom: 56px;
  transition: color 0.7s var(--ease);
}
.in-green .ffuture__title { color: #f4f1ea; }
.ffuture__text p {
  font-size: 19px;
  line-height: 1.48;
  letter-spacing: -0.2px;
  margin-bottom: 28px;
}
.ffuture__text .w { color: rgba(21,21,21,0.25); transition: color 0.3s linear; }
.ffuture__text .w.lit { color: var(--ink); }
.in-green .ffuture__text .w { color: rgba(244,241,234,0.3); }
.in-green .ffuture__text .w.lit { color: #f4f1ea; }

/* Built for */
.fbuilt { padding: 40px var(--pad) 120px; }
.fbuilt__eyebrow { max-width: var(--container); margin: 0 auto 8px; font-size: 14px; color: var(--muted); letter-spacing: -0.28px; }
.fbuilt__tabs {
  max-width: var(--container);
  margin: 0 auto 48px;
  display: flex;
  gap: 28px;
}
.fbuilt__tab {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 40px;
  letter-spacing: -0.04em;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: rgba(21,21,21,0.25);
  transition: color 0.3s;
}
.fbuilt__tab:hover { color: rgba(21,21,21,0.55); }
.fbuilt__tab.is-active { color: var(--ink); }
.fbuilt__cards {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 56px;
}
.fcard { display: grid; grid-template-columns: 1fr 380px; gap: 56px; align-items: end; }
.fcard__media { border-radius: 12px; overflow: hidden; }
.fcard__media img { width: 100%; }
.fcard__caption { padding-bottom: 8px; }
.fcard__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  letter-spacing: -0.26px;
  color: var(--muted);
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 999px;
  padding: 5px 12px;
  margin-bottom: 16px;
}
.fcard__lines {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.4px;
}

/* Quote marquee */
.fquotes { padding: 80px 0 120px; }
.fquotes__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 44px;
  line-height: 1.05;
  letter-spacing: -0.05em;
  text-align: center;
  margin-bottom: 64px;
}
.fmarquee { overflow: hidden; padding: 12px 0; }
.fmarquee__track { display: flex; width: max-content; animation: marquee 44s linear infinite; }
.fmarquee--reverse .fmarquee__track { animation-direction: reverse; }
.fmarquee__set { display: flex; gap: 16px; padding-right: 16px; }
.qcard {
  width: 360px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 10px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
}
.qcard p { font-size: 16px; line-height: 1.45; letter-spacing: -0.32px; font-weight: 500; }
.qcard__who { display: flex; flex-direction: column; font-size: 13px; letter-spacing: -0.26px; }
.qcard__who strong { font-weight: 500; }
.qcard__who span { color: var(--muted); }

/* Felix CTA + footer */
.fcta { text-align: center; padding: 80px var(--pad) 140px; }
.fcta__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 56px;
  letter-spacing: -0.05em;
  margin-bottom: 30px;
}
.ffooter { position: relative; padding: 0 0 24px; overflow: hidden; }
.ffooter__wordmark { width: 100%; opacity: 0.9; }
.ffooter__by {
  position: absolute;
  right: 40px;
  bottom: 24px;
  font-size: 14px;
  color: var(--muted);
  letter-spacing: -0.28px;
}

/* ============================================================
   Product page
   ============================================================ */
.product-page { background: #fff; }

.phero { padding: 96px var(--pad) 64px; text-align: center; }
.phero__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 56px;
  letter-spacing: -0.05em;
  line-height: 1.02;
}
.phero__sub {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.32px;
  color: var(--body-muted);
}
.phero .btn { margin-top: 28px; }

.pvideo {
  position: relative;
  margin: 0 var(--pad);
  border-radius: 12px;
  overflow: hidden;
}
.pvideo video { width: 100%; display: block; }
.pvideo__pill {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 999px;
  padding: 10px 10px 10px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.18);
  min-width: 380px;
}
.pvideo__text { font-size: 15px; letter-spacing: -0.3px; white-space: nowrap; }
.pvideo__cursor { animation: blink 1s steps(1) infinite; margin-left: -8px; }
@keyframes blink { 50% { opacity: 0; } }
.pvideo__go {
  margin-left: auto;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: none;
  background: #1e4632;
  color: #fff;
  font-size: 15px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}

.pstatement { padding: 120px var(--pad) 96px; }
.pstatement p {
  max-width: 840px;
  margin: 0 auto;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 36px;
  line-height: 1.25;
  letter-spacing: -0.04em;
}
.pstatement .dim { color: #8f8d88; }

.pplatform {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad) 120px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 64px;
  align-items: start;
}
.pplatform__media { position: relative; border-radius: 12px; overflow: hidden; }
.pplatform__media img { width: 100%; }
.pplatform__float {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pplatform__chev { color: rgba(255,255,255,0.8); font-size: 26px; }
.pplatform__chip {
  background: #fff;
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 14px;
  letter-spacing: -0.28px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
  color: #1e4632;
}
.pplatform__side h2 {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.48px;
  margin: 8px 0 40px;
}
.pplatform__list { list-style: none; }
.pplatform__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  font-size: 15px;
  letter-spacing: -0.3px;
}
.pplatform__list .num { color: var(--muted); font-size: 12px; width: 20px; }
.pplatform__list .ic { color: var(--muted); }

.pworkflows { padding: 40px var(--pad) 120px; }
.pworkflows__title {
  max-width: var(--container);
  margin: 0 auto 48px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 44px;
  line-height: 1.05;
  letter-spacing: -0.05em;
}
.pworkflows__grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pwcard__media { border-radius: 10px; overflow: hidden; margin-bottom: 22px; }
.pwcard__media img { width: 100%; }
.pwcard h3 { font-size: 18px; font-weight: 500; letter-spacing: -0.36px; margin-bottom: 10px; }
.pwcard p { font-size: 14px; line-height: 1.55; letter-spacing: -0.28px; color: var(--body-muted); }

.pdata { padding: 64px var(--pad) 120px; }
.pdata__head { max-width: var(--container); margin: 0 auto 40px; display: grid; grid-template-columns: 1fr 1.4fr; gap: 40px; }
.pdata__head h2 { font-family: var(--serif); font-weight: 400; font-size: 40px; letter-spacing: -0.05em; }
.pdata__head p { font-size: 15px; line-height: 1.55; letter-spacing: -0.3px; color: var(--body-muted); max-width: 560px; }
.pdata__grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px 24px;
}
.pdrow {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f4f3f1;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.3px;
}
.pdrow__icon {
  width: 28px; height: 28px;
  border-radius: 6px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background: #fff;
  flex-shrink: 0;
  font-size: 14px;
}
.pdrow__icon img { width: 100%; height: 100%; object-fit: cover; }
.pdrow__icon--glyph { background: #e6e4e1; }

.plearn { padding: 40px var(--pad) 120px; }
.plearn__title {
  max-width: var(--container);
  margin: 0 auto 48px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 44px;
  line-height: 1.05;
  letter-spacing: -0.05em;
}
.plearn__grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.plcard {
  background: #f4f3f1;
  border-radius: 10px;
  padding: 28px;
  display: flex;
  flex-direction: column;
}
.plcard__viz {
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}
.plcard__viz img { max-height: 100%; max-width: 100%; }
.plcard__viz--icons { gap: 12px; flex-wrap: wrap; font-size: 30px; color: #9a9893; }
.plcard__viz--tenant { gap: 14px; font-size: 34px; color: #1e4632; }
.plcard h3 { font-size: 17px; font-weight: 500; letter-spacing: -0.34px; margin-bottom: 10px; }
.plcard p { font-size: 13.5px; line-height: 1.5; letter-spacing: -0.27px; color: var(--body-muted); }

.psec {
  background: var(--dark);
  color: #fff;
  margin: 0 var(--pad);
  border-radius: 12px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  overflow: hidden;
}
.psec__left { padding: 56px; display: flex; flex-direction: column; align-items: flex-start; }
.psec__tag { font-size: 13px; color: rgba(255,255,255,0.6); letter-spacing: -0.26px; }
.psec__left h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 40px;
  line-height: 1.08;
  letter-spacing: -0.045em;
  margin: 120px 0 32px;
}
.psec__left h2 .dim { color: rgba(255,255,255,0.5); }
.psec__list { list-style: none; margin-bottom: 32px; }
.psec__list li { font-size: 14px; letter-spacing: -0.28px; color: rgba(255,255,255,0.8); padding: 7px 0; display: flex; gap: 10px; }
.psec__more { font-size: 14px; color: #fff; border-bottom: 1px solid rgba(255,255,255,0.35); padding-bottom: 2px; }
.psec__more:hover { opacity: 0.7; }
.psec__right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-left: 1px solid var(--line-dark);
}
.pseccell {
  border: 0 solid var(--line-dark);
  border-bottom-width: 1px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 40px;
  min-height: 260px;
}
.pseccell:nth-child(odd) { border-right-width: 1px; }
.pseccell:nth-last-child(-n+2) { border-bottom-width: 0; }
.pseccell svg { width: 84px; height: 84px; color: #8a8a8a; }
.pseccell span { font-size: 12px; color: var(--muted); letter-spacing: -0.24px; }

.pquotes { padding: 120px var(--pad); position: relative; }
.pquotes__nav {
  max-width: var(--container);
  margin: 0 auto 16px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
.pq-arrow {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.15);
  background: transparent;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.pq-arrow:hover { background: rgba(0,0,0,0.05); }
.pq-arrow img { width: 16px; height: 16px; }
.pquotes__stage { max-width: var(--container); margin: 0 auto; position: relative; }
.pquote {
  background: #efeee9;
  border-radius: 12px;
  display: none;
  grid-template-columns: 1.6fr 1fr;
  overflow: hidden;
  min-height: 480px;
}
.pquote.is-active { display: grid; }
.pquote__content {
  padding: 48px 56px;
  display: flex;
  flex-direction: column;
}
.pquote__logo {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 48px;
}
.pquote__content p {
  font-size: 26px;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: -0.52px;
  flex: 1;
}
.pquote__who { display: flex; flex-direction: column; gap: 4px; margin-top: 40px; }
.pquote__who strong { font-size: 15px; font-weight: 500; }
.pquote__who span { font-size: 11px; letter-spacing: 0.08em; color: var(--muted); }
.pquote__photo { overflow: hidden; }
.pquote__photo img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   Security page
   ============================================================ */
.security-page { background: #0d0d0d; color: #fff; }
.security-page .mobile-menu { background: #0d0d0d; }
.security-page .mobile-menu__links a { color: #fff; border-bottom-color: var(--line-dark); }
.security-page .footer, .security-page .cta { background: #0d0d0d; }

.shero { padding: 110px var(--pad) 140px; text-align: center; }
.shero__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 64px;
  line-height: 1.0;
  letter-spacing: -0.04em;
}
.shero__sub {
  margin-top: 24px;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.32px;
  color: rgba(255,255,255,0.75);
}
.shero .corner-frame { margin-top: 36px; }

/* corner bracket decoration */
.corner-frame {
  position: relative;
  display: inline-block;
  padding: 14px 18px;
}
.corner-frame::before, .corner-frame::after {
  content: "";
  position: absolute;
  width: 12px; height: 12px;
  border: 1.5px solid rgba(255,255,255,0.55);
}
.corner-frame::before { top: 0; left: 0; border-right: none; border-bottom: none; }
.corner-frame::after { bottom: 0; right: 0; border-left: none; border-top: none; }
.corner-frame--wide { display: block; padding: 10px; }

.sfeatures { padding: 40px var(--pad) 120px; }
.sfeatures__grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 72px 96px;
}
.sfeat__icon { width: 30px; height: 30px; color: #fff; margin-bottom: 44px; }
.sfeat__icon svg { width: 100%; height: 100%; }
.sfeat h3 { font-size: 16px; font-weight: 500; letter-spacing: -0.32px; margin-bottom: 8px; }
.sfeat p { font-size: 14px; line-height: 1.5; letter-spacing: -0.28px; color: rgba(255,255,255,0.6); }

.scompliance { padding: 40px var(--pad) 140px; text-align: center; }
.scompliance__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 44px;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 56px;
}
.scompliance__title .dim { color: rgba(255,255,255,0.45); }
.scompliance .corner-frame--wide { max-width: 1128px; margin: 0 auto; }
.scompliance__strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.ccell {
  border: 1px dashed rgba(255,255,255,0.22);
  margin-left: -1px;
  min-height: 176px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.ccell:first-child { margin-left: 0; }
.ccell svg { width: 90px; height: 90px; color: #7a7a7a; }
.ccell span {
  position: absolute;
  left: 14px; bottom: 12px;
  font-size: 12px;
  color: #8a8a8a;
  letter-spacing: -0.24px;
}

/* Model APIs pricing table */
.mapis { padding: 24px var(--pad) 140px; }
.mapis__inner { max-width: var(--container); margin: 0 auto; }
.mapis__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}
.mapis__head h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 40px;
  letter-spacing: -0.04em;
  margin-bottom: 10px;
}
.mapis__head p { font-size: 15px; letter-spacing: -0.3px; color: rgba(255,255,255,0.65); }
.mapis__per {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.28px;
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}
.mapis__chip {
  border: 1px solid rgba(255,255,255,0.25);
  padding: 8px 14px;
  font-size: 12px;
  letter-spacing: 0.06em;
  background: rgba(255,255,255,0.05);
}
.mapis__scroll { overflow-x: auto; }
.mtable { min-width: 900px; }
.mtable__row {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr 158px;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.09);
  font-size: 15px;
  letter-spacing: -0.3px;
  color: rgba(255,255,255,0.85);
}
.mtable__row--head {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  border-bottom-color: rgba(255,255,255,0.18);
}
.mmodel { display: flex; align-items: center; gap: 12px; }
.mmodel a { border-bottom: 1px solid rgba(255,255,255,0.3); padding-bottom: 1px; transition: color 0.2s var(--ease), border-color 0.2s var(--ease); }
.mmodel a:hover { color: var(--orange); border-bottom-color: var(--orange); }
.mtile {
  width: 26px; height: 26px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-style: normal;
  font-size: 12px;
  font-weight: 700;
  background: #2a2a2a;
  border: 1px solid rgba(255,255,255,0.14);
  color: #fff;
}
.mtile--tm { font-size: 8px; letter-spacing: 0.04em; }
.mtile--nv { color: #76b900; }
.mtile--ds { color: #6a7bff; }
.mtile--oa { color: #e8e8e8; }
.mapis__try {
  height: 34px;
  padding: 6px 14px;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  gap: 6px;
}
.mapis__try em { font-style: normal; font-size: 14px; }

.score {
  max-width: var(--container);
  margin: 0 auto;
  padding: 40px var(--pad) 160px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.score__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 40px;
  letter-spacing: -0.04em;
}
.score__body p {
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: -0.32px;
  color: rgba(255,255,255,0.82);
  margin-bottom: 24px;
}
.score__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  letter-spacing: -0.28px;
  color: #fff;
  margin-top: 8px;
}
.score__link:hover { opacity: 0.7; }
.score__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}
.cta--flush .cta__inner { border-top: 1px solid var(--line-dark); padding-top: 64px; }

/* ============================================================
   Company page
   ============================================================ */
.company-page { background: #fff; }

.chero { padding: 96px var(--pad) 56px; text-align: center; }
.chero__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 60px;
  line-height: 1.02;
  letter-spacing: -0.05em;
}
.chero__sub { margin-top: 18px; font-size: 15px; letter-spacing: -0.3px; color: var(--body-muted); }
.chero .corner-frame { margin-top: 24px; }
.corner-frame--dark::before, .corner-frame--dark::after { border-color: rgba(0,0,0,0.45); }

.cvideo { padding: 24px var(--pad) 0; }
.cvideo__wrap {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1280 / 640;
  background: #10151c;
}
.cvideo__wrap video { width: 100%; height: 100%; object-fit: cover; }
.cvideo__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 30, 0.25);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  transition: background 0.3s;
}
.cvideo__overlay:hover { background: rgba(10, 20, 30, 0.4); }
.cvideo__overlay.is-hidden { display: none; }
.cvideo__logo {
  font-family: var(--serif);
  font-size: 76px;
  color: #fff;
  letter-spacing: -0.03em;
}
.cvideo__playicon {
  color: #fff;
  font-size: 20px;
  width: 52px; height: 52px;
  border: 1.5px solid rgba(255,255,255,0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 4px;
}

.cabout {
  max-width: var(--container);
  margin: 0 auto;
  padding: 110px var(--pad) 110px;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
}
.cabout__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 40px;
  line-height: 1.08;
  letter-spacing: -0.045em;
}
.cabout__meta { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 40px; }
.cmeta { display: flex; flex-direction: column; gap: 4px; font-size: 14px; letter-spacing: -0.28px; }
.cmeta__label { font-size: 11px; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 8px; }
.cabout__mission { font-size: 15px; line-height: 1.6; letter-spacing: -0.3px; color: var(--ink); max-width: 560px; }

.cbuilt { background: #efeee9; padding: 96px var(--pad) 110px; }
.cbuilt__head {
  max-width: var(--container);
  margin: 0 auto 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.cbuilt__head h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 40px;
  line-height: 1.08;
  letter-spacing: -0.045em;
}
.cbuilt__head p { font-size: 14px; line-height: 1.55; letter-spacing: -0.28px; color: var(--body-muted); max-width: 420px; }

.cgrid { max-width: var(--container); margin: 0 auto; display: grid; gap: 1px; background: rgba(0,0,0,0.08); border: 1px solid rgba(0,0,0,0.08); }
.cgrid--4 { grid-template-columns: repeat(4, 1fr); }
.cgrid--3 { grid-template-columns: repeat(3, 1fr); }
.cbuilt .ccard { background: #efeee9; }
.ccard {
  background: #fff;
  min-height: 128px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
}
.cwordmark { color: #4b4a48; font-size: 20px; font-weight: 500; letter-spacing: -0.2px; line-height: 1.15; }
.cw--serif { font-family: var(--serif); font-weight: 500; font-size: 22px; }
.cw--caps { font-size: 16px; font-weight: 700; letter-spacing: 0.08em; }
.cw--boxed { background: #5c5c5c; color: #fff; padding: 4px 10px; font-size: 15px; }
.cw--stack { display: flex; flex-direction: column; align-items: center; line-height: 1; gap: 2px; }
.cw--stack small { font-size: 12px; }
.cw--boxes { font-size: 13px; font-weight: 700; letter-spacing: 0.14em; line-height: 1.6; }

.cinvestors { padding: 110px var(--pad); }
.cinvestors__title {
  max-width: var(--container);
  margin: 0 auto 48px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 40px;
  line-height: 1.08;
  letter-spacing: -0.045em;
}
.cinvestors .ccard { min-height: 150px; }

.cjoin {
  max-width: var(--container);
  margin: 0 auto;
  padding: 40px var(--pad) 96px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.cjoin__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 40px;
  line-height: 1.12;
  letter-spacing: -0.045em;
}
.cjoin__title .dim { color: rgba(21,21,21,0.45); }
.cjoin__right p { font-size: 15px; line-height: 1.55; letter-spacing: -0.3px; margin-bottom: 24px; max-width: 480px; }

.coffice img { width: 100%; display: block; }

/* ============================================================
   Customers page
   ============================================================ */
.customers-page { background: #fff; }

.cushero { padding: 110px var(--pad) 72px; text-align: center; }
.cushero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 48px;
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.cusgrid { padding: 0 var(--pad) 96px; }
.cusgrid__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.cuscell {
  background: #f6f5f3;
  border-radius: 6px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-dark.logo--bnpd { font-size: 15px; font-weight: 700; }
.logo-dark.logo--mts { font-size: 19px; letter-spacing: 0.1em; display: inline-flex; align-items: center; }
.logo-dark.logo--mts small { font-size: 9px; line-height: 1.15; letter-spacing: 0.02em; text-align: left; font-weight: 500; }
.logo-dark.logo--harbor { font-size: 15px; letter-spacing: 0.22em; }

.stories { max-width: var(--container); margin: 0 auto; padding: 0 var(--pad) 120px; }
.stories__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 40px;
  letter-spacing: -0.05em;
  margin-bottom: 40px;
}
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: end;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.story:first-of-type { border-top: 1px solid var(--line); }
.story__media { border-radius: 8px; overflow: hidden; }
.story__media img { width: 100%; transition: transform 0.5s var(--ease); }
.story:hover .story__media img { transform: scale(1.02); }
.story h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 26px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

/* ============================================================
   News page
   ============================================================ */
.news-page { background: #fff; }

.nhero { padding: 110px var(--pad) 48px; text-align: center; }
.nhero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 64px;
  letter-spacing: -0.05em;
}
.nhero p { margin-top: 16px; font-size: 15px; line-height: 1.5; letter-spacing: -0.3px; color: var(--body-muted); }
.nhero .btn { margin-top: 26px; }

.nfilters {
  display: flex;
  gap: 10px;
  justify-content: center;
  padding: 24px var(--pad) 40px;
  flex-wrap: wrap;
}
.nfilter {
  border: 1px solid rgba(0,0,0,0.14);
  background: transparent;
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 14px;
  letter-spacing: -0.28px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.nfilter:hover { background: rgba(0,0,0,0.05); }
.nfilter.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }

.ngrid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad) 216px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 32px;
}
.ncard { display: flex; flex-direction: column; }
.ncard.is-hidden { display: none; }
.ncard__media { border-radius: 8px; overflow: hidden; aspect-ratio: 40 / 21; }
.ncard__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.ncard:hover .ncard__media img { transform: scale(1.03); }
.ncard__date { margin: 14px 0 6px; font-size: 12px; color: var(--muted); letter-spacing: -0.24px; }
.ncard h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: -0.02em;
}
.nmore { display: flex; justify-content: center; padding: 56px var(--pad) 120px; }
.btn--outline {
  border: 1px solid rgba(0,0,0,0.16);
  background: transparent;
  color: var(--ink);
  height: 40px;
  padding: 8px 20px;
}
.btn--outline:hover { background: rgba(0,0,0,0.05); }

/* ============================================================
   Careers page
   ============================================================ */
.careers-page { background: #0d0d0d; color: #fff; }
.careers-page .mobile-menu { background: #0d0d0d; }
.careers-page .mobile-menu__links a { color: #fff; border-bottom-color: var(--line-dark); }
.careers-page .footer, .careers-page .cta { background: #0d0d0d; }

.crhero { padding: 150px var(--pad) 75px; text-align: center; }
.crhero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 56px;
  line-height: 1.04;
  letter-spacing: -0.045em;
}
.crhero .corner-frame { margin-top: 26px; }
.crhero > .btn { margin-top: 40px; }

.crstrip { position: relative; overflow: hidden; padding: 0 0 32px; }
.crstrip__track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 0 var(--pad);
  scrollbar-width: none;
}
.crstrip__track::-webkit-scrollbar { display: none; }
.crstrip__track img {
  height: 300px;
  width: auto;
  border-radius: 6px;
  flex-shrink: 0;
}
.crstrip__arrow {
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.9);
  color: #111;
  font-size: 17px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.crstrip__arrow:hover { background: #fff; }

.crabout {
  max-width: var(--container);
  margin: 0 auto;
  padding: 75px var(--pad) 140px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
}
.crabout h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 36px;
  line-height: 1.12;
  letter-spacing: -0.04em;
}
.crabout__body p {
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: -0.3px;
  color: rgba(255,255,255,0.82);
  margin-bottom: 20px;
  max-width: 560px;
}

.crroles { max-width: var(--container); margin: 0 auto; padding: 0 var(--pad) 140px; }
.crroles__count {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  letter-spacing: -0.26px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.crroles__dot { width: 7px; height: 7px; border-radius: 50%; background: #4ade80; display: inline-block; }
.crroles__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 44px;
  letter-spacing: -0.045em;
  margin-bottom: 32px;
}
.crfilters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 64px; }
.crfilter {
  border: 1px solid rgba(255,255,255,0.18);
  background: transparent;
  color: rgba(255,255,255,0.85);
  border-radius: 999px;
  padding: 7px 15px;
  font-size: 13px;
  letter-spacing: -0.26px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.crfilter sup { font-size: 9px; opacity: 0.6; margin-left: 3px; }
.crfilter:hover { background: rgba(255,255,255,0.08); }
.crfilter.is-active { background: #fff; color: #111; border-color: #fff; }

.crdept { display: grid; grid-template-columns: 300px 1fr; gap: 32px; padding: 40px 0; }
.crdept.is-hidden { display: none; }
.crdept h3 { font-size: 15px; font-weight: 500; letter-spacing: -0.3px; color: rgba(255,255,255,0.65); }
.crlist { display: flex; flex-direction: column; }
.crjob {
  display: grid;
  grid-template-columns: 1fr auto 40px;
  gap: 24px;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255,255,255,0.09);
  transition: opacity 0.2s;
}
.crjob:first-child { border-top: 1px solid rgba(255,255,255,0.09); }
.crjob:hover { opacity: 0.65; }
.crjob__title { font-size: 15px; letter-spacing: -0.3px; }
.crjob__loc { font-size: 13px; color: rgba(255,255,255,0.5); letter-spacing: -0.26px; }
.crjob__num { font-size: 11px; color: rgba(255,255,255,0.35); text-align: right; }

/* ============================================================
   Article pages (news detail) — matched to original layout
   ============================================================ */
.article {
  max-width: 770px;
  margin: 0 auto;
  padding: 96px 24px 40px;
}
.article__date {
  display: block;
  font-size: 13px;
  letter-spacing: -0.26px;
  color: var(--muted);
  margin-bottom: 20px;
}
.article__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: -0.045em;
  margin-bottom: 16px;
}
.article__author {
  display: block;
  font-size: 13px;
  letter-spacing: -0.26px;
  color: var(--muted);
  margin-bottom: 48px;
}
.article__hero { border-radius: 8px; overflow: hidden; margin-bottom: 44px; }
.article__hero img { width: 100%; }
.article__body p {
  font-size: 15px;
  line-height: 1.65;
  letter-spacing: -0.3px;
  color: #3c3c3c;
  margin-bottom: 22px;
}

.band { padding: 64px var(--pad); }
.band__inner {
  max-width: 1280px;
  margin: 0 auto;
  background: #efeee9;
  padding: 72px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.band__inner h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 32px;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}
.band__inner p { font-size: 14px; letter-spacing: -0.28px; color: var(--muted); }

.more { padding: 24px var(--pad) 120px; }
.more__grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 32px;
}

/* ============================================================
   Product page v2 — API playground, logs, mocks, lineup
   ============================================================ */
.phero__actions { display: flex; gap: 12px; justify-content: center; margin-top: 28px; }
.phero__actions .btn { margin-top: 0; }

/* API playground */
.playground { padding: 0 var(--pad); }
.pg {
  max-width: 1080px;
  margin: 0 auto;
  background: #151515;
  border-radius: 12px;
  color: #fff;
  overflow: hidden;
}
.pg__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 22px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.pg__model {
  font-family: "SF Mono", ui-monospace, Menlo, monospace;
  font-size: 13px;
  color: rgba(255,255,255,0.92);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255,255,255,0.16);
  padding: 8px 14px;
  background: rgba(255,255,255,0.04);
}
.pg__model em { font-style: normal; color: rgba(255,255,255,0.5); font-size: 11px; }
.pg__modeldot { width: 7px; height: 7px; border-radius: 50%; background: #4ade80; }
.pg__curl {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.9);
  height: 34px;
  padding: 6px 14px;
  font-size: 12px;
  letter-spacing: 0.03em;
}
.pg__curl:hover { border-color: var(--orange); color: var(--orange); background: transparent; }
.pg__body { padding: 24px 22px; display: flex; flex-direction: column; gap: 22px; }
.pg__label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 8px;
}
.pg__prompt, .pg__response {
  font-family: "SF Mono", ui-monospace, Menlo, monospace;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,0.92);
}
.pg__response { color: rgba(255,255,255,0.78); min-height: 92px; }
.pg__cursor { color: var(--orange); animation: blink 1s steps(1) infinite; }
.pg__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding: 14px 22px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}
.pg__stats strong { color: rgba(255,255,255,0.92); font-weight: 500; margin-left: 6px; }

/* Request logs mock */
.pplatform__media--logs {
  background: #151515;
  border-radius: 12px;
  overflow: hidden;
  align-self: stretch;
}
.logs { padding: 20px 22px; color: #fff; font-size: 12.5px; }
.logs__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.logs__title { font-size: 14px; font-weight: 500; letter-spacing: -0.28px; }
.logs__live { display: inline-flex; align-items: center; gap: 7px; font-size: 11px; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.08em; }
.logs__dot { width: 6px; height: 6px; border-radius: 50%; background: #4ade80; }
.logs__row {
  display: grid;
  grid-template-columns: 1fr 1.7fr 0.9fr 0.9fr 0.9fr 0.7fr;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-family: "SF Mono", ui-monospace, Menlo, monospace;
  font-size: 11.5px;
  color: rgba(255,255,255,0.75);
  white-space: nowrap;
}
.logs__row--head { font-family: var(--sans); color: rgba(255,255,255,0.45); font-size: 11px; }
.logs__row .ok { color: #4ade80; }
.logs__row:last-child { border-bottom: none; }

/* numbered list with descriptions */
.pplatform__list--desc li { align-items: flex-start; padding: 18px 0; }
.pplatform__list--desc li strong { display: block; font-size: 16px; font-weight: 500; letter-spacing: -0.32px; margin-bottom: 4px; }
.pplatform__list--desc li p { font-size: 14px; line-height: 1.5; letter-spacing: -0.28px; color: var(--body-muted); }

/* workflow card mocks */
.pwcard__media--mock {
  background: #151515;
  aspect-ratio: 908 / 620;
  display: flex;
  align-items: center;
  padding: 26px;
}
.mock { width: 100%; }
.mock--code { display: flex; flex-direction: column; gap: 6px; }
.mock__ln {
  font-family: "SF Mono", ui-monospace, Menlo, monospace;
  font-size: 12.5px;
  color: rgba(255,255,255,0.85);
  white-space: nowrap;
  overflow: hidden;
}
.mock__ln em { font-style: normal; color: #ff9d5c; }
.mock__ln i { font-style: normal; color: #9ecb8f; }
.mock--models { display: flex; flex-direction: column; gap: 8px; }
.mock__model {
  font-family: "SF Mono", ui-monospace, Menlo, monospace;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 9px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mock__model.is-on { color: #fff; border-color: var(--orange); background: rgba(255,117,31,0.08); }
.mock__model b { color: var(--orange); font-weight: 500; }
.mock--scale { display: flex; flex-direction: column; gap: 18px; }
.mock__tier span {
  display: block;
  font-size: 12px;
  letter-spacing: -0.24px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 7px;
}
.mock__tier i {
  display: block;
  height: 10px;
  background: linear-gradient(90deg, rgba(255,117,31,0.55), var(--orange));
}

/* availability tags */
.tag {
  font-style: normal;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid rgba(0,0,0,0.14);
  color: var(--muted);
  white-space: nowrap;
}
.tag--live { background: var(--orange); border-color: var(--orange); color: #fff; }
.pdata__grid .pdrow { justify-content: space-between; }

/* flat capability cards */
.plcard--flat { min-height: 0; gap: 0; }
.plcard--flat h3 { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; font-size: 17px; margin-bottom: 10px; }
.plcard--flat p { font-size: 14px; }

/* production band sub */
.psec__sub {
  font-size: 15px;
  line-height: 1.55;
  letter-spacing: -0.3px;
  color: rgba(255,255,255,0.7);
  max-width: 400px;
  margin: -12px 0 28px;
}
.psec .psec__left h2 { margin-top: 56px; }

/* conversion section */
.pconvert { padding: 120px var(--pad); }
.pconvert__card {
  max-width: var(--container);
  margin: 0 auto;
  background: #efeee9;
  border-radius: 12px;
  padding: 88px 44px;
  text-align: center;
}
.pconvert__card h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 44px;
  line-height: 1.08;
  letter-spacing: -0.045em;
  margin-bottom: 18px;
}
.pconvert__card p {
  font-size: 16px;
  letter-spacing: -0.32px;
  color: var(--body-muted);
  max-width: 520px;
  margin: 0 auto 32px;
}
.pconvert__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1100px) {
  :root { --pad: 40px; }
  .nrow__value { font-size: 88px; }
  .security__grid { grid-template-columns: repeat(3, 1fr); }
  .scard { margin-top: -1px; }
}
@media (max-width: 900px) {
  .nav__links, .nav__actions { display: none; }
  .nav__toggle { display: flex; }
  .hero__title { font-size: 48px; }
  .tcards { flex-direction: column; min-height: 0; }
  .tcard__body { min-width: 0; max-height: 0; opacity: 0; }
  .tcard.is-open .tcard__body { max-height: none; opacity: 1; }
  .why__grid { grid-template-columns: 1fr; }
  .why__title { position: static; }
  .nrow { flex-direction: column; align-items: flex-start; gap: 10px; }
  .nrow__label { width: auto; margin-left: 0; }
  .cta__inner { flex-direction: column; align-items: flex-start; }
  .footer__cols { grid-template-columns: repeat(2, 1fr); }
  .page-hero { padding-top: 150px; }
  .page-hero h1 { font-size: 44px; }
}
@media (max-width: 600px) {
  :root { --pad: 24px; }
  .hero__title { font-size: 40px; }
  .testimonials__title, .why__title { font-size: 34px; }
  .security__grid { grid-template-columns: repeat(2, 1fr); }
  .nrow__value { font-size: 64px; }
  .security__title, .cta__title { font-size: 36px; }
}

/* ============================================================
   Arcware brand hover overrides — #ff751f
   (replaces the original grey/dim hover states site-wide)
   ============================================================ */
:root { --orange: #ff751f; }

/* text links: turn orange instead of fading */
.announce__link:hover,
.nav__links a:hover,
.nav__login:hover,
.footer__col a:hover,
.nav--light .nav__links a:hover,
.nav--light .nav__login:hover,
.mobile-menu__links a:hover,
.psec__more:hover,
.score__link:hover,
.crjob:hover .crjob__title,
.crjob:hover .crjob__loc,
.crjob:hover .crjob__num,
.ncard:hover h3,
.fbuilt__tab:hover {
  color: var(--orange);
  opacity: 1;
}
.announce__link, .nav__links a, .nav__login, .footer__col a,
.mobile-menu__links a, .psec__more, .score__link, .crjob__title,
.crjob__loc, .crjob__num, .ncard h3, .fbuilt__tab {
  transition: color 0.2s var(--ease);
}
.crjob:hover { opacity: 1; }
.psec__more:hover { border-bottom-color: var(--orange); }

/* buttons: fill with orange */
.btn--white:hover,
.btn--dark:hover,
.mobile-menu__cta:hover {
  background: var(--orange);
  color: #fff;
  opacity: 1;
}
.btn--outline:hover {
  background: transparent;
  border-color: var(--orange);
  color: var(--orange);
}

/* pills, toggles, arrows */
.nfilter:hover { background: transparent; border-color: var(--orange); color: var(--orange); }
.nfilter.is-active:hover { background: var(--orange); border-color: var(--orange); color: #fff; }
.crfilter:hover { background: transparent; border-color: var(--orange); color: var(--orange); }
.crfilter.is-active:hover { background: var(--orange); border-color: var(--orange); color: #fff; }
.tcard__toggle:hover { background: var(--orange); border-color: var(--orange); color: #fff; }
.pq-arrow:hover { background: var(--orange); border-color: var(--orange); }
.pq-arrow:hover img { filter: brightness(0) invert(1); }
.crstrip__arrow:hover { background: var(--orange); color: #fff; }
.cvideo__overlay:hover .cvideo__playicon { border-color: var(--orange); color: var(--orange); }

/* ============================================================
   Sharp corners + liquid glass buttons
   ============================================================ */
.btn,
.btn--nav,
.btn--hero,
.btn--outline,
.mobile-menu__cta,
.nfilter,
.crfilter,
.tcard__toggle,
.pq-arrow,
.crstrip__arrow {
  border-radius: 0;
}

/* base glass treatment */
.btn {
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  transition: background 0.25s var(--ease), color 0.25s var(--ease),
    border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

/* light glass — buttons that sit on dark/video contexts */
.btn--white {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 4px 18px rgba(0, 0, 0, 0.18);
}

/* dark glass — buttons on light pages */
.btn--dark,
.nav--light .btn--white,
.mobile-menu__cta {
  background: rgba(21, 21, 21, 0.82);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 4px 14px rgba(0, 0, 0, 0.18);
}

.btn--outline {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* orange hover keeps the glass frame coherent */
.btn--white:hover,
.btn--dark:hover,
.nav--light .btn--white:hover,
.mobile-menu__cta:hover {
  background: rgba(255, 117, 31, 0.88);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 6px 22px rgba(255, 117, 31, 0.35);
}
.btn--outline:hover { border-color: var(--orange); color: var(--orange); background: rgba(255, 117, 31, 0.08); }

/* ============================================================
   Legal pages (Terms of Use / Privacy Policy)
   ============================================================ */
.legal-page { background: #fff; }
.legal {
  max-width: 720px;
  margin: 0 auto;
  padding: 96px 24px 140px;
}
.legal__updated {
  display: block;
  font-size: 14px;
  letter-spacing: -0.28px;
  color: var(--muted);
  margin-bottom: 20px;
}
.legal__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 56px;
  line-height: 1.02;
  letter-spacing: -0.05em;
  margin-bottom: 28px;
}
.legal__intro {
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: -0.32px;
  color: var(--muted);
  margin-bottom: 40px;
}
.legal__rule { border: none; border-top: 1px solid var(--line); margin-bottom: 40px; }
.legal h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 24px;
  letter-spacing: -0.02em;
  margin: 40px 0 16px;
}
.legal p {
  font-size: 15px;
  line-height: 1.65;
  letter-spacing: -0.3px;
  color: #3c3c3c;
  margin-bottom: 18px;
}
.legal a { text-decoration: underline; text-underline-offset: 2px; }
.legal a:hover { color: var(--orange); }

/* ============================================================
   Hero scroll indicator — liquid glass arrow
   ============================================================ */
html { scroll-behavior: smooth; }
.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  transition: color 0.25s var(--ease);
}
.hero__scroll:hover { color: var(--orange); }

/* ============================================================
   404 page
   ============================================================ */
.notfound-page { background: #fff; }
.notfound {
  min-height: calc(100vh - 68px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
}
.notfound__code {
  font-family: var(--serif);
  font-size: 15px;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 16px;
}
.notfound__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 64px;
  line-height: 1.02;
  letter-spacing: -0.05em;
}
.notfound__sub {
  margin-top: 18px;
  font-size: 15px;
  letter-spacing: -0.3px;
  color: var(--body-muted);
}
.notfound .btn { margin-top: 32px; }

/* ============================================================
   Page transitions — native cross-document view transitions
   (Chrome/Edge/Safari 18+), with JS fade fallback elsewhere
   ============================================================ */
@view-transition {
  navigation: auto;
}
/* pure, evenly-timed cross-fade — old and new overlap the whole way */
@keyframes vt-out {
  to { opacity: 0; }
}
@keyframes vt-in {
  from { opacity: 0; }
}
::view-transition-old(root) {
  animation: vt-out 0.5s ease both;
  mix-blend-mode: normal;
}
::view-transition-new(root) {
  animation: vt-in 0.5s ease both;
  mix-blend-mode: normal;
}

/* JS fallback (browsers without view transitions) */
@keyframes page-in {
  from { opacity: 0; }
}
body.vt-fallback { animation: page-in 0.5s ease both; }
body.page-leave { opacity: 0 !important; transition: opacity 0.3s ease !important; }

/* ============================================================
   Full-screen section rhythm — each section occupies its own
   viewport (homepage offers + every product section)
   ============================================================ */
.offers {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* hero + playground share the first screen */
.product-page .phero {
  min-height: calc(100vh - 170px); /* viewport minus announce + nav */
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px var(--pad) 72px;
}
.product-page .phero .pg {
  width: 100%;
  margin-top: 56px;
  text-align: left;
}
.phero__actions .btn { height: 44px; padding: 8px 20px; }

/* snap section 2 — the orange moment. Felix-style: the WHOLE page
   washes orange while this section is in view, so the transition
   never shows a gap; the wash recedes before section 3 fills. */
.product-page {
  transition: background-color 0.7s var(--ease);
}
.product-page.in-orange { background: var(--orange); }
.product-page .pstatement {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px var(--pad);
}
.product-page .pstatement p,
.product-page .pstatement .dim {
  transition: color 0.7s var(--ease);
}
.product-page.in-orange .pstatement p { color: #fff; }
.product-page.in-orange .pstatement .dim { color: rgba(255, 255, 255, 0.55); }

/* snap section 3 — endpoint/logs fills the screen, workflows follows */
.product-page .pplatform {
  min-height: 100vh;
  align-content: center;
  padding-top: 40px;
  padding-bottom: 60px;
}
.product-page .pworkflows { padding: 20px var(--pad) 140px; }

/* snap section 4 — model platform + capabilities + production band */
.product-page .pdata { padding: 70px var(--pad) 90px; }
.product-page .plearn { padding: 0 var(--pad) 100px; }

/* production band — compact + balanced */
.product-page .psec { margin: 0 var(--pad) 120px; }
.product-page .psec__left { justify-content: center; padding: 64px 56px; }
.product-page .psec__left h2 { margin: 28px 0 20px; font-size: 44px; }
.product-page .psec__sub { margin: 0 0 28px; }
.product-page .pseccell { min-height: 230px; gap: 16px; padding: 32px; }
.product-page .pseccell svg { width: 64px; height: 64px; color: #a8a8a8; }
.product-page .pseccell span { font-size: 13px; color: rgba(255, 255, 255, 0.7); }
/* snap section 5 — conversion fills the screen */
.product-page .pconvert {
  min-height: calc(100vh - 400px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px var(--pad);
}
.product-page .pconvert__card { width: 100%; }

/* ============================================================
   Login page
   ============================================================ */
.login-page { background: #fff; }
.login {
  min-height: calc(100vh - 68px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
}
.login__card { width: 100%; max-width: 400px; text-align: center; }
.login__card h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 40px;
  letter-spacing: -0.045em;
  margin-bottom: 10px;
}
.login__sub {
  font-size: 15px;
  letter-spacing: -0.3px;
  color: var(--body-muted);
  margin-bottom: 36px;
}
.login__form { display: flex; flex-direction: column; gap: 16px; text-align: left; }
.login__form label span {
  display: block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.26px;
  margin-bottom: 6px;
}
.login__form input {
  width: 100%;
  height: 44px;
  padding: 8px 14px;
  font-family: var(--sans);
  font-size: 15px;
  letter-spacing: -0.3px;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 0;
  background: #fff;
  outline: none;
  transition: border-color 0.2s var(--ease);
}
.login__form input:focus { border-color: var(--orange); }
.login__submit { width: 100%; margin-top: 8px; }
.login__foot {
  margin-top: 24px;
  font-size: 14px;
  letter-spacing: -0.28px;
  color: var(--muted);
}
.login__foot a { text-decoration: underline; text-underline-offset: 2px; transition: color 0.2s; }
.login__foot a:hover { color: var(--orange); }

/* ============================================================
   Contact modal — conversion popup for Get Access / Get Started /
   Talk to Arcware / Get API Key / Create an Account / Contact sales
   ============================================================ */
.cmodal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s var(--ease), visibility 0s linear 0.3s;
}
.cmodal.open { visibility: visible; opacity: 1; transition: opacity 0.3s var(--ease); }
.cmodal__scrim {
  position: absolute;
  inset: 0;
  background: rgba(10, 8, 6, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.cmodal__card {
  position: relative;
  width: 100%;
  max-width: 540px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  background: #fff;
  border-radius: 12px;
  padding: 44px 44px 40px;
  transform: translateY(14px);
  transition: transform 0.35s var(--ease);
}
.cmodal.open .cmodal__card { transform: none; }
.cmodal__x {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  font-size: 22px;
  line-height: 1;
  color: var(--muted);
  cursor: pointer;
  transition: color 0.2s;
}
.cmodal__x:hover { color: var(--orange); }
.cmodal__card h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 34px;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}
.cmodal__card > p {
  font-size: 15px;
  letter-spacing: -0.3px;
  color: var(--body-muted);
  margin-bottom: 28px;
}
.cmodal__form { display: flex; flex-direction: column; gap: 14px; }
.cmodal__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cmodal__form label span {
  display: block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.26px;
  margin-bottom: 6px;
}
.cmodal__form input,
.cmodal__form textarea {
  width: 100%;
  padding: 11px 14px;
  font-family: var(--sans);
  font-size: 15px;
  letter-spacing: -0.3px;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 0;
  background: #fff;
  outline: none;
  transition: border-color 0.2s var(--ease);
  resize: vertical;
}
.cmodal__form textarea { min-height: 88px; }
.cmodal__form input:focus,
.cmodal__form textarea:focus { border-color: var(--orange); }
.cmodal__form .btn { width: 100%; margin-top: 10px; }
.cmodal__note {
  display: block;
  margin-top: 14px;
  font-size: 13px;
  letter-spacing: -0.26px;
  color: var(--muted);
  text-align: center;
}
.cmodal__note[hidden] { display: none; }
@media (max-width: 560px) {
  .cmodal__card { padding: 32px 24px; }
  .cmodal__row { grid-template-columns: 1fr; }
}

/* ============================================================
   Lenis smooth scroll (required base styles)
   ============================================================ */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

/* announce bar is orange now — hover to ink instead of orange-on-orange */
.announce__link:hover { color: #151515; opacity: 1; }

/* News page: keep the fold clean — hero fills enough that the footer
   never shows on load */
.news-page .nhero {
  min-height: 56vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* ============================================================
   Responsive pass 2 — every section added since the original
   breakpoints (offers, playground, logs, tables, bands, modal)
   ============================================================ */
@media (max-width: 1100px) {
  .pdata__grid { grid-template-columns: repeat(2, 1fr); }
  .pworkflows__grid, .plearn__grid { grid-template-columns: repeat(2, 1fr); }
  .offers__grid { gap: 12px; }
  .ocard { padding: 32px 26px; min-height: 360px; }
}

@media (max-width: 960px) {
  /* homepage offerings stack */
  .offers { min-height: 0; padding: 100px var(--pad); }
  .offers__grid { grid-template-columns: 1fr; }
  .ocard { min-height: 0; gap: 28px; }

  /* product layout stacks */
  .pplatform { grid-template-columns: 1fr; gap: 40px; }
  .pdata__head { grid-template-columns: 1fr; gap: 20px; }
  .psec { grid-template-columns: 1fr; }
  .psec__right { border-left: none; border-top: 1px solid var(--line-dark); }
  .product-page .phero { min-height: 0; }
  .product-page .pstatement { min-height: 70vh; }
  .product-page .pplatform { min-height: 0; }

  /* careers */
  .crabout { grid-template-columns: 1fr; gap: 28px; padding-top: 40px; }
  .crdept { grid-template-columns: 1fr; gap: 12px; padding: 28px 0; }

  /* news + articles */
  .ngrid { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }
  .more__grid { grid-template-columns: repeat(2, 1fr); }
  .band__inner { flex-direction: column; align-items: flex-start; padding: 44px 28px; }
}

@media (max-width: 640px) {
  .pworkflows__grid, .plearn__grid, .pdata__grid, .ngrid, .more__grid {
    grid-template-columns: 1fr;
  }
  .phero__title { font-size: 38px; }
  .phero__sub br { display: none; }
  .phero__actions { flex-direction: column; align-items: stretch; }
  .pstatement p { font-size: 25px; }
  .pworkflows__title, .plearn__title { font-size: 32px; }
  .pdata__head h2 { font-size: 30px; }
  .psec__left { padding: 40px 28px; }
  .product-page .psec__left h2 { font-size: 34px; }
  .pseccell { min-height: 170px; padding: 20px; }
  .pseccell svg { width: 44px; height: 44px; }
  .pconvert__card { padding: 56px 24px; }
  .pconvert__card h2 { font-size: 32px; }
  .pconvert__actions { flex-direction: column; }
  .pconvert__actions .btn { width: 100%; }

  /* playground on small screens */
  .pg__bar { flex-wrap: wrap; gap: 10px; padding: 14px 16px; }
  .pg__body { padding: 18px 16px; gap: 16px; }
  .pg__prompt, .pg__response { font-size: 12.5px; }
  .pg__stats { gap: 14px 20px; padding: 12px 16px; }

  /* request-logs mock scrolls sideways instead of squishing */
  .pplatform__media--logs { overflow-x: auto; }
  .pplatform__media--logs .logs { min-width: 560px; }

  /* pricing */
  .shero__title { font-size: 38px; }
  .shero__sub br { display: none; }
  .mapis__head { flex-direction: column; align-items: flex-start; gap: 16px; }
  .mapis__head h2 { font-size: 32px; }
  .score { grid-template-columns: 1fr; gap: 24px; }
  .score__title { font-size: 30px; }

  /* misc type */
  .testimonials__title, .offers__title { font-size: 32px; }
  .crhero h1 { font-size: 36px; }
  .crroles__title { font-size: 34px; }
  .nhero h1 { font-size: 44px; }
  .nhero p br { display: none; }
  .legal__title { font-size: 40px; }
  .article__title { font-size: 30px; }
  .announce { height: auto; min-height: 45px; padding: 8px 0; text-align: center; }
  .announce__inner { flex-wrap: wrap; justify-content: center; row-gap: 2px; }
}
