:root {
  --oklp-orange: #e26009;
  --oklp-orange-dark: #c94e00;
  --oklp-peach: #fdf2eb;
  --oklp-ink: #1a1a1a;
  --oklp-muted: #666;
  --oklp-border: #e8e8e8;
  --oklp-soft: #f4f4f4;
  --oklp-field: #f8f8f7;
  --oklp-navy: #101828;
  --oklp-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --oklp-card-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  --oklp-font-heading: "Baloo 2", "Nunito", system-ui, sans-serif;
  --oklp-font-body: "Nunito", system-ui, sans-serif;
  --oklp-form-control: #fff9f0;
  --oklp-form-border: #ffd60a;
  --oklp-form-shadow: 4px 4px 2px rgba(0, 0, 0, 0.25);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fff;
  color: var(--oklp-ink);
  font-family: var(--oklp-font-body);
  font-size: 16px;
  line-height: 1.5;
}

body.menu-open {
  overflow: hidden;
}

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

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

picture {
  display: block;
}

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

.oklp-form-module {
  padding: 108px 24px 118px;
  background: #fff;
}

.oklp-form-module__inner {
  width: min(100%, 768px);
  margin: 0 auto;
}

.oklp-form-module h2 {
  margin: 0;
  color: var(--oklp-ink);
  font-family: var(--oklp-font-heading);
  font-size: 40px;
  font-weight: 700;
  line-height: 44.44px;
  text-align: center;
}

.oklp-form-module__introduction {
  margin: 12px auto 40px;
  color: var(--oklp-muted);
  font-size: 16px;
  line-height: 28px;
  text-align: center;
}

.oklp-form-module .gform_required_legend,
.oklp-form-module .gfield--type-number .gfield_description:not(.validation_message),
.oklp-form-module .gfield--type-recaptcha > .gfield_label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.oklp-form-module .gform_wrapper[data-form-theme="orbital"] .gform_fields {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
}

.oklp-form-module .gform_wrapper[data-form-theme="orbital"] .gfield {
  grid-column: 1 / -1;
}

.oklp-form-module .gform_wrapper[data-form-theme="orbital"] .gfield_label {
  margin: 0 0 2px;
  color: var(--oklp-ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

.oklp-form-module .gform_wrapper[data-form-theme="orbital"] input[type="text"],
.oklp-form-module .gform_wrapper[data-form-theme="orbital"] input[type="email"],
.oklp-form-module .gform_wrapper[data-form-theme="orbital"] input[type="number"],
.oklp-form-module .gform_wrapper[data-form-theme="orbital"] select,
.oklp-form-module .gform_wrapper[data-form-theme="orbital"] textarea {
  width: 100%;
  min-height: 54px;
  padding: 12px 24px;
  border: 1px solid var(--oklp-form-border);
  border-radius: 36px;
  background-color: var(--oklp-form-control);
  box-shadow: var(--oklp-form-shadow);
  color: var(--oklp-ink);
}

.oklp-form-module .gform_wrapper[data-form-theme="orbital"] select {
  appearance: none;
  padding-right: 52px;
  background-image: linear-gradient(45deg, transparent 50%, var(--oklp-orange) 50%), linear-gradient(135deg, var(--oklp-orange) 50%, transparent 50%);
  background-position: calc(100% - 25px) 24px, calc(100% - 19px) 24px;
  background-repeat: no-repeat;
  background-size: 6px 6px, 6px 6px;
}

.oklp-form-module .gform_wrapper[data-form-theme="orbital"] input:focus-visible,
.oklp-form-module .gform_wrapper[data-form-theme="orbital"] select:focus-visible,
.oklp-form-module .gform_wrapper[data-form-theme="orbital"] textarea:focus-visible,
.oklp-form-module .gform_wrapper[data-form-theme="orbital"] input[type="checkbox"]:focus-visible,
.oklp-form-module .gform_wrapper[data-form-theme="orbital"] input[type="submit"]:focus-visible {
  outline: 3px solid var(--oklp-navy) !important;
  outline-offset: 3px !important;
  box-shadow: 0 0 0 3px var(--oklp-navy) !important;
}

.oklp-form-module .gform_wrapper[data-form-theme="orbital"] .gfield--type-consent {
  margin-top: 6px;
}

.oklp-form-module .gform_wrapper[data-form-theme="orbital"] .gfield--type-consent > .gfield_label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.oklp-form-module .gform_wrapper[data-form-theme="orbital"] .ginput_container_consent {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: start;
  gap: 14px;
}

.oklp-form-module .gform_wrapper[data-form-theme="orbital"] input[type="checkbox"] {
  appearance: none;
  width: 22px;
  height: 22px;
  margin: 0;
  border: 1px solid var(--oklp-form-border);
  border-radius: 50%;
  background: var(--oklp-form-control);
  cursor: pointer;
}

.oklp-form-module .gform_wrapper[data-form-theme="orbital"] input[type="checkbox"]:checked {
  border: 6px solid var(--oklp-form-border);
  background: var(--oklp-orange);
}

.oklp-form-module .gform_wrapper[data-form-theme="orbital"] .gfield--type-radio .gfield_radio {
  display: flex !important;
  flex-flow: row wrap !important;
  min-height: 54px !important;
  align-items: center !important;
  gap: 28px !important;
  padding: 10px 24px !important;
  border: 1px solid var(--oklp-form-border);
  border-radius: 36px;
  background: var(--oklp-form-control);
  box-shadow: var(--oklp-form-shadow);
}

.oklp-form-module .gform_wrapper[data-form-theme="orbital"] .gfield--type-radio .gchoice {
  display: inline-flex !important;
  width: auto !important;
  flex: 0 0 auto !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 8px !important;
}

.oklp-form-module .gform_wrapper[data-form-theme="orbital"] .gfield--type-radio input[type="radio"] {
  width: 20px;
  height: 20px;
  margin: 0;
  accent-color: var(--oklp-orange);
}

.oklp-form-module .gform_wrapper[data-form-theme="orbital"] .gfield_consent_label {
  color: var(--oklp-muted);
  font-size: 14px;
  line-height: 20px;
}

.oklp-form-module .gform_wrapper[data-form-theme="orbital"] .gfield_consent_label a {
  color: var(--oklp-orange);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.oklp-form-module .gform_wrapper[data-form-theme="orbital"] .gform_footer {
  margin: 28px 0 0;
  padding: 0;
}

.oklp-form-module .gform_wrapper[data-form-theme="orbital"] .gform_footer input.gform_button[type="submit"] {
  width: 100% !important;
  inline-size: 100% !important;
  min-height: 60px !important;
  min-block-size: 60px !important;
  height: auto !important;
  block-size: auto !important;
  margin: 0 !important;
  padding: 16px 32px !important;
  padding-block: 16px !important;
  padding-inline: 32px !important;
  border: 0 !important;
  border-radius: 36px !important;
  background: var(--oklp-orange) !important;
  background-color: var(--oklp-orange) !important;
  color: #fff !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  line-height: 24px !important;
  cursor: pointer;
}

.oklp-form-module .gform_wrapper[data-form-theme="orbital"] .gform_footer input.gform_button[type="submit"]:hover {
  background: var(--oklp-orange-dark) !important;
  background-color: var(--oklp-orange-dark) !important;
}

.oklp-form-module .gform_wrapper[data-form-theme="orbital"] .gform_footer input.gform_button[type="submit"][disabled] {
  cursor: wait;
  opacity: 0.72;
}

.oklp-form-module .gform_wrapper[data-form-theme="orbital"] .gfield_error input,
.oklp-form-module .gform_wrapper[data-form-theme="orbital"] .gfield_error select,
.oklp-form-module .gform_wrapper[data-form-theme="orbital"] .gfield_error textarea {
  border-color: #b42318;
}

.oklp-form-module .gform_wrapper[data-form-theme="orbital"] .gform_validation_errors,
.oklp-form-module .gform_wrapper[data-form-theme="orbital"] .validation_message,
.oklp-form-module .gform_wrapper[data-form-theme="orbital"] .gform_submission_error {
  color: #8f130c;
  font-weight: 700;
}

.oklp-form-module .gform_wrapper[data-form-theme="orbital"] .gform_validation_errors {
  margin: 0 0 24px;
  padding: 16px 20px;
  border: 2px solid #b42318;
  border-radius: 16px;
  background: #fff1f0;
}

.oklp-form-module .gform_confirmation_message {
  padding: 24px;
  border-left: 5px solid var(--oklp-orange);
  border-radius: 12px;
  background: var(--oklp-peach);
  font-size: 18px;
  line-height: 28px;
}

.oklp-form-module__editor-notice {
  padding: 16px;
  border: 2px solid #b42318;
  border-radius: 12px;
  background: #fff1f0;
}

@media (max-width: 768px) {
  .oklp-form-module {
    padding: 64px 20px;
  }

  .oklp-form-module h2 {
    font-size: 32px;
    line-height: 40px;
  }

  .oklp-form-module__introduction {
    margin-bottom: 32px;
  }

  .oklp-form-module .gform_wrapper[data-form-theme="orbital"] input[type="text"],
  .oklp-form-module .gform_wrapper[data-form-theme="orbital"] input[type="email"],
  .oklp-form-module .gform_wrapper[data-form-theme="orbital"] input[type="number"],
  .oklp-form-module .gform_wrapper[data-form-theme="orbital"] select,
  .oklp-form-module .gform_wrapper[data-form-theme="orbital"] textarea {
    min-height: 52px;
    padding-right: 20px;
    padding-left: 20px;
  }
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 16px 32px;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 700;
  line-height: 1.25;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button--primary {
  background: var(--oklp-orange);
  color: #fff;
}

.button--primary:hover,
.button--primary:focus-visible {
  box-shadow: 0 14px 30px -18px var(--oklp-orange-dark);
}

.button--outline {
  border-color: var(--oklp-orange);
  color: var(--oklp-orange);
}

.button--light {
  min-height: 40px;
  padding: 12px 22px;
  background: #fff;
  color: var(--oklp-orange);
}

.mobile-copy,
.intro-copy__mobile {
  display: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--oklp-orange);
}

.site-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 160px, 1280px);
  min-height: 88px;
  margin: 0 auto;
  padding: 16px;
}

.site-header__logo {
  position: relative;
  z-index: 22;
  display: block;
  width: 148px;
  height: 148px;
  margin-top: 18px;
  margin-bottom: -58px;
  border-radius: 999px;
}

.site-header__logo:focus-visible {
  outline: 4px solid #fff;
  outline-offset: 4px;
}

.site-header__logo picture {
  width: 100%;
  height: 100%;
}

.site-header__logo img {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  filter: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.18));
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-header__toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 44px;
  padding: 8px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.site-header__bar {
  display: block;
  width: 22px;
  height: 3px;
  border-radius: 999px;
  background: #fff;
}

