@font-face {
  font-family: "Outfit";
  src: url("/brand/fonts/outfit-variable.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 100 900;
}

:root {
  color-scheme: light;
  --bobr-ink: #08080a;
  --bobr-ink-soft: #242331;
  --bobr-muted: #596073;
  --bobr-muted-strong: #424b63;
  --bobr-paper: #fffdf9;
  --bobr-paper-rgb: 255, 253, 249;
  --bobr-surface: #ffffff;
  --bobr-soft: #f7f3ff;
  --bobr-soft-rgb: 247, 243, 255;
  --bobr-line: #ebe6f7;
  --bobr-line-strong: #d7cbff;
  --bobr-purple: #704cf7;
  --bobr-purple-dark: #5937df;
  --bobr-mint: #aee9db;
  --bobr-mint-dark: #25b29b;
  --bobr-yellow: #ffd35d;
  --bobr-yellow-dark: #9a6f00;
  --bobr-coral: #ff9d88;
  --bobr-danger: #8b1e1e;
  --bobr-shadow: 0 24px 80px rgba(88, 62, 173, .15);
  --bobr-shadow-soft: 0 18px 50px rgba(49, 39, 89, .07);
  --bobr-radius: 8px;
  --bobr-font: "Outfit", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --bobr-font-logo: "Outfit", ui-sans-serif, system-ui, sans-serif;
  --bobr-weight-logo: 300;
  --bobr-weight-label: 680;
  --bobr-weight-control: 720;
  --bobr-weight-heading: 720;
  --bobr-weight-action: 760;
  --pk-ink: 8 8 10;
  --pk-ink-soft: 36 35 49;
  --pk-ink-muted: 89 96 115;
  --pk-surface: 255 255 255;
  --pk-surface-muted: 255 253 249;
  --pk-surface-raised: 247 243 255;
  --pk-surface-inverse: 8 8 10;
  --pk-line: 235 230 247;
  --pk-line-strong: 215 203 255;
  --pk-action: 112 76 247;
  --pk-action-hover: 89 55 223;
  --pk-action-soft: 239 234 255;
  --pk-action-ink: 255 255 255;
  --pk-support: 37 178 155;
  --pk-support-soft: 224 248 241;
  --pk-support-ink: 8 80 70;
  --pk-highlight: 255 211 93;
  --pk-highlight-soft: 255 245 204;
  --pk-warning: 154 111 0;
  --pk-danger: 139 30 30;
  --pk-success: 20 122 83;
  --pk-focus: 112 76 247;
  --pk-radius-sm: 6px;
  --pk-radius: var(--bobr-radius);
  --pk-radius-lg: 14px;
  --pk-radius-xl: 22px;
  --pk-radius-pill: 999px;
  --pk-shadow-soft: var(--bobr-shadow-soft);
  --pk-shadow-card: var(--bobr-shadow);
  --pk-shadow-pop: 0 14px 32px rgba(112, 76, 247, .22);
  --pk-font-body: var(--bobr-font);
  --pk-font-heading: var(--bobr-font);
  --pk-font-logo: var(--bobr-font-logo);
  --pk-weight-body: 440;
  --pk-weight-label: var(--bobr-weight-label);
  --pk-weight-heading: var(--bobr-weight-heading);
  --pk-weight-action: var(--bobr-weight-action);
  --pk-duration-fast: 140ms;
  --pk-duration-base: 180ms;
  --pk-duration-slow: 420ms;
  --pk-ease-standard: cubic-bezier(.2, .8, .2, 1);
  --pk-ease-out: cubic-bezier(.22, 1, .36, 1);
  --pk-ease-premium: cubic-bezier(.16, 1, .3, 1);
}

* {
  box-sizing: border-box;
}

body {
  font-family: var(--bobr-font);
}

.bobr-skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 9999;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--bobr-radius);
  background: var(--bobr-purple);
  color: #fff;
  font-weight: var(--bobr-weight-action);
  padding: 0 1rem;
  opacity: 0;
  text-decoration: none;
  transform: translateY(-7rem);
  transition: opacity var(--pk-duration-base) var(--pk-ease-out), transform var(--pk-duration-base) var(--pk-ease-out);
}

