:root {
  --orange: #ff6900;
  --orange-dark: #d84f00;
  --ink: #111111;
  --charcoal: #1b1b1b;
  --muted: #676767;
  --line: #dddddd;
  --soft: #f4f4f4;
  --white: #ffffff;
  --shadow-sm: 0 10px 30px rgba(17, 17, 17, 0.08);
  --shadow-lg: 0 28px 70px rgba(17, 17, 17, 0.14);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --container: 1240px;
  --header-height: 80px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  max-width: 100%;
  overflow-x: clip;
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

img,
video {
  display: block;
  max-width: 111%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  touch-action: manipulation;
}

button {
  color: inherit;
}

[hidden] {
  display: none !important;
}

::selection {
  color: var(--white);
  background: var(--orange);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: -80px;
  left: 16px;
  padding: 12px 18px;
  border-radius: 0 0 12px 12px;
  color: var(--white);
  background: var(--ink);
  transition: top .2s ease;
}

.skip-link:focus {
  top: 0;
}

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

.section {
  padding: 50px 0;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

h1 {
  margin-bottom: 28px;
  font-size: clamp(3.2rem, 4.3vw, 4.5rem);
  font-weight: 780;
  line-height: 1.1;
  letter-spacing: -.065em;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 760;
  line-height: 1.08;
  letter-spacing: -.055em;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.35;
  letter-spacing: -.025em;
}

p {
  text-wrap: pretty;
}

.section-label,
.hero-label {
  margin-bottom: 18px;
  color: var(--orange);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0em;
  text-transform: uppercase;
}

.hand-underline {
  position: relative;
  display: inline-block;
}

.hand-underline::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: -.13em;
  left: 0;
  height: .18em;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 420 20'%3E%3Cpath d='M5 13C109 2 224 19 415 6' fill='none' stroke='%23ff6900' stroke-width='7' stroke-linecap='round'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
}

.button {
  position: relative;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
  padding: 12px 22px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  background: transparent;
  font-size: .94rem;
  font-weight: 760;
  line-height: 1.2;
  cursor: pointer;
  transition: color .25s ease, background-color .25s ease, border-color .25s ease, transform .25s var(--ease), box-shadow .25s ease;
}

.button svg,
.text-link svg,
.article-arrow svg,
.feature-tab svg,
.rail-controls svg,
.back-to-top svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .25s var(--ease);
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(17, 17, 17, .16);
}

.button:hover svg {
  transform: translateX(4px);
}

.button:active {
  transform: translateY(-1px) scale(.99);
}

.button:focus-visible,
.feature-tab:focus-visible,
.rail-controls button:focus-visible,
.back-to-top:focus-visible,
.campaign-dismiss:focus-visible,
.menu-toggle:focus-visible {
  outline: 3px solid rgba(255, 105, 0, .36);
  outline-offset: 4px;
}

.button--primary {
  color: var(--white);
  border-color: var(--orange);
  background: var(--orange);
}

.button--primary:hover {
  border-color: var(--ink);
  background: var(--ink);
}

.button--outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, .78);
  background: rgba(17, 17, 17, .14);
  backdrop-filter: blur(8px);
}

.button--outline-light:hover {
  color: var(--ink);
  border-color: var(--white);
  background: var(--white);
}

.button--large {
  min-height: 58px;
  padding-inline: 28px;
  font-size: 1rem;
}

/* Video modal */
.video-modal {
  position: fixed;
  z-index: 1200;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 32px;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 8, .88);
  backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity .24s ease;
}

.video-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(1040px, 100%);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 24px;
  color: var(--white);
  background: #101010;
  box-shadow: 0 32px 90px rgba(0, 0, 0, .48);
  opacity: 0;
  transform: translateY(24px) scale(.975);
  transition: opacity .24s ease, transform .32s var(--ease);
}

.video-modal.is-open .video-modal-backdrop,
.video-modal.is-open .video-modal-dialog {
  opacity: 1;
}

.video-modal.is-open .video-modal-dialog {
  transform: none;
}

.video-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 24px;
}

.video-modal-header .section-label {
  margin-bottom: 4px;
}

.video-modal-header h2 {
  margin: 0;
  font-size: clamp(1.45rem, 3vw, 2.3rem);
}

.video-modal-close {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 50%;
  color: var(--white);
  background: transparent;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  transition: color .2s ease, border-color .2s ease, background-color .2s ease, transform .2s ease;
}

.video-modal-close:hover {
  color: var(--ink);
  border-color: var(--white);
  background: var(--white);
  transform: rotate(8deg);
}

.video-modal-close:focus-visible {
  outline: 3px solid rgba(255, 105, 0, .58);
  outline-offset: 4px;
}

.video-modal-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
}

.video-modal-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  color: var(--orange);
  font-weight: 750;
}

.text-link:hover svg {
  transform: translateX(5px);
}

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  color: var(--ink);
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(17, 17, 17, .06);
  backdrop-filter: blur(16px);
  transition: height .25s ease, box-shadow .25s ease, background-color .25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 30px rgba(17, 17, 17, .08);
}

.reading-progress {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  overflow: hidden;
}

.reading-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--orange);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 148px;
  height: auto;
}

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

.primary-nav a {
  position: relative;
  padding: 8px 0;
  font-size: .91rem;
  font-weight: 680;
  white-space: nowrap;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: var(--orange);
  transition: right .28s var(--ease);
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after,
.primary-nav a[aria-current="page"]::after {
  right: 0;
}

.primary-nav a[aria-current="page"] {
  color: var(--orange);
}

.header-cta {
  flex: 0 0 auto;
  min-height: 46px;
  padding-inline: 20px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 0;
  border-radius: 12px;
  background: var(--soft);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  border-radius: 2px;
  background: currentColor;
  transition: transform .25s ease, opacity .25s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  min-height: max(760px, 100svh);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding-top: var(--header-height);
  color: var(--white);
  background: var(--ink);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 10, 10, .78) 0%, rgba(10, 10, 10, .58) 35%, rgba(10, 10, 10, .18) 70%, rgba(10, 10, 10, .04) 100%),
    linear-gradient(0deg, rgba(10, 10, 10, .52) 0%, transparent 48%);
}

.hero-accent {
  position: absolute;
  right: -12vw;
  bottom: -32vw;
  width: 74vw;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 105, 0, .95) 0%, rgba(255, 105, 0, .44) 37%, transparent 69%);
  filter: blur(6px);
  mix-blend-mode: screen;
  opacity: .8;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 96px 0 152px;
}

.hero-content>* {
  max-width: 800px;
}

.hero-label {
  color: var(--white);
  font-size: .92rem;
  text-transform: none;
}

.hero h1 {
  max-width: 880px;
  text-shadow: 0 5px 30px rgba(0, 0, 0, .28);
}

.hero .hand-underline::after {
  z-index: 0;
  opacity: .95;
}

.hero .hand-underline {
  z-index: 1;
}

.hero-lead {
  margin-bottom: 38px;
  color: rgba(255, 255, 255, .84);
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-utility {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 34px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.scroll-cue {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, .78);
  font-size: .78rem;
  letter-spacing: .08em;
}

.scroll-cue svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  animation: cue-bounce 1.8s ease-in-out infinite;
}

@keyframes cue-bounce {
  50% {
    transform: translateY(5px);
  }
}

/* Inner-page hero */
.page-hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding-top: var(--header-height);
  color: var(--white);
  background: var(--ink);
}

.page-hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-hero__fade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 9, 9, .98) 0%, rgba(9, 9, 9, .9) 34%, rgba(9, 9, 9, .42) 57%, rgba(9, 9, 9, .06) 82%),
    linear-gradient(0deg, rgba(255, 105, 0, .28) 0%, rgba(9, 9, 9, .04) 32%, transparent 58%);
}

.page-hero__content {
  position: relative;
  z-index: 2;
  padding: 110px 0 104px;
}

.page-hero__content>* {
  max-width: 790px;
}

.page-hero__content h1 {
  text-shadow: 0 5px 28px rgba(0, 0, 0, .28);
}

.page-hero__content>p:not(.hero-label) {
  margin-bottom: 34px;
  color: rgba(255, 255, 255, .84);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  line-height: 1.75;
}

.page-hero__content .hero-label {
  color: var(--white);
  font-size: 1.6rem;
  text-transform: none;
}

.page-hero__content .hand-underline {
  z-index: 1;
}

.page-hero__content .hand-underline::after {
  z-index: 0;
}

.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* About */
.page-hero--about .page-hero__media {
  object-position: center;
}

.page-hero--about .page-hero__fade {
  background: linear-gradient(90deg, rgba(9, 9, 9, .93) 0%, rgba(9, 9, 9, .77) 38%, rgba(9, 9, 9, .2) 68%, rgba(9, 9, 9, .04) 100%);
}

.about-origin {
  background: var(--white);
}

.about-origin__layout {
  display: block;
}

.about-origin__copy {
  max-width: 980px;
  padding: 12px 0 12px clamp(26px, 4vw, 58px);
  border-left: 3px solid var(--orange);
}

.about-origin__copy h2 {
  max-width: 900px;
}

.about-origin__copy>p:not(.section-label):not(.about-lead) {
  max-width: 780px;
}

.about-origin__copy>p:not(.section-label) {
  color: var(--muted);
}

.about-origin__copy .about-lead {
  color: var(--ink);
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  font-weight: 680;
  line-height: 1.65;
}

.about-question {
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(118deg, #0c0c0c 0%, #171717 64%, #4a1d00 100%);
}

.about-question__layout {
  display: block;
}

.about-question__layout>.section-label {
  margin-bottom: 30px;
}

.about-question__layout h2 {
  max-width: 920px;
  margin-bottom: 34px;
}

.about-question__body {
  max-width: 920px;
}

.about-question__body p {
  color: rgba(255, 255, 255, .7);
}

.about-question__layout blockquote {
  margin: 38px 0 0;
  padding: 36px 0 8px 52px;
  border-left: 4px solid var(--orange);
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 3vw, 2.8rem);
  line-height: 1.55;
}

.about-voices {
  background: var(--soft);
}

.about-voice-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.about-voice-grid article {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  padding: 30px 28px;
  border-right: 1px solid var(--line);
  background: var(--white);
}

.about-voice-grid article:last-child {
  border-right: 0;
}

.about-voice-grid span {
  margin-bottom: 15px;
  color: var(--orange);
  font-size: 1.3rem;
  font-weight: 820;
  letter-spacing: .12em;
}

.about-voice-grid p {
  color: var(--ink);
  font-size: clamp(1.15rem, 1.7vw, 1.5rem);
  font-weight: 700;
  line-height: 1.55;
}

.about-voice-grid small {
  margin-top: auto;
  color: var(--muted);
}

.about-bridge {
  max-width: 980px;
  margin: 74px auto 0;
  text-align: center;
}

.about-bridge p {
  color: var(--muted);
  font-size: 1.05rem;
}

.about-bridge strong {
  display: block;
  margin-top: 24px;
  font-size: clamp(1.4rem, 2.7vw, 2.35rem);
  line-height: 1.5;
}

.about-mission {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.about-mission::before,
.about-mission::after {
  position: absolute;
  border: 1px solid rgba(255, 105, 0, .28);
  border-radius: 50%;
  content: "";
}

.about-mission::before {
  width: 700px;
  height: 700px;
  right: -230px;
  top: -260px;
}

.about-mission::after {
  width: 430px;
  height: 430px;
  right: -95px;
  top: -125px;
}

.about-mission__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 46px 75px;
  align-items: start;
}

.about-mission__quote {
  padding-left: 38px;
  border-left: 3px solid var(--orange);
}

.about-mission__quote blockquote {
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  line-height: 1.5;
}

.about-mission__quote cite {
  display: block;
  color: rgba(255, 255, 255, .58);
  font-size: .84rem;
  font-style: normal;
  font-weight: 720;
}

.about-mission__quote p {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .68);
  font-size: .92rem;
}

.about-mission__message {
  grid-column: 2;
  max-width: 790px;
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: 1.08rem;
}

.about-journey {
  background: var(--white);
}

.about-journey__layout {
  display: block;
}

.about-journey__copy p:not(.section-label) {
  color: var(--muted);
}

.about-belief-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--ink);
}

.about-belief-grid article {
  min-height: 410px;
  display: flex;
  flex-direction: column;
  padding: 34px 28px;
  border-bottom: 1px solid var(--line);
}

.about-belief-grid article+article {
  border-left: 1px solid var(--line);
}

.about-belief-grid span {
  color: var(--orange);
  font-size: .76rem;
  font-weight: 820;
  letter-spacing: .08em;
}

.about-belief-grid h3 {
  margin: auto 0 22px;
  font-size: clamp(1.45rem, 2.3vw, 2.1rem);
}

.about-belief-grid p {
  margin: 0;
  color: var(--muted);
}

/* Ripple brand model */
.ripple-model-section {
  overflow: hidden;
  background: var(--white);
}

