@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/inter-400.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/assets/fonts/inter-500.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/assets/fonts/inter-700.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("/assets/fonts/inter-800.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("/assets/fonts/inter-900.woff2") format("woff2");
}

@font-face {
  font-family: "IBM Plex Sans";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/fonts/ibm-plex-sans-600.woff2") format("woff2");
}

@font-face {
  font-family: "Lexend";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/assets/fonts/lexend-500.woff2") format("woff2");
}

@font-face {
  font-family: "Lexend";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/fonts/lexend-600.woff2") format("woff2");
}

@font-face {
  font-family: "Lexend";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/assets/fonts/lexend-700.woff2") format("woff2");
}

@font-face {
  font-family: "Lexend";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("/assets/fonts/lexend-900.woff2") format("woff2");
}

@font-face {
  font-family: "Tilt Warp";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/tilt-warp-400.woff2") format("woff2");
}

:root {
  color-scheme: light;
  --bg: #edf2f9;
  --panel: #ffffff;
  --panel-soft: rgba(255, 255, 255, 0.72);
  --ink: #333333;
  --ink-deep: #101820;
  --muted: #515e70;
  --line: rgba(8, 54, 153, 0.15);
  --blue: #2b7be4;
  --blue-hover: #1f69c7;
  --green: #00b67a;
  --eyebrow: #c47ee0;
  --surface-cool: #f8f9fc;
  --shadow: 0 18px 60px rgba(18, 44, 84, 0.12);
  --shadow-soft: 0 12px 36px rgba(18, 44, 84, 0.08);
  --radius: 8px;
  --max: 1120px;
  --link: #0099ff;
  --link-hover: #65a7fc;
  --strong: #465264;
  --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;
  --font-display: "Lexend", "Inter", sans-serif;
  --font-eyebrow: "IBM Plex Sans", "Inter", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.2;
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  width: min(100% - 32px, var(--max));
  min-height: 64px;
  padding: 12px 16px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: background 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(255, 255, 255, 0.86);
  border-color: var(--line);
  box-shadow: 0 10px 30px rgba(30, 72, 130, 0.12);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  top: 10px;
}

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

.main-nav,
.nav-actions,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.main-nav {
  justify-content: center;
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
}

.main-nav-login,
.nav-toggle {
  display: none;
}

.nav-toggle {
  width: 40px;
  height: 40px;
  padding: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 180ms ease, opacity 180ms ease;
}

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

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

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

.main-nav a,
.plain-link,
.site-footer a {
  transition: color 160ms ease;
}

.main-nav a:hover,
.plain-link:hover,
.site-footer a:hover {
  color: var(--link-hover);
}

.plain-link {
  color: var(--blue);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid rgba(43, 123, 228, 0.12);
  border-radius: var(--radius);
  background: var(--blue);
  color: white;
  box-shadow: 0 8px 22px rgba(43, 123, 228, 0.24);
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  background: var(--blue-hover);
  box-shadow: 0 12px 28px rgba(43, 123, 228, 0.28);
}

.button-small {
  min-height: 38px;
  padding: 0 16px;
}

.button-ghost {
  background: white;
  color: var(--ink);
  box-shadow: none;
}

.button-ghost:hover {
  background: var(--surface-cool);
}

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
  min-height: 0;
  padding: 150px 20px 40px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg) 40%, rgba(237, 242, 249, 0.88) 100%);
  overflow: hidden;
  pointer-events: none;
  animation: hero-gradient-area-in 600ms cubic-bezier(0.12, 0.23, 0.5, 1) both;
  will-change: transform;
}

