@font-face {
  font-family: "Fraunces";
  src: url("/assets/fonts/fraunces.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Fraunces";
  src: url("/assets/fonts/fraunces-italic.woff2") format("woff2");
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Inter Tight";
  src: url("/assets/fonts/inter-tight.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Geist Mono";
  src: url("/assets/fonts/geist-mono.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --ink: #08090b;
  --ink-soft: #121317;
  --paper: #f3f1ed;
  --paper-2: #ece9e3;
  --paper-3: #f9f8f5;
  --graphite: #1a1a1a;
  --muted: #686761;
  --line: #dcd8d0;
  --foil: #c8c4bf;
  --white-04: rgba(255, 255, 255, 0.04);
  --white-08: rgba(255, 255, 255, 0.08);
  --white-16: rgba(255, 255, 255, 0.16);
  --white-72: rgba(255, 255, 255, 0.72);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter Tight", sans-serif;
  --font-mono: "Geist Mono", monospace;
  --container: 1360px;
  --gutter: clamp(20px, 4vw, 64px);
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 80px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 116px;
  background: var(--ink);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--graphite);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

h1,
h2,
h3,
p,
dl,
dd {
  margin: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 5px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  border-radius: var(--r-sm);
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-140%);
  transition: transform 180ms var(--ease);
}

.skip-link:focus-visible {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 40;
  top: 16px;
  left: max(16px, calc((100% - var(--container)) / 2));
  right: max(16px, calc((100% - var(--container)) / 2));
  height: var(--header-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-md);
  background: rgba(8, 9, 11, 0.68);
  color: var(--paper);
  box-shadow: inset 0 1px 0 var(--white-08);
  transition: background 250ms var(--ease), transform 250ms var(--ease), border-color 250ms var(--ease);
}

.site-header.is-scrolled {
  background: rgba(8, 9, 11, 0.94);
  border-color: rgba(255, 255, 255, 0.16);
  transform: translateY(-4px);
}

.wordmark,
.footer-wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 520;
  line-height: 1;
}

.mark {
  width: 16px;
  height: 18px;
  background: linear-gradient(145deg, var(--paper), #9ba1ab);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 13px;
}

.desktop-nav a,
.site-footer a {
  position: relative;
  color: rgba(243, 241, 237, 0.7);
  transition: color 180ms var(--ease);
}

.desktop-nav a::after,
.site-footer a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 250ms var(--ease);
}

.desktop-nav a:hover,
.site-footer a:hover {
  color: var(--paper);
}

.desktop-nav a:hover::after,
.site-footer a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  min-height: 46px;
  padding: 0 8px 0 18px;
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  transition: transform 250ms var(--ease), background 250ms var(--ease);
}

.header-cta span,
.button span {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.08);
  transition: transform 250ms var(--ease);
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.header-cta:hover span,
.button:hover span {
  transform: translate(2px, -2px);
}

.header-cta:active,
.button:active {
  transform: scale(0.98);
}

.menu-button {
  display: none;
  justify-self: end;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
}

.menu-button span {
  position: absolute;
  width: 18px;
  height: 1px;
  background: currentColor;
  transition: transform 300ms var(--ease);
}

.menu-button span:first-child {
  transform: translateY(-4px);
}

.menu-button span:last-child {
  transform: translateY(4px);
}

[data-menu-open="true"] .menu-button span:first-child {
  transform: rotate(45deg);
}

[data-menu-open="true"] .menu-button span:last-child {
  transform: rotate(-45deg);
}

.menu-overlay {
  position: fixed;
  z-index: 30;
  inset: 0;
  display: grid;
  align-items: center;
  padding: 120px var(--gutter) 48px;
  background: rgba(8, 9, 11, 0.97);
  color: var(--paper);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-16px);
  transition: opacity 300ms var(--ease), transform 300ms var(--ease), visibility 300ms;
}

[data-menu-open="true"] .menu-overlay {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.menu-overlay nav {
  display: grid;
  max-width: 760px;
  margin: 0 auto;
}

.menu-overlay a {
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid var(--white-08);
  font-family: var(--font-display);
  font-size: clamp(34px, 3rem, 58px);
  line-height: 1.1;
}

.menu-overlay a span {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--foil);
}

