:root {
  --ink: #1d1d1f;
  --muted: #6e6e73;
  --subtle: #f5f5f7;
  --surface: #ffffff;
  --line: rgba(0, 0, 0, .08);
  --navy: #111114;
  --navy-2: #2d2d32;
  --teal: #0f766e;
  --teal-2: #14b8a6;
  --blue: #0071e3;
  --sky: #38bdf8;
  --gold: #c58a2b;
  --success: #12b76a;
  --danger: #b42318;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.06);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--subtle);
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
}

.site-shell {
  min-height: 100vh;
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 10px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1040px, calc(100% - 28px));
  margin: 10px auto 0;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.76), rgba(255,255,255,.56)),
    rgba(244, 247, 251, .6);
  box-shadow: 0 18px 42px rgba(9, 21, 38, .11), inset 0 1px 0 rgba(255,255,255,.86);
  backdrop-filter: blur(28px) saturate(180%);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(255,255,255,.8), rgba(20,184,166,.18), rgba(56,189,248,.14), rgba(255,255,255,.75));
  opacity: .92;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #fff;
  font-size: 17px;
  font-weight: 850;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,.34), transparent 28%),
    linear-gradient(145deg, #07111f, #0f766e 55%, #38bdf8);
  box-shadow: 0 10px 26px rgba(9, 21, 38, .2), inset 0 1px 0 rgba(255,255,255,.26);
}

.site-header .brand-mark {
  animation: logoBreathe 4.8s ease-in-out infinite;
}

.site-header .brand-mark::before {
  content: "";
  position: absolute;
  inset: -20%;
  z-index: 1;
  background: linear-gradient(115deg, transparent 22%, rgba(255,255,255,.42) 42%, transparent 62%);
  transform: translateX(-120%) rotate(8deg);
  animation: logoSheen 5.2s ease-in-out infinite;
}

.site-header .brand-mark::after {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: 9px;
  background: linear-gradient(145deg, rgba(7,17,31,.72), rgba(15,118,110,.28), rgba(56,189,248,.3));
  box-shadow: inset 0 0 18px rgba(255,255,255,.08);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 14px;
  font-weight: 820;
  line-height: 1.1;
}

.brand small {
  margin-top: 1px;
  color: var(--muted);
  font-size: 11px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 13px;
  font-weight: 680;
}

.site-nav a,
.nav-form button {
  border: 0;
  background: transparent;
  color: #26374d;
  font: inherit;
  text-decoration: none;
  cursor: pointer;
  border-radius: 999px;
  padding: 7px 10px;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.site-nav a:hover,
.nav-form button:hover,
.text-link:hover {
  color: var(--teal);
}

.site-nav a:hover,
.nav-form button:hover {
  background: rgba(255, 255, 255, .78);
  transform: translateY(-1px);
}

.nav-cta {
  padding: 8px 14px !important;
  border-radius: 999px;
  color: #fff !important;
  background: rgba(9, 21, 38, .9) !important;
  box-shadow: 0 10px 24px rgba(9, 21, 38, .18), inset 0 1px 0 rgba(255,255,255,.12);
}

.nav-form {
  margin: 0;
}

.language-form {
  margin: 0 0 0 4px;
}

.language-form label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 4px 3px 10px;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 999px;
  background: rgba(255, 255, 255, .7);
  color: #26374d;
  font-size: 12px;
  font-weight: 800;
}

.language-form select {
  width: auto;
  min-height: 30px;
  padding: 4px 26px 4px 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .88);
  color: var(--ink);
  font: inherit;
  cursor: pointer;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.76);
  padding: 9px 13px;
  color: var(--ink);
  font-weight: 800;
}

.flash {
  margin: 18px clamp(18px, 5vw, 72px);
  padding: 13px 16px;
  border: 1px solid #9ee6c1;
  border-radius: 12px;
  color: #065f46;
  background: #e8fff3;
}

.form-alert {
  display: grid;
  gap: 4px;
  padding: 13px 14px;
  border: 1px solid #fecaca;
  border-radius: 12px;
  color: #991b1b;
  background: #fff1f2;
}

.form-alert strong,
.form-alert span {
  display: block;
}

.field-error {
  color: #b42318;
  font-size: 13px;
  font-weight: 800;
}

.hero,
.section,
.page-hero,
.dashboard-shell,
.auth-shell,
.checkout-shell,
.contact-shell,
.article-shell,
.newsletter {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 26px;
  align-items: stretch;
  padding: 56px 0 34px;
}

.hero-copy,
.market-card,
.lab-panel,
.auth-card,
.auth-aside,
.checkout-main,
.order-summary,
.contact-shell > div,
.form-card,
.panel,
.card,
.product-card,
.price-card,
.article-card,
.feature-card,
.metric-card,
.license-row {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: clamp(30px, 5vw, 62px);
  background:
    radial-gradient(circle at top right, rgba(20, 184, 166, 0.13), transparent 35%),
    #fff;
}