.hero-bg::before {
  content: "";
  position: absolute;
  top: 341px;
  right: -1164px;
  width: 281vw;
  height: 3185px;
  background: radial-gradient(50% 50%, #edf2f9 42%, #5ca3ff 58%, #d2b8ff 76%, #edf2f9 92%);
  opacity: 0.95;
  transform: translate3d(0, 0, 0) scale(1);
  transform-origin: center;
  animation: hero-gradient-drift 8s ease-in-out 650ms infinite;
  will-change: transform;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(237, 242, 249, 0.46) 0%, rgba(237, 242, 249, 0.02) 48%, rgba(237, 242, 249, 0.22) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 20px;
  width: min(100%, 880px);
  padding: 0 0 20px;
  text-align: center;
  animation: hero-copy-in 780ms cubic-bezier(0.16, 1, 0.3, 1) 120ms both;
}

.eyebrow {
  margin: 0;
  color: var(--eyebrow);
  font-family: var(--font-eyebrow);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

h1 {
  font-family: var(--font-display);
  font-size: 80px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0;
}

h1 strong {
  font-weight: 900;
}

h2 {
  font-family: var(--font-display);
  font-size: 48px;
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: 0;
}

h3 {
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0;
}

.hero-copy,
.section-header p:not(.eyebrow),
.page-hero p:not(.eyebrow),
.maker-copy p,
.legal-doc p,
.article-body p,
.blog-card p,
.faq-item p {
  color: var(--muted);
}

.hero-copy {
  max-width: 760px;
  margin: 0 auto;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}

.hero-copy strong {
  color: inherit;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.trustpilot-link {
  display: block;
  border-radius: 10px;
  line-height: 0;
}

.trustpilot {
  width: 173px;
  height: 38px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.09);
  object-fit: contain;
}

.hero-diagram {
  position: relative;
  z-index: 1;
  width: min(99%, 1120px);
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(32, 56, 86, 0.13));
  opacity: 0;
  animation:
    hero-diagram-in 900ms cubic-bezier(0.16, 1, 0.3, 1) 300ms both,
    diagram-float 5s ease-in-out 1.25s infinite;
}

.hero-diagram-desktop {
  height: 300px;
  margin: 0 auto;
}

.hero-diagram-mobile {
  display: none;
  width: min(86%, 420px);
  height: auto;
  margin: 24px auto 12px;
}

@media (max-width: 760px) {
  .hero-diagram-desktop {
    display: none;
  }

  .hero-diagram-mobile {
    display: block;
  }
}

.services-strip,
.product-section,
.pricing-section,
.yes-section,
.maker-section,
.testimonials-section,
.faq-section,
.blog-list,
.try-signum {
  padding: 60px 20px;
}

.section-header {
  display: grid;
  gap: 10px;
  width: min(100%, 760px);
  margin: 0 auto 42px;
  text-align: center;
}

.section-header h2,
.page-hero h1 {
  font-size: 80px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0;
}

.section-header p:last-child {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}

.marquee {
  width: min(100%, var(--max));
  margin: 0 auto;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.services-strip {
  padding: 15px 0;
  background: #fff;
  overflow: hidden;
}

.services-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0 24px;
}

.services-marquee {
  width: 100%;
  margin: 0;
}

.marquee-track {
  display: flex;
  gap: 7px;
  width: max-content;
  animation: marquee 32s linear infinite;
}

.service-chip {
  display: grid;
  grid-template-columns: 42px auto;
  align-items: center;
  gap: 10px;
  min-width: 160px;
  min-height: 54px;
  padding: 8px 12px;
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.service-chip:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(18, 44, 84, 0.12);
}

.service-chip img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.product-section {
  padding: 60px 20px;
  background: rgba(255, 255, 255, 0.46);
}

.product-section .section-header {
  margin-bottom: 40px;
}

.product-video-frame {
  display: flex;
  justify-content: center;
  width: 100%;
}

.video-shell {
  position: relative;
  width: min(100%, var(--max));
  padding: 0;
  overflow: hidden;
  border: 4px solid var(--ink);
  border-radius: 20px;
  background: var(--ink-deep);
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: box-shadow 200ms ease;
}

.video-shell video {
  display: block;
  width: 100%;
  pointer-events: none;
}

.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 88px;
  height: 88px;
  transform: translate(-50%, -50%) scale(1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--blue);
  box-shadow: 0 14px 40px rgba(18, 44, 84, 0.32);
  transition: transform 220ms cubic-bezier(0.34, 1.56, 0.64, 1), background 200ms ease,
    box-shadow 220ms ease, color 200ms ease;
}

