/* CarbonFish promotional site — static, no build step */

:root {
  --bg-deep: #0a1210;
  --bg-mid: #122220;
  --surface: rgba(255, 255, 255, 0.06);
  --surface-strong: rgba(255, 255, 255, 0.1);
  --border: rgba(255, 255, 255, 0.12);
  --text: #e8f0ec;
  --text-muted: #8aa399;
  --accent: #3ecf8e;
  --accent-dim: #2a9d6a;
  --glow: rgba(62, 207, 142, 0.35);
  --radius-lg: 20px;
  --radius-md: 12px;
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-display: "Outfit", var(--font-sans);
  --max-width: 1120px;
  --shadow-soft: 0 24px 80px rgba(0, 0, 0, 0.45);
  /* Header: light band so the full-color logo (teal/blue on cream) stays visible vs dark page */
  --header-bg-top: #f6f3ed;
  --header-bg-bottom: #ebe4d9;
  --header-border: rgba(45, 55, 50, 0.12);
  --header-nav: #2c3834;
  --header-nav-hover: #1a6b4a;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg-deep);
  background-image:
    radial-gradient(ellipse 120% 80% at 50% -20%, var(--glow), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 50%, rgba(42, 157, 106, 0.12), transparent),
    linear-gradient(180deg, var(--bg-mid) 0%, var(--bg-deep) 45%);
}

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: #7fe0b3;
}

a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 999;
  padding: 0.75rem 1rem;
  background: var(--accent);
  color: var(--bg-deep);
  font-weight: 600;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.site-beta-ribbon {
  position: fixed;
  top: 2.25rem;
  right: -3.25rem;
  z-index: 100;
  width: 11rem;
  padding: 0.4rem 0;
  transform: rotate(45deg);
  transform-origin: center;
  pointer-events: none;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-align: center;
  text-transform: uppercase;
  color: rgba(10, 18, 16, 0.92);
  background: linear-gradient(90deg, #c9a227 0%, #e8d48a 50%, #c9a227 100%);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  overflow: visible;
  backdrop-filter: blur(12px);
  background: linear-gradient(180deg, var(--header-bg-top) 0%, var(--header-bg-bottom) 100%);
  border-bottom: 1px solid var(--header-border);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
  color: var(--header-nav);
}

.site-header__inner {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.15rem 1.35rem;
  min-height: 6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-header__brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.site-header__logo {
  height: clamp(60px, 11vw, 92px);
  width: auto;
  max-width: min(100%, 420px);
  display: block;
  object-fit: contain;
}

.site-header__menu-toggle {
  display: none;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  border: 1px solid var(--header-border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.5);
  color: var(--header-nav);
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.site-header__menu-toggle:hover {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(45, 55, 50, 0.22);
}

.site-header__menu-toggle:focus-visible {
  outline: 2px solid var(--accent-dim);
  outline-offset: 3px;
}

.site-header__menu-bars {
  position: relative;
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
}

.site-header__menu-bars::before,
.site-header__menu-bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
}

.site-header__menu-bars::before {
  top: -7px;
}

.site-header__menu-bars::after {
  top: 7px;
}

.site-header__menus {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  gap: 1rem 1.25rem;
  min-width: 0;
}

.site-header__nav {
  display: flex;
  gap: 1.15rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  min-width: 0;
}

.site-header__nav a {
  color: var(--header-nav);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
}

.site-header__nav a:hover {
  color: var(--header-nav-hover);
}

.site-header__nav a:focus-visible {
  outline: 2px solid var(--accent-dim);
  outline-offset: 3px;
}

/* Header purchase CTA: flat brand green, white type */
.site-header__purchase {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.35rem;
  border-radius: 999px;
  font-family: "Outfit", "DM Sans", system-ui, sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  white-space: nowrap;
  color: #fff;
  text-decoration: none;
  text-shadow: 0 1px 1px rgba(10, 18, 16, 0.2);
  background: var(--accent);
  border: none;
  box-shadow: none;
  transition: background-color 0.18s ease, color 0.18s ease;
}

.site-header__purchase:hover {
  color: #fff;
  background: var(--accent-dim);
}

.site-header__purchase:focus-visible {
  outline: 2px solid var(--accent-dim);
  outline-offset: 3px;
}

.site-header__purchase[aria-current="page"] {
  background: var(--accent-dim);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.55);
}

@media (max-width: 767px) {
  .site-header__menu-toggle {
    display: flex;
  }

  .site-header__menus {
    display: none;
    position: absolute;
    z-index: 60;
    left: 0;
    right: 0;
    top: calc(100% - 1px);
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    flex: none;
    padding: 0.35rem 0 0.85rem;
    margin: 0;
    border-bottom: 1px solid var(--header-border);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    background: linear-gradient(180deg, var(--header-bg-top) 0%, var(--header-bg-bottom) 100%);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
  }

  .site-header__nav {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: flex-start;
    width: 100%;
    gap: 0;
    flex: none;
  }

  .site-header__nav a {
    padding: 0.85rem 1.35rem;
    border-top: 1px solid rgba(45, 55, 50, 0.08);
    font-size: 1.08rem;
  }

  .site-header__purchase {
    margin: 0.65rem 1.35rem 0.15rem;
    padding: 0.75rem 1.25rem;
    justify-content: center;
    font-size: 1.02rem;
  }

  .site-header__inner--open .site-header__menus {
    display: flex;
  }
}

.hero {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3.5rem 1.25rem 4rem;
  text-align: center;
}

.hero--split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  text-align: left;
}

