/*
  Founder-offer preview inserts.
  Every selector is namespaced with `fo-` so the existing Skybike page remains unchanged.
*/

.fo-section,
.fo-section * {
  box-sizing: border-box;
}

.fo-section {
  --fo-black: #080909;
  --fo-orange: #ff6b00;
  --fo-white: #f8f8f6;
  --fo-muted: #a8a8a8;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
}

/*
  Keep every existing content image at its intrinsic aspect ratio.
  The original page used height: 100% for all `.media img` elements, which can
  stretch a landscape asset into a very tall crop when its container grows.
  Hero artwork remains cover-based through its dedicated rules below.
*/
.media {
  width: 100%;
  height: auto;
  min-width: 0;
}

.media > img {
  display: block;
  width: 100%;
  height: auto !important;
  max-height: none;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
}

.feature-media,
.ai-media,
.annotated-media,
.two > .media {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: auto;
}

.video-player {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
}

.reward-visual img {
  max-width: 100%;
  object-fit: contain;
}

.fo-shell {
  position: relative;
  z-index: 2;
  width: min(1540px, calc(100% - 96px));
  margin: 0 auto;
}

.fo-grid-pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .28;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 92px 92px;
}

.fo-founder-hero {
  min-height: calc(100svh - 70px);
  display: grid;
  align-items: center;
  background: var(--fo-black);
  color: var(--fo-white);
}

.fo-founder-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 22%;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(transparent, rgba(0,0,0,.5));
}

.fo-hero-glow {
  position: absolute;
  z-index: 0;
  top: -20%;
  right: -8%;
  width: 42vw;
  height: 42vw;
  border-radius: 50%;
  background: rgba(255,107,0,.28);
  filter: blur(110px);
}

.fo-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(0, 1.16fr);
  gap: clamp(48px, 6vw, 112px);
  align-items: center;
  padding: clamp(58px, 7vh, 96px) 0;
}

.fo-hero-copy {
  padding-left: 12px;
}

.fo-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 34px;
  padding: 11px 16px;
  border: 1px solid rgba(255,107,0,.48);
  border-radius: 7px;
  background: rgba(255,107,0,.045);
  color: #ff7c20;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.fo-badge span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--fo-orange);
  box-shadow: 0 0 18px rgba(255,107,0,.8);
}

.fo-founder-hero h1 {
  max-width: 720px;
  margin: 0 0 30px;
  color: var(--fo-white);
  font-size: clamp(58px, 5.25vw, 92px);
  font-weight: 900;
  line-height: .94;
  letter-spacing: -.065em;
}

.fo-founder-hero h1 em,
.fo-final-cta h2 em {
  color: var(--fo-orange);
  font-style: normal;
}

.fo-hero-subtitle {
  max-width: 690px;
  margin: 0 0 16px;
  color: #f4f4f2;
  font-size: clamp(25px, 2.1vw, 40px);
  font-weight: 820;
  line-height: 1.13;
  letter-spacing: -.045em;
}

.fo-hero-description {
  max-width: 675px;
  margin: 0 0 32px;
  color: #b4b4b4;
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.65;
}

.fo-button {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 68px;
  padding: 0 34px;
  border: 0;
  border-radius: 9px;
  font: inherit;
  font-size: 18px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.fo-button:hover {
  transform: translateY(-2px);
}

.fo-button:focus-visible {
  outline: 3px solid rgba(255,255,255,.95);
  outline-offset: 4px;
}

.fo-button-primary {
  background: var(--fo-orange);
  color: #fff;
  box-shadow: 0 18px 42px rgba(255,107,0,.22);
}

.fo-button-primary:hover {
  background: #ff7a1a;
  box-shadow: 0 22px 50px rgba(255,107,0,.32);
}

.fo-button span {
  padding: 0 10px;
  opacity: .7;
}

.fo-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  margin: 30px 0 0;
  padding: 0;
  color: #d7d7d5;
  list-style: none;
  font-size: 13px;
}

.fo-benefits li {
  margin: 0;
}

.fo-benefits li > span {
  color: var(--fo-orange);
  padding-right: 7px;
  font-weight: 950;
}

.fo-preview-note {
  margin: 18px 0 0;
  color: #717171;
  font-size: 12px;
  letter-spacing: .02em;
}

.fo-product-card {
  position: relative;
  min-height: min(72vh, 760px);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 4px 46px 4px 4px;
  background: #171717;
  box-shadow: 0 38px 90px rgba(0,0,0,.55);
}

