:root {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #091842;
  background:
    radial-gradient(circle at 14% -6%, rgba(95, 175, 255, .18), transparent 32rem),
    radial-gradient(circle at 92% 4%, rgba(0, 194, 255, .09), transparent 27rem),
    linear-gradient(180deg, #f8fbff 0%, #edf7ff 100%);
  line-height: 1.45;
  color-scheme: light;
  --navy: #07163f;
  --blue: #0879ff;
  --blue-deep: #0758e8;
  --cyan: #35c8ff;
  --gold: #ffb20d;
  --muted: #52648a;
  --line: #cfe1f3;
  --surface: rgba(255,255,255,.94);
  --shadow: 0 18px 45px rgba(19, 64, 116, .12), 0 3px 12px rgba(38, 103, 170, .08);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-width: 320px; }
[hidden] { display: none !important; }
a { color: #0b64d9; text-underline-offset: .2em; }
button, input, summary { font: inherit; }
button { -webkit-tap-highlight-color: transparent; }
.skip { position: fixed; z-index: 200; left: 1rem; top: -5rem; background: #fff; padding: .6rem .9rem; border-radius: .6rem; }
.skip:focus { top: .6rem; }
:focus-visible { outline: 3px solid #ff9f1a; outline-offset: 3px; }

.smarti-header {
  position: relative;
  z-index: 100;
  overflow: visible;
  width: min(1180px, calc(100% - 28px));
  margin: 14px auto 0;
  min-height: 92px;
  padding: 16px 18px 16px 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 24px;
  border: 1px solid rgba(170, 204, 233, .66);
  border-radius: 24px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 10px 34px rgba(38, 96, 160, .08);
  backdrop-filter: blur(14px);
}
.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 8px;
  color: var(--navy);
  text-decoration: none;
  font-weight: 900;
  font-size: clamp(1.75rem, 3.2vw, 2.7rem);
  line-height: 1;
  letter-spacing: -.055em;
}
.brand-mark {
  position: relative;
  display: inline-grid;
  place-items: end center;
  width: .66em;
  height: 1.08em;
  margin: 0 -.02em;
}
.brand-mark::before {
  content: "";
  position: absolute;
  top: -.2em;
  width: .24em;
  height: .24em;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 1px 6px rgba(255, 178, 13, .35);
}
.brand-mark::after {
  content: "";
  width: 100%;
  height: .78em;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  background: linear-gradient(105deg, #0d5df4 0 42%, #12d1f0 43% 62%, #1238bb 63%);
  filter: drop-shadow(0 2px 2px rgba(0, 60, 150, .2));
}
.brand-tagline {
  color: #384f7f;
  font-size: clamp(.88rem, 1.65vw, 1.25rem);
  line-height: 1.08;
  white-space: nowrap;
}
.site-menu { position: relative; }
.site-menu summary {
  list-style: none;
  cursor: pointer;
  width: 72px;
  height: 64px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 7px;
  border: 1px solid #b9d0e8;
  border-radius: 18px;
  background: linear-gradient(180deg,#fff,#f7fbff);
  box-shadow: 0 5px 15px rgba(36, 82, 133, .08);
}
.site-menu summary::-webkit-details-marker { display: none; }
.site-menu summary span {
  display: block;
  width: 32px;
  height: 4px;
  border-radius: 999px;
  background: var(--navy);
}
.site-menu nav {
  position: absolute;
  z-index: 40;
  right: 0;
  top: calc(100% + 9px);
  min-width: 190px;
  display: grid;
  gap: 3px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
  box-shadow: var(--shadow);
}
.site-menu nav a {
  padding: 9px 11px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 750;
}
.site-menu nav a:hover { background: #f1f7ff; }

main {
  width: min(1180px, 100%);
  min-height: 70vh;
  margin: auto;
  padding: 18px 14px 52px;
}
footer {
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto 20px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,.88);
  color: #4b6080;
  font-size: .9rem;
}
footer nav, .actions { display: flex; flex-wrap: wrap; gap: .75rem 1rem; }

.account-card {
  max-width: 760px;
  margin: 18px auto;
  padding: clamp(1.1rem, 4vw, 2.5rem);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
}
h1 {
  color: var(--navy);
  font-size: clamp(2rem, 5vw, 3.05rem);
  line-height: 1.08;
  letter-spacing: -.045em;
  margin: 0 0 .65rem;
}
h2 { color: var(--navy); font-size: 1.35rem; margin-top: 1.7rem; }
h3 { color: var(--navy); }
.lead { font-size: 1.08rem; color: #455c81; }
.eyebrow { font-weight: 800; color: #1765c8; }
form { display: grid; gap: 1rem; margin: 1.4rem 0; }
label { display: grid; font-weight: 650; gap: .35rem; color: #213759; }
input {
  min-width: 0;
  width: 100%;
  min-height: 48px;
  padding: .72rem .78rem;
  border: 1px solid #8194ae;
  border-radius: .58rem;
  background: #fff;
  color: #10223e;
}
button, .button {
  display: inline-block;
  min-height: 46px;
  padding: .7rem 1.05rem;
  border: 1px solid #1263d7;
  border-radius: .58rem;
  background: #1263d7;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  font-weight: 750;
}
.secondary { color: #1263d7; background: #fff; }
.text-button { min-height: auto; padding: .3rem 0; color: #1263d7; background: transparent; border-color: transparent; text-decoration: underline; text-align: left; }
button:disabled, [aria-disabled="true"] { cursor: not-allowed; opacity: .58; }
#account-status { border-left: 3px solid #4c83c4; padding-left: 1rem; color: #425b7c; }
#account-error { background: #fff0ef; border: 1px solid #b33930; color: #84211b; padding: 1rem; border-radius: .65rem; }
.fine { font-size: .88rem; color: #5a6c85; }
.exam-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); gap: 1rem; padding: 0; list-style: none; }
.exam-grid li { padding: 1.2rem; background: white; border: 1px solid var(--line); border-radius: .8rem; }
.exam-grid a { font-weight: 800; }

/* Pricing-card treatment for the public SIE All Access terms page. */
.terms-shell {
  max-width: 1120px;
  margin: 18px auto;
  display: grid;
  gap: 22px;
}
.terms-hero {
  max-width: 780px;
  margin: 8px auto 2px;
  text-align: center;
}
.terms-hero .eyebrow {
  width: fit-content;
  margin: 0 auto 10px;
  padding: 7px 13px;
  border-radius: 999px;
  background: #eaf4ff;
  color: #075fd4;
  font-size: .78rem;
  letter-spacing: .09em;
}
.terms-hero h1 {
  margin-bottom: 10px;
  font-size: clamp(2.35rem, 5.6vw, 4rem);
}
.terms-hero .lead {
  max-width: 720px;
  margin: 0 auto;
}
.terms-tier-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid #bed2e7;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow);
}
.terms-tier-card {
  position: relative;
  min-width: 0;
  min-height: 540px;
  display: flex;
  flex-direction: column;
  padding: 30px 28px 26px;
  border-right: 1px solid #d3e0ed;
  background: #fff;
}
.terms-tier-card:last-child { border-right: 0; }
.terms-tier-insider { box-shadow: inset 0 4px 0 var(--gold); }
.terms-tier-featured {
  background: linear-gradient(180deg, #f3f7ff 0%, #ffffff 72%);
  box-shadow: inset 0 4px 0 #0b70f8;
}
.terms-tier-topline {
  min-height: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 0 0 16px;
  color: #5d6e89;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .035em;
  text-transform: uppercase;
}
.terms-tier-badge {
  flex: 0 0 auto;
  padding: 5px 9px;
  border-radius: 999px;
  background: #e8f2ff;
  color: #075fd4;
  font-size: .7rem;
  letter-spacing: .02em;
}
.terms-tier-badge-gold { background: #fff2cf; color: #8a5a00; }
.terms-tier-badge-muted { background: #eef2f7; color: #53627a; }
.terms-tier-card h2 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: clamp(1.12rem, 2vw, 1.35rem);
  line-height: 1.2;
}
.terms-tier-price {
  margin: 0;
  color: #07163f;
  font-size: clamp(2.8rem, 5.5vw, 4.05rem);
  font-weight: 900;
  letter-spacing: -.06em;
  line-height: 1;
}
.terms-tier-price span {
  display: inline-block;
  margin-left: 5px;
  color: #52648a;
  font-size: .9rem;
  font-weight: 750;
  letter-spacing: 0;
  vertical-align: .55em;
}
.terms-tier-alt {
  margin: 9px 0 0;
  color: #31547d;
  font-size: .92rem;
  font-weight: 800;
}
.terms-tier-summary {
  min-height: 86px;
  margin: 19px 0 0;
  color: #4d607f;
  font-size: .92rem;
  line-height: 1.45;
}
.terms-tier-features {
  display: grid;
  gap: 13px;
  margin: 18px 0 24px;
  padding: 21px 0 0;
  border-top: 1px solid #d8e3ee;
  list-style: none;
  color: #273d61;
  font-size: .92rem;
}
.terms-tier-features li {
  position: relative;
  padding-left: 24px;
}
.terms-tier-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -.05em;
  color: #1dc977;
  font-weight: 900;
}
.terms-tier-footer {
  margin: auto 0 0;
  padding: 12px 14px;
  border: 1px solid #b8cee7;
  border-radius: 11px;
  background: #f9fbfe;
  color: #183a67;
  text-align: center;
  font-size: .88rem;
  font-weight: 850;
}
.terms-tier-featured .terms-tier-footer {
  border-color: #0c70f6;
  background: #0c70f6;
  color: #fff;
}
.terms-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.terms-detail-card {
  min-width: 0;
  padding: 22px;
  border: 1px solid #cedfee;
  border-radius: 18px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 8px 24px rgba(24, 78, 135, .06);
}
.terms-detail-number {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 50%;
  background: #e9f3ff;
  color: #0867df;
  font-weight: 900;
}
.terms-detail-card h2 {
  margin: 0 0 9px;
  font-size: 1.08rem;
}
.terms-detail-card p {
  margin: 0;
  color: #4a5e7e;
  font-size: .92rem;
  line-height: 1.55;
}
.terms-trust-note {
  padding: 17px 20px;
  border: 1px solid #cddceb;
  border-radius: 16px;
  background: rgba(255,255,255,.82);
  color: #4b5e7a;
  text-align: center;
  font-size: .9rem;
}
.terms-trust-note strong { color: #182f55; }

@media (max-width: 880px) {
  .terms-tier-grid { grid-template-columns: 1fr; }
  .terms-tier-card {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid #d3e0ed;
  }
  .terms-tier-card:last-child { border-bottom: 0; }
  .terms-tier-summary { min-height: 0; }
  .terms-detail-grid { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .terms-shell { gap: 16px; }
  .terms-hero { padding: 8px 10px 0; }
  .terms-tier-grid { border-radius: 19px; }
  .terms-tier-card { padding: 25px 20px 22px; }
  .terms-tier-price { font-size: 3rem; }
  .terms-tier-topline { align-items: flex-start; }
  .terms-detail-card { padding: 19px; }
}

.campaign-landing { display: grid; gap: 18px; }
.smarti-promo-card, .everything-card {
  position: relative;
  overflow: hidden;
  border: 1px solid #c5ddf1;
  border-radius: 27px;
  background: linear-gradient(145deg, rgba(255,255,255,.98), rgba(246,251,255,.96));
  box-shadow: var(--shadow);
}
.smarti-promo-card { padding: clamp(22px, 4vw, 38px); }
.insider-offer {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(290px, .84fr);
  grid-template-areas:
    "copy art"
    "features features"
    "cta cta"
    "fine fine";
  column-gap: 26px;
  row-gap: 22px;
}
.promo-copy { grid-area: copy; align-self: center; }
.promo-pill {
  width: fit-content;
  margin: 0 0 14px;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: clamp(.78rem, 1.6vw, 1rem);
  font-weight: 900;
  letter-spacing: -.015em;
}
.promo-pill-gold { background: linear-gradient(90deg, #fff1cc, #fff8e9); color: #0d1738; }
.promo-pill-gold span { color: #ffad09; font-size: 1.2em; margin-right: 8px; }
.promo-pill-blue { background: linear-gradient(90deg, #e9f5ff, #edf5ff); color: #0874ec; }
.promo-copy h1 {
  max-width: 650px;
  font-size: clamp(2.35rem, 5.6vw, 4.15rem);
  line-height: 1.03;
}
.promo-copy h1 em {
  font-style: normal;
  color: #086cf2;
}
.promo-subtitle {
  max-width: 640px;
  margin: 16px 0 24px;
  color: #40557c;
  font-size: clamp(1rem, 2vw, 1.36rem);
  line-height: 1.35;
}
.campaign-meter { max-width: 610px; }
.campaign-meter-label {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  color: #4b5f82;
  font-size: clamp(.9rem, 1.8vw, 1.09rem);
}
.campaign-meter-label strong { color: #0b52bf; }
.campaign-meter-track {
  height: 24px;
  overflow: hidden;
  border-radius: 999px;
  background: #dfe9f5;
  box-shadow: inset 0 2px 4px rgba(30, 68, 113, .08);
}
.campaign-meter-track span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #0871ff, #1162f4);
  transition: width .35s ease;
}
.insider-art {
  grid-area: art;
  position: relative;
  min-height: 330px;
  display: grid;
  place-items: center;
  align-self: center;
}
.insider-card {
  position: relative;
  z-index: 4;
  width: min(310px, 88%);
  aspect-ratio: 1.62;
  transform: rotate(7deg) translateY(-30px);
  display: grid;
  place-content: center;
  justify-items: center;
  border-radius: 22px;
  border: 2px solid rgba(107,197,255,.62);
  background:
    radial-gradient(circle at 78% 18%, rgba(69,210,255,.44), transparent 34%),
    linear-gradient(135deg, #0958e5 0%, #087cff 58%, #0649cc 100%);
  color: #fff;
  box-shadow: 0 24px 42px rgba(0,83,203,.24), inset 0 0 25px rgba(255,255,255,.12);
  text-shadow: 0 2px 3px rgba(0, 38, 116, .32);
}
.insider-card::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.18);
}
.insider-card strong { font-size: 2rem; font-style: italic; line-height: 1; }
.insider-card span:last-child { font-size: 1.28rem; font-weight: 900; letter-spacing: -.02em; }
.mini-crown {
  position: absolute;
  top: -24px;
  left: 34px;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: #fff;
  font-size: 1.4rem;
  background: linear-gradient(135deg,#ffd85b,#ff9b00);
  clip-path: polygon(9% 90%, 0 25%, 31% 49%, 50% 3%, 69% 49%, 100% 25%, 91% 90%);
  filter: drop-shadow(0 7px 7px rgba(151, 95, 0, .22));
}
.insider-plinth {
  position: absolute;
  z-index: 2;
  bottom: 32px;
  width: min(330px, 96%);
  min-height: 100px;
  display: grid;
  place-content: center;
  text-align: center;
  border-radius: 50% / 28%;
  border: 2px solid #b5cbe0;
  background: linear-gradient(180deg,#fff 0 52%,#dae9f5 53% 73%,#0a78ff 74% 100%);
  box-shadow: 0 18px 35px rgba(19, 72, 122, .17);
  color: #536d9e;
  letter-spacing: .04em;
}
.insider-plinth strong, .insider-plinth span { position: relative; z-index: 1; }
.insider-rays, .launch-rays { position: absolute; inset: 10% 5% 25%; z-index: 1; }
.insider-rays i, .launch-rays i {
  position: absolute;
  width: 11px;
  height: 46px;
  border-radius: 999px;
  background: linear-gradient(#ffe780,#ffad0b);
  box-shadow: 0 3px 7px rgba(207,127,0,.13);
}
.insider-rays i:nth-child(1) { left: 9%; top: 36%; transform: rotate(-40deg); }
.insider-rays i:nth-child(2) { left: 29%; top: 2%; transform: rotate(-18deg); }
.insider-rays i:nth-child(3) { left: 52%; top: -5%; }
.insider-rays i:nth-child(4) { right: 17%; top: 9%; transform: rotate(24deg); }
.insider-rays i:nth-child(5) { right: 2%; top: 40%; transform: rotate(54deg); }

.promo-features { grid-area: features; display: grid; gap: 14px; }
.promo-features-five { grid-template-columns: repeat(5, 1fr); }
.smarti-feature {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 17px 14px;
  border: 1px solid #d6e4f2;
  border-radius: 16px;
  background: rgba(255,255,255,.76);
  box-shadow: 0 8px 18px rgba(24, 84, 139, .06);
}
.smarti-feature-icon {
  flex: 0 0 44px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: #0a72fa;
}
.smarti-feature-icon svg, .member-resource svg { width: 100%; height: 100%; }
.smarti-feature strong { display: block; color: #0b163b; font-size: 1rem; line-height: 1.18; }
.smarti-feature p { margin: 5px 0 0; color: #4f6281; line-height: 1.3; font-size: .92rem; }

.smarti-primary-cta, .smarti-outline-cta {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 850;
  font-size: clamp(1.12rem, 2.7vw, 1.72rem);
  letter-spacing: -.025em;
}
.smarti-primary-cta {
  grid-area: cta;
  border: 1px solid #0a6df4;
  background: linear-gradient(90deg, #0874fa 0%, #0d6cf5 48%, #0a5fef 100%);
  color: #fff;
  box-shadow: 0 12px 24px rgba(0, 96, 232, .17);
}
.smarti-primary-cta:hover { filter: brightness(1.035); transform: translateY(-1px); }
.promo-fineprint { grid-area: fine; margin: -10px 0 0; text-align: center; color: #596c8e; font-size: .92rem; }
.compact-cta { width: min(520px,100%); margin-top: 18px; }

.launch-offer {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(270px, .82fr);
  grid-template-areas: "launchcopy launchart" "launchcta launchcta";
  gap: 14px 24px;
}
.launch-copy { grid-area: launchcopy; align-self: center; }
.launch-offer-sentence {
  margin: 3px 0 12px;
  color: #334e7c;
  font-size: clamp(1.1rem, 2.45vw, 1.55rem);
  line-height: 1.1;
}
.launch-offer-sentence > span { display: block; margin-bottom: 6px; }
.launch-offer-sentence strong {
  display: inline-block;
  color: #096ff2;
  font-size: clamp(3.8rem, 8.5vw, 6.8rem);
  font-weight: 900;
  letter-spacing: -.07em;
  line-height: .95;
}
.launch-offer-sentence b {
  display: inline-block;
  margin-left: 12px;
  color: #12214c;
  font-size: clamp(1.1rem, 2.6vw, 1.75rem);
  vertical-align: 1.1em;
}
.launch-benefits { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 8px; color: #42587e; font-size: 1.08rem; }
.launch-benefits li::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 1.35em;
  height: 1.35em;
  margin-right: 10px;
  border: 2px solid #0c74f6;
  border-radius: 50%;
  color: #0c74f6;
  font-weight: 900;
  font-size: .78em;
}
.launch-availability { color: #5b6e8c; font-size: .93rem; }
.launch-art {
  grid-area: launchart;
  position: relative;
  min-height: 285px;
  display: grid;
  place-items: center;
}
.launch-ticket {
  position: relative;
  z-index: 3;
  width: min(300px, 88%);
  aspect-ratio: 1.5;
  display: grid;
  place-content: center;
  justify-items: center;
  transform: rotate(-10deg);
  border-radius: 23px;
  border: 3px solid #0a5ed8;
  background: linear-gradient(135deg,#1c91ff,#0768ee 63%,#0759d9);
  color: #fff;
  box-shadow: 0 20px 38px rgba(2, 93, 209, .22), inset 0 0 26px rgba(255,255,255,.13);
  font-size: 2.1rem;
  line-height: 1;
  letter-spacing: .02em;
}
.launch-ticket::before, .launch-ticket::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 28px;
  height: 54px;
  background: #f8fbff;
  border-radius: 50%;
  transform: translateY(-50%);
}
.launch-ticket::before { left: -17px; }
.launch-ticket::after { right: -17px; }
.launch-ticket span, .launch-ticket strong { position: relative; z-index: 1; }
.launch-ticket strong { margin-top: 6px; font-size: 1.12em; }
.launch-ticket span::after {
  content: "";
  position: absolute;
  inset: -26px -56px;
  border: 2px dashed rgba(0, 56, 148, .4);
  border-radius: 16px;
}
.launch-rays i:nth-child(1) { right: 7%; top: 8%; transform: rotate(18deg); }
.launch-rays i:nth-child(2) { right: -2%; top: 37%; transform: rotate(76deg); }
.launch-rays i:nth-child(3) { left: 15%; top: 8%; transform: rotate(-28deg); }
.smarti-outline-cta {
  grid-area: launchcta;
  color: #0868df;
  background: #fff;
  border: 2px solid #0870ee;
}
.mini-brand-mark {
  display: inline-block;
  width: .7em;
  height: .9em;
  margin: 0 .18em;
  vertical-align: -.08em;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  background: linear-gradient(105deg,#0a61ec 0 45%,#35d6f1 46% 62%,#123cb3 63%);
}
.standard-offer { padding: clamp(30px, 6vw, 58px); }
.standard-offer h1 { max-width: 720px; }

.everything-card { padding: clamp(26px, 4vw, 38px); text-align: center; }
.everything-card h2 { margin: 0; font-size: clamp(2rem, 4.7vw, 3.35rem); letter-spacing: -.045em; line-height: 1.08; }
.everything-card > p { margin: 9px 0 20px; color: #52658a; font-size: 1.05rem; }
.everything-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.everything-grid .smarti-feature { text-align: left; align-items: flex-start; min-height: 130px; }
.campaign-live-note { margin: 0 8px; color: #62738e; font-size: .86rem; text-align: center; }

.campaign-account-card {
  max-width: 1040px;
  border: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}
.campaign-account-heading, .campaign-account-lead { text-align: center; }
.campaign-account-heading { margin-top: 14px; }
.campaign-account-lead { margin: 0 auto 18px; }
.campaign-member-shell { display: grid; gap: 18px; margin-top: 18px; }
.campaign-active-banner {
  min-height: 128px;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 22px 28px;
  border: 1px solid #c8e9df;
  border-radius: 24px;
  background: linear-gradient(100deg, #eefcf7, #effbf9 58%, #f8fffd);
  box-shadow: var(--shadow);
}
.active-check {
  flex: 0 0 76px;
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg,#28d990,#0bbd7a);
  color: white;
  font-size: 3.1rem;
  font-weight: 900;
  box-shadow: 0 10px 20px rgba(6, 166, 103, .18);
}
.campaign-active-banner h2 { margin: 0 0 3px; font-size: clamp(1.55rem, 3vw, 2.2rem); }
.campaign-active-banner p { margin: 0; color: #52678b; font-size: 1.08rem; }

.member-course-card {
  padding: clamp(26px, 5vw, 42px);
  border: 1px solid #bcdaf1;
  border-radius: 26px;
  background:
    radial-gradient(circle at 92% 14%, rgba(31, 168, 255, .11), transparent 18rem),
    #fff;
  box-shadow: var(--shadow);
  text-align: center;
}
.member-bank-art { display: block; width: min(670px, 100%); height: auto; margin: -10px auto -6px; }
.member-course-card h2 { margin: 0; font-size: clamp(2.8rem, 7vw, 4.3rem); letter-spacing: -.055em; }
.member-course-subtitle { margin: 3px 0; color: #496391; font-size: clamp(1.3rem, 3vw, 2rem); }
.member-progress-summary { margin: 8px 0 20px; color: #5a6f95; font-size: 1.05rem; }
.member-course-card .smarti-primary-cta { max-width: 900px; margin: 0 auto; }
.member-resource-link { display: inline-block; margin-top: 22px; font-size: 1.14rem; font-weight: 800; text-decoration: none; }

.campaign-offer-panel {
  padding: 22px 24px;
  border: 1px solid #d2e2f1;
  border-radius: 20px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 9px 24px rgba(27, 83, 137, .07);
}
.campaign-offer-panel h2 { margin-top: 0; }
.campaign-offer-panel #campaign-prices button { border-radius: 999px; min-height: 54px; padding-inline: 22px; }
.member-resource-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.member-resource {
  min-height: 180px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  padding: 22px 12px;
  border: 1px solid #d4e4f2;
  border-radius: 19px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 10px 22px rgba(31, 88, 140, .06);
  color: #0b183f;
  text-decoration: none;
  text-align: center;
}
.member-resource svg { width: 64px; height: 64px; color: #0a75fb; }
.member-resource strong { font-size: 1.12rem; line-height: 1.18; }
.campaign-account-card #signed-in {
  margin-top: 20px;
  padding: 18px 20px;
  border: 1px solid #d6e4f1;
  border-radius: 18px;
  background: rgba(255,255,255,.82);
}
.campaign-account-card #signed-in > h2 { margin-top: 0; }
.campaign-account-card #export-progress,
.campaign-account-card #device-progress,
.campaign-account-card #password-update-form,
.campaign-account-card > .fine,
.campaign-account-card > p:last-child { margin-left: 12px; margin-right: 12px; }

@media (max-width: 900px) {
  .smarti-header { grid-template-columns: minmax(0,1fr) auto; gap: 12px; padding-left: 18px; }
  .brand-tagline { display: none; }
  .insider-offer, .launch-offer {
    grid-template-columns: 1fr;
    grid-template-areas: "copy" "art" "features" "cta" "fine";
  }
  .launch-offer { grid-template-areas: "launchcopy" "launchart" "launchcta"; }
  .insider-art { min-height: 280px; }
  .launch-art { min-height: 240px; }
  .promo-features-five { grid-template-columns: repeat(3, 1fr); }
  .everything-grid { grid-template-columns: 1fr; }
  .member-resource-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .smarti-header { width: calc(100% - 16px); margin-top: 8px; min-height: 76px; border-radius: 18px; }
  .brand { font-size: 1.72rem; }
  .site-menu summary { width: 56px; height: 52px; border-radius: 14px; }
  .site-menu summary span { width: 27px; height: 3px; }
  main { padding: 10px 8px 38px; }
  .smarti-promo-card, .everything-card { border-radius: 20px; }
  .smarti-promo-card { padding: 22px 18px; }
  .promo-copy h1 { font-size: clamp(2.15rem, 11vw, 3rem); }
  .campaign-meter-label { align-items: end; font-size: .88rem; }
  .promo-features-five { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .promo-features-five .smarti-feature:last-child { grid-column: 1 / -1; }
  .smarti-feature { padding: 13px 10px; gap: 9px; }
  .smarti-feature-icon { flex-basis: 36px; width: 36px; height: 36px; }
  .smarti-feature strong { font-size: .9rem; }
  .insider-art { min-height: 250px; }
  .insider-card { width: 245px; }
  .insider-plinth { width: 265px; bottom: 20px; font-size: .84rem; }
  .smarti-primary-cta, .smarti-outline-cta { min-height: 60px; font-size: 1.08rem; padding: 14px 18px; }
  .launch-offer-sentence strong { font-size: 4.45rem; }
  .launch-offer-sentence b { vertical-align: .75em; margin-left: 7px; }
  .launch-ticket { width: 230px; font-size: 1.65rem; }
  .everything-card { padding: 24px 16px; }
  .member-bank-art { margin-top: -16px; }
  .member-course-card { padding: 20px 14px 25px; }
  .campaign-active-banner { min-height: 105px; gap: 15px; padding: 18px; border-radius: 19px; }
  .active-check { flex-basis: 58px; width: 58px; height: 58px; font-size: 2.35rem; }
  .campaign-active-banner p { font-size: .94rem; }
  .member-resource-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .member-resource { min-height: 145px; padding: 16px 8px; border-radius: 15px; }
  .member-resource svg { width: 52px; height: 52px; }
  .member-resource strong { font-size: .98rem; }
}
@media (max-width: 400px) {
  .brand { font-size: 1.54rem; gap: 6px; }
  .promo-features-five { grid-template-columns: 1fr 1fr; }
  .launch-offer-sentence b { display: block; margin: 7px 0 0; vertical-align: initial; }
}
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.info-popover {
  position: relative;
  display: inline-block;
}
.info-popover > summary {
  list-style: none;
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  border: 1px solid #bfd5ea;
  border-radius: 50%;
  background: #fff;
  color: #0b64d9;
  font-weight: 900;
  cursor: pointer;
  user-select: none;
}
.info-popover > summary::-webkit-details-marker { display: none; }
.info-popover-panel {
  position: absolute;
  z-index: 250;
  right: 0;
  top: calc(100% + 8px);
  width: min(320px, calc(100vw - 32px));
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow);
  color: #40557c;
  font-size: .88rem;
  line-height: 1.4;
}
.info-popover-panel p { margin: 0 0 .55rem; }
.info-popover-panel p:last-child { margin-bottom: 0; }
.offer-heading-row,
.account-identity {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.account-identity {
  padding: 10px 0 16px;
  color: #52648a;
}
.account-identity strong { color: var(--navy); }
.account-status-compact {
  min-height: 1.5em;
  margin: 0 0 12px;
  color: #60718f;
  font-size: .9rem;
}
.account-entry-actions { margin: 12px 0 4px; }
.compact-button { min-height: 38px; padding: .48rem .8rem; }
.account-tools { margin-left: 8px; vertical-align: middle; }
.account-tools .info-popover-panel { right: -8px; }
.account-tools form { margin: .75rem 0; }
.account-help { margin: 14px 0 0; text-align: center; font-size: .9rem; }
.campaign-active-banner {
  justify-content: flex-start;
}
.campaign-active-banner h2 {
  margin: 0;
  flex: 1;
}
.member-course-card h2 { margin-bottom: 18px; }
.everything-card > p,
.member-course-subtitle,
.member-progress-summary,
.member-resource-link,
.promo-fineprint,
.campaign-live-note {
  display: none !important;
}
@media (max-width: 620px) {
  .info-popover-panel { right: -6px; }
}


/* Narrow SIE offer-card trust and CTA refinement. */
.terms-tier-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}
.terms-tier-cta-icon {
  display: inline-grid;
  place-items: center;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 999px;
  background: rgba(11, 100, 217, .10);
  color: currentColor;
  font-size: 1rem;
  line-height: 1;
}
.terms-tier-featured .terms-tier-cta-icon {
  background: rgba(255,255,255,.18);
}
.terms-trust-note {
  display: grid;
  gap: 14px;
  padding: 20px;
}
.terms-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.terms-trust-item {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 14px;
  border: 1px solid #d8e5f1;
  border-radius: 14px;
  background: #fff;
  text-align: left;
}
.terms-trust-icon {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #eaf4ff;
  color: #0867df;
  font-size: 1.05rem;
  font-weight: 900;
}
.terms-trust-item strong,
.terms-trust-item span {
  display: block;
}
.terms-trust-item strong {
  margin-bottom: 2px;
  color: #182f55;
  font-size: .92rem;
}
.terms-trust-item div > span {
  color: #5a6d8b;
  font-size: .78rem;
  line-height: 1.3;
}
.terms-trust-note > p {
  margin: 0;
  color: #4b5e7a;
  text-align: center;
  font-size: .84rem;
  line-height: 1.45;
}
@media (max-width: 700px) {
  .terms-trust-grid {
    grid-template-columns: 1fr;
  }
}


/* SVG-led tier identity and Smarti wordmark treatment. */
.terms-tier-card { isolation: isolate; }
.terms-tier-card > *:not(.terms-tier-art) { position: relative; z-index: 1; }
.smarti-tier-wordmark { white-space: nowrap; }
.smarti-title-mark {
  position: relative;
  display: inline-grid;
  place-items: end center;
  width: .58em;
  height: 1em;
  margin: 0 .01em;
  vertical-align: -.06em;
}
.smarti-title-mark::before {
  content: "";
  position: absolute;
  top: -.08em;
  width: .22em;
  height: .22em;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 1px 5px rgba(255,178,13,.38);
}
.smarti-title-mark > span {
  width: 100%;
  height: .72em;
  clip-path: polygon(50% 0,100% 100%,0 100%);
  background: linear-gradient(105deg,#0d5df4 0 42%,#12d1f0 43% 62%,#1238bb 63%);
  filter: drop-shadow(0 2px 2px rgba(0,60,150,.18));
}
.terms-tier-art {
  position: absolute;
  z-index: 0;
  top: 18px;
  right: 18px;
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  transform: rotate(5deg);
  opacity: .95;
  box-shadow: 0 12px 26px rgba(25,74,132,.12);
}
.terms-tier-art svg { width: 52px; height: 52px; }
.terms-tier-art-insider {
  color: #c78300;
  background: linear-gradient(145deg,#fff8dc,#ffe8a1);
  border: 1px solid #f3cf69;
}
.terms-tier-art-launch {
  color: #0871f6;
  background: linear-gradient(145deg,#edf7ff,#d9ebff);
  border: 1px solid #a8cff8;
}
.terms-tier-art-sie {
  color: #183f76;
  background: linear-gradient(145deg,#f2f7fd,#dce8f5);
  border: 1px solid #bed2e7;
}
.terms-tier-card h2 { padding-right: 78px; }
.terms-tier-cta { min-height: 52px; }
.terms-tier-cta-icon {
  width: 1.75rem;
  height: 1.75rem;
  background: rgba(11,100,217,.09);
}
.terms-tier-cta-icon svg { width: 18px; height: 18px; }
.terms-tier-featured .terms-tier-cta-icon { background: rgba(255,255,255,.18); }
.terms-trust-icon {
  width: 46px;
  height: 46px;
  flex-basis: 46px;
  background: linear-gradient(145deg,#eef7ff,#deedff);
  box-shadow: inset 0 0 0 1px #c8def5, 0 6px 14px rgba(24,87,151,.08);
}
.terms-trust-icon svg { width: 25px; height: 25px; }
@media (max-width: 520px) {
  .terms-tier-art {
    top: 17px;
    right: 17px;
    width: 62px;
    height: 62px;
    border-radius: 18px;
  }
  .terms-tier-art svg { width: 42px; height: 42px; }
  .terms-tier-card h2 { padding-right: 62px; }
}


/* Precisely center the revised trust SVGs within their circular badges. */
.terms-trust-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 0;
}
.terms-trust-icon svg {
  display: block;
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  margin: 0;
  position: static;
  transform: none;
  transform-origin: center;
  overflow: visible;
}


/* Optical centering: SVG geometry sits high/left inside its viewBox, so compensate within the badge. */
.terms-trust-icon svg {
  transform: translate(4px, 4px);
}


/* Normalized SVG viewBoxes now contain centered artwork; remove prior optical offset. */
.terms-trust-icon svg {
  width: 28px;
  height: 28px;
  flex-basis: 28px;
  transform: none;
  transform-origin: 50% 50%;
}


/* Final trust-badge alignment: center a fixed SVG box independently of flex/text layout. */
.terms-trust-icon {
  position: relative;
  display: block;
  padding: 0;
  overflow: hidden;
}
.terms-trust-icon svg {
  position: absolute;
  inset: 50% auto auto 50%;
  display: block;
  width: 28px;
  height: 28px;
  margin: 0;
  transform: translate(-50%, -50%);
  transform-origin: center;
}