.video-play:hover,
.video-shell:focus-visible .video-play {
  transform: translate(-50%, -50%) scale(1.18);
  background: white;
  color: var(--blue-hover);
  box-shadow: 0 20px 56px rgba(43, 123, 228, 0.45);
}

.video-play svg {
  width: 38px;
  height: 38px;
  margin-left: 4px;
  fill: currentColor;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(8, 16, 32, 0.82);
  backdrop-filter: blur(6px);
}

.video-modal[hidden] {
  display: none;
}

.video-modal video {
  width: min(100%, 1280px);
  max-height: calc(100vh - 80px);
  border-radius: 16px;
  background: var(--ink-deep);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.video-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: white;
  cursor: pointer;
  transition: background 160ms ease;
}

.video-modal-close:hover {
  background: rgba(255, 255, 255, 0.28);
}

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

.feature-card,
.testimonial-card,
.blog-card,
.legal-doc,
.article-body,
.try-signum,
.faq-list {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
}

.pricing-section {
  padding: 60px 20px;
  background: rgba(255, 255, 255, 0.4);
  scroll-margin-top: 90px;
}

.pricing-stage {
  display: grid;
  justify-items: center;
  gap: 20px;
  width: min(100%, 760px);
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  position: relative;
}

.pricing-price-stack {
  display: grid;
  justify-items: center;
  gap: 0;
  width: min(100%, 680px);
  overflow: visible;
}

.pricing-kicker {
  color: var(--eyebrow);
  font-family: var(--font-eyebrow);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.5;
  text-transform: uppercase;
}

.price-lockup {
  position: relative;
  display: grid;
  place-items: center;
  width: min(100%, 463px);
  min-height: 231px;
  overflow: visible;
  animation: price-hover 5.6s ease-in-out infinite;
  will-change: transform;
}

.price {
  position: relative;
  z-index: 1;
  color: #fff;
  font-family: "Tilt Warp", "Lexend", sans-serif;
  font-size: 210px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0;
  -webkit-text-stroke: 8px var(--ink-deep);
  paint-order: stroke fill;
  text-shadow: 0 1px 20px rgba(244, 140, 255, 0.43);
}

.price-icon {
  position: absolute;
  z-index: 4;
  width: 68px;
  opacity: 0.92;
  filter:
    drop-shadow(0 0 10px rgba(255, 255, 255, 0.98))
    drop-shadow(0 12px 24px rgba(207, 168, 255, 0.45));
  animation: price-sparkle 2.9s ease-in-out infinite;
  will-change: transform, filter, opacity;
}

.price-icon-left {
  top: -9px;
  left: calc(50% + 62px);
  animation-delay: 0.35s;
}

.price-icon-right {
  bottom: -18px;
  left: calc(50% - 135px);
  animation-delay: 1.45s;
}

.pricing-note {
  color: var(--muted);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.2;
}

.pricing-note strong {
  color: inherit;
  font-weight: 700;
}

.yes-section {
  padding: 60px 20px;
  background: rgba(255, 255, 255, 0.4);
}

.yes-header {
  width: min(100%, 760px);
  margin: 0 auto 27px;
  text-align: center;
}

.yes-header h3 {
  font-size: 32px;
  line-height: 1.2;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: end;
  gap: 30px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.feature-card img {
  width: 100%;
  height: 160px;
  border-radius: 20px;
  object-fit: cover;
}

.feature-question {
  color: var(--muted);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
}

.feature-answer {
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}

.maker-copy {
  display: grid;
  gap: 18px;
}

.maker-copy > p {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}

.maker-section {
  padding: 60px 20px;
  background: rgba(255, 255, 255, 0.67);
  scroll-margin-top: 90px;
  overflow: hidden;
}

.exchanges-section {
  padding: 80px 20px 60px;
  scroll-margin-top: 90px;
}

.exchange-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.exchange-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-soft);
  box-shadow: 0 8px 24px rgba(18, 44, 84, 0.06);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
  color: var(--ink);
  text-decoration: none;
}

