:root {
  --ink: #142635;
  --ink-soft: #284154;
  --sand: #f2ede5;
  --ivory: #faf8f4;
  --stone: #8c867f;
  --line: rgba(20, 38, 53, 0.14);
  --line-strong: rgba(20, 38, 53, 0.24);
  --white: #ffffff;
  --text: #18242f;
  --muted: #5d6974;
  --blue-root: #2d7ff9;
  --blue-root-soft: #78b6ff;
  --blue-root-deep: #0b4eb8;
  --max: 1240px;
  --shadow: 0 28px 70px rgba(20, 38, 53, 0.09);
  --radius: 28px;
  --text-panel-bg: rgba(255, 255, 255, 0.62);
  --text-panel-border: rgba(255, 255, 255, 0.84);
  --sequence-vh: 100lvh;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  display: block;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.page-shell {
  position: relative;
  overflow-x: clip;
  isolation: isolate;
  background: var(--white);
}

main,
.section,
.hero,
.site-footer {
  position: relative;
}

main,
.site-footer {
  z-index: 3;
}

.container {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.site-footer .container {
  z-index: 2;
}


.section {
  padding: 120px 0;
}

.section-ivory,
.section-dark,
.final-cta,
.site-footer,
.hero,
.section {
  background: var(--white) !important;
}

.section-dark,
.final-cta {
  color: var(--text);
}

.section-root-message {
  padding-top: 48px;
  padding-bottom: 48px;
}

.hero {
  padding: 48px 0 120px;
  min-height: 100svh;
  display: flex;
  align-items: center;
}

.hero-grid,
.editorial-grid,
.split-feature,
.proof-layout,
.final-box {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 72px;
  align-items: center;
}

.hero-grid {
  grid-template-columns: minmax(0, 7fr) minmax(320px, 3fr);
  gap: clamp(32px, 4vw, 72px);
  align-items: start;
}

.signature-row {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 34px;
}

.brand-mark {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(20, 38, 53, 0.08);
  background: rgba(255, 255, 255, 0.72);
  display: grid;
  place-items: center;
}

.brand-mark img,
.footer-brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.signature-text span,
.footer-brand strong {
  display: block;
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.signature-text small,
.footer-brand span,
.site-footer a {
  color: var(--muted);
  font-size: 0.9rem;
}

.kicker {
  margin: 0 0 20px;
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-soft);
}

.kicker.center {
  text-align: center;
}

.kicker.light {
  color: rgba(255, 255, 255, 0.72);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: -0.04em;
  line-height: 0.98;
  color: inherit;
}

h1 {
  font-size: clamp(3.5rem, 7vw, 6.6rem);
  max-width: 10.5ch;
}

h2 {
  font-size: clamp(2.35rem, 4vw, 4.35rem);
  max-width: 12ch;
}

h3 {
  font-size: 1.9rem;
}

h1,
h2 {
  max-width: none;
  text-wrap: balance;
}

.hero-copy,
.section-copy,
.proof-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-copy > :where(.kicker, h1, .hero-lead, .hero-support, .hero-actions, .hero-meta),
.section-copy > :where(.kicker, h2, p, .capability-list),
.proof-copy > :where(.kicker, h2, p, .quote-block, .proof-actions) {
  width: min(100%, 44rem);
}

.hero-copy > :where(.kicker, h1, .hero-lead, .hero-support, .hero-actions, .hero-meta) {
  width: 100%;
  max-width: none;
}

.hero-copy h1,
.section-copy h2,
.proof-copy h2 {
  margin-bottom: clamp(18px, 2.4vw, 30px);
}

.hero-lead {
  margin-top: 0;
}

.statement-block h2,
.root-message h2,
.faq-head h2,
.final-box h2 {
  max-width: min(100%, 35ch);
  text-wrap: balance;
}

p {
  margin: 0;
  font-size: 1.02rem;
  color: var(--muted);
}

.hero-lead {
  margin-top: 26px;
  max-width: 42rem;
  font-size: 1.18rem;
  color: var(--text);
}

.hero-support,
.section-copy p + p,
.proof-copy p + p,
.statement-block p {
  margin-top: 18px;
}

.hero-actions,
.proof-actions,
.final-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover,
.floating-whatsapp:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 18px 40px rgba(20, 38, 53, 0.14);
}

.btn-primary:hover {
  box-shadow: 0 22px 48px rgba(20, 38, 53, 0.18);
}

.btn-secondary,
.btn-ghost {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--ink);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.64);
  backdrop-filter: blur(10px);
}