@media (min-width: 900px) {
  .hero--split {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 1fr);
    gap: 2.75rem;
  }
}

.hero__text {
  min-width: 0;
}

.hero--split h1 {
  margin-left: 0;
  margin-right: 0;
  max-width: 22ch;
}

@media (max-width: 899px) {
  .hero--split {
    text-align: center;
  }

  .hero--split h1 {
    margin-left: auto;
    margin-right: auto;
  }

  .hero--split .hero__lead {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
  }
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  align-items: center;
}

.hero__cta--secondary {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent-dim);
  box-shadow: none;
}

.hero__cta--secondary:hover {
  background: rgba(62, 207, 142, 0.12);
  color: #7fe0b3;
  filter: none;
}

.hero__visual {
  min-width: 0;
}

.hero__visual-card {
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  text-decoration: none;
  color: var(--text-muted);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.hero__visual-card:hover {
  border-color: rgba(62, 207, 142, 0.35);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.4);
}

.hero__visual-card:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.hero__chart {
  display: block;
  line-height: 0;
  background: #f0ebe3;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.hero__chart-svg {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 520 / 400;
}

.hero__visual-caption {
  display: block;
  padding: 0.85rem 1rem;
  font-size: 0.88rem;
  text-align: center;
  border-top: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.2);
}

.cost-compare {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem 1.25rem 3.5rem;
}

.cost-compare__inner {
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
}

.cost-compare__lead {
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0 0 1.25rem;
  max-width: 75ch;
}

.cost-compare__lead strong {
  color: var(--text);
}

.cost-compare__list {
  margin: 0 0 1.25rem;
  padding-left: 1.35rem;
  color: var(--text-muted);
  max-width: 75ch;
}

.cost-compare__list li {
  margin-bottom: 0.65rem;
  line-height: 1.55;
}

.cost-compare__list strong {
  color: var(--text);
}

.cost-compare__list--tight {
  margin-top: 0.75rem;
}

.cost-compare__list--tight li {
  margin-bottom: 0.45rem;
}

.cost-compare__subhead {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.5vw, 1.35rem);
  font-weight: 700;
  margin: 2rem 0 0.85rem;
  letter-spacing: -0.02em;
  color: var(--text);
  max-width: 50ch;
}