.fo-product-card::before {
  content: "";
  position: absolute;
  inset: 20px;
  z-index: 3;
  pointer-events: none;
  border: 1px solid rgba(255,255,255,.28);
}

.fo-product-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
}

.fo-product-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(4,4,4,.72), transparent 46%), linear-gradient(90deg, rgba(0,0,0,.16), transparent 60%);
}

.fo-video-label {
  position: absolute;
  left: 46px;
  bottom: 66px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 18px;
}

.fo-play {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 50%;
  background: var(--fo-orange);
  color: #fff;
  font-size: 16px;
  text-indent: 3px;
}

.fo-video-label small,
.fo-video-label strong {
  display: block;
}

.fo-video-label small {
  margin-bottom: 6px;
  color: #bdbdbd;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.fo-video-label strong {
  color: #fff;
  font-size: 14px;
}

.fo-product-tags {
  position: absolute;
  right: 42px;
  bottom: 31px;
  z-index: 4;
  display: flex;
  gap: 24px;
  margin: 0;
  color: #d4d4d4;
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

/* FAQ: inserted as the third full-screen section overall. */
.fo-faq {
  min-height: 100svh;
  display: grid;
  align-items: center;
  background: #f7f7f6;
  color: #181818;
}

.fo-faq-layout {
  display: grid;
  grid-template-columns: minmax(360px, .86fr) minmax(540px, 1.34fr);
  gap: clamp(64px, 10vw, 180px);
  align-items: center;
  padding: clamp(72px, 10vh, 120px) 0;
}

.fo-kicker {
  margin: 0 0 44px;
  color: var(--fo-orange);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.fo-faq-intro h2 {
  margin: 0 0 30px;
  color: #191919;
  font-size: clamp(70px, 6.3vw, 104px);
  font-weight: 900;
  line-height: .97;
  letter-spacing: -.065em;
}

.fo-faq-intro > p:last-child {
  max-width: 520px;
  margin: 0;
  color: #747474;
  font-size: 18px;
  line-height: 1.7;
}

.fo-accordion {
  border-top: 1px solid #d2d2d0;
}

.fo-accordion details {
  margin: 0;
  border-bottom: 1px solid #d2d2d0;
  background: transparent;
}

.fo-accordion summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 108px;
  padding: 24px 70px 24px 0;
  color: #1b1b1b;
  font-size: clamp(18px, 1.4vw, 23px);
  font-weight: 880;
  line-height: 1.3;
  list-style: none;
  cursor: pointer;
}

.fo-accordion summary::-webkit-details-marker {
  display: none;
}

.fo-accordion summary > span,
.fo-accordion summary > span::after {
  position: absolute;
  right: 10px;
  top: 50%;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--fo-orange);
  content: "";
  transform: translateY(-50%);
  transition: transform .2s ease;
}

.fo-accordion summary > span::after {
  right: 0;
  top: 0;
  transform: rotate(90deg);
}

.fo-accordion details[open] summary > span::after {
  transform: rotate(0deg);
}

.fo-accordion details p {
  max-width: 730px;
  margin: -8px 0 0;
  padding: 0 70px 32px 0;
  color: #666;
  font-size: 16px;
  line-height: 1.7;
}

/* Final founder CTA: placed before the untouched original footer. */
.fo-final-cta {
  min-height: 92svh;
  display: grid;
  place-items: center;
  background: var(--fo-black);
  color: var(--fo-white);
  text-align: center;
}

.fo-final-content {
  position: relative;
  z-index: 3;
  width: min(1260px, calc(100% - 48px));
  padding: 80px 0;
}

.fo-final-content .fo-kicker {
  margin-bottom: 34px;
}

.fo-final-cta h2 {
  max-width: 1160px;
  margin: 0 auto 28px;
  color: #fafaf8;
  font-size: clamp(62px, 7vw, 112px);
  font-weight: 900;
  line-height: .94;
  letter-spacing: -.07em;
}

.fo-final-cta h2 em {
  display: inline-block;
}

.fo-final-content > p:not(.fo-kicker) {
  margin: 0 0 36px;
  color: #9d9d9d;
  font-size: 18px;
}

.fo-benefits-centered {
  justify-content: center;
  margin-top: 30px;
  color: #818181;
  font-size: 12px;
}

