/* ============================================================
   ADYA PRICING - shared component stylesheet
   Extends the locked Adya design system (cyan primary register).
   Loaded by all /pricing/* pages alongside Tailwind CDN.
   ============================================================ */

@property --pricing-cta-border-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

@keyframes pricingCtaBorderRotate {
  to { --pricing-cta-border-angle: 360deg; }
}

.pricing-calc-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-color: transparent !important;
}

.pricing-calc-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 3px;
  background: conic-gradient(from var(--pricing-cta-border-angle),
      rgba(70, 200, 232, 0.96) 0deg,
      rgba(239, 98, 163, 0.86) 90deg,
      rgba(196, 144, 216, 0.80) 170deg,
      rgba(255, 195, 4, 0.72) 250deg,
      rgba(70, 200, 232, 0.96) 360deg);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: pricingCtaBorderRotate 5.5s linear infinite;
  pointer-events: none;
  z-index: 2;
  opacity: 0.95;
}

.pricing-calc-cta > * {
  position: relative;
  z-index: 3;
}

.pricing-calc-cta:hover {
  box-shadow: 0 0 28px -14px rgba(70, 200, 232, 0.9), 0 16px 42px -26px rgba(239, 98, 163, 0.9);
}

.pricing-calc-cta:focus-visible {
  outline: 2px solid rgba(70, 200, 232, 0.72);
  outline-offset: 3px;
}

@supports not (background: conic-gradient(from 0deg, red, blue)) {
  .pricing-calc-cta::before {
    background: linear-gradient(135deg, rgba(70, 200, 232, 0.45), rgba(239, 98, 163, 0.35), rgba(255, 195, 4, 0.28));
    animation: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pricing-calc-cta::before {
    animation: none;
  }
}

/* - Tier cards (4-up on product pages) - */
.tier-card {
  background: rgba(11, 14, 34, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 18px;
  padding: 28px 24px 24px;
  position: relative;
  transition: border-color 240ms ease, transform 240ms ease, background 240ms ease;
  display: flex;
  flex-direction: column;
}
.tier-card:hover {
  border-color: rgba(70, 200, 232, 0.30);
  transform: translateY(-2px);
}
.tier-card .tier-eyebrow {
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(70, 200, 232, 0.85);
  margin-bottom: 10px;
}
.tier-card .tier-name {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.014em;
  color: #F5F7FF;
  margin-bottom: 6px;
}
.tier-card .tier-price {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.022em;
  color: #F5F7FF;
  line-height: 1.1;
  margin: 6px 0 4px;
}
.tier-card .tier-price small,
.tier-card .tier-price .term {
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(245, 247, 255, 0.55);
  letter-spacing: 0;
}
.tier-card .tier-blurb {
  font-size: 13px;
  color: rgba(245, 247, 255, 0.64);
  margin: 8px 0 18px;
  line-height: 1.55;
  min-height: 40px;
}
.tier-card ul {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  flex-grow: 1;
}
.tier-card ul li {
  position: relative;
  padding: 8px 0 8px 24px;
  font-size: 13.5px;
  color: rgba(245, 247, 255, 0.78);
  line-height: 1.5;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.tier-card ul li:last-child {
  border-bottom: 0;
}
.tier-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 14px;
  height: 14px;
  background: linear-gradient(135deg, rgba(70, 200, 232, 0.18), rgba(70, 200, 232, 0.06));
  border: 1px solid rgba(70, 200, 232, 0.42);
  border-radius: 4px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%2346C8E8' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-position: center;
  background-repeat: no-repeat;
}
.tier-card ul li.muted {
  color: rgba(245, 247, 255, 0.32);
}
.tier-card ul li.muted::before {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.10);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23ffffff44' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><line x1='5' y1='12' x2='19' y2='12'/></svg>");
}

/* Featured tier ("MOST POPULAR") */
.tier-card.featured {
  background: linear-gradient(180deg, rgba(70, 200, 232, 0.08) 0%, rgba(11, 14, 34, 0.55) 60%);
  border-color: rgba(70, 200, 232, 0.45);
  box-shadow: 0 24px 60px -20px rgba(70, 200, 232, 0.22);
}
.tier-card.featured::before {
  content: "MOST POPULAR";
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(112deg, #46C8E8, #5B6BFF);
  color: #06081A;
  font-family: "Geist", system-ui, sans-serif;
  font-size: 10px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 9999px;
  letter-spacing: 0.08em;
}
.tier-card .tier-cta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
}
.tier-card .tier-cta .btn-primary,
.tier-card .tier-cta .btn-secondary {
  width: 100%;
  text-align: center;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 150ms cubic-bezier(0.45, 0, 0.55, 1), box-shadow 200ms;
  cursor: pointer;
}
.tier-card .tier-cta .btn-primary {
  background: #F5F7FF;
  color: #06081A;
}
.tier-card .tier-cta .btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 36px -10px rgba(245, 247, 255, 0.25);
}
.tier-card .tier-cta .btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: #F5F7FF;
  border: 1px solid rgba(255, 255, 255, 0.16);
}
.tier-card .tier-cta .btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.07);
}

