/* =========================================================
   CommitCabin — premium landing page
   ========================================================= */

/* ── Tokens ─────────────────────────────────────────────── */
:root {
  /* color */
  --ink:        #0E1311;
  --ink-2:      #141A17;
  --ink-3:      #1B221E;
  --line-dark:  rgba(255, 255, 255, 0.10);
  --line-darker:rgba(255, 255, 255, 0.18);

  --cream:      #F4EFE5;
  --cream-2:    #ECE5D6;
  --cream-3:    #E2D9C5;
  --paper:      #FBF8F2;

  --text:       #1A1F1B;
  --text-soft:  #5A6259;
  --text-mute:  #8A9088;

  --line:       rgba(20, 26, 23, 0.10);
  --line-2:     rgba(20, 26, 23, 0.18);

  --forest:     #2F5D3F;
  --forest-2:   #244A31;
  --forest-3:   #5C8A6A;
  --moss:       #A8C9A0;

  --wood:       #B58E5F;
  --wood-2:     #8C6A40;
  --wood-light: #E5CFAE;

  --ocean:      #2E6F87;
  --ocean-2:    #1F4E60;

  /* type */
  --serif:  "Fraunces", "Iowan Old Style", Georgia, serif;
  --sans:   "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --mono:   "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* layout */
  --container: 1240px;
  --gutter:    clamp(20px, 5vw, 56px);
  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  /* motion */
  --ease:      cubic-bezier(.2, .7, .2, 1);
  --ease-out:  cubic-bezier(.16, 1, .3, 1);

  /* shadow */
  --shadow-sm: 0 1px 2px rgba(14, 19, 17, 0.06), 0 2px 8px rgba(14, 19, 17, 0.04);
  --shadow:    0 8px 24px rgba(14, 19, 17, 0.08), 0 2px 6px rgba(14, 19, 17, 0.04);
  --shadow-lg: 0 24px 60px rgba(14, 19, 17, 0.18), 0 6px 18px rgba(14, 19, 17, 0.08);
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }
ul, ol { list-style: none; padding: 0; margin: 0; }
a { color: inherit; text-decoration: none; }
:focus-visible {
  outline: 2px solid var(--forest);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--forest); color: var(--cream); }

[hidden] { display: none !important; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: var(--cream);
  padding: 12px 16px; border-radius: 0 0 8px 0;
  z-index: 200;
}
.skip-link:focus { left: 0; }

