:root {
  --ac26-bg: #060709;
  --ac26-bg-soft: #0d0f12;
  --ac26-surface: rgba(255, 255, 255, .045);
  --ac26-surface-strong: rgba(255, 255, 255, .075);
  --ac26-ink: #f7f7f4;
  --ac26-muted: #a9adb5;
  --ac26-subtle: #777c86;
  --ac26-line: rgba(255, 255, 255, .12);
  --ac26-line-strong: rgba(255, 255, 255, .24);
  --ac26-positive: #9fe4bf;
  --ac26-warning: #f4d38a;
  --ac26-danger: #ffb2b2;
  --ac26-width: 1240px;
  --ac26-reading: 760px;
  --ac26-radius-sm: 12px;
  --ac26-radius: 22px;
  --ac26-radius-lg: 34px;
  --ac26-shadow: 0 30px 90px rgba(0, 0, 0, .36);
  --ac26-header-height: 92px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ac26-bg);
}

body.ac26-site {
  margin: 0;
  min-height: 100vh;
  padding-top: var(--ac26-header-height);
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 5%, rgba(255, 255, 255, .055), transparent 28rem),
    radial-gradient(circle at 88% 18%, rgba(114, 128, 156, .08), transparent 30rem),
    var(--ac26-bg);
  color: var(--ac26-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.ac26-site.ac-modal-open {
  overflow: hidden;
}

.ac26-site img,
.ac26-site video {
  max-width: 100%;
}

.ac26-site button,
.ac26-site input,
.ac26-site select,
.ac26-site textarea {
  font: inherit;
}

.ac26-site a {
  color: inherit;
}

.ac26-site :focus-visible {
  outline: 3px solid #fff;
  outline-offset: 4px;
}

.ac26-skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100000;
  padding: 10px 14px;
  border-radius: 8px;
  background: #fff;
  color: #000;
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-160%);
}

.ac26-skip-link:focus {
  transform: translateY(0);
}

.ac26-main-anchor {
  width: 0;
  height: 0;
  scroll-margin-top: calc(var(--ac26-header-height) + 12px);
}