/* - Six monetisation tiers (hub value-grid) - */
.value-card-pricing {
  background: rgba(11, 14, 34, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 26px 24px 22px;
  transition: border-color 240ms ease, transform 240ms ease;
  position: relative;
  overflow: hidden;
}
.value-card-pricing::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, #46C8E8, #5B6BFF);
  opacity: 0.6;
}
.value-card-pricing:hover {
  border-color: rgba(70, 200, 232, 0.30);
  transform: translateY(-2px);
}
.value-card-pricing .vp-icon {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: linear-gradient(135deg, rgba(70, 200, 232, 0.18), rgba(91, 107, 255, 0.10));
  border: 1px solid rgba(70, 200, 232, 0.30);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9DDDF0;
  margin-bottom: 14px;
}
.value-card-pricing .vp-icon i, .value-card-pricing .vp-icon svg {
  width: 18px;
  height: 18px;
}
.value-card-pricing .vp-eyebrow {
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #9DDDF0;
  margin-bottom: 6px;
}
.value-card-pricing h3 {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.012em;
  color: #F5F7FF;
  line-height: 1.3;
  margin-bottom: 10px;
}
.value-card-pricing p {
  font-size: 13.5px;
  color: rgba(245, 247, 255, 0.64);
  line-height: 1.6;
  margin: 0;
}

/* - Persona / product cards on hub - */
.lens-card {
  background: rgba(11, 14, 34, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  transition: border-color 220ms ease, background 220ms ease, transform 220ms ease;
}
.lens-card:hover {
  border-color: rgba(70, 200, 232, 0.40);
  background: rgba(15, 20, 48, 0.75);
  transform: translateY(-1px);
}
.lens-card .lens-icon {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: linear-gradient(135deg, rgba(70, 200, 232, 0.18), rgba(70, 200, 232, 0.06));
  border: 1px solid rgba(70, 200, 232, 0.30);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9DDDF0;
}
.lens-card .lens-icon i, .lens-card .lens-icon svg {
  width: 18px;
  height: 18px;
}
.lens-card .lens-content {
  flex: 1;
  min-width: 0;
}
.lens-card .lens-title {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  color: #F5F7FF;
  line-height: 1.3;
}
.lens-card .lens-desc {
  font-size: 12.5px;
  color: rgba(245, 247, 255, 0.55);
  line-height: 1.5;
  margin-top: 3px;
}
.lens-card .lens-arrow {
  flex: 0 0 14px;
  color: rgba(245, 247, 255, 0.42);
  transition: color 220ms ease, transform 220ms ease;
}
.lens-card:hover .lens-arrow {
  color: #46C8E8;
  transform: translateX(2px);
}

/* - Calculator cockpit (frame around the embedded React app) - */
.calc-cockpit {
  position: relative;
  isolation: isolate;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(70, 200, 232, 0.04) 0%, rgba(11, 14, 34, 0) 60%);
  padding: 32px 28px;
  border: 1px solid rgba(70, 200, 232, 0.18);
  box-shadow: 0 32px 80px -20px rgba(70, 200, 232, 0.10);
  overflow: visible;
}
.calc-cockpit::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 28px;
  background: radial-gradient(60% 80% at 50% 0%, rgba(70, 200, 232, 0.06) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}