.hero-proof-card {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  border: 1px solid rgba(9, 21, 38, .14);
  border-radius: 18px;
  background: #07111f;
  box-shadow: var(--shadow);
}

.hero-proof-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.38)),
    radial-gradient(circle at 75% 18%, rgba(94,234,212,.18), transparent 28%);
  pointer-events: none;
}

.hero-proof-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 600px;
  object-fit: cover;
  object-position: 84% 28%;
  transform: scale(1.04);
}

.hero-proof-caption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 16px;
  color: #fff;
  background: rgba(4, 8, 12, .78);
  backdrop-filter: blur(14px);
}

.hero-proof-caption strong,
.hero-proof-caption span {
  display: block;
}

.hero-proof-caption span {
  margin-top: 5px;
  color: rgba(255,255,255,.74);
}

.conversion-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 10px;
  margin-bottom: 34px;
  padding: 18px 20px;
  border: 1px solid rgba(15, 118, 110, .18);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}

.conversion-strip strong,
.conversion-strip span {
  display: block;
}

.conversion-strip strong {
  font-size: 20px;
}

.conversion-strip span {
  color: var(--muted);
}

.workflow-section {
  padding-top: 24px;
}

.workflow-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.workflow-steps div {
  min-height: 126px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow);
}

.workflow-steps strong,
.workflow-steps span {
  display: block;
}

.workflow-steps strong {
  color: var(--teal);
  font-size: 13px;
  letter-spacing: .08em;
}

.workflow-steps span {
  margin-top: 14px;
  font-size: 20px;
  font-weight: 850;
  line-height: 1.15;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 6px rgba(18, 183, 106, 0.12);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(40px, 6.6vw, 80px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.03;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.15;
}

.hero-text,
.section-head p,
.page-hero p,
.proof-copy p,
.auth-card p,
.auth-aside p,
.checkout-main p,
.contact-shell p,
.article-body,
.product-card p,
.article-card p,
.feature-card p,
.price-card p,
.site-footer p,
.muted {
  color: var(--muted);
}

.hero-text {
  max-width: 720px;
  font-size: clamp(17px, 2vw, 21px);
}

.actions,
.dashboard-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 0;
  border-radius: 10px;
  background: var(--teal);
  color: #fff;
  font: inherit;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
  background: #0d665f;
  box-shadow: 0 14px 30px rgba(15, 118, 110, 0.22);
}

.button.ghost {
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
}

.button.ghost.dark {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.22);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-row span,
.mini-list span,
.contact-points span,
.check-list span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  border-radius: 999px;
  background: #eef8f7;
  color: #0f766e;
  font-size: 13px;
  font-weight: 800;
}

.market-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 620px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(150deg, #07111f, #0f2841 58%, #0b352f);
  background-size: 36px 36px, 36px 36px, auto;
}

.market-card-head,
.metric-strip,
.panel-foot {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  padding: 22px;
  border-bottom: 1px solid rgba(255,255,255,.14);
}

.metric-strip {
  border-top: 1px solid rgba(255,255,255,.14);
  border-bottom: 0;
}

