/* Devops Tools — premium dark + gold */
:root {
  --ink: #0c0b09;
  --ink-2: #141210;
  --ink-3: #1c1914;
  --ink-4: #2a241c;
  --gold: #d4af37;
  --gold-soft: #e8d48b;
  --gold-deep: #a8871f;
  --cream: #f5f0e8;
  --muted: #b8b0a0;
  --muted-2: #8a8274;
  --line: rgba(212, 175, 55, 0.22);
  --danger: #e8a090;
  --ok: #9ec9a0;
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Outfit", "Segoe UI", sans-serif;
  --max: 1120px;
  --header: 4.5rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--cream);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(212, 175, 55, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(168, 135, 31, 0.08), transparent 50%),
    var(--ink);
  min-height: 100vh;
}

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

a {
  color: var(--gold-soft);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
  transition: color 0.2s var(--ease);
}

a:hover {
  color: var(--gold);
}

h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: var(--cream);
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  margin: 0 0 0.6em;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin: 0 0 0.55em;
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  margin: 0 0 0.4em;
}

p {
  margin: 0 0 1em;
  color: var(--muted);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--gold);
  color: var(--ink);
  padding: 0.6rem 1rem;
  z-index: 1000;
  font-weight: 600;
  text-decoration: none;
}

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

.inline-error {
  background: #3a1f1a;
  color: var(--danger);
  border-bottom: 1px solid rgba(232, 160, 144, 0.35);
  padding: 0.75rem 1.25rem;
  font-size: 0.95rem;
}

.wrap {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.wrap-narrow {
  width: min(100% - 2.5rem, 760px);
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12, 11, 9, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header);
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--cream);
}

.brand-mark {
  width: 1.55rem;
  height: 1.55rem;
  border: 1px solid var(--gold);
  background:
    linear-gradient(135deg, transparent 45%, var(--gold) 45%, var(--gold) 55%, transparent 55%),
    linear-gradient(45deg, var(--ink-3), var(--ink-4));
  transform: rotate(45deg);
}

.brand-name {
  font-family: var(--serif);
  font-size: 1.45rem;
  letter-spacing: 0.04em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}

.site-nav a:hover {
  color: var(--gold-soft);
}

.site-nav .nav-cta {
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  padding: 0.45rem 0.95rem;
  text-decoration: none;
  font-weight: 600;
}

.site-nav .nav-cta:hover {
  color: var(--ink);
  filter: brightness(1.05);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  width: 2.6rem;
  height: 2.6rem;
  padding: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.35rem;
}

.nav-toggle-bar {
  display: block;
  width: 1.1rem;
  height: 1px;
  background: var(--gold);
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: var(--header) 0 auto 0;
    background: var(--ink-2);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.4rem;
    gap: 0;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
  }

  .site-nav[data-open="true"] {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .site-nav .nav-cta {
    margin-top: 0.75rem;
    text-align: center;
    border: none;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 0.85rem 1.4rem;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold-deep));
  color: var(--ink);
  border-color: transparent;
}

.btn-gold:hover {
  color: var(--ink);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: var(--line);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-soft);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

/* Hero compositions */
.hero-editorial {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: calc(100vh - var(--header));
  max-height: 920px;
}

.hero-editorial-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem);
  background:
    linear-gradient(160deg, var(--ink-2), var(--ink));
  border-right: 1px solid var(--line);
  animation: rise 0.9s var(--ease) both;
}

.hero-kicker {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1.2rem;
}

.hero-editorial h1 {
  font-weight: 500;
  max-width: 11ch;
}

.hero-editorial .lede {
  font-size: 1.12rem;
  max-width: 34ch;
  color: var(--muted);
}

.hero-editorial-visual {
  position: relative;
  overflow: hidden;
  animation: fade 1.2s var(--ease) 0.15s both;
}

.hero-editorial-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
  filter: saturate(0.85) contrast(1.05);
}

.hero-editorial-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 11, 9, 0.35), transparent 40%);
  pointer-events: none;
}

.page-hero {
  padding: clamp(3rem, 7vw, 5.5rem) 0 2.5rem;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(212, 175, 55, 0.06), transparent 70%);
  animation: rise 0.7s var(--ease) both;
}

.page-hero h1 {
  max-width: 16ch;
}

.page-hero .lede {
  max-width: 52ch;
  font-size: 1.1rem;
}

@media (max-width: 900px) {
  .hero-editorial {
    grid-template-columns: 1fr;
    max-height: none;
  }

  .hero-editorial-copy {
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding-block: 3rem;
  }

  .hero-editorial h1 {
    max-width: none;
  }
}

/* Sections */
.section {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.section-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.8rem;
}

.section-head {
  max-width: 40rem;
  margin-bottom: 2.5rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

@media (max-width: 800px) {
  .split {
    grid-template-columns: 1fr;
  }
}

.frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
}

.frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.frame:hover img {
  transform: scale(1.03);
}

.gold-rule {
  width: 3.5rem;
  height: 1px;
  background: var(--gold);
  margin: 1.25rem 0;
  border: none;
}

/* Feature / benefit strips */
.benefit-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.benefit-item {
  padding: 2rem 1.5rem;
  border-right: 1px solid var(--line);
  animation: rise 0.8s var(--ease) both;
}

.benefit-item:nth-child(2) {
  animation-delay: 0.1s;
}

.benefit-item:nth-child(3) {
  animation-delay: 0.2s;
}

.benefit-item:last-child {
  border-right: none;
}

.benefit-item h3 {
  font-size: 1.45rem;
  margin-bottom: 0.6rem;
}

.benefit-num {
  font-family: var(--serif);
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

@media (max-width: 800px) {
  .benefit-strip {
    grid-template-columns: 1fr;
  }

  .benefit-item {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .benefit-item:last-child {
    border-bottom: none;
  }
}

/* Course / card grids — interaction containers */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (max-width: 900px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }
}

.course-tile {
  display: flex;
  flex-direction: column;
  background: var(--ink-2);
  border: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
  height: 100%;
}

.course-tile:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  color: inherit;
}

.course-tile img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.course-tile-body {
  padding: 1.35rem 1.4rem 1.6rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.course-tile h3 {
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.course-meta {
  margin-top: auto;
  padding-top: 1rem;
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.04em;
}

/* Proof / metrics */
.proof-band {
  background: var(--ink-2);
  border-block: 1px solid var(--line);
  padding: 2.75rem 0;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.proof-grid strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  color: var(--gold-soft);
  margin-bottom: 0.35rem;
}

.proof-grid span {
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 700px) {
  .proof-grid {
    grid-template-columns: 1fr;
  }
}

/* Testimonials */
.quote-block {
  padding: 2rem;
  border-left: 2px solid var(--gold);
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.06), transparent);
  margin-bottom: 1.5rem;
}

.quote-block p {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--cream);
  line-height: 1.4;
}

.quote-attr {
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--muted-2);
  margin: 0;
}

.quote-compact {
  padding: 1.5rem;
  border: 1px solid var(--line);
  background: var(--ink-2);
}

.quote-compact p {
  font-size: 1rem;
  color: var(--muted);
  font-family: var(--sans);
}

.stars {
  color: var(--gold);
  letter-spacing: 0.15em;
  font-size: 0.85rem;
  margin-bottom: 0.6rem;
}

/* Pricing */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

.price-tier {
  background: var(--ink-2);
  border: 1px solid var(--line);
  padding: 2rem 1.6rem;
  display: flex;
  flex-direction: column;
}

.price-tier.is-featured {
  border-color: var(--gold);
  background:
    linear-gradient(180deg, rgba(212, 175, 55, 0.1), transparent 40%),
    var(--ink-3);
  transform: translateY(-0.5rem);
}

.price-tier h3 {
  margin-bottom: 0.35rem;
}

.price-amount {
  font-family: var(--serif);
  font-size: 2.6rem;
  color: var(--gold-soft);
  margin: 1rem 0 0.35rem;
}

.price-amount span {
  font-size: 1rem;
  color: var(--muted-2);
}

.price-tier ul {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 1.75rem;
  flex: 1;
}

.price-tier li {
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .price-grid {
    grid-template-columns: 1fr;
  }

  .price-tier.is-featured {
    transform: none;
  }
}

/* Blog */
.blog-list article {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.5rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}

.blog-list article img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--line);
}