.fo-rings,
.fo-rings i {
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.fo-rings {
  z-index: 1;
  width: min(74vw, 820px);
  aspect-ratio: 1;
  border: 1px solid rgba(255,107,0,.23);
}

.fo-rings i {
  display: block;
  border: 1px solid rgba(255,255,255,.055);
}

.fo-rings i:nth-child(1) { width: 78%; height: 78%; }
.fo-rings i:nth-child(2) { width: 58%; height: 58%; border-color: rgba(255,107,0,.13); }
.fo-rings i:nth-child(3) { width: 38%; height: 38%; }
.fo-rings i:nth-child(4) { width: 19%; height: 19%; border-color: rgba(255,107,0,.16); }

/* Local-only reservation message. */
.fo-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(0,0,0,.78);
  backdrop-filter: blur(12px);
}

.fo-modal.is-open {
  display: grid;
}

.fo-modal-card {
  position: relative;
  width: min(580px, 100%);
  padding: 42px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 24px;
  background: #111;
  color: #f8f8f6;
  box-shadow: 0 36px 100px rgba(0,0,0,.55);
}

.fo-modal-card .fo-kicker {
  margin-bottom: 18px;
}

.fo-modal-card h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 38px;
  line-height: 1.04;
}

.fo-modal-card p {
  color: #aaa;
}

.fo-modal-card ul {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.fo-modal-card li {
  padding: 10px 0;
  border-top: 1px solid rgba(255,255,255,.1);
}

.fo-modal-card li::before {
  margin-right: 10px;
  color: var(--fo-orange);
  content: "✓";
}

.fo-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.09);
  color: #fff;
  font-size: 23px;
  cursor: pointer;
}

body.fo-modal-open {
  overflow: hidden;
}

@media (max-width: 1100px) {
  .fo-shell {
    width: min(100% - 48px, 920px);
  }

  .fo-hero-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .fo-founder-hero h1 {
    font-size: clamp(58px, 8vw, 84px);
  }

  .fo-product-card {
    min-height: 58vw;
  }

  .fo-faq-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .fo-faq-intro h2 br {
    display: none;
  }

  .fo-faq-intro h2 {
    font-size: clamp(68px, 9vw, 94px);
  }
}

@media (max-width: 680px) {
  .fo-shell {
    width: calc(100% - 32px);
  }

  .fo-grid-pattern {
    background-size: 54px 54px;
  }

  .fo-hero-layout {
    gap: 34px;
    padding: 52px 0 58px;
  }

  .fo-hero-copy {
    padding-left: 0;
  }

  .fo-badge {
    margin-bottom: 26px;
    padding: 9px 12px;
    font-size: 10px;
  }

  .fo-founder-hero h1 {
    margin-bottom: 24px;
    font-size: clamp(45px, 14vw, 62px);
  }

  .fo-hero-subtitle {
    font-size: 25px;
  }

  .fo-hero-description {
    font-size: 16px;
  }

  .fo-button {
    width: 100%;
    min-height: 62px;
    padding: 0 18px;
    font-size: 16px;
  }

  .fo-benefits {
    display: grid;
    gap: 12px;
    font-size: 13px;
  }

  .fo-product-card {
    min-height: 110vw;
    border-radius: 3px 30px 3px 3px;
  }

  .fo-product-card::before {
    inset: 12px;
  }

  .fo-product-card img {
    object-position: 61% center;
  }

  .fo-video-label {
    left: 26px;
    bottom: 58px;
  }

  .fo-play {
    width: 48px;
    height: 48px;
  }

  .fo-product-tags {
    left: 26px;
    right: auto;
    bottom: 25px;
    gap: 12px;
    font-size: 8px;
  }

  .fo-faq-layout {
    gap: 44px;
    padding: 68px 0;
  }

  .fo-kicker {
    margin-bottom: 26px;
  }

  .fo-faq-intro h2 {
    margin-bottom: 22px;
    font-size: 58px;
  }

  .fo-faq-intro > p:last-child {
    font-size: 16px;
  }

  .fo-accordion summary {
    min-height: 88px;
    padding-right: 48px;
    font-size: 17px;
  }

  .fo-accordion details p {
    padding-right: 20px;
    font-size: 15px;
  }

  .fo-final-cta {
    min-height: 86svh;
  }

  .fo-final-content {
    width: calc(100% - 32px);
  }

  .fo-final-cta h2 {
    font-size: clamp(50px, 14vw, 68px);
  }

  .fo-final-content > p:not(.fo-kicker) {
    font-size: 16px;
    line-height: 1.55;
  }

  .fo-rings {
    width: 138vw;
  }

  .fo-benefits-centered {
    display: flex;
    gap: 12px;
    font-size: 10px;
  }

  .fo-modal-card {
    padding: 36px 24px 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fo-section *,
  .fo-section *::before,
  .fo-section *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
