/*
Theme Name: Data Diode Theme
Theme URI: 
Author: michalmajdev
Author URI: 
Description: 
Requires at least: 6.9
Tested up to: 6.9
Requires PHP: 8.0
Version: 0.1.17
License: Systegrate Commercial License
License URI: http://www.systegrate.com/license
Text Domain: data-diode-theme
Tags: 
*/

/* --- Base layout --- */
.wp-site-blocks {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Micro animations */
.dd-card,
.dd-proof__points .dd-proof-tile__icon,
.dd-product-tile__icon,
.dd-btn-primary .wp-element-button,
.dd-btn-outline .wp-element-button {
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease,
    filter 0.18s ease,
    opacity 0.18s ease;
}
.dd-card:hover {
  transform: translateY(-2px);
}
.dd-card:focus-within {
  border-color: rgba(54, 201, 255, 0.35);
}
.dd-proof__points .dd-proof-tile:hover .dd-proof-tile__icon,
.dd-product-tile:hover .dd-product-tile__icon {
  transform: translateY(-1px) rotate(-4deg) scale(1.08);
}
.dd-btn-primary .wp-element-button:active,
.dd-btn-outline .wp-element-button:active {
  transform: translateY(0) scale(0.98);
}
.dd-btn-primary .wp-element-button:focus-visible,
.dd-btn-outline .wp-element-button:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 2px rgba(54, 201, 255, 0.25),
    0 0 0 1px rgba(54, 201, 255, 0.25) inset;
}
.dd-nav a {
  position: relative;
}
.dd-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(54, 201, 255, 0.65),
    rgba(80, 120, 255, 0.55)
  );
  transform: scaleX(0);
  transform-origin: left;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
  opacity: 0.55;
}
.dd-nav a:hover::after,
.dd-nav a:focus-visible::after {
  transform: scaleX(1);
  opacity: 0.85;
}

.dd-js .dd-animate {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.9s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.95s cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--dd-anim-delay, 0ms);
  will-change: opacity, transform;
}
.dd-js .dd-animate.dd-inview {
  opacity: 1;
  transform: none;
}
.dd-js .dd-animate-opacity {
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--dd-anim-delay, 0ms);
  will-change: opacity;
}
.dd-js .dd-animate-opacity.dd-inview {
  opacity: 1;
}
@media (prefers-reduced-motion: reduce) {
  .dd-card,
  .dd-proof__points .dd-proof-tile__icon,
  .dd-product-tile__icon,
  .dd-btn-primary .wp-element-button,
  .dd-btn-outline .wp-element-button,
  .dd-js .dd-animate,
  .dd-js .dd-animate-opacity,
  .dd-nav a::after {
    transition: none !important;
    animation: none !important;
    transform: none !important;
  }
  .dd-js .dd-animate {
    opacity: 1 !important;
  }
  .dd-js .dd-animate-opacity {
    opacity: 1 !important;
  }
  .dd-nav a::after {
    transform: scaleX(0) !important;
  }
  .dd-nav a:hover::after,
  .dd-nav a:focus-visible::after {
    transform: scaleX(1) !important;
  }
  .dd-release-banner__eyebrow::before {
    animation: none !important;
  }
}
.wp-site-blocks > header,
.wp-site-blocks > footer {
  flex: 0 0 auto;
}
.wp-site-blocks > main {
  flex: 1 0 auto;
}

/* Mobile page gutters (prevent edge-to-edge content) */
@media (max-width: 900px) {
  .wp-site-blocks > main {
    padding-left: 18px;
    padding-right: 18px;
    padding-left: max(18px, env(safe-area-inset-left));
    padding-right: max(18px, env(safe-area-inset-right));
  }

  .dd-header .dd-header__inner,
  .dd-footer .dd-footer__inner {
    padding-left: 18px;
    padding-right: 18px;
    padding-left: max(18px, env(safe-area-inset-left));
    padding-right: max(18px, env(safe-area-inset-right));
  }
}

.dd-main {
  overflow: hidden;
}

/* --- Header --- */
.dd-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(7, 11, 26, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.dd-header__inner {
  padding: 14px 0;
}
.dd-logo {
  line-height: 1;
}
.dd-logo a {
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.2px;
  display: inline-flex;
  align-items: center;
}
.dd-logo img {
  display: block;
  width: auto;
  height: 44px;
}
.dd-nav a:hover {
  opacity: 1;
}
.dd-header__right {
  gap: 14px;
}
.dd-lang-switcher-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  height: 36px;
  min-width: 60px;
  padding: 0 34px 0 12px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.03)
  );
  color: rgba(234, 240, 255, 0.9);
  font: inherit;
  line-height: 1;
  letter-spacing: 0.2px;
  cursor: pointer;
}
.dd-lang-switcher-select:focus {
  outline: none;
  border-color: rgba(54, 201, 255, 0.55);
  box-shadow: 0 0 0 2px rgba(54, 201, 255, 0.25);
}
.dd-lang:not(:has(select)) {
  display: none;
}
.dd-lang {
  position: relative;
}
.dd-lang::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid rgba(234, 240, 255, 0.75);
  border-bottom: 2px solid rgba(234, 240, 255, 0.75);
  transform: translateY(-60%) rotate(45deg);
  pointer-events: none;
}
.dd-lang-switcher-select option {
  background: #0b1230;
  color: rgba(234, 240, 255, 0.92);
}
.dd-lang-switcher {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 10px;
}
.dd-lang-switcher__link {
  text-decoration: none;
  opacity: 0.85;
}
.dd-lang-switcher__link:hover {
  opacity: 1;
}
.dd-lang-switcher__link[aria-current="true"] {
  opacity: 1;
  font-weight: 650;
}

/* --- Buttons --- */
.dd-btn-primary .wp-element-button {
  background: linear-gradient(
    90deg,
    rgba(54, 201, 255, 1),
    rgba(80, 120, 255, 1)
  );
  color: #06102a;
  border: none;
  box-shadow: 0 10px 30px rgba(54, 201, 255, 0.18);
}
.dd-btn-outline .wp-element-button {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--wp--preset--color--text);
}

/* --- Hero --- */
.dd-hero__lead {
  color: var(--wp--preset--color--muted);
  font-size: 18px;
  max-width: 60ch;
}
.dd-hero__bullets {
  margin-top: 18px;
  color: var(--wp--preset--color--muted);
}
.dd-badges {
  margin-top: 18px;
  gap: 10px;
}
.dd-badge {
  margin: 0;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(234, 240, 255, 0.85);
  font-size: 13px;
}

/* --- Release banner --- */
.dd-release-banner {
  position: relative;
  isolation: isolate;
  width: 100%;
  max-width: var(--wp--style--global--content-size) !important;
  margin-left: auto;
  margin-right: auto;
  margin-block-start: 0 !important;
  padding: 24px 0 4px !important;
}
.dd-release-banner__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  width: 100%;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
  gap: 14px;
  align-items: center;
  overflow: hidden;
  padding: 12px 20px;
  border: 1px solid rgba(54, 201, 255, 0.48);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(54, 201, 255, 0.24), transparent 28%),
    linear-gradient(120deg, rgba(255, 95, 197, 0.16), transparent 48%),
    linear-gradient(135deg, rgba(10, 28, 70, 0.96), rgba(13, 16, 42, 0.98));
  box-shadow:
    0 18px 62px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(54, 201, 255, 0.18),
    0 0 38px rgba(54, 201, 255, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}