/* Shared site header */
.site-hd {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20000;
  border-bottom: 1px solid var(--ac26-line);
  background: rgba(6, 7, 9, .92);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.hd-inner {
  width: min(var(--ac26-width), calc(100% - 40px));
  min-height: var(--ac26-header-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
}

.brand-mark img {
  display: block;
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-name {
  color: #fff;
  font-size: 14px;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.brand-tag {
  margin-top: 5px;
  color: var(--ac26-muted);
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.hd-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 2px;
}

.hd-nav a {
  position: relative;
  padding: 9px 8px;
  border-radius: 10px;
  color: rgba(255, 255, 255, .72);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .09em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .18s ease, background .18s ease;
}

.hd-nav a:hover,
.hd-nav a.is-active {
  background: rgba(255, 255, 255, .065);
  color: #fff;
}

.hd-nav a.is-active::after {
  position: absolute;
  right: 8px;
  bottom: 3px;
  left: 8px;
  height: 1px;
  background: #fff;
  content: "";
}

.hd-trial,
.mnav-trial {
  border: 1px solid #fff;
  border-radius: 999px;
  background: #fff;
  color: #050607 !important;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .08em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
}

.hd-trial {
  flex: 0 0 auto;
  padding: 12px 16px;
}

.hd-trial:hover,
.mnav-trial:hover {
  background: transparent;
  color: #fff !important;
}

.hamburger,
.mnav-close {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--ac26-line);
  border-radius: 12px;
  background: rgba(255, 255, 255, .04);
  color: #fff;
  cursor: pointer;
}

.hamburger svg,
.mnav-close svg {
  width: 22px;
  height: 22px;
}

.mnav-overlay {
  position: fixed;
  inset: 0;
  z-index: 40000;
  display: none;
  background: rgba(0, 0, 0, .7);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.mnav {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 50000;
  width: min(88vw, 380px);
  height: 100dvh;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  overflow-y: auto;
  border-left: 1px solid var(--ac26-line);
  background: #090a0c;
  transform: translateX(105%);
  transition: transform .2s ease;
}

.mnav.open {
  transform: translateX(0);
}

.mnav-overlay.open {
  display: block;
}

.mnav-top {
  margin-bottom: 6px;
  padding-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--ac26-line);
}

.mnav-title {
  color: var(--ac26-muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.mnav a:not(.mnav-trial) {
  padding: 11px 12px;
  border: 1px solid transparent;
  border-radius: 12px;
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}

.mnav a:not(.mnav-trial):hover,
.mnav a.is-active:not(.mnav-trial) {
  border-color: var(--ac26-line);
  background: var(--ac26-surface);
  color: #fff;
}

.mnav-trial {
  margin-top: 12px;
  padding: 14px;
  text-align: center;
}

/* Shared 2026 page system */
.ac26-page {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.ac26-container {
  width: min(var(--ac26-width), calc(100% - 40px));
  margin-inline: auto;
}

.ac26-reading {
  max-width: var(--ac26-reading);
}

.ac26-hero {
  position: relative;
  min-height: min(780px, calc(100svh - var(--ac26-header-height)));
  padding: clamp(86px, 11vw, 150px) 0 clamp(76px, 10vw, 130px);
  display: grid;
  align-items: center;
  border-bottom: 1px solid var(--ac26-line);
}

.ac26-hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(6, 7, 9, .98) 0%, rgba(6, 7, 9, .79) 52%, rgba(6, 7, 9, .5) 100%),
    radial-gradient(circle at 76% 30%, rgba(255, 255, 255, .12), transparent 33rem);
  content: "";
}

.ac26-hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .38;
  filter: saturate(.35) contrast(1.1);
}

.ac26-kicker {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, .64);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.ac26-hero h1,
.ac26-display {
  max-width: 1060px;
  margin: 0;
  color: #fff;
  font-size: clamp(48px, 7.8vw, 112px);
  font-weight: 760;
  letter-spacing: -.062em;
  line-height: .91;
  text-wrap: balance;
}

.ac26-hero-copy {
  max-width: 760px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, .75);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.5;
}

.ac26-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ac26-btn {
  min-height: 52px;
  padding: 14px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid var(--ac26-line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, .035);
  color: #fff;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .08em;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.ac26-btn:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, .09);
  transform: translateY(-2px);
}

.ac26-btn-primary {
  border-color: #fff;
  background: #fff;
  color: #050607;
}

.ac26-btn-primary:hover {
  background: transparent;
  color: #fff;
}

.ac26-section {
  padding: clamp(76px, 9vw, 128px) 0;
  border-bottom: 1px solid var(--ac26-line);
}

.ac26-section-tight {
  padding-block: clamp(54px, 7vw, 88px);
}

.ac26-section-head {
  max-width: 900px;
  margin-bottom: clamp(38px, 6vw, 70px);
}

.ac26-section h2,
.ac26-heading {
  margin: 0;
  color: inherit;
  font-size: clamp(36px, 5.4vw, 76px);
  font-weight: 720;
  letter-spacing: -.045em;
  line-height: .98;
  text-wrap: balance;
}

.ac26-section h3 {
  margin: 0;
  color: inherit;
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.15;
}

.ac26-lede {
  max-width: 780px;
  margin: 22px 0 0;
  color: var(--ac26-muted);
  font-size: clamp(17px, 1.8vw, 21px);
}

.ac26-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.ac26-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ac26-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ac26-card {
  min-width: 0;
  padding: clamp(24px, 3.2vw, 40px);
  border: 1px solid var(--ac26-line);
  border-radius: var(--ac26-radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, .065), rgba(255, 255, 255, .018));
  box-shadow: inset 0 1px rgba(255, 255, 255, .04);
}

.ac26-card p:last-child {
  margin-bottom: 0;
}

.ac26-card-label,
.ac26-number {
  display: block;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, .54);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.ac26-card p,
.ac26-copy {
  color: var(--ac26-muted);
}

.ac26-list {
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
  list-style: none;
}

.ac26-list li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, .78);
}