.exchange-card:hover {
  transform: translateY(-2px);
  border-color: rgba(43, 123, 228, 0.4);
  box-shadow: 0 14px 32px rgba(18, 44, 84, 0.12);
}

.exchange-card img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
}

.exchange-meta {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.exchange-meta h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}

.exchange-meta p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.2;
}

.maker-section .section-header {
  gap: 5px;
  width: min(100%, 680px);
  margin-bottom: 40px;
}

.maker-rows {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.maker-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 35px;
  width: min(64%, 1200px);
  padding: 0 40px;
  overflow: hidden;
}

.maker-row-person {
  padding-bottom: 30px;
}

.maker-image {
  display: block;
  flex: none;
  width: 264px;
  height: 195px;
  border-radius: 30px;
  object-fit: cover;
}

.maker-image-dappradar {
  width: 267px;
  height: 198px;
  object-position: center bottom;
}

.maker-rows .maker-copy {
  display: flex;
  flex: 1 0 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  width: 1px;
}

.maker-rows .maker-copy-right {
  align-items: flex-end;
  text-align: right;
}

.maker-rows .maker-copy h3 {
  font-size: 32px;
  line-height: 1.2;
}

.maker-rows .maker-copy > p {
  color: var(--muted);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}

.maker-more-info {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding-top: 30px;
}

.maker-more-info p {
  color: var(--muted);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}

.maker-more-info strong {
  color: var(--muted);
  font-weight: 700;
}

.maker-social-link {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  background: #fff;
  color: var(--blue);
  box-shadow: 0 8px 20px rgba(18, 44, 84, 0.08);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.maker-social-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(18, 44, 84, 0.12);
}

.maker-social-link svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.testimonial-grid-wrap,
.mini-testimonials {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.testimonial-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  width: 100%;
}

.testimonial-card {
  display: grid;
  align-content: start;
  width: auto;
  padding: 20px;
  border: 1px solid transparent;
  border-radius: 20px;
  background: #fff;
  box-shadow:
    0 0.8px 2.4px -0.63px rgba(0, 0, 0, 0.05),
    0 2.4px 7.2px -1.25px rgba(0, 0, 0, 0.05),
    0 6.4px 19.1px -1.88px rgba(0, 0, 0, 0.05),
    0 20px 60px -2.5px rgba(0, 0, 0, 0.05);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.testimonial-card:hover {
  transform: translateY(-2px);
  border-color: rgba(43, 123, 228, 0.4);
  box-shadow: 0 14px 32px rgba(18, 44, 84, 0.12);
}

.person {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
}

.person img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.person h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
}

.person p {
  color: #999;
  font-size: 14px;
  line-height: 1.5;
}

blockquote {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.2;
}

.centered-cta {
  margin-top: 34px;
  text-align: center;
}

.testimonial-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.trustpilot-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 18px 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-soft);
  box-shadow: 0 8px 24px rgba(18, 44, 84, 0.06);
  color: var(--ink);
  text-align: left;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.trustpilot-cta:hover {
  transform: translateY(-1px);
  border-color: rgba(43, 123, 228, 0.4);
  box-shadow: 0 12px 28px rgba(18, 44, 84, 0.12);
}

.trustpilot-cta img {
  width: 132px;
  height: 30px;
  border-radius: 6px;
  object-fit: contain;
}

.trustpilot-cta-text {
  display: grid;
  gap: 1px;
  line-height: 1.2;
}