.ripple-model-layout {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 72px;
  align-items: center;
}

.ripple-model-copy>p:not(.section-label) {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.04rem;
}

.ripple-model-copy blockquote {
  position: relative;
  margin: 38px 0 32px;
  padding: 28px 0 28px 34px;
  border-left: 4px solid var(--orange);
}

.ripple-model-copy blockquote::before {
  content: "“";
  position: absolute;
  top: -28px;
  left: 18px;
  color: rgba(255, 105, 0, .12);
  font-family: Georgia, serif;
  font-size: 8rem;
  line-height: 1;
}

.ripple-model-copy blockquote p {
  position: relative;
  margin-bottom: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  line-height: 1.5;
}

.ripple-model-copy blockquote cite {
  color: var(--muted);
  font-size: .82rem;
  font-style: normal;
  font-weight: 720;
  letter-spacing: .05em;
}

.ripple-paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 36px;
}

.ripple-paths>div {
  padding: 20px 0;
  border-top: 2px solid var(--ink);
}

.ripple-paths>div:last-child {
  border-color: var(--orange);
}

.ripple-paths span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.ripple-paths b {
  display: block;
  font-size: 1rem;
  line-height: 1.6;
}

.ripple-map {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  min-width: 0;
}

.ripple-map::before {
  content: "";
  position: absolute;
  inset: 7%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 105, 0, .11) 0%, rgba(255, 105, 0, .035) 54%, transparent 72%);
  filter: blur(8px);
}

.ripple-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 105, 0, .3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .64) inset;
  animation: ripple-spin-cw 60s linear infinite, ripple-breathe 3.5s ease-in-out infinite;
  transform-origin: center center;
}

.ripple-ring::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -5px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 7px rgba(255, 105, 0, .12);
  animation: ripple-spin-ccw 60s linear infinite;
  transform-origin: center center;
}

.ripple-ring--5 {
  width: 92%;
  animation: ripple-spin-cw 60s linear infinite, ripple-breathe 3.5s ease-in-out infinite 2.4s;
}

.ripple-ring--5::after {
  animation-name: ripple-spin-ccw;
  animation-duration: 60s;
}

.ripple-ring--4 {
  width: 76%;
  animation: ripple-spin-ccw 50s linear infinite, ripple-breathe 3.5s ease-in-out infinite 1.8s;
}

.ripple-ring--4::after {
  animation-name: ripple-spin-cw;
  animation-duration: 50s;
}

.ripple-ring--3 {
  width: 60%;
  animation: ripple-spin-cw 42s linear infinite, ripple-breathe 3.5s ease-in-out infinite 1.2s;
}

.ripple-ring--3::after {
  animation-name: ripple-spin-ccw;
  animation-duration: 42s;
}

.ripple-ring--2 {
  width: 44%;
  animation: ripple-spin-ccw 36s linear infinite, ripple-breathe 3.5s ease-in-out infinite 0.6s;
}

.ripple-ring--2::after {
  animation-name: ripple-spin-cw;
  animation-duration: 36s;
}

.ripple-ring--1 {
  width: 28%;
  animation: ripple-spin-cw 30s linear infinite, ripple-breathe 3.5s ease-in-out infinite 0s;
}

.ripple-ring--1::after {
  animation-name: ripple-spin-ccw;
  animation-duration: 30s;
}

@keyframes ripple-spin-cw {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes ripple-spin-ccw {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}

@keyframes ripple-breathe {

  0%,
  100% {
    border-width: 1px;
    border-color: rgba(255, 105, 0, .2);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, .64) inset, 0 0 0 0 rgba(255, 105, 0, 0);
  }

  50% {
    border-width: 3px;
    border-color: rgba(255, 105, 0, .55);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, .64) inset, 0 0 12px 2px rgba(255, 105, 0, .15);
  }
}

@keyframes ripple-core-pulse {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 18px 44px rgba(255, 105, 0, .32);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.06);
    box-shadow: 0 18px 52px rgba(255, 105, 0, .48);
  }
}

@media (prefers-reduced-motion: reduce) {

  .ripple-ring,
  .ripple-ring::after,
  .ripple-core {
    animation: none !important;
  }
}

.ripple-core {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: 18%;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 18px 44px rgba(255, 105, 0, .32);
  text-align: center;
  transform: translate(-50%, -50%);
  animation: ripple-core-pulse 4s ease-in-out infinite;
}

.ripple-core span {
  font-size: clamp(.82rem, 1.5vw, 1.1rem);
  font-weight: 820;
}

.ripple-core b {
  font-size: clamp(.6rem, .9vw, .75rem);
  font-weight: 650;
}

.ripple-labels {
  position: absolute;
  z-index: 4;
  inset: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ripple-label {
  position: absolute;
  width: min(190px, 30%);
  padding: 13px 15px;
  border-top: 2px solid var(--orange);
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 12px 28px rgba(17, 17, 17, .08);
  backdrop-filter: blur(8px);
}

.ripple-label span {
  display: block;
  margin-bottom: 3px;
  color: var(--orange);
  font-size: 1.1rem;
  font-weight: 820;
  letter-spacing: .1em;
}

.ripple-label b {
  display: block;
  font-size: 1.4rem;
}

.ripple-label small {
  display: block;
  color: var(--muted);
  font-size: 1.2rem;
  line-height: 1.45;
}

.ripple-label--interest {
  top: 1%;
  left: 50%;
  transform: translateX(-50%);
}

.ripple-label--activity {
  top: 25%;
  right: -1%;
}

.ripple-label--people {
  right: 3%;
  bottom: 7%;
}

.ripple-label--trust {
  bottom: 9%;
  left: 2%;
}

.ripple-label--community {
  top: 27%;
  left: -2%;
}

/* Brand quote */
.ripple-quote-section {
  position: relative;
  overflow: hidden;
  padding: 132px 0;
  color: var(--white);
  background: #111111;
}

.ripple-quote-section::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(820px, 78vw);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 105, 0, .24);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(255, 105, 0, .055), 0 0 0 170px rgba(255, 105, 0, .025);
  content: "";
  transform: translate(-50%, -50%);
}

.ripple-quote {
  position: relative;
  z-index: 1;
  text-align: center;
}

.ripple-quote .section-label {
  color: var(--orange);
}

.ripple-quote blockquote {
  max-width: 1010px;
  margin: 0 auto;
}

.ripple-quote blockquote p {
  margin-bottom: 30px;
  font-size: clamp(2.25rem, 3.75vw, 4.45rem);
  font-weight: 720;
  line-height: 1.15;
  letter-spacing: -.045em;
}

.ripple-quote blockquote footer {
  color: rgba(255, 255, 255, .7);
  font-size: .98rem;
  font-weight: 650;
  letter-spacing: .04em;
}

.ripple-quote blockquote cite {
  color: rgba(255, 255, 255, .44);
  font-style: normal;
  font-weight: 500;
}

.ripple-quote__translation {
  max-width: 820px;
  margin: 34px auto 0;
  color: rgba(255, 255, 255, .72);
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  line-height: 1.85;
}

.ripple-quote__message {
  max-width: 760px;
  margin: 28px auto 0;
  color: rgba(255, 255, 255, .58);
  font-size: .98rem;
  line-height: 1.85;
}

/* Campaign */
.campaign {
  position: relative;
  z-index: 4;
  margin-top: 0;
  padding: 120px 0;
  background: var(--white);
}

.campaign.is-dismissing {
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity .28s ease, transform .28s ease;
}

.campaign-panel {
  position: relative;
  overflow: visible;
  padding: 15px 40px 25px;
  border: 1px solid rgba(17, 17, 17, .08);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.campaign-heading {
  max-width: 920px;
  margin: 0 auto 18px;
}

.campaign-heading p:last-child {
  max-width: 680px;
  margin: 0 auto;
  color: var(--muted);
}

.campaign-heading h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.campaign-types {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin: 28px 0 30px;
}

.campaign-types span {
  min-height: 74px;
  display: grid;
  place-items: center;
  padding: 12px 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fbfbfb;
  font-size: .92rem;
  font-weight: 720;
  transition: color .2s ease, border-color .2s ease, background-color .2s ease, transform .2s ease;
}

.campaign-types span:hover {
  color: var(--orange);
  border-color: var(--orange);
  background: #fff7f1;
  transform: translateY(-4px);
}

.campaign-offer {
  display: grid;
  justify-items: center;
  gap: 6px;
  max-width: 880px;
  margin: 0 auto 30px;
}

.campaign-offer p {
  margin: 0;
}

.campaign-offer__intro {
  color: var(--ink);
  font-size: clamp(.98rem, 1.5vw, 1.2rem);
  font-weight: 760;
}

.campaign-offer__free {
  color: var(--orange);
  font-size: clamp(1.35rem, 2.45vw, 2.15rem);
  font-weight: 850;
  letter-spacing: -.025em;
}

.campaign-offer__condition {
  color: var(--muted);
  font-size: clamp(.9rem, 1.3vw, 1.05rem);
  font-weight: 650;
}

.campaign-offer__value {
  margin-top: 8px !important;
  color: var(--orange);
  font-size: clamp(1.55rem, 3vw, 2.65rem);
  font-weight: 900;
  letter-spacing: -.04em;
}

.campaign-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.campaign-button--outline {
  color: var(--orange);
  border-color: var(--orange);
  background: var(--white);
}

.campaign-button--outline:hover {
  color: var(--white);
  background: var(--orange);
}

.campaign-mascot {
  position: absolute;
  right: 42px;
  top: -138px;
  width: 175px;
  height: 175px;
  object-fit: contain;
  object-position: center top;
}

.campaign-dismiss {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: color .2s ease, background-color .2s ease, transform .2s ease;
}

.campaign-dismiss:hover {
  color: var(--white);
  background: var(--ink);
  transform: rotate(10deg);
}

/* Section introductions */
.section-intro {
  max-width: 870px;
  margin-bottom: 54px;
}

.section-intro>p:last-child {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
}

.section-intro--row {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
}

.section-intro--row h2 {
  margin-bottom: 0;
}

/* Interactive platform features */
.platform-section {
  padding-top: 150px;
}

.feature-experience {
  display: grid;
  grid-template-columns: minmax(300px, .7fr) minmax(0, 1.3fr);
  gap: 40px;
  align-items: stretch;
}

.feature-tabs {
  display: flex;
  flex-direction: column;
}

.feature-tab {
  position: relative;
  min-height: 118px;
  display: grid;
  grid-template-columns: 48px 1fr 24px;
  align-items: center;
  gap: 18px;
  width: 100%;
  padding: 22px 12px 22px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: color .25s ease, padding-left .25s var(--ease);
}

.feature-tab::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -24px;
  width: 4px;
  transform: scaleY(0);
  border-radius: 4px;
  background: var(--orange);
  transition: transform .25s var(--ease);
}

.feature-tab:hover,
.feature-tab.is-active {
  color: var(--orange);
  padding-left: 10px;
}

.feature-tab.is-active::before {
  transform: scaleY(.66);
}

.feature-tab b {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 1.35rem;
  letter-spacing: -.025em;
}

.feature-tab small {
  color: var(--muted);
  font-size: .88rem;
}

.feature-index {
  color: var(--orange);
  font-size: 1.3rem;
  font-weight: 780;
  letter-spacing: .08em;
}

.feature-tab svg {
  opacity: 0;
  transform: translateX(-8px);
}

.feature-tab:hover svg,
.feature-tab.is-active svg {
  opacity: 1;
  transform: translateX(0);
}

.feature-panels {
  min-width: 0;
  min-height: 700px;
}

.feature-panel {
  position: relative;
  height: 100%;
  min-height: 700px;
  overflow: visible;
  border-radius: 0;
  color: var(--white);
  background: transparent;
  box-shadow: none;
}

.feature-panel.is-active {
  animation: panel-in .55s var(--ease) both;
}

@keyframes panel-in {
  from {
    opacity: 0;
    transform: translateY(18px) scale(.985);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.feature-panel::after {
  display: none;
}

.feature-panel img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 90%;
  max-height: 700px;
  object-fit: contain;
  object-position: center bottom;
}

.feature-panel .feature-panel-image--compact {
  width: 100%;
  height: 90%;
  margin: 0px auto 0;
  height: calc(100% - 46px);
  object-fit: contain;
}

.feature-panel .feature-panel-image--square {
  width: 100%;
  height: 85%;
  aspect-ratio: 1 / 1;
  margin: 0px auto 0;
  object-fit: contain;
  object-position: center;
}

.feature-panel .feature-panel-image--wide {
  width: 100%;
  height: 80%;
  max-height: 560px;
  margin: 0px auto 0;
  object-fit: contain;
}

.feature-copy {
  position: absolute;
  z-index: 3;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 18px;
  background: rgba(10, 10, 10, .74);
  backdrop-filter: blur(14px);
}

.feature-copy p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: .92rem;
}