/* ── Layout primitives ──────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: clamp(72px, 10vw, 140px);
  position: relative;
}

.section__head {
  max-width: 760px;
  margin-bottom: clamp(40px, 6vw, 72px);
}
.section__head--row {
  max-width: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: clamp(40px, 5vw, 64px);
}
@media (min-width: 900px) {
  .section__head--row {
    grid-template-columns: 1.1fr 1fr;
    align-items: end;
    gap: 56px;
  }
  .section__head--row > p { margin-bottom: 8px; }
}

/* ── Type ───────────────────────────────────────────────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 22px;
}
.eyebrow--light { color: var(--moss); }
.eyebrow__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--moss);
  box-shadow: 0 0 0 4px rgba(168, 201, 160, 0.18);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(168, 201, 160, 0.10); }
  50%     { box-shadow: 0 0 0 8px rgba(168, 201, 160, 0.04); }
}

.h-display {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(32px, 5.4vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0 0 20px;
  font-variation-settings: "opsz" 96;
}
.h-display em {
  font-style: italic;
  color: var(--forest);
  font-weight: 400;
}
.h-display--light { color: var(--cream); }
.h-display--light em { color: var(--moss); }

.lede {
  font-size: clamp(17px, 1.5vw, 19px);
  line-height: 1.55;
  color: var(--text-soft);
  max-width: 62ch;
  margin: 0;
}
.lede--light { color: rgba(244, 239, 229, 0.74); }

.strike {
  position: relative;
  display: inline-block;
  color: var(--text-mute);
}
.strike::after {
  content: "";
  position: absolute;
  left: -2%; right: -2%;
  top: 56%;
  height: 3px;
  background: var(--forest);
  border-radius: 2px;
  transform: rotate(-2deg);
}

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  --btn-pad-y: 12px;
  --btn-pad-x: 22px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: var(--btn-pad-y) var(--btn-pad-x);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.005em;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform .25s var(--ease), background-color .25s var(--ease),
              color .25s var(--ease), border-color .25s var(--ease),
              box-shadow .25s var(--ease);
  white-space: nowrap;
  user-select: none;
}
.btn svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.btn:hover svg { transform: translateX(3px); }

.btn--lg { --btn-pad-y: 16px; --btn-pad-x: 28px; font-size: 16px; }

.btn--primary {
  background: var(--forest);
  color: var(--cream);
  border-color: var(--forest);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06) inset, 0 8px 24px -8px rgba(47, 93, 63, 0.55);
}
.btn--primary:hover {
  background: var(--forest-2);
  border-color: var(--forest-2);
  transform: translateY(-1px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.08) inset, 0 14px 32px -10px rgba(47, 93, 63, 0.7);
}

.btn--ghost-light {
  background: rgba(255, 255, 255, 0.06);
  color: var(--cream);
  border-color: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
}
.btn--ghost-light:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.36);
}

.btn--ghost-dark {
  background: transparent;
  color: var(--text);
  border-color: var(--line-2);
}
.btn--ghost-dark:hover {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

.btn--block { width: 100%; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--forest);
  font-weight: 500;
  font-size: 14px;
}
.link-arrow svg { width: 14px; height: 14px; transition: transform .25s var(--ease); }
.link-arrow:hover svg { transform: translateX(3px); }

/* ── Nav ────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(0);
  transition: background-color .35s var(--ease), backdrop-filter .35s var(--ease),
              border-color .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 32px;
}
.nav.is-scrolled {
  background: rgba(14, 19, 17, 0.78);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom-color: var(--line-dark);
}
.nav.is-scrolled .nav__links a,
.nav.is-scrolled .brand,
.nav.is-scrolled .nav__toggle span { color: var(--cream); }
.nav.is-scrolled .nav__toggle span { background: var(--cream); }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--cream);
  font-weight: 600;
  letter-spacing: -0.01em;
  font-size: 17px;
}
.brand__mark {
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 8px;
  background: rgba(168, 201, 160, 0.12);
  color: var(--moss);
  border: 1px solid rgba(168, 201, 160, 0.28);
}
.brand__mark svg { width: 18px; height: 18px; }

.nav__links {
  display: none;
  align-items: center;
  gap: 30px;
}
.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(244, 239, 229, 0.82);
  letter-spacing: -0.005em;
  position: relative;
  transition: color .2s var(--ease);
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform .3s var(--ease);
}
.nav__links a:hover { color: var(--cream); }
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left center; }

.nav__cta { display: none; }
@media (min-width: 920px) {
  .nav__links { display: flex; }
  .nav__cta { display: block; }
}

.nav__toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  border-radius: 10px;
  align-items: center;
}
.nav__toggle span {
  display: block;
  width: 18px; height: 1.6px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .25s var(--ease);
}
@media (min-width: 920px) { .nav__toggle { display: none; } }

.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  position: absolute;
  top: 72px; left: 0; right: 0;
  background: rgba(14, 19, 17, 0.96);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-top: 1px solid var(--line-dark);
  padding: 22px var(--gutter) 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: slideDown .35s var(--ease);
}
.nav__mobile a {
  color: var(--cream);
  font-size: 17px;
  font-weight: 500;
}
.nav__mobile .btn { margin-top: 8px; }
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Hero ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: clamp(620px, 100vh, 900px);
  margin-top: -72px;
  padding-top: 72px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  color: var(--cream);
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}
.hero__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: translate3d(0, var(--hero-y, 0), 0) scale(1.08);
  will-change: transform;
}
.hero__scrim {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 12% 20%, rgba(14, 19, 17, 0.65), transparent 60%),
    linear-gradient(180deg, rgba(14, 19, 17, 0.55) 0%, rgba(14, 19, 17, 0.25) 35%, rgba(14, 19, 17, 0.55) 70%, rgba(14, 19, 17, 0.85) 100%);
}
.hero__grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.16 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
  opacity: .8;
  pointer-events: none;
}

.hero__inner {
  padding-block: clamp(64px, 12vh, 120px);
  max-width: 920px;
}
.hero__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 7.8vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin: 18px 0 22px;
  color: var(--cream);
  font-variation-settings: "opsz" 144;
  text-wrap: balance;
}
.hero__title em {
  font-style: italic;
  color: var(--moss);
  font-weight: 400;
}
.hero__sub {
  font-size: clamp(17px, 1.55vw, 20px);
  line-height: 1.55;
  color: rgba(244, 239, 229, 0.82);
  max-width: 62ch;
  margin: 0 0 32px;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}
.hero__trust {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(244, 239, 229, 0.62);
  margin: 0 0 32px;
}

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pills li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  border-radius: 999px;
  font-size: 13px;
  color: rgba(244, 239, 229, 0.92);
  letter-spacing: -0.005em;
}
.pills__icon {
  font-family: var(--mono);
  color: var(--moss);
  font-size: 11px;
  line-height: 1;
}

.hero__scroll {
  position: absolute;
  bottom: 28px;
  right: var(--gutter);
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244, 239, 229, 0.6);
}
.hero__scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, rgba(244, 239, 229, 0.6), rgba(244, 239, 229, 0));
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: "";
  position: absolute;
  top: -50%;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to bottom, rgba(168, 201, 160, 0), var(--moss));
  animation: scrollDot 2.4s ease-in-out infinite;
}
@keyframes scrollDot {
  0%   { transform: translateY(0); opacity: 0; }
  20%  { opacity: 1; }
  100% { transform: translateY(220%); opacity: 0; }
}
@media (min-width: 1100px) { .hero__scroll { display: flex; } }

/* ── Problem ─────────────────────────────────────────────── */
.problem {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.problem__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 72px);
}
@media (min-width: 980px) {
  .problem__inner {
    grid-template-columns: 1.1fr 1fr;
    align-items: start;
  }
}
.problem__head h2 { margin-top: 0; }
.pain {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  align-self: start;
}
@media (min-width: 600px) { .pain { grid-template-columns: repeat(2, 1fr); } }
.pain li {
  background: var(--paper);
  padding: 22px 22px;
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  transition: background-color .25s var(--ease), color .25s var(--ease);
}
.pain li:hover { background: var(--cream); }
.pain li span {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-mute);
  letter-spacing: 0.08em;
}
.pain li:last-child:nth-child(odd) {
  grid-column: span 2;
}