.btn-light {
  background: var(--white);
  color: var(--ink);
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
  background: transparent;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.hero-meta strong,
.capability-list strong,
.ruled-list h3,
.process-item h3,
.pillar h3,
.quote-block p,
.root-message h2 {
  color: var(--text);
}

.hero-meta strong,
.capability-list strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.98rem;
}

.hero-meta span {
  display: block;
  color: var(--muted);
  font-size: 0.95rem;
}

.editorial-frame {
  overflow: hidden;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(242, 237, 229, 0.95));
  border: 1px solid rgba(20, 38, 53, 0.08);
  box-shadow: var(--shadow);
}

.editorial-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-frame {
  aspect-ratio: auto;
  min-height: clamp(560px, 78vh, 900px);
  padding: clamp(12px, 1.6vw, 20px);
  display: grid;
  place-items: center;
}

.main-frame img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: min(78vh, 860px);
  object-fit: contain;
  object-position: center center;
}

.hero-video-frame {
  width: 100%;
  max-width: 420px;
  min-height: clamp(560px, 78vh, 860px);
  margin-inline: auto;
  padding: clamp(12px, 1.4vw, 18px);
}

.hero-video-embed {
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: 9 / 16;
  max-height: none;
  border-radius: calc(var(--radius) - 10px);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.32);
}

.hero-video-poster {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)), url("https://i.ytimg.com/vi/XmHpx8ZhV1w/hqdefault.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  transition: opacity 0.35s ease;
}

.hero-video-embed.is-loading::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.14) 50%, rgba(255,255,255,0) 100%);
  transform: translateX(-100%);
  animation: videoShimmer 1.35s linear infinite;
}

.hero-video-embed.is-ready .hero-video-poster,
.hero-video-embed.is-ready::after {
  opacity: 0;
  animation: none;
  pointer-events: none;
}

.hero-video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.secondary-frame,
.tertiary-frame {
  aspect-ratio: 0.78;
}

.hero-visual {
  display: grid;
  gap: 24px;
  width: 100%;
  max-width: 460px;
  justify-self: end;
}

.hero-aside {
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
}

.aside-label {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
}

.hero-aside p {
  max-width: 34rem;
}

.editorial-grid {
  align-items: start;
}

.ruled-list {
  border-top: 1px solid var(--line-strong);
}

.ruled-list article {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.ruled-list span,
.pillar span,
.process-item strong {
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.ruled-list h3 {
  margin-bottom: 6px;
  font-size: 1.6rem;
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.statement-block {
  max-width: 900px;
  text-align: center;
  margin-bottom: 56px;
}

.statement-block h2,
.root-message h2 {
  margin: 0 auto;
}

.statement-block h2 {
  max-width: min(100%, 35ch);
}

.root-message h2 {
  max-width: 14ch;
}

.statement-block p,
.root-message p {
  max-width: 54rem;
  margin-inline: auto;
}

.examples-actions {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.examples-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.example-card {
  display: grid;
  gap: 18px;
}

.example-video-frame {
  padding: clamp(12px, 1.4vw, 18px);
}

.example-video {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  aspect-ratio: 9 / 16;
  border: 0;
  border-radius: calc(var(--radius) - 10px);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.32);
  cursor: pointer;
}

.example-video-poster {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)), var(--poster-image);
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.example-video.is-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 38, 53, 0.08) 0%, rgba(20, 38, 53, 0.18) 100%);
}

.example-video-play {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 78px;
  height: 78px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: rgba(20, 38, 53, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.26);
  box-shadow: 0 18px 36px rgba(20, 38, 53, 0.28);
  z-index: 1;
  transition: transform 0.2s ease, background 0.2s ease;
}

.example-video-play svg {
  width: 34px;
  height: 34px;
  margin-left: 4px;
}

.example-video.is-poster:hover .example-video-play {
  transform: translate(-50%, -50%) scale(1.04);
  background: rgba(20, 38, 53, 0.9);
}

.example-video-player {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: calc(var(--radius) - 10px);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.32);
}

.example-video iframe,
.example-video-player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.example-card-copy {
  display: grid;
  gap: 8px;
}

.example-card-copy h3 {
  font-size: 1.5rem;
  color: var(--text);
}

.example-card-copy p {
  font-size: 0.98rem;
}

.statement-block--results {
  margin-bottom: 0;
}

.pillars-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.pillar,
.process-item {
  padding: 30px 0 0;
  border-top: 1px solid var(--line-strong);
}

.pillar h3,
.process-item h3 {
  margin: 12px 0 10px;
}

.section-dark p,
.section-dark .process-item strong,
.section-dark .kicker,
.final-cta p,
.final-cta .kicker,
.site-footer a,
.site-footer span {
  color: var(--muted);
}