.bobr-skip-link:focus,
.bobr-skip-link:focus-visible {
  opacity: 1;
  outline: 2px solid rgb(var(--pk-focus));
  outline-offset: 4px;
  transform: translateY(0);
}

.bobr-button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  border: 0;
  border-radius: var(--bobr-radius);
  cursor: pointer;
  font: inherit;
  font-weight: var(--bobr-weight-action);
  padding: 0 1.5rem;
  text-decoration: none;
}

.bobr-button-primary {
  background: linear-gradient(180deg, #7957ff 0%, var(--bobr-purple-dark) 100%);
  color: #fff;
  box-shadow: 0 12px 24px rgba(112, 76, 247, .22);
}

.bobr-button-secondary {
  border: 1px solid var(--bobr-line-strong);
  background: rgba(var(--bobr-paper-rgb), .9);
  color: var(--bobr-ink);
}

.bobr-card {
  border: 1px solid var(--bobr-line);
  border-radius: var(--bobr-radius);
  background: rgba(255, 255, 255, .84);
  box-shadow: var(--bobr-shadow-soft);
}

.bobr-logo-img {
  display: block;
  height: auto;
}

html,
body {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  --platform-header-height: 4.25rem;
  margin: 0;
  min-width: 320px;
  background: var(--bobr-paper);
  color: var(--bobr-ink);
  font-weight: 430;
}

body,
button,
input,
textarea {
  font-family: var(--bobr-font);
}

button,
input,
textarea {
  font: inherit;
}

a {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.platform-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  background: rgba(255, 255, 255, .68);
  backdrop-filter: blur(18px) saturate(1.1);
  -webkit-backdrop-filter: blur(18px) saturate(1.1);
}

.platform-header-inner {
  display: grid;
  width: min(calc(100% - 2.25rem), 92rem);
  min-height: var(--platform-header-height);
  align-items: center;
  grid-template-columns: minmax(10rem, 1fr) auto minmax(10rem, 1fr);
  gap: 1rem;
  margin: 0 auto;
}

.platform-nav {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: clamp(.7rem, 1.6vw, 1.25rem);
  color: var(--bobr-ink-soft);
  font-size: .95rem;
  font-weight: 660;
}

.platform-nav a:not(.bobr-button) {
  text-decoration: none;
}

.platform-nav a:not(.bobr-button):hover,
.platform-nav a:not(.bobr-button):focus-visible {
  color: var(--bobr-purple);
}

.market-logo {
  display: inline-flex;
  align-items: center;
  gap: .68rem;
  color: var(--bobr-ink);
  font-family: var(--bobr-font-logo);
  font-weight: var(--bobr-weight-logo);
  letter-spacing: -.03em;
  line-height: .88;
  text-decoration: none;
}

.market-logo img {
  display: block;
  width: 2.55rem;
  height: auto;
  transition: transform .18s ease;
}

.market-logo:hover img,
.market-logo:focus-visible img {
  transform: rotate(-2deg) translateY(-1px);
}

.header-logo {
  justify-self: center;
}

.header-logo .market-logo-wordmark {
  display: none;
}

.market-logo-wordmark {
  display: grid;
  gap: .02em;
  transform: translateY(.03em);
}

.market-logo-line {
  display: block;
  font-size: 1.15rem;
  line-height: .86;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: .24rem;
  border: 1px solid var(--bobr-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .74);
  padding: .18rem;
}

.language-switch a {
  border-radius: 999px;
  color: var(--bobr-muted-strong);
  font-size: .78rem;
  font-weight: 680;
  padding: .24rem .5rem;
  text-decoration: none;
}

.language-switch a:hover,
.language-switch a[aria-current="true"] {
  background: var(--bobr-purple);
  color: #fff;
}

.header-spacer {
  justify-self: end;
}

.mobile-menu-toggle {
  display: none;
  justify-self: start;
  min-height: 2.55rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(112, 76, 247, .2);
  border-radius: 999px;
  background: rgba(255, 255, 255, .78);
  color: var(--bobr-ink);
  cursor: pointer;
  font-size: .88rem;
  font-weight: 660;
  padding: 0 .9rem;
}

.mobile-menu-label-close,
.mobile-nav-cta {
  display: none;
}

.mobile-menu-toggle[aria-expanded="true"] .mobile-menu-label-open {
  display: none;
}

.mobile-menu-toggle[aria-expanded="true"] .mobile-menu-label-close {
  display: inline;
}

.page-shell,
.subpage-main {
  position: relative;
  isolation: isolate;
}

.page-shell {
  min-height: 100vh;
  overflow: hidden;
  background: linear-gradient(180deg, #fffdf9 0%, #fff 100%);
  padding: calc(var(--platform-header-height) + clamp(2.4rem, 6vh, 4.6rem)) clamp(1rem, 4vw, 3rem) clamp(1.5rem, 4vh, 3rem);
}

.landing-shell::before,
.landing-shell::after {
  position: absolute;
  z-index: -2;
  content: "";
  pointer-events: none;
}

.landing-shell::before {
  inset: -12% -8% -8%;
  background:
    radial-gradient(circle at 73% 28%, rgba(112, 76, 247, .18), transparent 25rem),
    radial-gradient(circle at 54% 18%, rgba(174, 233, 219, .28), transparent 18rem),
    radial-gradient(circle at 66% 80%, rgba(255, 211, 93, .16), transparent 20rem);
  filter: blur(18px) saturate(1.06);
}

.landing-shell::after {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(24, 20, 42, .035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(24, 20, 42, .035) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.45), transparent 72%);
  opacity: .35;
}

.ambient-detail {
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.detail-one {
  top: 19%;
  left: 51%;
  width: 2.4rem;
  height: 2.4rem;
  transform: rotate(22deg);
}

.detail-one::before,
.detail-one::after {
  position: absolute;
  inset: 50% auto auto 0;
  width: 100%;
  height: .34rem;
  border-radius: 999px;
  background: var(--bobr-yellow);
  content: "";
}

.detail-one::after {
  transform: rotate(90deg);
}

.detail-two {
  right: 24%;
  bottom: 23%;
  width: 2rem;
  height: 1rem;
  border-top: .35rem solid var(--bobr-coral);
  border-radius: 999px 999px 0 0;
  animation: bobr-float 6s ease-in-out infinite;
}

@keyframes bobr-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-.4rem);
  }
}