.market-card small,
.metric-strip small {
  display: block;
  color: rgba(255,255,255,.58);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.market-card strong,
.metric-strip strong {
  display: block;
  color: #fff;
}

.status-dot {
  padding: 8px 11px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  color: rgba(255,255,255,.78);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.screenshot-stage {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 420px;
  margin: 0;
  padding: 22px;
  overflow: hidden;
}

.screenshot-stage::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 20px;
  background: radial-gradient(circle at 70% 20%, rgba(20,184,166,.18), transparent 32%);
}

.screenshot-stage img {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: 92% 24%;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 18px;
  box-shadow: 0 26px 70px rgba(0,0,0,.34);
}

.screenshot-stage figcaption {
  position: relative;
  z-index: 2;
  width: min(420px, calc(100% - 30px));
  margin: -74px 15px 16px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 16px;
  color: #fff;
  background: rgba(7,17,31,.84);
  box-shadow: 0 18px 48px rgba(0,0,0,.28);
  backdrop-filter: blur(14px);
}

.screenshot-stage figcaption strong,
.screenshot-stage figcaption span {
  display: block;
}

.screenshot-stage figcaption span {
  margin-top: 4px;
  color: rgba(255,255,255,.72);
  font-size: 13px;
}

.chart-stage {
  position: relative;
  min-height: 420px;
  padding: 28px;
  overflow: hidden;
}

.chart-grid {
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 18px;
  background: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 42px 42px;
}

.chart-stage svg {
  position: absolute;
  inset: 60px 24px 70px;
  width: calc(100% - 48px);
  height: calc(100% - 130px);
}

.chart-line {
  fill: none;
  stroke: var(--teal-2);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  filter: drop-shadow(0 0 14px rgba(20, 184, 166, .55));
  animation: drawLine 2.4s ease forwards;
}

.chart-area {
  fill: rgba(20, 184, 166, .18);
}

.signal-panel {
  position: absolute;
  left: 28px;
  bottom: 34px;
  width: min(320px, calc(100% - 56px));
  padding: 18px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 16px;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(18px);
}

.signal-panel span {
  display: block;
  margin-top: 6px;
  color: rgba(255,255,255,.68);
  font-size: 14px;
}

.section {
  padding: 58px 0;
}

.section-head {
  max-width: 780px;
  margin-bottom: 24px;
}

.section-head.split,
.dashboard-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.alt-section {
  width: 100%;
  max-width: none;
  padding: 64px clamp(18px, 5vw, 72px);
  background: #fff;
}

.alt-section > * {
  width: min(1180px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

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

.no-pad {
  margin-top: 26px;
}

.feature-card,
.product-card,
.article-card,
.price-card,
.metric-card,
.card {
  padding: 24px;
}

.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 20px;
  border-radius: 14px;
  color: #fff;
  background: var(--navy);
  font-weight: 900;
}

.product-card small,
.article-card small,
.price-card small,
.order-summary small,
.metric-card small,
.license-row small {
  display: block;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.product-card a:not(.button),
.article-card a,
.text-link {
  color: var(--teal);
  font-weight: 900;
  text-decoration: none;
}

.product-card.large,
.article-card.large {
  min-height: 310px;
}

.article-card-image {
  margin: -24px -24px 20px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  border-radius: 18px 18px 0 0;
  background: var(--navy);
}

.article-card-image img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 450ms ease;
}

.article-card:hover .article-card-image img {
  transform: scale(1.035);
}

.mini-list,
.contact-points,
.check-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0;
}

.proof-section {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 28px;
  align-items: center;
  width: 100%;
  max-width: none;
  padding: 70px clamp(18px, 5vw, 72px);
  color: #fff;
  background:
    radial-gradient(circle at top right, rgba(56,189,248,.18), transparent 32%),
    linear-gradient(135deg, var(--navy), #10233a);
}

.proof-section.compact {
  margin-bottom: 54px;
}

.proof-section > * {
  max-width: 560px;
}

.proof-copy p,
.proof-section .eyebrow,
.proof-section h2 {
  color: #fff;
}

.proof-list {
  display: grid;
  gap: 12px;
}

.proof-list div {
  padding: 18px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 16px;
  background: rgba(255,255,255,.08);
}

.proof-list strong,
.proof-list span {
  display: block;
}

.proof-list span {
  margin-top: 4px;
  color: rgba(255,255,255,.68);
}

.ksm-action-feature {
  padding-top: 34px;
}

.action-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, .82fr);
  gap: 24px;
  align-items: stretch;
}

.action-showcase.reverse {
  grid-template-columns: minmax(320px, .82fr) minmax(0, 1.18fr);
}

.action-showcase-image,
.action-showcase-copy {
  margin: 0;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .06);
  overflow: hidden;
}

.action-showcase-image {
  background: linear-gradient(145deg, #111114, #2d2d32);
}

.action-showcase-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: 86% 26%;
}

.action-showcase-copy {
  display: grid;
  align-content: center;
  padding: clamp(26px, 4vw, 46px);
}

.action-showcase-copy h3 {
  margin-top: 4px;
  font-size: clamp(28px, 3vw, 42px);
  letter-spacing: -.01em;
}

.action-showcase-copy p {
  color: var(--muted);
  font-size: 17px;
}

.compact-list {
  margin-top: 20px;
}

.compact-list div {
  color: var(--ink);
  background: #f5f5f7;
}

.compact-list span {
  color: var(--muted);
}

.page-hero {
  padding: 68px 0 34px;
}

.page-hero h1 {
  max-width: 850px;
}

.page-hero p {
  max-width: 720px;
  font-size: 18px;
}

.research-hero {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(380px, 1.1fr);
  gap: 26px;
  align-items: stretch;
  padding: 56px 0 34px;
}

.research-hero-copy {
  padding: clamp(30px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    radial-gradient(circle at top right, rgba(20,184,166,.12), transparent 36%),
    #fff;
  box-shadow: var(--shadow);
}

.research-hero h1 {
  font-size: clamp(42px, 6vw, 78px);
}

.research-hero-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
}

.research-visual {
  position: relative;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(9, 21, 38, .16);
  border-radius: 18px;
  background: var(--navy);
  box-shadow: var(--shadow);
}

.research-visual img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.research-visual figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 16px;
  color: #fff;
  background: rgba(7,17,31,.78);
  backdrop-filter: blur(14px);
}

.research-visual figcaption strong,
.research-visual figcaption span {
  display: block;
}

.research-visual figcaption span {
  margin-top: 4px;
  color: rgba(255,255,255,.72);
}

.research-promise {
  padding-top: 34px;
}

.compact-page {
  min-height: 58vh;
}

.product-hero {
  padding-bottom: 54px;
}

