/* Template 09 - Pearl. Self-contained styles for home and inner pages. */
:root {
  --pearl-paper: #f7f8f5;
  --pearl-white: #ffffff;
  --pearl-ink: #20282a;
  --pearl-muted: #667170;
  --pearl-sage: #4f7771;
  --pearl-sage-dark: #315a56;
  --pearl-mist: #e6efec;
  --pearl-warm: #c78a58;
  --pearl-warm-soft: #f2e7d9;
  --pearl-line: #d7dfdc;
  --pearl-shadow: rgba(32, 53, 52, .12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.radical {
  margin: 0;
  background: var(--pearl-paper);
  color: var(--pearl-ink);
  font: 15px/1.75 "Noto Sans CJK SC", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.radical a { color: inherit; }

.pearl-progress {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #8cede0, #ffb370);
  box-shadow: 0 0 16px rgba(140, 237, 224, .65);
  pointer-events: none;
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

.site-notice,
.collection-notice {
  display: flex;
  justify-content: center;
  gap: 12px;
  min-height: 34px;
  padding: 7px 20px;
  background: var(--pearl-ink);
  color: var(--pearl-white);
  font-size: 12px;
  line-height: 20px;
}

.site-notice b,
.collection-notice b {
  flex: 0 0 auto;
  color: #b7d0cb;
  font-weight: 700;
  letter-spacing: .12em;
}

.collection-nav {
  position: relative;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
  align-items: center;
  width: min(1280px, calc(100% - 64px));
  min-height: 80px;
  margin: auto;
  border-bottom: 1px solid var(--pearl-line);
}

.collection-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: fit-content;
  min-width: 0;
  color: var(--pearl-ink);
  text-decoration: none;
}

.site-logo {
  display: block;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
}

.site-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.collection-brand strong {
  overflow: hidden;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.collection-nav nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.collection-nav nav a {
  position: relative;
  padding: 28px 0 26px;
  color: #5e6968;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: color .2s ease;
}

.collection-nav nav a::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--pearl-warm);
  content: "";
  opacity: 0;
  transform: scaleX(.25);
  transition: opacity .2s ease, transform .2s ease;
}

.collection-nav nav a:hover,
.collection-nav nav .active-nav { color: var(--pearl-ink); }

.collection-nav nav a:hover::after,
.collection-nav nav .active-nav::after {
  opacity: 1;
  transform: scaleX(1);
}

.collection-action {
  display: inline-flex;
  justify-self: end;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 9px 16px;
  border: 1px solid var(--pearl-ink);
  background: var(--pearl-ink);
  color: var(--pearl-white);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.collection-action:hover {
  background: transparent;
  color: var(--pearl-ink);
  transform: translateY(-2px);
}

.collection-action b { color: var(--pearl-warm); }

.collection-menu { display: none; }

body.template-pearl.home-page .collection-nav {
  width: 100%;
  padding-right: max(32px, calc((100% - 1280px) / 2));
  padding-left: max(32px, calc((100% - 1280px) / 2));
  border-color: rgba(155, 232, 220, .14);
  background: #081416;
}

body.template-pearl.home-page .collection-nav .collection-brand,
body.template-pearl.home-page .collection-nav nav a { color: rgba(255, 255, 255, .72); }

body.template-pearl.home-page .collection-nav nav a:hover,
body.template-pearl.home-page .collection-nav nav .active-nav,
body.template-pearl.home-page .collection-nav .collection-brand { color: var(--pearl-white); }

body.template-pearl.home-page .collection-action {
  border-color: #8cede0;
  background: transparent;
  color: #cffff8;
  box-shadow: inset 0 0 0 1px rgba(140, 237, 224, .08), 0 0 22px rgba(96, 215, 200, .1);
}

body.template-pearl.home-page .collection-action:hover {
  background: #8cede0;
  color: #071315;
  box-shadow: 0 0 28px rgba(140, 237, 224, .34);
}

.radical-main { overflow: hidden; }

.radical-hero {
  position: relative;
  display: grid;
  grid-template-areas: "copy";
  grid-template-columns: 1fr;
  align-items: center;
  width: 100%;
  min-height: calc(100svh - 116px);
  padding: 72px 0 94px;
  background: #294846;
  isolation: isolate;
}

.radical-copy {
  position: relative;
  z-index: 2;
  grid-area: copy;
  width: min(610px, calc(100% - 64px));
  max-width: 570px;
  margin-left: max(32px, calc((100% - 1280px) / 2));
  color: var(--pearl-white);
}

.radical-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: #d9e9e5;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
}

.radical-label::before {
  width: 32px;
  height: 1px;
  background: var(--pearl-warm);
  content: "";
}

.radical-label span {
  color: rgba(255, 255, 255, .66);
  font-weight: 500;
}

.radical h1 {
  max-width: 620px;
  margin: 22px 0 0;
  font-family: "Noto Serif CJK SC", "Songti SC", SimSun, serif;
  font-size:32px;
  font-weight: 600;
  color: var(--pearl-white);
  letter-spacing: 0;
  line-height: 1.12;
  overflow-wrap: anywhere;
}

body.template-pearl.home-page .radical h1 {
  background: linear-gradient(100deg, #ffffff 0%, #ffffff 32%, #a8f3e8 48%, #ffd0a6 58%, #ffffff 76%);
  background-size: 230% 100%;
  color: var(--pearl-white);
  text-shadow: 0 10px 42px rgba(104, 224, 210, .12);
  animation: pearl-copy-in .85s .18s ease-out both;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  body.template-pearl.home-page .radical h1 {
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    animation: pearl-copy-in .85s .18s ease-out both, pearl-title-flow 8s 1.4s ease-in-out infinite;
  }
}

.radical-lead {
  max-width: 500px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .78);
  font-size: 16px;
  line-height: 2;
}

.radical-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.radical-actions a,
.radical-cta a,
.about-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 46px;
  padding: 10px 20px;
  border: 1px solid var(--pearl-sage-dark);
  background: var(--pearl-sage-dark);
  color: var(--pearl-white);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.radical-hero .radical-actions a {
  border-color: var(--pearl-white);
  background: var(--pearl-white);
  color: var(--pearl-ink);
}

body.radical .radical-cta a,
body.radical .about-cta a { color: var(--pearl-ink); }

.radical-actions a:hover,
.radical-cta a:hover,
.about-cta a:hover { transform: translateY(-2px); }

.radical-actions a + a {
  background: transparent;
  color: var(--pearl-white);
}

.radical-hero .radical-actions a + a {
  border-color: rgba(255, 255, 255, .72);
  background: rgba(21, 47, 46, .16);
  color: var(--pearl-white);
  backdrop-filter: blur(8px);
}

.radical-hero .radical-actions a:first-child {
  position: relative;
  overflow: hidden;
}

.radical-hero .radical-actions a:first-child::after {
  position: absolute;
  top: -30%;
  bottom: -30%;
  left: -45%;
  width: 32%;
  background: linear-gradient(90deg, transparent, rgba(79, 119, 113, .18), transparent);
  content: "";
  transform: skewX(-18deg);
  animation: pearl-button-shine 5.8s ease-in-out infinite;
}

.radical-stage {
  position: absolute;
  z-index: -1;
  inset: 0;
  grid-area: image;
  overflow: hidden;
  min-height: 0;
  background: #294846;
  isolation: isolate;
}

.radical-stage::before {
  position: absolute;
  inset: -4%;
  background: url("pearl-skyline.webp") center 45% / cover no-repeat;
  content: "";
  filter: contrast(1.12) saturate(.78);
  transform: translate3d(var(--pearl-shift-x, 0), var(--pearl-shift-y, 0), 0) scale(1.08);
  transition: transform 1.2s cubic-bezier(.2, .8, .2, 1);
  animation: pearl-breathe 16s ease-in-out infinite alternate;
  will-change: transform;
}

.radical-stage::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 46, 45, .88) 0%, rgba(24, 52, 51, .7) 40%, rgba(25, 57, 57, .18) 72%, rgba(25, 57, 57, .34) 100%);
  content: "";
  pointer-events: none;
}