.ac26-list li::before {
  position: absolute;
  top: .7em;
  left: 0;
  width: 7px;
  height: 7px;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 50%;
  content: "";
}

.ac26-band {
  position: relative;
  padding: clamp(34px, 5vw, 62px);
  overflow: hidden;
  border: 1px solid var(--ac26-line-strong);
  border-radius: var(--ac26-radius-lg);
  background:
    radial-gradient(circle at 92% 10%, rgba(255, 255, 255, .13), transparent 24rem),
    #0b0d10;
  box-shadow: var(--ac26-shadow);
}

.ac26-band-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}

.ac26-price {
  margin: 14px 0 0;
  color: #fff;
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 780;
  letter-spacing: -.05em;
  line-height: 1;
}

.ac26-price small {
  display: block;
  margin-top: 12px;
  color: var(--ac26-muted);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
}

.ac26-note {
  color: var(--ac26-muted);
  font-size: 14px;
}

.ac26-status {
  display: inline-flex;
  padding: 7px 10px;
  border: 1px solid var(--ac26-line);
  border-radius: 999px;
  color: var(--ac26-muted);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.ac26-status-positive {
  border-color: rgba(159, 228, 191, .34);
  color: var(--ac26-positive);
}

/* Reusable global trial selector */
.ac26-trial-modal[hidden] {
  display: none !important;
}

.ac26-trial-modal {
  position: fixed;
  inset: 0;
  z-index: 90000;
  padding:
    max(18px, env(safe-area-inset-top))
    max(18px, env(safe-area-inset-right))
    max(18px, env(safe-area-inset-bottom))
    max(18px, env(safe-area-inset-left));
  display: grid;
  place-items: center;
}

.ac26-trial-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .82);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.ac26-trial-dialog {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  max-height: calc(100dvh - 36px);
  padding: clamp(24px, 4vw, 48px);
  overflow-y: auto;
  border: 1px solid var(--ac26-line-strong);
  border-radius: var(--ac26-radius-lg);
  background: #0b0d10;
  box-shadow: 0 40px 120px rgba(0, 0, 0, .7);
}

.ac26-trial-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--ac26-line);
  border-radius: 50%;
  background: rgba(255, 255, 255, .04);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.ac26-trial-dialog h2 {
  max-width: 700px;
  margin: 8px 50px 0 0;
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: -.045em;
  line-height: .98;
}

.ac26-trial-intro {
  max-width: 700px;
  margin: 20px 0 0;
  color: var(--ac26-muted);
}