.blog-list .meta {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.blog-list h2 {
  font-size: 1.55rem;
  margin-bottom: 0.4rem;
}

.blog-list h2 a {
  color: var(--cream);
  text-decoration: none;
}

.blog-list h2 a:hover {
  color: var(--gold-soft);
}

@media (max-width: 700px) {
  .blog-list article {
    grid-template-columns: 1fr;
  }
}

.article-body {
  padding: 3rem 0 4rem;
}

.article-body .meta {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.article-cover {
  margin: 2rem 0 2.5rem;
  border: 1px solid var(--line);
}

.article-cover img {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
}

.article-body h2 {
  margin-top: 2rem;
}

/* Forms */
.field {
  margin-bottom: 1.25rem;
}

.field label {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--cream);
  font-size: 0.92rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--ink);
  border: 1px solid var(--line);
  color: var(--cream);
  padding: 0.85rem 1rem;
  font: inherit;
  transition: border-color 0.2s var(--ease);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field-error {
  color: var(--danger);
  font-size: 0.88rem;
  margin: 0.35rem 0 0;
  min-height: 1.2em;
}

.form-status {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
}

.form-status--success {
  background: rgba(158, 201, 160, 0.12);
  color: var(--ok);
  border: 1px solid rgba(158, 201, 160, 0.35);
}

.form-status--error {
  background: rgba(232, 160, 144, 0.1);
  color: var(--danger);
  border: 1px solid rgba(232, 160, 144, 0.35);
}

.form-status--pending {
  background: rgba(212, 175, 55, 0.08);
  color: var(--gold-soft);
  border: 1px solid var(--line);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: start;
}

@media (max-width: 800px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

.contact-aside {
  padding: 1.75rem;
  border: 1px solid var(--line);
  background: var(--ink-2);
}

.contact-aside h2 {
  font-size: 1.4rem;
}

.contact-aside p {
  font-size: 0.95rem;
}

/* Legal */
.legal-body {
  padding: 3rem 0 4.5rem;
}

.legal-body h2 {
  margin-top: 2.25rem;
  font-size: 1.55rem;
}

.legal-body ul,
.legal-body ol {
  color: var(--muted);
  padding-left: 1.2rem;
}

.legal-body li {
  margin-bottom: 0.45rem;
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.92rem;
}

.cookie-table th,
.cookie-table td {
  border: 1px solid var(--line);
  padding: 0.75rem 0.85rem;
  text-align: left;
  vertical-align: top;
}

.cookie-table th {
  background: var(--ink-3);
  color: var(--gold-soft);
  font-weight: 600;
}

.cookie-table td {
  color: var(--muted);
}

/* FAQ */
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
}

.faq summary {
  cursor: pointer;
  color: var(--cream);
  font-family: var(--serif);
  font-size: 1.2rem;
  list-style: none;
}

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

.faq summary::after {
  content: "+";
  float: right;
  color: var(--gold);
}

.faq details[open] summary::after {
  content: "–";
}

.faq details p {
  margin-top: 0.75rem;
}

/* Modules */
.module-list {
  counter-reset: mod;
  list-style: none;
  padding: 0;
  margin: 0;
}

.module-list li {
  counter-increment: mod;
  padding: 1.25rem 0 1.25rem 3.5rem;
  border-bottom: 1px solid var(--line);
  position: relative;
}

.module-list li::before {
  content: counter(mod, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 1.25rem;
  font-family: var(--serif);
  color: var(--gold);
  font-size: 1.2rem;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--ink-2);
  margin-top: 2rem;
  padding: 3.5rem 0 1.5rem;
}

.footer-grid {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 2rem;
}

.footer-logo {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--cream);
  margin: 0 0 0.75rem;
}

.footer-tag {
  font-size: 0.95rem;
  max-width: 28ch;
}

.footer-heading {
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1rem;
  font-family: var(--sans);
  font-weight: 600;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  display: inline-block;
  padding: 0.28rem 0;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--gold-soft);
}

.footer-address,
.footer-contact {
  font-size: 0.9rem;
  color: var(--muted);
}

.footer-contact a {
  text-decoration: none;
}

.footer-bottom {
  width: min(100% - 2.5rem, var(--max));
  margin: 2.5rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.85rem;
  color: var(--muted-2);
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 200;
  max-width: 640px;
  margin-inline: auto;
  background: var(--ink-3);
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity 0.28s var(--ease), transform 0.28s var(--ease);
}

.cookie-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cookie-banner.is-hiding {
  opacity: 0;
  transform: translateY(0.6rem);
}

.cookie-banner-inner {
  padding: 1.25rem 1.35rem;
}

.cookie-banner p {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.cookie-banner-actions {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

/* 404 */
.error-page {
  min-height: calc(100vh - var(--header) - 12rem);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 4rem 1.5rem;
}

.error-page .code {
  font-family: var(--serif);
  font-size: clamp(5rem, 15vw, 9rem);
  color: var(--gold);
  line-height: 1;
  margin: 0;
}

/* Misc */
.instructor {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1.5rem;
  align-items: center;
  padding: 1.5rem;
  border: 1px solid var(--line);
  background: var(--ink-2);
}

.instructor img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--line);
}

@media (max-width: 560px) {
  .instructor {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .instructor img {
    margin-inline: auto;
  }
}

.cta-band {
  text-align: center;
  padding: clamp(3rem, 7vw, 5rem) 1.5rem;
  border-block: 1px solid var(--line);
  background:
    radial-gradient(ellipse at center, rgba(212, 175, 55, 0.12), transparent 65%),
    var(--ink-2);
}

.cta-band h2 {
  max-width: 18ch;
  margin-inline: auto;
}

.pill-note {
  display: inline-block;
  font-size: 0.8rem;
  color: var(--muted-2);
  margin-top: 0.75rem;
}

.reveal {
  animation: rise 0.85s var(--ease) both;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
