:root {
  --cyan: #3fd4e8;
  --cyan-deep: #1aa8c4;
  --blue: #0b5bd3;
  --blue-deep: #063a8f;
  --navy: #041833;
  --ink: #0a1f36;
  --paper: #f3f7fb;
  --mist: #e7f1f8;
  --white: #ffffff;
  --text: #0a1f36;
  --muted: rgba(10, 31, 54, 0.68);
  --line: rgba(11, 91, 211, 0.14);
  --line-strong: rgba(26, 168, 196, 0.35);
  --surface: rgba(255, 255, 255, 0.78);
  --surface-solid: #ffffff;
  --gradient: linear-gradient(115deg, var(--cyan) 0%, var(--blue) 55%, var(--blue-deep) 100%);
  --gradient-hero: linear-gradient(145deg, #052447 0%, #041833 42%, #0a3d8f 100%);
  --font-display: "Syne", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Manrope", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --max: 1160px;
  --radius: 16px;
  --radius-sm: 12px;
  --header-h: 4.5rem;
  --shadow-soft: 0 18px 40px rgba(4, 24, 51, 0.1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--blue);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--cyan-deep);
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-shell {
  min-height: 100vh;
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(900px 420px at 92% -4%, rgba(63, 212, 232, 0.18), transparent 58%),
    radial-gradient(720px 380px at 4% 12%, rgba(11, 91, 211, 0.12), transparent 55%),
    var(--paper);
}

.site-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(11, 91, 211, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 91, 211, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 50% 20%, black 10%, transparent 72%);
}

.site-header,
.site-main,
.site-footer {
  position: relative;
  z-index: 1;
}

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: relative;
  top: auto;
  z-index: 50;
  padding: 0.7rem 0;
  backdrop-filter: blur(14px);
  background: rgba(243, 247, 251, 0.9);
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 24px rgba(4, 24, 51, 0.06);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  flex-wrap: nowrap;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  letter-spacing: -0.03em;
  text-decoration: none;
  color: var(--navy);
  min-width: 0;
}

.brand__mark {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  overflow: hidden;
  flex-shrink: 0;
  transform: translateZ(0);
  box-shadow: 0 10px 22px rgba(11, 91, 211, 0.22);
}

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

.brand__text span {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-primary {
  display: flex;
  gap: 1.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.95rem;
  font-weight: 600;
}

.nav-primary a {
  text-decoration: none;
  color: var(--muted);
}

.nav-primary a:hover,
.nav-primary .current-menu-item > a {
  color: var(--navy);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
}

.header-account {
  display: inline-grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  color: var(--navy);
  background: rgba(11, 91, 211, 0.08);
  border: 1px solid rgba(11, 91, 211, 0.12);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.header-account:hover,
.header-account:focus-visible {
  background: rgba(11, 91, 211, 0.14);
  color: var(--blue);
  outline: none;
}

.header-account__icon {
  display: grid;
  place-items: center;
}

.footer-social {
  display: flex !important;
  flex-wrap: wrap;
  gap: 0.55rem;
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
}

.footer-social li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-social__link {
  display: inline-grid !important;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  color: #041833 !important;
  background: rgba(11, 91, 211, 0.08);
  border: 1px solid rgba(11, 91, 211, 0.12);
  text-decoration: none !important;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.footer-social__link:hover {
  background: linear-gradient(115deg, #3fd4e8, #0b5bd3);
  color: #fff !important;
  transform: translateY(-2px);
}

.footer-social__link .lwcd-social-icon,
.lwcd-social-icon {
  display: block !important;
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  fill: currentColor !important;
  color: inherit !important;
  overflow: visible !important;
}

.footer-social-bar {
  padding: 1rem 0 1.5rem;
  border-top: 1px solid rgba(11, 91, 211, 0.12);
  background: #f3f7fb;
}

.footer-social-bar .footer-social {
  margin: 0;
  justify-content: center;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--navy);
  padding: 0;
  cursor: pointer;
}

.nav-toggle__bars,
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: currentColor;
  border-radius: 2px;
  position: relative;
}

.nav-toggle__bars::before,
.nav-toggle__bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle__bars::before { top: -6px; }
.nav-toggle__bars::after { top: 6px; }

/* Buttons — not pills */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.3rem;
  font: 700 0.95rem/1 var(--font-body);
  border: 1px solid transparent;
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: transform 0.2s ease, filter 0.2s ease, border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

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

.btn--primary {
  background: var(--gradient);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(11, 91, 211, 0.28);
}

.btn--primary:hover {
  color: var(--white);
  filter: brightness(1.05);
}

.btn--ghost {
  border-color: var(--line-strong);
  color: var(--navy);
  background: rgba(255, 255, 255, 0.7);
}

.btn--ghost:hover {
  border-color: var(--cyan-deep);
  color: var(--blue-deep);
}

.btn--nav {
  display: none;
  padding: 0.65rem 1rem;
  font-size: 0.88rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  display: grid;
  align-items: center;
  padding: 3rem 0 4.5rem;
  overflow: hidden;
  color: #eaf4fb;
  background: var(--gradient-hero);
  border-radius: 0 0 28px 28px;
}

.hero__atmosphere {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero__mesh {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background:
    linear-gradient(115deg, transparent 28%, rgba(63, 212, 232, 0.28) 100%),
    radial-gradient(circle at 78% 28%, rgba(63, 212, 232, 0.35), transparent 42%);
  animation: heroDrift 16s ease-in-out infinite alternate;
}

.hero__orb {
  position: absolute;
  border-radius: 40% 60% 55% 45%;
  filter: blur(2px);
  opacity: 0.45;
}

.hero__orb--a {
  width: min(34vw, 300px);
  aspect-ratio: 1;
  top: 10%;
  right: 4%;
  background: radial-gradient(circle at 30% 30%, rgba(63, 212, 232, 0.7), rgba(11, 91, 211, 0.15) 70%);
  animation: floatY 9s ease-in-out infinite;
}

.hero__orb--b {
  width: min(24vw, 200px);
  aspect-ratio: 1;
  bottom: 14%;
  right: 22%;
  background: radial-gradient(circle at 40% 40%, rgba(11, 91, 211, 0.55), transparent 70%);
  animation: floatY 11s ease-in-out infinite reverse;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 960px) {
  .hero__grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: 2.5rem;
  }
}

.hero__content {
  max-width: 36rem;
  text-align: left;
  justify-self: start;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 0.85rem;
  padding: 0.35rem 0.7rem;
  border-radius: 10px;
  border: 1px solid rgba(63, 212, 232, 0.28);
  background: rgba(4, 24, 51, 0.35);
  color: rgba(234, 244, 251, 0.88);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  animation: riseIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero__stage {
  position: relative;
  width: min(100%, 380px);
  margin-inline: auto;
  perspective: 900px;
  transform-style: preserve-3d;
  justify-self: end;
}

.hero-stack {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  transform-style: preserve-3d;
  transform: rotateX(18deg) rotateY(-22deg);
  animation: stackFloat 7s ease-in-out infinite;
}

.hero-stack__layer {
  position: absolute;
  inset: 8%;
  border-radius: 22px;
  border: 1px solid rgba(63, 212, 232, 0.28);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.12), rgba(11, 91, 211, 0.25));
  box-shadow: 0 24px 50px rgba(3, 16, 31, 0.35);
  backdrop-filter: blur(8px);
}

.hero-stack__layer--back {
  transform: translateZ(-48px) scale(0.92);
  opacity: 0.55;
}

.hero-stack__layer--mid {
  inset: 14%;
  transform: translateZ(0);
  display: grid;
  gap: 0.55rem;
  align-content: center;
  padding: 1.25rem;
}

.hero-stack__layer--mid span {
  display: block;
  height: 10px;
  border-radius: 6px;
  background: linear-gradient(90deg, rgba(63, 212, 232, 0.55), rgba(255, 255, 255, 0.12));
}

.hero-stack__layer--mid span:nth-child(2) { width: 78%; }
.hero-stack__layer--mid span:nth-child(3) { width: 58%; }

.hero-stack__layer--front {
  inset: 22%;
  transform: translateZ(56px);
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(4, 24, 51, 0.92), rgba(11, 91, 211, 0.55));
}

