/* ============================================================
   ATAIHQ — /websites page styles
   Loads AFTER /css/styles.css and reuses its tokens & primitives
   (.container, .btn, .eyebrow, nav, footer, .media-frame …).
   All page-specific classes are prefixed ws-.
   ============================================================ */

.ws-grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Shared section headings */
.ws-section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  max-width: 24ch;
}
.ws-section-sub {
  margin-top: 1.1rem;
  color: var(--text-dim);
  max-width: 58ch;
}
.ws-step-index {
  color: var(--purple);
  margin-right: 0.8rem;
}
.ws-group-label {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  margin: 3.2rem 0 1.3rem;
  font-weight: 400;
}

/* ============================================================
   HERO — pinned scroll-scrub moment
   ============================================================ */
.ws-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.ws-hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.ws-hero__veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 72% 22%, rgba(123, 47, 255, 0.1), transparent 60%),
    radial-gradient(ellipse 70% 60% at 18% 82%, rgba(0, 170, 255, 0.08), transparent 60%),
    linear-gradient(to bottom, rgba(8, 9, 13, 0.15), rgba(8, 9, 13, 0) 40%, rgba(8, 9, 13, 0.02) 70%, var(--bg) 98%);
  pointer-events: none;
}
.ws-hero__inner {
  position: relative;
  z-index: 2;
  padding-block: 8rem 6rem;
}
.ws-hero__eyebrow { margin-bottom: 2rem; }

/* Manual break point keeps the eyebrow in two balanced lines on narrow
   screens instead of stranding the last word alone; hidden on desktop. */
.ws-eyebrow-break { display: none; }
@media (max-width: 480px) {
  .ws-eyebrow-break { display: inline; }
  .ws-hero__eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    align-items: flex-start;
  }
  .ws-hero__eyebrow .eyebrow__dot { margin-top: 0.3em; }
}

/* Fixed headline with a second line revealed underneath on scrub */
.ws-hero__titles { position: relative; }
.ws-hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 6.6vw, 5.2rem);
  line-height: 1.06;
  letter-spacing: -0.015em;
  max-width: 16ch;
  margin: 0;
}
/* Initial hidden state is set by JS (gsap.set) so the line stays
   visible if scripts fail to load — same pattern as main.js. */
.ws-hero__title--b {
  font-size: clamp(1.6rem, 4.4vw, 3.3rem);
  margin-top: 0.5em;
}

.ws-hero__sub {
  margin-top: 1.8rem;
  max-width: 47ch;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: var(--text-dim);
}
.ws-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.6rem;
}

/* ============================================================
   HONEST COMPARISON
   ============================================================ */
.ws-compare { padding-block: var(--section-gap); }

/* Two slim "context" cards stacked on the left; the ATAI HQ card is
   the visually dominant offer on the right. */
.ws-compare__grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 1.4rem;
  margin-top: 3rem;
  align-items: stretch;
}
.ws-compare__context {
  display: grid;
  gap: 1.4rem;
  align-content: stretch;
}
/* Doubled class names out-specify the base .ws-compare__card rule,
   which is declared later in this file. */
.ws-compare__card.ws-compare__card--slim {
  padding: 1.4rem 1.6rem;
  opacity: 0.85;
}
.ws-compare__price--slim { font-size: 1.15rem; margin-top: 0.6rem; }
.ws-compare__price--slim span { display: inline; margin-left: 0.35em; }
.ws-compare__card--slim .ws-compare__list { margin-top: 0.8rem; gap: 0.4rem; }
.ws-compare__card--slim .ws-compare__list li { font-size: 0.86rem; }
.ws-compare__card.ws-compare__card--atai {
  display: flex;
  flex-direction: column;
  padding: 2.2rem;
}
.ws-compare__card--atai .ws-compare__list { flex: 1; }
.ws-compare__cta { margin-top: 1.6rem; align-self: flex-start; }
.ws-compare__card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.9rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.ws-compare__card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 170, 255, 0.3);
}
.ws-compare__card--atai {
  border-color: rgba(0, 170, 255, 0.35);
  background:
    linear-gradient(160deg, rgba(0, 170, 255, 0.06), rgba(123, 47, 255, 0.06)),
    var(--surface);
}
.ws-compare__tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.ws-compare__tag--atai { color: var(--cyan); }
.ws-compare__price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  margin-top: 0.9rem;
  line-height: 1.25;
}
.ws-compare__price span {
  display: block;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.85rem;
  color: var(--text-dim);
}
.ws-compare__list {
  margin-top: 1.2rem;
  display: grid;
  gap: 0.55rem;
}
.ws-compare__list li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.92rem;
  color: var(--text-dim);
}
.ws-compare__card--atai .ws-compare__list li { color: var(--text); }
.ws-compare__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px; height: 8px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.18);
  transform: rotate(45deg);
}
.ws-compare__card--atai .ws-compare__list li::before { background: var(--grad); }