.site-header__menu {
  position: fixed;
  top: 88px;
  right: 0;
  display: block;
  width: min(350px, calc(100vw - 24px));
  border-left: 4px solid var(--oklp-orange);
  background: transparent;
  opacity: 0;
  pointer-events: none;
  transform: translateX(24px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.site-header__menu[hidden] {
  display: none;
}

.site-header__menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.site-nav {
  display: grid;
  gap: 0;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #4d546c;
  font-weight: 700;
}

.site-nav a {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 72px;
  padding: 0 44px;
  background: #fff;
  transition: background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav .current-menu-item a,
.site-nav .current_page_item a,
.site-nav .current_page_parent a,
.site-nav .current-menu-ancestor a {
  background: #fff7ef;
  color: var(--oklp-orange);
}

.site-nav a:focus-visible {
  position: relative;
  z-index: 1;
  outline: 3px solid var(--oklp-orange);
  outline-offset: -3px;
}

.site-header__close {
  display: none;
}

.section {
  padding: 96px 80px;
}

.section__inner {
  width: min(100%, 1280px);
  margin: 0 auto;
}

.section__inner--narrow {
  width: min(100%, 1024px);
}

.section-heading {
  display: grid;
  gap: 16px;
  justify-items: center;
  margin-bottom: 48px;
  text-align: center;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--oklp-font-heading);
  font-weight: 700;
  letter-spacing: 0;
  color: var(--oklp-ink);
}

p {
  margin: 0;
}

.hero {
  padding: 80px 80px 48px;
}

.hero__inner {
  display: grid;
  justify-items: center;
  gap: 32px;
  width: min(100%, 896px);
  min-height: 284px;
  margin: 0 auto;
  text-align: center;
}

.launch-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--oklp-peach);
  color: var(--oklp-orange);
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

.launch-badge span {
  display: grid;
  place-items: center;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: var(--oklp-orange);
  color: #fff;
  font-size: 12px;
  line-height: 1;
}

.hero h1,
.about-hero h1,
.support-hero h1 {
  width: min(682px, calc(100% - 38px));
  max-width: none;
  margin-right: auto;
  margin-left: auto;
  font-size: 72px;
  line-height: 72px;
  letter-spacing: -1.8px;
  text-align: center;
  text-rendering: geometricPrecision;
  transform: none;
}

.hero h1 span,
.about-hero h1 span,
.support-hero h1 span {
  display: inline;
  color: var(--oklp-orange);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.intro-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 1fr);
  gap: 64px;
  align-items: center;
}

.intro-copy {
  display: grid;
  gap: 24px;
  max-width: 608px;
}

.intro-copy__desktop {
  display: grid;
  gap: 24px;
}

.intro-copy h2,
.section-heading h2 {
  font-size: 48px;
  line-height: 1;
}

.intro-copy p,
.section-heading p {
  color: var(--oklp-muted);
  font-size: 20px;
  line-height: 1.4;
}

.intro-copy__punch {
  padding-top: 16px;
  color: var(--oklp-ink) !important;
  font-size: 24px !important;
  font-weight: 700;
}

.phone-preview {
  display: flex;
  justify-content: center;
}

.phone-preview__shell {
  position: relative;
  width: 240px;
  padding: 8px;
  border-radius: 40px;
  background: #fff;
  box-shadow: inset 0 0 0 8px var(--oklp-navy), var(--oklp-shadow);
}

.phone-preview__shell::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 96px;
  height: 20px;
  border-radius: 0 0 32px 32px;
  background: var(--oklp-navy);
  transform: translateX(-50%);
  z-index: 2;
}