.feature-copy a {
  flex: 0 0 auto;
  color: var(--orange);
  font-size: .88rem;
  font-weight: 760;
}

/* Platform features page */
.feature-overview-section {
  padding-bottom: 50px;
}

.community-first-path {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 12px 0 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.community-first-path article {
  min-width: 0;
  min-height: 238px;
  padding: 34px 34px 36px;
  border-right: 1px solid var(--line);
}

.community-first-path article:first-child {
  padding-left: 0;
}

.community-first-path article:last-child {
  padding-right: 0;
  border-right: 0;
}

.community-first-path span {
  display: block;
  margin-bottom: 15px;
  color: var(--orange);
  font-size: 1.3rem;
  font-weight: 820;
  letter-spacing: .12em;
}

.community-first-path h3 {
  margin-bottom: 12px;
  font-size: clamp(1.42rem, 2.1vw, 2rem);
  letter-spacing: -.025em;
}

.community-first-path p {
  max-width: 360px;
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.community-first-note {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin: 24px 0 72px;
  padding: 18px 22px;
  border-left: 3px solid var(--orange);
  background: #fff7f1;
}

.community-first-note strong {
  flex: 0 0 auto;
  color: var(--ink);
}

.community-first-note span {
  color: var(--muted);
}

.feature-tool-intro {
  max-width: 760px;
  margin-bottom: 32px;
}

.feature-tool-intro h3 {
  margin-bottom: 14px;
  font-size: clamp(1.65rem, 2.8vw, 2.6rem);
}

.feature-tool-intro>p:last-child {
  margin: 0;
  color: var(--muted);
}

.feature-jump-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-jump-list a {
  position: relative;
  min-height: 174px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 26px 24px;
  border-right: 1px solid var(--line);
  transition: color .25s ease, background-color .25s ease, transform .3s var(--ease);
}

.feature-jump-list a:last-child {
  border-right: 0;
}

.feature-jump-list a::after {
  content: "";
  position: absolute;
  right: 24px;
  bottom: 22px;
  width: 34px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(.42);
  transform-origin: right;
  transition: transform .3s var(--ease);
}

.feature-jump-list a:hover {
  color: var(--orange);
  background: #fff7f1;
  transform: translateY(-6px);
}

.feature-jump-list a:hover::after {
  transform: scaleX(1);
}

.feature-jump-list span {
  margin-bottom: 15px;
  color: var(--orange);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.feature-jump-list b {
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 1.3rem;
  letter-spacing: -.02em;
}

.feature-jump-list small {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.55;
}

.feature-role-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 64px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.feature-role-split article {
  min-width: 0;
  padding: 42px 48px 42px 0;
}

.feature-role-split article+article {
  padding-right: 0;
  padding-left: 48px;
  border-left: 1px solid var(--line);
}

.feature-role-split h3 {
  max-width: 510px;
  margin-bottom: 24px;
  font-size: clamp(1.45rem, 2.4vw, 2.15rem);
}

.feature-role-split ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-role-split li {
  position: relative;
  padding: 10px 0 10px 26px;
  border-top: 1px solid rgba(17, 17, 17, .1);
  color: var(--muted);
}

.feature-role-split li::before {
  content: "✓";
  position: absolute;
  top: 10px;
  left: 0;
  color: var(--orange);
  font-weight: 900;
}

.feature-story {
  padding: 80px 0;
  scroll-margin-top: calc(var(--header-height) + 20px);
}

.feature-story--soft {
  background: var(--soft);
}

.feature-story--dark {
  color: var(--white);
  background: var(--ink);
}

.feature-story__layout {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 82px;
  align-items: center;
}

.feature-story__layout--reverse {
  grid-template-columns: 1.18fr .82fr;
}

.feature-story__copy {
  position: relative;
  z-index: 1;
}

.feature-story__number {
  position: absolute;
  z-index: -1;
  top: -98px;
  left: -10px;
  color: rgba(255, 105, 0, .1);
  font-size: clamp(7rem, 12vw, 11rem);
  font-weight: 820;
  line-height: 1;
  letter-spacing: -.08em;
}

.feature-story__copy h2 {
  font-size: clamp(2.45rem, 3.5vw, 4rem);
}

.feature-story__lead {
  max-width: 610px;
  color: var(--muted);
  font-size: 1.08rem;
}

.feature-story--dark .feature-story__lead {
  color: rgba(255, 255, 255, .7);
}

.plain-benefits {
  display: grid;
  gap: 0;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.plain-benefits li {
  position: relative;
  padding: 15px 0 15px 31px;
  border-top: 1px solid var(--line);
}

.plain-benefits li:last-child {
  border-bottom: 1px solid var(--line);
}

.plain-benefits li::before {
  content: "";
  position: absolute;
  top: 25px;
  left: 2px;
  width: 13px;
  height: 7px;
  border-bottom: 2px solid var(--orange);
  border-left: 2px solid var(--orange);
  transform: rotate(-45deg);
}

.feature-story--dark .plain-benefits li {
  border-color: rgba(255, 255, 255, .14);
}

.feature-detail-disclosure {
  margin-top: 32px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-detail-disclosure>summary {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  list-style: none;
  color: var(--ink);
  font-weight: 780;
  cursor: pointer;
  transition: color .25s ease;
}

.feature-detail-disclosure>summary::-webkit-details-marker {
  display: none;
}

.feature-detail-disclosure>summary:hover {
  color: var(--orange);
}

.feature-detail-disclosure>summary i {
  position: relative;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.feature-detail-disclosure>summary i::before,
.feature-detail-disclosure>summary i::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 1.5px;
  background: currentColor;
  transform: translate(-50%, -50%);
}

.feature-detail-disclosure>summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform .25s ease;
}

.feature-detail-disclosure[open]>summary {
  color: var(--orange);
}

.feature-detail-disclosure[open]>summary i::after {
  transform: translate(-50%, -50%);
}

.feature-detail-disclosure .plain-benefits {
  margin: 0 0 12px;
}

.feature-detail-disclosure .plain-benefits li {
  padding-block: 14px;
}

.feature-detail-disclosure .plain-benefits li::before {
  top: 24px;
}

.feature-detail-disclosure .plain-benefits b {
  display: block;
  margin-bottom: 3px;
}

.feature-detail-disclosure .plain-benefits small {
  display: block;
  color: var(--muted);
  line-height: 1.6;
}

.feature-detail-disclosure--dark {
  border-color: rgba(255, 255, 255, .16);
}

.feature-detail-disclosure--dark>summary {
  color: var(--white);
}

.feature-detail-disclosure--dark .plain-benefits small {
  color: rgba(255, 255, 255, .62);
}

.feature-detail-group {
  margin-top: 32px;
}

.feature-accordion {
  margin: 0 0 18px;
  border-top: 1px solid var(--line);
}

.feature-accordion__item {
  border-bottom: 1px solid var(--line);
}

.feature-accordion__item>summary {
  min-height: 58px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 26px;
  align-items: center;
  gap: 16px;
  padding: 12px 2px;
  color: var(--ink);
  list-style: none;
  cursor: pointer;
  transition: color .2s ease, padding-left .2s ease;
}

.feature-accordion__item>summary::-webkit-details-marker {
  display: none;
}

.feature-accordion__item>summary:hover,
.feature-accordion__item[open]>summary {
  padding-left: 8px;
  color: var(--orange);
}

.feature-accordion__item>summary span {
  font-size: .94rem;
  font-weight: 780;
}

.feature-accordion__item>summary i {
  position: relative;
  width: 24px;
  height: 24px;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.feature-accordion__item>summary i::before,
.feature-accordion__item>summary i::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 1.5px;
  background: currentColor;
  transform: translate(-50%, -50%);
}

.feature-accordion__item>summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform .2s ease;
}

.feature-accordion__item[open]>summary i::after {
  transform: translate(-50%, -50%);
}

.feature-accordion__item>p {
  margin: -2px 40px 18px 2px;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.72;
}

.feature-detail-group--dark .feature-accordion,
.feature-detail-group--dark .feature-accordion__item {
  border-color: rgba(255, 255, 255, .14);
}

.feature-detail-group--dark .feature-accordion__item>summary {
  color: var(--white);
}

.feature-detail-group--dark .feature-accordion__item>summary:hover,
.feature-detail-group--dark .feature-accordion__item[open]>summary {
  color: var(--orange);
}

.feature-detail-group--dark .feature-accordion__item>p {
  color: rgba(255, 255, 255, .66);
}

.video-modal-trigger-btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin: 2px 0 20px;
  padding: 12px 19px;
  border: 1px solid var(--orange);
  border-radius: 999px;
  color: var(--orange);
  background: transparent;
  font: inherit;
  font-size: .88rem;
  font-weight: 780;
  cursor: pointer;
  transition: color .2s ease, background-color .2s ease, transform .2s ease;
}

.video-modal-trigger-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.video-modal-trigger-btn:hover {
  color: var(--white);
  background: var(--orange);
  transform: translateY(-2px);
}

.video-modal-trigger-btn:focus-visible {
  outline: 3px solid rgba(255, 105, 0, .35);
  outline-offset: 3px;
}

.video-modal-trigger-btn--dark {
  color: var(--white);
  border-color: rgba(255, 255, 255, .42);
}

.video-modal-trigger-btn--dark:hover {
  border-color: var(--orange);
}

.feature-story__media {
  position: relative;
  min-width: 0;
  margin: 0;
}

.feature-story__media::before {
  content: "";
  position: absolute;
  z-index: 0;
  right: -5%;
  bottom: -5%;
  width: 52%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 105, 0, .42), transparent 68%);
  filter: blur(16px);
}

.feature-story__media img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 720px;
  object-fit: contain;
  filter: drop-shadow(0 26px 34px rgba(17, 17, 17, .2));
}

.feature-story__media--wide img {
  max-height: 650px;
}

.feature-story__media--compact img {
  width: min(76%, 520px);
  margin-inline: auto;
}

/* Activity notifications: enlarge the artwork itself without distorting its ratio. */
#message .feature-story__media--compact img {
  transform: scale(1.3);
  transform-origin: center;
}

.feature-story--dark .feature-story__media img {
  filter: drop-shadow(0 28px 38px rgba(0, 0, 0, .44));
}

.feature-summary {
  color: var(--white);
  background: linear-gradient(118deg, #171717 0%, #0d0d0d 64%, #4b1e00 100%);
}

.feature-summary__layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.feature-flow {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: feature-flow;
}

.feature-flow li {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 20px;
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, .15);
}

.feature-flow li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, .15);
}

.feature-flow li>span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 50%;
  color: var(--orange);
  font-size: .82rem;
  font-weight: 800;
}

.feature-flow b {
  display: block;
  margin-bottom: 4px;
  font-size: 1.08rem;
}

.feature-flow small {
  color: rgba(255, 255, 255, .62);
  font-size: .92rem;
}

/* Relationship */
.relationship-section {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background: #f7f5f1;
}

.relationship-section::before {
  content: "";
  position: absolute;
  width: 540px;
  aspect-ratio: 1;
  left: -280px;
  bottom: -310px;
  border: 1px solid rgba(255, 105, 0, .18);
  border-radius: 50%;
  box-shadow: 0 0 0 72px rgba(255, 105, 0, .035), 0 0 0 144px rgba(255, 105, 0, .025);
  pointer-events: none;
}

.relationship-layout {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 76px;
  align-items: center;
}

.relationship-copy {
  position: relative;
  z-index: 1;
}

.relationship-copy>p:not(.section-label) {
  max-width: 620px;
  color: rgba(17, 17, 17, .68);
}

.relationship-steps {
  display: grid;
  gap: 0;
  margin: 36px 0;
  padding: 0;
  list-style: none;
}

.relationship-steps li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid rgba(17, 17, 17, .14);
}

.relationship-steps li:last-child {
  border-bottom: 1px solid rgba(17, 17, 17, .14);
}

.relationship-steps li>span {
  color: var(--orange);
  font-size: .1.3rem;
  font-weight: 800;
  letter-spacing: .1em;
}

.relationship-steps b {
  display: block;
  margin-bottom: 2px;
}

.relationship-steps small {
  color: rgba(17, 17, 17, .58);
}

.relationship-media {
  position: relative;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.relationship-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  border-radius: 0;
}

.media-note {
  position: absolute;
  z-index: 2;
  padding: 9px 14px;
  border: 1px solid rgba(17, 17, 17, .12);
  border-radius: 999px;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(10px);
  color: var(--ink);
  box-shadow: 0 10px 28px rgba(17, 17, 17, .12);
  font-size: .78rem;
  font-weight: 720;
}

.media-note::before {
  content: "";
  width: 8px;
  height: 8px;
  display: inline-block;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 6px rgba(255, 105, 0, .12);
}

.media-note--top {
  top: 18%;
  left: 2%;
}

.media-note--bottom {
  right: 3%;
  bottom: 14%;
}