.hero-stack__layer--front img {
  width: 48%;
  height: auto;
  border-radius: 14px;
}

.hero__brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 6.5vw, 4.6rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
  margin: 0 0 1rem;
  color: #fff;
  animation: riseIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero__brand span {
  background: linear-gradient(115deg, #7be7f4, #3fd4e8 40%, #6ea8ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.2rem, 2.2vw, 1.65rem);
  letter-spacing: -0.02em;
  margin: 0 0 0.85rem;
  color: #eaf4fb;
  max-width: 28ch;
  animation: riseIn 0.9s 0.08s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero__lead {
  margin: 0 0 1.5rem;
  color: rgba(234, 244, 251, 0.78);
  font-size: 1.02rem;
  max-width: 34rem;
  animation: riseIn 0.9s 0.14s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  animation: riseIn 0.9s 0.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  list-style: none;
  margin: 1.35rem 0 0;
  padding: 0;
  animation: riseIn 0.9s 0.26s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero__pills li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.7rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(63, 212, 232, 0.2);
  color: rgba(234, 244, 251, 0.9);
  font-size: 0.82rem;
  font-weight: 600;
}

.hero .btn--ghost {
  color: #eaf4fb;
  border-color: rgba(63, 212, 232, 0.4);
  background: rgba(4, 24, 51, 0.35);
}

.hero .btn--ghost:hover {
  color: #fff;
  border-color: var(--cyan);
}

/* Icons */
.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  color: inherit;
  flex-shrink: 0;
  line-height: 0;
  font-size: 0;
}

.icon svg {
  display: block;
  width: 100%;
  height: 100%;
  flex-shrink: 0;
}

.icon--sm {
  width: 1rem;
  height: 1rem;
}

.icon-badge {
  position: relative;
  box-sizing: border-box;
  display: block;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 0.85rem;
  padding: 0;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(63, 212, 232, 0.18), rgba(11, 91, 211, 0.12));
  border: 1px solid rgba(26, 168, 196, 0.28);
  color: var(--cyan-deep);
  line-height: 0;
  font-size: 0;
  flex-shrink: 0;
  overflow: hidden;
}

.icon-badge > .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.25rem;
  height: 1.25rem;
  margin: 0;
  padding: 0;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.icon-badge > .icon svg,
.icon-badge > svg {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: visible;
}

.icon-badge--sm {
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 0.55rem;
  border-radius: 12px;
}

.icon-badge--sm > .icon {
  width: 1.15rem;
  height: 1.15rem;
}

.home-strip__item .icon-badge,
.home-own__list .icon-badge,
.home-bento__card .icon-badge,
.pricing-showcase__benefit-icon {
  margin-bottom: 0;
}

.hero .icon-badge,
.hero__pills .icon {
  color: var(--cyan);
}

/* Bento features */
.feature-bento {
  display: grid;
  gap: 1rem;
  margin-top: 0.5rem;
}

@media (min-width: 800px) {
  .feature-bento {
    grid-template-columns: repeat(2, 1fr);
  }

  .bento-card--wide {
    grid-column: span 2;
  }
}

@media (min-width: 1100px) {
  .feature-bento {
    grid-template-columns: repeat(3, 1fr);
  }

  .bento-card--wide {
    grid-column: span 3;
  }
}

.bento-card {
  padding: 1.35rem 1.4rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.bento-card h3 {
  font-family: var(--font-display);
  margin: 0 0 0.45rem;
  color: var(--navy);
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.bento-card p {
  margin: 0;
  color: var(--muted);
}

.portal-panel__intro {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--line);
}

.portal-panel__intro h2 {
  font-family: var(--font-display);
  margin: 0 0 0.35rem;
  color: var(--navy);
}

.portal-panel__intro p {
  margin: 0;
  color: var(--muted);
}

/* Sections continue below */
/* Sections */
.section {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.section__eyebrow {
  margin: 0 0 0.7rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan-deep);
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.55rem);
  letter-spacing: -0.03em;
  margin: 0 0 0.75rem;
  max-width: 18ch;
  color: var(--navy);
}