.lab-panel,
.auth-aside,
.order-summary {
  padding: 28px;
  color: #fff;
  background:
    radial-gradient(circle at top right, rgba(20,184,166,.2), transparent 36%),
    linear-gradient(145deg, var(--navy), var(--navy-2));
}

.lab-panel h2,
.auth-aside h2 {
  color: #fff;
}

.product-shot-panel {
  display: grid;
  gap: 18px;
  align-content: start;
}

.product-shot-panel img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: 86% 26%;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 16px;
  box-shadow: 0 22px 54px rgba(0,0,0,.3);
}

.check-list {
  display: grid;
}

.check-list span {
  justify-content: flex-start;
  border-radius: 12px;
  color: #dffdf7;
  background: rgba(255,255,255,.1);
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 410px;
}

.price-card.featured {
  border-color: rgba(15, 118, 110, .35);
  box-shadow: 0 24px 70px rgba(15, 118, 110, .16);
}

.popular {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 6px 9px;
  border-radius: 999px;
  color: #fff;
  background: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.price-card strong,
.order-summary strong {
  display: block;
  margin: 8px 0 12px;
  font-size: 42px;
  line-height: 1;
}

.plan-duration {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 7px 10px;
  border-radius: 999px;
  color: #0f766e;
  background: #eef8f7;
  font-size: 13px;
  font-weight: 900;
}

.price-card ul,
.order-summary ul {
  padding-left: 20px;
  margin: 12px 0 24px;
  color: var(--muted);
}

.price-card .button {
  margin-top: auto;
}

.compact-offer {
  min-height: 380px;
}

.checkout-confidence {
  padding-top: 24px;
}

.buyer-clarity-section {
  padding-top: 28px;
}

.sticky-buy-cta {
  position: fixed;
  left: 50%;
  bottom: 16px;
  z-index: 60;
  display: none;
  min-width: min(320px, calc(100% - 28px));
  transform: translateX(-50%);
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 999px;
  color: #fff;
  background: rgba(15, 118, 110, .96);
  box-shadow: 0 18px 42px rgba(15, 118, 110, .28);
  text-align: center;
  text-decoration: none;
  font-weight: 900;
  backdrop-filter: blur(14px);
}

.premium-chart {
  min-height: 360px;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}

.premium-chart small,
.premium-chart strong,
.premium-chart span {
  display: block;
}

.premium-chart strong {
  margin: 5px 0;
  font-size: 28px;
}

.live-chart {
  min-height: 620px;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
}

.chart-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 18px 22px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), #12324f);
}

.chart-toolbar small {
  color: rgba(255,255,255,.72);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.chart-toolbar strong {
  margin: 3px 0 0;
  font-size: 22px;
}

.chart-toolbar > span {
  color: rgba(255,255,255,.76);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.tradingview-widget-container {
  position: relative;
  height: 100%;
  min-height: 540px;
  width: 100%;
}

.tradingview-widget-container__widget {
  height: calc(100% - 32px);
  min-height: 508px;
  width: 100%;
}

.tradingview-widget-copyright {
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  color: var(--muted);
  font-size: 12px;
  background: #fff;
}

.tradingview-widget-copyright a {
  color: #2563eb;
  font-weight: 800;
  text-decoration: none;
}

.ksm-chart-signal {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 4;
  width: min(300px, calc(100% - 36px));
  padding: 14px;
  border: 1px solid rgba(15, 23, 42, .12);
  border-radius: 16px;
  color: var(--ink);
  background: rgba(255,255,255,.94);
  box-shadow: 0 18px 44px rgba(15, 23, 42, .18);
  backdrop-filter: blur(12px);
}

.signal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.signal-head span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
}

.signal-head strong {
  margin: 0;
  padding: 6px 10px;
  border-radius: 999px;
  color: #fff;
  background: #0f9f6e;
  font-size: 13px;
  line-height: 1;
}

.signal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 12px;
}

.signal-price,
.signal-body div {
  padding: 10px;
  border-radius: 12px;
  background: #f8fbfc;
}

.signal-price {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-top: 12px;
}

.signal-body small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.signal-price small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.signal-price b {
  font-size: 18px;
}

.signal-body b {
  display: block;
  margin-top: 3px;
  font-size: 17px;
}

.signal-body .gain {
  color: #0f9f6e;
}

.signal-body .loss {
  color: #dc3545;
}

.ksm-chart-signal p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.ksm-chart-signal em {
  display: block;
  margin-top: 8px;
  color: #667085;
  font-size: 11px;
  font-style: normal;
}

.pine-integration {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, .65fr);
  gap: 18px;
  margin-top: 20px;
}

.pine-card,
.pine-steps {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}

.pine-card h3,
.pine-steps h3 {
  margin: 0 0 10px;
  font-size: 24px;
}

.pine-card p:not(.eyebrow),
.pine-steps li {
  color: var(--muted);
}