/* Activity rail */
.audience-section {
  background: var(--soft);
}

.rail-controls {
  display: flex;
  gap: 10px;
}

.rail-controls button {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
  transition: color .2s ease, border-color .2s ease, background-color .2s ease, transform .2s ease;
}

.rail-controls button:hover {
  color: var(--white);
  border-color: var(--orange);
  background: var(--orange);
  transform: translateY(-3px);
}

.activity-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(310px, 33.33%);
  gap: 20px;
  overflow-x: auto;
  padding: 5px 2px 20px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.activity-rail::-webkit-scrollbar {
  display: none;
}

.activity-rail.is-looping {
  scroll-snap-type: none;
}

.activity-card {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--ink);
  scroll-snap-align: start;
  box-shadow: var(--shadow-sm);
}

.activity-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 10, 10, .94) 0%, rgba(10, 10, 10, .15) 62%, transparent 100%);
  transition: background .35s ease;
}

.activity-card img {
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
  transition: transform .7s var(--ease), filter .35s ease;
}

.activity-card>div {
  position: absolute;
  z-index: 2;
  right: 26px;
  bottom: 28px;
  left: 26px;
  color: var(--white);
  transform: translateY(8px);
  transition: transform .35s var(--ease);
}

.activity-card span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--orange);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .11em;
}

.activity-card h3 {
  margin-bottom: 0;
  font-size: 1.45rem;
}

.activity-card:hover img {
  transform: scale(1.055);
  filter: saturate(1.08);
}

.activity-card:hover::after {
  background: linear-gradient(0deg, rgba(10, 10, 10, .96) 0%, rgba(255, 105, 0, .12) 72%, transparent 100%);
}

.activity-card:hover>div {
  transform: translateY(0);
}

/* Articles */
.articles-section {
  background: var(--white);
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.article-card {
  position: relative;
  padding-bottom: 72px;
  border-bottom: 1px solid var(--line);
}

.article-image {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  margin-bottom: 24px;
  border-radius: var(--radius-sm);
  background: var(--soft);
}

.article-image img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  transition: transform .6s var(--ease);
}

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

.article-category {
  margin-bottom: 10px;
  color: var(--orange);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .11em;
}

.article-card h3 {
  margin-bottom: 0;
  padding-right: 54px;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.article-card h3 a {
  background-image: linear-gradient(var(--orange), var(--orange));
  background-size: 0 2px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: background-size .35s var(--ease);
}

.article-card:hover h3 a {
  background-size: 100% 2px;
}

.article-arrow {
  position: absolute;
  right: 0;
  bottom: 18px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: color .2s ease, border-color .2s ease, background-color .2s ease, transform .2s ease;
}

.article-card:hover .article-arrow {
  color: var(--white);
  border-color: var(--orange);
  background: var(--orange);
  transform: translateX(4px);
}

/* blog archive */
.page-hero--blog .page-hero__media {
  object-position: center;
}

.page-hero--blog .page-hero__fade {
  background: linear-gradient(90deg, rgba(8, 8, 8, .96) 0%, rgba(8, 8, 8, .84) 38%, rgba(8, 8, 8, .34) 64%, rgba(8, 8, 8, .12) 100%);
}

.blog-archive {
  background: var(--white);
}

.blog-archive .section-intro--row>p {
  max-width: 470px;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 1.02rem;
}

.blog-filter-panel {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 14px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--soft);
}

.blog-filter {
  min-width: 0;
  min-height: 82px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 14px 16px;
  border: 1px solid transparent;
  border-radius: 15px;
  color: var(--ink);
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.blog-filter:hover,
.blog-filter:focus-visible {
  border-color: rgba(255, 105, 0, .34);
  background: rgba(255, 255, 255, .78);
  transform: translateY(-1px);
}

.blog-filter.is-active {
  border-color: var(--ink);
  color: var(--white);
  background: var(--ink);
}

.blog-filter b {
  font-size: .98rem;
  line-height: 1.35;
}

.blog-filter small {
  color: var(--muted);
  font-size: .76rem;
  line-height: 1.45;
}

.blog-filter.is-active small {
  color: rgba(255, 255, 255, .7);
}

.blog-filter-status {
  margin: 0 0 38px;
  color: var(--muted);
  font-size: .84rem;
}

.blog-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 68px 26px;
}

.editorial-card {
  min-width: 0;
}

.editorial-card__image-link {
  display: block;
  overflow: hidden;
  margin-bottom: 20px;
  border-radius: var(--radius-sm);
  aspect-ratio: 16 / 9;
  background: var(--soft);
}

.editorial-card__image-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s var(--ease), filter .35s ease;
}

.editorial-card:hover .editorial-card__image-link img {
  transform: scale(1.035);
  filter: contrast(1.03);
}

.editorial-card__category {
  margin-bottom: 8px;
  color: var(--orange);
  font-size: .76rem;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: .08em;
}

.editorial-card h3 {
  margin-bottom: 10px;
  font-size: clamp(1.42rem, 2vw, 1.82rem);
  font-weight: 680;
  line-height: 1.3;
  letter-spacing: -.035em;
}

.editorial-card h3 a {
  transition: color .2s ease;
}

.editorial-card h3 a:hover,
.editorial-card h3 a:focus-visible {
  color: var(--orange-dark);
}

.editorial-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-bottom: 16px;
  color: #8a8a8a;
  font-size: .82rem;
  line-height: 1.5;
}

.editorial-card__meta time {
  position: relative;
}

.editorial-card__meta time::before {
  position: absolute;
  top: 50%;
  left: -11px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
  transform: translateY(-50%);
}

.editorial-card__excerpt {
  display: -webkit-box;
  overflow: hidden;
  margin-bottom: 0;
  color: #777777;
  font-size: .95rem;
  line-height: 1.7;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

/* CTA */
.cta-section {
  padding-top: 34px;
  background: var(--soft);
}

.cta-panel {
  position: relative;
  min-height: 340px;
  display: grid;
  grid-template-columns: 1fr .55fr;
  align-items: center;
  overflow: hidden;
  padding: 20px 30px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background: linear-gradient(115deg, #101010 0%, #171717 58%, #4d1f00 100%);
}

.cta-panel::before {
  content: "";
  position: absolute;
  right: 15%;
  bottom: -70%;
  width: 65%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 105, 0, .75), transparent 67%);
}

.cta-panel>div {
  position: relative;
  z-index: 2;
}

.cta-panel h2 {
  font-size: clamp(2.5rem, 4vw, 4.7rem);
}

.cta-panel p:not(.section-label) {
  max-width: 580px;
  color: rgba(255, 255, 255, .72);
}

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

.cta-panel>img {
  position: absolute;
  z-index: 1;
  right: -26px;
  bottom: -66px;
  width: 400px;
  filter: drop-shadow(0 25px 36px rgba(0, 0, 0, .3));
}

/* Footer */
.site-footer {
  padding: 76px 0 24px;
  color: rgba(255, 255, 255, .72);
  background: #0d0d0d;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.65fr repeat(3, .7fr);
  gap: 54px;
  padding-bottom: 54px;
}

.footer-brand img {
  width: 150px;
  margin-bottom: 20px;
}

.footer-brand p {
  max-width: 330px;
}

.footer-grid>div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-grid h3 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: .95rem;
}

.footer-grid a {
  font-size: .88rem;
  transition: color .2s ease;
}

.footer-grid a:hover {
  color: var(--orange);
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.social-links a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 50%;
  color: var(--white);
  font-size: .76rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: color .2s ease, border-color .2s ease, background-color .2s ease, transform .2s ease;
}

.social-links a:hover {
  color: var(--white);
  border-color: var(--orange);
  background: var(--orange);
  transform: translateY(-3px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: .78rem;
}

.back-to-top {
  position: fixed;
  z-index: 90;
  right: 24px;
  bottom: 24px;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: var(--orange);
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  cursor: pointer;
  transition: opacity .25s ease, transform .25s var(--ease), background-color .2s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--ink);
  transform: translateY(-4px);
}

/* Motion */
.reveal-pending {
  opacity: 0;
  transform: translateY(34px);
}

.reveal-pending.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .72s var(--ease), transform .72s var(--ease);
}

/* Expandable feature catalog */
.feature-catalog {
  background: var(--soft);
}

.feature-accordion {
  border-top: 1px solid var(--ink);
}

.feature-accordion-item {
  border-bottom: 1px solid rgba(17, 17, 17, .18);
}

.feature-accordion-item summary {
  min-height: 120px;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 32px;
  align-items: center;
  gap: 22px;
  padding: 25px 4px;
  list-style: none;
  cursor: pointer;
  transition: color .25s ease, padding-left .25s var(--ease);
}

.feature-accordion-item summary::-webkit-details-marker {
  display: none;
}

.feature-accordion-item summary:hover {
  color: var(--orange);
  padding-left: 12px;
}

.feature-accordion-item summary>span {
  color: var(--orange);
  font-size: .8rem;
  font-weight: 820;
  letter-spacing: .1em;
}

.feature-accordion-item summary b {
  display: block;
  color: var(--ink);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.25;
}

.feature-accordion-item summary small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: .9rem;
}

.feature-accordion-item summary i {
  position: relative;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(17, 17, 17, .24);
  border-radius: 50%;
  transition: background-color .25s ease, border-color .25s ease, transform .3s var(--ease);
}

.feature-accordion-item summary i::before,
.feature-accordion-item summary i::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1.5px;
  background: currentColor;
  transform: translate(-50%, -50%);
}

.feature-accordion-item summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform .25s ease;
}

.feature-accordion-item[open] summary i {
  color: var(--white);
  border-color: var(--orange);
  background: var(--orange);
  transform: rotate(180deg);
}

.feature-accordion-item[open] summary i::after {
  transform: translate(-50%, -50%) rotate(0);
}

.feature-accordion-content {
  padding: 0 0 34px 76px;
}

.feature-accordion-content ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 36px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-accordion-content li {
  padding: 22px 0;
  border-top: 1px solid rgba(17, 17, 17, .12);
}

.feature-accordion-content li b {
  display: block;
  margin-bottom: 5px;
  font-size: 1rem;
}

.feature-accordion-content li p {
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
}

/* Pricing */
.page-hero--pricing .page-hero__media {
  object-position: center 48%;
}