.phone-preview__shell img {
  width: 100%;
  aspect-ratio: 9 / 19;
  border-radius: 28px;
  object-fit: cover;
}

.video-section {
  padding-left: 208px;
  padding-right: 208px;
}

.video-card {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  min-height: 576px;
  border: 1px solid var(--oklp-border);
  border-radius: 24px;
  background: var(--oklp-soft);
  box-shadow: var(--oklp-shadow);
}

.video-card picture,
.video-card img,
.video-card iframe,
.video-card video,
.video-card__overlay,
.support-video__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.video-card img,
.video-card iframe,
.video-card video {
  border: 0;
  object-fit: cover;
}

.video-card iframe,
.video-card video {
  background: #000;
}

.video-card__overlay,
.support-video__overlay {
  background: rgba(0, 0, 0, 0.3);
}

.video-card__play,
.support-video__play {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.video-card__play::before,
.support-video__play::before {
  content: "";
  width: 40px;
  height: 40px;
  background: url("data:image/svg+xml,%3Csvg%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpolygon%20points%3D%276%203%2020%2012%206%2021%206%203%27%20stroke%3D%27%23e26009%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27/%3E%3C/svg%3E") center / contain no-repeat;
}

.features-section,
.join-section {
  background: var(--oklp-soft);
}

.features-section .section-heading {
  margin-bottom: 64px;
}

.marketing-home {
  position: relative;
  --home-hero-intro-rhythm: clamp(64px, 6.667vw, 96px);
}

.marketing-home .hero {
  padding-bottom: var(--home-hero-intro-rhythm);
}

.marketing-home .intro-section {
  padding-top: var(--home-hero-intro-rhythm);
}

.marketing-home .hero__actions .button {
  max-width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px;
  min-height: 248px;
  align-items: start;
}

.feature-card,
.join-card,
.post-card {
  border: 1px solid var(--oklp-border);
  background: #fff;
  box-shadow: var(--oklp-card-shadow);
}

.feature-card {
  display: grid;
  justify-items: center;
  gap: 12px;
  min-height: 236px;
  padding: 33px;
  border-radius: 32px;
  text-align: center;
}

.feature-card__icon {
  width: 40px;
  height: 40px;
}

.oklp-card-icon {
  display: grid;
  place-items: center;
}

.oklp-card-icon img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.feature-card h3,
.join-card h3 {
  font-size: 24px;
  line-height: 1.25;
}

.feature-card p,
.join-card p,
.post-card p {
  color: var(--oklp-muted);
}

.join-section {
  border-top: 1px solid var(--oklp-border);
  padding-bottom: 104px;
}

.join-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.join-card {
  position: relative;
  display: flex;
  min-height: 476px;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  padding: 42px;
  border-radius: 48px;
  text-align: center;
}

.join-card--featured {
  border: 2px solid var(--oklp-orange);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.join-card__ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  padding: 4px 16px;
  border-radius: 999px;
  background: var(--oklp-orange);
  color: #fff !important;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  white-space: nowrap;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.join-card__icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin: 0 auto;
  border-radius: 999px;
  background: var(--oklp-peach);
  color: transparent;
  font-size: 0;
}

.join-card__icon img {
  width: 28px;
  height: 28px;
}

.newsletter-form {
  display: grid;
  gap: 16px;
}

.newsletter-form input {
  width: 100%;
  min-height: 58px;
  border: 1px solid var(--oklp-border);
  border-radius: 32px;
  background: var(--oklp-field);
  padding: 17px;
  color: var(--oklp-ink);
}

.newsletter-form input::placeholder {
  color: var(--oklp-muted);
}

.price {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: center;
  gap: 2px 4px;
}

.price strong {
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
}

.price span {
  color: var(--oklp-muted);
  font-size: 20px;
  line-height: 1.4;
}

.price small {
  flex-basis: 100%;
  color: var(--oklp-muted);
  font-size: 18px;
  font-weight: 700;
}

.site-footer {
  border-top: 3px solid var(--oklp-orange);
  background: #fff;
  color: var(--oklp-muted);
  padding: 0 80px;
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: min(100%, 1280px);
  min-height: 117px;
  margin: 0 auto;
  padding: 48px 24px;
  border-top: 1px solid var(--oklp-border);
  font-size: 14px;
}

.site-footer__nav {
  min-width: 0;
}

.site-footer__links,
.site-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 32px;
  font-weight: 700;
}

.site-footer__links {
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--oklp-ink);
}

.site-footer__social,
.site-footer__copy {
  color: var(--oklp-muted);
}

.archive-hero,
.content-page,
.single-post-page {
  background: #fff;
  padding: 80px 20px 96px;
}

.archive-hero__inner,
.content-page__article,
.single-post-page__article {
  width: min(100%, 1024px);
  margin: 0 auto;
}

.archive-hero__inner,
.content-page__article header,
.single-post-page__article header {
  display: grid;
  justify-items: start;
  gap: 24px;
}

.archive-hero h1,
.content-page h1,
.single-post-page h1 {
  font-size: 64px;
  line-height: 1;
}

.archive-hero p,
.content-page__body,
.single-post-page__body {
  color: var(--oklp-muted);
  font-size: 20px;
  line-height: 1.6;
}

.article-header__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 320px);
  align-items: end;
  gap: 48px;
  width: 100%;
}

.article-header__row h1 {
  min-width: 0;
  overflow-wrap: anywhere;
}

.article-header__byline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  min-width: 0;
  margin: 0;
  padding-bottom: 8px;
  color: var(--oklp-muted);
  font-size: 14px;
  line-height: 20px;
  text-align: right;
}

.article-header__author {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  max-width: 100%;
  color: var(--oklp-ink);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.article-header__author > span:last-child {
  min-width: 0;
  overflow-wrap: anywhere;
}

.post-author-badge {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border-radius: 999px;
}

.post-author-badge--initials {
  display: inline-grid;
  place-items: center;
  background: var(--oklp-peach);
  color: var(--oklp-orange);
  font-size: 12px;
  font-weight: 800;
}

.post-author-badge--image {
  display: block;
  object-fit: cover;
}

.article-header__separator {
  color: var(--oklp-border);
}

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

.post-card {
  overflow: hidden;
  border-radius: 24px;
}

.post-card__image {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--oklp-soft);
}

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

.post-card__image span {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--oklp-peach);
  color: var(--oklp-orange);
  font-size: 13px;
  font-weight: 800;
}

.post-card__body {
  display: grid;
  gap: 12px;
  padding: 24px;
}

.post-card h2 {
  font-size: 26px;
  line-height: 1.15;
}

.post-card__meta {
  font-size: 14px;
  font-weight: 800;
}

.post-card__meta b {
  color: var(--oklp-border);
}

.content-page__body,
.single-post-page__body {
  margin-top: 40px;
}

.single-post-page__body > * {
  margin-bottom: 0;
}

.single-post-page__body {
  overflow-wrap: anywhere;
}

.single-post-page__body > * + * {
  margin-top: 24px;
}

.single-post-page__body > * + h2,
.single-post-page__body > * + h3,
.single-post-page__body > * + h4,
.single-post-page__body > * + h5,
.single-post-page__body > * + h6 {
  margin-top: 40px;
}

