:root {
  --surface: #ffffff;
  --surface-muted: #f5f7fb;
  --surface-soft: #eef2fb;
  --stroke: rgba(25, 36, 68, 0.12);
  --shadow-lg: 0 24px 50px rgba(12, 23, 55, 0.1);
  --text: #111827;
  --text-soft: #4b5565;
  --accent: #1b4dff;
  --accent-soft: rgba(27, 77, 255, 0.1);
  --radius-lg: 18px;
  --font-sans: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--surface-muted);
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.68;
}

html,
body.website {
  scroll-snap-type: none;
  scroll-padding-top: 6rem;
  scroll-behavior: smooth;
}


.content-spacer {
  display: block;
  height: 0;
  margin: 1.1rem 0;
}

.content-spacer + .content-spacer {
  margin-top: 0.55rem;
}

.centered-block {
  text-align: center;
  margin: 1rem auto;
  width: 100%;
}

.centered-block > * {
  margin-left: auto;
  margin-right: auto;
}

.centered-block ul,
.centered-block ol {
  text-align: left;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.inner {
  width: min(1100px, 100% - 3rem);
  margin: 0 auto;
}

.site-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--stroke);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header .inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.1rem 0;
  position: relative;
  justify-content: space-between;
}

.site-header__primary {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
  min-width: 0;
}

.site-header__page-banner {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
  text-align: left;
}

.site-header__title-row {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.site-header__kicker {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(20, 32, 60, 0.68);
  font-weight: 700;
}

.site-header__title {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.3;
  color: #0f172a;
  word-break: break-word;
}

.site-header__home-link {
  color: inherit;
  text-decoration: none;
}

.site-header__home-link:hover,
.site-header__home-link:focus-visible {
  text-decoration: underline;
}

.site-header__date {
  font-size: 0.96rem;
  color: var(--text-soft);
  font-weight: 600;
}

.site-header__nav-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
}

.site-header--life-dev .inner {
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}

.site-logo img {
  display: block;
  height: auto;
  max-height: 44px;
  width: auto;
  max-width: 180px;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--stroke);
  background: transparent;
  color: var(--text);
  font-size: 1.1rem;
  cursor: pointer;
}

.site-nav {
  display: none;
  flex-direction: column;
  gap: 0.4rem;
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 1.5rem;
  padding: 1rem 1.1rem;
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(17, 24, 39, 0.1);
  box-shadow: var(--shadow-lg);
  z-index: 10;
  min-width: 220px;
}

.site-nav.active {
  display: flex;
}

.site-nav .nav-item {
  display: block;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-weight: 500;
  color: var(--text-soft);
  text-align: right;
  transition: background 0.2s ease, color 0.2s ease;
}

.site-nav .nav-item:hover,
.site-nav .nav-item:focus {
  background: var(--accent-soft);
  color: var(--accent);
}

.content-wrapper {
  background: transparent;
  border-radius: var(--radius-lg);
  border: none;
  box-shadow: var(--shadow-lg);
  margin: clamp(2.5rem, 5vw, 4.5rem) auto;
  padding: clamp(2rem, 4vw, 3.3rem);
  width: min(980px, 100% - 3rem);
}

.content-wrapper > *:first-child {
  margin-top: 0;
}

.content-wrapper :is(> img, p img, li img, figure img) {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 1.5rem auto;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(16, 30, 56, 0.14);
}

.content-wrapper :is(h1, h2, h3, h4, h5, h6) {
  font-family: "DM Serif Display", "Iowan Old Style", Georgia, serif;
  font-weight: 500;
  color: #0f172a;
  line-height: 1.25;
  margin: clamp(2.2rem, 5vw, 3.2rem) 0 1.1rem;
  text-align: left;
}

.content-wrapper h1:first-child,
.content-wrapper h2:first-child {
  margin-top: 0;
}

.content-wrapper :is(p, li) {
  margin: 1rem 0;
  font-size: 1.04rem;
  color: var(--text-soft);
}

.content-wrapper ul,
.content-wrapper ol {
  padding-left: 1.35rem;
}

.content-wrapper ul li::marker,
.content-wrapper ol li::marker {
  color: rgba(27, 77, 255, 0.65);
  font-weight: 600;
}

.pack-investment {
  margin: 1.2rem 0;
  text-align: left;
}

.pack-investment__line {
  margin: 0;
  font-size: 1.05rem;
  color: var(--text);
}

.pack-investment__price {
  font-weight: 600;
}

.pack-investment__note {
  margin: 0.4rem 0 0;
  font-size: 0.95rem;
  color: var(--text-soft);
  font-style: italic;
}