.pricing-principles {
  background: var(--white);
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.principle-grid article {
  min-height: 245px;
  padding: 36px 34px 32px 0;
  border-right: 1px solid var(--line);
}

.principle-grid article+article {
  padding-left: 34px;
}

.principle-grid article:last-child {
  border-right: 0;
}

.principle-grid span {
  display: block;
  margin-bottom: 10px;
  color: var(--orange);
  font-size: 1.78rem;
  font-weight: 820;
  letter-spacing: .12em;
}

.principle-grid h3 {
  margin-bottom: 12px;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
}

.principle-grid p {
  margin: 0;
  color: var(--muted);
}

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

.principle-grid--four article {
  min-height: 315px;
  padding-right: 26px;
}

.principle-grid--four article+article {
  padding-left: 26px;
}

.principle-grid--four span {
  margin-bottom: 10px;
}

.principle-grid--four h3 {
  font-size: clamp(1.18rem, 1.55vw, 1.48rem);
  line-height: 1.3;
}

.pricing-333 {
  padding-top: 20px;
  background: var(--white);
}

.pricing-333-panel {
  position: relative;
  min-height: 500px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  align-items: center;
  overflow: hidden;
  padding: 40px 100px;
  color: var(--white);
  background: var(--ink);
}

.pricing-333-panel::before {
  content: "333";
  position: absolute;
  right: -10px;
  bottom: -94px;
  color: rgba(255, 105, 0, .16);
  font-size: 19rem;
  font-weight: 850;
  line-height: 1;
  letter-spacing: -.1em;
}

.pricing-333-copy {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.pricing-333-copy h2 {
  font-size: clamp(2.5rem, 4vw, 4.4rem);
}

.pricing-333-copy>p:not(.section-label) {
  color: rgba(255, 255, 255, .78);
  font-size: 1.08rem;
}

.pricing-333-copy ul {
  margin: 26px 0 32px;
  padding: 0;
  list-style: none;
}

.pricing-333-copy li {
  padding: 9px 0 9px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, .13);
}

.pricing-333-copy li::before {
  content: "✓";
  float: left;
  margin-left: -28px;
  color: var(--orange);
  font-weight: 900;
}

.pricing-333-panel>img {
  position: relative;
  z-index: 2;
  width: 380px;
  align-self: end;
  margin-bottom: -111px;
  filter: drop-shadow(0 25px 40px rgba(0, 0, 0, .32));
}

.plans-section {
  background: var(--soft);
}

.billing-selector {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: -18px 0 34px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.billing-toggle {
  flex: 0 0 auto;
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
  padding: 4px;
  border: 1px solid #d7d7d7;
  border-radius: 999px;
  background: #e9e9e9;
}

.billing-toggle button {
  min-width: 104px;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 18px;
  border: 0;
  border-radius: 999px;
  color: #4f4f4f;
  background: transparent;
  font-size: .92rem;
  font-weight: 800;
  cursor: pointer;
  transition: color .2s ease, background-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.billing-toggle button:hover {
  color: var(--ink);
  transform: translateY(-1px);
}

.billing-toggle button:focus-visible {
  outline: 3px solid rgba(255, 105, 0, .3);
  outline-offset: 2px;
}

.billing-toggle button.is-active {
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 8px 20px rgba(17, 17, 17, .18);
}

.billing-discount {
  padding: 2px 7px;
  border-radius: 999px;
  color: var(--white);
  background: var(--orange);
  font-size: .62rem;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: .04em;
  white-space: nowrap;
}

.billing-toggle button.is-active .billing-discount {
  color: var(--orange-dark);
  background: var(--white);
}

.billing-selector__note {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: .84rem;
  text-align: right;
}

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

.pricing-card {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 36px 30px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(17, 17, 17, .05);
}

.pricing-card--featured {
  border: 2px solid var(--orange);
  box-shadow: 0 20px 48px rgba(255, 105, 0, .15);
}

.pricing-card__badge {
  position: absolute;
  top: 0;
  right: 24px;
  margin: 0;
  padding: 7px 14px;
  color: var(--white);
  background: var(--orange);
  font-size: .72rem;
  font-weight: 800;
}

.pricing-card__code {
  margin-bottom: 14px;
  color: var(--orange);
  font-size: .74rem;
  font-weight: 850;
  letter-spacing: .14em;
}

.pricing-card h3 {
  margin-bottom: 8px;
  font-size: 1.7rem;
}

.pricing-card__audience {
  min-height: 58px;
  color: var(--muted);
  font-size: .88rem;
}

.pricing-card__price {
  min-height: 74px;
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin: 10px 0 24px;
}

.pricing-card__price span {
  font-size: .8rem;
  font-weight: 760;
}

.pricing-card__price b {
  font-size: clamp(2.7rem, 4vw, 4.1rem);
  line-height: 1;
  letter-spacing: -.06em;
}

.pricing-card__price small {
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.45;
}

.pricing-card>.button {
  width: 100%;
  margin-bottom: 28px;
}

.pricing-feature-list {
  flex: 1;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-feature-list li {
  position: relative;
  padding: 10px 0 10px 25px;
  border-bottom: 1px solid #ececec;
  color: #454545;
  font-size: 1.1rem;
}

.pricing-feature-list li::before {
  content: "✓";
  position: absolute;
  top: 10px;
  left: 0;
  color: var(--orange);
  font-weight: 900;
}

.pricing-card--partner {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 44px;
  margin-top: 6px;
  color: var(--white);
  background: var(--ink);
}

.pricing-card--partner p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, .68);
}

.pricing-card--partner .pricing-feature-list {
  display: grid;
  grid-template-columns: 1fr;
}

.pricing-card--partner .pricing-feature-list li {
  border-color: rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .82);
}

.pricing-card--partner>.button {
  width: auto;
  min-width: 150px;
  margin: 0;
}

.fee-explainer {
  color: var(--white);
  background: var(--ink);
}

.fee-explainer__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

.fee-explainer__layout>div:first-child>p:last-child {
  color: rgba(255, 255, 255, .68);
}

.fee-formula {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px 16px;
  align-items: center;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .055);
}

.fee-formula span {
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, .16);
}

.fee-formula i {
  color: var(--orange);
  font-size: 1.45rem;
  font-style: normal;
}

.fee-formula b {
  grid-column: 1 / -1;
  margin-top: 10px;
  padding-top: 20px;
  border-top: 1px solid var(--orange);
  color: var(--orange);
  font-size: 1.15rem;
}

/* FAQ */
.page-hero--faq .page-hero__media {
  object-position: center 38%;
}

.community-answer-section {
  background: var(--white);
}

.community-answer-card {
  padding: clamp(40px, 5.5vw, 64px) 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.community-answer-header {
  max-width: 720px;
  margin-bottom: clamp(30px, 4vw, 44px);
}

.community-answer-header h2 {
  margin-bottom: 20px;
}

.community-answer-subtitle {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.6vw, 1.15rem);
  line-height: 1.9;
}

.community-answer-close {
  margin: clamp(24px, 3vw, 34px) 0 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  max-width: 820px;
}

.community-answer-close strong {
  display: block;
  color: var(--ink);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  line-height: 1.65;
}

.community-answer-close p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.85;
}

/* ── Ripple interest flywheel ─────────────────── */
.cycle-stepper {
  position: relative;
  width: min(100%, 820px);
  min-height: 540px;
  margin: 0 auto;
  isolation: isolate;
}

.cycle-stepper__orbit {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
  z-index: -1;
}

.cycle-stepper__orbit-line {
  fill: none;
  stroke: #ffbd8f;
  stroke-width: 3;
  stroke-dasharray: 10 12;
  stroke-linecap: round;
  animation: cycle-route-flow 18s linear infinite;
}

#cycle-arrow path {
  fill: var(--orange);
}

.cycle-stepper__runner {
  fill: var(--orange);
  filter: drop-shadow(0 0 8px rgba(255, 105, 0, .55));
}