.single-post-page__body > h2 + *,
.single-post-page__body > h3 + *,
.single-post-page__body > h4 + *,
.single-post-page__body > h5 + *,
.single-post-page__body > h6 + * {
  margin-top: 16px;
}

.single-post-page__body > .wp-block-spacer,
.single-post-page__body > .wp-block-spacer + * {
  margin-top: 0;
}

.single-post-page__body > :first-child {
  margin-top: 0;
}

.single-post-page__body > :last-child {
  margin-bottom: 0;
}

.content-page__cta {
  margin-top: 40px;
}

.legal-copy {
  color: var(--oklp-muted);
}

.legal-policy {
  width: 100%;
  overflow-wrap: anywhere;
}

.content-page--legal {
  padding: 0 0 96px;
}

.legal-policy__hero {
  padding: 128px 24px 64px;
  border-bottom: 1px solid var(--oklp-border);
  background: rgba(253, 242, 235, 0.3);
}

.legal-policy__hero-inner {
  display: grid;
  gap: 16px;
  width: min(100%, 896px);
  margin: 0 auto;
}

.legal-policy__hero h1 {
  padding-top: 8px;
  margin: 0;
  font-size: 64px;
  line-height: 80px;
}

.legal-policy__intro {
  display: grid;
  gap: 0;
  max-width: 672px;
  color: var(--oklp-muted);
  font-size: 18px;
  line-height: 28px;
}

.legal-policy__intro > * {
  margin: 0;
}

.legal-policy__date {
  display: flex;
  gap: 12px;
  align-items: center;
  padding-top: 8px;
  margin: 0;
  color: var(--oklp-muted);
  font-size: 14px;
  line-height: 20px;
}

.legal-policy__date-icon {
  display: inline-flex;
  flex: 0 0 16px;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
}

.legal-policy__date-icon svg {
  width: 14px;
  height: 15.332px;
  fill: none;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.legal-policy__date-dot {
  width: 4px;
  height: 4px;
  margin: 0 4px;
  border-radius: 999px;
  background: var(--oklp-border);
}

.legal-policy__layout {
  display: grid;
  grid-template-columns: 224px minmax(0, 1fr);
  gap: 64px;
  width: min(100% - 48px, 896px);
  margin: 0 auto;
  padding: 64px 24px;
}

.legal-policy__contents {
  align-self: start;
  padding: 21px;
  border: 1px solid var(--oklp-border);
  border-radius: 24px;
  background: rgba(244, 244, 244, 0.2);
}

.legal-policy__contents > strong {
  display: block;
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
  line-height: 16px;
  text-transform: uppercase;
}

.legal-policy__contents ol {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.legal-policy__contents a {
  display: block;
  padding: 4px 0 4px 14px;
  border-left: 2px solid var(--oklp-border);
  color: var(--oklp-muted);
  font-size: 14px;
  line-height: 20px;
}

.legal-policy__contents a:hover,
.legal-policy__contents a:focus-visible,
.legal-policy__contents a[aria-current="location"] {
  border-left-color: var(--oklp-orange);
  color: var(--oklp-orange);
}

.legal-policy__contents a:focus-visible,
.legal-policy__section-heading h2:focus-visible,
.legal-policy__table-wrap:focus-visible {
  outline: 3px solid var(--oklp-orange);
  outline-offset: 3px;
}

.legal-policy__sections {
  display: grid;
  gap: 48px;
  min-width: 0;
}

.legal-policy__section {
  display: grid;
  gap: 16px;
}

.legal-policy__section-heading {
  display: flex;
  gap: 12px;
  align-items: center;
  padding-bottom: 13px;
  border-bottom: 1px solid var(--oklp-border);
}

.legal-policy__section-heading > span {
  display: inline-flex;
  flex: 0 0 32px;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--oklp-orange);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

.legal-policy__section-heading h2 {
  margin: 0;
  scroll-margin-top: 144px;
  font-size: 24px;
  line-height: 32px;
}

.legal-policy__section-body,
.legal-policy__rich-text,
.legal-policy__callout {
  display: grid;
  gap: 16px;
  min-width: 0;
  color: var(--oklp-muted);
  font-size: 16px;
  line-height: 26px;
}

.legal-policy__rich-text > *,
.legal-policy__callout > * {
  margin: 0;
}

.legal-policy__rich-text h3,
.legal-policy__callout h3 {
  color: var(--oklp-ink);
  font-size: 18px;
  line-height: 26px;
}

.legal-policy__rich-text ul,
.legal-policy__rich-text ol,
.legal-policy__callout ul,
.legal-policy__callout ol {
  display: grid;
  gap: 8px;
  padding-left: 24px;
}

.legal-policy__rich-text a,
.legal-policy__callout a,
.legal-policy__identity a {
  color: var(--oklp-orange-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-policy__callout {
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 12px;
  padding: 17px 21px;
  border: 1px solid var(--oklp-peach);
  border-radius: 48px;
  background: rgba(253, 242, 235, 0.4);
  color: var(--oklp-ink);
  font-size: 14px;
  font-weight: 500;
  line-height: 22.75px;
}

.legal-policy__callout::before {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M18.108 15 11.442 3.333a1.667 1.667 0 0 0-2.9 0L1.875 15a1.667 1.667 0 0 0 1.458 2.5h13.334A1.667 1.667 0 0 0 18.108 15ZM10 7.5v3.333m0 3.334h.008' stroke='%23E26009' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  content: "";
}

.legal-policy__callout > * {
  grid-column: 2;
}

.legal-policy__callout--important {
  border-left: 4px solid var(--oklp-orange);
}

.legal-policy__table-wrap {
  max-width: 100%;
  overflow-x: auto;
  border: 1px solid var(--oklp-border);
  border-radius: 16px;
}

.legal-policy__table-wrap table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
}

.legal-policy__table-wrap caption {
  padding: 16px;
  color: var(--oklp-ink);
  font-family: var(--oklp-font-heading);
  font-size: 18px;
  font-weight: 700;
  text-align: left;
}

.legal-policy__table-wrap th,
.legal-policy__table-wrap td {
  padding: 12px 16px;
  border-top: 1px solid var(--oklp-border);
  border-right: 1px solid var(--oklp-border);
  text-align: left;
  vertical-align: top;
}

.legal-policy__table-wrap th:last-child,
.legal-policy__table-wrap td:last-child {
  border-right: 0;
}

.legal-policy__table-wrap th {
  background: var(--oklp-peach);
  color: var(--oklp-ink);
}

.legal-policy__identity {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.legal-policy__identity > div {
  display: grid;
  gap: 8px;
  padding: 17px;
  border: 1px solid var(--oklp-border);
  border-radius: 24px;
  background: rgba(244, 244, 244, 0.3);
}

.legal-policy__identity strong {
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--oklp-orange);
  font-size: 12px;
  letter-spacing: 0.6px;
  line-height: 16px;
  text-transform: uppercase;
}

.legal-policy__identity > div strong::before {
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
}

.legal-policy__identity > div:first-child strong::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 15.334 12.667' fill='none'%3E%3Cpath d='m14.334 3-5.995 3.818a1.333 1.333 0 0 1-1.339 0L1 3M2.333 1H13a1.333 1.333 0 0 1 1.334 1.333v8A1.333 1.333 0 0 1 13 11.667H2.333A1.333 1.333 0 0 1 1 10.333v-8A1.333 1.333 0 0 1 2.333 1Z' stroke='%23E26009' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.legal-policy__identity > div:nth-child(2) strong::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 15.334 14.001' fill='none'%3E%3Cpath d='M6.334 7h2.667M6.334 4.334h2.667M9.001 13v-2a1.333 1.333 0 0 0-2.667 0v2M3.667 5.666H2.333A1.333 1.333 0 0 0 1 7v4.666A1.333 1.333 0 0 0 2.333 13H13a1.333 1.333 0 0 0 1.333-1.334V5A1.333 1.333 0 0 0 13 3.666h-1.333M3.667 13V2.333A1.333 1.333 0 0 1 5 1h5.334a1.333 1.333 0 0 1 1.333 1.333V13' stroke='%23E26009' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.legal-policy__identity span,
.legal-policy__identity a {
  color: var(--oklp-ink);
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}

.legal-policy__editor-warning {
  width: min(100% - 40px, 896px);
  margin: 64px auto;
  padding: 24px;
  border: 2px solid var(--oklp-orange);
  border-radius: 16px;
}

@media (max-width: 840px) {
  .legal-policy__hero {
    min-height: 0;
    padding: 72px 20px 41px;
  }

  .legal-policy__hero-inner {
    gap: 10.8px;
    width: min(100%, 335px);
  }

  .content-page--legal .legal-policy__hero h1 {
    padding-top: 5.2px;
    font-size: 40px;
    line-height: 50px;
    text-align: center;
  }

  .legal-policy__intro {
    display: block;
    font-size: 14px;
    line-height: 22.75px;
  }

  .legal-policy__intro > * {
    display: inline;
  }

  .legal-policy__intro > * + *::before {
    content: " ";
  }

  .legal-policy__date {
    gap: 6px;
    padding-top: 5.2px;
    font-size: 12px;
    line-height: 16px;
  }

  .legal-policy__date-icon {
    flex-basis: 13px;
    width: 13px;
    height: 13px;
  }

  .legal-policy__date-icon svg {
    width: 11.375px;
    height: 12.458px;
  }

  .legal-policy__date-dot {
    display: none;
  }

  .legal-policy__layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
    width: 100%;
    padding: 0 20px 64px;
  }

  .legal-policy__contents {
    margin: 0 -20px;
    padding: 40px 20px;
    border-width: 1px 0;
    border-radius: 0;
    background: rgba(253, 242, 235, 0.3);
  }

  .legal-policy__identity {
    grid-template-columns: minmax(0, 1fr);
  }

  .legal-policy__section-heading {
    align-items: flex-start;
  }

  .legal-policy__section-heading h2 {
    font-size: 22px;
    line-height: 30px;
  }
}

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

.single-post-page__article .article-header > img {
  width: 100%;
  max-height: 560px;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: var(--oklp-shadow);
}

.single-post-page__cta {
  display: grid;
  gap: 20px;
  justify-items: center;
  margin-top: 56px;
  padding: 36px;
  border: 2px solid var(--oklp-orange);
  border-radius: 32px;
  text-align: center;
}

.single-post-page__cta p {
  color: var(--oklp-ink);
  font-family: var(--oklp-font-heading);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.1;
}

.empty-state {
  color: var(--oklp-muted);
  text-align: center;
}

.about-hero,
.support-hero {
  padding: 88px 208px 64px;
}

.about-hero__inner,
.support-hero__inner {
  display: grid;
  gap: 24px;
  justify-items: center;
  width: min(100%, 1024px);
  margin: 0 auto;
  text-align: center;
}

.support-hero__inner > p {
  max-width: 672px;
  color: var(--oklp-muted);
  font-size: 18px;
  line-height: 28px;
}

.about-story {
  width: 100%;
  margin-top: 8px;
  padding: 54px 48px 64px;
  border: 1px solid var(--oklp-border);
  border-radius: 24px;
  background: var(--oklp-soft);
  box-shadow: var(--oklp-card-shadow);
  text-align: left;
}

.about-story__body {
  display: grid;
  gap: 24px;
  color: var(--oklp-muted);
  font-size: 20px;
  line-height: 28px;
}

.about-story__body strong {
  color: var(--oklp-orange-dark);
}

.crew-section {
  padding-top: 64px;
}

.crew-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
}

.crew-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 508px;
  padding: 7.5px 8.5px;
  border: 2px solid var(--oklp-border);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--oklp-card-shadow);
  text-align: center;
  text-rendering: geometricPrecision;
}

