:root {
  --bg: #f8f7fc;
  --surface: #ffffff;
  --surface-soft: #f0edf8;
  --surface-cyan: #eaf8f8;
  --ink: #171327;
  --muted: #666171;
  --line: rgba(36, 26, 64, 0.12);
  --purple: #7057ca;
  --purple-2: #927cf2;
  --cyan: #238f9e;
  --mint: #35a99d;
  --green: #3fa36f;
  --navy: #0a1222;
  --navy-2: #162845;
  --shadow: 0 34px 90px rgba(42, 27, 90, 0.16);
  --shadow-soft: 0 18px 50px rgba(42, 27, 90, 0.09);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 15px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; max-width: 100%; overflow-x: hidden; }
body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 7% -4%, rgba(151, 126, 255, 0.18), transparent 31rem),
    radial-gradient(circle at 94% 2%, rgba(44, 190, 201, 0.12), transparent 28rem),
    linear-gradient(180deg, #fff 0%, var(--bg) 54%, #fff 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.58;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

main { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; height: auto; }
button, input { font: inherit; }
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(35, 143, 158, .45);
  outline-offset: 4px;
}

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.narrow { width: min(calc(100% - 40px), 860px); margin-inline: auto; }
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 12px 18px;
  background: #fff;
  border-radius: 0 0 12px 0;
}
.skip-link:focus { left: 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 12px 0 0;
  border-bottom: 0;
  background: transparent;
  transition: padding .3s ease;
}
.site-header.is-scrolled { padding-top: 7px; }
.site-header.is-scrolled .nav {
  border-color: rgba(55, 40, 96, .14);
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 12px 40px rgba(42, 27, 90, .10);
}
.nav {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  position: relative;
  min-width: 0;
  padding: 0 13px 0 17px;
  border: 1px solid rgba(55, 40, 96, .09);
  border-radius: 22px;
  background: rgba(255, 255, 255, .7);
  box-shadow: 0 8px 30px rgba(42, 27, 90, .055);
  backdrop-filter: blur(18px) saturate(140%);
  transition: min-height .3s ease, background .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  max-width: 100%;
  font-weight: 820;
  letter-spacing: -0.035em;
}
.brand img {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  object-fit: cover;
  border-radius: 13px;
  box-shadow: 0 9px 26px rgba(17, 22, 63, 0.18);
}
.brand-name {
  font-size: clamp(21px, 2.6vw, 29px);
  line-height: 1;
  white-space: nowrap;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--purple); }