.cycle-stepper__track {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cycle-stepper__step {
  position: absolute;
  width: 196px;
  min-height: 112px;
  padding: 15px 14px 14px 50px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 16px 36px rgba(24, 24, 24, .07);
  transition: border-color .45s var(--ease), box-shadow .45s var(--ease), transform .45s var(--ease), background .45s var(--ease);
}

.cycle-stepper__step[data-step="0"] {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.cycle-stepper__step[data-step="1"] {
  top: 18%;
  right: 0;
}

.cycle-stepper__step[data-step="2"] {
  right: 4%;
  bottom: 10%;
}

.cycle-stepper__step[data-step="3"] {
  bottom: 10%;
  left: 4%;
}

.cycle-stepper__step[data-step="4"] {
  top: 18%;
  left: 0;
}

.cycle-stepper__phase {
  display: block;
  margin-bottom: 5px;
  color: var(--orange);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.cycle-stepper__number {
  position: absolute;
  top: 17px;
  left: 14px;
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border: 1px solid #ffc79f;
  border-radius: 50%;
  color: var(--orange);
  background: #fff5ee;
  font-size: .67rem;
  font-weight: 900;
  transition: color .4s var(--ease), background .4s var(--ease), transform .4s var(--ease);
}

.cycle-stepper__step h3 {
  margin: 0 0 5px;
  color: var(--ink);
  font-size: .98rem;
  line-height: 1.35;
}

.cycle-stepper__step p {
  margin: 0;
  color: var(--muted);
  font-size: .77rem;
  line-height: 1.55;
}

.cycle-stepper__step.is-active {
  border-color: var(--orange);
  background: #fffaf6;
  box-shadow: 0 20px 46px rgba(255, 105, 0, .16);
}

.cycle-stepper__step[data-step="0"].is-active {
  transform: translateX(-50%) translateY(-5px);
}

.cycle-stepper__step:not([data-step="0"]).is-active {
  transform: translateY(-5px);
}

.cycle-stepper__step.is-active .cycle-stepper__number {
  color: var(--white);
  background: var(--orange);
  transform: scale(1.08);
}

.cycle-stepper__hub {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 250px;
  min-height: 174px;
  padding: 26px 22px;
  place-content: center;
  text-align: center;
  color: var(--white);
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 50%;
  box-shadow: 0 28px 60px rgba(0, 0, 0, .18);
  transform: translate(-50%, -50%);
}

.cycle-stepper__hub span {
  margin-bottom: 7px;
  color: var(--orange);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .12em;
}

.cycle-stepper__hub strong {
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  line-height: 1.42;
}

.cycle-stepper__hub p {
  margin: 9px 0 0;
  color: rgba(255, 255, 255, .68);
  font-size: .74rem;
  line-height: 1.55;
}

.cycle-stepper__return {
  display: none;
}

@keyframes cycle-route-flow {
  to { stroke-dashoffset: -220; }
}

@media (max-width: 820px) {
  .cycle-stepper {
    min-height: 0;
  }

  .cycle-stepper__orbit {
    display: none;
  }

  .cycle-stepper__track {
    position: relative;
    inset: auto;
    display: grid;
    gap: 10px;
  }

  .cycle-stepper__track::before {
    position: absolute;
    top: 22px;
    bottom: 22px;
    left: 24px;
    width: 2px;
    background: #ffd9bd;
    content: "";
  }

  .cycle-stepper__step,
  .cycle-stepper__step[data-step] {
    position: relative;
    inset: auto;
    width: 100%;
    min-height: 0;
    padding: 15px 16px 15px 58px;
    transform: none;
    box-shadow: none;
  }

  .cycle-stepper__step[data-step].is-active,
  .cycle-stepper__step:not([data-step="0"]):not([data-step="3"]).is-active {
    transform: translateX(6px);
  }

  .cycle-stepper__number {
    top: 16px;
    left: 10px;
    width: 27px;
    height: 27px;
  }

  .cycle-stepper__hub {
    position: static;
    width: 100%;
    min-height: 0;
    margin-top: 14px;
    padding: 22px 20px;
    border-radius: 0;
    transform: none;
  }

  .cycle-stepper__return {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
    color: var(--orange);
    font-size: .82rem;
    font-weight: 800;
  }

  .cycle-stepper__return svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cycle-stepper__orbit-line {
    animation: none;
  }

  .cycle-stepper__runner {
    display: none;
  }

  .cycle-stepper__step,
  .cycle-stepper__number {
    transition: none;
  }
}



.role-clarity-section {
  color: var(--white);
  background: linear-gradient(118deg, #111111 0%, #171717 66%, #3b1903 100%);
}

.role-clarity-layout {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
  gap: 42px 80px;
  align-items: start;
}

.role-clarity-intro>p:not(.section-label) {
  max-width: 620px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, .72);
  font-size: 1.08rem;
  line-height: 1.9;
}

.role-clarity-points {
  border-top: 1px solid rgba(255, 255, 255, .28);
}

.role-clarity-points article {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 24px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.role-clarity-points article>span {
  color: var(--orange);
  font-size: 1.3rem;
  font-weight: 850;
  letter-spacing: .12em;
}

.role-clarity-points h3 {
  margin: 0 0 10px;
  color: var(--white);
  font-size: clamp(1.35rem, 1.7vw, 1.75rem);
  line-height: 1.4;
}

.role-clarity-points p {
  margin: 0;
  color: rgba(255, 255, 255, .68);
  line-height: 1.85;
}

.role-clarity-note {
  grid-column: 1 / -1;
  margin: 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--orange);
  color: rgba(255, 255, 255, .78);
  font-size: 1rem;
}

.role-clarity-note strong {
  margin-right: 6px;
  color: var(--orange);
}

.host-section {
  background: var(--soft);
}

.host-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 0 34px;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.host-steps li {
  min-width: 0;
  min-height: 300px;
  padding: 34px clamp(18px, 2vw, 28px) 30px;
  border-right: 1px solid var(--line);
}

.host-steps li:first-child {
  padding-left: 0;
}

.host-steps li:last-child {
  border-right: 0;
}

.host-steps span {
  display: block;
  margin-bottom: 15px;
  color: var(--orange);
  font-size: 1.3rem;
  font-weight: 850;
  letter-spacing: .12em;
}

.host-steps h3 {
  margin-bottom: 5px;
  font-size: clamp(1.4rem, 1.55vw, 1.35rem);
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.host-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 1.2rem;
}

.payment-section {
  color: var(--white);
  background: var(--ink);
}

.payment-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 66px;
  align-items: start;
}

.payment-copy {
  position: static;
}

.payment-copy>p:not(.section-label) {
  color: rgba(255, 255, 255, .68);
}

.payment-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.payment-cards article {
  min-height: 245px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .055);
}

.payment-cards article:last-child {
  border-color: rgba(255, 105, 0, .6);
  background: rgba(255, 105, 0, .1);
}

.payment-cards span {
  display: block;
  margin-bottom: 50px;
  color: var(--orange);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .1em;
}

.payment-cards strong {
  display: block;
  margin-bottom: 12px;
  font-size: 1.5rem;
}

.payment-cards p {
  margin: 0;
  color: rgba(255, 255, 255, .66);
  font-size: 1.1rem;
}

.payment-once {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 70px;
  margin-top: 24px;
  padding: 42px 0;
  border-top: 1px solid rgba(255, 255, 255, .2);
  border-bottom: 1px solid rgba(255, 255, 255, .2);
}

.payment-once h3 {
  margin: 0;
  font-size: clamp(1.5rem, 2.6vw, 2.4rem);
}

.payment-once ol {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.payment-once li {
  min-width: 0;
  padding: 20px;
  border-left: 2px solid var(--orange);
  background: rgba(255, 255, 255, .055);
}

.payment-once b {
  display: block;
  margin-bottom: 24px;
  color: var(--orange);
  font-size: 1.5rem;
}

.payment-once span {
  color: rgba(255, 255, 255, .8);
  font-size: 1.1rem;
}

.faq-list-section {
  background: var(--white);
}

.faq-list-layout {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 88px;
  align-items: start;
}

.faq-page-list {
  border-top: 1px solid var(--ink);
}

.faq-page-list details {
  border-bottom: 1px solid var(--line);
}

.faq-page-list summary {
  min-height: 88px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 32px;
  align-items: center;
  gap: 24px;
  padding: 20px 4px;
  list-style: none;
  font-size: 1.2rem;
  font-weight: 760;
  cursor: pointer;
}

.faq-page-list summary::-webkit-details-marker {
  display: none;
}

.faq-page-list summary:hover {
  color: var(--orange);
}

.faq-page-list summary i {
  position: relative;
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: color .25s ease, background-color .25s ease, transform .3s var(--ease);
}

.faq-page-list summary i::before,
.faq-page-list summary i::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1.5px;
  background: currentColor;
  transform: translate(-50%, -50%);
}

.faq-page-list summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-page-list details[open] summary i {
  color: var(--white);
  background: var(--orange);
  transform: rotate(180deg);
}

.faq-page-list details[open] summary i::after {
  transform: translate(-50%, -50%);
}

.faq-page-list details>p {
  max-width: 760px;
  margin: -4px 54px 26px 4px;
  color: var(--muted);
}

@media (max-width: 1120px) {
  .header-inner {
    gap: 18px;
  }

  .primary-nav {
    gap: 14px;
  }

  .primary-nav a {
    font-size: .8rem;
  }

  .header-cta {
    min-height: 42px;
    padding-inline: 14px;
    font-size: .84rem;
  }

  .feature-experience {
    grid-template-columns: minmax(270px, .78fr) minmax(0, 1.22fr);
  }

  .campaign-mascot {
    right: 22px;
  }

  .activity-rail {
    grid-auto-columns: minmax(300px, 42%);
  }

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

  .feature-jump-list a:nth-child(3) {
    border-right: 0;
  }

  .feature-jump-list a:nth-child(n+4) {
    border-top: 1px solid var(--line);
  }

  .feature-story__layout,
  .feature-story__layout--reverse {
    gap: 54px;
  }

  .ripple-model-layout {
    gap: 38px;
  }

  .ripple-label {
    width: min(170px, 31%);
    padding: 10px 12px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 72px;
  }

  .container {
    width: min(calc(100% - 36px), var(--container));
  }

  .section {
    padding: 88px 0;
  }

  .site-header {
    height: var(--header-height);
  }

  .brand img {
    width: 132px;
  }

  .menu-toggle {
    display: block;
    order: 3;
    margin-left: 0;
  }

  .header-cta {
    order: 2;
    margin-left: auto;
  }

  .primary-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    max-height: calc(100svh - var(--header-height));
    display: grid;
    gap: 0;
    overflow-y: auto;
    padding: 22px 24px 34px;
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 25px 45px rgba(17, 17, 17, .12);
    opacity: 0;
    transform: translateY(-16px);
    visibility: hidden;
    pointer-events: none;
    transition: opacity .25s ease, transform .25s var(--ease), visibility .25s ease;
  }

  .primary-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
  }

  .primary-nav a {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }

  .primary-nav a::after {
    display: none;
  }

  .hero {
    min-height: 780px;
  }

  .hero-content {
    padding: 90px 0 150px;
  }

  .page-hero {
    min-height: 700px;
  }

  .page-hero__content {
    padding: 100px 0 88px;
  }

  .campaign-panel {
    padding-inline: 34px;
  }

  .campaign-heading {
    padding-right: 100px;
  }

  .campaign-mascot {
    width: 145px;
    height: 145px;
    top: -56px;
  }

  .campaign-types {
    grid-template-columns: repeat(3, 1fr);
  }

  .feature-experience {
    grid-template-columns: 1fr;
  }

  .feature-tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .feature-tab {
    min-height: 98px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
  }

  .feature-tab:last-child {
    grid-column: 1 / -1;
  }

  .feature-tab::before {
    display: none;
  }

  .feature-tab:hover,
  .feature-tab.is-active {
    padding-left: 16px;
    border-color: var(--orange);
    background: #fff7f1;
  }

  .feature-panels,
  .feature-panel {
    min-height: 650px;
  }

  .relationship-layout {
    grid-template-columns: 1fr;
  }

  .relationship-media {
    max-width: 720px;
    margin-inline: auto;
  }

  .activity-rail {
    grid-auto-columns: minmax(290px, 55%);
  }

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

  .article-card:last-child {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 26px;
    align-items: start;
  }

  .article-card:last-child .article-image {
    grid-row: 1 / 4;
    margin-bottom: 0;
  }

  .cta-panel {
    grid-template-columns: 1fr .38fr;
    padding: 56px 44px;
  }

  .cta-panel>img {
    right: -74px;
    width: 340px;
  }

  .footer-grid {
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 30px;
  }

  .feature-story {
    padding: 96px 0;
  }

  .feature-story__layout,
  .feature-story__layout--reverse {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .feature-summary__layout {
    gap: 50px;
  }

  .ripple-model-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .ripple-map {
    width: min(720px, 100%);
    margin-inline: auto;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .section {
    padding: 72px 0;
  }

  h1 {
    font-size: clamp(2.65rem, 12.2vw, 4.25rem);
    line-height: 1.04;
    letter-spacing: -.055em;
  }

  h2 {
    font-size: clamp(2.05rem, 9.5vw, 3.2rem);
    line-height: 1.12;
    letter-spacing: -.045em;
  }

  .section-label,
  .hero-label {
    margin-bottom: 13px;
    font-size: 1.3rem;
    letter-spacing: .12em;
  }

  .button--large {
    width: 100%;
    min-height: 54px;
  }

  .video-modal {
    align-items: center;
    padding: 16px;
  }

  .video-modal-dialog {
    border-radius: 16px;
  }

  .video-modal-header {
    gap: 14px;
    padding: 16px;
  }

  .video-modal-header h2 {
    font-size: 1.35rem;
  }

  .video-modal-close {
    width: 44px;
    height: 44px;
  }

  .site-header {
    background: rgba(255, 255, 255, .98);
  }

  .header-inner {
    gap: 16px;
  }

  .brand img {
    width: 116px;
  }

  .header-inner {
    gap: 12px;
  }

  .header-cta {
    min-height: 42px;
    padding-inline: 12px;
    font-size: .78rem;
    gap: 6px;
  }

  .header-cta svg {
    display: none;
  }

  .hero {
    min-height: 760px;
    align-items: end;
  }

  .hero-video {
    object-position: 62% center;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(10, 10, 10, .06) 0%, rgba(10, 10, 10, .36) 32%, rgba(10, 10, 10, .78) 83%, rgba(10, 10, 10, .84) 100%);
  }

  .hero-accent {
    right: -70%;
    bottom: -30%;
    width: 150vw;
    opacity: .58;
  }

  .hero-content {
    padding: 270px 0 138px;
  }

  .hero h1 {
    margin-bottom: 22px;
    font-size: clamp(2.35rem, 10vw, 3.5rem);
  }

  .page-hero__content h1 {
    font-size: clamp(2.35rem, 10vw, 3.5rem);
  }

  .hero-lead {
    margin-bottom: 28px;
    font-size: 1rem;
    line-height: 1.7;
  }

  .hero-actions {
    display: grid;
    gap: 10px;
  }

  .page-hero {
    min-height: 720px;
    align-items: end;
  }

  .page-hero__media {
    object-position: 66% center;
  }

  .page-hero__fade {
    background: linear-gradient(180deg, rgba(10, 10, 10, .14) 0%, rgba(10, 10, 10, .5) 34%, rgba(10, 10, 10, .97) 78%, rgba(32, 13, 0, .99) 100%);
  }

  .page-hero__content {
    padding: 290px 0 72px;
  }

  .page-hero__content>p:not(.hero-label) {
    margin-bottom: 26px;
    font-size: 1rem;
  }

  .page-hero__actions {
    display: grid;
    gap: 10px;
  }

  .ripple-model-layout {
    gap: 46px;
  }

  .ripple-model-copy blockquote {
    margin: 30px 0 26px;
    padding: 22px 0 22px 24px;
  }

  .ripple-model-copy blockquote p {
    font-size: 1.12rem;
  }

  .ripple-paths {
    grid-template-columns: 1fr;
    gap: 4px;
    margin-top: 28px;
  }

  .ripple-map {
    min-height: 0;
    aspect-ratio: auto;
    padding-top: 340px;
  }

  .ripple-map::before {
    top: 0;
    right: 0;
    bottom: auto;
    left: 0;
    height: 320px;
  }

  .ripple-ring {
    top: 158px;
  }

  .ripple-ring--5 {
    width: min(92%, 320px);
  }

  .ripple-ring--4 {
    width: min(76%, 264px);
  }

  .ripple-ring--3 {
    width: min(60%, 208px);
  }

  .ripple-ring--2 {
    width: min(44%, 152px);
  }

  .ripple-ring--1 {
    width: min(28%, 96px);
  }

  .ripple-core {
    top: 158px;
    width: 72px;
  }

  .ripple-core span {
    font-size: .76rem;
  }

  .ripple-core b {
    font-size: .58rem;
  }

  .ripple-labels {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .ripple-label {
    position: static;
    width: auto;
    min-height: 102px;
    padding: 13px 12px;
    transform: none;
  }

  .ripple-label:last-child {
    grid-column: 1 / -1;
  }

  .ripple-label b {
    font-size: 1.2rem;
  }

  .ripple-label small {
    font-size: 1rem;
  }

  .hero-utility {
    bottom: 24px;
  }

  .scroll-cue {
    display: none;
  }

  .campaign {
    margin-top: 0;
    padding: 72px 0;
  }

  .campaign-panel {
    padding: 42px 18px 30px;
    border-radius: 26px;
    text-align: left;
  }

  .campaign-heading {
    margin-bottom: 24px;
    padding-right: 0;
  }

  .campaign-heading p:last-child {
    font-size: .92rem;
  }

  .campaign-heading h2 {
    max-width: 250px;
  }

  .campaign-mascot {
    top: -46px;
    right: 18px;
    width: 118px;
    height: 118px;
  }

  .campaign-dismiss {
    top: 14px;
    right: 14px;
    width: 44px;
    height: 44px;
  }

  .campaign-types {
    grid-auto-flow: column;
    grid-auto-columns: minmax(126px, 40%);
    grid-template-columns: none;
    gap: 10px;
    overflow-x: auto;
    margin: 22px -18px 26px;
    padding: 3px 18px 12px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .campaign-types span {
    min-height: 66px;
    scroll-snap-align: start;
  }

  .campaign-panel>.button {
    width: 100%;
  }

  .campaign-offer {
    justify-items: start;
    text-align: left;
  }

  .campaign-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .campaign-actions .button {
    width: 100%;
  }

  .platform-section {
    padding-top: 90px;
  }

  .section-intro {
    margin-bottom: 36px;
  }

  .section-intro>p:last-child {
    font-size: .98rem;
  }

  .section-intro--row {
    align-items: end;
  }

  .feature-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    overflow: visible;
    margin: 0;
    padding: 0;
  }

  .feature-tab {
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 8px;
    min-height: 112px;
    padding: 14px 12px;
    scroll-snap-align: none;
  }

  .feature-tab:hover,
  .feature-tab.is-active {
    padding-left: 12px;
  }

  .feature-tab b {
    font-size: 1.05rem;
    white-space: nowrap;
  }

  .feature-tab small {
    font-size: .78rem;
    line-height: 1.5;
  }

  .feature-tab svg {
    display: none;
  }

  .feature-panels {
    min-height: 0;
    margin-top: 22px;
  }

  .feature-panel {
    min-height: 0;
    height: auto;
    aspect-ratio: 4 / 5;
    border-radius: 0;
  }

  .feature-panel img {
    height: 100%;
    max-height: none;
    object-fit: contain;
  }

  .feature-panel .feature-panel-image--compact {
    width: 100%;
    height: calc(105% - 24px);
    margin-top: 15px;
  }

  .feature-panel .feature-panel-image--square {
    width: min(100%, 360px);
    height: auto;
    aspect-ratio: 1 / 1;
    margin-top: 15px;
  }

  .feature-panel .feature-panel-image--wide {
    width: 100%;
    height: auto;
    max-height: none;
    margin-top: 15px;
  }

  .feature-copy {
    right: 14px;
    bottom: 14px;
    left: 14px;
    display: block;
    padding: 15px;
  }

  .feature-copy p {
    margin-bottom: 6px;
    font-size: .82rem;
  }

  .feature-copy a {
    font-size: .8rem;
  }

  .feature-overview-section {
    padding-bottom: 72px;
  }

  .community-first-path {
    grid-template-columns: 1fr;
  }

  .community-first-path article,
  .community-first-path article:first-child,
  .community-first-path article:last-child {
    min-height: 0;
    padding: 26px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .community-first-path article:last-child {
    border-bottom: 0;
  }

  .community-first-path span {
    margin-bottom: 16px;
  }

  .community-first-path p {
    max-width: none;
    font-size: .96rem;
  }

  .community-first-note {
    display: block;
    margin: 20px 0 52px;
    padding: 18px;
  }

  .community-first-note strong,
  .community-first-note span {
    display: block;
  }

  .community-first-note strong {
    margin-bottom: 6px;
  }

  .feature-tool-intro {
    margin-bottom: 26px;
  }

  .feature-jump-list {
    grid-template-columns: 1fr 1fr;
  }

  .feature-jump-list a {
    min-height: 140px;
    padding: 20px 16px;
    border-top: 1px solid var(--line);
  }

  .feature-jump-list a:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .feature-jump-list a:nth-child(even) {
    border-right: 0;
  }

  .feature-jump-list a:first-child,
  .feature-jump-list a:nth-child(2) {
    border-top: 0;
  }

  .feature-jump-list a:last-child {
    grid-column: 1 / -1;
    border-right: 0;
  }

  .feature-jump-list span {
    margin-bottom: 12px;
  }

  .feature-story {
    padding: 80px 0;
  }

  .feature-story__layout,
  .feature-story__layout--reverse {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .feature-story__layout--reverse .feature-story__copy {
    order: -1;
  }

  .feature-story__number {
    top: -56px;
    left: 0;
    font-size: 7rem;
  }

  .feature-story__copy h2 {
    font-size: clamp(2.05rem, 9.5vw, 3.2rem);
  }

  .feature-story__lead {
    font-size: .98rem;
  }

  .feature-story__media img {
    max-height: 570px;
  }

  .feature-story__media--wide img {
    max-height: 430px;
  }

  .feature-story__media--compact img {
    width: min(88%, 420px);
  }

  .feature-summary__layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .feature-flow li {
    grid-template-columns: 48px 1fr;
    gap: 14px;
  }

  .relationship-layout {
    gap: 42px;
  }

  .relationship-steps {
    margin: 28px 0;
  }

  .relationship-media {
    padding: 0;
    border-radius: 0;
  }

  .media-note {
    font-size: .66rem;
  }

  .media-note--top {
    top: 12%;
    left: 0;
  }

  .media-note--bottom {
    right: 0;
    bottom: 8%;
  }

  .section-intro--row .rail-controls {
    display: none;
  }

  .activity-rail {
    grid-auto-columns: 84%;
    gap: 14px;
    margin-inline: -16px;
    padding-inline: 16px;
  }

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

  .activity-card h3 {
    font-size: 1.28rem;
  }

  .articles-section .section-intro--row {
    display: block;
  }

  .articles-section .section-intro--row .text-link {
    margin-top: 18px;
  }

  .article-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 88%;
    grid-template-columns: none;
    overflow-x: auto;
    margin-inline: -16px;
    padding: 3px 16px 18px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .article-card,
  .article-card:last-child {
    display: block;
    grid-column: auto;
    scroll-snap-align: start;
  }

  .article-card:last-child .article-image {
    margin-bottom: 24px;
  }

  .cta-section {
    padding-top: 16px;
  }

  .cta-panel {
    min-height: 610px;
    display: block;
    padding: 42px 24px 250px;
    border-radius: 26px;
  }

  .cta-panel>img {
    right: 50%;
    bottom: -72px;
    width: 400px;
    transform: translateX(50%);
  }

  .cta-actions {
    display: grid;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px 22px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-grid>div:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    display: block;
  }

  .footer-bottom span {
    display: block;
    margin-top: 4px;
  }

  .back-to-top {
    right: 16px;
    bottom: 16px;
    width: 46px;
    height: 46px;
  }
}

@media (max-width: 380px) {
  .hero-content {
    padding-top: 230px;
  }

  .campaign-mascot {
    width: 100px;
    height: 100px;
  }

  .feature-panel {
    min-height: 0;
  }

  .activity-rail {
    grid-auto-columns: 90%;
  }
}

@media (max-width: 1120px) {
  .principle-grid--four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .principle-grid--four article,
  .principle-grid--four article+article {
    min-height: 260px;
    padding: 32px 28px;
    border-bottom: 1px solid var(--line);
  }

  .principle-grid--four article:nth-child(odd) {
    padding-left: 0;
  }

  .principle-grid--four article:nth-child(even) {
    padding-right: 0;
    border-right: 0;
  }

  .principle-grid--four article:nth-last-child(-n+2) {
    border-bottom: 0;
  }

  .pricing-333-panel {
    grid-template-columns: minmax(0, 1fr) 300px;
    padding: 56px;
  }

  .pricing-333-panel>img {
    width: 310px;
  }

  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pricing-card--partner {
    grid-column: 1 / -1;
  }

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

  .host-steps li {
    grid-column: auto;
  }

  .host-steps li:nth-child(odd) {
    padding-left: 0;
    border-right: 1px solid var(--line);
  }

  .host-steps li:nth-child(even) {
    border-right: 0;
  }

  .host-steps li:nth-child(n+3) {
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 900px) {
  .feature-accordion-content {
    padding-left: 76px;
  }

  .pricing-333-panel {
    grid-template-columns: 1fr 240px;
    padding: 48px;
  }

  .pricing-333-panel>img {
    width: 260px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card--partner {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .pricing-card--partner>.button {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .fee-explainer__layout,
  .community-answer-card,
  .role-clarity-layout,
  .payment-layout,
  .faq-list-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .payment-copy {
    position: static;
  }

  .payment-once {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 640px) {
  .feature-accordion-item summary {
    min-height: 100px;
    grid-template-columns: 36px minmax(0, 1fr) 30px;
    gap: 12px;
    padding: 20px 0;
  }

  .page-hero--faq .page-hero__media {
    object-position: 70% 38%;
  }

  .community-answer-card {
    gap: 34px;
    padding-block: 28px;
  }

  .community-answer-header {
    margin-bottom: 22px;
  }

  .community-answer-subtitle {
    font-size: 0.96rem;
  }

  .cycle-stepper {
    width: 100%;
  }

  .cycle-stepper__step,
  .cycle-stepper__step[data-step] {
    padding: 14px 14px 14px 56px;
  }

  .cycle-stepper__step h3 {
    font-size: 1rem;
  }

  .cycle-stepper__step p {
    font-size: .82rem;
  }

  .cycle-stepper__number {
    top: 15px;
    left: 9px;
    right: auto;
    width: 26px;
    height: 26px;
    font-size: .65rem;
  }

  .cycle-stepper__track::before {
    left: 22px;
  }

  .cycle-stepper__hub {
    padding: 20px 16px;
  }

  .role-clarity-layout {
    gap: 34px;
  }

  .role-clarity-points article {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 14px;
    padding: 24px 0;
  }

  .role-clarity-intro>p:not(.section-label),
  .role-clarity-points p {
    font-size: .96rem;
  }

  .feature-role-split {
    grid-template-columns: 1fr;
    margin-top: 42px;
  }

  .feature-role-split article,
  .feature-role-split article+article {
    padding: 32px 0;
    border-left: 0;
  }

  .feature-role-split article+article {
    border-top: 1px solid var(--line);
  }

  .feature-accordion-item summary:hover {
    padding-left: 0;
  }

  .feature-accordion-item summary b {
    font-size: 1.15rem;
  }

  .feature-accordion-item summary small {
    font-size: .78rem;
  }

  .feature-accordion-content {
    padding: 0 0 22px 48px;
  }

  .feature-accordion-content ul {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .principle-grid {
    grid-template-columns: 1fr;
  }

  .principle-grid article,
  .principle-grid article+article {
    min-height: 0;
    padding: 26px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .principle-grid article:last-child {
    border-bottom: 0;
  }

  .principle-grid--four article,
  .principle-grid--four article+article,
  .principle-grid--four article:nth-child(odd),
  .principle-grid--four article:nth-child(even),
  .principle-grid--four article:nth-last-child(-n+2) {
    min-height: 0;
    padding: 26px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .principle-grid--four article:last-child {
    border-bottom: 0;
  }

  .principle-grid span {
    margin-bottom: 20px;
  }

  .pricing-333 {
    padding-top: 0;
  }

  .pricing-333-panel {
    min-height: 680px;
    display: block;
    padding: 42px 24px 260px;
  }

  .pricing-333-panel::before {
    right: -16px;
    bottom: -36px;
    font-size: 9rem;
  }

  .pricing-333-panel>img {
    position: absolute;
    right: 50%;
    bottom: -30px;
    width: 250px;
    margin: 0;
    transform: translateX(50%);
  }

  .pricing-card {
    padding: 32px 22px;
  }

  .billing-selector {
    display: block;
    margin-top: -8px;
  }

  .billing-toggle {
    width: 100%;
  }

  .billing-toggle button {
    min-width: 0;
    padding-inline: 12px;
  }

  .billing-selector__note {
    margin-top: 12px;
    text-align: left;
  }

  .pricing-card__audience {
    min-height: 0;
  }

  .pricing-card--partner {
    display: flex;
  }

  .pricing-card--partner>.button {
    width: 100%;
  }

  .fee-formula {
    padding: 22px;
  }

  .host-steps {
    grid-template-columns: 1fr;
  }

  .host-steps li,
  .host-steps li+li {
    grid-column: auto;
    min-height: 0;
    padding: 28px 0;
    border-right: 0;
    border-top: 1px solid var(--line);
  }

  .host-steps li:first-child {
    border-top: 0;
  }

  .host-steps span {
    margin-bottom: 5px;
  }

  .payment-cards {
    grid-template-columns: 1fr;
  }

  .payment-cards article {
    min-height: 0;
  }

  .payment-cards span {
    margin-bottom: 32px;
  }

  .payment-once ol {
    grid-template-columns: 1fr;
  }

  .payment-once li {
    display: grid;
    grid-template-columns: 32px 1fr;
    align-items: center;
    gap: 10px;
  }

  .payment-once b {
    margin: 0;
  }

  .faq-page-list summary {
    min-height: 76px;
    font-size: 1.2rem;
  }

  .faq-page-list details>p {
    margin-right: 42px;
    font-size: 1.1rem;
  }
}

@media (max-width: 900px) {
  .blog-filter-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-filter:first-child {
    grid-column: 1 / -1;
  }

  .blog-archive-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 58px 22px;
  }
}

@media (max-width: 640px) {
  .page-hero--blog .page-hero__media {
    object-position: 69% center;
  }

  .page-hero--blog .page-hero__fade {
    background: linear-gradient(180deg, rgba(8, 8, 8, .1) 0%, rgba(8, 8, 8, .43) 38%, rgba(8, 8, 8, .96) 76%, rgba(32, 13, 0, .99) 100%);
  }

  .blog-archive .section-intro--row {
    display: block;
  }

  .blog-archive .section-intro--row>p {
    margin-top: 20px;
  }

  .blog-filter-panel {
    display: flex;
    overflow-x: auto;
    margin-inline: -16px;
    padding: 10px 16px 14px;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
  }

  .blog-filter,
  .blog-filter:first-child {
    min-width: 190px;
    min-height: 76px;
    flex: 0 0 190px;
    scroll-snap-align: start;
  }

  .blog-filter-status {
    margin-bottom: 30px;
  }

  .blog-archive-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .editorial-card__image-link {
    margin-bottom: 18px;
    aspect-ratio: 16 / 9;
  }

  .editorial-card h3 {
    font-size: 1.42rem;
  }

  .editorial-card__excerpt {
    font-size: .92rem;
  }

  .ripple-quote-section {
    padding: 92px 0;
  }

  .ripple-quote-section::before {
    width: 128vw;
  }

  .ripple-quote blockquote p {
    font-size: clamp(2rem, 8.4vw, 2.65rem);
    line-height: 1.16;
    letter-spacing: -.035em;
  }

  .ripple-quote blockquote p br {
    display: none;
  }

  .ripple-quote blockquote footer {
    font-size: .86rem;
  }

  .ripple-quote__translation {
    margin-top: 30px;
    font-size: .96rem;
    line-height: 1.75;
    text-align: left;
  }

  .ripple-quote__message {
    margin-top: 22px;
    font-size: .9rem;
    line-height: 1.78;
    text-align: left;
  }
}

@media (max-width: 900px) {

  .about-origin__layout,
  .about-question__layout,
  .about-mission__layout,
  .about-journey__layout {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .about-question__layout>.section-label,
  .about-question__layout blockquote,
  .about-mission__message {
    grid-column: 1;
  }

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

  .about-voice-grid article:nth-child(2) {
    border-right: 0;
  }

  .about-voice-grid article:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 640px) {
  .page-hero--about .page-hero__media {
    object-position: 62% center;
  }

  .page-hero--about .page-hero__fade {
    background: linear-gradient(180deg, rgba(9, 9, 9, .22) 0%, rgba(9, 9, 9, .48) 38%, rgba(9, 9, 9, .9) 78%, rgba(9, 9, 9, .96) 100%);
  }

  .about-origin__layout,
  .about-question__layout,
  .about-mission__layout,
  .about-journey__layout {
    gap: 34px;
  }

  .about-origin__copy {
    padding: 6px 0 6px 20px;
  }

  .about-question__layout blockquote {
    margin-top: 12px;
    padding: 26px 0 4px 24px;
    font-size: 1.5rem;
  }

  .about-voice-grid {
    grid-template-columns: 1fr;
  }

  .about-voice-grid article {
    min-height: 240px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .about-voice-grid article:last-child {
    border-bottom: 0;
  }

  .about-voice-grid span {
    margin-bottom: 36px;
  }

  .about-bridge {
    margin-top: 52px;
    text-align: left;
  }

  .about-mission__quote {
    padding-left: 22px;
  }

  .about-mission__quote blockquote {
    font-size: 1.52rem;
  }

  .about-belief-grid {
    grid-template-columns: 1fr;
  }

  .about-belief-grid article {
    min-height: 300px;
  }

  .about-belief-grid article+article {
    border-left: 0;
  }

  .feature-detail-disclosure>summary {
    min-height: 58px;
    font-size: .92rem;
  }

  .feature-detail-disclosure .plain-benefits {
    margin-bottom: 6px;
  }

  .feature-detail-disclosure .plain-benefits li {
    padding-left: 27px;
  }

  .feature-detail-disclosure .plain-benefits b {
    font-size: .93rem;
  }

  .feature-detail-disclosure .plain-benefits small {
    font-size: .8rem;
  }

  .feature-accordion__item>summary {
    min-height: 54px;
    padding-block: 10px;
  }

  .feature-accordion__item>summary:hover,
  .feature-accordion__item[open]>summary {
    padding-left: 2px;
  }

  .feature-accordion__item>summary span {
    font-size: .88rem;
  }

  .feature-accordion__item>p {
    margin-right: 4px;
    font-size: .82rem;
  }

  .feature-detail-group {
    margin-top: 24px;
  }

  .video-modal-trigger-btn {
    width: 100%;
    margin-bottom: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {

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

  .reveal-pending {
    opacity: 1;
    transform: none;
  }
}

/* ================= Contact page ================= */
.contact-panel {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 56px;
  align-items: start;
  padding: 56px;
  border-radius: var(--radius-lg);
  background: var(--soft);
}

.contact-panel__intro h2 {
  margin-bottom: 16px;
}

.contact-panel__intro p {
  color: var(--muted);
}

.contact-reasons {
  display: grid;
  gap: 0;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.contact-reasons li {
  display: grid;
  gap: 4px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.contact-reasons b {
  font-size: .98rem;
}

.contact-reasons span {
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.6;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field {
  display: grid;
  gap: 8px;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  font-size: .92rem;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-size: 1rem;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 105, 0, .14);
}

.u-form-send-success,
.u-form-send-error {
  margin: 4px 0 0;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: .92rem;
  font-weight: 700;
}

.u-form-send-success {
  color: #1a7f3c;
  background: #e6f6ea;
}

.u-form-send-error {
  color: #b3261e;
  background: #fbe9e7;
}

@media (max-width: 860px) {
  .contact-panel {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    gap: 32px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= 操作指南 (Guide) page ================= */
.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.guide-card {
  display: block;
  width: 100%;
  border: none;
  margin: 0;
  padding: 0;
  text-align: left;
  cursor: pointer;
  background: transparent;
  font: inherit;
  color: inherit;
}

.guide-card__thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--soft);
  box-shadow: var(--shadow-sm);
}

.guide-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s var(--ease);
}

.guide-card:hover .guide-card__thumb img {
  transform: scale(1.05);
}

.guide-card__play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.guide-card__play span {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: var(--white);
  background: rgba(17, 17, 17, .55);
  backdrop-filter: blur(4px);
  transition: background-color .2s ease, transform .2s ease;
}

.guide-card:hover .guide-card__play span {
  background: var(--orange);
  transform: scale(1.06);
}

.guide-card__play svg {
  width: 22px;
  height: 22px;
  fill: var(--white);
}

.guide-card__meta {
  margin-top: 14px;
}

.guide-card__category {
  margin-bottom: 8px;
  color: var(--orange);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.guide-card__title {
  display: block;
  margin: 0;
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -.02em;
}

.guide-card__desc {
  display: block;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.6;
}

@media (max-width: 980px) {
  .guide-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .guide-grid {
    grid-template-columns: 1fr;
  }
}

/* 操作指南嵌入版（App WebView 用，無 header/footer） */
body.guide-embed-page {
  background: var(--white);
}

body.guide-embed-page .guide-embed-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

body.guide-embed-page .guide-embed-header img {
  height: 26px;
}

body.guide-embed-page main {
  padding: 24px 0 48px;
}

body.guide-embed-page .container {
  width: min(calc(100% - 32px), 640px);
}

body.guide-embed-page .guide-grid {
  grid-template-columns: 1fr;
  gap: 20px;
}

/* ================= 333 計畫頁面內文 ================= */
.plan-content {
  max-width: 760px;
  margin: 0 auto;
}

.plan-section {
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.plan-section:first-of-type {
  padding-top: 0;
  border-top: none;
}

.plan-section h2 {
  margin-bottom: 16px;
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
}

.plan-section p {
  color: var(--muted);
}

.plan-section p+p {
  margin-top: 12px;
}

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

.plan-list li {
  position: relative;
  padding-left: 30px;
  color: var(--muted);
  line-height: 1.7;
}

.plan-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
}

ol.plan-list {
  counter-reset: plan-counter;
}

ol.plan-list li {
  counter-increment: plan-counter;
  padding-left: 34px;
}

ol.plan-list li::before {
  content: counter(plan-counter);
  top: -1px;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-size: .72rem;
  font-weight: 800;
}

.plan-notice {
  margin: 18px 0;
  padding: 18px 22px;
  border-left: 3px solid var(--orange);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: var(--soft);
  color: var(--ink);
  font-size: .95rem;
  line-height: 1.75;
}

.plan-timeline {
  display: grid;
  gap: 12px;
  margin: 18px 0;
}

.plan-timeline-item {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  background: var(--soft);
}

.plan-timeline-item .timeline-date {
  flex: 0 0 auto;
  min-width: 84px;
  color: var(--orange);
  font-weight: 800;
}

.plan-timeline-item .timeline-event {
  color: var(--ink);
}

.guide-card__thumb,
.guide-card__meta {
  display: block;
}

/* ================= 法務頁面 (隱私權政策 / 服務使用條款 / 用戶資料刪除說明) ================= */
.policy-hero {
  padding: calc(var(--header-height) + 72px) 0 64px;
  color: var(--white);
  background: var(--ink);
}

.policy-hero .container>* {
  max-width: 760px;
}

.policy-hero .hero-label {
  color: rgba(255, 255, 255, .68);
}

.policy-hero h1 {
  margin-bottom: 0;
  color: var(--white);
}

.policy-hero p:not(.hero-label) {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: 1.05rem;
  line-height: 1.75;
}

.policy-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 72px 24px 96px;
}

.policy-lead {
  margin-bottom: 44px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
  color: #3d3d3d;
  font-size: 1.05rem;
  line-height: 1.85;
}

.policy-section {
  padding: 40px 0;
  border-top: 1px solid var(--line);
}

.policy-section:first-of-type {
  padding-top: 0;
  border-top: none;
}

.policy-section h2 {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: 1.5rem;
  font-weight: 720;
  line-height: 1.3;
  letter-spacing: -.03em;
}

.policy-section h3 {
  margin: 28px 0 10px;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.4;
}

.policy-section h3:first-of-type {
  margin-top: 20px;
}

.policy-section p {
  margin: 0 0 14px;
  color: #3d3d3d;
  line-height: 1.85;
}

.policy-section p:last-child {
  margin-bottom: 0;
}

.policy-section ul,
.policy-section ol {
  margin: 0 0 14px;
  padding-left: 22px;
  color: #3d3d3d;
  line-height: 1.85;
}

.policy-section li {
  margin-bottom: 6px;
}

.policy-section li:last-child {
  margin-bottom: 0;
}

.policy-section a {
  color: var(--orange-dark);
  font-weight: 600;
  text-underline-offset: 2px;
}

.policy-section a:hover,
.policy-section a:focus-visible {
  color: var(--orange);
}

/* 步驟列表（透過 Facebook 移除 App） */
.step-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  background: var(--soft);
}

.step-number {
  display: grid;
  flex: none;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: var(--white);
  background: var(--orange);
  font-size: .85rem;
  font-weight: 700;
}

.step-text {
  color: var(--ink);
  font-size: .96rem;
}

/* 刪除範圍清單 */
.range-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 20px;
}

.range-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: var(--soft);
}

.check-icon {
  flex: none;
  width: 18px;
  height: 18px;
  color: var(--orange);
}

.range-text {
  color: var(--ink);
  font-size: .92rem;
}

/* 聯絡資訊卡片（email） */
.contact-block {
  margin: 20px 0;
  padding: 24px;
  border-radius: var(--radius-md);
  background: var(--soft);
}

.contact-block p {
  color: #3d3d3d;
}

.email-wrapper {
  margin-bottom: 14px;
}

.email-card {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  color: var(--white);
  background: var(--orange);
  font-weight: 700;
  text-decoration: none;
  transition: background-color .2s ease, transform .2s ease;
}

.email-card:hover,
.email-card:focus-visible {
  background: var(--orange-dark);
  transform: translateY(-1px);
}

.email-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.info-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 14px;
}

.info-item {
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  background: var(--white);
  color: #3d3d3d;
  font-size: .92rem;
  line-height: 1.6;
}

@media (max-width: 680px) {
  .policy-hero {
    padding: calc(var(--header-height) + 48px) 0 48px;
  }

  .policy-container {
    padding: 48px 24px 64px;
  }

  .policy-section h2 {
    font-size: 1.3rem;
  }

  .range-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= App 下載徽章 (App Store / Google Play) ================= */
.app-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.app-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px 9px 13px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .16);
  color: var(--white);
  background: #000000;
  text-decoration: none;
  transition: transform .2s ease, background-color .2s ease;
}

.app-badge:hover,
.app-badge:focus-visible {
  background: #1c1c1c;
  transform: translateY(-2px);
}

.app-badge__icon {
  flex: none;
  width: 26px;
  height: 26px;
}

.app-badge__text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.app-badge__text small {
  color: rgba(255, 255, 255, .78);
  font-size: .6rem;
  font-weight: 400;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.app-badge__text strong {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -.01em;
}

.app-badge__soon {
  position: absolute;
  top: -10px;
  right: -8px;
  padding: 3px 9px;
  border-radius: 999px;
  color: var(--white);
  background: var(--orange);
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .02em;
  white-space: nowrap;
  box-shadow: 0 3px 8px rgba(0, 0, 0, .3);
}

/* Footer 品牌欄內的下載徽章，尺寸略縮小 */
.unified-footer__app-badges {
  margin-top: 22px;
}

.unified-footer__app-badges .app-badge {
  padding: 7px 14px 7px 11px;
}

.unified-footer__app-badges .app-badge__icon {
  width: 22px;
  height: 22px;
}

.unified-footer__app-badges .app-badge__text strong {
  font-size: .92rem;
}

/* ================= App 下載區塊（首頁／功能特色頁共用） ================= */
.app-download-section {
  overflow: hidden;
  color: var(--white);
  background: #535353;
}

.app-download-layout {
  display: grid;
  align-items: center;
  gap: 60px;
  grid-template-columns: 1.05fr .95fr;
}

.app-download-copy .section-label {
  color: var(--orange);
}

.app-download-copy h2 {
  color: var(--white);
}

.app-download-copy>p {
  max-width: 520px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, .78);
  font-size: 1.05rem;
  line-height: 1.75;
}

.app-download-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 20px;
  margin-bottom: 14px;
}

.app-download-note {
  color: rgba(255, 255, 255, .56);
  font-size: .88rem;
}

.app-download-media {
  display: grid;
  place-items: center;
  margin: 0;
}

.app-download-media img {
  width: 100%;
  height: auto;
  max-width: 480px;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

@media (max-width: 900px) {
  .app-download-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .app-download-copy>p {
    margin-inline: auto;
  }

  .app-download-badges {
    justify-content: center;
  }

  .app-download-media {
    order: -1;
  }

  .app-download-media img {
    max-width: 320px;
  }
}

@media (max-width: 480px) {
  .app-download-media img {
    max-width: 280px;
  }
}

/* Pricing feature list: unavailable items */
.pricing-feature-list .feature-no {
  color: #b0b5be;
  opacity: 0.7;
}