/* ============================================================
   STATEMENT — breathing room
   ============================================================ */
.ws-statement {
  padding-block: clamp(6rem, 14vh, 10rem);
  border-block: 1px solid var(--line);
  background: linear-gradient(to right, rgba(0, 170, 255, 0.04), rgba(123, 47, 255, 0.04));
  text-align: center;
}
.ws-statement__text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 3.4vw, 2.6rem);
  line-height: 1.3;
  max-width: 28ch;
  margin-inline: auto;
}
.ws-statement__text em {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.ws-statement__note {
  margin-top: 1.6rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: var(--text-dim);
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.ws-how { padding-block: var(--section-gap); }

.ws-how__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.3rem;
  margin-top: 3rem;
}
.ws-how__step {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.7rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.ws-how__step:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 170, 255, 0.35);
}
.ws-how__num {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--blue);
  border: 1px solid rgba(0, 170, 255, 0.35);
  border-radius: 6px;
  padding: 0.2rem 0.55rem;
}
.ws-how__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  margin-block: 0.9rem 0.4rem;
}
.ws-how__step > p { color: var(--text-dim); font-size: 0.92rem; }
.ws-how__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1rem;
}
.ws-how__tags span {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
  border: 1px solid rgba(89, 230, 212, 0.25);
  border-radius: 999px;
  padding: 0.25rem 0.6rem;
}

/* ============================================================
   BUILD CARDS (Step 1)
   ============================================================ */
.ws-build {
  padding-block: var(--section-gap);
  border-top: 1px solid var(--line);
}
.ws-build__grid {
  display: grid;
  gap: 1.3rem;
  align-items: stretch;
}
.ws-build__grid--two { grid-template-columns: repeat(2, 1fr); max-width: 880px; }
.ws-build__grid--three { grid-template-columns: repeat(3, 1fr); }

.ws-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.9rem;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.ws-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 170, 255, 0.35);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.35);
}
.ws-card--featured {
  border-color: rgba(0, 170, 255, 0.4);
  background:
    linear-gradient(160deg, rgba(0, 170, 255, 0.06), rgba(123, 47, 255, 0.06)),
    var(--surface);
}
.ws-card--handover { border-color: rgba(89, 230, 212, 0.3); }
.ws-card--handover:hover { border-color: rgba(89, 230, 212, 0.55); }

.ws-card__badge {
  position: absolute;
  top: -1px;
  right: 1.2rem;
  background: var(--grad);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.34rem 0.8rem;
  border-radius: 0 0 8px 8px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.55);
}
.ws-card__badge--handover {
  background: linear-gradient(100deg, var(--cyan), var(--blue));
  color: #04222c;
}

.ws-card__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
}
.ws-card__desc {
  margin-top: 0.55rem;
  font-size: 0.9rem;
  color: var(--text-dim);
}

.ws-card__pricerow {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.2rem;
}
.ws-card__was {
  font-size: 0.9rem;
  color: var(--text-dim);
  text-decoration: line-through;
}
.ws-card__price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.3rem;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.ws-card__save {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  color: #35d07f;
  border: 1px solid rgba(53, 208, 127, 0.35);
  background: rgba(53, 208, 127, 0.08);
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
}
.ws-card__flat {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.ws-card__features {
  margin-top: 1.3rem;
  display: grid;
  gap: 0.55rem;
  flex: 1;
}
.ws-card__features li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.9rem;
}
.ws-card__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 8px; height: 8px;
  border-radius: 2px;
  background: var(--grad);
  transform: rotate(45deg);
}