.crew-card__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  min-height: 485px;
  padding: 10px 10px 11px;
  border: 2px solid rgba(201, 78, 0, 0.5);
  border-radius: 18px;
  background: #fff;
}

.crew-card__inner img {
  width: 128px;
  height: 128px;
  margin-bottom: 13px;
  padding: 4px;
  border: 4px solid var(--oklp-peach);
  border-radius: 999px;
  object-fit: cover;
}

.crew-card h3 {
  margin-bottom: 4px;
  font-size: 24px;
  line-height: 32px;
}

.crew-card__age {
  align-self: center;
  width: max-content;
  margin-bottom: 24px;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--oklp-peach);
  color: var(--oklp-orange);
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

.crew-card__notes {
  display: grid;
  gap: 16px;
  width: 100%;
  text-align: left;
}

.crew-card__notes section {
  display: grid;
  gap: 8px;
  padding: 16px;
  border-radius: 0;
  background: transparent;
}

.crew-card__notes h4 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--oklp-orange);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.7px;
  line-height: 20px;
  text-transform: uppercase;
}

.crew-card__notes h4::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background: url("data:image/svg+xml,%3Csvg%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M19.5%2012.6%2012%2020l-7.5-7.4A5%205%200%201%201%2012%206a5%205%200%201%201%207.5%206.6Z%27%20stroke%3D%27%23e26009%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27/%3E%3C/svg%3E") center / contain no-repeat;
}

.crew-card__notes section:last-child h4 {
  color: var(--oklp-ink);
}

.crew-card__notes section:last-child h4::before {
  background-image: url("data:image/svg+xml,%3Csvg%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M10%2015v4a3%203%200%200%200%203%203l4-9V2H5.7a2%202%200%200%200-2%201.7l-1.38%209A2%202%200%200%200%204.3%2015H10Zm7-13h2.7A2.3%202.3%200%200%201%2022%204.3v6.4a2.3%202.3%200%200%201-2.3%202.3H17%27%20stroke%3D%27%231a1a1a%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27/%3E%3C/svg%3E");
}

.crew-card__notes section:last-child p {
  max-width: 219px;
}