.pine-steps ol {
  display: grid;
  gap: 10px;
  margin: 12px 0 0;
  padding-left: 22px;
}

.auth-shell,
.checkout-shell,
.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, .75fr);
  gap: 24px;
  align-items: stretch;
  padding: 58px 0;
}

.auth-card,
.checkout-main,
.contact-shell > div {
  padding: clamp(26px, 4vw, 46px);
}

.form-card {
  display: grid;
  gap: 14px;
  margin-top: 24px;
  padding: 22px;
  box-shadow: none;
}

label {
  display: grid;
  gap: 7px;
  color: #344054;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 11px 12px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

input[type="checkbox"] {
  width: auto;
  min-height: auto;
  padding: 0;
}

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

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(20, 184, 166, .18);
  border-color: var(--teal);
}

input.is-invalid,
select.is-invalid,
textarea.is-invalid {
  border-color: #f04438;
  background: #fffafa;
}

input.is-invalid:focus,
select.is-invalid:focus,
textarea.is-invalid:focus {
  outline-color: rgba(240, 68, 56, .18);
}

.form-note {
  margin-top: 16px;
}

.form-helper {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.checklist-field {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #f8fbfc;
}

.checklist-field legend {
  padding: 0 6px;
  color: var(--ink);
  font-weight: 900;
}

.checklist-field label {
  display: flex;
  grid-template-columns: none;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-weight: 750;
}

.refund-form {
  max-width: 820px;
}

.order-summary ul {
  color: rgba(255,255,255,.72);
}

.checksum {
  overflow-wrap: anywhere;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 12px;
}

.dashboard-shell {
  padding: 50px 0 70px;
}

.dashboard-head {
  margin-bottom: 24px;
}

.dashboard-head h1 {
  font-size: clamp(36px, 5vw, 64px);
}

.member-greeting {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: center;
  margin-bottom: 22px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 24px;
  color: #fff;
  background: linear-gradient(145deg, #111114, #2d2d32);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .08);
}

.member-greeting small {
  display: block;
  color: rgba(255,255,255,.58);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.member-greeting h2 {
  margin: 5px 0 8px;
  color: #fff;
}

.member-greeting p {
  max-width: 690px;
  margin: 0;
  color: rgba(255,255,255,.72);
}

.member-greeting > span {
  flex: 0 0 auto;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  color: #fff;
  background: rgba(255,255,255,.08);
  font-size: 13px;
  font-weight: 900;
}

.pending-payment-card {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(360px, 1.15fr);
  gap: 22px;
  align-items: start;
  margin-bottom: 22px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(165, 107, 31, .24);
  border-radius: 24px;
  background: linear-gradient(180deg, #fffaf0, #fff);
  box-shadow: 0 18px 50px rgba(165, 107, 31, .08);
}

.pending-payment-card h2 {
  max-width: 560px;
}

.pending-payment-card p:not(.eyebrow) {
  color: var(--muted);
}

.pending-order-list {
  display: grid;
  gap: 12px;
}

.pending-order-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 18px;
  background: #fff;
}

.pending-order-row strong,
.pending-order-row span {
  display: block;
}

.pending-order-row span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
}

.inline-cancel-form {
  margin: 0;
}

.button.ghost.danger {
  border-color: rgba(180, 35, 24, .28);
  color: var(--danger);
}

.button.ghost.danger:hover {
  background: rgba(180, 35, 24, .08);
}

.metric-card {
  min-height: 150px;
}

.metric-card strong {
  display: block;
  margin: 8px 0;
  font-size: 34px;
  line-height: 1;
}

.metric-card span {
  color: var(--muted);
}

.panel {
  margin-top: 22px;
  padding: 24px;
}

.record-row,
.license-row {
  display: grid;
  grid-template-columns: 1fr 1.5fr auto;
  gap: 18px;
  align-items: center;
  margin-top: 12px;
  padding: 16px;
  box-shadow: none;
}

.license-row {
  grid-template-columns: 1.5fr auto;
}

.refund-row {
  grid-template-columns: 1fr 1.4fr auto auto;
}

.subscriber-row {
  grid-template-columns: 1.2fr auto 1.2fr;
}

.refund-row small,
.subscriber-row small,
.review-grid small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

.status-pill {
  justify-self: start;
  padding: 7px 10px;
  border-radius: 999px;
  color: #344054;
  background: #eef2f7;
  font-size: 12px;
  font-weight: 900;
  text-transform: capitalize;
}

.status-pill.pending {
  color: #92400e;
  background: #fef3c7;
}

.status-pill.approved {
  color: #067647;
  background: #dcfae6;
}

.status-pill.rejected {
  color: #b42318;
  background: #fee4e2;
}

.status-pill.reviewing,
.status-pill.needs-information {
  color: #92400e;
  background: #fef3c7;
}

.report-table {
  display: grid;
  gap: 10px;
  overflow-x: auto;
}

.report-head,
.report-row {
  display: grid;
  gap: 14px;
  align-items: center;
  min-width: 860px;
}

.report-head.five,
.report-row.five {
  grid-template-columns: 1.35fr .8fr .8fr 1fr .85fr;
}

.report-head.six,
.report-row.six {
  grid-template-columns: 1.1fr 1.15fr 1.15fr .75fr .8fr 1fr;
}

.report-head.seven,
.report-row.seven {
  grid-template-columns: 1.05fr 1.1fr 1.05fr .7fr .75fr 1fr 1.2fr;
}

.manual-confirm-form {
  display: grid;
  gap: 8px;
}

.manual-confirm-form input {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 11px;
  font: inherit;
}

.report-head {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.report-row {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.report-row small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.review-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .7fr);
  gap: 22px;
  align-items: start;
}

.subscription-panel {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(300px, .65fr);
  gap: 22px;
  align-items: start;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0;
}

.review-grid > div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #f8fbfc;
}

.review-checklist {
  display: grid;
  gap: 8px;
  padding-left: 22px;
  color: var(--muted);
}

.review-form {
  margin-top: 22px;
}

code {
  display: inline-block;
  max-width: 100%;
  padding: 8px 10px;
  border-radius: 9px;
  color: #1e3a8a;
  background: #eef4ff;
  overflow-wrap: anywhere;
}

.download-card {
  min-height: 220px;
}

.admin-links .link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.admin-links a {
  display: block;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  background: #f8fafc;
  font-weight: 850;
  text-decoration: none;
}

.data-preview {
  max-height: 620px;
  overflow: auto;
  white-space: pre-wrap;
  color: #d1fae5;
  background: #08111f;
  border-radius: 14px;
  padding: 18px;
}

.article-shell {
  max-width: 850px;
  padding: 62px 0;
}

.article-shell h1 {
  font-size: clamp(38px, 6vw, 72px);
}

.article-kicker {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  color: var(--muted);
  font-weight: 800;
}

.article-lede {
  color: var(--muted);
  font-size: 20px;
}

.article-image {
  margin: 26px 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--navy);
  box-shadow: var(--shadow);
}

