:root {
  --ink: #080b0c;
  --ink-soft: #223133;
  --muted: #657476;
  --paper: #ffffff;
  --mist: #f6faf9;
  --mist-deep: #e8f5f4;
  --blue: #2daab8;
  --blue-deep: #147f8e;
  --blue-ink: #0d6370;
  --green: #59b762;
  --green-deep: #2f8f4d;
  --forest: #102f2d;
  --forest-soft: #174740;
  --line: rgba(8, 11, 12, 0.11);
  --line-light: rgba(255, 255, 255, 0.18);
  --brand-gradient: linear-gradient(135deg, var(--blue-ink), var(--blue-deep) 54%, var(--green-deep));
  --brand-glow: 0 26px 70px rgba(45, 170, 184, 0.18);
  --shadow: 0 28px 74px rgba(8, 11, 12, 0.13);
  --shadow-small: 0 16px 38px rgba(8, 11, 12, 0.11);
  --max: 1200px;
  --gutter: 28px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", Inter, "Segoe UI", sans-serif;
  line-height: 1.55;
  letter-spacing: 0;
  text-rendering: geometricPrecision;
}

body.nav-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  padding: 10px 14px;
  font-size: 0.9rem;
  font-weight: 750;
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0);
  padding: 10px 0;
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease, padding 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  border-bottom-color: rgba(8, 11, 12, 0.08);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 28px rgba(45, 170, 184, 0.08);
  padding: 6px 0;
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(100%, calc(var(--max) + (var(--gutter) * 2)));
  min-height: 84px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  white-space: nowrap;
}

.brand-logo {
  width: 108px;
  height: 68px;
  max-height: 68px;
  object-fit: contain;
  object-position: left center;
  transition: transform 180ms ease;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 0 0 auto;
  color: rgba(10, 13, 14, 0.72);
  font-size: 1rem !important;
  font-weight: 660;
  line-height: 1.15 !important;
}