.cost-compare__callout {
  margin: 0 0 1rem;
  padding: 1.1rem 1.15rem;
  border-left: 4px solid rgba(200, 122, 75, 0.85);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: rgba(200, 122, 75, 0.08);
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 75ch;
}

.cost-compare__callout strong {
  color: var(--text);
}

.cost-triptych-block {
  margin: 1.5rem 0;
  padding: 1.4rem 1.35rem 1.5rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(
    165deg,
    rgba(200, 122, 75, 0.09) 0%,
    rgba(0, 0, 0, 0.2) 45%,
    rgba(18, 34, 32, 0.35) 100%
  );
  border: 1px solid rgba(200, 122, 75, 0.28);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
}

.cost-triptych-block__header {
  font-family: var(--font-display);
  font-size: clamp(1.08rem, 2.5vw, 1.35rem);
  font-weight: 700;
  margin: 0 0 1.2rem;
  padding-bottom: 1rem;
  text-align: center;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.3;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cost-triptych-block__header .cost-triptych-block__em {
  color: rgba(232, 160, 96, 0.95);
  font-style: normal;
}

.cost-triptych {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
  margin: 0;
  max-width: 100%;
}

@media (min-width: 768px) {
  .cost-triptych {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
    align-items: stretch;
  }
}

.cost-triptych__panel {
  margin: 0;
  padding: 1.25rem 1.2rem 1.3rem;
  border-radius: var(--radius-md);
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid var(--border);
  border-top: 3px solid rgba(62, 207, 142, 0.55);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.2);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.cost-triptych__panel:nth-child(2) {
  border-top-color: rgba(56, 189, 248, 0.65);
}

.cost-triptych__panel:nth-child(3) {
  border-top-color: rgba(234, 140, 47, 0.75);
}

.cost-triptych__panel:hover {
  border-color: rgba(62, 207, 142, 0.25);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
  transform: translateY(-2px);
}

.cost-triptych__panel:nth-child(2):hover {
  border-color: rgba(56, 189, 248, 0.3);
}

.cost-triptych__panel:nth-child(3):hover {
  border-color: rgba(234, 140, 47, 0.35);
}

.cost-triptych__title {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.12rem);
  font-weight: 700;
  margin: 0 0 0.7rem;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.25;
}

.cost-triptych__text {
  margin: 0;
  font-size: 0.93rem;
  line-height: 1.58;
  color: var(--text-muted);
}

@media (prefers-reduced-motion: reduce) {
  .cost-triptych__panel:hover {
    transform: none;
  }
}

.cost-compare__chart-head {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  font-weight: 700;
  margin: 2rem 0 0.5rem;
  text-align: center;
  color: var(--text);
  letter-spacing: -0.02em;
}

.cost-compare__list + .cost-compare__chart-head {
  margin-top: 2.25rem;
}

.cost-compare__narrative-head {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.5vw, 1.35rem);
  font-weight: 700;
  margin: 2rem 0 0.85rem;
  letter-spacing: -0.02em;
  color: var(--text);
  max-width: 52ch;
}

.cost-compare__plans-note {
  margin: 0 0 0.25rem;
  font-size: 0.98rem;
  color: var(--text-muted);
  max-width: 75ch;
}

.cost-compare__plans-note a {
  color: var(--accent);
}

/* Pricing section — graphical plan tiles */
.pricing-intro {
  margin: 0 0 2rem;
  padding: 1.5rem 1.35rem 1.35rem;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(62, 207, 142, 0.09) 0%, rgba(18, 34, 32, 0.55) 42%, rgba(30, 95, 120, 0.08) 100%);
  border: 1px solid rgba(62, 207, 142, 0.22);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.04) inset,
    0 20px 56px rgba(0, 0, 0, 0.28);
}

.pricing-intro__title {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1.1rem;
  text-align: center;
}

.pricing-intro__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}

@media (min-width: 560px) {
  .pricing-intro__grid {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }
}

