/* ============ OrderOne — design system ============ */
:root {
  --ink: #101915;
  --ink-soft: #45524b;
  --ink-faint: #6d7a72;
  --bg: #fbfaf7;
  --surface: #ffffff;
  --line: #e6e4dc;
  --green: #0e5f45;
  --green-deep: #0a4634;
  --green-soft: #e3f0ea;
  --lime: #cdf05f;
  --amber: #b45309;
  --amber-soft: #fdf1e0;
  --dark: #0c1210;
  --dark-2: #121b17;
  --on-dark: #f2f4f0;
  --on-dark-soft: #a8b5ad;

  --font-display: "Sora", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  --radius: 14px;
  --radius-lg: 22px;
  --container: 1120px;
  --pad: clamp(20px, 5vw, 40px);
  --section-y: clamp(64px, 10vw, 120px);

  --shadow-sm: 0 1px 2px rgba(16, 25, 21, 0.05), 0 2px 8px rgba(16, 25, 21, 0.05);
  --shadow-md: 0 2px 6px rgba(16, 25, 21, 0.06), 0 12px 32px rgba(16, 25, 21, 0.1);
  --shadow-lg: 0 4px 12px rgba(16, 25, 21, 0.08), 0 24px 64px rgba(16, 25, 21, 0.14);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; }

.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--pad); }
.only-desktop { display: none; }

h1, h2, h3 { font-family: var(--font-display); line-height: 1.12; letter-spacing: -0.02em; text-wrap: balance; }
h1 { font-size: clamp(2rem, 7.2vw, 3.4rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 5vw, 2.4rem); font-weight: 700; }
h3 { font-size: 1.1rem; font-weight: 700; line-height: 1.3; }
h1 em { font-style: normal; color: var(--green); }

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}
.eyebrow--light { color: var(--lime); }

.section { padding-block: var(--section-y); }
.section__head { max-width: 640px; margin-bottom: clamp(36px, 6vw, 56px); }
.section__sub { color: var(--ink-soft); margin-top: 14px; font-size: 1.05rem; }
.section--dark { background: var(--dark); color: var(--on-dark); }
.section--dark .section__sub { color: var(--on-dark-soft); }
.section--tint { background: var(--green-soft); }

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  min-height: 44px;
}
.btn:active { transform: scale(0.97); }
.btn--primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 2px 8px rgba(14, 95, 69, 0.28);
}
.btn--primary:hover { background: var(--green-deep); box-shadow: 0 4px 16px rgba(14, 95, 69, 0.35); }
.btn--ghost { border-color: var(--line); color: var(--ink); background: var(--surface); }
.btn--ghost:hover { border-color: var(--ink-faint); }
.btn--lg { padding: 15px 28px; font-size: 1rem; }
.btn--sm { padding: 9px 18px; font-size: 0.88rem; min-height: 40px; }

/* ============ Nav ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 250, 247, 0.85);
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid rgba(230, 228, 220, 0.7);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 16px;
}
.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  text-decoration: none;
  letter-spacing: -0.02em;
}
.nav__links {
  display: none;
}
.nav__links a {
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.nav__links a:hover { color: var(--ink); }
.nav__actions { display: flex; align-items: center; gap: 10px; }
.nav__toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  align-items: center;
  background: none;
  border: none;
}
.nav__toggle span {
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }

/* mobile menu open */
.nav.is-open .nav__links {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  padding: 12px var(--pad) 20px;
  gap: 4px;
  box-shadow: var(--shadow-md);
}
.nav.is-open .nav__links a {
  padding: 12px 4px;
  font-size: 1.05rem;
  border-bottom: 1px solid var(--line);
}
.nav.is-open .nav__links a:last-child { border-bottom: none; }
.nav.is-open .nav__links .btn--nav-mobile {
  margin-top: 10px;
  border-bottom: none;
  color: #fff;
  justify-content: center;
  padding: 14px;
}
.btn--nav-mobile { display: inline-flex; }
.nav__actions .btn { display: none; }