.nav-links a {
  position: relative;
  display: inline-flex !important;
  width: auto !important;
  min-width: 0 !important;
  min-height: 0 !important;
  align-items: center;
  padding: 8px 0 !important;
  color: inherit !important;
  font-size: inherit !important;
  line-height: inherit !important;
  text-align: left !important;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.nav-links .nav-cta {
  width: auto !important;
  height: auto !important;
  min-width: 0 !important;
  min-height: 0 !important;
  border-radius: 999px !important;
  background: var(--brand-gradient) !important;
  color: var(--paper) !important;
  padding: 12px 20px !important;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", Inter, "Segoe UI", sans-serif !important;
  font-size: 1rem !important;
  line-height: 1.15 !important;
  letter-spacing: 0 !important;
  text-decoration: none !important;
  text-transform: none !important;
  -webkit-text-fill-color: var(--paper) !important;
  box-shadow: 0 12px 24px rgba(45, 170, 184, 0.24) !important;
}

.nav-links .nav-cta:visited {
  color: var(--paper) !important;
  -webkit-text-fill-color: var(--paper) !important;
}

.nav-links .nav-cta:hover,
.nav-links .nav-cta:focus-visible {
  background: linear-gradient(135deg, var(--blue-deep), var(--blue-ink) 54%, var(--green-deep)) !important;
  color: var(--paper) !important;
  -webkit-text-fill-color: var(--paper) !important;
}

.nav-links .nav-cta::after {
  display: none;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  width: 16px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  transition: transform 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.section-pad {
  position: relative;
  overflow: hidden;
  padding: 112px max(var(--gutter), calc((100vw - var(--max)) / 2 + var(--gutter)));
}

[id] {
  scroll-margin-top: 112px;
}

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

h1,
h2,
h3 {
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: 4.85rem;
  font-weight: 810;
}

h2 {
  margin-bottom: 24px;
  font-size: 4.25rem;
  font-weight: 790;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.45rem;
  font-weight: 760;
}

p {
  color: var(--muted);
  font-size: 1.06rem;
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 20px;
  align-items: center;
  gap: 10px;
  color: var(--blue-deep);
  font-size: 0.76rem;
  font-weight: 820;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 8px;
  border-radius: 999px;
  background: var(--brand-gradient);
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--brand-gradient);
  color: var(--paper) !important;
  padding: 13px 23px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", Inter, "Segoe UI", sans-serif !important;
  font-size: 0.95rem !important;
  font-weight: 780;
  line-height: 1.2 !important;
  letter-spacing: 0 !important;
  text-decoration: none !important;
  text-transform: none !important;
  -webkit-text-fill-color: var(--paper) !important;
  box-shadow: 0 15px 35px rgba(45, 170, 184, 0.24);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.ooi-oit-shortcode .button,
.ooi-oit-shortcode a.button,
.ooi-oit-shortcode a.button:link,
.ooi-oit-shortcode a.button:visited,
a.button,
a.button:visited {
  color: var(--paper) !important;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", Inter, "Segoe UI", sans-serif !important;
  font-size: 0.95rem !important;
  line-height: 1.2 !important;
  letter-spacing: 0 !important;
  text-decoration: none !important;
  text-transform: none !important;
  -webkit-text-fill-color: var(--paper) !important;
}

.ooi-oit-shortcode .button:hover,
.ooi-oit-shortcode .button:focus-visible,
.ooi-oit-shortcode a.button:hover,
.ooi-oit-shortcode a.button:focus-visible,
.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(45, 170, 184, 0.28);
  background: linear-gradient(135deg, var(--blue-deep), var(--blue-ink) 54%, var(--green-deep));
  color: var(--paper) !important;
  -webkit-text-fill-color: var(--paper) !important;
  box-shadow: 0 20px 44px rgba(45, 170, 184, 0.3);
}

.button:focus-visible,
.text-link:focus-visible,
.nav-toggle:focus-visible,
.resource-tab:focus-visible,
.agenda-scroll:focus-visible,
.large-play:focus-visible,
.modal-close:focus-visible {
  outline: 3px solid rgba(45, 170, 184, 0.35);
  outline-offset: 4px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(45, 170, 184, 0.5);
  padding-bottom: 4px;
  color: var(--blue-ink) !important;
  font-size: 0.96rem !important;
  font-weight: 760;
  line-height: 1.2 !important;
}

.hero {
  min-height: 730px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(520px, 0.98fr);
  gap: 60px;
  align-items: center;
  padding-top: 152px;
  background:
    radial-gradient(circle at 13% 18%, rgba(45, 170, 184, 0.16), transparent 29%),
    radial-gradient(circle at 86% 12%, rgba(89, 183, 98, 0.12), transparent 30%),
    linear-gradient(115deg, var(--paper) 0 58%, var(--mist-deep) 58% 100%);
}

.ambient-shape {
  position: absolute;
  pointer-events: none;
  user-select: none;
}

.hero-shape-a {
  right: -260px;
  top: -180px;
  width: 820px;
  opacity: 0.14;
}

.hero-shape-b {
  left: -310px;
  bottom: -260px;
  width: 720px;
  opacity: 0.08;
}

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

.hero-lede {
  max-width: 660px;
  color: var(--ink-soft);
  font-size: 1.28rem;
  line-height: 1.56;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-top: 36px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 36px;
  row-gap: 18px;
  margin: 58px 0 0;
  padding-top: 28px;
  border-top: 1px solid rgba(45, 170, 184, 0.18);
}

.trust-row div {
  min-width: 0;
}

.trust-row div:nth-child(2) {
  text-align: center;
}

.trust-row div:nth-child(3) {
  text-align: right;
}

.trust-row dt {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 820;
}

.trust-row dd {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.arrow-icon {
  position: relative;
  display: inline-block;
  width: 34px;
  height: 14px;
  flex: 0 0 auto;
}

.arrow-icon::before,
.arrow-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  display: block;
}

.arrow-icon::before {
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: translateY(-50%);
}

.arrow-icon::after {
  right: 1px;
  width: 9px;
  height: 9px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

.arrow-inline {
  width: 24px;
  height: 12px;
}

.resource-stack {
  position: relative;
  width: min(100%, 620px);
  min-height: 610px;
  margin-left: auto;
  isolation: isolate;
}

.sheet {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(45, 170, 184, 0.12);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow), var(--brand-glow);
}

.sheet img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sheet-label {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 2;
  border: 1px solid rgba(45, 170, 184, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--blue-ink);
  padding: 7px 10px;
  font-size: 0.68rem;
  font-weight: 820;
  text-transform: uppercase;
  backdrop-filter: blur(16px);
}

.sheet-back {
  right: 0;
  top: 0;
  width: 82%;
  height: 46%;
  transform: rotate(7deg);
  animation: floatSlow 8s ease-in-out infinite;
}

.sheet-middle {
  left: 0;
  top: 112px;
  width: 46%;
  height: 68%;
  transform: rotate(-7deg);
  animation: floatSlow 8.5s ease-in-out 280ms infinite;
}

.sheet-side {
  right: 8px;
  top: 192px;
  width: 39%;
  height: 52%;
  transform: rotate(4deg);
  animation: floatSlow 9s ease-in-out 520ms infinite;
}

.sheet-front {
  right: 68px;
  bottom: 0;
  width: 62%;
  height: 32%;
  transform: rotate(-1.5deg);
  animation: floatSlow 7.5s ease-in-out 420ms infinite;
}

.play-pill,
.large-play {
  position: absolute;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--brand-gradient);
  box-shadow: 0 18px 45px rgba(45, 170, 184, 0.3);
}