.landing-grid {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100%, 92rem);
  min-height: calc(100vh - var(--platform-header-height) - 6rem);
  align-items: center;
  grid-template-columns: minmax(28rem, .92fr) minmax(34rem, 1.08fr);
  gap: clamp(2rem, 5vw, 5.25rem);
  margin: 0 auto;
}

.landing-copy {
  display: grid;
  max-width: 54rem;
  align-content: center;
  justify-items: start;
  gap: .95rem;
}

.landing-copy h1,
.subpage-hero h1,
.seo-heading h2,
.reel-heading h2,
.inline-cta-copy h2,
.related-pages h2 {
  margin: 0;
  color: var(--bobr-ink);
  font-weight: 720;
  letter-spacing: 0;
}

.landing-copy h1 {
  max-width: 12ch;
  font-size: clamp(3.25rem, 7vw, 6.6rem);
  line-height: .9;
}

.landing-title-accent {
  display: block;
  color: var(--bobr-purple);
  text-shadow: 0 14px 28px rgba(112, 76, 247, .16);
}

.landing-lead {
  max-width: 38rem;
  margin: 0;
  color: var(--bobr-muted-strong);
  font-size: clamp(1.05rem, 1.42vw, 1.28rem);
  line-height: 1.58;
}

.prospect-form {
  display: grid;
  width: 100%;
  gap: .8rem;
}

.hero-search-form {
  margin-top: .75rem;
}

.form-step {
  display: grid;
  gap: .8rem;
}

.form-step.is-hidden-initial:not(.is-active),
.is-js .form-step:not(.is-active) {
  display: none;
}