.ws-card__cta { margin-top: 1.4rem; width: 100%; }

/* Inline expanders on cards */
.ws-more { margin-top: 0.6rem; }
.ws-more summary {
  padding-block: 0.7rem;
  min-height: 44px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  cursor: pointer;
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s ease;
}
.ws-more summary::-webkit-details-marker { display: none; }
.ws-more summary::after {
  content: "+";
  font-size: 0.9rem;
  line-height: 1;
  transition: transform 0.25s ease;
}
.ws-more[open] summary::after { transform: rotate(45deg); }
.ws-more summary:hover { color: var(--cyan); }
.ws-more__body {
  margin-top: 0.9rem;
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-left: 2px solid rgba(0, 170, 255, 0.3);
  border-radius: 0 8px 8px 0;
  font-size: 0.84rem;
  color: var(--text-dim);
}
.ws-more__body ul { display: grid; gap: 0.5rem; }
.ws-more__body li { padding-left: 1rem; position: relative; }
.ws-more__body li::before {
  content: "·";
  position: absolute;
  left: 0.1rem;
  color: var(--blue);
}
.ws-more__body p + ul, .ws-more__body p + p { margin-top: 0.6rem; }
.ws-more__body a { color: var(--blue); }
.ws-more__body a:hover { color: var(--cyan); }

.ws-addons {
  margin-top: 2.2rem;
  font-size: 0.92rem;
  color: var(--text-dim);
}
.ws-addons strong { color: var(--text); font-weight: 500; }

/* ============================================================
   VALUE / COMPARE EXPANDERS (big <details> blocks)
   ============================================================ */
.ws-value {
  margin-top: 2.4rem;
  scroll-margin-top: 90px;
  border: 1px dashed rgba(0, 170, 255, 0.3);
  border-radius: var(--radius);
  background: rgba(0, 170, 255, 0.03);
  overflow: hidden;
}
.ws-value summary {
  display: grid;
  gap: 0.25rem;
  padding: 1.5rem 1.8rem;
  cursor: pointer;
  list-style: none;
  transition: background-color 0.25s ease;
}
.ws-value summary::-webkit-details-marker { display: none; }
.ws-value summary:hover { background: rgba(0, 170, 255, 0.05); }
.ws-value__label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
}
.ws-value__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
}
.ws-value__hint {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
}
.ws-value__hint::after { content: " +"; }
.ws-value[open] .ws-value__hint::after { content: " −"; }
.ws-value__body { padding: 0 1.8rem 1.8rem; }

/* ============================================================
   TABLES
   ============================================================ */