.capability-list {
  display: grid;
  gap: 22px;
  margin-top: 28px;
}

.capability-list div {
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.split-feature--how-it-works {
  align-items: center;
}

.how-it-works-frame {
  height: 100%;
  min-height: 720px;
}

.how-it-works-steps {
  margin-top: 56px;
}

.process-grid--how-it-works {
  gap: 32px;
}

.process-grid--how-it-works .process-item {
  padding-top: 26px;
}


#como-funciona .section-copy h2,
#como-funciona .process-item h3,
.final-box h2 {
  color: var(--text);
}

#como-funciona .process-item,
.final-box {
  border-top-color: var(--line-strong);
}

#como-funciona .editorial-frame {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(20, 38, 53, 0.12);
  box-shadow: 0 28px 70px rgba(20, 38, 53, 0.14);
}
#como-funciona .section-copy h2 {
  max-width: 25ch;
}

.root-message {
  text-align: center;
  padding: 40px 48px;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  background: var(--white);
  box-shadow: none;
  backdrop-filter: none;
}

.root-message p {
  margin-top: 18px;
}

.quote-block {
  margin: 34px 0;
  padding: 28px 0 0;
  border-top: 1px solid var(--line-strong);
}

.quote-block p {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  line-height: 1.15;
  color: var(--ink);
}

.faq-shell {
  max-width: 900px;
}

.faq-head {
  text-align: center;
  margin-bottom: 42px;
}

.faq-head h2 {
  max-width: none;
}

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

.faq-item {
  padding: 0 0 18px;
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 14px 34px 0 0;
  position: relative;
  color: var(--text);
  font-weight: 600;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 14px;
  color: var(--ink-soft);
  font-size: 1.2rem;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin-top: 12px;
  max-width: 56rem;
}