.dd-release-banner__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.045) 0,
      rgba(255, 255, 255, 0.045) 1px,
      transparent 1px,
      transparent 28px
    ),
    linear-gradient(
      90deg,
      rgba(54, 201, 255, 0.22),
      rgba(255, 95, 197, 0.08) 42%,
      transparent 72%
    ),
    radial-gradient(
      420px 180px at 88% 18%,
      rgba(255, 95, 197, 0.28),
      transparent 70%
    ),
    radial-gradient(
      360px 160px at 68% 92%,
      rgba(54, 201, 255, 0.28),
      transparent 70%
    );
  opacity: 0.9;
}
.dd-release-banner__inner::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, #36c9ff, #5078ff, #ff5fc5);
  box-shadow: 0 0 18px rgba(54, 201, 255, 0.7);
}
.dd-release-banner__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0 0 2px;
  color: rgba(54, 201, 255, 0.95);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.dd-release-banner__eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #36c9ff;
  box-shadow:
    0 0 0 4px rgba(54, 201, 255, 0.14),
    0 0 18px rgba(54, 201, 255, 0.9);
  animation: dd-release-pulse 1.8s ease-in-out infinite;
}
.dd-release-banner__title {
  margin: 0;
  max-width: 980px;
  color: rgba(247, 250, 255, 0.98);
  font-size: clamp(18px, 1.65vw, 24px);
  line-height: 1.12;
  letter-spacing: 0;
}
.dd-release-banner__description {
  margin: 3px 0 0;
  max-width: 980px;
  color: rgba(218, 228, 255, 0.82);
  font-size: 13px;
  line-height: 1.35;
}
.dd-release-banner__protocols {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  margin-top: 7px;
}
.dd-release-banner__protocol-label,
.dd-release-banner__protocol {
  display: inline-flex;
  min-height: 22px;
  align-items: center;
  white-space: nowrap;
  border-radius: 999px;
  font-size: 10px;
  line-height: 1;
}
.dd-release-banner__protocol-label {
  color: rgba(234, 240, 255, 0.68);
  font-weight: 700;
}
.dd-release-banner__protocol {
  padding: 5px 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(245, 248, 255, 0.9);
}
.dd-release-banner__protocol--more {
  color: rgba(54, 201, 255, 0.95);
  border-color: rgba(54, 201, 255, 0.28);
}
.dd-release-banner__action {
  display: flex;
  justify-content: flex-end;
}
.dd-release-banner__action .wp-block-button__link {
  white-space: nowrap;
  padding: 8px 14px;
  font-size: 13px;
  box-shadow:
    0 14px 34px rgba(54, 201, 255, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.18) inset;
}
.dd-release-banner + .dd-hero {
  padding-top: clamp(18px, 3vw, 40px);
}

@keyframes dd-release-pulse {
  0%,
  100% {
    opacity: 0.72;
    transform: scale(0.92);
  }
  50% {
    opacity: 1;
    transform: scale(1.12);
  }
}

/* --- Shared cards / glass --- */
.dd-section__lead {
  color: var(--wp--preset--color--muted);
}

/* --- Proof --- */
.dd-stat__label {
  margin: 6px 0 0;
  color: var(--wp--preset--color--muted);
}

.dd-proof__logos {
  margin-top: 18px;
  padding: 14px 16px;
  gap: 10px;
  justify-content: space-between;
}
.dd-logo-pill {
  margin: 0;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(234, 240, 255, 0.75);
  font-size: 13px;
}

/* --- Features --- */
.dd-feature__text {
  margin: 0;
  color: var(--wp--preset--color--muted);
}

/* Mobile tweaks */
@media (max-width: 900px) {
  .dd-proof__logos {
    justify-content: flex-start;
  }
}

/* =========================
   Data Diode OS – polish pack
   ========================= */

/* Base */
:root {
  --dd-bg: #070b1a;
  --dd-text: #eaf0ff;
  --dd-muted: rgba(234, 240, 255, 0.72);
  --dd-border: rgba(255, 255, 255, 0.1);
  --dd-surface: rgba(255, 255, 255, 0.045);
  --dd-surface-2: rgba(255, 255, 255, 0.06);
  --dd-accent: #36c9ff;
  --dd-accent-2: #5078ff;
  --dd-accent-3: #8b5cf6;
  --dd-accent-4: #2dd4bf;
  --dd-accent-5: #38bdf8;
}

/* Smooth typography */
body {
  color: var(--dd-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
p {
  color: var(--dd-muted);
}

/* Page background: aurora + subtle noise */
.wp-site-blocks {
  background:
    /* cyan / blue */
    radial-gradient(
      1000px 700px at 58% 8%,
      rgba(4, 120, 255, 0.22),
      transparent 70%
    ),
    radial-gradient(
      850px 380px at 72% 13%,
      rgba(0, 116, 255, 0.18),
      transparent 60%
    ),
    radial-gradient(
      900px 640px at 48% 48%,
      rgba(94, 120, 255, 0.22),
      transparent 70%
    ),
    /* purple / violet */
    radial-gradient(
        1000px 700px at 70% 82%,
        rgba(138, 92, 255, 0.18),
        transparent 50%
      ),
    radial-gradient(
      800px 600px at 25% 75%,
      rgba(180, 110, 255, 0.14),
      transparent 88%
    ),
    /* magenta highlight */
    radial-gradient(
        700px 500px at 55% 30%,
        rgba(255, 90, 200, 0.1),
        transparent 95%
      ),
    radial-gradient(
      1000px 700px at 20% 90%,
      rgba(138, 42, 255, 0.18),
      transparent 50%
    ),
    radial-gradient(
      800px 600px at 105% 95%,
      rgba(0, 110, 255, 0.14),
      transparent 88%
    ),
    linear-gradient(180deg, #070b1a, #070b1a);

  position: relative;
}

/* HERO-only: extra aurora (more blobs + purple/magenta) */
.dd-hero {
  position: relative;
  isolation: isolate;
}

/* intensify background only for first section */
.dd-hero::before {
  content: "";
  position: absolute;
  inset: -180px -120px -140px -120px; /* bigger than hero to avoid edges */
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(
      660px 430px at 76% 68%,
      rgba(138, 92, 255, 0.28),
      transparent 32%
    ),
    radial-gradient(
      360px 120px at 57% 47%,
      rgb(246 118 251 / 88%),
      transparent 88%
    ),
    radial-gradient(
      293px 100px at 55% 57%,
      rgb(0 88 255 / 98%),
      transparent 124%
    ),
    radial-gradient(
      380px 260px at 82% 35%,
      rgba(0, 80, 255, 0.8),
      transparent 87%
    ),
    radial-gradient(
      680px 520px at 40% 48%,
      rgba(255, 120, 220, 0.12),
      transparent 28%
    );
  filter: blur(2px) saturate(1.15);
  opacity: 0.85;
}

.dd-ui-showcase {
  max-height: 90dvh;
  overflow: hidden;
}

.dd-ui-showcase.dd-section {
  padding: 0;
}

/* intensify background only for first section */
.dd-ui-showcase::before {
  content: "";
  position: absolute;
  inset: -180px -120px -140px -120px;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(
      660px 430px at 76% 68%,
      rgba(138, 92, 255, 0.28),
      transparent 32%
    ),
    radial-gradient(
      360px 120px at 27% 57%,
      rgb(246 118 251 / 88%),
      transparent 88%
    ),
    radial-gradient(
      293px 100px at 25% 67%,
      rgb(0 88 255 / 98%),
      transparent 124%
    ),
    radial-gradient(
      380px 260px at 77% 45%,
      rgba(0, 80, 255, 0.8),
      transparent 87%
    ),
    radial-gradient(
      680px 520px at 20% 58%,
      rgba(255, 120, 220, 0.12),
      transparent 28%
    );
  filter: blur(2px) saturate(1.15);
  opacity: 0.85;
}

.dd-ui-slider {
  display: flex;
  flex-direction: column;
  padding: 30px 0;
  position: relative;
  width: 100dvw;
  max-width: 100dvw;
}

.dd-ui-slider__viewport {
  max-width: 100dvw;
  overflow: hidden;
  height: clamp(220px, 80vw, 800px);
  touch-action: pan-y;
  cursor: grab;
}

.dd-ui-slider__viewport:active {
  cursor: grabbing;
}

.dd-ui-slider__track {
  display: flex;
  height: 100%;
  transition: transform 0.55s ease;
  will-change: transform;
}

.dd-ui-slider__slide {
  flex: 0 0 100%;
  margin: 0;
  height: 100%;
  opacity: 1;
  transition: opacity 0.55s ease;
}

.dd-ui-slider__slide.is-exiting {
  opacity: 0;
}

.dd-ui-slider__slide.is-active {
  opacity: 1;
}

.dd-ui-slider__slide img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
}

.dd-ui-slider__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 16px 22px 22px;
}

.dd-ui-slider__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
  color: var(--dd-text);
  cursor: pointer;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}