.pricing-intro__card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(0, 0, 0, 0.32);
  border: 1px solid var(--border);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.pricing-intro__card:hover {
  border-color: rgba(62, 207, 142, 0.35);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
  transform: translateY(-2px);
}

.pricing-intro__card--featured {
  border-color: rgba(62, 207, 142, 0.4);
  background: linear-gradient(165deg, rgba(62, 207, 142, 0.07) 0%, rgba(0, 0, 0, 0.32) 55%);
  box-shadow: 0 0 0 1px rgba(62, 207, 142, 0.12);
}

.pricing-intro__accent {
  height: 5px;
  width: 100%;
  flex-shrink: 0;
}

.pricing-intro__accent--solo {
  background: linear-gradient(90deg, var(--accent-dim) 0%, var(--accent) 100%);
}

.pricing-intro__accent--unlimited {
  background: linear-gradient(90deg, #1e6b78 0%, var(--accent-dim) 45%, var(--accent) 100%);
}

.pricing-intro__card-inner {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.2rem 1.25rem 1.3rem;
  flex: 1;
  min-height: 0;
}

.pricing-intro__card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 0.15rem;
}

.pricing-intro__tier {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.pricing-intro__badge {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  color: var(--bg-deep);
  background: linear-gradient(135deg, #3ecf8e 0%, var(--accent-dim) 100%);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
}

.pricing-intro__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0;
  line-height: 1.25;
}

.pricing-intro__price {
  margin: 0.35rem 0 0.5rem;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--accent);
  line-height: 1.1;
}

.pricing-intro__per {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-muted);
}

.pricing-intro__desc {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--text-muted);
  margin-top: auto;
  padding-top: 0.35rem;
}

.pricing-intro .cost-compare__plans-note {
  margin-top: 1.35rem;
  margin-bottom: 0;
  text-align: center;
  max-width: none;
}

@media (prefers-reduced-motion: reduce) {
  .pricing-intro__card:hover {
    transform: none;
  }
}

.cost-compare__chart-source {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0 auto 0.85rem;
  max-width: 72ch;
  text-align: center;
  line-height: 1.55;
}

.cost-compare__chart-source a {
  color: var(--accent);
}

.cost-bar-chart {
  margin: 0 auto 1.75rem;
  max-width: min(100%, 640px);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #f0ebe3;
  line-height: 0;
}

.cost-bar-chart--combined {
  max-width: min(100%, 760px);
  padding: 1.5rem 1.75rem 1.75rem;
  border-radius: var(--radius-lg);
}

.cost-bar-chart--combined svg {
  border-radius: 14px;
}

.cost-bar-chart svg {
  display: block;
  width: 100%;
  height: auto;
}

.cost-compare__note {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  font-style: italic;
  max-width: 75ch;
  opacity: 0.95;
}

.hero__badge {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--surface);
  border: 1px solid var(--border);
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
}

.hero__lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 42ch;
  margin: 0 auto 2rem;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--bg-deep);
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dim) 100%);
  text-decoration: none;
  box-shadow: var(--shadow-soft), 0 0 40px var(--glow);
  border: none;
  cursor: pointer;
}

.hero__cta:hover {
  filter: brightness(1.08);
  color: var(--bg-deep);
}

.hero__cta:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.pillars {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.pillar {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.pillar:hover {
  border-color: rgba(62, 207, 142, 0.35);
  transform: translateY(-2px);
}

.pillar h2 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.pillar p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  text-align: center;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.section-sub {
  text-align: center;
  color: var(--text-muted);
  max-width: 50ch;
  margin: 0 auto 2.5rem;
  font-size: 1rem;
}

.features {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem 1.25rem 3rem;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 0.75rem;
}

.features__item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border);
  font-size: 0.92rem;
  color: var(--text-muted);
}

.features__item-icons {
  flex-shrink: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: center;
  align-content: flex-start;
  margin-top: 0.15rem;
}