.nav-links a { position: relative; transition: color .18s ease; }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--purple), var(--cyan));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .22s ease;
}
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.nav-actions { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 14px;
  background: #fff;
  color: var(--ink);
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(17, 22, 63, 0.08);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 780;
  line-height: 1.25;
  text-align: center;
  white-space: normal;
  overflow: hidden;
  position: relative;
  isolation: isolate;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(110deg, transparent 20%, rgba(255,255,255,.32) 48%, transparent 76%);
  transform: translateX(-120%);
  transition: transform .55s cubic-bezier(.2,.75,.25,1);
}
.btn:hover { transform: translateY(-2px) scale(1.015); }
.btn:hover::after { transform: translateX(120%); }
.btn:active { transform: translateY(0) scale(.985); }
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #4b358a, #7659d4);
  box-shadow: 0 12px 30px rgba(89, 65, 164, 0.28), inset 0 1px 0 rgba(255,255,255,.22);
}
.btn-primary:hover { background: linear-gradient(135deg, #422e7b, #8065df); box-shadow: 0 16px 36px rgba(73, 54, 129, 0.33); }
.btn-secondary {
  color: var(--ink);
  background: rgba(255,255,255,.78);
  border-color: var(--line);
  box-shadow: 0 10px 28px rgba(17, 22, 63, 0.08);
}
.btn-light { color: #35265f; background: #fff; box-shadow: 0 12px 30px rgba(0,0,0,.16); }
.btn-link { color: var(--purple); padding-inline: 0; min-height: auto; border-radius: 0; }

.badge {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 100%;
  width: auto;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.82);
  color: #443c70;
  box-shadow: 0 6px 18px rgba(17,22,63,.05);
  font-size: 14px;
  font-weight: 760;
}
.badge-dot {
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  box-shadow: 0 0 0 5px rgba(49,198,106,.13);
}
.eyebrow {
  margin: 0 0 13px;
  color: var(--purple);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

h1, h2, h3, h4 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: -0.04em;
  overflow-wrap: break-word;
}
h1 { font-size: clamp(44px, 6.55vw, 76px); font-weight: 780; }
h2 { font-size: clamp(33px, 4.5vw, 52px); }
h3 { font-size: clamp(22px, 2.5vw, 29px); }
h4 { font-size: 19px; letter-spacing: -0.025em; }
p, li, summary, .btn, .badge { overflow-wrap: break-word; }
.gradient-text {
  background: linear-gradient(120deg, #4d3199 0%, #9b82ff 43%, #22b8c6 100%);
  background-size: 160% 160%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradient-drift 8s ease-in-out infinite alternate;
}

.hero { position: relative; padding: 100px 0 76px; }
.hero::before {
  content: "";
  position: absolute;
  inset: -90px 0 auto;
  height: 760px;
  opacity: .68;
  background:
    linear-gradient(rgba(101, 80, 169, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(101, 80, 169, .035) 1px, transparent 1px),
    radial-gradient(circle at 75% 43%, rgba(158, 133, 255, .23), transparent 21rem),
    radial-gradient(circle at 64% 22%, rgba(47, 194, 203, .12), transparent 24rem);
  background-size: 48px 48px, 48px 48px, auto, auto;
  mask-image: linear-gradient(to bottom, black 15%, transparent 94%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  left: 28%; right: -22%; bottom: -26%;
  height: 300px;
  background: radial-gradient(ellipse, rgba(133,107,242,.18), transparent 70%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 540px);
  align-items: center;
  gap: 78px;
}
.hero-grid > *, .split > *, .content-layout > *, .media-grid > * { min-width: 0; }
.hero-copy {
  margin: 24px 0 0;
  max-width: 665px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}
.hero-grid > div:first-child { animation: hero-copy-in .8s cubic-bezier(.2,.75,.25,1) both; }
.hero-kicker { margin-bottom: 18px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 31px; }
.hero-actions .btn { max-width: 100%; }
.hero-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.hero-chips .badge {
  padding: 8px 11px;
  border-radius: 12px;
  background: rgba(255,255,255,.66);
  font-size: 13px;
  font-weight: 700;
  box-shadow: none;
}
.hero-visual {
  --hero-rotate-x: 0deg;
  --hero-rotate-y: 0deg;
  position: relative;
  max-width: 540px;
  margin-inline: auto;
  transform: perspective(1200px) rotateX(var(--hero-rotate-x)) rotateY(var(--hero-rotate-y));
  transform-style: preserve-3d;
  transition: transform .5s cubic-bezier(.2,.75,.25,1);
  animation: hero-visual-in .9s .12s cubic-bezier(.2,.75,.25,1) both;
}
.hero-visual::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 54%;
  aspect-ratio: 1;
  right: -8%;
  top: 22%;
  border-radius: 50%;
  background: radial-gradient(circle at 34% 32%, #dffcff, #a98cf4 47%, #5541a1 100%);
  opacity: .34;
  filter: blur(1px);
  box-shadow: 0 0 90px rgba(137, 111, 233, .28);
  animation: breathe-orb 6.8s ease-in-out infinite;
}
.hero-card {
  position: relative;
  aspect-ratio: 540 / 936;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 38px;
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-card img {
  width: 100%;
  height: 100%;
  border-radius: 21px;
  object-fit: cover;
}
.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.88), inset 0 -1px 0 rgba(83,61,150,.08);
  pointer-events: none;
}
.watch-float {
  position: absolute;
  left: -42px;
  bottom: 70px;
  width: 176px;
  padding: 12px;
  border-radius: 50%;
  background: #05050b;
  box-shadow: 0 24px 58px rgba(10,10,30,.31);
  animation: watch-float 5.6s ease-in-out infinite;
}
.watch-float img { border-radius: 50%; }
.watch-float::before,
.watch-float::after {
  content: "";
  position: absolute;
  inset: -15px;
  border: 2px solid rgba(133,107,242,.20);
  border-radius: 50%;
}
.watch-float::after { inset: -29px; opacity: .55; }
.watch-float::before { animation: breathe-ring 4.8s ease-out infinite; }
.watch-float::after { animation: breathe-ring 4.8s 1.1s ease-out infinite; }
.hero-note {
  position: absolute;
  right: -20px;
  bottom: 20px;
  width: min(260px, 60%);
  padding: 17px;
  border: 1px solid rgba(255,255,255,.85);
  border-radius: 18px;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft);
  transform: translateZ(28px);
  animation: note-float 6s 1.1s ease-in-out infinite;
}
.hero-note strong { display: block; font-size: 18px; letter-spacing: -.03em; }
.hero-note span { display: block; margin-top: 4px; color: var(--muted); font-size: 13px; }

.proof-strip { padding: 10px 0 38px; }
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.proof-item {
  padding: 18px 19px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.66);
  backdrop-filter: blur(12px);
  box-shadow: none;
}
.proof-item strong { display: block; font-size: 16px; letter-spacing: -.02em; }
.proof-item span { display: block; margin-top: 3px; color: var(--muted); font-size: 13px; }

.section { padding: 72px 0; }
.section-tight { padding: 50px 0; }
.section-header { max-width: 820px; margin: 0 auto 42px; text-align: center; }
.section-header p:not(.eyebrow) { max-width: 720px; margin: 17px auto 0; color: var(--muted); font-size: 18px; }
.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: center; gap: 52px; }
.split-copy > p:not(.eyebrow) { color: var(--muted); font-size: 18px; }
.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.86);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform .45s cubic-bezier(.2,.75,.25,1), box-shadow .45s ease;
}
.panel:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.panel-pad { padding: 20px; }
.panel img { width: 100%; }