.dd-ui-slider__arrow svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dd-ui-slider__arrow:hover {
  border-color: rgba(54, 201, 255, 0.35);
  background: rgba(54, 201, 255, 0.12);
  box-shadow: 0 0 0 1px rgba(54, 201, 255, 0.18) inset;
  transform: translateY(-1px);
}

.dd-ui-slider__arrow:focus-visible {
  outline: none;
  border-color: rgba(54, 201, 255, 0.45);
  box-shadow: 0 0 0 2px rgba(54, 201, 255, 0.35);
}

.dd-ui-slider__dots {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dd-ui-slider__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.dd-ui-slider__dot:hover {
  border-color: rgba(54, 201, 255, 0.35);
  transform: scale(1.1);
}

.dd-ui-slider__dot.is-active {
  border-color: transparent;
  background: var(--dd-accent-2);
  box-shadow: 0 0 10px rgba(54, 201, 255, 0.35);
  transform: scale(1.15);
}

.dd-ui-slider__dot:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(54, 201, 255, 0.35);
}

@media (max-width: 700px) {
  .dd-ui-slider__viewport {
    height: clamp(200px, 68vw, 360px);
  }

  .dd-ui-slider__controls {
    padding: 14px 16px 18px;
    gap: 10px;
  }

  .dd-ui-slider__arrow {
    width: 34px;
    height: 34px;
  }

  .dd-ui-slider__arrow svg {
    width: 16px;
    height: 16px;
  }

  .dd-ui-slider__dots {
    gap: 8px;
  }

  .dd-ui-slider__dot {
    width: 8px;
    height: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dd-ui-slider__track,
  .dd-ui-slider__slide,
  .dd-ui-slider__arrow,
  .dd-ui-slider__dot {
    transition: none !important;
  }
}

.dd-hero > * {
  position: relative;
  z-index: 2;
}

/* Section rhythm */
.dd-section {
  display: flex;
  flex-direction: column;
  padding: 92px 0;
}
@media (max-width: 900px) {
  .dd-section {
    padding: 24px 0;
  }
}

/* Constrained layout breathing room */
.wp-block-group.is-layout-constrained
  > :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
  margin-left: auto;
  margin-right: auto;
}

.wp-block-image {
  margin: 0;
}

.dd-card--image {
  overflow: hidden;
}

/* Header: more premium glass + underline gradient */
.dd-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(7, 11, 26, 0.55);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.dd-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(54, 201, 255, 0.65),
    rgba(80, 120, 255, 0.55),
    transparent
  );
  opacity: 0.7;
}
.dd-header__inner {
  padding: 16px 0;
}
.dd-nav a {
  font-size: 16px;
  opacity: 0.85;
  text-decoration: none;
}

.dd-logo a {
  font-weight: 800;
  letter-spacing: 0.3px;
}

/* Buttons: glow + better outline */
.dd-btn-primary .wp-element-button {
  background: linear-gradient(90deg, var(--dd-accent), var(--dd-accent-2));
  color: #06102a;
  border: none;
  box-shadow:
    0 12px 34px rgba(54, 201, 255, 0.2),
    0 0 0 1px rgba(54, 201, 255, 0.25) inset;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    filter 0.15s ease;
}
.dd-btn-primary .wp-element-button:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
  box-shadow:
    0 18px 50px rgba(54, 201, 255, 0.26),
    0 0 0 1px rgba(54, 201, 255, 0.32) inset;
}
.dd-btn-outline .wp-element-button {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--dd-text);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}
.dd-btn-outline .wp-element-button:hover {
  border-color: rgba(54, 201, 255, 0.35);
  box-shadow: 0 0 0 1px rgba(54, 201, 255, 0.22) inset;
}

/* Cards: real glass look */
.dd-card {
  border-radius: 22px;
  background:
    radial-gradient(
      900px 500px at 15% 10%,
      rgba(54, 201, 255, 0.16),
      transparent 60%
    ),
    rgba(255, 255, 255, 0.045);
  border: 1px solid var(--dd-border);
  box-shadow:
    0 26px 80px rgba(0, 0, 0, 0.48),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  backdrop-filter: blur(10px);
}
.dd-card:hover {
  border-color: rgba(54, 201, 255, 0.22);
}

/* CTA tile */
.dd-cta {
  padding-top: 120px;
}
.dd-cta .dd-card {
  padding: 22px;
}
.dd-cta__contact {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.dd-cta__contact-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(
    120deg,
    rgba(54, 201, 255, 0.18),
    rgba(255, 255, 255, 0.03) 45%,
    rgba(255, 255, 255, 0.05)
  );
  color: var(--dd-text);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  transition:
    transform 0.15s ease,
    border-color 0.15s ease,
    box-shadow 0.15s ease,
    filter 0.15s ease;
}
.dd-cta__contact-item::before {
  content: attr(data-icon);
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(54, 201, 255, 0.18);
  color: rgba(234, 240, 255, 0.9);
  font-size: 14px;
  font-weight: 700;
}
.dd-cta__contact-item:hover {
  transform: translateY(-1px);
  border-color: rgba(54, 201, 255, 0.35);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  filter: brightness(1.02);
}
.dd-cta__contact-value {
  overflow-wrap: anywhere;
}
@media (max-width: 640px) {
  .dd-cta__contact-item {
    width: 100%;
    justify-content: center;
  }
}