.ws-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.ws-table th {
  background: var(--surface-2);
  padding: 0.9rem 1.2rem;
  text-align: left;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.ws-table th:last-child, .ws-table td:last-child { text-align: right; }
.ws-table td {
  padding: 0.85rem 1.2rem;
  font-size: 0.92rem;
  border-top: 1px solid var(--line);
}
.ws-table td:last-child {
  font-family: var(--font-mono);
  color: var(--text-dim);
  white-space: nowrap;
}
.ws-table td small {
  display: block;
  font-size: 0.74rem;
  color: var(--text-dim);
  margin-top: 0.2rem;
  font-family: var(--font-body);
}
.ws-table__total td {
  background: var(--surface-2);
  font-weight: 700;
  border-top: 2px solid rgba(255, 255, 255, 0.12);
}
.ws-table__total td:last-child {
  color: var(--text);
  font-size: 1.05rem;
}
.ws-table__punch td {
  background: linear-gradient(135deg, rgba(0, 170, 255, 0.08), rgba(123, 47, 255, 0.08));
}
.ws-table__punch td:last-child {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.ws-table__sub td { font-weight: 500; color: var(--text); }

/* Plan comparison table — sticky header row on desktop */
.ws-table--plans th { text-align: center; }
.ws-table--plans th:first-child { text-align: left; }
.ws-table--plans td { text-align: center; font-family: var(--font-body); }
.ws-table--plans td:first-child { text-align: left; color: var(--text); }
.ws-table--plans th:last-child { text-align: center; }
.ws-table--plans td:last-child {
  font-family: var(--font-body);
  white-space: normal;
  text-align: center;
  color: var(--text);
}
.ws-table--plans th span {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  color: var(--blue);
  margin-top: 0.2rem;
  text-transform: none;
}

@media (min-width: 761px) {
  .ws-table--plans thead th {
    position: sticky;
    top: 64px; /* clears the fixed site header */
    z-index: 5;
    background: #10131c;
    box-shadow: 0 1px 0 var(--line);
  }
}

/* Horizontal scroll only where the table can't fit; an overflow wrapper
   would kill the sticky thead, so desktop gets no scroll container. */
.ws-compareall__scroll { overflow-x: auto; }
.ws-compareall__scroll .ws-table--plans { min-width: 640px; }
@media (min-width: 761px) {
  .ws-compareall__scroll { overflow-x: visible; }
  .ws-compareall__scroll .ws-table--plans { min-width: 0; }
}

/* ============================================================
   MONTHLY (Step 2)
   ============================================================ */
.ws-monthly {
  padding-block: var(--section-gap);
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(123, 47, 255, 0.07), transparent 70%),
    var(--surface);
  border-block: 1px solid var(--line);
}
.ws-monthly__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
  gap: 0.9rem;
  margin-top: 3rem;
}
.ws-mcard {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.3rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.ws-mcard:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 170, 255, 0.3);
}
.ws-mcard svg {
  width: 22px;
  height: 22px;
  color: var(--blue);
  margin-bottom: 0.8rem;
}
.ws-mcard h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}
.ws-mcard p {
  font-size: 0.83rem;
  color: var(--text-dim);
  line-height: 1.55;
}

/* ============================================================
   CARE PLANS (Step 3)
   ============================================================ */
.ws-plans { padding-block: var(--section-gap); }

.ws-plans__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
  margin-top: 3rem;
  align-items: stretch;
}
.ws-plan {
  position: relative;
  display: flex;
  flex-direction: column;
  scroll-margin-top: 90px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.7rem 1.5rem;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.ws-plan::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad);
  border-radius: var(--radius) var(--radius) 0 0;
}
.ws-plan:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 170, 255, 0.35);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.35);
}
.ws-plan--highlight {
  border-color: rgba(0, 170, 255, 0.35);
  background:
    linear-gradient(160deg, rgba(0, 170, 255, 0.05), rgba(123, 47, 255, 0.05)),
    var(--surface);
}
.ws-plan.is-pulsing {
  border-color: var(--blue);
  box-shadow: 0 0 0 2px rgba(0, 170, 255, 0.4), 0 18px 50px rgba(0, 170, 255, 0.18);
}

.ws-plan__label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
}
.ws-plan__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  margin-top: 0.5rem;
  letter-spacing: -0.01em;
}
.ws-plan__tagline {
  font-size: 0.84rem;
  color: var(--text-dim);
  margin-top: 0.5rem;
  min-height: 3.2em;
}
.ws-plan__price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3.1rem;
  line-height: 1;
  margin-top: 1.2rem;
  letter-spacing: -0.01em;
}
.ws-plan__sym {
  font-size: 0.45em;
  vertical-align: 1em;
  color: var(--text-dim);
  font-weight: 700;
  margin-right: 0.1em;
}
.ws-plan__per {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.9rem;
  color: var(--text-dim);
  margin-left: 0.3em;
}
.ws-plan__annual {
  font-size: 0.72rem;
  color: var(--text-dim);
  opacity: 0.75;
  margin-top: 0.5rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--line);
}
.ws-plan__prev {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 1.1rem;
}
.ws-plan__features {
  margin-top: 0.9rem;
  display: grid;
  gap: 0.55rem;
  flex: 1;
}
/* Essential has no "plus" label, so give its list the same top offset */
.ws-plan__annual + .ws-plan__features { margin-top: 1.1rem; }
.ws-plan__features li {
  position: relative;
  padding-left: 1.2rem;
  font-size: 0.85rem;
  line-height: 1.45;
}
.ws-plan__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--grad);
}