.crew-card__notes p {
  color: var(--oklp-muted);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.support-video {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  width: 100%;
  min-height: 512px;
  border: 1px solid var(--oklp-border);
  border-radius: 24px;
  background: var(--oklp-soft);
  box-shadow: var(--oklp-shadow);
}

.support-video img,
.support-video iframe,
.support-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.faq-section {
  padding: 64px 272px;
  background: var(--oklp-soft);
}

.faq-section__inner {
  display: grid;
  gap: 40px;
  width: min(100%, 896px);
  margin: 0 auto;
}

.faq-section h2,
.support-contact h2,
.blog-past h2 {
  font-size: 40px;
  line-height: 44px;
  text-align: center;
}

.faq-groups {
  display: grid;
  gap: 48px;
}

.faq-group {
  display: grid;
  gap: 24px;
}

.faq-group h3 {
  padding-bottom: 9px;
  border-bottom: 1px solid var(--oklp-border);
  font-family: var(--oklp-font-body);
  font-size: 24px;
  font-weight: 800;
  line-height: 32px;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  border: 1px solid var(--oklp-border);
  border-radius: 24px;
  background: #fff;
  box-shadow: 4px 4px 2px rgba(0, 0, 0, 0.15);
}

.faq-item[hidden] {
  display: none;
}

.faq-item summary {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 24px;
  color: var(--oklp-ink);
  font-weight: 800;
  cursor: pointer;
}

.faq-item summary::marker {
  content: "";
}

.faq-item summary::before {
  content: "?";
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border: 2px solid var(--oklp-orange);
  border-radius: 999px;
  color: var(--oklp-orange);
  font-size: 12px;
  line-height: 1;
}

.faq-item__answer {
  padding: 0 56px 24px;
  color: var(--oklp-muted);
}

.faq-group__more {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 9px 18px;
  border: 0;
  border-radius: 999px;
  background: var(--oklp-peach);
  color: var(--oklp-orange);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.faq-group__more::after {
  content: "";
  width: 12px;
  height: 12px;
  background: url("data:image/svg+xml,%3Csvg%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27m6%209%206%206%206-6%27%20stroke%3D%27%23e26009%27%20stroke-width%3D%272.5%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27/%3E%3C/svg%3E") center / contain no-repeat;
}

.faq-group__more[aria-expanded="true"]::after {
  transform: rotate(180deg);
}

.support-contact {
  padding: 80px 272px;
}

.support-contact__inner {
  display: grid;
  gap: 16px;
  justify-items: center;
  width: min(100%, 896px);
  margin: 0 auto;
  text-align: center;
}

.support-contact__inner > p {
  color: var(--oklp-muted);
  font-size: 18px;
}

.support-contact-card {
  display: grid;
  justify-items: center;
  gap: 8px;
  width: 100%;
  margin-top: 24px;
  padding: 32px;
  border: 1px solid var(--oklp-peach);
  border-radius: 24px;
  background: var(--oklp-peach);
}

.support-contact-card__icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--oklp-card-shadow);
}

.support-contact-card__icon img {
  width: 32px;
  height: 32px;
}

.support-contact-card h3 {
  font-size: 24px;
  line-height: 32px;
}

.support-contact-card p {
  color: var(--oklp-muted);
}

.support-contact-card a {
  color: var(--oklp-orange);
  font-size: 18px;
  font-weight: 800;
}

.blog-feature {
  padding: 64px 80px 48px;
}

.blog-feature__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-template-areas:
    "image badge"
    "image copy";
  gap: 32px 64px;
  align-items: center;
  width: min(100%, 1280px);
  margin: 0 auto;
}

.blog-feature .launch-badge {
  grid-area: badge;
  justify-self: end;
}

.blog-feature__image {
  position: relative;
  grid-area: image;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--oklp-border);
  border-radius: 32px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

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

.blog-feature__image span {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--oklp-orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.blog-feature__copy {
  display: grid;
  grid-area: copy;
  gap: 24px;
}

.blog-feature__copy h1 {
  font-size: 64px;
  line-height: 80px;
}

.blog-feature__copy > p {
  color: var(--oklp-muted);
  font-size: 20px;
  line-height: 32px;
}

.blog-past {
  padding: 64px 80px;
  background: var(--oklp-soft);
}

.blog-past__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
}

.blog-past__header h2 {
  text-align: left;
}

.blog-past__header p {
  margin-top: 16px;
  color: var(--oklp-muted);
  font-size: 18px;
  line-height: 28px;
}

.blog-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.blog-filters a {
  padding: 9px 17px;
  border: 1px solid var(--oklp-border);
  border-radius: 999px;
  background: #fff;
  color: var(--oklp-ink);
  font-size: 14px;
  font-weight: 800;
}

.blog-filters a.is-active,
.blog-filters a:focus-visible {
  border-color: var(--oklp-orange);
  background: var(--oklp-orange);
  color: #fff;
}

.blog-filters a:focus-visible {
  outline: 3px solid var(--oklp-ink);
  outline-offset: 3px;
}

.blog-past__empty {
  padding: 48px 24px;
  border: 1px solid var(--oklp-border);
  border-radius: 24px;
  background: #fff;
}

.blog-pagination {
  margin-top: 40px;
}

.blog-pagination .page-numbers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.blog-pagination a,
.blog-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 8px 14px;
  border: 1px solid var(--oklp-border);
  border-radius: 999px;
  background: #fff;
  font-weight: 800;
}

.blog-pagination .current,
.blog-pagination a:hover,
.blog-pagination a:focus-visible {
  border-color: var(--oklp-orange);
  background: var(--oklp-orange);
  color: #fff;
}

.blog-pagination a:focus-visible {
  outline: 3px solid var(--oklp-ink);
  outline-offset: 3px;
}

.post-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