.section__lead {
  margin: 0 0 2.25rem;
  color: var(--muted);
  max-width: 40rem;
}

.flow {
  display: grid;
  gap: 1.15rem;
}

@media (min-width: 800px) {
  .flow {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.35rem;
  }
}

.flow__item,
.trust-card,
.docs-block,
.pricing-card,
.portal-panel,
.post-teaser {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.flow__item {
  padding: 1.35rem 1.35rem 1.5rem;
}

.flow__index {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--cyan-deep);
  margin-bottom: 0.65rem;
}

.flow__item h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0 0 0.45rem;
  letter-spacing: -0.02em;
  color: var(--navy);
}

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

.feature-split {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .feature-split {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
  }
}

.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}

.feature-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.15rem 0.85rem;
  align-items: start;
  padding: 1.1rem 1.2rem;
}

.feature-list .icon-badge {
  grid-row: span 2;
  margin-bottom: 0;
}

.feature-list strong {
  grid-column: 2;
  display: block;
  font-family: var(--font-display);
  font-size: 1.08rem;
  margin-bottom: 0.25rem;
  color: var(--navy);
}

.feature-list span {
  grid-column: 2;
  color: var(--muted);
}

.trust-grid__items {
  display: grid;
  gap: 1.1rem;
  margin-top: 1.75rem;
}

@media (min-width: 800px) {
  .trust-grid__items {
    grid-template-columns: repeat(3, 1fr);
  }
}

.trust-card {
  padding: 1.35rem;
}

.trust-card h3 {
  font-family: var(--font-display);
  margin: 0 0 0.45rem;
  color: var(--navy);
}

.trust-card p {
  margin: 0;
  color: var(--muted);
}

.cta-band {
  padding: 2rem 0 4.5rem;
  position: relative;
}

.cta-band__inner {
  position: relative;
  display: grid;
  gap: 1.25rem;
  padding: clamp(1.5rem, 4vw, 2.25rem);
  background:
    linear-gradient(135deg, rgba(63, 212, 232, 0.1), rgba(11, 91, 211, 0.1)),
    #fff;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.cta-band__inner::before {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  right: -30px;
  top: -40px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.9), rgba(63, 212, 232, 0.35), transparent 70%);
  pointer-events: none;
}

@media (min-width: 800px) {
  .cta-band__inner {
    grid-template-columns: 1.4fr auto;
    align-items: center;
  }
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  letter-spacing: -0.03em;
  margin: 0 0 0.5rem;
  max-width: 16ch;
  color: var(--navy);
}

.cta-band p {
  margin: 0;
  color: var(--muted);
  max-width: 34rem;
}

/* Page chrome */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(2.5rem, 5vw, 3.5rem) 0 1.5rem;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.1rem);
  letter-spacing: -0.03em;
  margin: 0 0 0.7rem;
  color: var(--navy);
}

.page-hero p {
  margin: 0;
  color: var(--muted);
  max-width: 40rem;
}

.page-body {
  padding: 0 0 4rem;
}

.entry-content {
  max-width: 44rem;
}

.entry-content h2,
.entry-content h3 {
  font-family: var(--font-display);
  color: var(--navy);
  letter-spacing: -0.02em;
}

.post-teaser {
  padding: 1.25rem 1.35rem;
  margin-bottom: 1rem;
}

.post-teaser h2 {
  font-family: var(--font-display);
  margin: 0 0 0.4rem;
}

.post-teaser h2 a {
  text-decoration: none;
  color: var(--navy);
}

/* Docs / portal / pricing */
.docs-grid {
  display: grid;
  gap: 1.1rem;
}

@media (min-width: 800px) {
  .docs-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.docs-block {
  padding: 1.45rem 1.5rem;
  background: #fff;
  border-radius: 18px;
}

.docs-block h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin: 0 0 0.5rem;
  color: var(--navy);
}

.docs-block p,
.docs-block pre {
  color: var(--muted);
}

.docs-block pre {
  background: var(--navy);
  padding: 1rem;
  overflow: auto;
  border-radius: var(--radius-sm);
  color: #dff4fb;
  font-size: 0.84rem;
}

.portal-panel {
  padding: clamp(1.35rem, 3vw, 2rem);
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(11, 91, 211, 0.1);
  box-shadow:
    0 4px 6px rgba(4, 24, 51, 0.03),
    0 22px 48px rgba(4, 24, 51, 0.08);
}

.bento-card,
.flow__item,
.trust-card {
  background: #fff;
  border-radius: 18px;
}

.portal-shell .wplm-portal {
  max-width: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text);
}

.pricing-grid {
  display: grid;
  gap: 1.15rem;
}

@media (min-width: 900px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
}

/* ----- Pricing showcase (homepage + pricing page) ----- */
.pricing-showcase {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(3.75rem, 8vw, 6rem) 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(180, 220, 255, 0.55), transparent 70%),
    linear-gradient(180deg, #eaf4fc 0%, #f5f9fd 45%, #f3f7fb 100%);
}

.pricing-showcase__atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.pricing-showcase__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  background: radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.95), rgba(63, 212, 232, 0.35) 42%, rgba(11, 91, 211, 0.22) 70%, transparent 78%);
  box-shadow:
    inset 0 0 30px rgba(255, 255, 255, 0.45),
    0 20px 50px rgba(11, 91, 211, 0.12);
  animation: floatY 9s ease-in-out infinite;
}

.pricing-showcase__orb--a {
  width: 160px;
  height: 160px;
  top: 6%;
  left: 4%;
  opacity: 0.7;
}

.pricing-showcase__orb--b {
  width: 90px;
  height: 90px;
  top: 18%;
  right: 8%;
  opacity: 0.55;
  animation-delay: -2s;
}

.pricing-showcase__orb--c {
  width: 220px;
  height: 220px;
  bottom: 8%;
  left: -2%;
  opacity: 0.45;
  animation-delay: -4s;
}