/* ============ Hero ============ */
.hero {
  padding-block: clamp(48px, 8vw, 96px) clamp(56px, 8vw, 104px);
  background:
    radial-gradient(1100px 500px at 85% -10%, rgba(205, 240, 95, 0.16), transparent 60%),
    radial-gradient(900px 480px at -10% 20%, rgba(14, 95, 69, 0.07), transparent 60%),
    var(--bg);
  overflow: hidden;
}
.hero__grid { display: grid; gap: clamp(40px, 7vw, 72px); align-items: center; }
.hero__sub {
  color: var(--ink-soft);
  font-size: clamp(1.02rem, 2.6vw, 1.15rem);
  margin-top: 18px;
  max-width: 34em;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero__proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin-top: 26px;
  font-size: 0.9rem;
  color: var(--ink-faint);
}
.hero__proof strong { color: var(--ink); font-weight: 700; }
.hero__proof .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--line); }

/* --- hero mockup --- */
.hero__visual {
  position: relative;
  display: grid;
  gap: 0;
  max-width: 460px;
  margin-inline: auto;
  width: 100%;
}
.mock-chat {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 2;
}
.mock-chat__header { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.mock-chat__avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e8836b, #d95f43);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.78rem;
  font-weight: 700;
}
.mock-chat__name { display: block; font-weight: 600; font-size: 0.92rem; line-height: 1.25; }
.mock-chat__status { display: block; font-size: 0.78rem; color: var(--ink-faint); }
.mock-chat__bubble {
  background: #e9f8e6;
  border-radius: 4px 16px 16px 16px;
  padding: 12px 14px;
  font-size: 0.9rem;
  line-height: 1.5;
  max-width: 95%;
}
.mock-chat__bubble--voice {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #3f7d38;
  max-width: 75%;
}
.voice-bars { display: flex; align-items: center; gap: 2.5px; flex: 1; }
.voice-bars i {
  width: 2.5px;
  border-radius: 2px;
  background: currentColor;
  opacity: 0.75;
  height: 8px;
}
.voice-bars i:nth-child(2n) { height: 14px; }
.voice-bars i:nth-child(3n) { height: 18px; }
.voice-bars i:nth-child(5n) { height: 11px; }
.voice-time { font-size: 0.78rem; }

.mock-flow {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
  padding: 6px 0;
}
.mock-flow__line {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 2px;
  background: linear-gradient(var(--line), var(--green));
}
.mock-flow__chip {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--dark);
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  margin-block: 8px;
}

.mock-order {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.mock-order__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}
.mock-order__title { display: block; font-weight: 600; font-size: 0.9rem; line-height: 1.3; }
.mock-order__meta { display: block; font-size: 0.78rem; color: var(--ink-faint); margin-top: 2px; }
.mock-order__lines li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  font-size: 0.85rem;
  border-bottom: 1px solid #f1efe9;
}
.mock-order__lines li > span:first-child { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mock-order__lines .qty { color: var(--ink-faint); font-variant-numeric: tabular-nums; flex-shrink: 0; }
.conf {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 999px;
  flex-shrink: 0;
}
.conf--ok { background: var(--green-soft); color: var(--green); }
.conf--warn { background: var(--amber-soft); color: var(--amber); }
.line--review { background: #fffcf5; }
.mock-order__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
}
.mock-order__erp {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--ink-faint);
}
.btn-fake {
  background: var(--green);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 999px;
}
.badge {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
}
.badge--ok { background: var(--green-soft); color: var(--green); }
.badge--warn { background: var(--amber-soft); color: var(--amber); }
.badge--auto { background: #eef2ff; color: #4338ca; }

/* ============ Strip ============ */
.strip { padding-block: 28px; border-block: 1px solid var(--line); background: var(--surface); }
.strip__label {
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 16px;
  font-weight: 600;
}
.strip__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 26px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: #9aa39c;
}

/* ============ Problem ============ */
.problem__grid { display: grid; gap: 16px; }
.p-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.p-card__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--green-soft);
  color: var(--green);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}