.play-pill {
  left: 18px;
  bottom: 18px;
  width: 52px;
  height: 52px;
}

.play-pill span,
.large-play span {
  display: block;
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid var(--paper);
}

.narrow {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.problem {
  background: var(--paper);
}

.problem h2 {
  max-width: 940px;
  margin-inline: auto;
}

.large-copy {
  max-width: 860px;
  margin: 0 auto 64px;
  color: var(--ink-soft);
  font-size: 1.45rem;
  line-height: 1.5;
}

.contrast-grid {
  display: grid;
  grid-template-columns: 1fr 76px 1fr;
  align-items: center;
  text-align: left;
}

.contrast-card {
  min-height: 245px;
  border-radius: 8px;
  padding: 38px;
}

.contrast-card.muted {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(45, 170, 184, 0.05), rgba(89, 183, 98, 0.03)),
    var(--mist);
}

.contrast-card.featured {
  background: linear-gradient(145deg, var(--forest) 0%, var(--blue-ink) 68%, var(--green-deep) 100%);
  color: var(--paper);
  box-shadow: var(--brand-glow);
}

.contrast-card.featured p {
  color: rgba(255, 255, 255, 0.76);
}

.contrast-kicker {
  color: var(--blue-deep);
  font-size: 0.68rem;
  font-weight: 820;
  text-transform: uppercase;
}

.contrast-card.featured .contrast-kicker {
  color: var(--blue);
}

.contrast-card h3 {
  margin: 16px 0 12px;
  font-size: 1.8rem;
}

.contrast-card p {
  margin-bottom: 0;
}

.contrast-arrow {
  display: grid;
  place-items: center;
  color: var(--green-deep);
}

.contrast-arrow .arrow-icon {
  width: 48px;
  height: 18px;
}

.how {
  background:
    radial-gradient(circle at 90% 14%, rgba(45, 170, 184, 0.28), transparent 30%),
    radial-gradient(circle at 8% 90%, rgba(89, 183, 98, 0.18), transparent 32%),
    linear-gradient(145deg, var(--forest) 0%, #0b1918 100%);
  color: var(--paper);
}

.how .eyebrow,
.final-cta .eyebrow.light {
  color: var(--blue);
}

.how .eyebrow::before,
.final-cta .eyebrow.light::before {
  background: linear-gradient(135deg, var(--paper), rgba(255, 255, 255, 0.52));
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 80px;
  align-items: end;
}

.split h2,
.final-cta h2 {
  color: var(--paper);
}

.split p:not(.eyebrow) {
  max-width: 500px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.13rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 70px;
  border-top: 1px solid var(--line-light);
}

.steps article {
  min-height: 270px;
  border-right: 1px solid var(--line-light);
  padding: 40px 30px 0;
  transition: background 180ms ease, transform 180ms ease;
}

.steps article:last-child {
  border-right: 0;
}

.steps span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.steps span,
.timeline span {
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 820;
  text-transform: uppercase;
}

.steps h3 {
  margin: 34px 0 14px;
  color: var(--paper);
  font-size: 1.45rem;
}

.steps p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

.steps article:hover {
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-4px);
}