.article-image img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.article-body {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
  font-size: 18px;
}

.article-body p:last-child {
  margin-bottom: 0;
}

.article-cta {
  margin-top: 24px;
  padding: 28px;
  border-radius: 18px;
  color: #fff;
  background:
    radial-gradient(circle at top right, rgba(20,184,166,.2), transparent 36%),
    linear-gradient(145deg, var(--navy), var(--navy-2));
  box-shadow: var(--shadow);
}

.article-cta h2,
.article-cta .eyebrow {
  color: #fff;
}

.article-cta p:not(.eyebrow) {
  color: rgba(255,255,255,.72);
}

.pagination-wrap {
  margin-top: 24px;
}

.newsletter {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 24px;
  align-items: center;
  margin-top: 36px;
  margin-bottom: 70px;
  padding: clamp(26px, 5vw, 48px);
  border-radius: 22px;
  color: #fff;
  background:
    radial-gradient(circle at top right, rgba(56,189,248,.22), transparent 34%),
    linear-gradient(135deg, var(--navy), #0e3b43);
}

.newsletter h2,
.newsletter .eyebrow {
  color: #fff;
}

.newsletter p {
  color: rgba(255,255,255,.7);
}

.newsletter-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.newsletter-form input {
  border-color: rgba(255,255,255,.22);
  color: #fff;
  background: rgba(255,255,255,.1);
}

.newsletter-form input::placeholder {
  color: rgba(255,255,255,.62);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  padding: 34px clamp(18px, 5vw, 72px);
  color: rgba(255,255,255,.72);
  background: var(--navy);
}

.footer-brand {
  margin-bottom: 12px;
  color: #fff;
}

.footer-brand small {
  color: rgba(255,255,255,.58);
}

.site-footer nav {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 14px;
}

.site-footer nav a {
  color: rgba(255,255,255,.82);
  text-decoration: none;
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  animation: reveal 650ms ease forwards;
}

.reveal:nth-child(2) {
  animation-delay: 110ms;
}

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes logoBreathe {
  0%, 100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 10px 26px rgba(9, 21, 38, .2), inset 0 1px 0 rgba(255,255,255,.26);
  }

  50% {
    transform: translateY(-1px) scale(1.04);
    box-shadow: 0 14px 32px rgba(20, 184, 166, .26), inset 0 1px 0 rgba(255,255,255,.28);
  }
}

@keyframes logoSheen {
  0%, 62%, 100% {
    transform: translateX(-125%) rotate(8deg);
    opacity: 0;
  }

  72% {
    opacity: .8;
  }

  86% {
    transform: translateX(125%) rotate(8deg);
    opacity: 0;
  }
}