.features__item-icons--cloud {
  padding: 0.1rem 0;
}

.features__icon {
  display: block;
  width: 32px;
  height: 32px;
}

.features__brand-mark {
  display: block;
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.features__brand-mark--lg {
  width: 32px;
  height: 32px;
}

.features__item-body {
  min-width: 0;
  flex: 1;
}

.features__item-title {
  display: block;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.features__item-desc {
  display: block;
  line-height: 1.45;
}

.gallery {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem 1.25rem 4rem;
}

.gallery .section-title {
  margin-bottom: 2.5rem;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: 1.25rem;
}

.gallery figure {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  transition: border-color 0.2s ease;
}

.gallery figure:hover {
  border-color: rgba(62, 207, 142, 0.25);
}

.gallery figure button {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: #0d1614;
  cursor: zoom-in;
  font: inherit;
  color: inherit;
}

.gallery figure button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.gallery img {
  width: 100%;
  height: auto;
  vertical-align: middle;
  display: block;
  min-height: 120px;
  object-fit: cover;
  object-position: top center;
  background: linear-gradient(145deg, #1a2e28, #0d1614);
}

.gallery figcaption {
  padding: 0.85rem 1rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
}

.gallery figcaption strong {
  display: block;
  color: var(--text);
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 2rem 1.25rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.site-footer p {
  margin: 0.35rem 0;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(6px);
}

.lightbox[hidden] {
  display: none;
}

.lightbox__inner {
  max-width: min(96vw, 1400px);
  max-height: 92vh;
  overflow: auto;
  margin: 0 auto;
}

.lightbox__counter {
  margin: 0 0 0.65rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
}

.lightbox__inner img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.lightbox__close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 210;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface-strong);
  color: var(--text);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox__close:hover {
  background: var(--surface);
}

.lightbox__close:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.lightbox__nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 210;
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface-strong);
  color: var(--text);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox__nav:hover {
  background: var(--surface);
  border-color: rgba(62, 207, 142, 0.4);
}

.lightbox__nav:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.lightbox__nav--prev {
  left: max(0.5rem, env(safe-area-inset-left));
}

.lightbox__nav--next {
  right: max(0.5rem, env(safe-area-inset-right));
}

@media (max-width: 520px) {
  .lightbox__nav {
    width: 42px;
    height: 42px;
    font-size: 1.65rem;
  }

  .lightbox__nav--prev {
    left: 0.25rem;
  }

  .lightbox__nav--next {
    right: 0.25rem;
  }
}

/* Purchase & Support subpages */
.page-main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2.5rem 1.25rem 4rem;
}

.page-hero {
  margin-bottom: 2rem;
  text-align: center;
}

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
  color: var(--text);
}

.page-hero__lead {
  margin: 0 auto;
  max-width: 52ch;
  color: var(--text-muted);
  font-size: 1.08rem;
  line-height: 1.6;
}

.page-hero__lead a {
  color: var(--accent);
}

.page-hero__email {
  margin: 1.25rem 0 0;
  font-size: 1rem;
  color: var(--text-muted);
}

.page-hero__email-label {
  margin-right: 0.35rem;
}

.page-hero__email-value a {
  color: var(--accent);
  font-weight: 600;
}

.site-beta-banner {
  max-width: 560px;
  margin: 0 auto 1.5rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  background: rgba(201, 162, 39, 0.12);
  border: 1px solid rgba(232, 212, 138, 0.35);
}

.site-beta-banner__text {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.55;
  text-align: center;
}

.site-beta-banner__text strong {
  color: var(--text);
}

.page-panel {
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  max-width: 560px;
  margin: 0 auto;
}

.page-panel--checkout {
  max-width: min(100%, 720px);
}

.page-panel__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 1rem;
  color: var(--text);
}

.page-panel__subtitle {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 1.5rem 0 0.5rem;
  color: var(--text);
}