.section-heading {
  max-width: 850px;
  margin-bottom: 58px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered p:not(.eyebrow) {
  max-width: 600px;
  margin-inline: auto;
  font-size: 1.18rem;
}

.system {
  background:
    radial-gradient(circle at 8% 8%, rgba(89, 183, 98, 0.08), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(45, 170, 184, 0.12), transparent 32%),
    linear-gradient(180deg, var(--mist) 0%, var(--paper) 100%);
}

.system-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.74fr) minmax(0, 1.26fr);
  gap: 54px;
  align-items: center;
}

.resource-tabs {
  display: flex;
  flex-direction: column;
}

.resource-tab {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 16px;
  overflow: hidden;
  border: 1px solid transparent;
  border-bottom-color: var(--line);
  border-radius: 8px;
  background: transparent;
  color: var(--ink);
  padding: 22px 18px;
  text-align: left;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.resource-tab span {
  color: var(--blue-deep);
  font-size: 0.76rem;
  font-weight: 820;
}

.resource-tab strong {
  min-width: 0;
  font-size: 1.05rem;
  line-height: 1.24;
}

.resource-tab small {
  grid-column: 2;
  min-width: 0;
  margin-top: -8px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.28;
  overflow-wrap: anywhere;
}

.resource-tab:hover {
  background: rgba(45, 170, 184, 0.05);
}

.resource-tab.active {
  border-color: rgba(45, 170, 184, 0.22);
  background: linear-gradient(90deg, rgba(45, 170, 184, 0.1), rgba(89, 183, 98, 0.05));
  box-shadow: 0 14px 32px rgba(45, 170, 184, 0.1);
  transform: translateX(4px);
}

.resource-tab.active strong {
  color: var(--blue-ink);
}

.preview-window {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(45, 170, 184, 0.14);
  border-radius: 8px;
  background:
    radial-gradient(circle at 8% 10%, rgba(45, 170, 184, 0.1), transparent 28%),
    radial-gradient(circle at 94% 0, rgba(89, 183, 98, 0.11), transparent 30%),
    var(--paper);
  box-shadow: var(--shadow), var(--brand-glow);
  padding: 34px;
}

.preview-window::before {
  content: "";
  position: absolute;
  inset: 18px 18px auto auto;
  width: 96px;
  height: 36px;
  border-radius: 999px;
  background: var(--brand-gradient);
  opacity: 0.08;
}

.browser-frame {
  overflow: hidden;
  border: 1px solid rgba(45, 170, 184, 0.14);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow), var(--brand-glow);
}

.browser-bar {
  min-height: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(45, 170, 184, 0.12);
  background: linear-gradient(90deg, rgba(45, 170, 184, 0.1), rgba(89, 183, 98, 0.08));
  padding: 0 18px;
}

.browser-bar span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--blue-deep);
}

.browser-bar span:nth-child(2) {
  background: var(--blue);
}

.browser-bar span:nth-child(3) {
  background: var(--green);
}

.browser-bar p {
  margin: 0 0 0 auto;
  color: var(--blue-ink);
  font-size: 0.75rem;
  font-weight: 720;
}

.preview-content {
  position: relative;
  min-height: 500px;
  padding: 0 0 30px;
}

.preview-title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.preview-title h3 {
  max-width: 460px;
  margin-bottom: 0;
  font-size: 2rem;
}

.tag {
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--brand-gradient);
  color: var(--paper) !important;
  padding: 7px 10px;
  font-size: 0.68rem !important;
  font-weight: 820;
  line-height: 1.2 !important;
  text-transform: uppercase;
  white-space: nowrap;
}

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

.preview-grid.theme-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.preview-card {
  overflow: hidden;
  border: 1px solid rgba(45, 170, 184, 0.12);
  border-radius: 8px;
  background: var(--mist);
  min-height: 280px;
  box-shadow: 0 12px 28px rgba(8, 11, 12, 0.05);
}

.preview-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  object-position: top center;
}

.preview-card strong {
  display: block;
  padding: 16px;
  color: var(--ink);
  font-size: 0.96rem;
  line-height: 1.22;
}

.preview-card p {
  margin: -6px 0 0;
  padding: 0 16px 18px;
  font-size: 0.82rem;
  line-height: 1.42;
}