.ws-plan__moretoggle {
  margin-top: 0.4rem;
  background: none;
  border: 0;
  padding: 0.7rem 0;
  min-height: 44px;
  text-align: left;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  cursor: pointer;
  transition: color 0.2s ease;
}
.ws-plan__moretoggle:hover { color: var(--cyan); }
.ws-plan__moretoggle::after { content: " +"; }
.ws-plan__moretoggle[aria-expanded="true"]::after { content: " −"; }

.ws-plan__full {
  margin-top: 0.9rem;
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-left: 2px solid rgba(0, 170, 255, 0.3);
  border-radius: 0 8px 8px 0;
}
.ws-plan__full ul { display: grid; gap: 0.5rem; }
.ws-plan__full li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.78rem;
  color: var(--text-dim);
  line-height: 1.5;
}
.ws-plan__full li::before {
  content: "·";
  position: absolute;
  left: 0.1rem;
  color: var(--blue);
}
.ws-plan__not { opacity: 0.75; font-style: normal; }
.ws-plan__not::before { content: "—" !important; color: var(--text-dim) !important; }

.ws-plan__cta { margin-top: 1.3rem; width: 100%; }

.ws-plans__notes {
  margin-top: 2.4rem;
  display: grid;
  gap: 1rem;
  max-width: 72ch;
}
.ws-plans__notes p {
  font-size: 0.9rem;
  color: var(--text-dim);
  padding: 1rem 1.2rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 3px solid;
  border-image: linear-gradient(to bottom, var(--blue), var(--purple)) 1;
}
.ws-plans__notes strong { color: var(--text); font-weight: 500; }
.ws-plans__notes a { color: var(--blue); }
.ws-plans__notes a:hover { color: var(--cyan); }

.ws-finenote {
  margin-top: 2.6rem;
  font-size: 0.82rem;
  color: var(--text-dim);
  max-width: 68ch;
}
.ws-finenote a { color: var(--blue); }
.ws-finenote a:hover { color: var(--cyan); }

/* ============================================================
   QUIZ
   ============================================================ */
.ws-quiz__anchor { scroll-margin-top: 90px; }
.ws-quiz { margin-top: 3rem; }

.ws-quiz__trigger {
  display: block;
  width: 100%;
  background: none;
  border: 1px dashed rgba(123, 47, 255, 0.4);
  border-radius: var(--radius);
  padding: 1.3rem 1.6rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text);
  text-align: center;
  cursor: pointer;
  transition: border-color 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
}
.ws-quiz__trigger:hover {
  border-color: var(--purple);
  background: rgba(123, 47, 255, 0.06);
  transform: translateY(-2px);
}
.ws-quiz__trigger span { color: var(--purple); }
.ws-quiz__trigger[aria-expanded="true"] { display: none; }

.ws-quiz__panel { overflow: hidden; }
.ws-quiz__inner {
  background: var(--surface-2);
  border: 1px solid rgba(123, 47, 255, 0.3);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.4rem);
}
.ws-quiz__intro {
  font-size: 0.92rem;
  color: var(--text-dim);
  margin-bottom: 1.8rem;
}
.ws-quiz__q {
  border: 0;
  padding: 0;
  margin: 0 0 1.5rem;
}
.ws-quiz__q legend {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.8rem;
}
.ws-quiz__opts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.ws-quiz__opts label { cursor: pointer; }
.ws-quiz__opts input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.ws-quiz__opts span {
  display: inline-block;
  padding: 0.6rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.88rem;
  color: var(--text-dim);
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}
.ws-quiz__opts label:hover span {
  border-color: rgba(0, 170, 255, 0.5);
  color: var(--text);
}
.ws-quiz__opts input:checked + span {
  border-color: transparent;
  background: var(--grad);
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
}
.ws-quiz__opts input:focus-visible + span {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.ws-quiz__result {
  margin-top: 0.6rem;
  padding: 1.6rem;
  border-radius: 14px;
  background:
    linear-gradient(160deg, rgba(0, 170, 255, 0.08), rgba(123, 47, 255, 0.08)),
    var(--surface);
  border: 1px solid rgba(0, 170, 255, 0.35);
}
.ws-quiz__result-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
}
.ws-quiz__result-plan {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.9rem;
  margin-top: 0.5rem;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.ws-quiz__result-why {
  margin-top: 0.7rem;
  font-size: 0.95rem;
  color: var(--text);
  max-width: 60ch;
}
.ws-quiz__result-build {
  margin-top: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-dim);
  max-width: 60ch;
}
.ws-quiz__result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.3rem;
}