/* Hero: bigger, more dramatic, with divider line */
.dd-hero {
  display: flex;
  min-height: calc(100vh - 95px);
}
.dd-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
}
.dd-hero__title {
  font-size: clamp(40px, 3.9vw, 50px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.dd-hero__bullets li {
  margin-bottom: 6px;
}

/* Pills / badges */
.dd-badge,
.dd-logo-pill {
  margin: 0;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(234, 240, 255, 0.82);
  font-size: 13px;
}
.dd-badges {
  gap: 10px;
}

.dd-mockups__col {
  position: relative;
}
.dd-mockups__link {
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

/* Mockup: strong card + glow */
.dd-mockup {
  position: relative;
  isolation: isolate;
  transform-style: preserve-3d;
  border-radius: 18px;
  padding: 0px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow:
    10px 20px 20px rgba(0, 0, 0, 0.9),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset;
  backdrop-filter: blur(10px);
}
.dd-mockup::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  opacity: 0.98;
  border: 1px solid rgba(54, 201, 255, 0.24);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 0 18px rgba(54, 201, 255, 0.28),
    0 0 44px rgba(54, 201, 255, 0.22),
    0 0 88px rgba(118, 77, 255, 0.18);
  filter: drop-shadow(0 0 26px rgba(54, 201, 255, 0.34))
    drop-shadow(0 0 90px rgba(118, 77, 255, 0.22));
  pointer-events: none;
  z-index: 1;
}
.dd-mockup__img {
  margin: 0;
  position: relative;
  z-index: 2;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.22);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06) inset,
    0 20px 70px rgba(0, 0, 0, 0.55);
  transform: translateZ(0);
}
.dd-mockup--overlay {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  /* width: clamp(180px, 64%, 320px); */
  z-index: 3;
}

.dd-mockup__img img {
  border-radius: inherit;
  display: block;
  width: 100%;
  height: auto;
}