.preview-card.theme-card {
  display: flex;
  min-height: 252px;
  flex-direction: column;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 250, 249, 0.98)),
    radial-gradient(circle at 50% 0, rgba(45, 170, 184, 0.12), transparent 62%);
}

.preview-card.theme-card img {
  width: 86px;
  height: 96px;
  margin: 26px auto 8px;
  object-fit: contain;
  object-position: center;
}

.preview-card.theme-card strong {
  padding: 10px 16px 12px;
  text-align: center;
}

.preview-card.theme-card p {
  padding: 0 16px 20px;
  text-align: center;
}

.preview-card.wide {
  grid-column: span 2;
}

.preview-card.wide img {
  height: 290px;
  object-position: center;
}

.locked-bar {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--forest), var(--blue-ink));
  color: var(--paper);
  padding: 18px 24px;
}

.locked-bar img {
  width: 48px;
}

.locked-bar p {
  flex: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
}

.locked-bar a {
  color: var(--paper) !important;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", Inter, "Segoe UI", sans-serif !important;
  font-size: 0.88rem !important;
  font-weight: 760;
  letter-spacing: 0 !important;
  line-height: 1.2 !important;
  text-decoration: underline !important;
  text-transform: none !important;
  -webkit-text-fill-color: var(--paper) !important;
}

.locked-bar a:visited {
  color: var(--paper) !important;
  -webkit-text-fill-color: var(--paper) !important;
}

.agenda {
  background: var(--paper);
}

.agenda .browser-frame {
  background:
    radial-gradient(circle at 16% 0, rgba(89, 183, 98, 0.1), transparent 30%),
    #eef7f7;
}

.agenda-scroll {
  position: relative;
  max-height: 760px;
  overflow-y: auto;
  padding: 34px;
  scroll-behavior: smooth;
}

.agenda-page {
  width: min(850px, 100%);
  margin: 0 auto 28px;
  overflow: hidden;
  border: 1px solid rgba(45, 170, 184, 0.12);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow-small);
}

.agenda-page img {
  width: 100%;
  height: auto;
}

.lock-overlay {
  position: relative;
  z-index: 4;
  width: min(620px, calc(100% - 32px));
  margin: -520px auto 8px;
  border: 1px solid rgba(45, 170, 184, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow), var(--brand-glow);
  padding: 32px;
  text-align: center;
  backdrop-filter: blur(24px);
}

.lock-overlay::before {
  content: "";
  position: absolute;
  inset: -190px -34px auto;
  height: 220px;
  background: linear-gradient(180deg, rgba(238, 247, 247, 0), rgba(238, 247, 247, 0.98));
  pointer-events: none;
}

.lock-overlay img {
  width: 78px;
  margin: 0 auto 18px;
}

.lock-overlay h3 {
  margin-bottom: 8px;
}

.lock-overlay p {
  max-width: 420px;
  margin: 0 auto 22px;
}

.coaching {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 70px;
  align-items: center;
  background:
    radial-gradient(circle at 94% 22%, rgba(89, 183, 98, 0.09), transparent 28%),
    linear-gradient(180deg, var(--mist) 0%, var(--paper) 100%);
}

.coaching-video {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(45, 170, 184, 0.14);
  border-radius: 8px;
  background: var(--ink);
  box-shadow: var(--shadow), var(--brand-glow);
}

.coaching-video img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.large-play {
  left: 50%;
  top: 50%;
  width: 82px;
  height: 82px;
  border: 0;
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.large-play:hover {
  transform: translate(-50%, -50%) scale(1.03);
}

.large-play span {
  border-top-width: 12px;
  border-bottom-width: 12px;
  border-left-width: 18px;
}

.coaching-copy p:not(.eyebrow),
.final-copy p:not(.eyebrow) {
  max-width: 560px;
  color: var(--ink-soft);
  font-size: 1.24rem;
  line-height: 1.56;
}

.hub {
  background: var(--paper);
}

.dashboard-wrap {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(45, 170, 184, 0.14);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow), var(--brand-glow);
}

.dashboard-wrap img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: top center;
}