.content-wrapper blockquote {
  margin: 1.6rem 0;
  padding: 1.05rem 1.6rem;
  border-left: 4px solid rgba(27, 77, 255, 0.4);
  border-radius: 0 16px 16px 0;
}

.site-footer {
  background: rgba(255, 255, 255, 0.92);
  border-top: 1px solid var(--stroke);
  padding: 1rem 0;
  font-size: 0.8rem;
  line-height: 1.15;
  color: var(--text-soft);
}

.site-footer .inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem;
}

.site-footer .footer-details {
  text-align: right;
}

.site-footer .footer-left {
  text-align: left;
}

.site-footer p {
  margin: 0;
}

.site-footer .footer-payment-note {
  margin-top: 0.35rem;
}

@media (max-width: 720px) {
  .site-footer .inner {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
  }

  .site-footer .footer-left,
  .site-footer .footer-details {
    width: 100%;
    text-align: left;
  }

  .site-footer .footer-details {
    margin-top: 0.5rem;
  }
}

:is(body.life-dev-page .btn, body.life-dev-page .button, .subscribe-form button, .booking-widget__button) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

body.life-dev-page .btn,
body.life-dev-page .button {
  padding: 0.6em 1.4em;
  background: #1f2937;
  color: #ffffff;
}

body.life-dev-page .btn:hover,
body.life-dev-page .button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(31, 41, 55, 0.16);
  text-decoration: none;
}

.post-meta {
  font-size: 0.9rem;
  color: rgba(17, 24, 39, 0.6);
  text-align: center;
  margin: 1.2rem 0 0;
}

.subscribe-form {
  width: min(420px, 100%);
  margin: clamp(2rem, 4vw, 3rem) auto;
  padding: 1.5rem 1.75rem;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: var(--shadow-lg);
  display: grid;
  gap: 0.9rem;
}

.subscribe-form label {
  font-size: 0.92rem;
  color: var(--text-soft);
  text-align: left;
}

.subscribe-form input[type="email"],
.subscribe-form input[type="text"] {
  width: 100%;
  padding: 0.65rem 0.8rem;
  border-radius: 12px;
  border: 1px solid rgba(17, 24, 39, 0.16);
  font-size: 0.95rem;
}

.subscribe-form input[type="checkbox"] {
  width: auto;
  margin-right: 0.5rem;
}

.subscribe-form button {
  background: var(--accent);
  color: #ffffff;
  border: none;
  padding: 0.7rem 1.4rem;
}

.subscribe-form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(27, 77, 255, 0.22);
}

.booking-widget {
  margin: clamp(1.4rem, 4vw, 2rem) 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

.booking-widget__label {
  font-size: 1.05rem;
  font-weight: 650;
  color: var(--text-primary, #e5e7eb);
}

.booking-widget__button {
  padding: 0.7rem 1.6rem;
  border: none;
  background: var(--accent, #1b4dff);
  color: #ffffff;
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.booking-widget__button:hover,
.booking-widget__button:focus {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(27, 77, 255, 0.25);
}

.booking-widget__image {
  width: min(360px, 80vw);
  max-width: 420px;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: 0 8px 26px rgba(15, 23, 42, 0.18);
  display: block;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease;
  background: #0f172a;
}

.booking-widget__image:hover,
.booking-widget__image:focus {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.24);
}

@media (max-width: 820px) {
  .site-header .inner {
    gap: 1rem;
  }

  .site-header__title {
    font-size: 1.08rem;
  }

  .site-header__page-banner {
    max-width: 100%;
  }

  .site-nav {
    right: 1rem;
    left: 1rem;
    min-width: unset;
  }

  .content-wrapper {
    width: min(100% - 2.2rem, 840px);
    margin: clamp(1.8rem, 6vw, 3.2rem) auto;
  }
}

@media (max-width: 540px) {
  .inner {
    width: calc(100% - 2rem);
  }

  .content-wrapper {
    padding: 1.6rem;
  }
}

.icon-checkbox img {
  max-width: 120px;
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 12px 32px rgba(17, 24, 39, 0.18));
  -webkit-mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 1) 64%, rgba(0, 0, 0, 0.35) 78%, rgba(0, 0, 0, 0) 94%);
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 1) 64%, rgba(0, 0, 0, 0.35) 78%, rgba(0, 0, 0, 0) 94%);
}

.icon-checkbox {
  position: relative;
  margin: clamp(1.6rem, 5vw, 2.6rem) auto;
  max-width: 260px;
}

.icon-checkbox::before {
  content: "";
  position: absolute;
  inset: -22%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0));
  filter: blur(24px);
  z-index: -1;
}






.frame__controls {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 1.8rem;
}

body.has-frame-flow .frame__controls {
  display: flex;
  width: 100%;
  justify-content: center;
}