.ac26-trial-plans {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.ac26-trial-plan {
  padding: 22px;
  display: grid;
  gap: 7px;
  border: 1px solid var(--ac26-line);
  border-radius: var(--ac26-radius);
  background: rgba(255, 255, 255, .025);
  color: #fff;
  text-align: left;
  cursor: pointer;
}

.ac26-trial-plan[aria-pressed="true"] {
  border-color: #fff;
  background: rgba(255, 255, 255, .09);
  box-shadow: inset 0 0 0 1px #fff;
}

.ac26-trial-plan span {
  color: var(--ac26-muted);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.ac26-trial-plan strong {
  font-size: 24px;
}

.ac26-trial-plan small,
.ac26-trial-plan em {
  color: var(--ac26-muted);
  font-size: 13px;
  font-style: normal;
}

.ac26-trial-summary {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--ac26-line);
  border-radius: var(--ac26-radius-sm);
  overflow: hidden;
}

.ac26-trial-summary div {
  padding: 14px 16px;
  display: grid;
  gap: 3px;
  border-right: 1px solid var(--ac26-line);
}

.ac26-trial-summary div:last-child {
  border-right: 0;
}

.ac26-trial-summary span {
  color: var(--ac26-muted);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.ac26-trial-summary strong {
  font-size: 15px;
}

.ac26-trial-form {
  margin-top: 22px;
}

.ac26-trial-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.ac26-trial-fields label,
.ac26-form-field {
  display: grid;
  gap: 7px;
}

.ac26-trial-fields label > span,
.ac26-form-field > span {
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  font-weight: 750;
}

.ac26-trial-fields input,
.ac26-site .ac26-input,
.ac26-site .ac26-select,
.ac26-site .ac26-textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid var(--ac26-line);
  border-radius: 12px;
  background: rgba(255, 255, 255, .035);
  color: #fff;
}

.ac26-trial-fields input:hover,
.ac26-trial-fields input:focus,
.ac26-site .ac26-input:focus,
.ac26-site .ac26-select:focus,
.ac26-site .ac26-textarea:focus {
  border-color: rgba(255, 255, 255, .65);
}

.ac26-trial-full {
  grid-column: 1 / -1;
}

.ac26-trial-consent {
  margin: 18px 0 0;
  padding: 16px;
  border: 1px solid var(--ac26-line);
  border-radius: 12px;
  background: rgba(255, 255, 255, .025);
}

.ac26-trial-consent label {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  color: rgba(255, 255, 255, .76);
  font-size: 13px;
}

.ac26-trial-consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.ac26-trial-security {
  margin: 14px 0 0;
  color: var(--ac26-muted);
  font-size: 12px;
}

.ac26-trial-error {
  margin: 14px 0 0;
  padding: 12px 14px;
  border: 1px solid rgba(255, 178, 178, .35);
  border-radius: 10px;
  background: rgba(255, 75, 75, .08);
  color: var(--ac26-danger);
  font-size: 13px;
}

.ac26-trial-submit {
  width: 100%;
  min-height: 54px;
  margin-top: 16px;
  border: 1px solid #fff;
  border-radius: 999px;
  background: #fff;
  color: #050607;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
  cursor: pointer;
}

.ac26-trial-submit:disabled,
.ac26-trial-plan:disabled {
  cursor: wait;
  opacity: .65;
}

@media (max-width: 1120px) {
  .hd-nav {
    display: none;
  }

  .hd-trial {
    margin-left: auto;
  }

  .hamburger,
  .mnav-close {
    display: inline-grid;
    place-items: center;
  }

  .ac26-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  :root {
    --ac26-header-height: 76px;
  }

  .hd-inner,
  .ac26-container {
    width: min(100% - 28px, var(--ac26-width));
  }

  .brand-mark,
  .brand-mark img {
    width: 52px;
    height: 52px;
  }

  .brand-tag {
    display: none;
  }

  .hd-trial {
    display: none;
  }

  .ac26-hero {
    min-height: auto;
    padding-block: 80px;
  }

  .ac26-hero h1,
  .ac26-display {
    font-size: clamp(43px, 14vw, 70px);
  }

  .ac26-grid,
  .ac26-grid-2,
  .ac26-grid-4,
  .ac26-trial-plans,
  .ac26-trial-fields {
    grid-template-columns: 1fr;
  }

  .ac26-band-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .ac26-trial-summary {
    grid-template-columns: 1fr;
  }

  .ac26-trial-summary div {
    border-right: 0;
    border-bottom: 1px solid var(--ac26-line);
  }

  .ac26-trial-summary div:last-child {
    border-bottom: 0;
  }

  .ac26-trial-dialog {
    padding: 24px 18px;
    border-radius: 20px;
  }

  .ac26-trial-dialog > .ac26-kicker {
    min-height: 44px;
    padding-right: 62px;
  }

  .ac26-trial-dialog h2 {
    margin-right: 42px;
  }
}

@media (max-width: 420px) {
  .brand-text {
    display: none;
  }

  .ac26-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