.p-card p { color: var(--ink-soft); font-size: 0.95rem; margin-top: 8px; }

/* ============ Photo band ============ */
.photo-band {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad);
}
.photo-band img {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* ============ How ============ */
.how__steps { display: grid; gap: 0; max-width: 720px; }
.step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  position: relative;
  padding-bottom: 36px;
}
.step:last-child { padding-bottom: 0; }
.step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 52px;
  bottom: 8px;
  width: 2px;
  background: var(--line);
}
.step__num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--lime);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  display: grid;
  place-items: center;
}
.step__body h3 { padding-top: 10px; }
.step__body p { color: var(--ink-soft); margin-top: 8px; font-size: 0.98rem; max-width: 56ch; }

/* ============ Platform ============ */
.platform__grid { display: grid; gap: 14px; }
.f-card {
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 24px;
}
.f-card__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(205, 240, 95, 0.12);
  color: var(--lime);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}
.f-card p { color: var(--on-dark-soft); font-size: 0.95rem; margin-top: 8px; }

.mock-dash {
  margin-top: clamp(36px, 6vw, 56px);
  background: #0f1713;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}
.mock-dash__bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.dot-r, .dot-y, .dot-g { width: 10px; height: 10px; border-radius: 50%; }
.dot-r { background: #f26d5f; }
.dot-y { background: #f5bd4f; }
.dot-g { background: #58c26a; }
.mock-dash__title { margin-left: 8px; font-size: 0.8rem; color: var(--on-dark-soft); }
.mock-dash__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.mock-dash__stats > div {
  padding: 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.mock-dash__stats > div:nth-child(2n) { border-right: none; }
.mock-dash__stats > div:nth-child(-n+2) { border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.mock-dash__stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--on-dark);
}
.mock-dash__stats span { font-size: 0.78rem; color: var(--on-dark-soft); }
.mock-dash__rows { padding: 6px 0; }
.d-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 16px;
  font-size: 0.85rem;
  color: var(--on-dark);
}
.d-row + .d-row { border-top: 1px solid rgba(255, 255, 255, 0.05); }
.d-src { flex-shrink: 0; }
.d-cli { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-weight: 500; }
.d-lines { color: var(--on-dark-soft); font-size: 0.78rem; flex-shrink: 0; }

/* ============ Channels ============ */
.channels__grid { display: grid; gap: 14px; grid-template-columns: repeat(2, 1fr); }
.ch-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}
.ch-card__emoji { font-size: 1.6rem; display: block; margin-bottom: 12px; }
.ch-card h3 { font-size: 1rem; }
.ch-card p { color: var(--ink-soft); font-size: 0.88rem; margin-top: 6px; }
.channels__banner {
  margin-top: 14px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--dark);
  color: var(--on-dark);
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: var(--shadow-md);
}
.channels__banner-emoji { font-size: 1.6rem; line-height: 1; margin-top: 2px; }
.channels__banner h3 { font-size: 1rem; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.channels__banner p { color: var(--on-dark-soft); font-size: 0.88rem; margin-top: 6px; max-width: 70ch; }
.tag-soon {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: rgba(205, 240, 95, 0.15);
  color: var(--lime);
  padding: 3px 9px;
  border-radius: 999px;
}

/* ============ Split ============ */
.split { padding-block: calc(var(--section-y) * 0.7); }
.split__grid { display: grid; gap: clamp(28px, 5vw, 64px); align-items: center; }
.split__photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.split__copy > p:not(.eyebrow) { color: var(--ink-soft); margin-top: 14px; }
.check-list { margin-top: 20px; display: grid; gap: 10px; }
.check-list li {
  position: relative;
  padding-left: 30px;
  font-size: 0.97rem;
  font-weight: 500;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--green-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 12.5l4 4L18 8' stroke='%230E5F45' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 12px no-repeat;
}

/* ============ Results ============ */
.results__grid { display: grid; gap: 14px; grid-template-columns: repeat(2, 1fr); }
.r-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}
.r-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 2.3rem);
  font-weight: 800;
  color: var(--green);
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.r-card span { font-size: 0.86rem; color: var(--ink-soft); display: block; margin-top: 6px; }
.quote {
  margin-top: clamp(32px, 5vw, 48px);
  background: var(--dark);
  color: var(--on-dark);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 5vw, 44px);
}
.quote p {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.8vw, 1.35rem);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -0.01em;
}
.quote footer { margin-top: 16px; font-size: 0.85rem; color: var(--on-dark-soft); }