.final-box {
  padding: 56px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.final-box h2 {
  max-width: 11ch;
}

.final-side {
  display: grid;
  gap: 24px;
  justify-items: start;
}

.site-footer {
  padding: 34px 0 42px;
  border-top: 1px solid rgba(20, 38, 53, 0.08);
  background: transparent;
  backdrop-filter: none;
}

.footer-wrap,
.footer-brand,
.footer-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-brand {
  justify-content: flex-start;
}

.footer-links {
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-wrap a {
  color: var(--ink);
}

body > .floating-whatsapp {
  position: fixed !important;
  right: max(18px, env(safe-area-inset-right)) !important;
  bottom: max(18px, env(safe-area-inset-bottom)) !important;
  left: auto !important;
  top: auto !important;
  z-index: 99999 !important;
  width: 62px;
  height: 62px;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #234f7f 0%, #10273f 55%, #0a1c2f 100%);
  color: #ffffff;
  box-shadow:
    0 18px 40px rgba(7, 24, 44, 0.38),
    0 0 0 1px rgba(120, 182, 255, 0.12),
    0 0 28px rgba(45, 127, 249, 0.22);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transform: none !important;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

body > .floating-whatsapp:hover {
  transform: translateY(-2px) scale(1.03) !important;
  background: linear-gradient(180deg, #2b5f95 0%, #143453 55%, #0b2137 100%);
  box-shadow:
    0 22px 48px rgba(7, 24, 44, 0.42),
    0 0 0 1px rgba(185, 218, 255, 0.18),
    0 0 34px rgba(45, 127, 249, 0.28);
}

body > .floating-whatsapp svg {
  width: 30px;
  height: 30px;
  display: block;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay {
  transition-delay: 0.1s;
}

.reveal-delay-1 {
  transition-delay: 0.08s;
}

.reveal-delay-2 {
  transition-delay: 0.16s;
}

@media (max-width: 1080px) {
  .hero-copy > :where(.kicker, h1, .hero-lead, .hero-support, .hero-actions, .hero-meta),
  .section-copy > :where(.kicker, h2, p, .capability-list),
  .proof-copy > :where(.kicker, h2, p, .quote-block, .proof-actions) {
    width: 100%;
  }

  .hero-grid,
  .editorial-grid,
  .split-feature,
  .proof-layout,
  .final-box,
  .pillars-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 36px;
  }

  .statement-block {
    margin-bottom: 44px;
  }

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

  .example-card {
    max-width: 420px;
    width: 100%;
    margin-inline: auto;
  }

  .hero-meta {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 760px) {
  .main-frame {
    min-height: 0;
  }

  .main-frame img {
    width: 100%;
    height: auto;
    max-height: none;
  }

  .hero-video-embed {
    width: 100%;
    max-width: min(100%, 420px);
    max-height: none;
  }

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

  .section {
    padding: 84px 0;
  }

  h1 {
    font-size: clamp(3rem, 13vw, 4.5rem);
  }

  h2 {
    font-size: clamp(2.15rem, 10vw, 3.2rem);
  }

  .hero-grid,
  .editorial-grid,
  .split-feature,
  .proof-layout,
  .final-box {
    gap: 40px;
  }

  .how-it-works-frame {
    min-height: 0;
  }

  .how-it-works-steps {
    margin-top: 36px;
  }

  .signature-row {
    margin-bottom: 28px;
  }

  .hero-actions,
  .proof-actions,
  .final-actions,
  .examples-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .example-video-play {
    width: 68px;
    height: 68px;
  }

  .btn {
    width: 100%;
  }

  .ruled-list article {
    grid-template-columns: 44px 1fr;
    gap: 14px;
  }

  .ruled-list h3 {
    font-size: 1.28rem;
  }

  .quote-block p {
    font-size: 1.65rem;
  }

  .root-message {
    padding: 32px 22px;
  }

  .footer-wrap,
  .footer-links {
    flex-direction: column;
    align-items: flex-start;
  }


  body > .floating-whatsapp {
    right: 16px !important;
    bottom: 16px !important;
    width: 58px;
    height: 58px;
  }

  body > .floating-whatsapp svg {
    width: 28px;
    height: 28px;
  }
}

.editorial-frame,
.btn-ghost,
.brand-mark {
  background: var(--white) !important;
  backdrop-filter: none !important;
}

.final-box {
  border-top-color: var(--line-strong) !important;
  border-bottom-color: var(--line-strong) !important;
}


.section::before, .section::after, .hero::before, .hero::after {
  background: transparent !important;
}

body {
  background: #ffffff;
}

.scroll-sequence {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100lvh;
  height: max(var(--sequence-vh), 100lvh);
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background: #ffffff url("pc/frame-001.webp") left top / cover no-repeat;
  opacity: 1;
}

body.sequence-ready .scroll-sequence {
  opacity: 1;
}

.scroll-sequence-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: left top;
  transform: translate3d(0, 0, 0);
  transform-origin: top left;
  will-change: transform;
  backface-visibility: hidden;
}

.scroll-sequence-video--mobile {
  display: none;
}

.scroll-sequence-video--pc {
  display: block;
}

@keyframes videoShimmer {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}

.page-shell {
  position: relative;
  z-index: 1;
  background: transparent;
}

.hero,
.section,
.section-ivory,
.section-dark,
.final-cta,
.site-footer {
  background: transparent !important;
}

.hero {
  padding-top: 24px;
}

.hero-copy {
  padding-top: 8px;
}

.container,
.root-message,
.faq-shell,
.final-box {
  position: relative;
  z-index: 2;
}

@media (max-width: 1080px) {
  .hero {
    padding-top: 18px;
  }
}

@media (max-width: 760px) {
  :root {
    --text-panel-bg: rgba(255, 255, 255, 0.68);
  }

  .hero {
    padding-top: 12px;
  }

  .scroll-sequence {
    background-image: url("celular/frame-001.webp");
  }

  .scroll-sequence-video--pc {
    display: none;
  }

  .scroll-sequence-video--mobile {
    display: block;
  }
}


.hero-copy,
.section-copy,
.statement-block,
.proof-copy,
.hero-aside,
.root-message,
.faq-head,
.faq-item,
.final-box,
.ruled-list,
.pillar,
.process-item,
.capability-list > div,
.example-card-copy,
.footer-brand,
.footer-links a {
  background: var(--text-panel-bg);
  border: 1px solid var(--text-panel-border);
  box-shadow: 0 12px 28px rgba(20, 38, 53, 0.08);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.hero-copy,
.section-copy,
.statement-block,
.proof-copy,
.root-message,
.faq-head,
.final-box {
  border-radius: calc(var(--radius) - 6px);
  padding: clamp(22px, 2.4vw, 34px);
}

.hero-aside,
.footer-brand,
.footer-links a,
.pillar,
.process-item,
.capability-list > div,
.example-card-copy,
.faq-item {
  border-radius: 24px;
  padding: clamp(18px, 2vw, 24px);
}

.ruled-list {
  border-radius: calc(var(--radius) - 4px);
  padding: 0 clamp(18px, 2vw, 24px);
}

.footer-links {
  gap: 12px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
}


.hero-aside,
.pillar,
.process-item,
.capability-list div,
.example-card-copy,
.faq-item {
  border-top: none;
}

.faq-item {
  border-bottom: none;
}