/* ============================================================
   ADS (Step 4)
   ============================================================ */
.ws-ads {
  padding-block: var(--section-gap);
  border-top: 1px solid var(--line);
}
.ws-fee {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 2.6rem;
  max-width: 760px;
}
.ws-fee__col {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.8rem;
}
.ws-fee__col--free {
  border-color: rgba(0, 170, 255, 0.4);
  background:
    linear-gradient(160deg, rgba(0, 170, 255, 0.07), rgba(123, 47, 255, 0.07)),
    var(--surface);
}
.ws-fee__tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.ws-fee__col--free .ws-fee__tag { color: var(--cyan); }
.ws-fee__big {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.6rem;
  line-height: 1.1;
  margin-top: 0.5rem;
}
.ws-fee__col--free .ws-fee__big {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.ws-fee__col p:last-child {
  margin-top: 0.5rem;
  font-size: 0.88rem;
  color: var(--text-dim);
}

.ws-ads__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.ws-acard {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.5rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.ws-acard:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 170, 255, 0.3);
}
.ws-acard svg {
  width: 24px;
  height: 24px;
  color: var(--purple);
  margin-bottom: 0.9rem;
}
.ws-acard h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.45rem;
}
.ws-acard p {
  font-size: 0.86rem;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ============================================================
   BUNDLE
   ============================================================ */
.ws-bundle {
  padding-block: var(--section-gap);
  background:
    radial-gradient(ellipse 55% 55% at 80% 15%, rgba(123, 47, 255, 0.08), transparent 65%),
    radial-gradient(ellipse 55% 55% at 12% 90%, rgba(0, 170, 255, 0.06), transparent 65%),
    var(--surface);
  border-block: 1px solid var(--line);
}
.ws-bundle__card {
  margin-top: 2.6rem;
  max-width: 720px;
  background:
    linear-gradient(160deg, rgba(0, 170, 255, 0.06), rgba(123, 47, 255, 0.06)),
    var(--surface-2);
  border: 1px solid rgba(0, 170, 255, 0.3);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 3.5vw, 2.6rem);
}
.ws-bundle__example {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1.4rem;
}
.ws-table--bundle { background: transparent; border: 0; border-radius: 0; }
.ws-table--bundle td { padding-inline: 0; }
.ws-table--bundle tr:first-child td { border-top: 0; }
.ws-table--bundle .ws-table__total td {
  background: transparent;
  border-top: 2px solid rgba(0, 170, 255, 0.3);
}
.ws-table--bundle .ws-table__total td:last-child {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.7rem;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.ws-bundle__note {
  margin-top: 1.3rem;
  font-size: 0.84rem;
  color: var(--text-dim);
}
.ws-bundle__invoice {
  margin-block: 0.8rem 1.6rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--text);
}

/* ============================================================
   FAQ
   ============================================================ */