/* ============ CTA ============ */
.cta__box {
  background: linear-gradient(150deg, var(--green-deep), var(--green) 65%, #14795a);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(32px, 6vw, 64px);
  text-align: center;
  max-width: calc(var(--container) - 2 * var(--pad));
  box-shadow: var(--shadow-lg);
}
.cta__box p { margin-top: 14px; color: rgba(255, 255, 255, 0.85); max-width: 46em; margin-inline: auto; }
.cta__form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 460px;
  margin: 28px auto 0;
}
.cta__form input {
  font: inherit;
  padding: 14px 20px;
  border-radius: 999px;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  outline: none;
  min-height: 52px;
}
.cta__form input::placeholder { color: rgba(255, 255, 255, 0.65); }
.cta__form input:focus { border-color: var(--lime); background: rgba(255, 255, 255, 0.18); }
.cta__form .btn--primary {
  background: var(--lime);
  color: var(--dark);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
}
.cta__form .btn--primary:hover { background: #d9f77e; }
.cta__note { font-size: 0.8rem !important; color: rgba(255, 255, 255, 0.65) !important; margin-top: 18px !important; }

/* ============ Footer ============ */
.footer { padding: 48px 0 36px; border-top: 1px solid var(--line); }
.footer__inner { display: grid; gap: 28px; }
.footer__brand p { color: var(--ink-faint); font-size: 0.9rem; margin-top: 12px; }
.footer__links { display: flex; flex-wrap: wrap; gap: 8px 22px; }
.footer__links a { text-decoration: none; font-size: 0.92rem; color: var(--ink-soft); }
.footer__links a:hover { color: var(--ink); }
.footer__legal { font-size: 0.8rem; color: var(--ink-faint); }
.footer__legal a { color: inherit; }

/* ============ Reveal animation ============ */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============ Tablet ≥ 700px ============ */
@media (min-width: 700px) {
  .problem__grid { grid-template-columns: repeat(3, 1fr); }
  .platform__grid { grid-template-columns: repeat(2, 1fr); }
  .channels__grid { grid-template-columns: repeat(4, 1fr); }
  .results__grid { grid-template-columns: repeat(4, 1fr); }
  .mock-dash__stats { grid-template-columns: repeat(4, 1fr); }
  .mock-dash__stats > div { border-bottom: none !important; }
  .mock-dash__stats > div:nth-child(2n) { border-right: 1px solid rgba(255, 255, 255, 0.08); }
  .mock-dash__stats > div:last-child { border-right: none; }
  .cta__form { flex-direction: row; }
  .cta__form input { flex: 1; }
  .footer__inner {
    grid-template-columns: 1fr auto;
    align-items: start;
  }
  .footer__legal { grid-column: 1 / -1; }
}

/* ============ Desktop ≥ 980px ============ */
@media (min-width: 980px) {
  .only-desktop { display: inline; }
  .nav__links {
    display: flex;
    align-items: center;
    gap: 30px;
    position: static;
  }
  .btn--nav-mobile { display: none; }
  .nav__actions .btn { display: inline-flex; }
  .nav__toggle { display: none; }
  .nav__inner { height: 72px; }

  .hero__grid { grid-template-columns: 1.05fr 0.95fr; }
  .hero__visual { margin-inline: 0 0; justify-self: end; }

  .split__grid { grid-template-columns: 1fr 1fr; }
  .split--reverse .split__photo { order: 2; }
  .split--reverse .split__copy { order: 1; }
}