.hero-url-bar {
  display: grid;
  align-items: stretch;
  grid-template-columns: minmax(18rem, 1fr) auto auto;
  gap: .65rem;
  border: 1px solid rgba(201, 188, 255, .95);
  border-radius: 8px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 24px 60px rgba(112, 76, 247, .13);
  padding: .7rem;
}

.input-row {
  display: grid;
  align-items: center;
  grid-template-columns: auto minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--bobr-line-strong);
  border-radius: 8px;
  background: #fff;
}

.url-icon {
  position: relative;
  display: inline-flex;
  min-height: 3.55rem;
  width: 3.55rem;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--bobr-line);
  background: var(--bobr-soft);
}

.url-icon::before,
.url-icon::after {
  position: absolute;
  width: .82rem;
  height: .5rem;
  border: 2px solid var(--bobr-purple);
  border-radius: 999px;
  content: "";
  transform: rotate(-42deg);
}

.url-icon::before {
  margin-left: -.34rem;
}

.url-icon::after {
  margin-left: .34rem;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  border: 1px solid var(--bobr-line-strong);
  border-radius: 8px;
  background: #fff;
  color: var(--bobr-ink);
  outline: none;
}

input[type="text"],
input[type="email"] {
  min-height: 3.55rem;
  padding: 0 1rem;
}

textarea {
  min-height: 7rem;
  resize: vertical;
  line-height: 1.45;
  padding: .9rem 1rem;
}

.input-row input[type="text"] {
  border: 0;
  border-radius: 0;
}

input:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(112, 76, 247, .24);
  outline-offset: 2px;
}

.bobr-button,
.hero-secondary-action {
  display: inline-flex;
  min-height: 3.55rem;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  border-radius: var(--bobr-radius);
  cursor: pointer;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
}

.bobr-button {
  border: 0;
  padding: 0 1.35rem;
}

.bobr-button-primary {
  background: linear-gradient(180deg, #7957ff 0%, var(--bobr-purple-dark) 100%);
  color: #fff;
  box-shadow: 0 12px 24px rgba(112, 76, 247, .22);
}

.bobr-button-secondary,
.hero-secondary-action {
  border: 1px solid var(--bobr-line-strong);
  background: rgba(255, 255, 255, .9);
  color: var(--bobr-ink);
}

.bobr-button:hover,
.hero-secondary-action:hover {
  transform: translateY(-1px);
}

.bobr-button-primary:hover {
  box-shadow: 0 16px 30px rgba(112, 76, 247, .28);
}

.hero-url-bar .bobr-button,
.hero-secondary-action {
  white-space: nowrap;
}

.privacy-note,
.form-status,
.consent-line,
.content-grid p,
.seo-heading p,
.faq-list p,
.site-footer p,
.subpage-hero p,
.inline-cta-copy p,
.related-grid p,
.reel-note {
  color: var(--bobr-muted-strong);
  line-height: 1.58;
}

.privacy-note,
.form-status {
  margin: 0;
  font-size: .94rem;
}

.form-status[data-tone="success"] {
  color: #176b43;
}

.form-status[data-tone="error"] {
  color: var(--bobr-danger);
}

.hero-search-form .form-step[data-step="email"],
.inline-prospect-form {
  border: 1px solid rgba(215, 203, 255, .9);
  border-radius: 8px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 20px 54px rgba(112, 76, 247, .11);
  padding: 1rem;
}

.form-step label:not(.consent-line) {
  color: var(--bobr-ink);
  font-size: .96rem;
  font-weight: 680;
}

.consent-line {
  display: grid;
  align-items: start;
  grid-template-columns: auto minmax(0, 1fr);
  gap: .65rem;
  font-size: .9rem;
}

.consent-line input {
  width: 1rem;
  height: 1rem;
  margin-top: .22rem;
  accent-color: var(--bobr-purple);
}

.consent-line a {
  color: var(--bobr-purple);
  font-weight: 680;
}

.turnstile-wrap {
  min-height: 4rem;
}

.back-button {
  justify-self: start;
  border: 0;
  background: transparent;
  color: var(--bobr-muted);
  cursor: pointer;
  padding: .25rem 0;
  text-decoration: underline;
  text-underline-offset: .18em;
}

.landing-points {
  display: grid;
  width: min(100%, 49rem);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .8rem;
  margin: .35rem 0 0;
  padding: 0;
  list-style: none;
}

.landing-points li {
  display: grid;
  min-height: 3.1rem;
  align-items: start;
  grid-template-columns: auto minmax(0, 1fr);
  gap: .65rem;
  color: var(--bobr-muted-strong);
}

.point-icon {
  display: inline-grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border-radius: 999px;
  background: rgba(112, 76, 247, .12);
  color: var(--bobr-purple);
  font-size: .72rem;
  font-weight: 760;
}

.landing-points strong {
  display: block;
  color: var(--bobr-ink);
}

.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: min(58vw, 43rem);
  align-self: stretch;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.hero-visual::before {
  position: absolute;
  inset: -2rem -2rem -1rem;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.92), rgba(255,255,255,.38) 20%, rgba(255,255,255,.05) 54%, rgba(255,255,255,.82) 100%),
    radial-gradient(circle at 50% 50%, rgba(255,255,255,.82), transparent 68%);
  filter: blur(22px);
  content: "";
}