.problem__contrast {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: clamp(32px, 4vw, 48px);
  border-top: 1px solid var(--line);
}
.problem__rule {
  flex: 0 0 56px;
  height: 1px;
  background: var(--forest);
}
.problem__contrast p {
  font-family: var(--serif);
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.3;
  color: var(--text);
  margin: 0;
  letter-spacing: -0.015em;
}
.problem__contrast em {
  color: var(--forest);
  font-style: italic;
}

/* ── Solution ───────────────────────────────────────────── */
.solution {
  background: var(--ink);
  color: var(--cream);
  position: relative;
}
.solution::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 60% at 80% 0%, rgba(47, 93, 63, 0.18), transparent 60%),
    radial-gradient(50% 50% at 0% 100%, rgba(181, 142, 95, 0.10), transparent 60%);
  pointer-events: none;
}
.features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  z-index: 1;
}
@media (min-width: 640px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .features { grid-template-columns: repeat(4, 1fr); } }

.feature {
  background: var(--ink);
  padding: clamp(24px, 3vw, 36px);
  position: relative;
  transition: background-color .35s var(--ease);
}
.feature:hover { background: var(--ink-2); }
.feature__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(168, 201, 160, 0.10);
  border: 1px solid rgba(168, 201, 160, 0.22);
  color: var(--moss);
  margin-bottom: 22px;
}
.feature__icon svg { width: 22px; height: 22px; }
.feature h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--cream);
  margin: 0 0 10px;
}
.feature p {
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(244, 239, 229, 0.65);
  margin: 0;
}

/* ── Retreats ───────────────────────────────────────────── */
.retreats {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.retreats__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 720px)  { .retreats__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .retreats__grid { grid-template-columns: repeat(4, 1fr); gap: 22px; } }

.retreat-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.retreat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--line-2);
}
.retreat-card__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.retreat-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease-out);
}
.retreat-card:hover .retreat-card__media img { transform: scale(1.06); }
.retreat-card__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,0.35) 100%);
  pointer-events: none;
}
.retreat-card__tag {
  position: absolute;
  top: 14px; left: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--forest-2);
  border: 1px solid rgba(255,255,255,0.5);
  z-index: 1;
}
.retreat-card__tag--ocean  { color: var(--ocean-2); }
.retreat-card__tag--forest { color: var(--forest-2); }
.retreat-card__tag--lake   { color: #335E78; }

.retreat-card__body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.retreat-card__body h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--text);
}
.retreat-card__body > p {
  font-size: 14.5px;
  color: var(--text-soft);
  line-height: 1.55;
  margin: 0;
}
.retreat-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}
.retreat-card__meta li {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-soft);
  background: var(--cream-2);
  padding: 5px 10px;
  border-radius: 999px;
  letter-spacing: -0.005em;
}
.retreat-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.price {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--text);
  letter-spacing: -0.01em;
}
.price em {
  font-style: normal;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-right: 4px;
}
.price small {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--text-mute);
  font-weight: 400;
}