.radical-stage i,
.radical-stage b,
.radical-stage em,
.radical-stage u,
.radical-stage mark {
  position: absolute;
  z-index: 2;
  display: block;
  pointer-events: none;
}

.radical-stage i {
  inset: 32px;
  border: 1px solid rgba(255, 255, 255, .18);
}

.radical-stage b {
  top: 32px;
  bottom: 32px;
  left: 62%;
  width: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, .18);
}

.radical-stage b::after {
  position: absolute;
  top: -25%;
  left: 0;
  width: 1px;
  height: 25%;
  background: rgba(255, 255, 255, .9);
  content: "";
  animation: pearl-scan 6s ease-in-out infinite;
}

.radical-stage em {
  right: 32px;
  bottom: 92px;
  width: 90px;
  height: 1px;
  background: rgba(255, 255, 255, .5);
}

.radical-stage u {
  right: 32px;
  bottom: 74px;
  width: 46px;
  height: 1px;
  background: var(--pearl-warm-soft);
  text-decoration: none;
}

.radical-stage mark {
  right: 108px;
  bottom: 72px;
  width: 6px;
  height: 6px;
  background: var(--pearl-warm-soft);
  box-shadow: 0 0 18px rgba(255, 239, 210, .8);
  animation: pearl-glint 3.6s ease-in-out infinite;
}

.radical-stage .pearl-grid {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: block;
  background-image: linear-gradient(rgba(145, 232, 220, .08) 1px, transparent 1px), linear-gradient(90deg, rgba(145, 232, 220, .08) 1px, transparent 1px);
  background-position: center;
  background-size: 64px 64px;
  opacity: .42;
  -webkit-mask-image: linear-gradient(90deg, transparent 20%, #000 68%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 20%, #000 68%, transparent 100%);
  animation: pearl-grid-move 18s linear infinite;
}

.radical-stage .pearl-beam {
  position: absolute;
  z-index: 2;
  top: -20%;
  bottom: -20%;
  left: 70%;
  display: block;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(154, 241, 228, .9), transparent);
  box-shadow: 0 0 26px rgba(126, 237, 221, .66);
  opacity: .7;
  transform: rotate(16deg);
  animation: pearl-beam-sweep 8s ease-in-out infinite;
}

.radical-stage .pearl-network {
  position: absolute;
  z-index: 3;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  opacity: .82;
  pointer-events: none;
}

.radical-metrics {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr) .72fr;
  width: 100%;
  margin: 0 auto;
  padding-right: max(32px, calc((100% - 1160px) / 2));
  padding-left: max(32px, calc((100% - 1160px) / 2));
  border-top: 1px solid var(--pearl-line);
  border-bottom: 1px solid var(--pearl-line);
  border-color: rgba(150, 231, 220, .15);
  background: #091719;
  backdrop-filter: blur(18px);
}

.radical-metrics article,
.radical-metrics > a {
  min-width: 0;
  min-height: 118px;
  padding: 22px 24px;
  border-right: 1px solid rgba(150, 231, 220, .15);
  background: rgba(9, 23, 25, .92);
  transition: background .25s ease;
}

.radical-metrics article:hover,
.radical-metrics > a:hover { background: #102729; }

.radical-metrics span {
  display: block;
  color: #ffb370;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
}

.radical-metrics strong {
  display: block;
  margin-top: 5px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  color: var(--pearl-white);
}

.radical-metrics small {
  display: block;
  color: #96aaa8;
  font-size: 12px;
}

.radical-metrics > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-right: 0;
  color: #a8f3e8;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.radical-story {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 76px;
  width: min(1040px, calc(100% - 64px));
  padding: 124px 0;
  margin: auto;
}

.story-label {
  padding-top: 9px;
  border-top: 2px solid var(--pearl-warm);
  color: var(--pearl-sage-dark);
}

.story-label p {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
}

.story-body h2,
.radical-features h2,
.radical-plans h2,
.radical-downloads h2,
.radical-cta h2 {
  margin: 0;
  font-family: "Noto Serif CJK SC", "Songti SC", SimSun, serif;
  font-size: 42px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.story-body > p {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--pearl-muted);
  font-size: 16px;
  line-height: 2.05;
}

.story-body a {
  display: inline-flex;
  gap: 9px;
  margin-top: 24px;
  color: var(--pearl-sage-dark);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.radical-features {
  padding: 108px max(32px, calc((100% - 1160px) / 2));
  background: #091719;
}

.radical-features header { max-width: 680px; }
.radical-features header h2 { color: var(--pearl-white); }

.radical-features header > p,
.radical-plans header > p,
.radical-downloads header > p,
.radical-cta > p,
.about-cta > p {
  margin: 0 0 12px;
  color: #8cede0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
}

.radical-features > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 48px;
  background: rgba(140, 237, 224, .2);
}