@supports (-webkit-mask-composite: xor) or (mask-composite: exclude) {
  .dd-mockup::before {
    border: none;
    box-shadow: none;
    padding: 2px;
    background: linear-gradient(
      135deg,
      rgba(54, 201, 255, 0.5),
      rgba(255, 255, 255, 0.02),
      rgba(48, 147, 255, 1) 60%,
      rgba(54, 201, 255, 0)
    );
    -webkit-mask:
      linear-gradient(#000 0 0) content-box,
      linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask:
      linear-gradient(#000 0 0) content-box,
      linear-gradient(#000 0 0);
    mask-composite: exclude;
    filter: drop-shadow(0 0 26px rgba(54, 201, 255, 0.34))
      drop-shadow(0 0 60px rgba(54, 201, 255, 0.22))
      drop-shadow(0 0 110px rgba(118, 77, 255, 0.2));
    mix-blend-mode: screen;
  }
}

@media (min-width: 900px) {
  .dd-hero__cols {
    perspective: 1400px;
  }
  .dd-mockups__col:hover .dd-mockup {
    transform: perspective(800px) rotateY(-10deg) scale(1.2) rotateX(0deg)
      translateY(-50px);
  }

  .dd-mockups__col:hover .dd-mockup--overlay {
    transform: perspective(800px) rotateY(0deg) translateY(150px)
      translateX(160px) translateZ(20px) scale(0.5) rotateX(0deg);
  }
  .dd-mockup {
    transform: perspective(800px) rotateY(-25deg) translateY(-20px)
      translateX(-70px) rotateX(10deg) scale(1.2);
    transition: 0.6s ease all;
  }
  .dd-mockup::before {
    transform: translateZ(24px) rotateX(2deg) rotateY(-4deg);
  }
  .dd-mockup__img {
    transform: translateZ(14px);
  }
  .dd-mockup__img--overlay {
    transform: translateZ(22px);
  }

  .dd-mockup--overlay {
    display: block;
    transform: perspective(800px) rotateY(-25deg) translateY(50px)
      translateX(160px) translateZ(20px) rotateX(10deg) scale(0.5);
    transition: 0.6s ease all;
  }
}

/* Proof stats: tighter, punchier */
.dd-proof__stats {
  gap: 18px;
}
.dd-stat {
  padding: 18px 18px;
}
.dd-stat__value {
  margin: 0;
  font-size: 30px;
  letter-spacing: -0.01em;
  background: linear-gradient(
    90deg,
    rgba(234, 240, 255, 1),
    rgba(54, 201, 255, 0.95)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Proof tiles: per-tile gradients */
.dd-proof__points .dd-proof-tile {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  --dd-proof-c1: var(--dd-accent);
  --dd-proof-c2: var(--dd-accent-2);
  --dd-proof-grad: linear-gradient(90deg, var(--dd-accent), var(--dd-accent-2));
}

.dd-proof__points .dd-proof-tile__icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(
      16px 16px at 30% 25%,
      color-mix(in srgb, var(--dd-proof-c1), transparent 70%),
      transparent 78%
    ),
    radial-gradient(
      18px 18px at 70% 70%,
      color-mix(in srgb, var(--dd-proof-c2), transparent 78%),
      transparent 82%
    ),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  color: color-mix(in srgb, var(--dd-proof-c1), rgba(234, 240, 255, 1) 35%);
}

.dd-proof__points .dd-proof-tile__head {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.dd-proof__points .dd-proof-tile__head .dd-feature__title {
  margin: 0;
}

.dd-proof__points .dd-proof-tile__icon svg {
  width: 30px;
  height: 30px;
  display: block;
}

.dd-proof__points .dd-proof-tile__icon svg path {
  vector-effect: non-scaling-stroke;
}

.dd-proof__points .dd-proof-tile:hover .dd-proof-tile__icon {
  filter: brightness(1.05);
  box-shadow:
    0 22px 70px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

@supports not (color: color-mix(in srgb, #fff, #000)) {
  .dd-proof__points .dd-proof-tile__icon {
    background: rgba(255, 255, 255, 0.03);
    color: var(--dd-proof-c1);
  }
}

.dd-proof__points .dd-proof-tile::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: var(--dd-proof-grad);
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
}

.dd-proof__points .dd-proof-tile::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  top: 12px;
  height: 1px;
  border-radius: 999px;
  background: var(--dd-proof-grad);
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

.dd-proof__points .dd-proof-tile > * {
  position: relative;
  z-index: 1;
}

.dd-proof__points .dd-proof-tile:hover::before {
  opacity: 0.1;
}

.dd-proof__points .dd-proof-tile .dd-feature__title {
  color: rgba(234, 240, 255, 0.95);
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .dd-proof__points .dd-proof-tile .dd-feature__title {
    background: var(--dd-proof-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}

.dd-proof__points .dd-proof-tile--1 {
  --dd-proof-c1: var(--dd-accent);
  --dd-proof-c2: var(--dd-accent-2);
  --dd-proof-grad: linear-gradient(90deg, var(--dd-accent), var(--dd-accent-2));
}
.dd-proof__points .dd-proof-tile--2 {
  --dd-proof-c1: var(--dd-accent-4);
  --dd-proof-c2: var(--dd-accent-2);
  --dd-proof-grad: linear-gradient(
    90deg,
    var(--dd-accent-4),
    var(--dd-accent-2)
  );
}
.dd-proof__points .dd-proof-tile--3 {
  --dd-proof-c1: var(--dd-accent-5);
  --dd-proof-c2: var(--dd-accent);
  --dd-proof-grad: linear-gradient(90deg, var(--dd-accent-5), var(--dd-accent));
}
.dd-proof__points .dd-proof-tile--4 {
  --dd-proof-c1: var(--dd-accent-3);
  --dd-proof-c2: var(--dd-accent);
  --dd-proof-grad: linear-gradient(90deg, var(--dd-accent-3), var(--dd-accent));
}
.dd-proof__points .dd-proof-tile--5 {
  --dd-proof-c1: var(--dd-accent-4);
  --dd-proof-c2: var(--dd-accent-5);
  --dd-proof-grad: linear-gradient(
    90deg,
    var(--dd-accent-4),
    var(--dd-accent-5)
  );
}
.dd-proof__points .dd-proof-tile--6 {
  --dd-proof-c1: var(--dd-accent);
  --dd-proof-c2: var(--dd-accent-4);
  --dd-proof-grad: linear-gradient(90deg, var(--dd-accent), var(--dd-accent-4));
}

/* Features grid */
.dd-grid {
  gap: 18px;
}
.dd-feature {
  padding: 22px 22px;
  min-height: 150px;
}
.dd-feature__title {
  margin: 0 0 10px;
  font-size: 18px;
  letter-spacing: -0.01em;
}

/* Blog section */
.dd-blog__head {
  gap: 14px;
}
.dd-blog__grid {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}
.dd-blog__grid > li {
  margin: 0;
}
@media (max-width: 1024px) {
  .dd-blog__grid.wp-block-post-template {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .dd-blog__grid.wp-block-post-template {
    grid-template-columns: 1fr;
  }
}
.dd-blog-tile {
  overflow: hidden;
}
.dd-blog-tile__body {
  padding: 18px 20px 20px;
}
.dd-blog-tile .wp-block-post-featured-image {
  margin: 0;
}
.dd-blog-tile .wp-block-post-featured-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  display: block;
}
.dd-blog-tile__title {
  margin: 0 0 8px;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.dd-blog-tile__title a {
  text-decoration: none;
}
.dd-blog-tile__title a:hover {
  text-decoration: underline;
}
.dd-blog-tile__meta {
  font-size: 13px;
  opacity: 0.75;
  margin: 0 0 10px;
}
.dd-blog-tile__excerpt {
  margin: 0;
}
.dd-blog-tile__excerpt p {
  margin: 0;
  opacity: 0.86;
}
.dd-blog-tile__excerpt .wp-block-post-excerpt__more-link {
  display: inline-block;
  margin-top: 12px;
  opacity: 0.9;
}

/* Welcome + products */
.dd-welcome-products__layout {
  gap: 24px;
  align-items: stretch;
}
.dd-welcome-products__experience {
  margin-top: 18px;
}
.dd-welcome-products__experience .dd-stat__value {
  margin: 0;
  font-size: clamp(36px, 5vw, 52px);
}
.dd-welcome-products__experience .dd-stat__label {
  margin: 6px 0 0;
}
.dd-product-grid {
  gap: 18px;
}
.dd-product-tile {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  --dd-product-c1: var(--dd-accent);
  --dd-product-c2: var(--dd-accent-2);
  --dd-product-grad: linear-gradient(
    90deg,
    var(--dd-accent),
    var(--dd-accent-2)
  );
}
.dd-product-tile::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: var(--dd-product-grad);
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
}
.dd-product-tile::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  top: 12px;
  height: 1px;
  border-radius: 999px;
  background: var(--dd-product-grad);
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}
.dd-product-tile > * {
  position: relative;
  z-index: 1;
}
.dd-product-tile__head {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.dd-product-tile__head .dd-feature__title {
  margin: 0;
}
.dd-product-tile__icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(
      16px 16px at 30% 25%,
      color-mix(in srgb, var(--dd-product-c1), transparent 70%),
      transparent 78%
    ),
    radial-gradient(
      18px 18px at 70% 70%,
      color-mix(in srgb, var(--dd-product-c2), transparent 78%),
      transparent 82%
    ),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  color: color-mix(in srgb, var(--dd-product-c1), rgba(234, 240, 255, 1) 35%);
  flex: 0 0 auto;
}
.dd-product-tile__icon svg {
  width: 30px;
  height: 30px;
  display: block;
}
.dd-product-tile__icon svg path {
  vector-effect: non-scaling-stroke;
}
.dd-product-tile:hover .dd-product-tile__icon {
  filter: brightness(1.05);
  box-shadow:
    0 22px 70px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

@supports not (color: color-mix(in srgb, #fff, #000)) {
  .dd-product-tile__icon {
    background: rgba(255, 255, 255, 0.03);
    color: var(--dd-product-c1);
  }
}

.dd-product-tile--1 {
  --dd-product-c1: var(--dd-accent);
  --dd-product-c2: var(--dd-accent-2);
  --dd-product-grad: linear-gradient(
    90deg,
    var(--dd-accent),
    var(--dd-accent-2)
  );
}
.dd-product-tile--2 {
  --dd-product-c1: var(--dd-accent-4);
  --dd-product-c2: var(--dd-accent-2);
  --dd-product-grad: linear-gradient(
    90deg,
    var(--dd-accent-4),
    var(--dd-accent-2)
  );
}
.dd-product-tile--3 {
  --dd-product-c1: var(--dd-accent-5);
  --dd-product-c2: var(--dd-accent);
  --dd-product-grad: linear-gradient(
    90deg,
    var(--dd-accent-5),
    var(--dd-accent)
  );
}
.dd-product-tile--4 {
  --dd-product-c1: var(--dd-accent-3);
  --dd-product-c2: var(--dd-accent);
  --dd-product-grad: linear-gradient(
    90deg,
    var(--dd-accent-3),
    var(--dd-accent)
  );
}

@media (max-width: 900px) {
  .dd-welcome-products__layout {
    gap: 18px;
  }
}

/* About us */
.dd-about__card {
  padding: 22px 22px;
  height: 100%;
}
.dd-about__header {
  gap: 14px;
  margin-bottom: 12px;
}
.dd-about__avatar {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  flex: 0 0 64px;
}
.dd-about__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.dd-about__meta {
  margin: 0;
}
.dd-about__name {
  margin: 0;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.dd-about__role {
  margin: 2px 0 0;
  font-size: 13px;
  color: var(--dd-muted);
}
.dd-about__bio {
  margin: 0;
  color: var(--dd-muted);
}

/* Section headings */
.dd-section__head {
  margin-bottom: 26px;
}
.dd-section__title {
  font-size: clamp(28px, 2.8vw, 42px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

/* Footer */
.dd-footer {
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 11, 26, 0.65);
  backdrop-filter: blur(10px);
}
.dd-footer__inner {
  padding: 36px 0;
}
.dd-footer__copy {
  margin-top: 22px;
  opacity: 0.7;
}

/* Optional: make lists nicer */
ul {
  padding-left: 1.2em;
}

.dd-nav.wp-block-navigation__container {
  align-items: center;
  display: flex;
  gap: 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.5);
  margin-right: 20px;
  padding-right: 28px;
}

@media (max-width: 900px) {
  .dd-release-banner {
    max-width: none !important;
    padding-top: 6px;
    padding-bottom: 4px;
  }

  .dd-release-banner__inner {
    grid-template-columns: 1fr;
    width: 100%;
    gap: 10px;
    padding: 12px 14px;
  }

  .dd-release-banner__action {
    justify-content: flex-start;
  }

  .dd-release-banner__title {
    font-size: 18px;
  }

  .dd-release-banner__description {
    font-size: 12px;
  }

  .dd-hero {
    padding-top: 24px;
  }

  .dd-nav {
    display: none;
  }

  .wp-block-navigation__responsive-container {
    height: 160px;
  }
}

/* =========================
   Stream architecture diagram
   ========================= */

.dd-arch {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dd-arch__diagram {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 140px minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
  isolation: isolate;
}

.dd-arch__panel {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  box-shadow:
    0 26px 80px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset;
  padding: 22px;
}

.dd-arch__panel::before {
  content: "";
  position: absolute;
  inset: -80px -60px -60px -60px;
  pointer-events: none;
  opacity: 0.9;
  filter: blur(2px) saturate(1.1);
}

.dd-arch__panel--source::before {
  background:
    radial-gradient(
      520px 380px at 22% 20%,
      rgba(255, 90, 200, 0.18),
      transparent 56%
    ),
    radial-gradient(
      520px 380px at 74% 74%,
      rgba(138, 92, 255, 0.12),
      transparent 60%
    );
}

.dd-arch__panel--dest::before {
  background:
    radial-gradient(
      520px 380px at 78% 22%,
      rgba(54, 201, 255, 0.18),
      transparent 56%
    ),
    radial-gradient(
      520px 380px at 24% 74%,
      rgba(80, 120, 255, 0.12),
      transparent 60%
    );
}

.dd-arch__panel-grid {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  gap: 14px;
  align-items: center;
}

.dd-arch__panel-grid--dest {
  grid-template-columns: minmax(170px, 0.9fr) minmax(92px, 120px) minmax(
      180px,
      1fr
    );
  grid-template-rows: auto auto;
}

.dd-arch__producers,
.dd-arch__shmems {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.dd-arch__node {
  height: 50px;
  position: relative;
  z-index: 3;
  border-radius: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(
      340px 200px at 20% 10%,
      rgba(255, 255, 255, 0.06),
      transparent 70%
    ),
    rgba(7, 11, 26, 0.65);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset;
  backdrop-filter: blur(10px);
}

.dd-arch__node-title {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: rgba(234, 240, 255, 0.96);
}

.dd-arch__node-type {
  margin-top: 6px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 750;
  color: rgba(234, 240, 255, 0.9);
}

.dd-arch__node--core {
  border-color: rgba(54, 201, 255, 0.35);
  background:
    radial-gradient(
      420px 260px at 30% 20%,
      rgba(54, 201, 255, 0.22),
      transparent 62%
    ),
    radial-gradient(
      420px 260px at 78% 72%,
      rgba(80, 120, 255, 0.16),
      transparent 62%
    ),
    rgba(7, 11, 26, 0.55);
  box-shadow:
    0 26px 60px rgba(54, 201, 255, 0.12),
    0 20px 50px rgba(0, 0, 0, 0.45);
}

.dd-arch__node--sender,
.dd-arch__node--server,
.dd-arch__node--receiver {
  display: grid;
  place-items: center;
  min-height: 104px;
}

.dd-arch__node--server {
  min-height: 40px;
}

.dd-arch__node--server-icon img {
  display: block;
  opacity: 0.5;
  width: 50px;
}

.dd-arch__node--edge {
  isolation: isolate;
  animation: dd-arch-float 4.2s ease-in-out infinite;
}

.dd-arch__node--edge::after {
  content: "";
  position: absolute;
  inset: -40% -80% -40% -80%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(54, 201, 255, 0.14),
    transparent
  );
  transform: translateX(-40%);
  opacity: 0.55;
  animation: dd-arch-scan 2.8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.dd-arch__node--subscriber::after {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 90, 200, 0.13),
    transparent
  );
}

.dd-arch__wire {
  max-width: 60px;
  height: 50px;
  padding-bottom: 30px;
  min-width: 40px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.dd-arch__wire--udp {
  grid-column: 4;
  grid-row: 1 / 3;
  min-width: 40px;
}

.dd-arch__wire-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(234, 240, 255, 0.72);
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.dd-arch__wire-line {
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(234, 240, 255, 0.16),
    rgba(54, 201, 255, 0.7)
  );
  position: relative;
}

.dd-arch__wire-line::after {
  content: "";
  position: absolute;
  right: -2px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid rgba(54, 201, 255, 0.7);
}

.dd-arch__diode {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 3;
}

.dd-arch__diode-card {
  border-radius: 18px;
  padding: 40px 14px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(
      420px 260px at 50% 20%,
      rgba(54, 201, 255, 0.18),
      transparent 62%
    ),
    rgba(7, 11, 26, 0.58);
  box-shadow:
    0 22px 60px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 110px;
}

.dd-arch__diode-icon {
  color: rgba(234, 240, 255, 0.92);
  filter: drop-shadow(0 10px 24px rgba(54, 201, 255, 0.16));
  line-height: 1;
}

.dd-arch__diode-label {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
  color: rgba(234, 240, 255, 0.82);
}

.dd-arch__udp {
  position: absolute;
  left: 41%;
  right: 41%;
  top: 50%;
  transform: translateY(-50%);
  height: 2px;
  z-index: 2;
  pointer-events: none;
}

.dd-arch__udp::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(234, 240, 255, 0.1),
    rgba(54, 201, 255, 0.58),
    rgba(234, 240, 255, 0.1)
  );
  background-size: 200% 100%;
  animation: dd-arch-flow 2.8s linear infinite;
  opacity: 0.65;
}

.dd-arch__udp::after {
  content: "";
  position: absolute;
  right: -2px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 10px solid rgba(54, 201, 255, 0.62);
}

.dd-arch__udp-label {
  position: absolute;
  left: 50%;
  top: -22px;
  transform: translateX(-50%);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(234, 240, 255, 0.72);
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.dd-arch__cycle {
  --dd-arch-phase: 0s;
  --dd-arch-step: 2s;
  --dd-arch-count: 7;
  display: inline-block;
  position: relative;
  height: 1.2em;
  min-width: 12ch;
  vertical-align: top;
}

.dd-arch__cycle > span {
  --i: 0;
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(6px);
  will-change: transform, opacity;
  animation: dd-arch-cycle calc(var(--dd-arch-count) * var(--dd-arch-step))
    infinite;
  animation-delay: calc(var(--dd-arch-phase) + var(--i) * var(--dd-arch-step));
  color: rgba(234, 240, 255, 0.94);
}

.dd-arch__pills {
  padding: 16px 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

@keyframes dd-arch-cycle {
  0% {
    opacity: 0;
    transform: translateY(6px);
  }
  6% {
    opacity: 1;
    transform: translateY(0);
  }
  14% {
    opacity: 1;
    transform: translateY(0);
  }
  20% {
    opacity: 0;
    transform: translateY(-6px);
  }
  100% {
    opacity: 0;
    transform: translateY(-6px);
  }
}

@keyframes dd-arch-flow {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

@keyframes dd-arch-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

@keyframes dd-arch-scan {
  0% {
    transform: translateX(-45%);
    opacity: 0.18;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    transform: translateX(45%);
    opacity: 0.15;
  }
}

@media (max-width: 900px) {
  .dd-arch__diagram {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 14px;
  }

  .dd-arch__diode-card {
    min-width: 140px;
  }

  .dd-arch__udp {
    left: 50%;
    right: auto;
    top: 14px;
    bottom: 14px;
    width: 2px;
    height: auto;
    transform: translateX(-50%);
  }

  .dd-arch__udp::before {
    background: linear-gradient(
      180deg,
      rgba(234, 240, 255, 0.1),
      rgba(54, 201, 255, 0.58),
      rgba(234, 240, 255, 0.1)
    );
    background-size: 100% 200%;
    animation: dd-arch-flow-vertical 2.8s linear infinite;
  }

  .dd-arch__udp::after {
    right: auto;
    bottom: -4px;
    top: auto;
    left: 50%;
    transform: translateX(-50%);
    border-top: 10px solid rgba(54, 201, 255, 0.62);
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 0;
  }

  .dd-arch__udp-label {
    left: calc(50% + 18px);
    top: 50%;
    transform: translateY(-50%);
  }
}

@keyframes dd-arch-flow-vertical {
  0% {
    background-position: 50% 0%;
  }
  100% {
    background-position: 50% 200%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dd-arch__cycle > span,
  .dd-arch__udp::before,
  .dd-arch__node--edge,
  .dd-arch__node--edge::after {
    animation: none !important;
  }
}

.dd-proof {
  position: relative;
}

/* Helix */
@keyframes dd-helix-orbit-a {
  0%,
  100% {
    transform: translate(-50%, -50%)
      translateY(calc(-1 * var(--dd-helix-radius)))
      translateZ(calc(-1 * var(--dd-helix-z)));
    filter: brightness(0.75);
  }
  25% {
    transform: translate(-50%, -50%) translateY(0) translateZ(var(--dd-helix-z));
    filter: brightness(1.15);
  }
  50% {
    transform: translate(-50%, -50%) translateY(var(--dd-helix-radius))
      translateZ(calc(-1 * var(--dd-helix-z)));
    filter: brightness(0.75);
  }
  75% {
    transform: translate(-50%, -50%) translateY(0)
      translateZ(calc(-1 * (var(--dd-helix-z) + 18px)));
    filter: brightness(0.65);
  }
}

@keyframes dd-helix-orbit-b {
  0%,
  100% {
    transform: translate(-50%, -50%) translateY(var(--dd-helix-radius))
      translateZ(calc(-1 * var(--dd-helix-z)));
    filter: brightness(0.75);
  }
  25% {
    transform: translate(-50%, -50%) translateY(0)
      translateZ(calc(-1 * (var(--dd-helix-z) + 18px)));
    filter: brightness(0.65);
  }
  50% {
    transform: translate(-50%, -50%)
      translateY(calc(-1 * var(--dd-helix-radius)))
      translateZ(calc(-1 * var(--dd-helix-z)));
    filter: brightness(0.75);
  }
  75% {
    transform: translate(-50%, -50%) translateY(0) translateZ(var(--dd-helix-z));
    filter: brightness(1.15);
  }
}

@keyframes dd-helix-flow {
  0%,
  100% {
    opacity: 0.35;
  }
  18% {
    opacity: 0.35;
  }
  26% {
    opacity: 1;
  }
  34% {
    opacity: 0.35;
  }
}

.dd-proof > :not(.helix-bg-container) {
  position: relative;
  z-index: 1;
}

.helix-bg-container {
  --dd-helix-count: 50;
  --dd-helix-padding: clamp(0px, 4vw, 96px);
  --dd-helix-radius: clamp(18px, 2.8vw, 58px);
  --dd-helix-dot-size: clamp(2px, 0.35vw, 3px);
  --dd-helix-dot-alpha: 0.9;
  --dd-helix-delay-step: 0.05s;
  --dd-helix-duration: 6.4s;
  --dd-helix-flow-duration: 2.5s;
  --dd-helix-z: 46px;

  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  perspective: 900px;
  transform: translateX(-50%);
  opacity: 1;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding-inline: var(--dd-helix-padding);

  -webkit-mask-image: radial-gradient(
    60% 60% at 50% 50%,
    rgba(0, 0, 0, 0.92) 0%,
    rgba(0, 0, 0, 0.92) 55%,
    rgba(0, 0, 0, 0) 85%
  );
  mask-image: radial-gradient(
    60% 60% at 50% 50%,
    rgba(0, 0, 0, 0.92) 0%,
    rgba(0, 0, 0, 0.92) 55%,
    rgba(0, 0, 0, 0) 85%
  );
}

.helix-row {
  --dd-helix-delay: calc((var(--i) - 1) * var(--dd-helix-delay-step));
  --dd-helix-flow-delay: calc((var(--i) - 1) * var(--dd-helix-delay-step));
  --dd-helix-shade: clamp(105, calc(90 + (var(--i) * 6)), 235);
  flex: 0 0 calc(100% / var(--dd-helix-count));
  height: calc(var(--dd-helix-radius) * 2);
  position: relative;
  transform-style: preserve-3d;
}

.helix-row::before,
.helix-row::after {
  content: "";
  height: var(--dd-helix-dot-size);
  width: var(--dd-helix-dot-size);
  border-radius: 999px;
  position: absolute;
  left: 50%;
  top: 50%;
  opacity: 0.35;
  filter: brightness(0.85);
  animation:
    dd-helix-orbit-a var(--dd-helix-duration) linear infinite,
    dd-helix-flow var(--dd-helix-flow-duration) ease-in-out infinite;
  animation-delay: var(--dd-helix-delay), var(--dd-helix-flow-delay);
  will-change: transform, opacity, filter;
}

.helix-row::before {
  transform: translate(-50%, -50%) translateY(calc(-1 * var(--dd-helix-radius)))
    translateZ(calc(-1 * var(--dd-helix-z)));
  background: rgba(
    var(--dd-helix-shade),
    var(--dd-helix-shade),
    var(--dd-helix-shade),
    var(--dd-helix-dot-alpha)
  );
  box-shadow: 0 0 14px rgba(54, 201, 255, 0.15);
}

.helix-row::after {
  animation-name: dd-helix-orbit-b, dd-helix-flow;
  transform: translate(-50%, -50%) translateY(var(--dd-helix-radius))
    translateZ(calc(-1 * var(--dd-helix-z)));
  background: rgba(255, 255, 255, var(--dd-helix-dot-alpha));
  box-shadow: 0 0 16px rgba(54, 201, 255, 0.35);
}

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

@media (max-width: 900px) {
  .helix-bg-container {
    display: none;
  }
  .dd-button--header-cta,
  .dd-button--header-products {
    display: none !important;
  }
}

/* --- Request Trial Dialog --- */
.dd-trial-dialog {
  position: fixed;
  inset: 0;
  margin: auto;
  width: min(540px, 94vw);
  max-height: 90dvh;
  overflow-y: auto;
  background: #0d1325;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 0;
  color: var(--wp--preset--color--text, #eaf0ff);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6);
}
.dd-trial-dialog[open] {
  animation: dd-trial-dialog-in 0.18s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.dd-trial-dialog[data-dd-closing="true"] {
  animation: dd-trial-dialog-out 0.16s ease-in both;
}
.dd-trial-dialog::backdrop {
  background: rgba(7, 11, 26, 0.82);
  backdrop-filter: blur(6px);
}
.dd-trial-dialog[open]::backdrop {
  animation: dd-trial-backdrop-in 0.18s ease-out both;
}
.dd-trial-dialog[data-dd-closing="true"]::backdrop {
  animation: dd-trial-backdrop-out 0.16s ease-in both;
}
.dd-trial-dialog__inner {
  padding: 36px 32px 32px;
  position: relative;
}
.dd-trial-dialog__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--wp--preset--color--muted, rgba(234, 240, 255, 0.7));
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition:
    color 0.15s ease,
    background 0.15s ease;
}
.dd-trial-dialog__close svg {
  pointer-events: none;
}
.dd-trial-dialog__close:hover {
  color: var(--wp--preset--color--text, #eaf0ff);
  background: rgba(255, 255, 255, 0.08);
}
.dd-trial-dialog__title {
  font-size: 1.35rem;
  font-weight: 600;
  margin: 0 0 24px;
  padding-right: 32px;
  color: var(--wp--preset--color--text, #eaf0ff);
}
.dd-trial-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.dd-trial-form[hidden] {
  display: none;
}
.dd-trial-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.dd-trial-form__label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--wp--preset--color--muted, rgba(234, 240, 255, 0.7));
}
.dd-trial-form__input,
.dd-trial-form__select {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 10px 14px;
  color: var(--wp--preset--color--text, #eaf0ff);
  font-family: inherit;
  font-size: 0.95rem;
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease;
  width: 100%;
  box-sizing: border-box;
}
.dd-trial-form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%23eaf0ff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 36px;
  cursor: pointer;
}
.dd-trial-form__input:focus,
.dd-trial-form__select:focus {
  outline: none;
  border-color: var(--wp--preset--color--accent, #36c9ff);
  box-shadow: 0 0 0 3px rgba(54, 201, 255, 0.15);
}
.dd-trial-form__input[aria-invalid="true"] {
  border-color: #ff6b6b;
}
.dd-trial-form__hint {
  font-size: 0.8rem;
  color: var(--wp--preset--color--muted, rgba(234, 240, 255, 0.7));
  margin: 0;
}
.dd-trial-form__field--consent {
  gap: 8px;
}
.dd-trial-form__consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.86rem;
  line-height: 1.45;
  color: var(--wp--preset--color--muted, rgba(234, 240, 255, 0.8));
  cursor: pointer;
}
.dd-trial-form__checkbox {
  margin-top: 2px;
  width: 16px;
  height: 16px;
  accent-color: var(--wp--preset--color--accent, #36c9ff);
  flex: 0 0 16px;
}
.dd-trial-form__checkbox[aria-invalid="true"] {
  outline: 1px solid #ff6b6b;
  outline-offset: 2px;
}
.dd-trial-form__consent-link {
  color: var(--wp--preset--color--accent, #36c9ff);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.dd-trial-form__consent-link:hover {
  opacity: 0.85;
}
.dd-trial-form__error {
  font-size: 0.82rem;
  color: #ff6b6b;
}
.dd-trial-form__error[hidden] {
  display: none;
}
.dd-trial-form__global-error {
  font-size: 0.875rem;
  color: #ff6b6b;
  padding: 10px 14px;
  background: rgba(255, 107, 107, 0.1);
  border: 1px solid rgba(255, 107, 107, 0.25);
  border-radius: 8px;
}
.dd-trial-form__global-error[hidden] {
  display: none;
}
.dd-trial-form__processing {
  font-size: 0.875rem;
  color: var(--wp--preset--color--text, #eaf0ff);
  padding: 10px 14px;
  background: rgba(54, 201, 255, 0.12);
  border: 1px solid rgba(54, 201, 255, 0.3);
  border-radius: 8px;
}
.dd-trial-form__processing[hidden] {
  display: none;
}
.dd-trial-form__actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 6px;
}
.dd-trial-form__submit {
  background: var(--wp--preset--color--accent, #36c9ff);
  color: #070b1a;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 11px 28px;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transition:
    filter 0.15s ease,
    transform 0.15s ease;
}
.dd-trial-form__submit:hover {
  filter: brightness(1.1);
}
.dd-trial-form__submit:active {
  transform: scale(0.98);
}
.dd-trial-form__submit[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}
.dd-trial-form__cancel {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--wp--preset--color--muted, rgba(234, 240, 255, 0.7));
  font-size: 0.9rem;
  padding: 8px 4px;
  transition: color 0.15s ease;
}
.dd-trial-form__cancel:hover {
  color: var(--wp--preset--color--text, #eaf0ff);
}
.dd-trial-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 16px 0 8px;
  text-align: center;
}
.dd-trial-success[hidden] {
  display: none;
}
.dd-trial-success__title {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
}
.dd-trial-success__text {
  color: var(--wp--preset--color--muted, rgba(234, 240, 255, 0.7));
  margin: 0;
}

@keyframes dd-trial-dialog-in {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes dd-trial-dialog-out {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  to {
    opacity: 0;
    transform: translateY(8px) scale(0.985);
  }
}
@keyframes dd-trial-backdrop-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes dd-trial-backdrop-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dd-trial-dialog[open],
  .dd-trial-dialog[data-dd-closing="true"],
  .dd-trial-dialog[open]::backdrop,
  .dd-trial-dialog[data-dd-closing="true"]::backdrop {
    animation: none;
  }
}

/* --- Trial Consent Page --- */
.dd-consent-page {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(26px, 4vw, 44px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(9, 15, 34, 0.62);
  backdrop-filter: blur(8px);
}
.dd-consent-page h1,
.dd-consent-page h2 {
  color: var(--wp--preset--color--text, #eaf0ff);
}
.dd-consent-page h1 {
  margin: 0 0 16px;
  font-size: clamp(1.5rem, 2.7vw, 2rem);
}
.dd-consent-page h2 {
  margin: 26px 0 10px;
  font-size: clamp(1.1rem, 2.1vw, 1.35rem);
}
.dd-consent-page p {
  margin: 0;
  line-height: 1.72;
}

@media (max-width: 480px) {
  .dd-trial-dialog__inner {
    padding: 28px 20px 24px;
  }
  .dd-trial-form__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .dd-trial-form__submit {
    text-align: center;
  }
}

/* --- Product tile Try link --- */
.dd-product-tile__try {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--wp--preset--color--accent, #36c9ff);
  text-decoration: none;
  transition:
    opacity 0.15s ease,
    transform 0.15s ease;
}
.dd-product-tile__try:hover {
  opacity: 0.8;
  transform: translateX(2px);
}