.retreats__note {
  margin-top: 40px;
  font-family: var(--serif);
  font-style: italic;
  color: var(--text-soft);
  font-size: 17px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.retreats__note span { color: var(--forest); }

/* ── Packages ───────────────────────────────────────────── */
.packages {
  background: var(--paper);
}
.plans {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: stretch;
}
@media (min-width: 980px) {
  .plans { grid-template-columns: repeat(3, 1fr); gap: 22px; }
}
.plan {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.plan:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.plan--featured {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
  box-shadow: var(--shadow-lg);
  transform: scale(1.0);
}
@media (min-width: 980px) {
  .plan--featured { transform: translateY(-12px); }
  .plan--featured:hover { transform: translateY(-16px); }
}
.plan__ribbon {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--moss);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 500;
}
.plan__head { display: flex; flex-direction: column; gap: 8px; }
.plan__tag {
  font-family: var(--serif);
  font-size: 26px;
  letter-spacing: -0.015em;
  line-height: 1.15;
}
.plan--featured .plan__tag { color: var(--cream); }
.plan__for {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin: 0;
}
.plan--featured .plan__for { color: rgba(244, 239, 229, 0.6); }

.plan__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.plan__list li {
  position: relative;
  padding-left: 26px;
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.5;
}
.plan--featured .plan__list li { color: rgba(244, 239, 229, 0.78); }
.plan__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 14px; height: 8px;
  border-left: 1.6px solid var(--forest);
  border-bottom: 1.6px solid var(--forest);
  transform: rotate(-45deg);
}
.plan--featured .plan__list li::before {
  border-color: var(--moss);
}

/* ── Verified ───────────────────────────────────────────── */
.verified {
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.verified::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(50% 60% at 100% 0%, rgba(168, 201, 160, 0.12), transparent 60%),
    radial-gradient(50% 60% at 0% 100%, rgba(47, 93, 63, 0.18), transparent 60%);
  pointer-events: none;
}
.verified__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 5vw, 64px);
  position: relative;
  z-index: 1;
}
@media (min-width: 980px) {
  .verified__inner { grid-template-columns: 1fr 1fr; align-items: start; }
}
.verified__copy h2 { margin-top: 0; }
.verified__note {
  margin: 24px 0 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 1.8vw, 22px);
  color: var(--moss);
  line-height: 1.4;
  letter-spacing: -0.005em;
}

.checklist {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.checklist li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 22px;
  font-size: 15px;
  color: rgba(244, 239, 229, 0.88);
  border-bottom: 1px solid var(--line-dark);
  transition: background-color .25s var(--ease);
}
.checklist li:last-child { border-bottom: 0; }
.checklist li:hover { background: rgba(168, 201, 160, 0.06); }
.checklist li svg {
  width: 18px; height: 18px;
  color: var(--moss);
  flex-shrink: 0;
}

/* ── Proof / Quotes ─────────────────────────────────────── */
.proof { background: var(--cream); }
.quotes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
@media (min-width: 820px)  { .quotes { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .quotes { grid-template-columns: repeat(3, 1fr); } }

.quote {
  margin: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.quote:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.quote::before {
  content: "“";
  position: absolute;
  top: 8px; left: 22px;
  font-family: var(--serif);
  font-size: 80px;
  line-height: 1;
  color: var(--forest);
  opacity: 0.18;
}
.quote blockquote { margin: 0; padding-top: 12px; }
.quote blockquote p {
  font-family: var(--serif);
  font-size: clamp(18px, 1.6vw, 21px);
  line-height: 1.45;
  color: var(--text);
  letter-spacing: -0.01em;
  margin: 0;
}
.quote figcaption {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.quote__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--forest);
  color: var(--cream);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.quote figcaption strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.005em;
}
.quote figcaption em {
  font-style: normal;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mute);
}