.ws-faq { padding-block: var(--section-gap); }
.ws-faq__list {
  margin-top: 2.6rem;
  max-width: 820px;
  display: grid;
  gap: 0.7rem;
}
.ws-faq__item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.25s ease;
  scroll-margin-top: 90px;
}
.ws-faq__item:hover, .ws-faq__item[open] { border-color: rgba(0, 170, 255, 0.3); }
.ws-faq__item summary {
  padding: 1.1rem 1.4rem;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.ws-faq__item summary::-webkit-details-marker { display: none; }
.ws-faq__item summary::after {
  content: "+";
  font-family: var(--font-mono);
  color: var(--blue);
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.ws-faq__item[open] summary::after { transform: rotate(45deg); }
.ws-faq__body {
  padding: 0 1.4rem 1.3rem;
  font-size: 0.92rem;
  color: var(--text-dim);
  max-width: 72ch;
}
.ws-faq__body p + p { margin-top: 0.7rem; }

/* ============================================================
   PORTFOLIO PREVIEW
   ============================================================ */
.ws-portfolio {
  padding-block: var(--section-gap);
  border-top: 1px solid var(--line);
}
.ws-portfolio__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}
.ws-portfolio__card { display: block; }
.ws-portfolio__card .media-frame__video-wrap {
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(ellipse 70% 90% at 50% 10%, rgba(123, 47, 255, 0.25), transparent 65%),
    radial-gradient(ellipse 80% 70% at 50% 100%, rgba(0, 170, 255, 0.2), transparent 65%),
    #0a0c14;
  overflow: hidden;
}
.ws-portfolio__card video {
  position: relative; /* paints above the absolutely-positioned still */
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.ws-portfolio__card video.is-playing { opacity: 1; }
.ws-portfolio__still {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}
.ws-portfolio__taphint { display: none; }
.ws-portfolio__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease;
}
.ws-portfolio__card:hover .ws-portfolio__placeholder.is-hidden,
.ws-portfolio__placeholder.is-hidden { opacity: 0; }
.ws-portfolio__glyph {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(4rem, 9vw, 7rem);
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 34px rgba(0, 170, 255, 0.45));
  animation: glyphBreath 4s ease-in-out infinite;
}
@keyframes glyphBreath {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50% { transform: scale(1.06); opacity: 1; }
}
.ws-portfolio__caption {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-top: 1rem;
  padding-inline: 0.4rem;
}
.ws-portfolio__cap-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  color: var(--cyan);
}
.ws-portfolio__cap-line {
  font-size: 0.85rem;
  color: var(--text-dim);
  text-align: right;
}

/* Touch devices have no hover — show a real still from the portfolio
   film instead of the bare glyph, with a tap affordance. Where the
   browser allows it, the video still fades in over the top. */
@media (hover: none) {
  .ws-portfolio__still { display: block; }
  .ws-portfolio__placeholder { display: none; }
  .ws-portfolio__taphint {
    display: inline-flex;
    align-items: baseline;
    gap: 0.35em;
    position: absolute;
    left: 50%;
    bottom: 0.9rem;
    transform: translateX(-50%);
    padding: 0.5em 1.1em;
    border-radius: 999px;
    background: rgba(10, 12, 20, 0.72);
    border: 1px solid var(--line);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--cyan);
    white-space: nowrap;
  }
}

/* ============================================================
   CTA
   ============================================================ */
.ws-cta {
  padding-block: clamp(7rem, 16vh, 11rem);
  text-align: center;
  background:
    radial-gradient(ellipse 60% 70% at 50% 100%, rgba(123, 47, 255, 0.12), transparent 70%),
    var(--bg);
  border-top: 1px solid var(--line);
}
.ws-cta__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4.6vw, 3.6rem);
  line-height: 1.12;
}
.ws-cta__sub {
  margin: 1.4rem auto 0;
  max-width: 50ch;
  color: var(--text-dim);
}
.ws-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.4rem;
}

/* Cookie banner + footer cookie button styles live in /css/styles.css
   (site-wide, shared with the homepage; logic in /js/consent.js). */

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .ws-plans__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
  .ws-compare__grid { grid-template-columns: 1fr; }
  .ws-ads__grid { grid-template-columns: 1fr 1fr; }
  .ws-how__grid { grid-template-columns: repeat(2, 1fr); }
  .ws-build__grid--three { grid-template-columns: 1fr 1fr; }
  .ws-portfolio__grid { grid-template-columns: 1fr; }
}

/* Reserve a clear strip below the hero copy so the particle/wireframe
   animation is fully visible under the buttons, never behind them.
   Breakpoint matches the JS isNarrow threshold (< 761px). */
@media (max-width: 760px) {
  .ws-hero__inner { padding-block: 6.5rem 15rem; }
}

@media (max-width: 720px) {
  .ws-compare__grid, .ws-ads__grid, .ws-how__grid,
  .ws-build__grid--two, .ws-build__grid--three,
  .ws-plans__grid, .ws-fee { grid-template-columns: 1fr; }
  .ws-value summary { padding: 1.2rem 1.2rem; }
  .ws-value__body { padding: 0 1.2rem 1.2rem; }
  .ws-plan__tagline { min-height: 0; }
}