.hero {
  position: relative;
  min-height: 90dvh;
  overflow: hidden;
  display: flex;
  align-items: end;
  background-color: var(--ink);
  background-image: url("/assets/media/68cf5f99bdedb079bb947ee6_NewOneflow__1_undefined-poster-00001.jpg");
  background-position: 50% 52%;
  background-size: cover;
  color: var(--paper);
}

.hero-media,
.hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
  object-position: 50% 52%;
  opacity: 0.74;
}

.hero-scrim {
  background:
    linear-gradient(180deg, rgba(8, 9, 11, 0.2) 0%, rgba(8, 9, 11, 0.22) 45%, rgba(8, 9, 11, 0.9) 100%),
    linear-gradient(90deg, rgba(8, 9, 11, 0.72) 0%, transparent 60%);
}

.hero-ghost {
  position: absolute;
  top: 16%;
  right: -0.06em;
  color: rgba(255, 255, 255, 0.035);
  font-family: var(--font-display);
  font-size: clamp(140px, 20rem, 360px);
  font-weight: 560;
  line-height: 0.8;
  pointer-events: none;
  user-select: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: calc(var(--header-h) + 72px) var(--gutter) clamp(54px, 8vh, 96px);
}

.eyebrow,
.mono {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0;
}

.eyebrow span {
  margin-right: 16px;
}

.eyebrow.light {
  color: rgba(243, 241, 237, 0.62);
}

.hero h1 {
  max-width: 9ch;
  margin-top: 20px;
  font-family: var(--font-display);
  font-size: clamp(76px, 10rem, 168px);
  font-weight: 520;
  line-height: 0.88;
  text-shadow: 0 0 60px var(--white-08);
}

.hero-statement {
  max-width: 15ch;
  margin-top: 20px;
  font-family: var(--font-display);
  font-size: clamp(28px, 3rem, 50px);
  font-style: italic;
  font-weight: 420;
  line-height: 1.08;
  color: rgba(243, 241, 237, 0.78);
}

.hero-lower {
  display: grid;
  grid-template-columns: minmax(280px, 520px) auto;
  align-items: end;
  gap: 48px;
  margin-top: clamp(44px, 8vh, 92px);
}

.hero-lower > p {
  max-width: 54ch;
  color: rgba(243, 241, 237, 0.76);
  font-size: 17px;
}

.hero-actions,
.control-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 52px;
  padding: 0 9px 0 20px;
  border: 0;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 250ms var(--ease), background 250ms var(--ease), color 250ms var(--ease), opacity 250ms var(--ease);
}

.button-light {
  background: var(--paper);
  color: var(--ink);
}

.button-dark {
  background: var(--graphite);
  color: var(--paper);
}

.button-dark span {
  background: rgba(255, 255, 255, 0.1);
}

.button:disabled {
  opacity: 0.38;
  cursor: not-allowed;
}

.button:disabled:hover {
  transform: none;
}

.text-link {
  position: relative;
  display: inline-block;
  width: max-content;
  padding: 10px 0 8px;
  font-size: 14px;
  font-weight: 600;
}

.text-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleY(0.5);
  transition: transform 250ms var(--ease);
}

.text-link:hover::after {
  transform: scaleY(1);
}

.light-link {
  color: var(--paper);
}

.hero-index {
  position: absolute;
  z-index: 2;
  right: var(--gutter);
  bottom: 24px;
  display: flex;
  gap: 18px;
  font-family: var(--font-mono);
  font-size: 9px;
  color: rgba(243, 241, 237, 0.42);
  font-variant-numeric: tabular-nums;
}

.proof-strip {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) 2fr;
  gap: 48px;
  padding: 28px max(var(--gutter), calc((100% - var(--container)) / 2 + var(--gutter)));
  background: var(--paper-2);
  border-bottom: 1px solid var(--line);
}

.proof-lead {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
}

.proof-lead .mono {
  color: var(--graphite);
}

.proof-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.proof-metrics div {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.proof-metrics dt {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 520;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.proof-metrics dd {
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
}

/* Webflow's .faq-toggle divs take keyboard focus but opt out of the global
   :focus-visible rule, so the 01-06 process accordion was the only focusable
   component on the site with no visible focus indicator.
   Tri-brand SSS+ audit 2026-07-25, ONEFLOW-W10-001. */
.faq-toggle:focus-visible,
.w-dropdown-toggle:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}