/* ── How it works ───────────────────────────────────────── */
.how {
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.how::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(168, 201, 160, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168, 201, 160, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black, transparent 70%);
  pointer-events: none;
}
.steps {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  counter-reset: step;
}
@media (min-width: 820px) {
  .steps { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}
.step {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3vw, 36px);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.step__num {
  display: inline-block;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.10em;
  color: var(--moss);
  margin-bottom: 16px;
}
.step h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(22px, 2vw, 26px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--cream);
  margin: 0 0 10px;
}
.step p {
  font-size: 15px;
  color: rgba(244, 239, 229, 0.7);
  line-height: 1.55;
  margin: 0;
}
.how__quote {
  position: relative;
  z-index: 1;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: rgba(244, 239, 229, 0.84);
  margin: clamp(48px, 6vw, 72px) auto 0;
  max-width: 640px;
  text-align: center;
}

/* ── Host ──────────────────────────────────────────────── */
.host {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.host__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 5vw, 64px);
  align-items: center;
}
@media (min-width: 980px) {
  .host__inner { grid-template-columns: 1.1fr 1fr; }
}
.host__copy h2 { margin-top: 0; }
.host__copy .btn { margin-top: 28px; }

.host__benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.host__benefits li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--line);
  transition: background-color .25s var(--ease);
}
.host__benefits li:last-child { border-bottom: 0; }
.host__benefits li:hover { background: var(--cream-2); }
.host__benefits li span {
  color: var(--forest);
  font-size: 12px;
  letter-spacing: 0.10em;
}

/* ── Final CTA / Form ───────────────────────────────────── */
.cta {
  position: relative;
  color: var(--cream);
  overflow: hidden;
  isolation: isolate;
  padding-block: clamp(80px, 10vw, 140px);
}
.cta__media { position: absolute; inset: 0; z-index: -1; }
.cta__media img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.cta__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(14, 19, 17, 0.8) 0%, rgba(14, 19, 17, 0.92) 100%),
    radial-gradient(60% 80% at 80% 20%, rgba(47, 93, 63, 0.35), transparent 60%);
}
.cta__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 5vw, 56px);
  align-items: start;
}
@media (min-width: 980px) {
  .cta__inner { grid-template-columns: 1.05fr 1fr; gap: 64px; }
}
.cta__copy h2 { margin-top: 0; }
.cta__bullets {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cta__bullets li {
  position: relative;
  padding-left: 26px;
  font-size: 15px;
  color: rgba(244, 239, 229, 0.84);
}
.cta__bullets li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 14px; height: 8px;
  border-left: 1.6px solid var(--moss);
  border-bottom: 1.6px solid var(--moss);
  transform: rotate(-45deg);
}

.form {
  background: rgba(244, 239, 229, 0.04);
  border: 1px solid rgba(244, 239, 229, 0.14);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: var(--shadow-lg);
}
.form__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(22px, 2.2vw, 28px);
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--cream);
}
.form__sub {
  margin: -10px 0 6px;
  font-size: 13.5px;
  color: rgba(244, 239, 229, 0.62);
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field__label,
.field label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(244, 239, 229, 0.7);
}
.field input,
.field select {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(244, 239, 229, 0.16);
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--cream);
  font-size: 15px;
  transition: border-color .25s var(--ease), background-color .25s var(--ease);
  appearance: none;
  -webkit-appearance: none;
}
.field input::placeholder { color: rgba(244, 239, 229, 0.3); }
.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--moss);
  background: rgba(255, 255, 255, 0.10);
}
.field.is-invalid input,
.field.is-invalid select { border-color: #E27E66; background: rgba(226, 126, 102, 0.06); }

.select { position: relative; }
.select::after {
  content: "";
  position: absolute;
  right: 18px; top: 50%;
  width: 8px; height: 8px;
  border-right: 1.5px solid rgba(244, 239, 229, 0.6);
  border-bottom: 1.5px solid rgba(244, 239, 229, 0.6);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}
.select select option { color: #111; background: var(--cream); }

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip {
  position: relative;
  cursor: pointer;
}
.chip input {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}
.chip span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(244, 239, 229, 0.18);
  background: rgba(255, 255, 255, 0.04);
  font-size: 14px;
  color: rgba(244, 239, 229, 0.82);
  transition: all .2s var(--ease);
  user-select: none;
}
.chip--sm span { padding: 10px 18px; font-family: var(--mono); }
.chip:hover span { border-color: rgba(244, 239, 229, 0.34); color: var(--cream); }
.chip input:checked + span {
  background: var(--moss);
  border-color: var(--moss);
  color: var(--ink);
}
.chip input:focus-visible + span {
  outline: 2px solid var(--moss);
  outline-offset: 3px;
}

.form__legal {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13.5px;
  color: rgba(244, 239, 229, 0.55);
  text-align: center;
  margin: 4px 0 0;
}

.form.is-success {
  display: flex;
  align-items: center;
  text-align: center;
  min-height: 360px;
  justify-content: center;
}
.form__success {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}
.form__success-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(168, 201, 160, 0.18);
  border: 1px solid rgba(168, 201, 160, 0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--moss);
}
.form__success h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  margin: 0;
  color: var(--cream);
  letter-spacing: -0.01em;
}
.form__success p {
  margin: 0;
  font-size: 15px;
  color: rgba(244, 239, 229, 0.7);
  max-width: 36ch;
}