.frame__next {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  border: 1px solid rgba(27, 77, 255, 0.26);
  background: rgba(27, 77, 255, 0.06);
  color: #0f172a;
  line-height: 1;
}

.frame__next:hover,
.frame__next:focus-visible {
  text-decoration: none;
  background: rgba(27, 77, 255, 0.14);
  border-color: rgba(27, 77, 255, 0.38);
}

.frame__next-icon {
  font-size: 1.02rem;
  line-height: 1;
}

.frame__progress {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.12);
  color: #1e293b;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.frame__progress--final {
  width: fit-content;
  margin: 1.8rem auto 0;
  background: rgba(15, 23, 42, 0.08);
}

body.has-frame-flow .frame {
  transition: opacity 0.25s ease, filter 0.25s ease;
}

body.has-frame-flow .frame.frame--inactive {
  opacity: 0.45;
  visibility: visible;
  pointer-events: auto;
  filter: blur(3px) saturate(0.93);
}

body.has-frame-flow .frame.frame--active {
  opacity: 1;
  filter: none;
  visibility: visible;
}

body.has-frame-flow .frame__controls {
  display: flex;
  width: 100%;
  justify-content: center;
}

@media (prefers-reduced-motion: no-preference) {
  .frame {
    transition: opacity 180ms ease;
  }
}

@media (max-width: 540px) {
  .frame__controls {
    width: 100%;
    justify-content: center;
  }

  .frame__progress {
    font-size: 0.72rem;
  }
}


.barrier {
  display: block;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  height: 1px;
  margin: 10vh 0;
}


.anchor-target {
  position: relative;
  top: -88px;
  display: block;
  height: 0;
  visibility: hidden;
}

.cta-container {
  margin: 1.9rem auto;
  width: min(760px, 100%);
}

.cta-field {
  display: block;
  width: 100%;
  padding: 1.45rem 1.7rem;
  border-radius: 8px;
  border: 1px solid rgba(210, 255, 228, 0.72);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0.04) 16%, rgba(255, 255, 255, 0) 38%),
    linear-gradient(160deg, rgba(84, 236, 142, 0.95) 0%, rgba(26, 173, 86, 0.93) 58%, rgba(16, 132, 65, 0.91) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45), 0 18px 30px rgba(22, 146, 72, 0.34);
  color: #ffffff;
  font-size: clamp(1.12rem, 1.95vw, 1.42rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  text-align: center;
  cursor: pointer;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  transition: transform 0.16s ease, box-shadow 0.16s ease, filter 0.16s ease;
}

.cta-field:hover,
.cta-field:focus {
  filter: brightness(1.07);
  transform: translateY(-1px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.52), 0 24px 36px rgba(22, 146, 72, 0.4);
}


.cta-field.is-disabled,
.cta-field:disabled {
  cursor: default;
  filter: saturate(0.75) brightness(0.95);
  transform: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 10px 20px rgba(22, 146, 72, 0.2);
}

.cta-field.is-disabled:hover,
.cta-field.is-disabled:focus,
.cta-field:disabled:hover,
.cta-field:disabled:focus {
  filter: saturate(0.75) brightness(0.95);
  transform: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 10px 20px rgba(22, 146, 72, 0.2);
}

.cta-field:focus-visible {
  outline: 3px solid rgba(16, 185, 129, 0.45);
  outline-offset: 2px;
}

.frame {
  position: relative;
}

.frame-gap {
  position: relative;
  height: clamp(4rem, 9vh, 6.5rem);
  margin: clamp(0.75rem, 2.5vh, 1.5rem) 0;
}

.frame-gap::before,
.frame-gap::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.frame-gap::before {
  top: 50%;
  width: min(100%, 42rem);
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(30, 64, 175, 0) 0%,
    rgba(30, 64, 175, 0.35) 18%,
    rgba(30, 64, 175, 0.55) 50%,
    rgba(30, 64, 175, 0.35) 82%,
    rgba(30, 64, 175, 0) 100%
  );
}

.frame-gap::after {
  top: calc(50% - 0.34rem);
  width: 0.68rem;
  height: 0.68rem;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.92), rgba(59, 130, 246, 0.78));
  box-shadow:
    0 0 0 3px rgba(59, 130, 246, 0.14),
    0 0 18px rgba(37, 99, 235, 0.22);
}

@media (max-width: 900px) {
  .frame__next {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 999px;
    border-color: rgba(22, 101, 52, 0.55);
    background: rgba(255, 255, 255, 0.95);
    color: #14532d;
  }

  .frame-gap {
    height: clamp(3.4rem, 8vh, 5.1rem);
    margin: clamp(0.5rem, 2vh, 1rem) 0;
  }
}