@media (min-width: 841px) {
  .single-post-page {
    padding-top: 136px;
  }

  .blog-feature {
    padding-top: 144px;
  }

  .site-header__inner {
    justify-content: flex-end;
    width: 1120px;
    max-width: calc(100% - 320px);
    padding: 16px;
  }

  .site-header__logo {
    position: absolute;
    top: 4px;
    left: -41px;
    width: 210px;
    height: 210px;
    margin: 0;
  }

  .site-header__logo img {
    filter: drop-shadow(4px 4px 4px rgba(0, 0, 0, 0.25));
  }

  .site-header__menu {
    right: 147px;
    width: 375px;
    border-left: 0;
  }

  .site-nav {
    justify-items: end;
    gap: 0;
  }

  .site-nav li {
    width: 243px;
  }

  .site-nav a {
    width: 243px;
    min-height: 60px;
    padding: 0 32px;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible,
  .site-nav .current-menu-item a,
  .site-nav .current_page_item a,
  .site-nav .current_page_parent a,
  .site-nav .current-menu-ancestor a {
    border-left: 4px solid var(--oklp-orange);
  }

  .hero {
    padding-bottom: 96px;
  }

  .hero__inner {
    gap: 68px;
  }

  .launch-badge {
    height: 36px;
    min-height: 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  .hero h1 {
    position: relative;
    top: -15.5px;
  }

  .hero__actions {
    position: relative;
    top: -16px;
  }

  .hero .button {
    height: 64px;
    min-height: 64px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .hero .button--primary {
    padding-left: 36px;
    padding-right: 36px;
  }

  .hero .button--outline {
    padding-left: 39px;
    padding-right: 39px;
  }

  .intro-copy h2 {
    position: relative;
    top: -17px;
    transform: translateY(8px);
  }

  .marketing-home .hero__actions {
    position: static;
  }

  .marketing-home .intro-copy {
    align-self: start;
  }

  .marketing-home .intro-copy h2 {
    position: static;
    transform: none;
  }

  .intro-copy__desktop {
    position: relative;
    top: -8px;
    transform: translateY(8px);
  }

  .intro-copy__desktop strong,
  .intro-copy__punch {
    color: var(--oklp-orange-dark) !important;
  }

  .intro-copy__punch {
    position: relative;
    top: 19px;
  }

  .phone-preview {
    position: relative;
    top: 8px;
  }

  .phone-preview__shell picture {
    overflow: hidden;
    aspect-ratio: 9 / 19;
    border-radius: 28px;
  }

  .phone-preview__shell img {
    opacity: 1;
  }

  .feature-card h3 {
    font-size: 20px;
    line-height: 28px;
  }

  .feature-card p {
    line-height: 26px;
  }

  .video-section .section-heading p {
    display: none;
  }

  .join-section .section-heading p {
    position: relative;
    top: 9px;
  }

  .join-grid {
    position: relative;
    top: 8px;
  }

  .join-card__icon img {
    width: 32px;
    height: 32px;
  }

  .site-footer__inner {
    width: min(100%, 1182px);
    margin: 0;
  }

  .site-footer__social {
    gap: 24px;
  }

  .site-footer__social a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .site-footer__social a::before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background: center / contain no-repeat;
  }

  .site-footer__social a:first-child::before {
    background-image: url("../images/icon-instagram.svg");
  }

  .site-footer__social a:nth-child(2)::before {
    background-image: url("../images/icon-tiktok.svg");
  }

}

@media (max-width: 1180px) {
  .site-header__inner {
    width: min(100% - 40px, 1280px);
  }

  .site-header__actions {
    margin-right: 0;
  }

  .site-header__menu {
    right: 0;
    width: min(350px, calc(100vw - 24px));
  }

  .site-nav a {
    width: 100%;
    margin-left: 0;
  }

  .section,
  .hero,
  .video-section,
  .site-footer,
  .about-hero,
  .support-hero,
  .faq-section,
  .support-contact,
  .blog-feature,
  .blog-past {
    padding-left: 40px;
    padding-right: 40px;
  }

  .feature-grid,
  .post-grid,
  .crew-grid {
    gap: 24px;
  }

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

  .blog-feature__inner {
    gap: 32px;
  }
}

@media (max-width: 840px) {
  body {
    text-rendering: geometricPrecision;
  }

  .site-header__inner {
    justify-content: flex-end;
    width: 100%;
    min-height: 76px;
    padding: 16px;
  }

  .site-header__logo {
    position: absolute;
    top: 4px;
    left: 16px;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
    width: 120px;
    height: 120px;
    transition: width 160ms ease, height 160ms ease;
  }

  .site-header__logo img {
    filter: drop-shadow(4px 4px 4px rgba(0, 0, 0, 0.25));
  }

  .site-header__menu {
    z-index: 30;
    inset: 0;
    display: flex;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    padding: env(safe-area-inset-top) 0 env(safe-area-inset-bottom);
    overflow-x: hidden;
    overflow-y: auto;
    border: 0;
    background: #fff;
    opacity: 0;
    transform: none;
  }

  .site-header__menu.is-open {
    opacity: 1;
  }

  .site-header__close {
    position: absolute;
    z-index: 2;
    top: calc(18px + env(safe-area-inset-top));
    right: 16px;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 0;
    background: transparent;
    color: #1a1d33;
    cursor: pointer;
  }

  .site-header__close span {
    position: absolute;
    width: 24px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
  }

  .site-header__close span:first-child {
    transform: rotate(45deg);
  }

  .site-header__close span:last-child {
    transform: rotate(-45deg);
  }

  .site-header__close:hover,
  .site-header__close:focus-visible {
    color: var(--oklp-orange);
  }

  .site-header__close:focus-visible {
    outline: 3px solid var(--oklp-orange);
    outline-offset: -3px;
  }

  .site-header__menu .site-nav {
    align-content: start;
    justify-items: end;
    gap: 8px;
    width: 100%;
    min-height: 100%;
    padding: calc(96px + env(safe-area-inset-top)) 0 230px;
  }

  .site-header__menu .site-nav li {
    display: flex;
    justify-content: flex-end;
    width: 100%;
  }

  .site-nav a {
    width: min(243px, 100%);
    min-height: 60px;
    margin-left: 0;
    padding: 0 48px 0 24px;
    justify-content: flex-end;
    background: #fff;
    color: #5b6178;
    font-size: 16px;
    font-weight: 600;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible,
  .site-nav .current-menu-item a,
  .site-nav .current_page_item a,
  .site-nav .current_page_parent a,
  .site-nav .current-menu-ancestor a {
    border-left: 4px solid var(--oklp-orange);
    background: #fff9f0;
    color: var(--oklp-orange);
  }

  body.menu-open .site-header__logo {
    position: fixed;
    z-index: 32;
    top: auto;
    bottom: calc(54px + env(safe-area-inset-bottom));
    left: 50%;
    width: 158px;
    height: 158px;
    margin: 0;
    transform: translateX(-50%);
  }

  body.menu-open .site-header__logo:focus-visible {
    outline-color: var(--oklp-orange);
  }

  .site-header__cta {
    display: none;
  }

  .hero {
    height: 444px;
    padding: 48px 20px 16px;
  }

  .marketing-home .hero {
    height: auto;
    min-height: 0;
  }

  .hero__inner {
    align-content: start;
    gap: 24px;
    min-height: 0;
  }

  .hero h1 {
    font-kerning: none;
    font-feature-settings: "kern" 0;
    margin-bottom: 8px;
  }

  .hero h1,
  .about-hero h1,
  .support-hero h1 {
    width: min(682px, calc(100% - 38px));
    max-width: none;
    margin-right: auto;
    margin-left: auto;
    font-size: 48px;
    line-height: 60px;
    letter-spacing: -1.2px;
    transform: none;
  }

  .hero h1 span,
  .about-hero h1 span,
  .support-hero h1 span {
    display: inline;
  }

  .launch-badge {
    font-size: 12px;
    line-height: 16px;
  }

  .launch-badge span {
    width: 14px;
    height: 14px;
    background: url("../images/icon-launch-figma.svg") center / contain no-repeat;
    color: transparent;
  }

  .intro-section__grid,
  .feature-grid,
  .join-grid,
  .post-grid,
  .crew-grid,
  .blog-feature__inner {
    grid-template-columns: 1fr;
  }

  .blog-feature__inner {
    grid-template-areas:
      "badge"
      "image"
      "copy";
  }

  .article-header__row {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }

  .article-header__row h1 {
    font-size: clamp(32px, 8vw, 44px);
    line-height: 1.2;
  }

  .article-header__byline {
    justify-content: flex-start;
    padding-bottom: 0;
    text-align: left;
  }

  .single-post-page__body {
    font-size: 16px;
    line-height: 1.625;
  }

  .section,
  .video-section,
  .about-hero,
  .support-hero,
  .faq-section,
  .support-contact,
  .blog-feature,
  .blog-past {
    padding: 64px 20px;
  }

  .intro-section {
    border-top: 1px solid rgba(232, 232, 232, 0.5);
    padding-bottom: 24px;
  }

  .intro-section__grid {
    gap: 48px;
  }

  .intro-copy {
    justify-items: center;
    gap: 24px;
    max-width: none;
    text-align: center;
  }

  .intro-copy__desktop,
  .desktop-copy {
    display: none;
  }

  .intro-copy__mobile,
  .mobile-copy {
    display: inline;
  }

  .intro-copy__mobile {
    display: block;
    max-width: 335px;
    color: var(--oklp-muted);
    font-size: 16px !important;
    line-height: 26px !important;
  }

  .intro-copy__mobile strong {
    color: var(--oklp-orange-dark);
  }

  .intro-copy h2,
  .section-heading h2 {
    font-size: 32px;
    line-height: 40px;
  }

  .intro-copy p,
  .section-heading p {
    font-size: 16px;
    line-height: 24px;
  }

  .intro-copy h2 {
    max-width: 335px;
  }

  .intro-copy__punch {
    color: var(--oklp-orange-dark) !important;
    padding-top: 8px;
    font-size: 20px !important;
    line-height: 28px !important;
  }

  .phone-preview__shell {
    width: 222.08px;
    height: 456.55px;
    padding: 6px;
    border: 0;
    border-radius: 32px;
    box-shadow: inset 0 0 0 6px var(--oklp-navy), 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    margin-bottom: -5.44px;
    overflow: hidden;
    transform: translateY(-6.26px);
  }

  .phone-preview__shell::before {
    top: 2px;
    width: 80px;
    height: 16px;
    border-radius: 0 0 24px 24px;
  }

  .phone-preview__shell picture {
    overflow: hidden;
    width: 209.901px;
    height: 444.554px;
    border-radius: 24px;
  }

  .phone-preview__shell img {
    width: 101.44%;
    max-width: none;
    height: 103.42%;
    border-radius: 24px;
    object-fit: fill;
    transform: translate(-1.43%, -1.14%);
  }

  .section-heading {
    gap: 12px;
    margin-bottom: 32px;
  }

  .video-card {
    min-height: 190px;
    border-radius: 48px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  }

  .video-section {
    padding-bottom: 92px;
  }

  .video-section .section-heading p {
    display: none;
  }

  .features-section {
    width: calc(100% - 9px);
    margin-top: 7px;
    margin-left: 9px;
    padding-top: 63px;
    padding-right: 11px;
    padding-bottom: 13px;
  }

  .features-section .section-heading {
    margin-bottom: 40px;
  }

  .feature-grid {
    gap: 24px;
  }

  .feature-card {
    min-height: 0;
    gap: 7px;
    padding: 29px 25px;
    border-radius: 48px;
    box-shadow: none;
  }

  .feature-card__icon {
    width: 56px;
    height: 56px;
  }

  .feature-card__icon img {
    width: 40px;
    height: 40px;
  }

  .feature-card h3,
  .join-card h3 {
    font-size: 20px;
    line-height: 28px;
  }

  .feature-card p,
  .join-card p {
    font-size: 14px;
    line-height: 20px;
  }

  .feature-card p {
    line-height: 22.75px;
  }

  .join-card {
    min-height: 338px;
    gap: 24px;
    padding: 25px;
    border-radius: 24px;
  }

  .join-card:not(.join-card--featured) {
    gap: 16px;
  }

  .join-card:not(.join-card--featured) p {
    align-self: center;
    width: 259px;
    font-size: 16px;
    line-height: 24px;
    transform: translateY(-10px);
  }

  .join-section {
    border-top: 0;
    padding-top: 65px;
    padding-bottom: 87px;
  }

  .join-section .section-heading {
    gap: 16px;
    margin-bottom: 40px;
  }

  .join-section .section-heading h2 {
    font-size: 32px;
    line-height: 40px;
  }

  .join-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .join-card--featured {
    order: -1;
    min-height: 424px;
    margin-top: 16px;
    padding: 34px;
  }

  .join-card__icon {
    width: 56px;
    height: 56px;
  }

  .join-card--featured .join-card__icon {
    transform: translateY(6px);
  }

  .join-card--featured h3 {
    transform: translateY(24px);
  }

  .join-card--featured > p:not(.join-card__ribbon) {
    transform: translateY(6px);
  }

  .join-card--featured .price {
    transform: translateY(4px);
  }

  .join-card__ribbon {
    top: -14px;
    padding: 6px 16px;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.6px;
  }

  .price strong {
    font-size: 40px;
    line-height: 44.44px;
  }

  .price span {
    font-size: 18px;
    line-height: 28px;
  }

  .price small {
    font-size: 14px;
    line-height: 20px;
  }

  .newsletter-form {
    gap: 12px;
  }

  .newsletter-form input {
    min-height: 52px;
    padding: 15px 17px;
    font-size: 14px;
    line-height: 20px;
  }

  .site-footer {
    position: relative;
    border-top: 3px solid var(--oklp-orange);
    background: #fff;
    color: var(--oklp-muted);
    padding: 0 20px;
  }

  .site-footer__inner {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 32px;
    min-height: 0;
    padding: 40px 0 13px;
    text-align: center;
  }

  .site-footer__links {
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }

  .site-footer__links a {
    padding: 8px 0;
  }

  .site-footer__social {
    justify-content: center;
    gap: 32px;
    min-height: 81px;
    width: 100%;
    padding-top: 17px;
    border-top: 1px solid rgba(232, 232, 232, 0.5);
    color: var(--oklp-muted);
    font-size: 12px;
    line-height: 16px;
  }

  .site-footer__social a {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px;
  }

  .site-footer__social a::before {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    background: center / contain no-repeat;
  }

  .site-footer__social a:first-child::before {
    background-image: url("../images/icon-instagram.svg");
  }

  .site-footer__social a:nth-child(2)::before {
    background-image: url("../images/icon-tiktok.svg");
  }

  .site-footer__copy {
    color: var(--oklp-muted);
    font-size: 12px;
    line-height: 16px;
    padding-top: 8px;
  }

  .blog-feature__copy h1 {
    font-size: 44px;
    line-height: 1.05;
  }

  .about-story {
    padding: 28px;
  }

  .about-story__body {
    font-size: 16px;
    line-height: 26px;
  }

  .crew-card {
    min-height: 511px;
    padding: 9px 11px;
  }

  .support-video {
    min-height: 190px;
    border-radius: 48px;
  }

  .faq-section h2,
  .support-contact h2,
  .blog-past h2 {
    font-size: 32px;
    line-height: 40px;
  }

  .faq-item summary {
    padding: 20px;
  }

  .faq-item__answer {
    padding: 0 20px 20px 52px;
  }

  .blog-feature .launch-badge {
    justify-self: end;
  }

  .blog-past__header {
    display: grid;
    align-items: start;
  }

  .blog-filters {
    justify-content: flex-start;
  }

  .single-post-page__cta {
    padding: 28px;
    border-radius: 24px;
  }

  .single-post-page__cta p {
    font-size: 28px;
  }

  .archive-hero h1,
  .content-page h1,
  .single-post-page h1 {
    font-size: 44px;
  }

}

@media (max-width: 440px) {
  .button {
    width: 100%;
  }

  .hero__actions {
    width: 100%;
  }
}