.callout {
  position: absolute;
  border: 1px solid rgba(45, 170, 184, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--blue-ink);
  padding: 10px 14px;
  font-size: 0.82rem;
  font-weight: 780;
  box-shadow: var(--shadow-small);
  backdrop-filter: blur(16px);
}

.callout-one {
  left: 7%;
  top: 20%;
}

.callout-two {
  right: 11%;
  top: 18%;
}

.callout-three {
  left: 34%;
  bottom: 19%;
}

.callout-four {
  right: 9%;
  bottom: 26%;
}

.year {
  background:
    radial-gradient(circle at 8% 18%, rgba(45, 170, 184, 0.09), transparent 30%),
    var(--mist);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(45, 170, 184, 0.16);
  background: rgba(45, 170, 184, 0.14);
}

.timeline article {
  min-height: 265px;
  background: var(--paper);
  padding: 34px;
  position: relative;
}

.timeline article::before {
  content: "";
  position: absolute;
  left: 34px;
  right: 34px;
  top: 0;
  height: 3px;
  border-radius: 999px;
  background: var(--brand-gradient);
}

.timeline h3 {
  margin: 24px 0 14px;
}

.timeline p {
  margin-bottom: 0;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  background: var(--paper);
}

.benefits article {
  border: 1px solid rgba(45, 170, 184, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(45, 170, 184, 0.06), rgba(255, 255, 255, 0)),
    var(--mist);
  padding: 38px;
}

.benefit-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 999px;
  background: var(--brand-gradient);
  color: var(--paper);
  font-size: 0.9rem;
  font-weight: 820;
}

.benefits h3 {
  margin-top: 20px;
}

.benefits p {
  margin-bottom: 0;
}

.paid-forward {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: 70px;
  align-items: center;
  background:
    radial-gradient(circle at 12% 20%, rgba(45, 170, 184, 0.1), transparent 30%),
    linear-gradient(180deg, var(--paper) 0%, var(--mist) 100%);
}

.paid-forward-copy p:not(.eyebrow) {
  max-width: 640px;
  color: var(--ink-soft);
  font-size: 1.2rem;
  line-height: 1.58;
}

.paid-forward-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(45, 170, 184, 0.16);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow), var(--brand-glow);
  padding: 38px;
}

.paid-forward-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--brand-gradient);
}

.paid-forward-card span {
  display: block;
  color: var(--ink);
  font-size: 1.55rem;
  font-weight: 780;
  line-height: 1.15;
}

.paid-forward-card span + span {
  margin-top: 8px;
}

.paid-forward-card p {
  margin: 28px 0 26px;
  color: var(--ink-soft);
}

.testimonials {
  background: var(--paper);
}

.testimonial-list {
  border-top: 1px solid var(--line);
}

.testimonial-row {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) 250px;
  gap: 26px;
  align-items: start;
  border-bottom: 1px solid var(--line);
  padding: 42px 0;
}

.quote-mark {
  color: var(--green);
  font-family: Georgia, serif;
  font-size: 6rem;
  line-height: 0.72;
}

.testimonial-row p {
  max-width: 720px;
  margin: 0;
  color: var(--ink);
  font-size: 2rem;
  font-weight: 560;
  line-height: 1.2;
}

.testimonial-row strong {
  font-weight: 780;
}

.person {
  display: grid;
  gap: 4px;
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 760;
}

.person strong {
  color: var(--ink);
  font-weight: 820;
}

.person span {
  display: block;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 80px;
  align-items: center;
  background:
    radial-gradient(circle at 84% 15%, rgba(255, 255, 255, 0.22), transparent 25%),
    radial-gradient(circle at 8% 88%, rgba(89, 183, 98, 0.28), transparent 30%),
    linear-gradient(135deg, var(--blue-ink) 0%, var(--blue-deep) 58%, var(--green-deep) 100%);
  color: var(--paper);
}

.final-copy,
.cta-card {
  position: relative;
  z-index: 1;
}

.final-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

.cta-card {
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  padding: 38px;
  box-shadow: var(--shadow);
}

.cta-card::before {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background: var(--brand-gradient);
  margin-bottom: 28px;
}

.cta-mark {
  width: 84px;
  margin-bottom: 24px;
}

.cta-card ul {
  margin: 24px 0 28px;
  padding-left: 20px;
}

.cta-card li {
  margin: 10px 0;
  color: var(--ink-soft);
}