.trustpilot-cta-text strong {
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.trustpilot-cta-text em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.trustpilot-cta-arrow {
  color: var(--link);
  font-size: 16px;
  font-weight: 700;
  transition: transform 160ms ease;
}

.trustpilot-cta:hover .trustpilot-cta-arrow {
  transform: translateX(3px);
}

.faq-list {
  width: min(100%, var(--max));
  margin: 0 auto;
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: background 160ms ease;
}

.faq-item:hover {
  background: rgba(43, 123, 228, 0.04);
}

.faq-item:hover .faq-question {
  color: var(--ink);
}

.faq-item:last-child {
  border-bottom: 0;
}

.faq-question {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 26px 40px 26px 68px;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-family: inherit;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.22;
  text-align: left;
  transition: color 220ms ease;
}

.faq-question-text {
  transition:
    transform 320ms cubic-bezier(0.16, 1, 0.3, 1),
    text-shadow 240ms ease;
}

.faq-item.is-open .faq-question-text {
  font-weight: 700;
  text-shadow: 0 0 0 currentColor;
  transform: translateY(-1px);
}

.faq-icon {
  position: absolute;
  top: 50%;
  left: 24px;
  width: 14px;
  height: 14px;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.32);
  transform: translate(-50%, -50%);
  transition:
    opacity 220ms ease,
    transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-icon {
  transform: translateY(-50%) rotate(45deg);
}

.faq-item.is-open .faq-icon::after {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-8px);
  transition:
    grid-template-rows 360ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 240ms ease,
    transform 360ms cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer-inner {
  min-height: 0;
  overflow: hidden;
}

.faq-answer-content {
  display: grid;
  gap: 22px;
  justify-items: start;
  padding: 0 40px 34px 68px;
}

.faq-answer p {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.24;
}

.faq-answer p a {
  color: var(--link);
  text-decoration: underline;
}

.faq-answer p a:hover {
  color: var(--link-hover);
}

.faq-answer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: -4px;
}

.faq-answer-link {
  gap: 10px;
  min-height: 48px;
  margin-top: 0;
  padding: 0 20px;
  font-size: 16px;
}

.faq-answer-link-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: currentColor;
}

.faq-answer-link-icon-youtube {
  width: 21px;
  height: 21px;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
  opacity: 1;
  transform: translateY(0);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 24px max(20px, calc((100vw - var(--max)) / 2));
  border-top: 2px solid var(--line);
  background: var(--surface-cool);
  color: var(--muted);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
}

.site-footer a {
  color: var(--blue);
  font-weight: 400;
}

.page-hero {
  display: grid;
  gap: 18px;
  justify-items: center;
  min-height: 58vh;
  padding: 150px 20px 70px;
  text-align: center;
}

.page-hero.compact {
  min-height: 0;
  padding-bottom: 48px;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}

.blog-list {
  display: grid;
  gap: 20px;
  width: min(100%, 760px);
  margin: 0 auto;
}

.blog-card {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 22px;
  padding: 16px;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.blog-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.blog-card img {
  width: 150px;
  height: 150px;
  border-radius: var(--radius);
  object-fit: cover;
}

.blog-card h2 {
  margin: 6px 0 8px;
  font-size: 22px;
  line-height: 1.2;
}

.article {
  padding: 130px 20px 0;
}

/* Back link sits above the article hero, left-aligned to
   the article column (760px max, centred). The wrapper does the
   centering; the link itself is inline-flex so its hit-area only covers
   the visible "← All posts" text — not a full-width clickable strip. */
.article-back-wrap {
  width: min(100%, 760px);
  margin: 0 auto 20px;
}

.article-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color 160ms ease;
}

.article-back:hover {
  color: var(--blue);
}

.article-back span[aria-hidden] {
  transition: transform 160ms ease;
}

.article-back:hover span[aria-hidden] {
  transform: translateX(-2px);
}

.article-hero {
  display: grid;
  gap: 24px;
  justify-items: center;
  width: min(100%, 760px);
  margin: 0 auto 52px;
  text-align: center;
}

/* Article titles are long form (full sentences) — the global h1 size of
   80px causes excessive line-wrapping inside the 760px article column. */