@keyframes heroTextRise {
  from {
    opacity: 0;
    transform: translateY(18px) scale(.985);
    filter: blur(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

/* Apple-inspired premium visual layer */
body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", Inter, "Segoe UI", sans-serif;
  background:
    linear-gradient(180deg, #ffffff 0, #f5f5f7 520px),
    var(--subtle);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.site-header {
  border-color: rgba(255, 255, 255, .78);
  background:
    linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.66)),
    rgba(245, 245, 247, .72);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .08), inset 0 1px 0 rgba(255,255,255,.9);
}

.site-header::before {
  background: linear-gradient(90deg, rgba(255,255,255,.9), rgba(0,113,227,.13), rgba(20,184,166,.1), rgba(255,255,255,.86));
  opacity: .8;
}

.brand-mark {
  border-radius: 12px;
  background: linear-gradient(145deg, #050505 0%, #1d1d1f 46%, #0071e3 100%);
  box-shadow: 0 12px 24px rgba(0, 0, 0, .18), inset 0 1px 0 rgba(255,255,255,.28);
}

.site-header .brand-mark::after {
  border-radius: 11px;
  background: linear-gradient(145deg, rgba(255,255,255,.08), transparent 40%, rgba(0,113,227,.18));
}

.site-nav a,
.nav-form button {
  color: #424245;
}

.site-nav a:hover,
.nav-form button:hover,
.text-link:hover {
  color: var(--blue);
}

.nav-cta {
  background: rgba(29, 29, 31, .92) !important;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .16), inset 0 1px 0 rgba(255,255,255,.12);
}

.hero-copy,
.market-card,
.lab-panel,
.auth-card,
.auth-aside,
.checkout-main,
.order-summary,
.contact-shell > div,
.form-card,
.panel,
.card,
.product-card,
.price-card,
.article-card,
.feature-card,
.metric-card,
.license-row,
.research-hero-copy,
.research-visual,
.premium-chart,
.pine-card,
.pine-steps,
.article-image,
.article-body {
  border-color: rgba(0, 0, 0, .08);
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .06);
}

.hero-copy,
.research-hero-copy {
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfd 100%);
}

h1 {
  letter-spacing: -.01em;
  font-weight: 850;
}

h2 {
  letter-spacing: -.01em;
  font-weight: 820;
}

.eyebrow,
.product-card small,
.article-card small,
.price-card small,
.order-summary small,
.metric-card small,
.license-row small,
.product-card a:not(.button),
.article-card a,
.text-link {
  color: var(--blue);
}

.eyebrow span {
  background: var(--blue);
  box-shadow: 0 0 0 6px rgba(0, 113, 227, .12);
}

.button {
  padding-inline: 22px;
  border-radius: 999px;
  background: #1d1d1f;
}

.hero h1,
.research-hero h1 {
  font-size: clamp(42px, 5.6vw, 72px);
  line-height: .98;
}

.hero-home h1 {
  font-size: clamp(42px, 5.1vw, 64px);
}

.hero-home {
  grid-template-columns: minmax(0, 1fr);
  max-width: 1180px;
}

.hero-home .hero-copy {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 560px;
  display: grid;
  align-content: center;
  padding: clamp(42px, 7vw, 88px) clamp(24px, 8vw, 110px);
  text-align: center;
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfd 100%);
}

.hero-home .hero-copy > * {
  position: relative;
  z-index: 1;
}

.hero-home h1 {
  animation: heroTextRise 900ms cubic-bezier(.2, .8, .2, 1) both;
}

.hero-home .hero-text {
  animation: heroTextRise 900ms cubic-bezier(.2, .8, .2, 1) 130ms both;
}

.hero-home .actions,
.hero-home .trust-row {
  animation: heroTextRise 900ms cubic-bezier(.2, .8, .2, 1) 240ms both;
}

.hero-home .hero-text {
  margin-left: auto;
  margin-right: auto;
}

.hero-home .eyebrow,
.hero-home .actions,
.hero-home .trust-row {
  justify-content: center;
}

.button:hover {
  background: #000;
  box-shadow: 0 16px 34px rgba(0, 0, 0, .16);
}

.button.ghost {
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(14px);
}

.trust-row span,
.mini-list span,
.contact-points span,
.check-list span {
  border: 1px solid rgba(0, 0, 0, .06);
  background: #fff;
  color: #424245;
}