.hero-beaver-image {
  position: relative;
  z-index: 1;
  width: min(100%, 52rem);
  max-height: 45rem;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 28px 55px rgba(49, 39, 89, .12));
}

.seo-section,
.page-reel-section,
.faq-section,
.site-footer {
  background: #fff;
}

.seo-section,
.page-reel-section,
.faq-section {
  padding: clamp(3rem, 7vw, 5.5rem) 1.5rem;
}

.faq-section {
  padding-top: 0;
}

.page-reel-section {
  border-top: 1px solid var(--bobr-line);
  background:
    radial-gradient(circle at 8% 18%, rgba(174, 233, 219, .25), transparent 18rem),
    linear-gradient(180deg, #fff, #fffcf7);
}

.seo-wrap,
.subpage-main,
.footer-wrap {
  width: min(calc(100% - 3rem), 73rem);
  margin: 0 auto;
}

.reel-heading,
.subpage-inline-cta {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 22rem);
  gap: clamp(1rem, 3vw, 2rem);
}

.seo-kicker {
  margin: 0 0 .65rem;
  color: var(--bobr-purple);
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.seo-heading h2,
.reel-heading h2,
.subpage-hero h1 {
  max-width: 16ch;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: .95;
}

.seo-heading p,
.subpage-hero p {
  max-width: 46rem;
  margin: .85rem 0 0;
}

.seo-cards,
.content-grid,
.page-reel,
.related-grid,
.legal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .9rem;
  margin-top: 1.5rem;
}

.seo-cards article,
.content-grid article,
.faq-list details,
.related-grid a,
.single-card article {
  border: 1px solid var(--bobr-line);
  border-radius: 8px;
  background: rgba(252, 250, 255, .62);
  padding: 1rem;
}

.seo-cards h3,
.content-grid h2 {
  margin: 0 0 .45rem;
  color: var(--bobr-ink);
  font-size: 1.03rem;
}

.seo-cards p,
.content-grid p {
  margin: 0;
}

.page-reel article {
  overflow: hidden;
  border: 1px solid rgba(215, 203, 255, .78);
  border-radius: 8px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 20px 60px rgba(24, 20, 42, .08);
}

.page-reel img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1200 / 760;
  object-fit: cover;
}

.page-reel article > div {
  display: grid;
  min-height: 5.4rem;
  gap: .45rem;
  border-top: 1px solid var(--bobr-line);
  padding: .75rem .85rem;
}

.page-reel header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
}

.page-reel strong,
.related-grid strong {
  color: var(--bobr-ink);
  font-weight: 680;
}