.page-panel__text {
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.page-panel__text code {
  font-size: 0.88em;
  padding: 0.12em 0.35em;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.35);
  color: #c8f5df;
}

.page-panel__actions {
  margin: 1.25rem 0;
}

.page-panel__note {
  margin: 1.25rem 0 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.purchase-flow-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.purchase-flow-form__subhead {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 0.25rem;
  color: var(--text);
}

.plan-picker {
  margin: 0;
  padding: 0;
  border: none;
  min-inline-size: 0;
}

.plan-picker__legend {
  padding: 0;
  margin: 0 0 1rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
}

.plan-picker__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 560px) {
  .plan-picker__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.plan-card {
  display: block;
  margin: 0;
  cursor: pointer;
  border-radius: var(--radius-lg);
  border: 2px solid var(--border);
  background: var(--surface);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.plan-card:hover {
  border-color: rgba(62, 207, 142, 0.35);
}

.plan-card:focus-within {
  outline: 2px solid var(--accent-dim);
  outline-offset: 3px;
}

.plan-card:has(.plan-card__input:checked) {
  border-color: var(--accent);
  background: rgba(62, 207, 142, 0.08);
  box-shadow: 0 0 0 1px rgba(62, 207, 142, 0.25), 0 12px 40px rgba(0, 0, 0, 0.25);
}

.plan-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.25rem 1.35rem;
  min-height: 9rem;
}

.plan-card__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  color: var(--text);
}

.plan-card__price {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.03em;
}

.plan-card__per {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
}

.plan-card__desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin-top: auto;
}

.purchase-summary {
  margin: 1rem 0 1.25rem;
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius-md);
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border);
}

.purchase-summary__dl {
  margin: 0;
  display: grid;
  gap: 1rem;
}

.purchase-summary__dl > div {
  margin: 0;
}

.purchase-summary__dl dt {
  margin: 0 0 0.2rem;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

.purchase-summary__dl dd {
  margin: 0;
  font-size: 1rem;
  color: var(--text);
}

.purchase-payment__actions {
  margin: 1rem 0 0;
}

.purchase-payment__back {
  margin-top: 1rem;
}

.purchase-back-btn {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: var(--accent);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.purchase-back-btn:hover {
  color: #7fe0b3;
}

.purchase-back-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.purchase-form__continue {
  align-self: flex-start;
  margin-top: 0.25rem;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
}

.purchase-form__continue:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.purchase-stripe-config-msg code {
  font-size: 0.88em;
  padding: 0.1em 0.35em;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.22);
  color: var(--text);
}

.hero__cta.purchase-checkout-btn--inactive {
  opacity: 0.65;
  cursor: not-allowed;
}

.hero__cta.purchase-checkout-btn--inactive:hover {
  filter: none;
  transform: none;
}

.page-panel__intro {
  margin: 0 0 1.25rem;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.page-panel__intro strong {
  color: var(--text);
}

.support-form {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.support-form__label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
}

.support-form__label span {
  color: var(--text-muted);
  font-weight: 600;
}

.support-form__input {
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.35);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 1rem;
}

.support-form__input:focus-visible {
  outline: 2px solid var(--accent-dim);
  outline-offset: 2px;
  border-color: rgba(62, 207, 142, 0.45);
}

.support-form__textarea {
  resize: vertical;
  min-height: 8rem;
}

.support-form__honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.support-form__status {
  margin: 0 0 0.75rem;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  line-height: 1.45;
}

.support-form__status--ok {
  background: rgba(62, 207, 142, 0.12);
  border: 1px solid rgba(62, 207, 142, 0.35);
  color: var(--text);
}

.support-form__status--err {
  background: rgba(220, 80, 80, 0.12);
  border: 1px solid rgba(220, 100, 100, 0.35);
  color: #f0c4c4;
}

.support-form__submit {
  align-self: flex-start;
  border: none;
  cursor: pointer;
}

.support-form[aria-disabled="true"] .support-form__submit {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