.market-card,
.lab-panel,
.auth-aside,
.order-summary,
.article-cta,
.newsletter {
  background: linear-gradient(145deg, #111114, #2d2d32);
}

.market-card {
  background-size: 36px 36px, 36px 36px, auto;
}

.screenshot-stage::before {
  background: rgba(255,255,255,.035);
}

.screenshot-stage {
  align-content: center;
}

.screenshot-stage img {
  min-height: 390px;
}

.feature-icon {
  border-radius: 16px;
  background: linear-gradient(145deg, #1d1d1f, #0071e3);
}

.article-card-image {
  border-radius: 24px 24px 0 0;
}

.proof-section {
  background: linear-gradient(135deg, #111114, #2d2d32);
}

.proof-list div {
  border-radius: 20px;
  background: rgba(255,255,255,.075);
}

.product-shot-panel img,
.ksm-chart-signal {
  border-radius: 22px;
}

.check-list span,
.plan-duration {
  border-radius: 999px;
}

.price-card.featured {
  border-color: rgba(0, 113, 227, .24);
  box-shadow: 0 24px 70px rgba(0, 113, 227, .12);
}

.popular {
  background: var(--blue);
}

.plan-duration,
.signal-price,
.signal-body div,
.checklist-field,
.review-grid > div,
.admin-links a {
  background: #f5f5f7;
}

.chart-toolbar {
  background: linear-gradient(135deg, #111114, #2d2d32);
}

.ksm-chart-signal {
  box-shadow: 0 18px 44px rgba(0, 0, 0, .16);
}

.signal-head strong {
  background: #06a66a;
}

input:focus,
select:focus,
textarea:focus {
  outline-color: rgba(0, 113, 227, .16);
  border-color: var(--blue);
}

input,
select,
textarea {
  border-radius: 14px;
}

.report-row,
.admin-links a {
  border-radius: 16px;
}

.article-cta,
.newsletter {
  border-radius: 28px;
}

.site-footer {
  background: #111114;
}

@keyframes logoBreathe {
  0%, 100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 12px 24px rgba(0, 0, 0, .18), inset 0 1px 0 rgba(255,255,255,.28);
  }

  50% {
    transform: translateY(-1px) scale(1.04);
    box-shadow: 0 16px 34px rgba(0, 113, 227, .22), inset 0 1px 0 rgba(255,255,255,.32);
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header .brand-mark,
  .site-header .brand-mark::before,
  .chart-line,
  .reveal,
  .hero-home h1,
  .hero-home .hero-text,
  .hero-home .actions,
  .hero-home .trust-row,
  .article-card-image img {
    animation: none;
    transition: none;
  }
}

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

  .site-nav {
    position: fixed;
    top: 74px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255,255,255,.94);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .hero,
  .research-hero,
  .auth-shell,
  .checkout-shell,
  .contact-shell,
  .proof-section,
  .action-showcase,
  .action-showcase.reverse,
  .pine-integration,
  .newsletter {
    grid-template-columns: 1fr;
  }

  .hero-proof-card,
  .hero-proof-card img {
    min-height: 460px;
  }

  .grid.three,
  .grid.two,
  .grid.four {
    grid-template-columns: 1fr 1fr;
  }

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

  .market-card {
    min-height: 560px;
  }

  .screenshot-stage img {
    min-height: 360px;
  }

  .action-showcase-image img {
    min-height: 360px;
  }
}

@media (max-width: 680px) {
  .site-header {
    align-items: center;
    width: min(100% - 24px, 1180px);
    margin-top: 10px;
    border-radius: 18px;
  }

  .brand small {
    display: none;
  }

  .hero,
  .research-hero,
  .section,
  .page-hero,
  .dashboard-shell,
  .auth-shell,
  .checkout-shell,
  .contact-shell,
  .article-shell {
    width: min(100% - 26px, 1180px);
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 30px;
  }

  .grid.three,
  .grid.two,
  .grid.four,
  .workflow-steps,
  .admin-links .link-grid,
  .review-layout,
  .review-grid,
  .subscription-panel,
  .member-greeting,
  .pending-payment-card,
  .record-row,
  .license-row,
  .refund-row,
  .subscriber-row,
  .newsletter-form,
  .section-head.split,
  .dashboard-head,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .section-head.split,
  .dashboard-head,
  .site-footer {
    display: grid;
  }

  .pending-order-row {
    display: grid;
  }

  .research-visual,
  .research-visual img {
    min-height: 360px;
  }

  .article-kicker {
    display: grid;
  }

  .market-card {
    min-height: 500px;
  }

  .screenshot-stage {
    min-height: 380px;
    padding: 14px;
  }

  .screenshot-stage::before {
    inset: 8px;
  }

  .screenshot-stage img {
    min-height: 280px;
  }

  .action-showcase-image img {
    min-height: 260px;
  }

  .hero-proof-card,
  .hero-proof-card img {
    min-height: 420px;
  }

  .conversion-strip {
    display: grid;
  }

  .sticky-buy-cta {
    display: block;
  }

  .screenshot-stage figcaption {
    width: auto;
    margin: -58px 8px 10px;
  }

  .market-card-head,
  .chart-toolbar,
  .metric-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  .ksm-chart-signal {
    position: relative;
    top: auto;
    right: auto;
    width: auto;
    margin: 12px;
  }

.tradingview-widget-container__widget {
    min-height: 430px;
  }

  .hero-copy,
  .auth-card,
  .checkout-main,
  .contact-shell > div {
    padding: 24px;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

.muted-card {
  background: #f8fafc;
}

.payment-link-url {
  margin: 12px 0 0;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
  color: var(--muted);
  font-size: .9rem;
  overflow-wrap: anywhere;
}