.calc-cockpit::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 2px;
  background: conic-gradient(from var(--pricing-cta-border-angle, 0deg),
      transparent 0%,
      transparent 60%,
      rgba(255, 255, 255, 0.94) 69%,
      rgba(70, 200, 232, 0.88) 75%,
      rgba(239, 98, 163, 0.76) 81%,
      rgba(255, 195, 4, 0.58) 87%,
      transparent 94%,
      transparent 100%);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: pricingCtaBorderRotate 6s linear infinite;
  pointer-events: none;
  z-index: 2;
}
.calc-cockpit > * {
  position: relative;
  z-index: 1;
}
@supports not (background: conic-gradient(from 0deg, red, blue)) {
  .calc-cockpit::after {
    background: linear-gradient(135deg, rgba(70, 200, 232, 0.45), rgba(239, 98, 163, 0.35), rgba(255, 195, 4, 0.28));
    animation: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .calc-cockpit::after {
    animation: none;
  }
}

/* - Partner application modal launched from the pricing calculator - */
.partner-apply-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(3, 5, 18, 0.76);
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
}
.partner-apply-modal.open {
  display: flex;
}
.partner-apply-dialog {
  position: relative;
  width: min(720px, 100%);
  max-height: min(88vh, 760px);
  overflow: auto;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(11, 14, 37, 0.98), rgba(7, 9, 26, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 36px 100px -24px rgba(0, 0, 0, 0.78);
  padding: 28px;
}
.partner-apply-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(245, 247, 255, 0.72);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  cursor: pointer;
}
.partner-apply-close:hover {
  color: #F5F7FF;
  background: rgba(255, 255, 255, 0.08);
}
.partner-apply-kicker {
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #46C8E8;
  margin-bottom: 10px;
}
.partner-apply-title {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 28px;
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: #F5F7FF;
  margin: 0 42px 10px 0;
}
.partner-apply-copy {
  color: rgba(245, 247, 255, 0.64);
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 20px;
}
.partner-apply-form {
  display: grid;
  gap: 14px;
}
.partner-apply-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.partner-apply-field {
  display: grid;
  gap: 7px;
}
.partner-apply-field label {
  font-size: 12px;
  font-weight: 700;
  color: rgba(245, 247, 255, 0.78);
}
.partner-apply-field input,
.partner-apply-field select,
.partner-apply-field textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.045);
  color: #F5F7FF;
  padding: 12px 13px;
  font: inherit;
  outline: none;
}
.partner-apply-field textarea {
  min-height: 112px;
  resize: vertical;
}
.partner-apply-field input:focus,
.partner-apply-field select:focus,
.partner-apply-field textarea:focus {
  border-color: rgba(70, 200, 232, 0.55);
  box-shadow: 0 0 0 3px rgba(70, 200, 232, 0.10);
}
.partner-apply-submit {
  justify-self: end;
  height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: #F5F7FF;
  color: #06081A;
  font-weight: 800;
  cursor: pointer;
}
.partner-apply-status {
  margin: 0;
  min-height: 18px;
  font-size: 12.5px;
  color: rgba(245, 247, 255, 0.52);
}
@media (max-width: 640px) {
  .partner-apply-grid {
    grid-template-columns: 1fr;
  }
  .partner-apply-dialog {
    padding: 24px 20px;
  }
}

/* - Sub-page layout - */
.subpage-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 900px) {
  .subpage-grid { grid-template-columns: 1fr; gap: 28px; }
}
.pricing-sidebar {
  position: sticky;
  top: 96px;
  height: fit-content;
  align-self: start;
}
.pricing-sidebar .ps-section {
  margin-bottom: 28px;
}
.pricing-sidebar .ps-section-title {
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 247, 255, 0.42);
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 8px;
}
.pricing-sidebar .ps-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 9px;
  color: rgba(245, 247, 255, 0.72);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease;
}
.pricing-sidebar .ps-link:hover {
  background: rgba(255, 255, 255, 0.04);
  color: #F5F7FF;
}
.pricing-sidebar .ps-link.active {
  background: rgba(70, 200, 232, 0.10);
  color: #F5F7FF;
  border: 1px solid rgba(70, 200, 232, 0.30);
}
.pricing-sidebar .ps-link i, .pricing-sidebar .ps-link svg {
  width: 15px;
  height: 15px;
  color: rgba(245, 247, 255, 0.55);
  flex-shrink: 0;
}
.pricing-sidebar .ps-link.active i, .pricing-sidebar .ps-link.active svg {
  color: #46C8E8;
}

/* - Feature comparison table - */
.feature-table-wrap {
  overflow-x: auto;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(11, 14, 34, 0.55);
}
table.feature-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
  color: rgba(245, 247, 255, 0.78);
}
table.feature-table thead th {
  background: rgba(255, 255, 255, 0.02);
  padding: 16px 18px;
  text-align: left;
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: #F5F7FF;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  letter-spacing: -0.005em;
  white-space: nowrap;
}
table.feature-table thead th.featured {
  background: rgba(70, 200, 232, 0.10);
  color: #9DDDF0;
}
table.feature-table tbody td {
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  vertical-align: top;
  line-height: 1.5;
}
table.feature-table tbody tr:last-child td {
  border-bottom: 0;
}
table.feature-table tbody td.label {
  color: rgba(245, 247, 255, 0.92);
  font-weight: 500;
  width: 30%;
  white-space: normal;
}
table.feature-table tbody td.featured {
  background: rgba(70, 200, 232, 0.04);
  color: #F5F7FF;
}
table.feature-table .check {
  color: #46C8E8;
  font-weight: 700;
}
table.feature-table .x {
  color: rgba(245, 247, 255, 0.28);
}
table.feature-table .num {
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 12.5px;
  color: #F5F7FF;
}
table.feature-table tbody tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}
table.feature-table tbody tr:hover td.featured {
  background: rgba(70, 200, 232, 0.06);
}