.pricing-showcase__orb--d {
  width: 120px;
  height: 120px;
  bottom: 18%;
  right: 3%;
  opacity: 0.6;
  animation-delay: -1s;
}

.pricing-showcase__orb--e {
  width: 64px;
  height: 64px;
  top: 42%;
  left: 12%;
  opacity: 0.5;
  animation-delay: -3.5s;
}

.pricing-showcase__inner {
  position: relative;
  z-index: 1;
}

.pricing-showcase__header {
  text-align: center;
  max-width: 44rem;
  margin: 0 auto 2.75rem;
}

.pricing-showcase__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.15rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.12;
  margin: 0 0 1rem;
  color: var(--navy);
}

.pricing-showcase__brand {
  display: inline;
  background: linear-gradient(115deg, #1aa8c4 0%, #0b5bd3 55%, #063a8f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.pricing-showcase__lead {
  margin: 0 auto 1.75rem;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 38rem;
}

.pricing-showcase__benefits {
  list-style: none;
  margin: 0 0 clamp(1.75rem, 4vw, 2.5rem);
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  justify-content: stretch;
}

@media (min-width: 700px) {
  .pricing-showcase__benefits {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }
}

.pricing-showcase__benefits li {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  min-width: 0;
  text-align: left;
  box-sizing: border-box;
}

.pricing-showcase__benefit-icon {
  position: relative;
  display: block;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(63, 212, 232, 0.18);
  color: var(--blue);
  flex-shrink: 0;
  line-height: 0;
  overflow: hidden;
}

.pricing-showcase__benefit-icon .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: 0;
  transform: translate(-50%, -50%);
}

.pricing-showcase__benefit-icon .icon svg,
.pricing-showcase__benefit-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
}

.pricing-showcase__benefits strong {
  display: block;
  font-size: 0.92rem;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.25;
}

.pricing-showcase__benefits em {
  display: block;
  font-style: normal;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.4;
  margin-top: 0.15rem;
}

.pricing-showcase__grid {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .pricing-showcase__grid {
    grid-template-columns: repeat(var(--lwcd-pricing-cols, 3), minmax(0, 1fr));
    align-items: stretch;
    gap: 1.35rem;
  }

  .pricing-showcase--stacked .pricing-showcase__grid {
    grid-template-columns: 1fr;
    max-width: 34rem;
    margin-inline: auto;
  }
}

.pricing-card {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 1.45rem;
}

.pricing-card--showcase {
  position: relative;
  background: #fff;
  border: 1px solid rgba(11, 91, 211, 0.1);
  border-radius: var(--lwcd-pricing-radius, 18px);
  min-height: var(--lwcd-pricing-min-height, 0);
  box-shadow:
    0 4px 6px rgba(4, 24, 51, 0.03),
    0 22px 48px rgba(4, 24, 51, 0.08);
  padding: 1.75rem 1.6rem 1.6rem;
  gap: 1rem;
}

.pricing-card--featured {
  border-color: transparent;
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    var(--gradient) border-box;
  border: 2px solid transparent;
  transform: translateY(-10px);
  box-shadow:
    0 8px 16px rgba(11, 91, 211, 0.08),
    0 28px 56px rgba(4, 24, 51, 0.12);
}

.pricing-card__badge {
  position: absolute;
  top: -0.85rem;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: var(--gradient);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(11, 91, 211, 0.28);
}