.article-hero h1 {
  font-size: 44px;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.article-hero img {
  width: min(100%, 560px);
  max-height: 520px;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.article-body {
  display: grid;
  gap: 34px;
  width: min(100%, 760px);
  margin: 0 auto 80px;
  padding: 34px;
}

.article-section {
  display: grid;
  gap: 16px;
}

.article-section h2 {
  font-size: 32px;
}

/* Sub-section heading inside an article — used for the four exchange names
   (KuCoin, ByBit, …) in the comparison post. */
.article-section h4 {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: 0;
  margin-top: 12px;
}

/* Comparison tables in article prose. Horizontal scroll on narrow screens
   handled by the .article-table wrapper. */
.article-table {
  overflow-x: auto;
}

.article-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.article-table th,
.article-table td {
  padding: 10px 14px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.article-table th {
  background: var(--surface-cool);
  font-weight: 700;
}

.article-table tbody tr:nth-child(even) td {
  background: rgba(15, 23, 42, 0.025);
}

/* Links inside table cells stand out — affiliate clicks need to be clearly
   clickable, not blend into the prose. */
.article-table a {
  color: var(--link);
  text-decoration: none;
  font-weight: 600;
}

.article-table a:hover {
  color: var(--link-hover);
  text-decoration: underline;
}

/* Links wrapping a heading inherit the heading's text style; only the cursor
   and a subtle hover colour signal that the heading is clickable. */
.article-section h2 a,
.article-section h3 a,
.article-section h4 a {
  color: inherit;
  text-decoration: none;
}

.article-section h2 a:hover,
.article-section h3 a:hover,
.article-section h4 a:hover {
  color: var(--link);
}

.article-body p a {
  color: var(--link);
  text-decoration: underline;
  word-break: break-word;
}

.article-body p a:hover {
  color: var(--link-hover);
}

.article-inline-image {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.code-block {
  overflow-x: auto;
  margin: 4px 0 8px;
  padding: 18px;
  border-radius: var(--radius);
  background: var(--ink-deep);
  color: var(--surface-cool);
  font-size: 14px;
}

/* Inline <code> in article prose: gray pill, bold, sans-serif. Used for UI
   labels and value references like "Strategy Tester" or "1.0075 * 6603.25". */
.article-body code {
  padding: 1px 7px;
  border-radius: 6px;
  background: rgba(15, 23, 42, 0.08);
  color: inherit;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.95em;
}

/* Block code (<pre class="code-block">) keeps its own dark styling —
   reset the inline pill look for <code> nested inside a <pre>. */
.article-body pre.code-block code {
  padding: 0;
  border-radius: 0;
  background: none;
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-weight: normal;
  font-size: inherit;
}

.try-signum {
  display: grid;
  gap: 24px;
  justify-items: center;
  width: min(100% - 40px, var(--max));
  margin: 0 auto 80px;
  text-align: center;
}

.legal-doc {
  display: grid;
  gap: 14px;
  width: min(100% - 40px, 920px);
  margin: 0 auto 90px;
  padding: 34px;
  color: var(--muted);
}

.legal-doc-rich {
  gap: 18px;
}

.legal-doc-rich .legal-section {
  display: grid;
  gap: 14px;
}

.legal-doc-rich h2 {
  margin-top: 20px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
}

.legal-doc-rich h3 {
  margin-top: 8px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
}

.legal-doc-rich p,
.legal-doc-rich li,
.legal-doc-rich address,
.legal-doc-rich td,
.legal-doc-rich th {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.48;
  overflow-wrap: anywhere;
}

.legal-doc-rich address {
  display: grid;
  gap: 4px;
  font-style: normal;
}

.legal-doc-rich strong,
.legal-doc-rich th {
  color: var(--strong);
  font-weight: 800;
}

.legal-doc-rich ul,
.legal-doc-rich ol {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 24px;
}

.legal-doc-rich a {
  color: var(--link);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-updated {
  font-weight: 600;
}

.legal-toc {
  display: grid;
  gap: 12px;
  margin: 8px 0 12px;
}

.legal-toc h2 {
  margin: 0;
  font-size: 18px;
}

.legal-table-wrap {
  overflow-x: auto;
  width: 100%;
}

.legal-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
}

.legal-table th,
.legal-table td {
  padding: 12px 14px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.legal-table th {
  background: rgba(255, 255, 255, 0.56);
}

.legal-doc-rich .cookie-list {
  list-style: none;
  padding: 16px 18px;
  margin: 12px 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.5);
  display: grid;
  gap: 6px;
}

.legal-doc-rich .cookie-list li {
  margin: 0;
}

.legal-doc-rich .cookie-divider {
  text-align: center;
  color: var(--muted);
  margin: 8px 0;
}

.imprint-hero {
  justify-items: start;
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding-right: 0;
  padding-left: 0;
  text-align: left;
}

.imprint-doc {
  gap: 26px;
  width: min(100% - 40px, var(--max));
  padding: 44px 50px 52px;
}

.imprint-doc ul {
  gap: 0;
  padding-left: 34px;
}

.short-page {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 60px 20px;
  background:
    radial-gradient(circle at 18% 0%, rgba(43, 123, 228, 0.10), transparent 55%),
    radial-gradient(circle at 82% 100%, rgba(196, 126, 224, 0.10), transparent 55%),
    var(--bg);
}

.short-page-card {
  display: grid;
  gap: 18px;
  justify-items: center;
  width: min(100%, 460px);
  padding: 48px 40px 40px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--panel);
  box-shadow: var(--shadow);
  text-align: center;
}

.short-page-icon {
  width: 180px;
  height: auto;
  object-fit: contain;
  margin-bottom: 4px;
}

.short-page-greeting {
  margin: 0;
  font-size: 100px;
  line-height: 1;
}

.short-page-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 4px 0 8px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 500;
}

.short-page-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid var(--line);
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: short-page-spin 0.9s linear infinite;
}

.short-page-fallback {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
}

/* Preview-mode hint, only shown when ?preview is in the URL. The flag is
   set on <html data-short-preview="1"> by the in-partial script. */
.short-page-preview-note {
  display: none;
  margin: 12px 0 0;
  padding: 10px 14px;
  border: 1px dashed var(--line);
  border-radius: 10px;
  background: rgba(43, 123, 228, 0.05);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.short-page-preview-note code {
  padding: 1px 6px;
  border-radius: 4px;
  background: rgba(15, 23, 42, 0.08);
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 0.95em;
}

[data-short-preview="1"] .short-page-preview-note {
  display: block;
}

@keyframes short-page-spin {
  to { transform: rotate(360deg); }
}

.cookie-trigger {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 40;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: white;
  color: var(--blue);
  box-shadow: var(--shadow);
  cursor: pointer;
}

.cookie-trigger svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.cookie-banner {
  position: fixed;
  z-index: 50;
  left: 18px;
  bottom: 78px;
  display: grid;
  gap: 16px;
  width: min(100% - 36px, 560px);
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

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

.cookie-copy {
  display: grid;
  gap: 6px;
}

.cookie-copy p {
  color: var(--muted);
}

.cookie-copy a {
  color: var(--blue);
  font-weight: 700;
}

.cookie-options {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--muted);
}

.cookie-options[hidden],
.cookie-actions .button[hidden] {
  display: none;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  align-items: center;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes diagram-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

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

@keyframes hero-diagram-in {
  from {
    opacity: 0;
    transform: translateY(70px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-gradient-area-in {
  from {
    transform: translateY(70px);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes hero-gradient-drift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  20% {
    transform: translate3d(-210px, -150px, 0) scale(1.03);
  }
  42% {
    transform: translate3d(260px, -310px, 0) scale(1.07);
  }
  68% {
    transform: translate3d(360px, -80px, 0) scale(0.98);
  }
  84% {
    transform: translate3d(-180px, 130px, 0) scale(1.02);
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes price-hover {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes price-sparkle {
  0%,
  100% {
    opacity: 0.72;
    transform: scale(0.84) rotate(-6deg);
    filter:
      drop-shadow(0 0 7px rgba(255, 255, 255, 0.88))
      drop-shadow(0 10px 20px rgba(207, 168, 255, 0.34));
  }
  45% {
    opacity: 1;
    transform: scale(1.08) rotate(5deg);
    filter:
      drop-shadow(0 0 16px rgba(255, 255, 255, 1))
      drop-shadow(0 16px 28px rgba(207, 168, 255, 0.58));
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1199.98px) {
  h3,
  .yes-header h3 {
    font-size: 26px;
  }

  .service-chip {
    font-size: 14px;
  }

  .hero-inner {
    width: min(100%, 705px);
  }

  .hero-bg::before {
    right: -744px;
    width: 279vw;
  }

  .maker-row {
    flex-direction: column;
    width: min(100%, 480px);
    padding: 0 40px;
  }

  .maker-image,
  .maker-image-dappradar {
    width: 100%;
    height: 290px;
  }

  .maker-rows .maker-copy,
  .maker-rows .maker-copy-right {
    align-items: flex-start;
    width: 100%;
    text-align: left;
  }

  .maker-rows .maker-copy h3 {
    font-size: 26px;
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: auto 1fr;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    left: 0;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 14px 36px rgba(18, 44, 84, 0.14);
    backdrop-filter: blur(18px);
    font-size: 16px;
  }

  .site-header.is-open .main-nav {
    display: flex;
  }

  .main-nav a {
    padding: 12px 4px;
    border-bottom: 1px solid var(--line);
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .main-nav-login {
    display: block;
    color: var(--blue);
    font-weight: 700;
  }

  .nav-actions {
    gap: 12px;
    justify-content: flex-end;
  }

  .nav-actions .plain-link {
    display: none;
  }

  h1,
  .section-header h2,
  .page-hero h1 {
    font-size: 64px;
  }

  h2 {
    font-size: 40px;
  }

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

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

@media (max-width: 640px) {
  .site-header {
    width: calc(100% - 20px);
    gap: 12px;
    padding: 10px;
  }

  h1,
  .section-header h2,
  .page-hero h1 {
    font-size: 51px;
  }

  h2 {
    font-size: 32px;
  }

  h3,
  .yes-header h3 {
    font-size: 20px;
  }

  .hero {
    min-height: 0;
    padding: 90px 20px 40px;
  }

  .hero-copy,
  .page-hero p:not(.eyebrow) {
    font-size: 17px;
  }

  .hero-bg::before {
    top: 341px;
    right: -434px;
    width: 291vw;
  }

  .maker-section {
    padding: 60px 20px;
  }

  .maker-row {
    width: 100%;
    padding: 0 40px;
  }

  .maker-image,
  .maker-image-dappradar {
    height: 250px;
  }

  .maker-rows .maker-copy h3 {
    font-size: 20px;
  }

  .maker-more-info {
    flex-wrap: wrap;
  }

  .price {
    font-size: 150px;
  }

  .price-lockup {
    min-height: 190px;
  }

  .feature-card,
  .blog-card {
    grid-template-columns: 1fr;
  }

  .feature-card img,
  .blog-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 1.45;
  }

  .testimonial-track {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
    padding: 28px 20px 36px;
    font-size: 14px;
  }

  .site-footer nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 18px;
  }

  .article,
  .page-hero {
    padding-top: 100px;
  }

  .article-body,
  .legal-doc,
  .try-signum {
    padding: 22px;
  }

  .imprint-hero,
  .imprint-doc {
    width: calc(100% - 20px);
  }

  .imprint-doc {
    gap: 20px;
    padding: 24px;
  }

  .imprint-doc ul {
    padding-left: 24px;
  }

  .cookie-actions {
    justify-content: flex-start;
  }
}