/* ── Footer ─────────────────────────────────────────────── */
.footer {
  background: var(--ink);
  color: rgba(244, 239, 229, 0.78);
  padding-block: clamp(56px, 6vw, 72px) 28px;
  border-top: 1px solid var(--line-dark);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding-bottom: clamp(40px, 5vw, 56px);
  border-bottom: 1px solid var(--line-dark);
}
@media (min-width: 820px) {
  .footer__inner {
    grid-template-columns: 1.4fr 1fr;
    gap: clamp(48px, 6vw, 80px);
  }
}
.footer__brand p {
  margin: 16px 0 0;
  font-size: 15px;
  max-width: 38ch;
}
.footer__brand .footer__line {
  margin-top: 8px;
  font-family: var(--serif);
  font-style: italic;
  color: var(--moss);
  font-size: 16px;
}
.brand--footer { color: var(--cream); }

.footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.footer__nav h4 {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244, 239, 229, 0.5);
  margin: 0 0 14px;
}
.footer__nav a {
  display: block;
  padding: 6px 0;
  font-size: 14.5px;
  color: rgba(244, 239, 229, 0.82);
  transition: color .2s var(--ease);
}
.footer__nav a:hover { color: var(--moss); }

.footer__base {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 28px;
  font-size: 13px;
  color: rgba(244, 239, 229, 0.5);
}
@media (min-width: 700px) {
  .footer__base {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.footer__motto {
  font-family: var(--serif);
  font-style: italic;
  color: rgba(244, 239, 229, 0.7);
}

/* ── Reveal animations ──────────────────────────────────── */
/* The hero gets a one-shot fade-in on load. Everything else
   below the fold uses an IntersectionObserver-driven fly-in,
   with a 4s JS-side failsafe that reveals anything still hidden. */
@keyframes ccFadeIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}
.hero [data-anim] {
  opacity: 0;
  animation: ccFadeIn .9s var(--ease-out) forwards;
  animation-delay: var(--reveal-delay, 0ms);
}

/* Scroll-revealed elements: hidden until JS adds .is-revealed.
   Pacing is intentionally slow and soft — the page should feel like
   it exhales as you scroll, not like it's shouting. */
section:not(.hero) [data-anim] {
  opacity: 0;
  transform: translateY(44px) scale(.985);
  filter: blur(2px);
  transition:
    opacity 1.4s var(--ease-out),
    transform 1.4s var(--ease-out),
    filter 1.2s var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}
section:not(.hero) [data-anim].is-revealed {
  opacity: 1;
  transform: none;
  filter: none;
}

/* Word-by-word stagger inside non-hero h-display headings */
.h-display .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.55em) skewY(2deg);
  transition:
    opacity 1.05s var(--ease-out),
    transform 1.15s var(--ease-out);
  transition-delay: calc(var(--word-i, 0) * 90ms + var(--reveal-delay, 0ms));
  will-change: opacity, transform;
}
.h-display.is-revealed .word,
.is-revealed .h-display .word {
  opacity: 1;
  transform: none;
}

/* 3D tilt on retreat + plan cards (overrides reveal transform once revealed) */
.retreats__grid,
.plans {
  perspective: 1400px;
}
@media (hover: hover) and (pointer: fine) {
  section:not(.hero) .retreat-card.is-revealed,
  section:not(.hero) .plan.is-revealed {
    transform:
      rotateX(var(--tilt-x, 0deg))
      rotateY(var(--tilt-y, 0deg));
    transform-style: preserve-3d;
    backface-visibility: hidden;
    transition:
      transform .55s var(--ease-out),
      box-shadow .55s var(--ease-out),
      border-color .55s var(--ease-out);
  }
}