.button-light {
  width: 100%;
  background: var(--brand-gradient);
  color: var(--paper) !important;
  -webkit-text-fill-color: var(--paper) !important;
}

.button-light:hover,
.button-light:focus-visible {
  background: linear-gradient(135deg, var(--blue-deep), var(--blue-ink) 54%, var(--green-deep));
  color: var(--paper) !important;
}

.cta-card small {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  text-align: center;
}

.cta-shape {
  right: -22%;
  top: -58%;
  width: 900px;
  opacity: 0.1;
}

.mobile-sticky-cta {
  display: none;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
}

.video-modal[hidden] {
  display: none;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 13, 14, 0.66);
  backdrop-filter: blur(12px);
}

.video-modal-panel {
  position: relative;
  z-index: 1;
  width: min(1040px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 32px 90px rgba(10, 13, 14, 0.36);
  padding: 20px;
}

.video-modal-panel h2 {
  margin: 0 56px 18px 4px;
  color: var(--ink);
  font-size: 1.3rem;
  line-height: 1.1;
}

.modal-video-frame {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
}

.modal-video-frame img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.modal-close {
  position: absolute;
  right: 16px;
  top: 14px;
  z-index: 2;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  cursor: pointer;
}

.modal-close span {
  position: absolute;
  width: 14px;
  height: 2px;
  border-radius: 99px;
  background: var(--ink);
}

.modal-close span:first-child {
  transform: rotate(45deg);
}

.modal-close span:last-child {
  transform: rotate(-45deg);
}

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

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

@keyframes floatSlow {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -12px;
  }
}