.page-reel span,
.related-grid span {
  color: var(--bobr-purple);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.page-reel p {
  margin: 0;
  color: var(--bobr-muted-strong);
  font-size: .9rem;
  line-height: 1.38;
}

.faq-list {
  display: grid;
  gap: .7rem;
  margin-top: 1.5rem;
}

.faq-list summary {
  color: var(--bobr-ink);
  cursor: pointer;
  font-weight: 680;
}

.faq-list summary:hover {
  color: var(--bobr-purple);
}

.faq-list p {
  margin: .65rem 0 0;
}

.subpage-main {
  padding: calc(var(--platform-header-height) + clamp(2.25rem, 6vw, 5rem)) 0 clamp(3rem, 7vw, 5rem);
}

.subpage-main::before {
  position: absolute;
  z-index: -1;
  inset: 0 -24vw auto;
  height: 30rem;
  background:
    radial-gradient(circle at 65% 18%, rgba(112, 76, 247, .14), transparent 22rem),
    radial-gradient(circle at 25% 26%, rgba(174, 233, 219, .22), transparent 18rem);
  content: "";
  pointer-events: none;
}

.subpage-hero {
  max-width: 56rem;
}

.subpage-inline-cta {
  align-items: center;
  margin-top: clamp(2rem, 6vw, 4rem);
  border: 1px solid rgba(215, 203, 255, .86);
  border-radius: 8px;
  background:
    radial-gradient(circle at 12% 16%, rgba(174, 233, 219, .3), transparent 14rem),
    linear-gradient(135deg, rgba(252, 250, 255, .9), rgba(255, 255, 255, .96));
  padding: clamp(1rem, 3vw, 1.5rem);
}

.inline-cta-copy h2,
.related-pages h2 {
  max-width: 14ch;
  font-size: clamp(1.7rem, 3vw, 3rem);
  line-height: .98;
}

.inline-cta-copy p:not(.seo-kicker) {
  margin: .8rem 0 0;
}

.related-pages {
  margin-top: clamp(2rem, 6vw, 4rem);
}

.related-grid a {
  display: grid;
  gap: .45rem;
  color: inherit;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.related-grid a:hover {
  border-color: rgba(112, 76, 247, .45);
  box-shadow: 0 14px 34px rgba(24, 20, 42, .08);
  transform: translateY(-1px);
}

.single-card {
  display: grid;
  max-width: 42rem;
  margin-top: 1.5rem;
}

.single-card h2 {
  margin: 0 0 .45rem;
}

.single-card p {
  color: var(--bobr-muted-strong);
  line-height: 1.6;
}

.subpage-cta {
  width: auto;
}

.site-footer {
  border-top: 1px solid var(--bobr-line);
  padding: 1.8rem 1.5rem;
}

.footer-wrap {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(14rem, .7fr) minmax(0, 1.3fr);
  gap: clamp(1.5rem, 4vw, 3rem);
}

.footer-brand {
  display: grid;
  gap: .7rem;
}

.footer-brand p {
  max-width: 26rem;
  margin: 0;
}

.footer-brand .market-logo img {
  width: 2.45rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem 1.35rem;
}

.footer-group summary {
  margin: 0 0 .55rem;
  color: var(--bobr-purple);
  cursor: pointer;
  font-size: .76rem;
  font-weight: 700;
  list-style-position: outside;
  text-transform: uppercase;
}

.footer-group ul {
  display: grid;
  gap: .42rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-group a {
  color: var(--bobr-muted-strong);
  font-size: .92rem;
  line-height: 1.28;
  text-decoration: none;
}

.footer-group a:hover,
.footer-brand a:hover {
  color: var(--bobr-purple);
}

.cookie-consent {
  position: fixed;
  z-index: 90;
  left: 50%;
  bottom: max(1rem, env(safe-area-inset-bottom));
  display: grid;
  width: min(100% - 2rem, 44rem);
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  border: 1px solid var(--bobr-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .96);
  box-shadow: var(--bobr-shadow);
  padding: .85rem;
  transform: translateX(-50%);
}

.cookie-consent[hidden] {
  display: none;
}

.cookie-consent strong {
  color: var(--bobr-ink);
}

.cookie-consent p {
  margin: .25rem 0 0;
  color: var(--bobr-muted-strong);
  font-size: .92rem;
  line-height: 1.45;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: .5rem;
}

.cookie-actions button {
  min-height: 2.35rem;
  border: 1px solid var(--bobr-line-strong);
  border-radius: 8px;
  background: #fff;
  color: var(--bobr-ink);
  cursor: pointer;
  font-weight: 680;
  padding: 0 .8rem;
}

.cookie-actions button:hover {
  border-color: var(--bobr-purple);
}

.cookie-actions [data-cookie-accept] {
  border-color: var(--bobr-purple);
  background: var(--bobr-purple);
  color: #fff;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
}

@media (max-width: 1160px) {
  .landing-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 19rem;
    max-height: 26rem;
    order: 2;
  }

  .landing-copy {
    order: 1;
  }

  .hero-beaver-image {
    max-height: 28rem;
  }
}

@media (max-width: 880px) {
  .hero-url-bar,
  .landing-points,
  .seo-cards,
  .content-grid,
  .page-reel,
  .related-grid,
  .subpage-inline-cta,
  .reel-heading,
  .footer-wrap {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  body {
    --platform-header-height: 3.75rem;
  }

  .platform-header {
    background: rgba(255, 255, 255, .78);
  }

  .platform-header-inner {
    width: min(calc(100% - 1rem), 92rem);
    grid-template-columns: minmax(4.8rem, 1fr) auto minmax(4.8rem, 1fr);
    gap: .45rem;
  }

  .mobile-menu-toggle {
    display: inline-flex;
  }

  .platform-nav {
    position: absolute;
    top: calc(100% + .45rem);
    left: .5rem;
    right: .5rem;
    z-index: 90;
    display: grid;
    gap: .35rem;
    border: 1px solid rgba(112, 76, 247, .16);
    border-radius: 1rem;
    background: rgba(255, 255, 255, .95);
    box-shadow: 0 22px 54px rgba(44, 34, 90, .16);
    padding: .65rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-.35rem);
    visibility: hidden;
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  }

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

  .platform-nav a {
    display: flex;
    min-height: 2.65rem;
    align-items: center;
    border-radius: .75rem;
    padding: 0 .85rem;
  }

  .platform-nav a:not(.bobr-button):hover,
  .platform-nav a:not(.bobr-button):focus-visible {
    background: rgba(112, 76, 247, .08);
  }

  .mobile-nav-cta {
    display: inline-flex;
    justify-content: center;
    margin-top: .25rem;
  }

  .header-logo img {
    width: 2.1rem;
  }

  .language-switch a {
    font-size: .74rem;
    padding: .22rem .45rem;
  }

  .page-shell {
    padding-top: calc(var(--platform-header-height) + 1.5rem);
  }

  .landing-copy h1 {
    max-width: 11.5ch;
    font-size: clamp(2.65rem, 12vw, 4.4rem);
  }

  .landing-lead {
    font-size: 1rem;
    line-height: 1.42;
  }

  .hero-url-bar {
    gap: .55rem;
    padding: .58rem;
  }

  .hero-visual {
    min-height: 14rem;
    max-height: 19rem;
  }

  .ambient-detail {
    opacity: .7;
  }

  .cookie-consent {
    left: .75rem;
    right: .75rem;
    bottom: max(.75rem, env(safe-area-inset-bottom));
    width: auto;
    max-height: calc(100dvh - 1.5rem);
    grid-template-columns: 1fr;
    overflow: auto;
    transform: none;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .page-shell {
    padding-inline: 1rem;
    padding-bottom: 1.2rem;
  }

  .landing-grid {
    gap: .85rem;
  }

  .landing-copy {
    gap: .72rem;
  }

  .landing-copy h1 {
    font-size: clamp(2.4rem, 13vw, 3.45rem);
  }

  .hero-url-bar .bobr-button,
  .hero-secondary-action {
    width: 100%;
    min-height: 3rem;
  }

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

  .url-icon,
  input[type="text"],
  input[type="email"] {
    min-height: 3rem;
  }

  .url-icon {
    width: 3rem;
  }

  .landing-points {
    display: none;
  }

  .hero-visual {
    margin-inline: -1rem;
  }

  .seo-section,
  .page-reel-section,
  .faq-section,
  .site-footer {
    padding-inline: 1rem;
  }

  .seo-wrap,
  .subpage-main,
  .footer-wrap {
    width: min(calc(100% - 2rem), 73rem);
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: .75rem;
  }
}