.check-list {
  display: grid;
  gap: 13px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}
.check-list li { display: flex; align-items: flex-start; gap: 12px; color: #414861; }
.check-list li::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  margin-top: 1px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  font-size: 14px;
  font-weight: 800;
  box-shadow: none;
}

.feature-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.feature-link-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.76);
  box-shadow: none;
  overflow: hidden;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.feature-link-card::before,
.guide-card::before,
.related-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  background: radial-gradient(360px circle at var(--pointer-x, 50%) var(--pointer-y, 50%), rgba(151,126,255,.16), transparent 55%);
  transition: opacity .25s ease;
  pointer-events: none;
}
.feature-link-card:hover::before,
.guide-card:hover::before,
.related-card:hover::before { opacity: 1; }
.feature-link-card:hover {
  transform: translateY(-6px) scale(1.008);
  border-color: rgba(99,51,154,.28);
  box-shadow: var(--shadow-soft);
}
.icon-box {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 16px;
  color: var(--purple);
  background: linear-gradient(135deg, #efeaff, #e8fbff);
  box-shadow: inset 0 0 0 1px rgba(99,51,154,.09);
  font-size: 25px;
  transition: transform .35s cubic-bezier(.2,.75,.25,1), box-shadow .35s ease;
}
.feature-link-card:hover .icon-box { transform: translateY(-3px) rotate(-3deg) scale(1.06); box-shadow: 0 12px 28px rgba(99,51,154,.14); }
.feature-link-card p { margin: 12px 0 20px; color: var(--muted); }
.card-link { margin-top: auto; color: var(--purple); font-weight: 780; }

.dark-section {
  color: #fff;
  background:
    radial-gradient(circle at 85% 12%, rgba(35,143,158,.24), transparent 29rem),
    linear-gradient(135deg, #0a1222 0%, #172742 100%);
  background-size: 140% 140%;
  animation: dark-gradient-shift 14s ease-in-out infinite alternate;
}
.dark-section .eyebrow { color: #6ee5e0; }
.dark-section p,
.dark-section .check-list li { color: rgba(255,255,255,.75); }
.dark-section .badge { color: #fff; background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.16); }
.video-shell {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 26px;
  background: rgba(255,255,255,.05);
  box-shadow: 0 20px 56px rgba(0,0,0,.26);
}
.video-stage {
  display: flex;
  justify-content: center;
  width: 100%;
  border-radius: 19px;
  background: #000;
  overflow: hidden;
}
.video-stage video {
  width: min(100%, 430px);
  max-height: min(76vh, 760px);
  aspect-ratio: 9 / 16;
  object-fit: contain;
  background: #000;
}

.image-stack { position: relative; min-height: 560px; }
.image-stack .main-image {
  width: min(100%, 500px);
  margin-inline: auto;
  border-radius: 34px;
  box-shadow: var(--shadow);
}
.image-stack .watch-mini {
  position: absolute;
  left: 0;
  top: 18%;
  width: 176px;
  padding: 12px;
  border-radius: 50%;
  background: #05050b;
  box-shadow: 0 20px 48px rgba(0,0,0,.28);
}
.image-stack .watch-mini img { border-radius: 50%; }

.media-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: 20px; }
.media-feature {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(240,237,248,.92), rgba(234,248,248,.84));
}
.media-feature p { color: var(--muted); }
.media-feature img { margin-top: 20px; border-radius: 25px; box-shadow: var(--shadow-soft); }
.screenshot-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 15px; }
.screenshot-card {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: none;
}
.screenshot-card img { border-radius: 16px; }
.screenshot-card strong { display: block; margin: 11px 3px 2px; font-size: 14px; letter-spacing: -.02em; }

.pattern-table, .compare-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.pattern-table th, .pattern-table td,
.compare-table th, .compare-table td {
  padding: 17px 19px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.pattern-table th, .compare-table th {
  background: linear-gradient(135deg, #f6f2ff, #edfbff);
  font-size: 14px;
}
.pattern-table tr:last-child td, .compare-table tr:last-child td { border-bottom: 0; }
.pattern-table td:first-child, .compare-table td:first-child { font-weight: 850; }

.steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 17px; counter-reset: steps; }
.step-card {
  padding: 25px 21px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: none;
  counter-increment: steps;
}
.step-card::before {
  content: counter(steps);
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 17px;
  border-radius: 50%;
  color: #fff;
  background: #6550a9;
  font-weight: 800;
}
.step-card p { margin: 9px 0 0; color: var(--muted); font-size: 15px; }

.related-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 17px; }
.related-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: none;
  overflow: hidden;
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}
.related-card:hover { transform: translateY(-5px); border-color: rgba(112,87,202,.25); box-shadow: var(--shadow-soft); }
.related-card p { margin: 9px 0 17px; color: var(--muted); font-size: 15px; }
.related-card .card-link { margin-top: auto; }