@media (max-width: 1120px) {
  h1 {
    font-size: 4.15rem;
  }

  h2 {
    font-size: 3.45rem;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .resource-stack {
    margin: 0 auto;
  }

  .system-layout,
  .coaching,
  .paid-forward,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .preview-card.wide {
    grid-column: auto;
  }

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

  .steps article:nth-child(2) {
    border-right: 0;
  }

  .steps article:nth-child(1),
  .steps article:nth-child(2) {
    border-bottom: 1px solid var(--line-light);
  }
}

@media (max-width: 900px) {
  :root {
    --gutter: 22px;
  }

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

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    inset: 88px 14px auto;
    display: grid;
    gap: 4px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.96);
    padding: 14px;
    box-shadow: var(--shadow-small);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
    backdrop-filter: blur(18px);
  }

  .nav-links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    padding: 13px 12px;
  }

  .nav-links .nav-cta {
    text-align: center;
  }

  .section-pad {
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .hero {
    padding-top: 108px;
  }

  h1 {
    font-size: 3.5rem;
  }

  h2 {
    font-size: 3rem;
  }

  .split,
  .contrast-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .contrast-arrow {
    transform: rotate(90deg);
  }

  .benefits,
  .preview-grid {
    grid-template-columns: 1fr;
  }

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

  .testimonial-row {
    grid-template-columns: 58px 1fr;
  }

  .person {
    grid-column: 2;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 76px;
  }

  .brand-logo {
    width: 96px;
    height: 58px;
  }

  .section-pad {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .hero {
    min-height: 0;
    padding-top: 100px;
    background:
      radial-gradient(circle at 0 12%, rgba(45, 170, 184, 0.14), transparent 36%),
      radial-gradient(circle at 100% 8%, rgba(89, 183, 98, 0.1), transparent 36%),
      linear-gradient(180deg, var(--paper) 0 62%, var(--mist-deep) 62% 100%);
  }

  h1 {
    font-size: 2.62rem;
  }

  h2 {
    font-size: 2.36rem;
  }

  h3 {
    font-size: 1.22rem;
  }

  .hero-lede,
  .large-copy,
  .coaching-copy p:not(.eyebrow),
  .final-copy p:not(.eyebrow) {
    font-size: 1.05rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .text-link {
    width: auto;
  }

  .trust-row {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 44px;
  }

  .trust-row div,
  .trust-row div:nth-child(2),
  .trust-row div:nth-child(3) {
    text-align: left;
  }

  .resource-stack {
    min-height: 470px;
  }

  .sheet-label {
    display: none;
  }

  .sheet-back {
    width: 92%;
    height: 42%;
    right: 0;
  }

  .sheet-middle {
    width: 52%;
    height: 60%;
    top: 92px;
  }

  .sheet-side {
    width: 46%;
    height: 46%;
    top: 168px;
  }

  .sheet-front {
    width: 76%;
    right: 18px;
    height: 31%;
  }

  .contrast-card {
    min-height: 0;
    padding: 28px;
  }

  .steps,
  .timeline {
    grid-template-columns: 1fr;
  }

  .steps article,
  .steps article:nth-child(2) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
    padding: 30px 0;
  }

  .steps article:last-child {
    border-bottom: 0;
  }

  .system-layout {
    gap: 34px;
  }

  .preview-window {
    padding: 22px;
  }

  .preview-content {
    padding: 0 0 24px;
  }

  .preview-title {
    display: block;
  }

  .preview-title h3 {
    margin-bottom: 14px;
    font-size: 1.48rem;
  }

  .locked-bar {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .locked-bar img {
    width: 42px;
  }

  .agenda-scroll {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 88%;
    gap: 18px;
    max-height: none;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 18px;
    scroll-snap-type: x mandatory;
  }

  .agenda-page {
    width: 100%;
    margin: 0;
    scroll-snap-align: center;
  }

  .lock-overlay {
    position: relative;
    width: 100%;
    min-height: 360px;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    scroll-snap-align: center;
  }

  .lock-overlay::before {
    display: none;
  }

  .dashboard-wrap {
    overflow-x: auto;
  }

  .dashboard-wrap img {
    width: 920px;
    max-width: none;
  }

  .callout {
    display: none;
  }

  .timeline article,
  .benefits article,
  .paid-forward-card,
  .cta-card {
    padding: 28px;
  }

  .paid-forward {
    gap: 34px;
  }

  .paid-forward-card span {
    font-size: 1.32rem;
  }

  .testimonial-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 34px 0;
  }

  .quote-mark {
    font-size: 4.4rem;
  }

  .testimonial-row p {
    font-size: 1.35rem;
  }

  .person {
    grid-column: auto;
  }

  .final-cta {
    gap: 38px;
  }

  .mobile-sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 70;
    display: block;
    padding: 12px 18px 14px;
    border-top: 1px solid rgba(10, 13, 14, 0.1);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 -14px 34px rgba(10, 13, 14, 0.08);
    transform: translateY(110%);
    transition: transform 180ms ease;
    backdrop-filter: blur(18px);
  }

  .mobile-sticky-cta.is-visible {
    transform: translateY(0);
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 2.35rem;
  }

  h2 {
    font-size: 2.08rem;
  }

  .resource-stack {
    min-height: 410px;
  }

  .preview-card img {
    height: 190px;
  }

  .preview-grid.theme-grid {
    grid-template-columns: 1fr;
  }
}

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

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

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

.ooi-oit-shortcode a.button,
.ooi-oit-shortcode a.button:link,
.ooi-oit-shortcode a.button:visited,
.ooi-oit-shortcode a.button:hover,
.ooi-oit-shortcode a.button:focus,
.ooi-oit-shortcode a.button:active,
.ooi-oit-shortcode a.nav-cta,
.ooi-oit-shortcode a.nav-cta:link,
.ooi-oit-shortcode a.nav-cta:visited,
.ooi-oit-shortcode a.nav-cta:hover,
.ooi-oit-shortcode a.nav-cta:focus,
.ooi-oit-shortcode a.nav-cta:active {
  color: #ffffff !important;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", Inter, "Segoe UI", sans-serif !important;
  font-size: 0.95rem !important;
  font-style: normal !important;
  font-weight: 780 !important;
  letter-spacing: 0 !important;
  line-height: 1.2 !important;
  text-align: center !important;
  text-decoration: none !important;
  text-transform: none !important;
  -webkit-text-fill-color: #ffffff !important;
}

.ooi-oit-shortcode a.nav-cta,
.ooi-oit-shortcode a.nav-cta:link,
.ooi-oit-shortcode a.nav-cta:visited,
.ooi-oit-shortcode a.nav-cta:hover,
.ooi-oit-shortcode a.nav-cta:focus,
.ooi-oit-shortcode a.nav-cta:active {
  font-size: 1rem !important;
}
