:root {
  --black: #000000;
  --black-soft: #070809;
  --panel: #0d0f11;
  --panel-high: #14171a;
  --white: #f7f8fa;
  --muted: #9da2a8;
  --muted-bright: #c8ccd0;
  --orange: #ff5a0a;
  --orange-hot: #ff3d00;
  --kordyn-blue: #1478ff;
  --line: rgba(255, 255, 255, 0.12);
  --line-hot: rgba(255, 90, 10, 0.42);
  --display: "Barlow Condensed", Arial, sans-serif;
  --body: "Barlow", Arial, sans-serif;
  --header-gutter: 4.5vw;
  --section-gutter: 4.5vw;
  --hero-gutter: 4.5vw;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  color: var(--white);
  background: var(--black);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

::selection {
  color: var(--black);
  background: var(--orange);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--black);
  background: var(--white);
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

.shell {
  width: auto;
  margin-right: var(--section-gutter);
  margin-left: var(--section-gutter);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 88px;
  border-bottom: 1px solid transparent;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.6), transparent);
  transition: height 180ms ease, background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  height: 72px;
  border-bottom-color: var(--line);
  background: rgba(0, 0, 0, 0.94);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0 var(--header-gutter);
  gap: 36px;
}

.brand-lockup {
  display: block;
  width: min(270px, 30vw);
  height: 48px;
  margin-left: -8px;
  min-width: 0;
  overflow: hidden;
}

.brand-lockup img {
  width: 100%;
  height: auto;
  transform: translateY(-21px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 40px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
  color: var(--muted-bright);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: color 160ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 160ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--white);
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--orange);
  color: var(--black);
  background: var(--orange);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.header-cta {
  min-height: 42px;
  padding: 0 18px;
}

.header-cta:hover,
.button:hover {
  color: var(--white);
  background: var(--orange-hot);
  border-color: var(--orange-hot);
  transform: translateY(-2px);
}

.button-secondary {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.4);
}

.button-secondary:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.button-arrow::after {
  content: "›";
  margin-left: 14px;
  font-size: 22px;
  line-height: 0;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--black);
  color: var(--white);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"]::before {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"]::after {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  display: flex;
  min-height: min(760px, 86svh);
  padding: 118px 0 22px;
  overflow: hidden;
  background: var(--black);
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image: url("/race-car-88-crisp.png");
  background-repeat: no-repeat;
  background-position: 68% center;
  background-size: cover;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.94) 28%, rgba(0, 0, 0, 0.4) 58%, rgba(0, 0, 0, 0.06) 78%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.05) 56%, #000 100%);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(0deg, #000 0%, rgba(0, 0, 0, 0.8) 32%, transparent 100%);
}

.hero-speedline {
  position: absolute;
  right: -90px;
  top: 17%;
  width: 46vw;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 90, 10, 0.85), transparent);
  transform: rotate(-8deg);
  box-shadow: 0 28px 0 rgba(255, 90, 10, 0.16), 0 56px 0 rgba(255, 255, 255, 0.08);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: auto;
  margin-right: var(--hero-gutter);
  margin-left: var(--hero-gutter);
}

.hero-copy {
  max-width: 670px;
  padding-bottom: clamp(30px, 4vh, 46px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  color: var(--orange);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 38px;
  height: 2px;
  background: var(--orange);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.hero h1,
.page-hero h1 {
  max-width: 870px;
  margin-bottom: 22px;
  font-family: var(--display);
  font-size: clamp(64px, 7.4vw, 112px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.83;
  text-transform: uppercase;
}

.hero h1 span,
.page-hero h1 span {
  color: var(--orange);
}

.hero-lede {
  max-width: 610px;
  margin-bottom: 30px;
  color: var(--muted-bright);
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(10px);
}

.proof-item {
  position: relative;
  min-height: 88px;
  padding: 16px 24px;
  border-right: 1px solid var(--line);
}

.proof-item:last-child {
  border-right: 0;
}

.proof-value {
  display: block;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1;
  text-transform: uppercase;
}

.proof-value em {
  color: var(--orange);
  font-style: normal;
}

.proof-label {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.25;
  text-transform: uppercase;
}

.race-proof-section {
  padding: 64px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 84% 12%, rgba(255, 90, 10, 0.1), transparent 28%),
    #050607;
}

.race-proof-head {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.5fr);
  align-items: end;
  gap: 48px;
  margin-bottom: 26px;
}

.race-proof-head-side > p {
  margin: 0;
  color: var(--muted-bright);
  font-size: 17px;
  line-height: 1.65;
}

.race-gallery-controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto 48px 48px;
  align-items: center;
  gap: 9px;
  margin-top: 24px;
}

.race-gallery-instruction,
.race-gallery-count {
  color: var(--muted);
  font-family: var(--display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.race-gallery-count {
  min-width: 38px;
  color: var(--white);
  text-align: center;
}

.race-gallery-button {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--orange);
  color: var(--black);
  background: var(--orange);
  font-family: var(--display);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease, opacity 160ms ease;
}

.race-gallery-button:hover:not(:disabled),
.race-gallery-button:focus-visible {
  color: var(--white);
  background: var(--orange-hot);
  border-color: var(--orange-hot);
}

.race-gallery-button:disabled {
  color: var(--muted);
  background: transparent;
  border-color: var(--line);
  cursor: default;
  opacity: 0.55;
}

.race-proof-gallery {
  display: flex;
  gap: 14px;
  padding: 0 0 20px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--orange) rgba(255, 255, 255, 0.1);
  scrollbar-width: auto;
  -webkit-overflow-scrolling: touch;
}

.race-proof-gallery:focus-visible {
  outline: 1px solid var(--orange);
  outline-offset: 8px;
}

.race-proof-gallery::-webkit-scrollbar {
  height: 10px;
}

.race-proof-gallery::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
}