/* - Compare strip (tight competitor row on product pages) - */
.compare-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin-top: 16px;
}
.compare-strip .cs-card {
  background: rgba(11, 14, 34, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 16px 18px;
  text-align: left;
  transition: border-color 220ms ease;
}
.compare-strip .cs-card:hover {
  border-color: rgba(70, 200, 232, 0.30);
}
.compare-strip .cs-card.adya {
  background: rgba(70, 200, 232, 0.08);
  border-color: rgba(70, 200, 232, 0.40);
}
.compare-strip .cs-name {
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(245, 247, 255, 0.55);
  margin-bottom: 4px;
}
.compare-strip .cs-card.adya .cs-name {
  color: #46C8E8;
}
.compare-strip .cs-price {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #F5F7FF;
  letter-spacing: -0.012em;
  line-height: 1.2;
}
.compare-strip .cs-note {
  font-size: 11.5px;
  color: rgba(245, 247, 255, 0.55);
  margin-top: 4px;
  line-height: 1.4;
}

/* - FAQ accordions - */
details.faq {
  background: rgba(11, 14, 34, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  margin-bottom: 12px;
  transition: border-color 200ms ease;
}
details.faq[open] {
  border-color: rgba(70, 200, 232, 0.28);
}
details.faq summary {
  padding: 18px 22px;
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: #F5F7FF;
  cursor: pointer;
  list-style: none;
  position: relative;
  user-select: none;
  letter-spacing: -0.005em;
}
details.faq summary::-webkit-details-marker {
  display: none;
}
details.faq summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 300;
  color: #46C8E8;
  transition: transform 220ms ease;
  line-height: 1;
}
details.faq[open] summary::after {
  content: "-";
}
details.faq .faq-body {
  padding: 0 22px 20px;
  color: rgba(245, 247, 255, 0.72);
  font-size: 14px;
  line-height: 1.65;
}

/* - Anchor pricing examples (3-up on hub) - */
.anchor-card {
  background: rgba(11, 14, 34, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 26px 24px;
  transition: border-color 220ms ease, transform 220ms ease;
}
.anchor-card:hover {
  border-color: rgba(70, 200, 232, 0.30);
  transform: translateY(-2px);
}
.anchor-card .anchor-eyebrow {
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(70, 200, 232, 0.85);
  margin-bottom: 8px;
}
.anchor-card .anchor-title {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #F5F7FF;
  letter-spacing: -0.012em;
  margin-bottom: 14px;
}
.anchor-card .anchor-price {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #F5F7FF;
  letter-spacing: -0.022em;
  line-height: 1.1;
  margin-bottom: 2px;
}
.anchor-card .anchor-price .term {
  font-size: 14px;
  font-weight: 500;
  color: rgba(245, 247, 255, 0.55);
  letter-spacing: 0;
}
.anchor-card .anchor-stack {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.anchor-card .anchor-line {
  font-size: 12.5px;
  color: rgba(245, 247, 255, 0.64);
  display: flex;
  justify-content: space-between;
}
.anchor-card .anchor-line strong {
  color: #F5F7FF;
  font-weight: 500;
}

/* - CTA band - */
.cta-band {
  background: linear-gradient(135deg, rgba(70, 200, 232, 0.10), rgba(91, 107, 255, 0.06));
  border: 1px solid rgba(70, 200, 232, 0.28);
  border-radius: 22px;
  padding: 44px 36px;
  text-align: center;
}
.cta-band h2 {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.018em;
  color: #F5F7FF;
  margin-bottom: 10px;
  line-height: 1.2;
}
.cta-band p {
  font-size: 15.5px;
  color: rgba(245, 247, 255, 0.78);
  margin-bottom: 20px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* - Page hero (sub-page version, smaller than hub) - */
.page-hero {
  padding: 120px 0 36px;
  text-align: left;
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}
.page-hero h1 {
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 600;
  letter-spacing: -0.022em;
  text-wrap: balance;
  color: #F5F7FF;
  line-height: 1.05;
  margin-bottom: 18px;
}
.page-hero p {
  font-size: 17px;
  color: rgba(245, 247, 255, 0.72);
  max-width: 680px;
  line-height: 1.55;
}

/* - Section divider - */
.section-divider {
  position: relative;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.10) 50%, transparent 100%);
  max-width: 1180px;
  margin: 0 auto;
}

/* - Reduced motion - */
@media (prefers-reduced-motion: reduce) {
  .tier-card, .value-card-pricing, .lens-card, .anchor-card,
  .compare-strip .cs-card, details.faq {
    transition: none !important;
  }
  .tier-card:hover, .value-card-pricing:hover, .lens-card:hover,
  .anchor-card:hover { transform: none !important; }
}