.faq-list { display: grid; gap: 12px; max-width: 920px; margin: 0 auto; }
details {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: none;
  transition: border-color .22s ease, transform .22s ease, box-shadow .22s ease;
}
details:hover { border-color: rgba(112,87,202,.24); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(42,27,90,.06); }
summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 20px 23px;
  cursor: pointer;
  list-style: none;
  font-weight: 760;
}
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; color: var(--purple); font-size: 24px; line-height: 1; }
details[open] summary::after { content: "−"; }
details p { margin: 0; padding: 0 23px 21px; color: var(--muted); }

.cta {
  padding: 62px 36px;
  border-radius: 28px;
  color: #fff;
  text-align: center;
  background:
    radial-gradient(circle at 14% 18%, rgba(53,169,157,.20), transparent 28rem),
    linear-gradient(135deg, #35265f, #59458f 62%, #237f8c);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.cta::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 340px;
  aspect-ratio: 1;
  left: -90px;
  top: -150px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: 0 0 0 44px rgba(255,255,255,.045), 0 0 0 88px rgba(255,255,255,.03);
  animation: cta-orbit 12s linear infinite;
}
.cta p { max-width: 700px; margin: 16px auto 0; color: rgba(255,255,255,.79); font-size: 18px; }
.cta .hero-actions { justify-content: center; }

/* Interior pages */
.breadcrumbs { padding-top: 24px; color: var(--muted); font-size: 14px; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; }
.breadcrumbs li:not(:last-child)::after { content: "/"; margin-left: 8px; color: #a0a5b8; }
.breadcrumbs a:hover { color: var(--purple); }
.page-hero { padding: 44px 0 46px; }
.page-hero .hero-inner { display: grid; gap: 20px; max-width: 930px; }
.page-hero h1 { font-size: clamp(40px, 6vw, 64px); }
.page-hero p { max-width: 770px; margin: 0; color: var(--muted); font-size: 20px; }
.page-hero .badge {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--purple);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.page-hero .badge-dot { width: 7px; height: 7px; flex-basis: 7px; box-shadow: none; }
.content-layout { display: grid; grid-template-columns: minmax(0, 1fr) 310px; align-items: start; gap: 38px; }
.article {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(36,26,64,.06);
}
.article h2 { margin-top: 38px; font-size: clamp(31px, 4vw, 44px); }
.article h2:first-child { margin-top: 0; }
.article h3 { margin-top: 27px; font-size: 26px; }
.article p, .article li { color: var(--muted); }
.article a:not(.btn), .callout a { color: var(--purple); font-weight: 720; text-decoration: underline; text-decoration-color: rgba(99,51,154,.25); text-underline-offset: 3px; }
.article img { margin-block: 25px; border-radius: 26px; box-shadow: var(--shadow-soft); }
.article ul, .article ol { padding-left: 22px; }
.callout {
  margin: 26px 0;
  padding: 21px;
  border: 1px solid rgba(99,51,154,.16);
  border-radius: 20px;
  background: linear-gradient(135deg, #f6f2ff, #effcff);
}
.callout strong { display: block; margin-bottom: 5px; }
.sidebar { position: sticky; top: 92px; display: grid; gap: 14px; }
.sidebar-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: none;
}
.sidebar-card h3 { font-size: 18px; letter-spacing: -.025em; }
.sidebar-links { display: grid; gap: 9px; margin-top: 12px; }
.sidebar-links a { color: var(--muted); font-size: 14px; }
.sidebar-links a:hover { color: var(--purple); }
.meta-row { display: flex; flex-wrap: wrap; gap: 10px; color: var(--muted); font-size: 13px; }

.guide-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.guide-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 24px;
  min-height: 250px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: none;
  overflow: hidden;
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}
.guide-card:hover { transform: translateY(-5px); border-color: rgba(112,87,202,.25); box-shadow: var(--shadow-soft); }
.guide-card p { color: var(--muted); }
.guide-card .card-link { margin-top: auto; }
.guide-tag { width: max-content; max-width: 100%; margin-bottom: 16px; padding: 6px 9px; border-radius: 9px; background: var(--surface-soft); color: var(--purple); font-size: 12px; font-weight: 760; }

.site-map-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.site-map-group {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: none;
}
.site-map-group ul { display: grid; gap: 11px; margin: 16px 0 0; padding: 0; list-style: none; }
.site-map-group a { color: var(--purple); font-weight: 760; }
.site-map-group span { display: block; color: var(--muted); font-size: 14px; }

.press-assets { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.press-asset {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: none;
}
.press-asset img { width: 100%; border-radius: 18px; background: #0b1020; }
.press-asset .hero-actions { margin-top: 16px; }
.facts-table { display: grid; gap: 1px; border: 1px solid var(--line); border-radius: 20px; overflow: hidden; background: var(--line); }
.fact-row { display: grid; grid-template-columns: 180px 1fr; gap: 18px; padding: 15px 17px; background: #fff; }
.fact-row strong { font-size: 14px; }
.fact-row span { color: var(--muted); }

.site-footer { padding: 58px 0 32px; border-top: 1px solid var(--line); background: rgba(255,255,255,.82); }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr .8fr; gap: 30px; }
.site-footer p, .site-footer a { color: var(--muted); }
.site-footer h3 { margin-bottom: 11px; font-size: 16px; letter-spacing: -.02em; }
.footer-links { display: grid; gap: 8px; }
.footer-links a:hover { color: var(--purple); }
.footer-note { margin-top: 30px; padding-top: 21px; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; }

.has-motion .reveal {
  opacity: 0;
  transform: perspective(800px) translateY(32px) rotateX(4deg);
  transform-origin: 50% 100%;
  transition:
    opacity .72s cubic-bezier(.2,.75,.25,1) var(--reveal-delay, 0ms),
    transform .72s cubic-bezier(.2,.75,.25,1) var(--reveal-delay, 0ms);
}
.has-motion .reveal.is-visible { opacity: 1; transform: none; }

@keyframes hero-copy-in {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: none; }
}
@keyframes hero-visual-in {
  from { opacity: 0; transform: perspective(1200px) translateY(42px) rotateX(5deg) scale(.96); }
  to { opacity: 1; transform: perspective(1200px) translateY(0) rotateX(var(--hero-rotate-x)) rotateY(var(--hero-rotate-y)) scale(1); }
}
@keyframes gradient-drift {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}
@keyframes breathe-orb {
  0%, 100% { transform: scale(.82); opacity: .22; }
  50% { transform: scale(1.12); opacity: .42; }
}
@keyframes breathe-ring {
  0% { transform: scale(.82); opacity: 0; }
  28% { opacity: .75; }
  100% { transform: scale(1.18); opacity: 0; }
}
@keyframes watch-float {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
}
@keyframes note-float {
  0%, 100% { margin-bottom: 0; }
  50% { margin-bottom: 7px; }
}
@keyframes dark-gradient-shift {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}
@keyframes cta-orbit { to { transform: rotate(360deg); } }

@media (max-width: 1000px) {
  .nav-links { display: none; }
  .menu-toggle { display: inline-flex; }
  .nav[data-open="true"] .nav-links {
    display: flex;
    position: absolute;
    left: 20px;
    right: 20px;
    top: 74px;
    z-index: 50;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 15px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--shadow-soft);
  }
  .nav[data-open="true"] .nav-links a { padding: 10px 12px; border-radius: 12px; }
  .nav[data-open="true"] .nav-links a:hover { background: var(--surface-soft); }
  .hero-grid, .split, .media-grid, .content-layout { grid-template-columns: 1fr; }
  .hero-visual { max-width: 620px; }
  .feature-grid, .guide-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .proof-grid, .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .related-grid, .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sidebar { position: static; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .image-stack { min-height: auto; }
  .image-stack .watch-mini { left: 6%; }
}

@media (max-width: 720px) {
  .container, .narrow { width: min(calc(100% - 28px), var(--container)); }
  .site-header { padding-top: 7px; }
  .nav { min-height: 60px; gap: 11px; padding-inline: 11px; border-radius: 18px; }
  .brand { gap: 8px; }
  .brand img { width: 37px; height: 37px; flex-basis: 37px; border-radius: 11px; }
  .brand-name { font-size: 20px; }
  .nav-actions .btn { display: none; }
  .menu-toggle { padding: 9px 12px; }
  .nav[data-open="true"] .nav-links { left: 0; right: 0; top: 66px; }
  .hero { padding: 62px 0 48px; }
  h1 { font-size: clamp(37px, 11.5vw, 52px); }
  h2 { font-size: clamp(31px, 9.5vw, 44px); }
  h3 { font-size: clamp(21px, 6.5vw, 27px); }
  .hero-copy, .section-header p:not(.eyebrow), .split-copy > p:not(.eyebrow), .page-hero p { font-size: 17px; }
  .hero-actions { width: 100%; }
  .hero-actions .btn { width: 100%; padding-inline: 15px; }
  .hero-chips .badge { width: 100%; justify-content: flex-start; }
  .hero-card { padding: 9px; border-radius: 27px; }
  .hero-card img { border-radius: 21px; }
  .watch-float, .hero-note { display: none; }
  .proof-grid, .feature-grid, .guide-grid, .steps, .related-grid, .footer-grid, .screenshot-grid, .site-map-grid, .press-assets, .sidebar { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
  .section-tight { padding: 40px 0; }
  .section-header { margin-bottom: 29px; text-align: left; }
  .section-header p:not(.eyebrow) { margin-left: 0; margin-right: 0; }
  .feature-link-card, .guide-card, .step-card, .related-card { min-height: auto; padding: 21px; }
  .video-shell { padding: 13px; border-radius: 27px; }
  .video-stage { border-radius: 20px; }
  .video-stage video { width: 100%; max-height: none; }
  .image-stack .watch-mini { display: none; }
  .image-stack .main-image { width: 100%; border-radius: 26px; }
  .media-feature { padding: 21px; }
  .pattern-table, .compare-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; font-size: 14px; }
  .pattern-table th, .pattern-table td, .compare-table th, .compare-table td { min-width: 150px; padding: 14px; }
  .cta { padding: 43px 21px; border-radius: 29px; }
  .page-hero { padding: 36px 0 30px; }
  .page-hero h1 { font-size: clamp(38px, 11vw, 52px); }
  .article { padding: 23px; border-radius: 26px; }
  .article h2 { margin-top: 31px; font-size: 32px; }
  .article h3 { font-size: 24px; }
  .fact-row { grid-template-columns: 1fr; gap: 4px; }
  .breadcrumbs { padding-top: 18px; }
}

@media (max-width: 360px) {
  .container, .narrow { width: min(calc(100% - 20px), var(--container)); }
  .brand-name { font-size: 18px; }
  .brand img { width: 34px; height: 34px; flex-basis: 34px; }
  .menu-toggle { font-size: 13px; padding: 8px 10px; }
  .badge { font-size: 12px; padding: 7px 9px; }
  h1 { font-size: 35px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* SEO CLUSTER 2026-08-18 */
.article-hero { padding: 72px 0 30px; }
.article-hero .narrow { max-width: 910px; }
.article-hero h1 { max-width: 900px; margin-top: 20px; font-size: clamp(42px, 6vw, 72px); }
.article-deck { max-width: 800px; margin: 22px 0 0; color: var(--muted); font-size: clamp(18px, 2vw, 22px); line-height: 1.55; }
.article-byline { display: flex; align-items: center; gap: 12px; margin-top: 24px; }
.article-byline img { width: 44px; height: 44px; border-radius: 13px; box-shadow: 0 8px 20px rgba(42,27,90,.16); }
.article-byline div { display: grid; gap: 2px; }
.article-byline strong { font-size: 15px; }
.article-byline span { color: var(--muted); font-size: 13px; }
.editorial-disclosure { max-width: 850px; margin-top: 22px; padding: 15px 17px; border: 1px solid rgba(112,87,202,.18); border-radius: 16px; background: rgba(240,237,248,.72); color: #4f4860; font-size: 14px; }
.editorial-disclosure a { color: var(--purple); font-weight: 760; text-decoration: underline; text-underline-offset: 3px; }
.article-section { padding-top: 36px; }
.article-layout { display: grid; grid-template-columns: minmax(0, 820px) minmax(260px, 310px); align-items: start; justify-content: space-between; gap: 34px; }
.article-rail { display: grid; gap: 18px; position: sticky; top: 94px; }
.article-longform { min-width: 0; }
.article-longform > h2 { scroll-margin-top: 112px; margin-top: 48px; }
.article-longform > h2:first-child, .article-longform .quick-answer + h2 { margin-top: 44px; }
.article-longform h3 { scroll-margin-top: 112px; margin-top: 34px; }
.article-longform p, .article-longform li { font-size: 17px; line-height: 1.72; }
.article-longform p { margin: 15px 0; }
.article-longform ul, .article-longform ol { display: grid; gap: 9px; padding-left: 24px; }
.article-longform a:not(.btn) { color: #5e43b3; font-weight: 680; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.article-longform a:not(.btn):hover { color: #3f2a86; }
.article-longform .compare-table, .article-longform .pattern-table { width: 100%; margin: 0; }
.table-wrap { max-width: 100%; margin: 24px 0 32px; overflow-x: auto; border: 1px solid var(--line); border-radius: 19px; background: #fff; -webkit-overflow-scrolling: touch; }
.table-wrap table { border: 0; border-radius: 0; }
.table-wrap th { position: static; }
.quick-answer { margin: 0 0 40px; padding: 24px; border: 1px solid rgba(35,143,158,.20); border-radius: 24px; background: linear-gradient(145deg, rgba(234,248,248,.94), rgba(240,237,248,.72)); }
.quick-answer h2 { margin: 0; font-size: 32px; }
.quick-answer ul { margin: 18px 0 0; padding-left: 21px; }
.quick-answer li { font-size: 16px; }
.source-box { margin-top: 52px; padding: 24px; border: 1px solid var(--line); border-radius: 22px; background: #f8f7fc; }
.source-box h2 { margin: 0; font-size: 30px; }
.source-box p, .source-box li { font-size: 14px; }
.source-box ul { gap: 7px; }
.source-box span { color: var(--muted); }
.on-this-page [data-toc] { display: grid; gap: 9px; margin-top: 14px; }
.on-this-page a { color: var(--muted); font-size: 14px; font-weight: 700; line-height: 1.35; }
.on-this-page a:hover { color: var(--purple); }
.choice-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin: 24px 0; }
.choice-card { padding: 22px; border: 1px solid var(--line); border-radius: 21px; background: #fff; }
.choice-card h3 { margin-top: 0; font-size: 25px; }
.choice-card ul { margin-bottom: 0; }
.decision-list { counter-reset: decision; margin-block: 22px; padding-left: 0 !important; list-style: none; }
.decision-list li { position: relative; padding: 18px 18px 18px 62px; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.decision-list li::before { counter-increment: decision; content: counter(decision); position: absolute; left: 18px; top: 17px; width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; background: var(--surface-soft); color: var(--purple); font-size: 14px; font-weight: 850; }
.article-card { position: relative; }
.article-card-meta { display: block; margin: 13px 0 9px; color: var(--muted); font-size: 12px; font-weight: 700; }
.blog-hero .hero-inner { max-width: 930px; }
.metric-strip { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: var(--line); }
.metric-strip > div { display: grid; gap: 3px; padding: 22px; background: rgba(255,255,255,.94); }
.metric-strip strong { font-size: 20px; letter-spacing: -.02em; }
.metric-strip span { color: var(--muted); font-size: 13px; }
.trust-panel { display: grid; grid-template-columns: 1.25fr .75fr; align-items: center; gap: 30px; padding: 34px; border: 1px solid rgba(112,87,202,.18); border-radius: 30px; background: linear-gradient(145deg, rgba(240,237,248,.9), rgba(234,248,248,.78)); }
.trust-panel h2 { font-size: clamp(31px, 4vw, 46px); }
.trust-panel p:not(.eyebrow) { color: var(--muted); }
.trust-actions { display: grid; gap: 10px; }
.author-hero { display: flex; align-items: center; gap: 28px; }
.author-hero > img { width: 144px; height: 144px; border-radius: 34px; box-shadow: var(--shadow-soft); }
.author-hero h1 { margin-top: 12px; }
.comparison-cluster + .comparison-cluster { padding-top: 20px; }

.timer-hero { padding-bottom: 28px; }
.timer-section { padding-top: 26px; }
.timer-app { display: grid; grid-template-columns: minmax(0, .9fr) minmax(400px, 1.1fr); overflow: hidden; border: 1px solid rgba(55,40,96,.13); border-radius: 34px; background: #fff; box-shadow: var(--shadow); }
.timer-controls { display: grid; align-content: start; gap: 24px; padding: 34px; }
.timer-controls h2 { font-size: 38px; }
.preset-row { display: flex; flex-wrap: wrap; gap: 9px; }
.preset-button { padding: 10px 13px; border: 1px solid var(--line); border-radius: 999px; background: #fff; color: var(--muted); font-size: 13px; font-weight: 780; cursor: pointer; transition: .18s ease; }
.preset-button:hover, .preset-button.is-active { border-color: rgba(112,87,202,.34); background: var(--surface-soft); color: var(--purple); transform: translateY(-1px); }
.preset-button:disabled { cursor: not-allowed; opacity: .58; transform: none; }
.phase-input-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; }
.phase-input-grid label, .duration-field { display: grid; gap: 7px; color: var(--muted); font-size: 13px; font-weight: 760; }
.input-with-unit { display: flex; align-items: center; overflow: hidden; border: 1px solid var(--line); border-radius: 14px; background: #fff; }
.input-with-unit:focus-within { border-color: rgba(35,143,158,.5); box-shadow: 0 0 0 3px rgba(35,143,158,.12); }
.input-with-unit input { min-width: 0; width: 100%; padding: 12px 8px 12px 13px; border: 0; outline: 0; background: transparent; color: var(--ink); font-weight: 800; }
.input-with-unit em { padding-right: 11px; color: var(--muted); font-size: 11px; font-style: normal; }
.duration-field { max-width: 180px; }
.timer-options { display: flex; flex-wrap: wrap; gap: 10px 18px; margin: 0; padding: 17px; border: 1px solid var(--line); border-radius: 17px; }
.timer-options legend { padding: 0 7px; color: var(--muted); font-size: 12px; font-weight: 800; }
.timer-options label { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 700; }
.timer-options input { width: 17px; height: 17px; accent-color: var(--purple); }
.timer-privacy { margin: 0; padding: 13px 15px; border-radius: 14px; background: var(--surface-cyan); color: #41575b; font-size: 13px; }
.timer-stage { min-height: 650px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 38px; color: #fff; text-align: center; background: radial-gradient(circle at 50% 35%, rgba(135,111,236,.42), transparent 36%), linear-gradient(145deg, #0c1326, #17294a 60%, #183c46); }
.timer-orbit { width: min(270px, 64vw); aspect-ratio: 1; display: grid; place-items: center; margin-bottom: 25px; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,.08), transparent 66%); }
.timer-progress { --timer-progress: 0deg; --timer-scale: .88; width: 88%; aspect-ratio: 1; display: grid; place-items: center; position: relative; border-radius: 50%; background: conic-gradient(#9f8cff var(--timer-progress), rgba(255,255,255,.10) 0); box-shadow: 0 0 70px rgba(105,205,215,.16); }
.timer-progress::before { content: ""; position: absolute; inset: 11px; border-radius: 50%; background: #111c34; }
.timer-orb { width: 56%; aspect-ratio: 1; z-index: 1; border-radius: 50%; transform: scale(var(--timer-scale)); background: radial-gradient(circle at 36% 30%, #d7ceff, #8f7be5 48%, #4b9fac); box-shadow: 0 0 44px rgba(150,132,244,.48), inset 0 0 25px rgba(255,255,255,.22); transition: transform .12s linear; }
.timer-overline { margin: 0; color: rgba(255,255,255,.65); font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.timer-stage h2 { margin-top: 7px; font-size: clamp(38px, 5vw, 58px); }
.timer-countdown { margin: 4px 0 0; font-size: 28px; font-variant-numeric: tabular-nums; font-weight: 760; }
.timer-message { min-height: 26px; margin: 8px 0 18px; color: rgba(255,255,255,.75); }
.timer-stats { display: grid; grid-template-columns: repeat(2, 120px); gap: 12px; margin-bottom: 22px; }
.timer-stats > div { display: grid; gap: 3px; padding: 12px; border: 1px solid rgba(255,255,255,.12); border-radius: 14px; background: rgba(255,255,255,.06); }
.timer-stats span { color: rgba(255,255,255,.6); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.timer-stats strong { font-variant-numeric: tabular-nums; }
.timer-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 9px; }
.timer-stage .btn-secondary { color: #fff; border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.08); box-shadow: none; }
.timer-stage .btn-secondary:hover { background: rgba(255,255,255,.13); }
.timer-stage .btn:disabled { opacity: .42; cursor: not-allowed; transform: none; }
.timer-share { margin-top: 12px; color: #d8d1ff; }
.timer-error { min-height: 22px; margin: 8px 0 0; color: #ffcac6; font-size: 13px; }

@media (max-width: 1050px) {
  .article-layout { grid-template-columns: 1fr; }
  .article-rail { position: static; grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .timer-app { grid-template-columns: 1fr; }
  .timer-stage { min-height: 610px; }
}

@media (max-width: 800px) {
  .metric-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust-panel { grid-template-columns: 1fr; }
  .article-rail { grid-template-columns: 1fr; }
  .choice-grid { grid-template-columns: 1fr; }
  .author-hero { align-items: flex-start; }
  .phase-input-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .article-hero { padding: 46px 0 20px; }
  .article-hero h1 { font-size: clamp(38px, 11vw, 52px); }
  .article-deck { font-size: 17px; }
  .editorial-disclosure { font-size: 13px; }
  .article-section { padding-top: 22px; }
  .article-longform p, .article-longform li { font-size: 16px; }
  .quick-answer { padding: 20px; }
  .quick-answer h2 { font-size: 28px; }
  .table-wrap { margin-inline: -2px; border-radius: 15px; }
  .table-wrap table { min-width: 720px; }
  .metric-strip { grid-template-columns: 1fr; }
  .trust-panel { padding: 24px; border-radius: 24px; }
  .author-hero { display: grid; gap: 20px; }
  .author-hero > img { width: 105px; height: 105px; border-radius: 26px; }
  .timer-app { border-radius: 26px; }
  .timer-controls { padding: 24px 20px; }
  .timer-controls h2 { font-size: 32px; }
  .phase-input-grid { gap: 9px; }
  .timer-stage { min-height: 580px; padding: 30px 16px; }
  .timer-actions { width: 100%; }
  .timer-actions .btn { flex: 1 1 120px; }
}

@media print {
  .site-header, .site-footer, .article-rail, .hero-actions, .timer-actions, .timer-share { display: none !important; }
  body { background: #fff; }
  .article-layout { display: block; }
  .article { box-shadow: none; border: 0; padding: 0; }
}

/* FINAL SEO DISCOVERY LAYER 2026-08-18 */
.hero-sub-link { margin: 13px 0 0; color: var(--muted); font-size: 14px; }
.hero-sub-link a { color: var(--purple); font-weight: 780; text-decoration: underline; text-underline-offset: 3px; }
.seo-discovery { position: relative; }
.seo-discovery .section-header { margin-bottom: 30px; }
.seo-discovery .related-card { min-height: 210px; }
.on-this-page ol { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; }
.on-this-page a[aria-current] { color: var(--purple); }
.article-longform h2[id] { scroll-margin-top: 112px; }
@media (max-width: 720px) {
  .seo-discovery .related-card { min-height: 0; }
  .hero-sub-link { font-size: 13px; }
}

/* Button reset for text-style actions */
.btn-link { background: transparent; border: 0; box-shadow: none; }
.btn-link:hover { background: transparent; box-shadow: none; }