.race-proof-gallery::-webkit-scrollbar-thumb {
  border: 2px solid #050607;
  border-radius: 999px;
  background: var(--orange);
}

.race-proof-photo,
.about-race-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--panel);
}

.race-proof-photo {
  flex: 0 0 min(64vw, 760px);
  aspect-ratio: 16 / 9;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.race-proof-photo-portrait {
  flex-basis: min(39vw, 470px);
  aspect-ratio: 4 / 5;
}

.race-proof-photo::after,
.about-race-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.13);
  pointer-events: none;
}

.race-proof-photo img,
.about-race-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.22, 0.8, 0.3, 1);
}

.race-proof-photo:hover img,
.about-race-photo:hover img {
  transform: scale(1.025);
}

.race-proof-photo-main img {
  object-position: 58% center;
}

.race-proof-photo-secondary img {
  object-position: 64% center;
}

.race-proof-photo-skyline img {
  object-position: 68% center;
}

.race-proof-photo-congress img {
  object-position: 55% center;
}

.race-proof-photo-turn-six img {
  object-position: 70% center;
}

.race-proof-photo-turn-ten img {
  object-position: 72% center;
}

.race-proof-photo-portrait img {
  object-position: center 38%;
}

.race-proof-photo figcaption,
.about-race-photo figcaption {
  position: absolute;
  z-index: 2;
  inset: auto 0 0;
  padding: 54px 24px 22px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
}