.radical-features article {
  min-height: 290px;
  padding: 28px;
  border-top: 1px solid rgba(255, 255, 255, .04);
  background: #0d2022;
  transition: background .2s ease, transform .2s ease;
}

.radical-features article:hover {
  z-index: 1;
  background: #132a2c;
  box-shadow: inset 0 0 34px rgba(140, 237, 224, .04), 0 18px 44px rgba(0, 0, 0, .24);
  transform: translateY(-5px);
}

.radical-features article > span {
  color: var(--pearl-warm);
  font-size: 11px;
  font-weight: 700;
}

.radical-features h3 {
  margin: 86px 0 10px;
  font-size: 21px;
  letter-spacing: 0;
  color: var(--pearl-white);
}

.radical-features article p {
  margin: 0;
  color: #9fb3b0;
  font-size: 13px;
  line-height: 1.9;
}

.radical-plans {
  width: min(1100px, calc(100% - 64px));
  padding: 116px 0;
  margin: auto;
}

.radical-plans > header > p { color: var(--pearl-sage-dark); }

.radical-plans > div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 44px;
}

.radical-plans article {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 400px;
  padding: 28px;
  border: 1px solid var(--pearl-line);
  border-radius: 6px;
  background: var(--pearl-white);
  box-shadow: 0 14px 34px rgba(32, 53, 52, .05);
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.radical-plans article:hover {
  border-color: #9fb5b0;
  box-shadow: 0 20px 42px var(--pearl-shadow);
  transform: translateY(-6px);
}

.radical-plans article > small {
  color: var(--pearl-warm);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
}

.radical-plans h3 {
  margin: 22px 0 0;
  font-size: 22px;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.radical-plans article > p {
  min-height: 50px;
  margin: 10px 0 0;
  color: var(--pearl-muted);
  font-size: 13px;
}

.radical-plans strong {
  display: block;
  margin-top: 20px;
  color: var(--pearl-sage-dark);
  font-size: 36px;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.radical-plans strong i {
  font-size: 14px;
  font-style: normal;
  vertical-align: 12px;
}

.radical-plans strong em {
  font-size: 11px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0;
}

.radical-plans ul {
  margin: 18px 0;
  padding: 0;
  color: var(--pearl-muted);
  font-size: 12px;
  list-style: none;
}

.radical-plans li + li { margin-top: 7px; }
.radical-plans li::before { margin-right: 7px; color: var(--pearl-warm); content: "+"; }

.radical-plans article > a {
  margin-top: auto;
  color: var(--pearl-sage-dark);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.radical-plans .hot {
  border-color: var(--pearl-sage-dark);
  background: linear-gradient(145deg, #15393a, #0b2022);
  color: var(--pearl-white);
  box-shadow: inset 0 0 0 1px rgba(140, 237, 224, .22), 0 18px 50px rgba(22, 94, 88, .24);
}

.radical-plans .hot p,
.radical-plans .hot ul { color: #dce9e6; }

.radical-plans .hot strong,
.radical-plans .hot > a { color: var(--pearl-white); }
.radical-plans .hot li::before { color: #efc093; }

.radical-downloads {
  position: relative;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 100px;
  width: min(1100px, calc(100% - 64px));
  padding: 104px 0;
  margin: auto;
  border-top: 1px solid rgba(140, 237, 224, .16);
  background: #081416;
  box-shadow: 0 0 0 100vmax #081416;
  color: var(--pearl-white);
  clip-path: inset(0 -100vmax);
}

.radical-downloads h2 { color: var(--pearl-white); }

.radical-downloads > div { border-top: 1px solid rgba(140, 237, 224, .18); }

.radical-downloads a {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 13px;
  align-items: center;
  min-height: 82px;
  border-bottom: 1px solid rgba(140, 237, 224, .14);
  text-decoration: none;
  transition: padding .2s ease, background .2s ease;
}

.radical-downloads a:hover {
  padding: 0 12px;
  background: #102729;
}

.radical-downloads i svg {
  display: block;
  width: 21px;
  height: 21px;
  fill: #8cede0;
}

.radical-downloads b { display: block; color: var(--pearl-white); font-size: 14px; }
.radical-downloads small { display: block; color: #91a7a4; font-size: 11px; }
.radical-downloads em { color: var(--pearl-warm); font-style: normal; }

.radical-cta,
.about-cta {
  position: relative;
  overflow: hidden;
  padding: 116px 32px;
  background: var(--pearl-ink);
  color: var(--pearl-white);
  text-align: center;
}

.radical-cta::before,
.about-cta::before {
  position: absolute;
  top: -100px;
  left: 50%;
  width: 420px;
  height: 220px;
  border: 1px solid rgba(183, 208, 203, .25);
  border-radius: 50%;
  content: "";
  transform: translateX(-50%);
}

.radical-cta > p,
.about-cta > p { position: relative; color: #b7d0cb; }

.radical-cta h2,
.about-cta h2 {
  position: relative;
  max-width: 720px;
  margin: auto;
  color: var(--pearl-white);
}

.radical-cta a,
.about-cta a {
  position: relative;
  margin-top: 30px;
  border-color: var(--pearl-white);
  background: var(--pearl-white);
  color: var(--pearl-ink);
}

.site-footer,
.collection-footer {
  display: grid;
  grid-template-columns: 1.15fr 1fr auto;
  gap: 36px;
  padding: 52px max(32px, calc((100% - 1160px) / 2));
  background: #edf1ee;
}

.site-footer p,
.collection-footer p {
  max-width: 480px;
  margin: 13px 0 0;
  color: var(--pearl-muted);
  font-size: 12px;
}

body.template-pearl.home-page .site-footer .collection-brand,
body.template-pearl.home-page .collection-footer .collection-brand { color: var(--pearl-ink); }

.site-footer nav,
.collection-footer nav {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 9px 18px;
}

.site-footer nav a,
.collection-footer nav a { font-size: 12px; text-decoration: none; }

.site-footer small,
.collection-footer small {
  align-self: end;
  color: var(--pearl-muted);
  font-size: 11px;
  text-align: right;
}

.site-footer-links { background: #edf1ee; }
.site-footer-links-inner { border-top: 1px solid var(--pearl-line); padding-top: 18px; }
.site-footer-links a { color: var(--pearl-muted); }

body.template-pearl.home-page .collection-nav { animation: pearl-nav-in .7s ease-out both; }
body.template-pearl.home-page .radical-label { animation: pearl-copy-in .7s .08s ease-out both; }
body.template-pearl.home-page .radical-lead { animation: pearl-copy-in .85s .3s ease-out both; }
body.template-pearl.home-page .radical-actions { animation: pearl-copy-in .85s .42s ease-out both; }

.template-pearl .pearl-watch {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s ease, transform .75s cubic-bezier(.2, .75, .25, 1);
}

.template-pearl .pearl-watch.pearl-inview {
  opacity: 1;
  transform: translateY(0);
}

.template-pearl .pearl-watch.pearl-inview.pearl-tilt {
  --pearl-lift: 0px;
  transform: perspective(900px) rotateX(var(--pearl-rotate-x, 0deg)) rotateY(var(--pearl-rotate-y, 0deg)) translateY(var(--pearl-lift));
  transform-style: preserve-3d;
  transition: opacity .3s ease, transform .22s ease;
  will-change: transform;
}

.template-pearl .pearl-watch.pearl-inview.pearl-tilt:hover { --pearl-lift: -7px; }

.template-pearl .radical-features article.pearl-watch:nth-child(2),
.template-pearl .radical-plans article.pearl-watch:nth-child(2),
.template-pearl .about-values article.pearl-watch:nth-child(2) { transition-delay: .1s; }

.template-pearl .radical-features article.pearl-watch:nth-child(3),
.template-pearl .radical-plans article.pearl-watch:nth-child(3),
.template-pearl .about-values article.pearl-watch:nth-child(3) { transition-delay: .2s; }

@keyframes pearl-nav-in {
  from { opacity: 0; transform: translateY(-14px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pearl-copy-in {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pearl-title-flow {
  0%, 18% { background-position: 100% 50%; }
  60%, 100% { background-position: 0 50%; }
}

@keyframes pearl-breathe {
  from { filter: contrast(1.08) saturate(.74); }
  to { filter: contrast(1.18) saturate(.86); }
}

@keyframes pearl-scan {
  0%, 15% { transform: translateY(0); opacity: 0; }
  30% { opacity: 1; }
  70% { opacity: 1; }
  90%, 100% { transform: translateY(500%); opacity: 0; }
}

@keyframes pearl-glint {
  0%, 100% { opacity: .4; transform: scale(.8); }
  50% { opacity: 1; transform: scale(1.35); }
}

@keyframes pearl-button-shine {
  0%, 58% { left: -45%; }
  82%, 100% { left: 125%; }
}

@keyframes pearl-grid-move {
  from { background-position: 0 0; }
  to { background-position: 64px 64px; }
}

@keyframes pearl-beam-sweep {
  0%, 12% { left: 48%; opacity: 0; }
  28% { opacity: .72; }
  72% { opacity: .72; }
  90%, 100% { left: 96%; opacity: 0; }
}

/* Inner pages */
body.radical-inner { background: var(--pearl-paper); }

.radical-inner main {
  overflow: hidden;
  padding-bottom: 96px;
}

.radical-inner .resource-hero,
.radical-inner .about-hero,
.radical-inner .downloads-page-hero,
.radical-inner .legal-hero {
  position: relative;
  width: min(1160px, calc(100% - 64px));
  min-height: 340px;
  margin: 0 auto;
  padding: 92px 0 78px;
  border-bottom: 1px solid var(--pearl-line);
}

.radical-inner .resource-hero::after,
.radical-inner .about-hero::after,
.radical-inner .downloads-page-hero::after,
.radical-inner .legal-hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 42%;
  height: 100%;
  background: url("pearl-skyline.webp") center / cover no-repeat;
  content: "";
  opacity: .34;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 38%);
  mask-image: linear-gradient(90deg, transparent, #000 38%);
}

.radical-inner .collection-kicker {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--pearl-sage-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
}

.radical-inner .collection-kicker i {
  width: 30px;
  height: 1px;
  background: var(--pearl-warm);
}

.radical-inner .resource-hero h1,
.radical-inner .about-hero h1,
.radical-inner .downloads-page-hero h1,
.radical-inner .legal-hero h1 {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 18px 0 0;
  font-family: "Noto Serif CJK SC", "Songti SC", SimSun, serif;
  font-size: 56px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.2;
}

.radical-inner .resource-hero > p:last-child,
.radical-inner .about-hero > p:last-child,
.radical-inner .downloads-page-hero > span,
.radical-inner .legal-hero > p:last-child {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 560px;
  margin: 20px 0 0;
  color: var(--pearl-muted);
  line-height: 2;
}

.radical-inner .about-intro,
.radical-inner .resource-layout,
.radical-inner .downloads-page-main,
.radical-inner .legal-wrap,
.radical-inner .about-values,
.radical-inner .custom-page-content {
  width: min(1040px, calc(100% - 64px));
  margin-right: auto;
  margin-left: auto;
}

.radical-inner .about-intro {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 84px;
  padding: 96px 0 68px;
}

.radical-inner .about-intro header p,
.radical-inner .site-downloads-heading p {
  margin: 0;
  color: var(--pearl-sage-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
}

.radical-inner .about-intro h2 {
  margin: 16px 0 0;
  font-family: "Noto Serif CJK SC", "Songti SC", SimSun, serif;
  font-size: 36px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.4;
}

.radical-inner .about-intro .story-copy {
  padding-top: 28px;
  color: var(--pearl-muted);
  line-height: 2;
}

.radical-inner .about-intro .story-copy p { margin: 0; }

.radical-inner .about-intro .story-copy a,
.radical-inner .resource-content a,
.radical-inner .custom-page-content a {
  display: inline-flex;
  gap: 8px;
  margin-top: 22px;
  color: var(--pearl-sage-dark);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.radical-inner .about-values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 24px 0 96px;
  background: var(--pearl-line);
}

.radical-inner .about-values article {
  min-height: 260px;
  padding: 28px;
  background: var(--pearl-white);
  transition: background .2s ease, transform .2s ease;
}

.radical-inner .about-values article:hover {
  z-index: 1;
  background: var(--pearl-mist);
  transform: translateY(-5px);
}

.radical-inner .about-values article > span {
  color: var(--pearl-warm);
  font-size: 11px;
  font-weight: 700;
}

.radical-inner .about-values h2 {
  margin: 78px 0 10px;
  font-size: 21px;
  letter-spacing: 0;
}

.radical-inner .about-values p {
  margin: 0;
  color: var(--pearl-muted);
  font-size: 13px;
  line-height: 1.9;
}

.radical-inner .resource-layout,
.radical-inner .downloads-page-main { padding: 64px 0 96px; }
.radical-inner .legal-wrap { padding-bottom: 96px; }
.radical-inner .legal-wrap .legal-hero { width: 100%; }

.radical-inner .resource-content,
.radical-inner .legal-card,
.radical-inner .custom-page-content {
  padding: 54px;
  border: 1px solid var(--pearl-line);
  border-radius: 6px;
  background: var(--pearl-white);
  box-shadow: 0 18px 42px rgba(32, 53, 52, .05);
}

.radical-inner .custom-page-content { margin-top: 64px; margin-bottom: 96px; }

.radical-inner .resource-content > :first-child,
.radical-inner .legal-card > :first-child,
.radical-inner .custom-page-content > :first-child { margin-top: 0; }

.radical-inner .resource-content > :last-child,
.radical-inner .legal-card > :last-child,
.radical-inner .custom-page-content > :last-child { margin-bottom: 0; }

.radical-inner .resource-content h2,
.radical-inner .legal-card h2,
.radical-inner .custom-page-content h2 {
  margin: 38px 0 13px;
  font-size: 26px;
  letter-spacing: 0;
}

.radical-inner .resource-content h3,
.radical-inner .legal-card h3,
.radical-inner .custom-page-content h3 { margin: 28px 0 10px; font-size: 19px; }

.radical-inner .resource-content p,
.radical-inner .legal-card p,
.radical-inner .custom-page-content p,
.radical-inner .resource-content li,
.radical-inner .legal-card li,
.radical-inner .custom-page-content li { color: var(--pearl-muted); line-height: 2; }

.radical-inner .resource-content blockquote,
.radical-inner .custom-page-content blockquote {
  margin: 24px 0;
  padding: 15px 20px;
  border-left: 3px solid var(--pearl-warm);
  background: var(--pearl-mist);
  color: var(--pearl-ink);
}

.radical-inner .resource-content code,
.radical-inner .custom-page-content code {
  padding: 2px 6px;
  background: var(--pearl-mist);
  color: var(--pearl-sage-dark);
}

.radical-inner .product-plans.page-plan-list { padding: 0; }

.radical-inner .page-plan-list .product-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.radical-inner .page-plan-list .product-plan {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 390px;
  padding: 28px;
  border: 1px solid var(--pearl-line);
  border-radius: 6px;
  background: var(--pearl-white);
  transition: box-shadow .2s ease, transform .2s ease;
}

.radical-inner .page-plan-list .product-plan:hover {
  box-shadow: 0 20px 42px var(--pearl-shadow);
  transform: translateY(-6px);
}

.radical-inner .page-plan-list .product-plan.recommended {
  border-color: var(--pearl-sage-dark);
  background: var(--pearl-sage-dark);
  color: var(--pearl-white);
}

.radical-inner .page-plan-list h3 { margin: 0; font-size: 23px; overflow-wrap: anywhere; }
.radical-inner .page-plan-list p { min-height: 50px; margin: 12px 0; color: var(--pearl-muted); font-size: 13px; }
.radical-inner .page-plan-list .recommended p,
.radical-inner .page-plan-list .recommended ul { color: #dce9e6; }
.radical-inner .page-plan-list .product-price { margin-top: 14px; color: var(--pearl-sage-dark); font-weight: 700; }
.radical-inner .page-plan-list .product-price small { font-size: 14px; vertical-align: 12px; }
.radical-inner .page-plan-list .product-price strong { font-size: 38px; letter-spacing: 0; }
.radical-inner .page-plan-list .product-price span { font-size: 12px; font-weight: 500; }
.radical-inner .page-plan-list .recommended .product-price { color: var(--pearl-white); }
.radical-inner .page-plan-list ul { margin: 18px 0; padding: 0; color: var(--pearl-muted); font-size: 12px; list-style: none; }
.radical-inner .page-plan-list li + li { margin-top: 7px; }
.radical-inner .page-plan-list li::before { margin-right: 7px; color: var(--pearl-warm); content: "+"; }
.radical-inner .page-plan-list a { margin-top: auto; color: var(--pearl-sage-dark); font-size: 13px; font-weight: 700; text-decoration: none; }
.radical-inner .page-plan-list .recommended a { color: var(--pearl-white); }

.radical-inner .site-downloads { padding: 0; }
.radical-inner .site-downloads-heading { margin-bottom: 28px; }
.radical-inner .site-downloads-heading h2 { margin: 9px 0; font-size: 34px; letter-spacing: 0; }
.radical-inner .site-downloads-heading span { color: var(--pearl-muted); font-size: 13px; }
.radical-inner .site-download-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; background: var(--pearl-line); }
.radical-inner .download-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 13px;
  align-items: center;
  min-height: 94px;
  padding: 18px 20px;
  background: var(--pearl-white);
  text-decoration: none;
  transition: background .2s ease;
}
.radical-inner .download-item:hover { background: var(--pearl-mist); }
.radical-inner .download-mark svg { display: block; width: 22px; height: 22px; fill: var(--pearl-sage-dark); }
.radical-inner .download-item b { display: block; }
.radical-inner .download-item small { display: block; color: var(--pearl-muted); font-size: 11px; }
.radical-inner .download-item > i { color: var(--pearl-warm); font-style: normal; }

.radical-inner .resource-guide-list { display: grid; gap: 1px; background: var(--pearl-line); }
.radical-inner .resource-guide-item { padding: 26px; background: var(--pearl-white); }
.radical-inner .resource-guide-item h2 { margin: 0; font-size: 20px; }
.radical-inner .resource-guide-item p { margin: 10px 0 0; }

/* Template 09 inner pages use explicit colors to avoid inherited contrast issues. */
body.template-pearl.radical-inner {
  background: #071315;
  color: #f2f8f7;
}

body.template-pearl.radical-inner .collection-nav {
  width: 100%;
  padding-right: max(32px, calc((100% - 1280px) / 2));
  padding-left: max(32px, calc((100% - 1280px) / 2));
  border-color: rgba(140, 237, 224, .15);
  background: #081416;
}

body.template-pearl.radical-inner .collection-nav .collection-brand,
body.template-pearl.radical-inner .collection-nav nav a { color: rgba(255, 255, 255, .78); }

body.template-pearl.radical-inner .collection-nav nav a:hover,
body.template-pearl.radical-inner .collection-nav nav .active-nav,
body.template-pearl.radical-inner .collection-nav .collection-brand { color: #f7fffd; }

body.template-pearl.radical-inner .collection-action {
  border-color: #8cede0;
  background: transparent;
  color: #cffff8;
  box-shadow: 0 0 22px rgba(96, 215, 200, .1);
}

body.template-pearl.radical-inner .collection-action:hover {
  background: #8cede0;
  color: #071315;
}

body.template-pearl.radical-inner main {
  background: linear-gradient(180deg, #081618, #0b1a1c 52%, #071315);
}

body.template-pearl.radical-inner .resource-hero,
body.template-pearl.radical-inner .about-hero,
body.template-pearl.radical-inner .downloads-page-hero,
body.template-pearl.radical-inner .legal-hero {
  width: 100vw;
  min-height: 360px;
  margin-right: 0;
  margin-left: calc(50% - 50vw);
  padding: 92px max(32px, calc((100vw - 1160px) / 2)) 78px;
  border-color: rgba(140, 237, 224, .18);
  background: #0a1b1d;
}

body.template-pearl.radical-inner .resource-hero::before,
body.template-pearl.radical-inner .about-hero::before,
body.template-pearl.radical-inner .downloads-page-hero::before,
body.template-pearl.radical-inner .legal-hero::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background-image: linear-gradient(rgba(140, 237, 224, .055) 1px, transparent 1px), linear-gradient(90deg, rgba(140, 237, 224, .055) 1px, transparent 1px);
  background-size: 52px 52px;
  content: "";
  pointer-events: none;
}

body.template-pearl.radical-inner .resource-hero::after,
body.template-pearl.radical-inner .about-hero::after,
body.template-pearl.radical-inner .downloads-page-hero::after,
body.template-pearl.radical-inner .legal-hero::after { opacity: .2; }

body.template-pearl.radical-inner .collection-kicker,
body.template-pearl.radical-inner .about-intro header p,
body.template-pearl.radical-inner .site-downloads-heading p { color: #8cede0; }

body.template-pearl.radical-inner .resource-hero h1,
body.template-pearl.radical-inner .about-hero h1,
body.template-pearl.radical-inner .downloads-page-hero h1,
body.template-pearl.radical-inner .legal-hero h1,
body.template-pearl.radical-inner .about-intro h2,
body.template-pearl.radical-inner .about-values h2,
body.template-pearl.radical-inner .site-downloads-heading h2 { color: #f7fffd; }

body.template-pearl.radical-inner .resource-hero > p:last-child,
body.template-pearl.radical-inner .about-hero > p:last-child,
body.template-pearl.radical-inner .downloads-page-hero > span,
body.template-pearl.radical-inner .legal-hero > p:last-child,
body.template-pearl.radical-inner .about-intro .story-copy,
body.template-pearl.radical-inner .about-intro .story-copy p,
body.template-pearl.radical-inner .site-downloads-heading span { color: #b7c7c5; }

body.template-pearl.radical-inner .about-intro .story-copy a,
body.template-pearl.radical-inner .resource-content a,
body.template-pearl.radical-inner .custom-page-content a { color: #9af1e5; }

body.template-pearl.radical-inner .about-values {
  gap: 14px;
  background: transparent;
}

body.template-pearl.radical-inner .about-values article {
  border: 1px solid rgba(140, 237, 224, .17);
  background: #0d2022;
  box-shadow: inset 0 0 34px rgba(140, 237, 224, .025);
}

body.template-pearl.radical-inner .about-values article:hover { background: #132a2c; }
body.template-pearl.radical-inner .about-values article > span { color: #ffb370; }
body.template-pearl.radical-inner .about-values p { color: #aec0bd; }

body.template-pearl.radical-inner .resource-content,
body.template-pearl.radical-inner .legal-card,
body.template-pearl.radical-inner .custom-page-content {
  border-color: rgba(140, 237, 224, .17);
  background: #0d1e20;
  box-shadow: 0 20px 48px rgba(0, 0, 0, .24), inset 0 0 42px rgba(140, 237, 224, .02);
  color: #eef7f5;
}

body.template-pearl.radical-inner .resource-content h1,
body.template-pearl.radical-inner .resource-content h2,
body.template-pearl.radical-inner .resource-content h3,
body.template-pearl.radical-inner .legal-card h1,
body.template-pearl.radical-inner .legal-card h2,
body.template-pearl.radical-inner .legal-card h3,
body.template-pearl.radical-inner .custom-page-content h1,
body.template-pearl.radical-inner .custom-page-content h2,
body.template-pearl.radical-inner .custom-page-content h3,
body.template-pearl.radical-inner .resource-content strong,
body.template-pearl.radical-inner .legal-card strong,
body.template-pearl.radical-inner .custom-page-content strong { color: #f7fffd; }

body.template-pearl.radical-inner .resource-content p,
body.template-pearl.radical-inner .legal-card p,
body.template-pearl.radical-inner .custom-page-content p,
body.template-pearl.radical-inner .resource-content li,
body.template-pearl.radical-inner .legal-card li,
body.template-pearl.radical-inner .custom-page-content li { color: #bdcac9; }

body.template-pearl.radical-inner .resource-content blockquote,
body.template-pearl.radical-inner .custom-page-content blockquote {
  border-color: #ffb370;
  background: #12292b;
  color: #eff8f6;
}

body.template-pearl.radical-inner .resource-content code,
body.template-pearl.radical-inner .custom-page-content code {
  background: #142d2f;
  color: #aaf5ea;
}

body.template-pearl.radical-inner .resource-content hr,
body.template-pearl.radical-inner .legal-card hr,
body.template-pearl.radical-inner .custom-page-content hr { border-color: rgba(140, 237, 224, .18); }

body.template-pearl.radical-inner .resource-content table,
body.template-pearl.radical-inner .legal-card table,
body.template-pearl.radical-inner .custom-page-content table { width: 100%; border-collapse: collapse; color: #d9e6e4; }

body.template-pearl.radical-inner .resource-content th,
body.template-pearl.radical-inner .resource-content td,
body.template-pearl.radical-inner .legal-card th,
body.template-pearl.radical-inner .legal-card td,
body.template-pearl.radical-inner .custom-page-content th,
body.template-pearl.radical-inner .custom-page-content td { padding: 10px 12px; border: 1px solid rgba(140, 237, 224, .16); }

body.template-pearl.radical-inner .page-plan-list .product-plan {
  border-color: rgba(140, 237, 224, .17);
  background: #0d2022;
  color: #f2f8f7;
  box-shadow: 0 16px 38px rgba(0, 0, 0, .2);
}

body.template-pearl.radical-inner .page-plan-list .product-plan:hover {
  border-color: rgba(140, 237, 224, .44);
  box-shadow: 0 22px 48px rgba(0, 0, 0, .3), 0 0 24px rgba(140, 237, 224, .08);
}

body.template-pearl.radical-inner .page-plan-list .product-plan.recommended {
  border-color: #75d9cb;
  background: linear-gradient(145deg, #15393a, #0b2022);
}

body.template-pearl.radical-inner .page-plan-list h3 { color: #f7fffd; }
body.template-pearl.radical-inner .page-plan-list p,
body.template-pearl.radical-inner .page-plan-list ul { color: #afc0be; }
body.template-pearl.radical-inner .page-plan-list .product-price,
body.template-pearl.radical-inner .page-plan-list a { color: #9af1e5; }
body.template-pearl.radical-inner .page-plan-list .recommended p,
body.template-pearl.radical-inner .page-plan-list .recommended ul { color: #c8d8d5; }
body.template-pearl.radical-inner .page-plan-list .recommended .product-price,
body.template-pearl.radical-inner .page-plan-list .recommended a { color: #f7fffd; }

body.template-pearl.radical-inner .site-download-grid,
body.template-pearl.radical-inner .resource-guide-list { background: rgba(140, 237, 224, .17); }

body.template-pearl.radical-inner .download-item,
body.template-pearl.radical-inner .resource-guide-item {
  background: #0d2022;
  color: #f2f8f7;
}

body.template-pearl.radical-inner .download-item:hover { background: #132a2c; }
body.template-pearl.radical-inner .download-mark svg { fill: #8cede0; }
body.template-pearl.radical-inner .download-item b,
body.template-pearl.radical-inner .resource-guide-item h2 { color: #f7fffd; }
body.template-pearl.radical-inner .download-item small,
body.template-pearl.radical-inner .resource-guide-item p { color: #afc0be; }

body.template-pearl.radical-inner .about-cta { border-top: 1px solid rgba(140, 237, 224, .16); }

body.template-pearl.radical-inner .site-footer,
body.template-pearl.radical-inner .collection-footer,
body.template-pearl.radical-inner .site-footer-links {
  border-color: rgba(140, 237, 224, .14);
  background: #061012;
  color: #edf7f5;
}

body.template-pearl.radical-inner .site-footer .collection-brand,
body.template-pearl.radical-inner .collection-footer .collection-brand,
body.template-pearl.radical-inner .site-footer nav a,
body.template-pearl.radical-inner .collection-footer nav a { color: #edf7f5; }

body.template-pearl.radical-inner .site-footer p,
body.template-pearl.radical-inner .collection-footer p,
body.template-pearl.radical-inner .site-footer small,
body.template-pearl.radical-inner .collection-footer small,
body.template-pearl.radical-inner .site-footer-links a { color: #9fb1ae; }

@media (max-width: 980px) {
  .collection-nav { grid-template-columns: 1fr auto; }
  .collection-nav nav,
  .collection-action { display: none; }
  .collection-menu {
    display: grid;
    place-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    border: 1px solid var(--pearl-line);
    border-radius: 4px;
    background: transparent;
  }
  .collection-menu span { display: block; width: 18px; height: 2px; background: var(--pearl-ink); }
  .template-world.nav-open .collection-nav nav {
    position: absolute;
    top: 68px;
    right: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 18px;
    border: 1px solid var(--pearl-line);
    background: var(--pearl-white);
    box-shadow: 0 18px 38px var(--pearl-shadow);
  }
  .template-world.nav-open .collection-nav nav a { padding: 10px 0; }
  .template-world.nav-open .collection-nav nav a::after { display: none; }
  body.template-pearl.home-page.nav-open .collection-nav nav {
    border-color: rgba(140, 237, 224, .2);
    background: #0d2022;
    box-shadow: 0 18px 38px rgba(0, 0, 0, .34);
  }
  body.template-pearl.home-page.nav-open .collection-nav nav a { color: rgba(255, 255, 255, .82); }
  body.template-pearl.home-page.nav-open .collection-nav nav .active-nav,
  body.template-pearl.home-page.nav-open .collection-nav nav a:hover { color: #a8f3e8; }
  body.template-pearl.radical-inner.nav-open .collection-nav nav {
    border-color: rgba(140, 237, 224, .2);
    background: #0d2022;
    box-shadow: 0 18px 38px rgba(0, 0, 0, .34);
  }
  body.template-pearl.radical-inner.nav-open .collection-nav nav a { color: rgba(255, 255, 255, .82); }
  body.template-pearl.radical-inner.nav-open .collection-nav nav .active-nav,
  body.template-pearl.radical-inner.nav-open .collection-nav nav a:hover { color: #a8f3e8; }

  .radical-hero {
    grid-template-areas: "copy";
    grid-template-columns: 1fr;
    min-height: calc(100svh - 102px);
    padding: 64px 0 82px;
  }
  .radical-copy { max-width: 700px; }
  .radical-stage { min-height: 0; box-shadow: none; }
  .radical-metrics { grid-template-columns: repeat(3, 1fr); }
  .radical-metrics > a { grid-column: 1 / -1; min-height: 70px; border-top: 1px solid var(--pearl-line); }
  .radical-features > div { grid-template-columns: 1fr; }
  .radical-features article { min-height: 230px; }
  .radical-features h3 { margin-top: 55px; }
  .radical-plans > div,
  .radical-inner .page-plan-list .product-plan-grid { grid-template-columns: 1fr; }
  .radical-plans article,
  .radical-inner .page-plan-list .product-plan { min-height: 350px; }
  .radical-downloads { grid-template-columns: 1fr; gap: 36px; }
  .site-footer,
  .collection-footer { grid-template-columns: 1fr 1fr; }
  .site-footer small,
  .collection-footer small { text-align: left; }
  .radical-inner .about-values { grid-template-columns: 1fr; }
  .radical-inner .about-values article { min-height: 220px; }
  .radical-inner .about-values h2 { margin-top: 50px; }
}

@media (max-width: 700px) {
  .site-notice,
  .collection-notice { justify-content: flex-start; overflow: hidden; }
  .site-notice span,
  .collection-notice span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .collection-nav { width: calc(100% - 32px); min-height: 68px; }
  body.template-pearl.home-page .collection-nav { width: 100%; padding-right: 16px; padding-left: 16px; }
  body.template-pearl.radical-inner .collection-nav { width: 100%; padding-right: 16px; padding-left: 16px; }
  body.template-pearl.home-page .collection-menu { border-color: rgba(255, 255, 255, .3); }
  body.template-pearl.home-page .collection-menu span { background: var(--pearl-white); }
  body.template-pearl.radical-inner .collection-menu { border-color: rgba(255, 255, 255, .3); }
  body.template-pearl.radical-inner .collection-menu span { background: var(--pearl-white); }
  .collection-brand strong { max-width: 200px; }
  .site-logo { flex-basis: 32px; width: 32px; height: 32px; }

  .radical-story,
  .radical-plans,
  .radical-downloads { width: calc(100% - 32px); }
  .radical-hero { width: 100%; min-height: calc(100svh - 102px); padding: 48px 0 66px; }
  .radical-copy { width: calc(100% - 40px); margin-left: 20px; }
  .radical-label { align-items: flex-start; flex-wrap: wrap; gap: 7px 10px; }
  .radical-label::before { margin-top: 9px; }
  .radical h1 { margin-top: 18px; font-size:32px; line-height: 1.18; }
  .radical-lead { margin-top: 18px; font-size: 14px; }
  .radical-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .radical-actions a { width: 100%; padding-right: 12px; padding-left: 12px; }
  .radical-stage { min-height: 0; box-shadow: none; }
  .radical-stage::before { background-position: 58% center; }
  .radical-stage::after { background: linear-gradient(90deg, rgba(20, 46, 45, .86), rgba(22, 49, 48, .52)); }
  .radical-stage i { inset: 16px; }
  .radical-stage b { top: 16px; bottom: 16px; left: 82%; }
  .radical-stage em { right: 16px; bottom: 50px; }
  .radical-stage u { right: 16px; bottom: 34px; }
  .radical-stage mark { right: 92px; bottom: 32px; }
  .radical-stage .pearl-grid { background-size: 42px 42px; opacity: .32; }
  .radical-stage .pearl-beam { display: none; }
  .radical-metrics { grid-template-columns: 1fr; width: 100%; padding-right: 16px; padding-left: 16px; }
  .radical-metrics article { min-height: 102px; border-right: 0; border-bottom: 1px solid var(--pearl-line); }
  .radical-metrics > a { grid-column: auto; }
  .radical-story { grid-template-columns: 1fr; gap: 30px; padding: 82px 0; }
  .story-label { max-width: 150px; }
  .story-body h2,
  .radical-features h2,
  .radical-plans h2,
  .radical-downloads h2,
  .radical-cta h2 { font-size: 31px; }
  .story-body > p { font-size: 14px; }
  .radical-features { padding: 78px 16px; }
  .radical-features > div { margin-top: 34px; }
  .radical-features article { min-height: 210px; padding: 24px; }
  .radical-plans { padding: 82px 0; }
  .radical-plans > div { margin-top: 34px; }
  .radical-plans article { min-height: 360px; padding: 24px; }
  .radical-downloads { padding: 82px 0; }
  .radical-cta,
  .about-cta { padding: 86px 20px; }
  .site-footer,
  .collection-footer { grid-template-columns: 1fr; gap: 22px; padding: 42px 16px; }

  .radical-inner main { padding-bottom: 72px; }
  .radical-inner .resource-hero,
  .radical-inner .about-hero,
  .radical-inner .downloads-page-hero,
  .radical-inner .legal-hero,
  .radical-inner .about-intro,
  .radical-inner .resource-layout,
  .radical-inner .downloads-page-main,
  .radical-inner .legal-wrap,
  .radical-inner .about-values,
  .radical-inner .custom-page-content { width: calc(100% - 32px); }
  .radical-inner .resource-hero,
  .radical-inner .about-hero,
  .radical-inner .downloads-page-hero,
  .radical-inner .legal-hero { min-height: 310px; padding: 72px 0 58px; }
  body.template-pearl.radical-inner .resource-hero,
  body.template-pearl.radical-inner .about-hero,
  body.template-pearl.radical-inner .downloads-page-hero,
  body.template-pearl.radical-inner .legal-hero {
    width: 100vw;
    min-height: 300px;
    margin-left: calc(50% - 50vw);
    padding: 64px 20px 52px;
  }
  .radical-inner .resource-hero::after,
  .radical-inner .about-hero::after,
  .radical-inner .downloads-page-hero::after,
  .radical-inner .legal-hero::after { width: 68%; opacity: .2; }
  .radical-inner .resource-hero h1,
  .radical-inner .about-hero h1,
  .radical-inner .downloads-page-hero h1,
  .radical-inner .legal-hero h1 { font-size: 40px; }
  .radical-inner .about-intro { grid-template-columns: 1fr; gap: 24px; padding: 72px 0 48px; }
  .radical-inner .about-intro h2 { font-size: 30px; }
  .radical-inner .about-intro .story-copy { padding-top: 0; }
  .radical-inner .about-values { padding-bottom: 72px; }
  .radical-inner .resource-layout,
  .radical-inner .downloads-page-main { padding: 44px 0 72px; }
  .radical-inner .legal-wrap { padding-bottom: 72px; }
  .radical-inner .resource-content,
  .radical-inner .legal-card,
  .radical-inner .custom-page-content { padding: 26px; }
  .radical-inner .custom-page-content { margin-top: 44px; margin-bottom: 72px; }
  .radical-inner .site-download-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
  body.template-pearl.home-page .collection-nav,
  body.template-pearl.home-page .radical-label,
  body.template-pearl.home-page .radical h1,
  body.template-pearl.home-page .radical-lead,
  body.template-pearl.home-page .radical-actions,
  .template-pearl .pearl-watch { animation: none !important; opacity: 1 !important; transform: none !important; }
  .template-pearl .radical-stage::before,
  .template-pearl .radical-stage b::after,
  .template-pearl .radical-stage mark,
  .template-pearl .radical-actions a::after,
  .template-pearl .pearl-grid,
  .template-pearl .pearl-beam { animation: none !important; }
}