/* Primary CTA shimmer sweep on hover */
.btn--primary {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.btn--primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 25%,
    rgba(255, 255, 255, 0.18) 50%,
    transparent 75%
  );
  transform: translateX(-110%);
  transition: transform 1.35s var(--ease-out);
  pointer-events: none;
  z-index: 0;
}
.btn--primary:hover::after,
.btn--primary:focus-visible::after {
  transform: translateX(110%);
}
.btn--primary > * {
  position: relative;
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero [data-anim] { opacity: 1 !important; transform: none !important; }
  section:not(.hero) [data-anim] { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ── Coding-vibe accents ─────────────────────────────────
   Terminal-style flourishes for hero, cards, form, footer.
   Pure-CSS where possible so they survive JS failures. */

/* Blinking caret after the hero italic em */
.hero__title em { position: relative; }
.hero__title .caret {
  display: inline-block;
  width: 0.06em;
  height: 0.85em;
  margin-left: 0.08em;
  vertical-align: -0.05em;
  background: var(--moss);
  border-radius: 1px;
  transform: translateY(0.06em);
  animation: caretBlink 1.05s steps(1) infinite;
}
@keyframes caretBlink { 50% { opacity: 0; } }

/* Floating terminal "ship log" in hero corner */
.term {
  position: absolute;
  right: clamp(20px, 4vw, 56px);
  bottom: clamp(160px, 18vw, 220px);
  width: min(300px, 28vw);
  border-radius: 12px;
  background: rgba(11, 16, 14, 0.78);
  border: 1px solid rgba(168, 201, 160, 0.18);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45),
              0 2px 0 rgba(255, 255, 255, 0.04) inset;
  backdrop-filter: blur(10px) saturate(1.2);
  -webkit-backdrop-filter: blur(10px) saturate(1.2);
  overflow: hidden;
  opacity: 0;
  transform: translateY(14px);
  animation: termIn 1s var(--ease-out) 1.05s forwards;
  z-index: 2;
}
@keyframes termIn {
  to { opacity: 1; transform: none; }
}
.term__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 12px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.term__dot {
  width: 11px; height: 11px; border-radius: 50%;
  display: inline-block;
}
.term__dot--r { background: #ff5f57; box-shadow: 0 0 0 1px rgba(0,0,0,0.18) inset; }
.term__dot--y { background: #febc2e; box-shadow: 0 0 0 1px rgba(0,0,0,0.18) inset; }
.term__dot--g { background: #28c840; box-shadow: 0 0 0 1px rgba(0,0,0,0.18) inset; }
.term__path {
  margin-left: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: rgba(244, 239, 229, 0.55);
}
.term__body {
  margin: 0;
  padding: 14px 16px 16px;
  font-family: var(--mono);
  font-size: 12.5px;
  line-height: 1.55;
  color: rgba(244, 239, 229, 0.86);
  white-space: pre-wrap;
}
.term__body code { font-family: inherit; color: inherit; }
.t-prompt { color: var(--moss); }
.t-cmd    { color: #c5e8ba; }
.t-arg    { color: var(--cream-3); }
.t-ok     { color: #6ddc9a; }
.t-num    { color: #f5b66a; }
.t-str    { color: #f0c987; }
.t-cur {
  display: inline-block;
  width: 0.55em;
  background: var(--moss);
  color: transparent;
  animation: caretBlink 1.05s steps(1) infinite;
}
@media (max-width: 1100px) {
  .term { display: none; }
}

.retreat-card {
  position: relative;
}

/* Form heading: terminal prompt prefix */
.form__prompt {
  display: inline-block;
  margin-right: 8px;
  font-family: var(--mono);
  font-size: 0.78em;
  letter-spacing: 0.04em;
  color: var(--moss);
  vertical-align: 0.06em;
}

/* Footer easter egg: $ git commit ... */
.footer__shell {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.02em;
  color: rgba(244, 239, 229, 0.42);
}
.footer__shell .t-prompt { color: var(--moss); }
.footer__shell .t-str    { color: rgba(245, 182, 106, 0.78); }
@media (max-width: 720px) {
  .footer__shell { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .caret, .t-cur { animation: none; }
  .term { opacity: 1; transform: none; animation: none; }
}