.race-proof-photo figcaption span,
.about-race-photo figcaption span {
  display: block;
  margin-bottom: 5px;
  color: var(--orange);
  font-family: var(--display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.race-proof-photo figcaption strong,
.about-race-photo figcaption strong {
  display: block;
  color: var(--white);
  font-family: var(--display);
  font-size: 22px;
  font-weight: 650;
  line-height: 1.05;
  text-transform: uppercase;
}

.section {
  position: relative;
  padding: 76px 0;
  overflow: hidden;
}

.section-dark {
  background: var(--black-soft);
}

.section-lined {
  background:
    linear-gradient(90deg, transparent 49.95%, rgba(255, 255, 255, 0.045) 50%, transparent 50.05%),
    var(--black);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: 56px;
  margin-bottom: 36px;
}

.section-title {
  max-width: 850px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(48px, 5.4vw, 82px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.94;
  text-transform: uppercase;
}

.section-title span {
  color: var(--orange);
}

.section-intro {
  margin: 0;
  color: var(--muted-bright);
  font-size: 17px;
  line-height: 1.65;
}

.section-intro .accent-text {
  color: var(--orange);
  font-weight: 600;
}

.offer-split {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 22px;
  align-items: start;
}

.offer-panel {
  border: 1px solid var(--line);
  overflow: hidden;
}

.foundation-panel {
  border-top: 4px solid rgba(255, 255, 255, 0.55);
  background: #08090a;
}

.pipeline-panel {
  border-top: 4px solid var(--orange);
  background:
    linear-gradient(145deg, rgba(255, 85, 0, 0.08), transparent 32%),
    #0d0f11;
}

.offer-panel-head {
  min-height: 0;
  padding: 22px 26px 20px;
  border-bottom: 1px solid var(--line);
}

.card-kicker {
  margin: 0 0 22px;
  color: var(--orange);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.card-kicker span {
  display: inline-block;
  margin-right: 12px;
  color: var(--white);
}

.offer-panel-head h3 {
  max-width: 560px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(34px, 3.15vw, 48px);
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 0.95;
  text-transform: uppercase;
}

.offer-panel-head > p {
  max-width: 500px;
  margin: 12px 0 0;
  color: var(--muted-bright);
  font-size: 15px;
  line-height: 1.55;
}

.option-price {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  margin-top: 18px;
}

.option-price strong {
  color: var(--white);
  font-family: var(--display);
  font-size: 32px;
  font-weight: 700;
  line-height: 0.9;
  text-transform: uppercase;
}

.option-price span {
  color: var(--orange);
  font-family: var(--display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.microsite-preview {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: #020303;
  color: inherit;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}

.preview-browser-bar {
  display: flex;
  gap: 6px;
  align-items: center;
  height: 35px;
  padding: 0 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: #151719;
}

.preview-browser-bar i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
}

.preview-browser-bar b {
  margin-left: 8px;
  color: rgba(255, 255, 255, 0.48);
  font-family: var(--display);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.preview-car-wrap {
  position: relative;
  display: block;
  height: 220px;
  overflow: hidden;
}

.preview-car-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.38) 56%, rgba(0, 0, 0, 0.1) 100%);
}

.preview-car-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% center;
  transition: transform 400ms ease;
}

.microsite-preview:hover .preview-car-wrap img,
.microsite-preview:focus-visible .preview-car-wrap img {
  transform: scale(1.035);
}

.preview-car-copy {
  position: absolute;
  z-index: 2;
  top: 34px;
  left: 30px;
}

.preview-car-copy small {
  display: block;
  margin-bottom: 10px;
  color: var(--kordyn-blue);
  font-family: var(--display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.preview-car-copy strong {
  color: var(--white);
  font-family: var(--display);
  font-size: 43px;
  line-height: 0.84;
  text-transform: uppercase;
}

.preview-link-label {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  padding: 9px 11px;
  background: var(--kordyn-blue);
  color: var(--black);
  font-family: var(--display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.preview-link-label b {
  margin-left: 7px;
  font-size: 13px;
}

.sender-profile-preview {
  padding: 12px;
  border-bottom: 1px solid var(--line);
  background: #080a0d;
}

.sender-preview-bar {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 0 2px 10px;
  color: var(--white);
  font-family: var(--display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sender-preview-bar small {
  color: var(--kordyn-blue);
  font: inherit;
}

.sender-profile-card {
  overflow: hidden;
  border: 1px solid #dce1e7;
  border-radius: 8px;
  background: #f4f6f8;
  color: #17202a;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  transition: transform 280ms ease, box-shadow 280ms ease;
}

.sender-profile-preview:hover .sender-profile-card,
.sender-profile-preview:focus-visible .sender-profile-card {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28), 0 0 24px rgba(20, 120, 255, 0.14);
}

.sender-profile-preview:focus-visible {
  outline: 1px solid rgba(20, 120, 255, 0.9);
  outline-offset: 3px;
}

.sender-profile-banner {
  position: relative;
  height: 118px;
  overflow: hidden;
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.2)),
    url("/kordyn-47-blue-banner.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.sender-profile-body {
  position: relative;
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 12px;
  padding: 0 15px 12px;
}

.sender-avatar {
  width: 66px;
  height: 66px;
  margin-top: -24px;
  border: 4px solid #f4f6f8;
  border-radius: 50%;
  background-image: url("https://bottlerocketgrowth.com/assets/fictional-sender-headshots.jpg");
  background-position: 0 50%;
  background-repeat: no-repeat;
  background-size: 300% 100%;
  box-shadow: 0 4px 14px rgba(23, 32, 42, 0.2);
}

.sender-identity {
  padding-top: 11px;
}

.sender-identity strong,
.sender-identity span,
.sender-identity small {
  display: block;
}

.sender-identity strong {
  font-size: 17px;
}

.sender-identity span {
  margin-top: 3px;
  color: #4d5965;
  font-size: 11px;
}

.sender-identity small {
  margin-top: 4px;
  color: #7c8792;
  font-size: 9px;
}

.sender-name-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding-right: 4px;
}

.linkedin-premium-badge {
  display: inline-flex !important;
  gap: 5px;
  align-items: center;
  flex: none;
  margin: 0 !important;
  color: #8a6116 !important;
  font-size: 8px !important;
  font-weight: 700;
  line-height: 1;
}

.linkedin-premium-badge i {
  display: grid;
  place-items: center;
  width: 16px;
  height: 16px;
  border-radius: 2px;
  background: linear-gradient(145deg, #d7a43a, #8f6315);
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 9px;
  font-style: normal;
  font-weight: 700;
}

.sender-headline {
  grid-column: 1 / -1;
  margin-top: 5px;
  padding: 9px 11px;
  border: 1px solid #dde3e9;
  border-radius: 6px;
  background: #fff;
  color: #35414c;
  font-size: 10.5px;
  line-height: 1.5;
}

.sender-profile-bottom {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 8px;
}

.sender-profile-bottom > span,
.sender-experience {
  min-height: 72px;
  padding: 8px;
  border: 1px solid #dde3e9;
  border-radius: 6px;
  background: #fff;
  color: #69747f;
  font-size: 9px;
  line-height: 1.5;
}

.sender-profile-bottom b {
  display: block;
  margin-bottom: 6px;
  color: #17202a;
  font-size: 10px;
}

.sender-experience strong,
.sender-experience em,
.sender-experience small {
  display: block;
}

.sender-experience-entry {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
}

.sender-company-logo {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  overflow: hidden;
  border: 1px solid #d9dfe5;
  border-radius: 4px;
  background: #101114;
}

.sender-company-logo > img {
  display: block;
  width: 28px !important;
  min-width: 28px;
  max-width: 28px !important;
  height: 28px !important;
  min-height: 28px;
  max-height: 28px;
  padding: 0;
  border: 0;
  background: transparent;
  object-fit: contain;
}

.sender-experience-copy {
  min-width: 0;
}

.sender-experience strong {
  color: #17202a;
  font-size: 10px;
}

.sender-experience em {
  margin-top: 2px;
  color: #4d5965;
  font-size: 9px;
  font-style: normal;
  font-weight: 600;
}

.sender-experience small {
  margin-top: 6px;
  color: #69747f;
  font-size: 8.5px;
  line-height: 1.45;
}

.profile-callout {
  position: absolute;
  z-index: 3;
  overflow: hidden;
  padding: 7px 10px 7px 24px;
  border: 1px solid rgba(166, 205, 255, 0.9);
  border-radius: 999px;
  background:
    radial-gradient(circle at 12px 50%, #fff 0 2px, rgba(255, 255, 255, 0.18) 3px, transparent 6px),
    linear-gradient(105deg, #075ee0 0%, #1478ff 34%, #b8d8ff 48%, #2688ff 61%, #075ee0 100%);
  background-position: center, 100% 50%;
  background-size: auto, 260% 100%;
  color: var(--black);
  font-family: var(--display);
  font-size: 8.5px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  box-shadow: 0 5px 16px rgba(20, 120, 255, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.52);
  will-change: transform, background-position, box-shadow;
  animation: profileCalloutFloat 3.4s ease-in-out infinite, profileCalloutShimmer 3.8s linear infinite;
}

.profile-callout::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  border-top: 1px solid rgba(255, 255, 255, 0.38);
  pointer-events: none;
}

.callout-brand {
  top: 10px;
  right: 10px;
}

.callout-role {
  top: 96px;
  right: 10px;
  animation-delay: 0.75s, 0.45s;
}

.sender-profile-preview:hover .profile-callout,
.sender-profile-preview:focus-visible .profile-callout {
  animation: profileCalloutBounce 720ms cubic-bezier(0.22, 0.9, 0.3, 1) both, profileCalloutShimmer 1.45s linear infinite;
}

.sender-profile-preview:hover .callout-role,
.sender-profile-preview:focus-visible .callout-role {
  animation-delay: 90ms, 0ms;
}

@keyframes profileCalloutFloat {
  0%, 100% {
    transform: translateY(0);
    box-shadow: 0 5px 16px rgba(255, 85, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.52);
  }
  50% {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(255, 85, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.62);
  }
}

@keyframes profileCalloutShimmer {
  0% { background-position: center, 115% 50%; }
  100% { background-position: center, -115% 50%; }
}

@keyframes profileCalloutBounce {
  0% { transform: translateY(0) scale(1); }
  38% { transform: translateY(-6px) scale(1.045); }
  68% { transform: translateY(-1px) scale(1.015); }
  100% { transform: translateY(-3px) scale(1.03); }
}

.foundation-list {
  padding: 0 24px;
}

.foundation-row {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  padding: 19px 4px;
  border-bottom: 1px solid var(--line);
}

.foundation-row:last-child {
  border-bottom: 0;
}

.foundation-row > strong {
  color: var(--orange);
  font-family: var(--display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  text-transform: uppercase;
}

.foundation-row p {
  margin: 0;
}

.foundation-row b {
  display: block;
  color: var(--white);
  font-family: var(--display);
  font-size: 16px;
  font-weight: 650;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.foundation-row p span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.5;
}

.tier-list {
  padding: 10px 12px;
}

.tier-row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px 24px;
  padding: 19px 20px;
  border-bottom: 1px solid var(--line);
}

.tier-row:last-child {
  border-bottom: 0;
}

.tier-row-featured {
  margin: 0 -1px;
  border: 1px solid rgba(255, 85, 0, 0.65);
  background: rgba(255, 85, 0, 0.06);
}

.tier-badge {
  position: absolute;
  top: 10px;
  right: 12px;
  color: var(--orange);
  font-family: var(--display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tier-name span {
  display: block;
  margin-bottom: 6px;
  color: var(--orange);
  font-family: var(--display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tier-name h4 {
  margin: 0;
  font-family: var(--display);
  font-size: 25px;
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.tier-summary {
  max-width: 440px;
  margin: 0;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.5;
}

.tier-tldr {
  display: flex;
  gap: 9px;
  align-items: center;
  width: fit-content;
  margin: 2px 0 0;
  padding: 7px 9px;
  background: rgba(255, 85, 0, 0.1);
  color: var(--white);
  font-size: 11px;
  line-height: 1.35;
}

.tier-tldr b {
  color: var(--orange);
  font-family: var(--display);
  font-size: 9px;
  letter-spacing: 0.1em;
}

.tier-price {
  grid-column: 2;
  grid-row: 1 / span 3;
  align-self: center;
  min-width: 132px;
  margin: 0;
  text-align: right;
}

.tier-price strong {
  display: block;
  color: var(--white);
  font-family: var(--display);
  font-size: 34px;
  line-height: 1;
}

.tier-price span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 9px;
  line-height: 1;
  text-transform: uppercase;
}

.tier-terms {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted-bright);
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Two clear offers with three service levels inside Option 02 */
.offer-split {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 18px;
  align-items: start;
}

.offer-panel {
  border: 1px solid var(--line);
  background: #080a0c;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.2);
}

.foundation-panel {
  border-top: 4px solid rgba(255, 255, 255, 0.72);
}

.pipeline-panel {
  border-top: 4px solid var(--orange);
  background:
    linear-gradient(150deg, rgba(255, 85, 0, 0.075), transparent 30%),
    #0a0c0e;
}

.offer-panel-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px 24px;
  align-items: start;
  min-height: 230px;
  padding: 26px 28px 24px;
  border-bottom: 1px solid var(--line);
}

.offer-panel-head .card-kicker {
  grid-column: 1;
  margin: 0;
}

.offer-panel-head h3 {
  grid-column: 1 / -1;
  margin: 4px 0 0;
  font-size: clamp(36px, 3.4vw, 48px);
  line-height: 0.96;
}

.offer-panel-head > p {
  grid-column: 1 / -1;
  max-width: 520px;
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
}

.option-price {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  min-width: 130px;
  margin: 0;
  text-align: right;
}

.option-price strong {
  font-size: 31px;
  line-height: 0.95;
}

.option-price span {
  font-size: 9px;
}

.foundation-content {
  display: block;
}

.foundation-content .microsite-preview {
  display: grid;
  grid-template-rows: 35px 230px;
  border-right: 0;
  border-bottom: 1px solid var(--line);
}

.foundation-content .preview-car-wrap {
  height: 230px;
  min-height: 0;
}

.foundation-list {
  padding: 2px 20px 6px;
}

.foundation-row {
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 18px;
  padding: 14px 2px;
}

.foundation-row > strong {
  font-size: 24px;
}

.foundation-row b {
  font-size: 14px;
}

.foundation-row p span {
  margin-top: 5px;
  font-size: 11.5px;
  line-height: 1.45;
}

.pipeline-overview {
  display: block;
  padding: 12px 14px 0;
  border-bottom: 0;
}

.pipeline-overview .sender-profile-preview {
  border: 1px solid var(--line);
  background: #070809;
}

.tier-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin: 12px 14px 0;
  padding: 12px 2px 11px;
  border-top: 1px solid var(--line);
}

.tier-section-head span {
  display: block;
  margin-bottom: 6px;
  color: var(--orange);
  font-family: var(--display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.tier-section-head h4 {
  margin: 0;
  font-family: var(--display);
  font-size: 27px;
  font-weight: 650;
  line-height: 1;
  text-transform: uppercase;
}

.tier-section-head p {
  max-width: 210px;
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
  text-align: right;
}

.tier-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 7px;
  padding: 0 14px 14px;
}

.tier-row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 7px 18px;
  min-height: 0;
  padding: 14px;
  border: 1px solid var(--line);
  background: #07090b;
}

.tier-row:last-child {
  border-bottom: 1px solid var(--line);
}

.tier-row-featured {
  margin: 0;
  border-color: rgba(255, 85, 0, 0.72);
  background: linear-gradient(145deg, rgba(255, 85, 0, 0.11), rgba(255, 85, 0, 0.025));
  box-shadow: inset 3px 0 0 var(--orange);
}

.tier-badge {
  top: 10px;
  right: 12px;
}

.tier-name {
  grid-column: 1;
}

.tier-name h4 {
  max-width: 310px;
  font-size: 25px;
  line-height: 0.98;
}

.tier-price {
  grid-column: 2;
  grid-row: 1;
  align-self: end;
  min-width: 125px;
  margin: 0;
  text-align: right;
}

.tier-price strong {
  font-size: 32px;
}

.tier-summary {
  grid-column: 1 / -1;
  max-width: none;
  margin: 2px 0 0;
  font-size: 11.5px;
}

.tier-tldr {
  grid-column: 1 / -1;
  align-items: center;
  width: fit-content;
  min-height: 0;
  margin: 1px 0 0;
  padding: 6px 8px;
}

.tier-terms {
  grid-column: 1 / -1;
  margin: 3px 0 0;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

body.dialog-open {
  overflow: hidden;
}

.microsite-dialog {
  width: min(1380px, calc(100vw - 48px));
  max-width: none;
  max-height: calc(100vh - 48px);
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: #050607;
  color: var(--white);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.75);
}

.microsite-dialog::backdrop {
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(8px);
}

.microsite-dialog-shell {
  position: relative;
  padding: 58px 20px 20px;
}

.microsite-close {
  position: absolute;
  top: 14px;
  right: 20px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: var(--white);
  font-family: var(--display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

.example-site {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #070809;
}

.example-site-nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  min-height: 64px;
  padding: 0 24px;
  background: #050607;
}

.example-site-nav b {
  color: var(--orange);
  font-family: var(--display);
  font-size: 28px;
  font-style: italic;
}

.example-site-nav span,
.example-site-nav small {
  font-family: var(--display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.example-site-nav small {
  color: var(--orange);
}

.example-site-hero {
  position: relative;
  min-height: 480px;
  overflow: hidden;
}

.example-site-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.76) 38%, rgba(0, 0, 0, 0.05) 76%);
}

.example-site-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% center;
}

.example-site-hero > div {
  position: relative;
  z-index: 2;
  width: min(520px, 55%);
  padding: 86px 0 70px 6vw;
}

.example-site-hero p {
  margin: 0 0 18px;
  color: var(--orange);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.example-site-hero h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(64px, 8vw, 120px);
  line-height: 0.78;
  text-transform: uppercase;
}

.example-site-hero span {
  display: block;
  max-width: 420px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.5;
}

.example-site-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.example-site-metrics span {
  padding: 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.56);
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.example-site-metrics span:last-child {
  border-right: 0;
}

.example-site-metrics b {
  display: block;
  margin-bottom: 5px;
  color: var(--white);
  font-size: 30px;
}

.example-site-bottom {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: center;
  padding: 30px 32px;
}

.example-site-bottom p {
  max-width: 690px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.55;
}

.example-site-bottom b {
  color: var(--white);
}

.example-site-bottom a {
  flex: none;
  padding: 14px 18px;
  background: var(--orange);
  color: var(--black);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.pipeline-section {
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--panel);
}

.pipeline-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 480px;
}

.pipeline-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 58px 56px 0;
}

.pipeline-visual {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
  border-left: 1px solid var(--line);
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    #070809;
  background-size: 42px 42px;
  animation: pipelineGridDrift 18s linear infinite;
}

.pipeline-visual:focus-visible {
  outline: 1px solid rgba(255, 103, 25, 0.86);
  outline-offset: -4px;
}

.pipeline-visual::before {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(255, 90, 10, 0.22);
  border-radius: 50%;
  box-shadow: 0 0 0 72px rgba(255, 90, 10, 0.025), 0 0 0 144px rgba(255, 90, 10, 0.018);
  animation: pipelineRingPulse 5.2s ease-in-out infinite;
  will-change: transform, opacity, box-shadow;
}

.pipeline-visual::after {
  content: "";
  position: absolute;
  z-index: 1;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: conic-gradient(from 215deg, transparent 0 84%, rgba(255, 85, 0, 0.12) 92%, transparent 100%);
  opacity: 0.5;
  animation: pipelineSweep 12s linear infinite;
  pointer-events: none;
}

.metric-lockup {
  position: relative;
  z-index: 2;
  text-align: center;
  transition: transform 360ms cubic-bezier(0.22, 0.8, 0.3, 1);
  will-change: transform;
}

.pipeline-visual:hover .metric-lockup,
.pipeline-visual:focus-visible .metric-lockup {
  transform: translateY(-5px) scale(1.018);
}

.metric-big {
  display: block;
  background: linear-gradient(105deg, #f4f4f2 18%, #f4f4f2 38%, #ffffff 48%, #c9cbd0 54%, #f4f4f2 64%, #f4f4f2 82%);
  background-position: 120% 50%;
  background-size: 240% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: var(--display);
  font-size: clamp(90px, 12vw, 160px);
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 0.8;
  -webkit-text-fill-color: transparent;
  animation: metricShimmer 5.8s ease-in-out infinite;
}

.metric-big span {
  color: var(--orange);
  -webkit-text-fill-color: var(--orange);
  animation: metricDollarGlow 3.8s ease-in-out infinite;
}

.metric-caption {
  display: block;
  margin-top: 28px;
  color: var(--muted-bright);
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

@keyframes pipelineGridDrift {
  from { background-position: 0 0, 0 0, 0 0; }
  to { background-position: 42px 42px, 42px 42px, 0 0; }
}

@keyframes pipelineRingPulse {
  0%, 100% {
    opacity: 0.72;
    transform: scale(0.985);
    box-shadow: 0 0 0 72px rgba(255, 90, 10, 0.02), 0 0 0 144px rgba(255, 90, 10, 0.014);
  }
  50% {
    opacity: 1;
    transform: scale(1.025);
    box-shadow: 0 0 0 78px rgba(255, 90, 10, 0.034), 0 0 0 154px rgba(255, 90, 10, 0.024);
  }
}

@keyframes pipelineSweep {
  to { transform: rotate(360deg); }
}

@keyframes metricShimmer {
  0%, 22% { background-position: 120% 50%; }
  68%, 100% { background-position: -120% 50%; }
}

@keyframes metricDollarGlow {
  0%, 100% { filter: drop-shadow(0 0 0 rgba(255, 85, 0, 0)); }
  50% { filter: drop-shadow(0 0 12px rgba(255, 85, 0, 0.34)); }
}

.pipeline-copy .section-title {
  margin-bottom: 26px;
}

.pipeline-copy p {
  max-width: 540px;
  color: var(--muted-bright);
  font-size: 18px;
}

.fact-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
  color: var(--muted);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fact-row::before {
  content: "";
  width: 56px;
  height: 2px;
  background: var(--orange);
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.approach-card {
  min-height: 290px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.approach-number {
  display: block;
  margin-bottom: 52px;
  color: var(--orange);
  font-family: var(--display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.approach-card h3 {
  margin-bottom: 16px;
  font-family: var(--display);
  font-size: 34px;
  font-weight: 650;
  line-height: 1;
  text-transform: uppercase;
}

.approach-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.founder-band {
  position: relative;
  padding: 50px 0;
  border-top: 1px solid var(--line);
  background: var(--orange);
  color: var(--black);
  overflow: hidden;
}

.founder-watermark {
  position: absolute;
  right: -12px;
  top: 24px;
  width: 320px;
  height: 170px;
  opacity: 0.07;
  background: var(--black);
  -webkit-mask-image: url("/brr-wordmark.png");
  mask-image: url("/brr-wordmark.png");
  -webkit-mask-mode: luminance;
  mask-mode: luminance;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 1614px auto;
  mask-size: 1614px auto;
  -webkit-mask-position: 0 -165px;
  mask-position: 0 -165px;
  pointer-events: none;
  user-select: none;
}

.founder-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 160px minmax(210px, 0.5fr) minmax(0, 1.25fr);
  align-items: center;
  gap: clamp(34px, 4vw, 72px);
}

.founder-portrait-frame {
  position: relative;
  width: 160px;
  aspect-ratio: 1;
  padding: 7px;
  border: 3px solid var(--black);
  border-radius: 50%;
  background: var(--white);
  box-shadow: 14px 14px 0 rgba(0, 0, 0, 0.16);
}

.founder-portrait {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  filter: grayscale(1) contrast(1.06);
  object-fit: cover;
}

.founder-identity {
  align-self: center;
}

.founder-label {
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.founder-name {
  margin: 6px 0 0;
  font-family: var(--display);
  font-size: clamp(42px, 5vw, 70px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.95;
  text-transform: uppercase;
}

.founder-copy {
  max-width: 760px;
  margin: 0;
  font-size: clamp(17px, 1.45vw, 22px);
  font-weight: 500;
  line-height: 1.45;
}

.founder-inline-link {
  border-bottom: 2px solid rgba(0, 0, 0, 0.48);
  font-weight: 700;
}

.founder-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 24px;
  margin-top: 20px;
}

.founder-link,
.founder-social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--black);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.founder-linkedin-icon {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  color: var(--white);
  background: #0a66c2;
  border-radius: 2px;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  text-transform: none;
}

.cta-section {
  position: relative;
  padding: 78px 0;
  text-align: center;
  background:
    radial-gradient(circle at 50% 55%, rgba(255, 90, 10, 0.16), transparent 36%),
    #000;
}

.cta-section h2 {
  max-width: 900px;
  margin: 0 auto 22px;
  font-family: var(--display);
  font-size: clamp(54px, 7vw, 94px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.9;
  text-transform: uppercase;
}

.cta-section p {
  max-width: 580px;
  margin: 0 auto 32px;
  color: var(--muted-bright);
  font-size: 18px;
}

.page-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 640px;
  padding: 170px 0 90px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background:
    linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.88) 48%, rgba(0, 0, 0, 0.36) 100%),
    url("/race-car-88-crisp.png") center 48% / cover no-repeat;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(transparent, #000);
}

.page-hero .shell {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  max-width: 780px;
  margin-bottom: 22px;
}

.page-hero p {
  max-width: 680px;
  margin: 0;
  color: var(--muted-bright);
  font-size: 20px;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.35fr) minmax(0, 1fr);
  gap: 88px;
}

.content-aside {
  align-self: start;
  position: sticky;
  top: 112px;
}

.content-aside span {
  display: block;
  margin-bottom: 12px;
  color: var(--orange);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.content-aside strong {
  display: block;
  font-family: var(--display);
  font-size: 34px;
  font-weight: 650;
  line-height: 1.05;
  text-transform: uppercase;
}

.prose {
  max-width: 820px;
}

.prose h2 {
  margin: 70px 0 24px;
  font-family: var(--display);
  font-size: clamp(38px, 4.2vw, 60px);
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1;
  text-transform: uppercase;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose p,
.prose li {
  color: var(--muted-bright);
  font-size: 18px;
  line-height: 1.75;
}

.prose a,
.text-link {
  color: var(--white);
  border-bottom: 1px solid var(--orange);
}

.about-race-story {
  display: grid;
  grid-template-columns: minmax(0, 1.38fr) minmax(210px, 0.62fr);
  gap: 10px;
  height: 530px;
  margin: 52px 0 76px;
}

.about-race-stack {
  display: grid;
  grid-template-rows: 1.16fr 0.84fr;
  gap: 10px;
  min-height: 0;
}

.about-race-stack .about-race-photo:first-child img {
  object-position: center 38%;
}

.about-race-stack .about-race-photo:last-child img {
  object-position: 69% center;
}

.about-race-photo-main img {
  object-position: 55% center;
}

.plain-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.plain-list li {
  position: relative;
  padding: 18px 18px 18px 46px;
  border: 1px solid var(--line);
  background: var(--panel);
}

.plain-list li::before {
  content: "+";
  position: absolute;
  left: 20px;
  color: var(--orange);
  font-family: var(--display);
  font-weight: 700;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.fact-card {
  min-height: 160px;
  padding: 28px;
  background: var(--panel);
}

.fact-card span {
  display: block;
  margin-bottom: 14px;
  color: var(--orange);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.fact-card strong {
  color: var(--white);
  font-family: var(--display);
  font-size: 26px;
  font-weight: 600;
  line-height: 1.15;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  border: 1px solid var(--line);
  background: var(--panel);
}

.contact-main,
.contact-side {
  padding: clamp(36px, 5vw, 70px);
}

.contact-side {
  border-left: 1px solid var(--line);
  background: var(--black-soft);
}

.contact-main h2 {
  margin-bottom: 18px;
  font-family: var(--display);
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.95;
  text-transform: uppercase;
}

.contact-main p,
.contact-side p {
  color: var(--muted-bright);
  font-size: 18px;
}

.contact-email {
  display: block;
  margin: 34px 0;
  color: var(--orange);
  font-family: var(--display);
  font-size: clamp(25px, 3vw, 42px);
  font-weight: 600;
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.contact-detail {
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.contact-detail span {
  display: block;
  color: var(--muted);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contact-detail strong {
  display: block;
  margin-top: 4px;
  font-family: var(--display);
  font-size: 21px;
  font-weight: 600;
  text-transform: uppercase;
}

.asset-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.asset-card {
  display: flex;
  flex-direction: column;
  min-height: 320px;
  padding: 28px;
  border: 1px solid var(--line);
  background: #000;
}

.asset-preview {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-height: 160px;
  padding: 20px;
  border: 1px solid var(--line);
  background: #050505;
}

.asset-preview img {
  max-height: 120px;
  object-fit: contain;
}

.asset-card h3 {
  margin: 22px 0 2px;
  font-family: var(--display);
  font-size: 23px;
  text-transform: uppercase;
}

.asset-card a {
  color: var(--orange);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.quote-block {
  margin: 42px 0;
  padding: 34px 36px;
  border-left: 4px solid var(--orange);
  background: var(--panel);
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 500;
  line-height: 1.12;
  text-transform: uppercase;
}

.site-footer {
  padding: 14px 0 0;
  border-top: 1px solid var(--line);
  background: #000;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 46px;
  padding-bottom: 14px;
}

.footer-logo {
  display: block;
  flex: 0 0 auto;
  width: clamp(180px, 19vw, 225px);
  height: 40px;
  margin-left: -8px;
  overflow: hidden;
}

.footer-logo img {
  display: block;
  width: 100%;
  height: auto;
  transform: translateY(-17px);
}

.footer-links {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(16px, 2vw, 34px);
}

.footer-links a {
  color: var(--muted-bright);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer-links a:hover {
  color: var(--orange);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 36px;
  padding: 9px 0 10px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
}

.footer-bottom a {
  color: var(--muted-bright);
  border-bottom: 1px solid rgba(255, 85, 0, 0.72);
}

.footer-bottom a:hover {
  color: var(--orange);
}

.footer-location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.chicago-flag {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 19px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: linear-gradient(to bottom, #f6f6f4 0 16%, #6eb9dc 16% 32%, #f6f6f4 32% 68%, #6eb9dc 68% 84%, #f6f6f4 84% 100%);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  color: #d8232a;
  font-family: Arial, sans-serif;
  font-size: 5px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: -0.8px;
  line-height: 1;
  vertical-align: middle;
}

.chicago-flag > span {
  display: block;
  white-space: nowrap;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@media (max-width: 980px) {
  .site-header,
  .site-header.is-scrolled {
    height: 72px;
    background: rgba(0, 0, 0, 0.96);
  }

  .brand-lockup {
    width: min(250px, 32vw);
  }

  .menu-toggle {
    display: block;
  }

  .nav-wrap {
    position: fixed;
    inset: 72px 0 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 28px;
    padding: 36px 24px;
    background: rgba(0, 0, 0, 0.98);
  }

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

  .site-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .site-nav a {
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    font-size: 18px;
  }

  .header-cta {
    min-height: 52px;
  }

  .hero {
    min-height: auto;
    padding: 112px 0 22px;
  }

  .hero-media {
    background-position: 61% center;
  }

  .hero-media::before {
    background:
      linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.8) 44%, rgba(0, 0, 0, 0.24) 100%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.2) 44%, #000 87%);
  }

  .hero-copy {
    padding: 30vh 0 40px;
  }

  .section-head,
  .race-proof-head,
  .pipeline-grid,
  .founder-grid,
  .content-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .section-head {
    gap: 22px;
  }

  .race-proof-head {
    gap: 22px;
  }

  .offer-split {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .offer-panel-head {
    grid-template-columns: 1fr;
  }

  .offer-panel-head .card-kicker,
  .offer-panel-head h3,
  .offer-panel-head > p,
  .option-price {
    grid-column: 1;
    grid-row: auto;
  }

  .option-price {
    flex-direction: row;
    align-items: flex-end;
    justify-content: flex-start;
    min-width: 0;
    margin-top: 12px;
    text-align: left;
  }

  .foundation-content,
  .pipeline-overview,
  .tier-list {
    grid-template-columns: 1fr;
  }

  .foundation-content .microsite-preview {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .foundation-content .preview-car-wrap {
    min-height: 210px;
  }

  .pipeline-choice-intro {
    padding: 24px;
  }

  .tier-row {
    min-height: 0;
  }

  .pipeline-copy {
    padding: 56px 0 40px;
  }

  .pipeline-visual {
    min-height: 340px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .founder-grid {
    gap: 34px;
  }

  .founder-portrait-frame {
    width: 154px;
  }

  .content-grid {
    gap: 46px;
  }

  .content-aside {
    position: static;
  }

  .contact-side {
    border-top: 1px solid var(--line);
    border-left: 0;
  }
}

@media (max-width: 760px) {
  .shell {
    width: auto;
    margin-right: 24px;
    margin-left: 24px;
  }

  .header-inner {
    width: 100%;
    margin: 0;
    padding-right: 24px;
    padding-left: 24px;
  }

  .brand-lockup {
    width: 210px;
    height: 42px;
    margin-left: -6px;
    min-width: 0;
  }

  .brand-lockup img {
    transform: translateY(-17px);
  }

  .hero-inner,
  .page-hero .shell {
    margin-right: 24px;
    margin-left: 24px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(58px, 18vw, 84px);
  }

  .hero-media {
    background-position: 58% top;
    background-size: auto 60%;
  }

  .hero-copy {
    padding-top: 24vh;
  }

  .hero-actions {
    flex-wrap: nowrap;
    gap: 8px;
  }

  .hero-actions .button {
    flex: 1 1 0;
    min-width: 0;
    padding-right: 10px;
    padding-left: 10px;
    font-size: 10px;
    letter-spacing: 0.08em;
  }

  .hero-actions .button-arrow::after {
    margin-left: 8px;
  }

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

  .approach-grid,
  .facts-grid,
  .asset-grid {
    grid-template-columns: 1fr;
  }

  .proof-item {
    min-height: auto;
    padding: 12px 8px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .proof-value {
    font-size: 26px;
  }

  .proof-label {
    margin-top: 6px;
    font-size: 7.5px;
    letter-spacing: 0.1em;
  }

  .proof-item:last-child {
    border-right: 0;
  }

  .section {
    padding: 56px 0;
  }

  .race-proof-section {
    padding: 50px 0;
  }

  .race-proof-head {
    margin-bottom: 30px;
  }

  .race-gallery-controls {
    grid-template-columns: minmax(0, 1fr) auto 46px 46px;
  }

  .race-proof-photo {
    flex-basis: calc(100vw - 70px);
    aspect-ratio: 16 / 10;
  }

  .race-proof-photo-portrait {
    flex-basis: calc(100vw - 70px);
    aspect-ratio: 4 / 5;
  }

  .race-proof-photo-main img {
    object-position: 62% center;
  }

  .about-race-story {
    grid-template-columns: 1fr;
    height: auto;
    margin: 42px 0 60px;
  }

  .about-race-photo-main {
    aspect-ratio: 4 / 3;
  }

  .about-race-stack {
    grid-template-columns: 0.85fr 1.15fr;
    grid-template-rows: none;
    height: 310px;
  }

  .section-head {
    margin-bottom: 32px;
  }

  .section-title {
    font-size: clamp(44px, 14vw, 66px);
  }

  .offer-panel-head {
    min-height: 0;
    padding: 24px;
  }

  .card-kicker {
    margin-bottom: 20px;
  }

  .preview-car-wrap {
    height: 200px;
  }

  .preview-car-copy {
    top: 28px;
    left: 24px;
  }

  .preview-car-copy strong {
    font-size: 38px;
  }

  .sender-profile-preview {
    padding: 12px;
  }

  .sender-profile-banner {
    height: 112px;
    background-position: 56% center;
  }

  .sender-profile-body {
    grid-template-columns: 64px minmax(0, 1fr);
    padding: 0 12px 12px;
  }

  .sender-avatar {
    width: 62px;
    height: 62px;
  }

  .sender-profile-bottom {
    display: none;
  }

  .profile-callout {
    display: none;
  }

  .foundation-list {
    padding: 0 22px;
  }

  .foundation-row {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 16px;
    padding: 14px 4px;
  }

  .foundation-row > strong {
    font-size: 24px;
  }

  .tier-row {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .tier-price {
    grid-column: 1;
    grid-row: auto;
    margin-top: 6px;
    text-align: left;
  }

  .tier-terms {
    grid-column: 1;
  }

  .microsite-dialog {
    width: calc(100vw - 20px);
    max-height: calc(100vh - 20px);
  }

  .microsite-dialog-shell {
    padding: 54px 10px 10px;
  }

  .example-site-nav {
    grid-template-columns: auto 1fr;
    min-height: 54px;
    padding: 0 15px;
  }

  .example-site-nav small {
    display: none;
  }

  .example-site-hero {
    min-height: 400px;
  }

  .example-site-hero > div {
    width: 76%;
    padding: 72px 0 56px 24px;
  }

  .example-site-hero h3 {
    font-size: clamp(58px, 19vw, 86px);
  }

  .example-site-hero span {
    font-size: 12px;
  }

  .example-site-metrics {
    grid-template-columns: repeat(2, 1fr);
  }

  .example-site-metrics span:nth-child(2) {
    border-right: 0;
  }

  .example-site-metrics span:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .example-site-bottom {
    align-items: stretch;
    flex-direction: column;
    padding: 24px;
  }

  .example-site-bottom a {
    text-align: center;
  }

  .pipeline-visual {
    min-height: 260px;
  }

  .pipeline-visual::before {
    width: 320px;
    height: 320px;
  }

  .approach-grid {
    border-left: 1px solid var(--line);
  }

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

  .approach-number {
    margin-bottom: 48px;
  }

  .founder-band {
    padding: 36px 0;
  }

  .founder-watermark {
    right: -8px;
    top: 18px;
    width: 190px;
    height: 110px;
    -webkit-mask-size: 934px auto;
    mask-size: 934px auto;
    -webkit-mask-position: 0 -88px;
    mask-position: 0 -88px;
  }

  .founder-portrait-frame {
    width: 124px;
    box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.16);
  }

  .page-hero {
    min-height: 470px;
    padding: 116px 0 50px;
    background-position: 62% center;
  }

  .page-hero p {
    font-size: 18px;
  }

  .pipeline-copy {
    padding: 44px 0 32px;
  }

  .founder-grid {
    gap: 24px;
  }

  .cta-section {
    padding: 64px 0;
  }

  .footer-top,
  .footer-bottom {
    flex-direction: column;
  }

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

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