.pricing-card__name {
  margin: 0.35rem 0 0;
  font-family: var(--font-display);
  font-size: var(--pricing-fs-title, 1.35rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.pricing-card__price {
  margin: 0;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.pricing-card__amount {
  font-family: var(--font-display);
  font-size: var(--pricing-fs-price, 1.75rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1;
}

.pricing-card__amount .woocommerce-Price-amount,
.pricing-card__amount bdi {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

.pricing-card__period,
.pricing-card__blurb {
  color: var(--muted);
}

.pricing-card__period {
  font-size: 0.95rem;
  font-weight: 600;
}

.pricing-card__blurb {
  margin: 0;
  min-height: 3.2em;
}

.pricing-card__features {
  margin: 0.25rem 0 0.5rem;
  padding: 0;
  list-style: none;
  flex: 1;
}

.pricing-card__features li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.85rem;
  color: var(--muted);
  border-top: 1px solid rgba(11, 91, 211, 0.08);
  font-size: 0.92rem;
  line-height: 1.4;
}

.pricing-card__features li:first-child {
  border-top: 0;
}

.pricing-card__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 12 4.5 4.5L19 7'/%3E%3C/svg%3E")
    center / 0.65rem no-repeat,
    linear-gradient(135deg, #3fd4e8, #0b5bd3);
}

.pricing-card .btn {
  width: 100%;
  margin-top: auto;
  justify-content: center;
  border-radius: 10px;
  font-weight: 700;
}

.pricing-showcase__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin: clamp(1.75rem, 3.5vw, 2.5rem) 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.pricing-showcase__trust-icon {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(11, 91, 211, 0.12);
  color: var(--blue);
  flex-shrink: 0;
}

.pricing-showcase__trust-icon .icon,
.pricing-showcase__trust-icon svg {
  width: 12px;
  height: 12px;
}

/* Soft atmosphere orbs for marketing sections */
.section--atmosphere,
.page-hero--orbs {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.section--atmosphere > .wrap,
.page-hero--orbs > .wrap {
  position: relative;
  z-index: 1;
}

.atmosphere-orbs,
.page-hero__orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.atmosphere-orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.9), rgba(63, 212, 232, 0.28) 45%, rgba(11, 91, 211, 0.15) 72%, transparent);
  filter: blur(1.5px);
  opacity: 0.55;
  animation: floatY 10s ease-in-out infinite;
}

.atmosphere-orb--sm {
  width: 72px;
  height: 72px;
  top: 12%;
  right: 8%;
}

.atmosphere-orb--md {
  width: 140px;
  height: 140px;
  bottom: 6%;
  left: 4%;
  animation-delay: -3s;
}

.atmosphere-orb--lg {
  width: 200px;
  height: 200px;
  top: 20%;
  left: -4%;
  opacity: 0.35;
  animation-delay: -5s;
}

.section--airy {
  background:
    radial-gradient(ellipse 70% 50% at 80% 10%, rgba(180, 220, 255, 0.35), transparent 60%),
    linear-gradient(180deg, rgba(243, 247, 251, 0.2), rgba(234, 244, 252, 0.55));
}

.section--tint {
  background:
    radial-gradient(ellipse 60% 40% at 10% 80%, rgba(63, 212, 232, 0.12), transparent 55%),
    linear-gradient(180deg, rgba(231, 241, 248, 0.9), rgba(243, 247, 251, 0.35));
  border-block: 1px solid var(--line);
}

.page-hero--orbs,
.page-hero--pricing {
  background:
    radial-gradient(ellipse 70% 60% at 90% 0%, rgba(180, 220, 255, 0.45), transparent 55%),
    transparent;
}

.faq-list {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.4rem;
  max-width: 46rem;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1rem;
  background: var(--white);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--navy);
  list-style: none;
}

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

.faq-item p {
  margin: 0.7rem 0 0;
  color: var(--muted);
}

/* 3D panel hover */
.panel-3d {
  transform: translateZ(0);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
  will-change: transform;
}

.panel-3d:hover {
  transform: translateY(-6px) rotateX(2deg);
  box-shadow: 0 22px 44px rgba(4, 24, 51, 0.12);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 2.5rem 0 1.75rem;
  background: linear-gradient(180deg, rgba(231, 241, 248, 0.65), #eaf2f8);
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer__grid {
  display: grid;
  gap: 1.5rem;
  padding-bottom: 1.5rem;
}

@media (min-width: 800px) {
  .site-footer__grid {
    grid-template-columns: 1.4fr 1fr;
    align-items: start;
  }
}

.site-footer__brand p {
  margin: 0.85rem 0 0;
  max-width: 34rem;
}

.site-footer .brand {
  font-size: 1.1rem;
}

.site-footer .brand__mark {
  width: 36px;
  height: 36px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.15rem;
}

.footer-nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
}

.footer-nav a:hover {
  color: var(--navy);
}

.site-footer__bar {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
}

.site-footer__bar > p:first-child {
  margin: 0;
  flex: 0 0 auto;
  white-space: nowrap;
  color: var(--muted, rgba(10, 31, 54, 0.68));
}

.site-footer__bar p {
  margin: 0;
}

.site-footer__credit {
  margin: 0;
  max-width: none;
  flex: 1 1 auto;
  text-align: end;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--muted, rgba(10, 31, 54, 0.68));
  letter-spacing: 0.01em;
}

.site-footer__studio {
  color: var(--blue, #0b5bd3);
  font-weight: 800;
  text-decoration: none;
  margin-inline: 0.2em;
}

.site-footer__studio:hover {
  text-decoration: underline;
}

.site-footer__sep {
  margin-inline: 0.35em;
  opacity: 0.45;
  font-weight: 600;
}

.site-footer__tagline {
  color: inherit;
  font-weight: 550;
}

@media (max-width: 720px) {
  .site-footer__bar {
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.45rem;
  }

  .site-footer__credit {
    text-align: start;
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    max-width: 100%;
  }

  .site-footer .brand {
    flex-wrap: nowrap;
  }

  .site-footer .brand__text {
    white-space: nowrap;
    overflow: visible;
    max-width: none;
  }
}

/* Motion */
@keyframes riseIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heroDrift {
  from { transform: scale(1) translate3d(0, 0, 0); }
  to { transform: scale(1.06) translate3d(-1.5%, 1%, 0); }
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}

@keyframes stackFloat {
  0%, 100% { transform: rotateX(18deg) rotateY(-22deg) translateY(0); }
  50% { transform: rotateX(14deg) rotateY(-18deg) translateY(-10px); }
}

/* Elementor / Gutenberg editable wrappers stay full-bleed & responsive */
.lwcd-editable-content,
.elementor-page-content {
  width: 100%;
  max-width: none;
}

.lwcd-editable-content > .wrap.section {
  padding-top: clamp(1.5rem, 4vw, 3rem);
  padding-bottom: clamp(1.5rem, 4vw, 3rem);
}

@media (max-width: 767px) {
  .lwcd-editable-content .elementor-section,
  .elementor-page-content .elementor-section {
    overflow-x: clip;
  }
}

/* Reveal: never hide content. JS may add a soft entrance, but sections stay readable without JS timing. */
.reveal {
  opacity: 1;
  transform: none;
}

html.js .reveal.is-visible {
  animation: lwcd-reveal-in 0.55s ease both;
}

@keyframes lwcd-reveal-in {
  from {
    opacity: 0.35;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html.js .reveal.is-visible {
    animation: none;
  }
}

/* Elementor coexistence — never clip full-width sections */
.elementor-page-content,
.elementor-page-content--full,
.elementor-page-content--canvas {
  width: 100%;
  max-width: none;
}

body.licenseswp-elementor .page-hero,
body.licenseswp-elementor-full .page-hero {
  display: none;
}

body.licenseswp-elementor-canvas .site-shell {
  background: transparent;
}

body.licenseswp-elementor-canvas .site-shell::before {
  display: none;
}

.elementor,
.elementor-kit-26 {
  --e-global-color-primary: var(--blue);
  --e-global-color-secondary: var(--navy);
  --e-global-color-text: var(--ink);
  --e-global-color-accent: var(--cyan-deep);
  --e-global-typography-primary-font-family: "Syne", sans-serif;
  --e-global-typography-text-font-family: "Manrope", sans-serif;
}

.elementor-section.elementor-section-boxed > .elementor-container {
  max-width: var(--max);
}

/* Responsive */
@media (min-width: 900px) {
  .btn--nav {
    display: inline-flex;
    align-items: center;
  }

  .site-header__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    column-gap: 1.35rem;
  }

  .site-header .brand {
    justify-self: start;
    max-width: 100%;
    z-index: 1;
  }

  .site-header .nav-primary {
    justify-self: center;
    grid-column: 2;
    gap: 0.9rem 1.35rem;
    flex-wrap: nowrap;
    margin: 0;
    padding: 0 0.25rem;
  }

  .site-header .header-tools {
    justify-self: end;
    margin-inline-start: 0;
    margin-left: 0;
  }

  body.lwcd-header-sticky-desktop .site-header,
  .site-header[data-header-sticky-desktop="sticky"] {
    position: sticky;
    top: 0;
    z-index: 50;
  }

  body.lwcd-header-static-desktop .site-header,
  .site-header[data-header-sticky-desktop="static"] {
    position: relative;
    top: auto;
  }
}

@media (min-width: 600px) and (max-width: 899px) {
  body.lwcd-header-sticky-tablet .site-header,
  .site-header[data-header-sticky-tablet="sticky"] {
    position: sticky;
    top: 0;
    z-index: 50;
  }

  body.lwcd-header-static-tablet .site-header,
  .site-header[data-header-sticky-tablet="static"] {
    position: relative;
    top: auto;
  }
}

@media (max-width: 899px) {

  .site-header__inner {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.55rem 0.5rem;
  }

  .site-header .brand {
    flex: 1 1 auto;
    min-width: 0;
    order: 1;
  }

  .site-header .brand__text {
    overflow: visible;
    text-overflow: unset;
    white-space: nowrap;
    max-width: none;
  }

  .header-tools,
  .header-actions {
    display: contents;
  }

  .lwcd-header-search {
    order: 2;
    flex: 0 0 auto;
  }

  .lwcd-header-search__toggle {
    width: 2.15rem;
    height: 2.15rem;
    padding: 0;
    border-radius: 999px;
    color: var(--navy);
    background: rgba(11, 91, 211, 0.08);
    border: 1px solid rgba(11, 91, 211, 0.12);
  }

  .lwcd-header-search__toggle:hover,
  .lwcd-header-search__toggle:focus-visible,
  .lwcd-header-search__toggle[aria-expanded="true"] {
    background: rgba(11, 91, 211, 0.14);
    color: var(--blue);
  }

  .header-account {
    order: 3;
    flex: 0 0 auto;
    width: 2.15rem;
    height: 2.15rem;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
    margin-left: 0;
    order: 4;
    flex: 0 0 auto;
  }

  .header-actions .btn--nav {
    display: inline-flex;
    order: 5;
    flex: 1 1 100%;
    width: 100%;
    justify-content: center;
    padding: 0.62rem 1rem;
    font-size: 0.88rem;
    white-space: nowrap;
    border-radius: 11px;
  }

  .nav-primary {
    display: none;
    position: absolute;
    top: calc(100% + 0.45rem);
    right: 0;
    left: 0;
    flex-direction: column;
    gap: 0.35rem;
    padding: 0.85rem;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    z-index: 40;
    order: 5;
  }

  .nav-primary.is-open {
    display: flex;
  }

  .site-footer .brand__text {
    overflow: visible;
    text-overflow: unset;
    white-space: nowrap;
    max-width: none;
  }

  .hero {
    min-height: auto;
    padding: 2.75rem 0 3.25rem;
    align-items: start;
  }

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

  .hero__content {
    order: 1;
    max-width: none;
  }

  .hero__stage {
    order: 2;
    width: min(68vw, 240px);
    justify-self: start;
    margin: 0.25rem 0 0;
  }

  .hero__orb--b {
    display: none;
  }

  .bento-card--wide {
    grid-column: auto;
  }

  .pricing-card--featured {
    transform: none;
  }

  .pricing-showcase__orb--c,
  .pricing-showcase__orb--e {
    display: none;
  }
}

@media (max-width: 599px) {
  body.lwcd-header-sticky-mobile .site-header,
  .site-header[data-header-sticky-mobile="sticky"] {
    position: sticky;
    top: 0;
    z-index: 50;
  }

  body.lwcd-header-static-mobile .site-header,
  .site-header[data-header-sticky-mobile="static"] {
    position: relative;
    top: auto;
  }

  .site-header {
    padding: 0.55rem 0 0.7rem;
  }

  .site-header .brand__mark {
    width: 34px;
    height: 34px;
    border-radius: 9px;
  }

  .site-header .brand {
    font-size: 1.05rem;
    gap: 0.45rem;
  }

  .header-actions .btn--nav {
    padding: 0.58rem 0.9rem;
    font-size: 0.84rem;
    border-radius: 11px;
  }

  .nav-toggle {
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 560px) {
  .wrap {
    width: min(100% - 1.25rem, var(--max));
  }

  .hero__actions,
  .cta-band .hero__actions {
    width: 100%;
  }

  .hero__actions .btn,
  .cta-band .btn {
    width: 100%;
  }

  .site-footer__grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
  }

  .footer-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem 1rem;
  }

  .header-account {
    width: 2.15rem;
    height: 2.15rem;
  }

  .lwcd-header-search__toggle {
    width: 2.15rem;
    height: 2.15rem;
  }

  .lwcd-header-search__icon svg,
  .header-account__icon svg {
    width: 17px;
    height: 17px;
  }

  body.lwcd-active h1,
  body.lwcd-active .hero h1,
  body.lwcd-active .hero__content h1 {
    font-size: clamp(1.6rem, 8vw, var(--fs-hero-title, 2.4rem)) !important;
  }

  body.lwcd-active .pricing-card__amount {
    font-size: clamp(1.35rem, 6vw, var(--pricing-fs-price, 1.75rem)) !important;
  }
}

/* —— Social proof —— */
.lwcd-social {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 7rem) 0;
  background:
    linear-gradient(180deg, rgba(244, 250, 255, 0.96), rgba(235, 247, 255, 0.72)),
    var(--surface-soft, #f4f9fd);
}

.lwcd-social--home {
  padding-bottom: clamp(1rem, 2vw, 1.75rem);
}

.lwcd-social::before,
.lwcd-social::after {
  position: absolute;
  z-index: -1;
  content: "";
  pointer-events: none;
}

.lwcd-social::before {
  inset: 0;
  opacity: 0.44;
  background-image: radial-gradient(circle at 1px 1px, rgba(11, 91, 211, 0.16) 1px, transparent 0);
  background-size: 24px 24px;
  mask-image: linear-gradient(to bottom, transparent, #000 22%, #000 76%, transparent);
}

.lwcd-social::after {
  inset-inline: 0;
  inset-block-start: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(26, 168, 196, 0.7), transparent);
}

.lwcd-social__atmosphere,
.lwcd-social__grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.lwcd-social__orb {
  position: absolute;
  display: block;
  width: clamp(18rem, 34vw, 34rem);
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(8px);
  opacity: 0.22;
}

.lwcd-social__orb--one {
  inset-block-start: -17%;
  inset-inline-end: -8%;
  background: radial-gradient(circle, #7ddff0 0, rgba(125, 223, 240, 0) 70%);
}

.lwcd-social__orb--two {
  inset-block-end: -24%;
  inset-inline-start: -10%;
  background: radial-gradient(circle, #8ebcff 0, rgba(142, 188, 255, 0) 70%);
}

.lwcd-social__grid {
  opacity: 0.32;
  background:
    linear-gradient(90deg, transparent 49.8%, rgba(11, 91, 211, 0.08) 50%, transparent 50.2%),
    linear-gradient(transparent 49.8%, rgba(11, 91, 211, 0.07) 50%, transparent 50.2%);
  background-size: 8rem 8rem;
  transform: perspective(500px) rotateX(66deg) scale(1.35);
  transform-origin: center bottom;
}

.lwcd-social__shell {
  position: relative;
  padding: clamp(1.4rem, 3.6vw, 3.25rem);
  border: 1px solid rgba(126, 185, 220, 0.42);
  border-radius: clamp(1.35rem, 3vw, 2.25rem);
  background: rgba(255, 255, 255, 0.74);
  box-shadow:
    0 2rem 5rem rgba(4, 24, 51, 0.1),
    inset 0 1px rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
}

.lwcd-social__shell::before {
  position: absolute;
  inset: 0.65rem;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: calc(clamp(1.35rem, 3vw, 2.25rem) - 0.4rem);
  content: "";
  pointer-events: none;
}

.lwcd-social__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 1rem 2rem;
  max-width: none;
  margin-bottom: clamp(1.8rem, 4vw, 3rem);
  padding-inline: clamp(0rem, 1vw, 0.6rem);
}

.lwcd-social__head .section__title {
  max-width: 19ch;
  margin: 0;
  font-size: clamp(2rem, 4.2vw, 4.25rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.lwcd-social__eyebrow {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0;
  padding: 0.48rem 0.78rem;
  border: 1px solid rgba(26, 168, 196, 0.24);
  border-radius: 999px;
  background: rgba(233, 251, 255, 0.78);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.85);
}

.lwcd-social__eyebrow-mark {
  width: 0.55rem;
  height: 0.55rem;
  margin-inline-end: 0.55rem;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--cyan-deep, #1aa8c4);
  box-shadow: 0 0 0 3px rgba(26, 168, 196, 0.18), 0 0 1rem rgba(26, 168, 196, 0.55);
}

.lwcd-social__signal {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 0.28rem;
  width: 4.5rem;
  height: 3rem;
  padding: 0.65rem 0.75rem;
  border: 1px solid rgba(11, 91, 211, 0.13);
  border-radius: 1rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(231, 244, 255, 0.78));
  box-shadow: 0 0.75rem 1.5rem rgba(4, 24, 51, 0.08);
}

.lwcd-social__signal span {
  display: block;
  width: 0.25rem;
  border-radius: 999px;
  background: linear-gradient(to top, var(--blue, #0b5bd3), var(--cyan-deep, #1aa8c4));
}

.lwcd-social__signal span:nth-child(1),
.lwcd-social__signal span:nth-child(5) {
  height: 35%;
}

.lwcd-social__signal span:nth-child(2),
.lwcd-social__signal span:nth-child(4) {
  height: 65%;
}

.lwcd-social__signal span:nth-child(3) {
  height: 100%;
}

.lwcd-social__logos {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
  list-style: none;
  margin: 0 0 clamp(1.5rem, 3vw, 2.5rem);
  padding: 0;
}

.lwcd-social__logo {
  min-width: 0;
  transition: transform 0.25s ease;
}

.lwcd-social__logo:hover {
  transform: translateY(-3px);
}

.lwcd-social__logo a,
.lwcd-social__logo-inner {
  display: flex;
  align-items: center;
  min-height: 4.5rem;
  padding: 0.75rem;
  border: 1px solid rgba(11, 91, 211, 0.1);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.95);
  color: inherit;
  text-decoration: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.lwcd-social__logo:hover a,
.lwcd-social__logo:hover .lwcd-social__logo-inner {
  border-color: rgba(26, 168, 196, 0.3);
  box-shadow: 0 0.8rem 1.75rem rgba(4, 24, 51, 0.07);
}

.lwcd-social__logo-mark {
  display: grid;
  flex: 0 0 2.65rem;
  width: 2.65rem;
  height: 2.65rem;
  margin-inline-end: 0.7rem;
  place-items: center;
  border: 1px solid rgba(11, 91, 211, 0.15);
  border-radius: 0.8rem;
  background: linear-gradient(145deg, #eff9ff, #dff2ff);
  color: var(--blue, #0b5bd3);
  font-family: var(--font-display, Syne, sans-serif);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.lwcd-social__logo-img {
  display: block;
  max-width: 100%;
  max-height: 2.5rem;
  width: auto;
  margin: auto;
  object-fit: contain;
  filter: grayscale(0.2);
}

.lwcd-social__logo-text {
  min-width: 0;
  font-family: var(--font-display, Syne, sans-serif);
  font-size: clamp(0.78rem, 1.2vw, 0.93rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--ink, #0a1f36);
  overflow-wrap: anywhere;
}

.lwcd-social__quotes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 0.85rem;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.lwcd-social__quote {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 19.5rem;
  flex-direction: column;
  margin: 0;
  padding: clamp(1.25rem, 2.3vw, 1.75rem);
  overflow: hidden;
  border: 1px solid rgba(112, 171, 208, 0.26);
  border-radius: 1.35rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(244, 250, 255, 0.82));
  box-shadow:
    0 1rem 2rem rgba(4, 24, 51, 0.07),
    inset 0 1px rgba(255, 255, 255, 0.95);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.lwcd-social__quote::after {
  position: absolute;
  inset-inline-end: -2rem;
  inset-block-end: -3rem;
  width: 9rem;
  height: 9rem;
  border: 1px solid rgba(26, 168, 196, 0.1);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 1.5rem rgba(26, 168, 196, 0.025);
  pointer-events: none;
}

.lwcd-social__quote:hover {
  border-color: rgba(26, 168, 196, 0.4);
  box-shadow: 0 1.4rem 2.8rem rgba(4, 24, 51, 0.11);
  transform: translateY(-4px);
}

.lwcd-social__quote-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.15rem;
}

.lwcd-social__quote-top svg {
  width: 2.1rem;
  height: 2.1rem;
  fill: var(--cyan-deep, #1aa8c4);
  opacity: 0.92;
}

.lwcd-social__quote-top span {
  color: rgba(10, 31, 54, 0.32);
  font-family: var(--font-display, Syne, sans-serif);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.lwcd-social__quote p {
  flex: 1 1 auto;
  margin: 0 0 1.5rem;
  font-size: clamp(0.98rem, 1.4vw, 1.08rem);
  line-height: 1.68;
  color: var(--ink, #0a1f36);
  text-wrap: pretty;
}

.lwcd-social__cite {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(10, 31, 54, 0.09);
}

.lwcd-social__avatar,
.lwcd-social__avatar-fallback {
  display: grid;
  flex: 0 0 2.75rem;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  background: linear-gradient(145deg, var(--blue, #0b5bd3), var(--cyan-deep, #1aa8c4));
  box-shadow: 0 0.45rem 0.9rem rgba(11, 91, 211, 0.18);
  color: #fff;
  font-family: var(--font-display, Syne, sans-serif);
  font-size: 0.75rem;
  font-weight: 800;
  object-fit: cover;
}

.lwcd-social__name {
  display: block;
  font-style: normal;
  font-weight: 700;
  font-size: 0.93rem;
  line-height: 1.3;
}

.lwcd-social__role {
  display: block;
  margin-top: 0.12rem;
  font-size: 0.85rem;
  line-height: 1.35;
  color: var(--muted, #587088);
}

.lwcd-social__guarantee {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(0.9rem, 2vw, 1.4rem);
  max-width: none;
  margin-top: 0;
  padding: clamp(1.1rem, 2.5vw, 1.65rem);
  overflow: hidden;
  border: 1px solid rgba(26, 168, 196, 0.25);
  border-radius: 1.35rem;
  background:
    linear-gradient(100deg, rgba(229, 250, 255, 0.94), rgba(240, 247, 255, 0.9));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.95);
}

.lwcd-social__guarantee::before {
  position: absolute;
  inset-inline-start: 0;
  inset-block: 0;
  width: 0.3rem;
  background: linear-gradient(to bottom, var(--cyan-deep, #1aa8c4), var(--blue, #0b5bd3));
  content: "";
}

.lwcd-social__guarantee-icon {
  display: grid;
  width: clamp(3rem, 5vw, 4rem);
  height: clamp(3rem, 5vw, 4rem);
  place-items: center;
  border: 1px solid rgba(26, 168, 196, 0.2);
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 0.8rem 1.6rem rgba(4, 24, 51, 0.08);
}

.lwcd-social__guarantee-icon svg {
  width: 55%;
  height: 55%;
  fill: var(--cyan-deep, #1aa8c4);
}

.lwcd-social__guarantee-title {
  display: block;
  font-family: var(--font-display, Syne, sans-serif);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  margin-bottom: 0.3rem;
  color: var(--ink, #0a1f36);
}

.lwcd-social__guarantee p {
  margin: 0;
  max-width: 76ch;
  color: var(--muted, #587088);
  font-size: 0.95rem;
  line-height: 1.6;
  text-wrap: pretty;
}

.pricing-showcase__refund {
  margin-top: clamp(1.75rem, 4vw, 3rem);
}

@media (max-width: 900px) {
  .lwcd-social__logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lwcd-social__quotes {
    grid-template-columns: 1fr;
  }

  .lwcd-social__quote {
    min-height: 0;
  }
}

@media (max-width: 560px) {
  .lwcd-social {
    padding: 3rem 0;
  }

  .lwcd-social__shell {
    padding: 1rem;
    border-radius: 1.25rem;
  }

  .lwcd-social__head {
    grid-template-columns: minmax(0, 1fr);
    margin-bottom: 1.5rem;
  }

  .lwcd-social__signal {
    display: none;
  }

  .lwcd-social__head .section__title {
    font-size: clamp(1.75rem, 9vw, 2.5rem);
  }

  .lwcd-social__logos {
    grid-template-columns: 1fr;
  }

  .lwcd-social__logo a,
  .lwcd-social__logo-inner {
    min-height: 3.9rem;
  }

  .lwcd-social__quote {
    padding: 1.15rem;
  }

  .lwcd-social__guarantee {
    grid-template-columns: auto minmax(0, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  .lwcd-social__logo,
  .lwcd-social__quote {
    transition: none;
  }
}

/* —— Changelog —— */
.lwcd-changelog__prose {
  max-width: 42rem;
}

.lwcd-changelog__release {
  margin-bottom: 2rem;
}

.lwcd-changelog__release h2 {
  font-size: 1.35rem;
  margin: 0 0 0.75rem;
}

.lwcd-changelog__release ul {
  margin: 0;
  padding-inline-start: 1.25rem;
}

.lwcd-changelog__release li {
  margin-bottom: 0.4rem;
  line-height: 1.5;
}

.lwcd-changelog__more {
  margin-top: 2rem;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  html.js .reveal,
  .reveal {
    opacity: 1;
    transform: none;
  }
}
