@import "tailwindcss";

/* ============================================
   TOKENS
   ============================================ */
:root {
  --bg-light: #fafaf7;
  --bg-cream: #f2efe7;
  --bg-dark: #0b0b10;
  --bg-dark-2: #13131a;
  --ink: #0a0a0f;
  --text: #15151b;
  --text-d: #edeae2;
  --muted: #6b6b72;
  --muted-d: #8e8e96;
  --line: #e5e2da;
  --line-d: #262630;
  --accent: #1e5eff;
  --accent-2: #1747d9;
  --accent-pale: #e8eeff;
  --lime: #d4ff3d;
  --green: #18b674;
  --red: #e5484d;
  --radius: 18px;
  --radius-sm: 10px;
  --maxw: 1240px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ============================================
   RESET / BASE
   ============================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  background: var(--bg-light);
  color: var(--text);
  font-family:
    var(--font-inter, "Inter"),
    system-ui,
    -apple-system,
    sans-serif;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
}

.serif {
  font-family: var(--font-fraunces, "Fraunces"), Georgia, serif;
}
.scribble {
  font-family: var(--font-caveat, "Caveat"), cursive;
  font-weight: 600;
  display: inline-block;
  transform: rotate(-2deg);
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 600px) {
  .container {
    padding: 0 32px;
  }
}
.sec {
  padding: 120px 0;
  position: relative;
}
.sec--tight {
  padding: 88px 0;
}
.sec--dark {
  background: var(--bg-dark);
  color: var(--text-d);
}
.sec--cream {
  background: var(--bg-cream);
}
.sec--ink {
  background: var(--ink);
  color: var(--text-d);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 24px;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
  display: inline-block;
  opacity: 0.5;
}
.sec--dark .eyebrow {
  color: var(--muted-d);
}

.h-display {
  font-family: var(--font-fraunces, "Fraunces"), serif;
  font-weight: 400;
  font-size: clamp(48px, 7.4vw, 116px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  text-wrap: balance;
}
.h-display em {
  font-style: italic;
  font-weight: 300;
  color: var(--accent);
}
.sec--dark .h-display em,
.sec--ink .h-display em {
  color: #5586ff;
}

.h-2 {
  font-family: var(--font-fraunces, "Fraunces"), serif;
  font-weight: 400;
  font-size: clamp(36px, 5.2vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  text-wrap: balance;
}
.h-2 em {
  font-style: italic;
  font-weight: 300;
  color: var(--accent);
}
.sec--dark .h-2 em,
.sec--ink .h-2 em {
  color: #5586ff;
}

.h-3 {
  font-family: var(--font-fraunces, "Fraunces"), serif;
  font-weight: 500;
  font-size: clamp(22px, 2.2vw, 28px);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.lede {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55;
  color: var(--muted);
  max-width: 54ch;
}
.sec--dark .lede,
.sec--ink .lede {
  color: #b5b5bd;
}

/* ============================================
   NAV — floating pill (matches HTML design)
   ============================================ */
.nav-wrap {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  justify-content: center;
  pointer-events: none;
  padding: 0 22px;
}
.nav-wrap nav {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 12px 10px 22px;
  background: rgba(15, 15, 16, 0.92);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-radius: 99px;
  color: #f4efe1;
  box-shadow: 0 12px 30px -10px rgba(0, 0, 0, 0.3);
  min-width: min(900px, 100%);
  max-width: 100%;
  transition: box-shadow 0.25s;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #f4efe1;
  transition: opacity 0.2s;
}
.nav-logo:hover {
  opacity: 0.85;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: #c7c2b3;
  transition: color 0.2s;
  text-decoration: none;
}
.nav-link:hover {
  color: #f4efe1;
}
.nav-cta {
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: 99px;
  box-shadow: 0 4px 0 var(--accent-2);
  transition:
    transform 0.2s var(--ease),
    box-shadow 0.2s var(--ease);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.nav-cta:hover {
  transform: translateY(1px);
  box-shadow: 0 3px 0 var(--accent-2);
}
.nav-cta:active {
  transform: translateY(4px);
  box-shadow: 0 0 0 var(--accent-2);
}
.nav-cta-desktop {
  display: none;
}
@media (min-width: 1024px) {
  .nav-cta-desktop {
    display: inline-flex;
  }
}

/* Mobile toggle */
.nav-mobile-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 18px;
  height: 14px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 600;
  color: #f4efe1;
}
.nav-mobile-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition:
    transform 0.3s,
    opacity 0.3s;
  transform-origin: left center;
}
@media (min-width: 1024px) {
  .nav-mobile-toggle {
    display: none;
  }
}

/* Mobile menu overlay */
.nav-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100dvh;
  min-height: 100dvh;
  background: #0f0f10;
  z-index: 550;
  padding: 100px 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch; /* Issue 3: iOS momentum scroll */
  pointer-events: auto; /* Issue 3: override nav-wrap pointer-events:none */
}
/* Issue 2: X close button inside overlay */
.nav-mobile-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 100;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  color: #f5f5f7;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  flex-shrink: 0;
}
.nav-mobile-link {
  display: block;
  font-size: 24px;
  font-weight: 600;
  color: #f4efe1;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-mobile-link:hover {
  color: var(--accent);
}
.nav-mobile-actions {
  margin-top: 40px;
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

@media (max-width: 780px) {
  .nav-links {
    display: none;
  }
  nav {
    padding: 8px 8px 8px 18px;
    gap: 10px;
  }
  .nav-wrap {
    top: 12px;
  }
}
@media (max-width: 600px) {
  .nav-wrap {
    top: 10px;
    padding: 0 14px;
  }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  background: var(--bg-dark);
  color: var(--text-d);
  padding: 160px 0 100px;
  overflow: hidden;
  isolation: isolate;
}
.hero-blobs {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  will-change: transform;
}
.blob.b1 {
  width: 680px;
  height: 680px;
  background: radial-gradient(circle, #1e5eff 0%, transparent 70%);
  top: -180px;
  left: -120px;
}
.blob.b2 {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, #5586ff 0%, transparent 70%);
  bottom: -160px;
  right: -120px;
  opacity: 0.35;
}
.hero-grain {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.05;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 .8 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(24, 182, 116, 0.1);
  border: 1px solid rgba(24, 182, 116, 0.32);
  border-radius: 99px;
  padding: 8px 18px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: #7ed9af;
  margin-bottom: 36px;
}
.hero-pill .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: ds-pulse 2s infinite;
}

.hero h1 {
  font-family: var(--font-fraunces, "Fraunces"), serif;
  font-weight: 400;
  font-size: clamp(54px, 8.4vw, 140px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  max-width: 18ch;
  margin-bottom: 36px;
}
.hero h1 .unlim {
  font-style: italic;
  font-weight: 300;
  background: linear-gradient(180deg, #fff 0%, #9db6ff 60%, #1e5eff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  display: inline-block;
  padding: 0 0.12em;
}
.hero h1 .unlim-underline {
  position: absolute;
  bottom: -0.05em;
  left: 0;
  width: 100%;
  height: 0.14em;
  pointer-events: none;
  overflow: visible;
}
.hero h1 .unlim-underline path {
  fill: none;
  stroke: var(--accent);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 600;
  stroke-dashoffset: 0;
}

.hero-sub {
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.55;
  color: #b5b5bd;
  max-width: 46ch;
  margin-bottom: 44px;
}
.hero-sub strong {
  color: #fff;
  font-weight: 600;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  align-items: center;
}

.btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: #fff;
  padding: 18px 30px;
  border-radius: 99px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.005em;
  transition:
    background 0.25s,
    transform 0.25s var(--ease),
    box-shadow 0.35s;
  box-shadow: 0 8px 30px -8px rgba(30, 94, 255, 0.6);
  will-change: transform;
}
.btn-primary:hover {
  background: var(--accent-2);
  box-shadow: 0 14px 36px -8px rgba(30, 94, 255, 0.7);
}
.btn-primary-outline {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
  padding: 16.5px 30px;
  border-radius: 99px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.005em;
  transition: all 0.25s var(--ease);
  will-change: transform;
  cursor: pointer;
  text-decoration: none;
}
.btn-primary-outline:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 14px 36px -8px rgba(30, 94, 255, 0.7);
}
.btn-primary .arr {
  transition: transform 0.3s var(--ease);
}
.btn-primary:hover .arr {
  transform: translateX(4px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 18px 28px;
  border-radius: 99px;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition:
    border-color 0.25s,
    background 0.25s;
}
.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.05);
}

.hero-guar {
  font-size: 13px;
  color: #8e8e96;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.hero-guar strong {
  color: #7ed9af;
  font-weight: 600;
}

.hero-bottom {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: end;
  margin-top: 84px;
}
@media (max-width: 900px) {
  .hero-bottom {
    grid-template-columns: 1fr;
    margin-top: 60px;
  }
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hero-stat .num {
  font-family: var(--font-fraunces, "Fraunces"), serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #fff;
}
.hero-stat .lbl {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #8e8e96;
}
.hero-stats-mini {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

/* ============================================
   TRUST LOGOS STRIP
   ============================================ */
.trust-strip {
  padding: 42px 0;
  background: var(--bg-light);
  border-bottom: 1px solid var(--line);
}
.trust-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  margin-bottom: 24px;
  font-weight: 600;
}
.trust-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 56px;
  flex-wrap: wrap;
  opacity: 0.7;
}
.trust-logos svg {
  height: 22px;
  width: auto;
  color: #3a3a40;
  transition: opacity 0.25s;
}
.trust-logos svg:hover {
  color: var(--accent);
  opacity: 1;
}
@media (max-width: 780px) {
  .trust-logos {
    gap: 32px;
  }
  .trust-logos svg {
    height: 18px;
  }
}

/* ============================================
   DESIGN TOOLS STRIP
   ============================================ */
.tools-strip {
  padding: 36px 0;
  background: var(--bg-cream);
  border-bottom: 1px solid var(--line);
}
.tools-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 64px;
  flex-wrap: wrap;
}
.tool-i {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: #3a3a40;
}
.tool-i svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
@media (max-width: 780px) {
  .tools-row {
    gap: 28px;
  }
  .tool-i {
    font-size: 12px;
  }
  .tool-i svg {
    width: 18px;
    height: 18px;
  }
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 72px;
  position: relative;
}
@media (max-width: 900px) {
  .how-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 32px;
  position: relative;
  transition:
    transform 0.35s var(--ease),
    border-color 0.25s,
    box-shadow 0.35s;
  will-change: transform;
}
.step:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 18px 50px -16px rgba(30, 94, 255, 0.18);
}
.step-num {
  font-family: var(--font-fraunces, "Fraunces"), serif;
  font-style: italic;
  font-weight: 300;
  font-size: 48px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--accent);
  margin-bottom: 20px;
  display: block;
}
.step-title {
  font-family: var(--font-fraunces, "Fraunces"), serif;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  line-height: 1.15;
}
.step-desc {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--muted);
}

/* ============================================
   TICKER
   ============================================ */
.ticker {
  background: var(--ink);
  color: #fff;
  padding: 24px 0;
  overflow: hidden;
  border-top: 1px solid var(--line-d);
  border-bottom: 1px solid var(--line-d);
}
.ticker-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: ds-ticker 38s linear infinite;
  width: max-content;
}
.ticker:hover .ticker-track {
  animation-play-state: paused;
}
.ticker-item {
  font-family: var(--font-fraunces, "Fraunces"), serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(28px, 4vw, 56px);
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 48px;
  color: #fff;
}
.ticker-item::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ============================================
   BENEFITS
   ============================================ */
.ben-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 72px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}
@media (max-width: 900px) {
  .ben-grid {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 901px) and (max-width: 1100px) {
  .ben-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.ben {
  padding: 36px 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 0.25s;
  position: relative;
  overflow: hidden;
}
.ben:hover {
  background: var(--bg-cream);
}
.ben-grid > .ben:nth-child(3n) {
  border-right: none;
}
.ben-grid > .ben:nth-last-child(-n + 3) {
  border-bottom: none;
}
@media (max-width: 1100px) and (min-width: 901px) {
  .ben-grid > .ben:nth-child(3n) {
    border-right: 1px solid var(--line);
  }
  .ben-grid > .ben:nth-child(2n) {
    border-right: none;
  }
  .ben-grid > .ben:nth-last-child(-n + 3) {
    border-bottom: 1px solid var(--line);
  }
  .ben-grid > .ben:nth-last-child(-n + 2) {
    border-bottom: none;
  }
}
@media (max-width: 900px) {
  .ben-grid > .ben {
    border-right: none;
  }
  .ben-grid > .ben:not(:last-child) {
    border-bottom: 1px solid var(--line);
  }
}
.ben-ic {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-pale);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.ben-ic svg {
  width: 22px;
  height: 22px;
}
.ben-title {
  font-family: var(--font-fraunces, "Fraunces"), serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  line-height: 1.15;
}
.ben-desc {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--muted);
}

/* ============================================
   SIGNATURE BLOCKS
   ============================================ */
.sig-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 90px 0;
  border-top: 1px solid var(--line-d);
}
.sig-block:first-of-type {
  border-top: none;
}
.sig-block:nth-child(even) {
  direction: rtl;
}
.sig-block:nth-child(even) > * {
  direction: ltr;
}
@media (max-width: 900px) {
  .sig-block {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .sig-block:nth-child(even) {
    direction: ltr;
  }
}
.sig-art {
  aspect-ratio: 1.05 / 1;
  border-radius: 24px;
  background: linear-gradient(135deg, #13131a 0%, #1a1a26 100%);
  border: 1px solid var(--line-d);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sig-num {
  font-family: var(--font-fraunces, "Fraunces"), serif;
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
  color: var(--accent);
  letter-spacing: 0.04em;
  margin-bottom: 18px;
  display: block;
}
.sig-h {
  font-family: var(--font-fraunces, "Fraunces"), serif;
  font-size: clamp(34px, 4.4vw, 56px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin-bottom: 20px;
  color: #fff;
}
.sig-h em {
  font-style: italic;
  color: #9db6ff;
  font-weight: 300;
}
.sig-desc {
  font-size: 16px;
  line-height: 1.62;
  color: #b5b5bd;
  max-width: 42ch;
}

.art-laptop {
  position: relative;
  width: 78%;
  aspect-ratio: 1.6 / 1;
}
.art-laptop .screen {
  position: absolute;
  inset: 0 0 18% 0;
  background: #0b0b10;
  border: 1px solid #2a2a36;
  border-radius: 14px 14px 4px 4px;
  overflow: hidden;
  padding: 14px;
}
.art-laptop .base {
  position: absolute;
  bottom: 8%;
  left: -6%;
  right: -6%;
  height: 10%;
  background: #1a1a22;
  border-radius: 0 0 16px 16px;
  border: 1px solid #2a2a36;
  border-top: none;
}
.art-laptop .base::after {
  content: "";
  position: absolute;
  top: 0;
  left: 42%;
  width: 16%;
  height: 30%;
  background: #0b0b10;
  border-radius: 0 0 6px 6px;
}
.art-laptop .pm-card {
  position: absolute;
  background: #1a1a26;
  border: 1px solid #2e2e40;
  border-radius: 10px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: #edeae2;
  animation: ds-floaty 4s ease-in-out infinite;
}
.art-laptop .pm-1 {
  top: 18%;
  left: 18%;
  animation-delay: 0s;
}
.art-laptop .pm-2 {
  top: 46%;
  left: 32%;
  background: rgba(30, 94, 255, 0.18);
  border-color: rgba(30, 94, 255, 0.4);
  color: #9db6ff;
  animation-delay: 1s;
}
.art-laptop .pm-3 {
  top: 72%;
  left: 14%;
  animation-delay: 2s;
}
.art-laptop .pm-card .av {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e5eff, #5586ff);
  flex-shrink: 0;
}

.art-shield {
  width: 64%;
  aspect-ratio: 1 / 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.art-shield svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 18px 50px rgba(24, 182, 116, 0.35));
}
.art-shield .ck-path {
  stroke-dasharray: 120;
  stroke-dashoffset: 120;
  animation: ds-draw 1.8s ease-out infinite;
}
.art-shield .ring {
  transform-origin: center;
  animation: ds-ring-pulse 2.4s ease-out infinite;
}

.art-stack {
  width: 80%;
  aspect-ratio: 1.3 / 1;
  position: relative;
}
.art-stack .scr {
  position: absolute;
  inset: 0;
  background: #13131a;
  border: 1px solid #2e2e40;
  border-radius: 12px;
  overflow: hidden;
  animation: ds-cycle 6s ease-in-out infinite;
}
.art-stack .scr:nth-child(1) {
  animation-delay: 0s;
  transform: rotate(-6deg) translate(-8%, 4%);
}
.art-stack .scr:nth-child(2) {
  animation-delay: 2s;
  transform: rotate(-2deg) translate(-2%, -1%);
}
.art-stack .scr:nth-child(3) {
  animation-delay: 4s;
  transform: rotate(4deg) translate(8%, -3%);
}
.scr-bar {
  position: absolute;
  top: 10%;
  left: 10%;
  width: 46%;
  height: 8%;
  border-radius: 4px;
  background: linear-gradient(90deg, #1e5eff, #5586ff);
}
.scr-row {
  position: absolute;
  left: 10%;
  right: 10%;
  height: 6%;
  border-radius: 3px;
  background: #252530;
}
.scr-row.r1 {
  top: 28%;
  width: 80%;
}
.scr-row.r2 {
  top: 42%;
  width: 64%;
}
.scr-row.r3 {
  top: 56%;
  width: 72%;
}
.scr-card {
  position: absolute;
  bottom: 12%;
  left: 10%;
  right: 10%;
  height: 22%;
  border-radius: 8px;
  background: #1a1a26;
  border: 1px solid #2e2e40;
}
.scr-pin {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--bg-dark);
}

/* ============================================
   PORTFOLIO
   ============================================ */
.port-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.port-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 900px) {
  .port-grid {
    grid-template-columns: 1fr;
  }
}
.port-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s,
    border-color 0.25s;
  will-change: transform;
  display: block;
}
.port-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.15);
  border-color: var(--accent);
}
.port-thumb {
  aspect-ratio: 1.45 / 1;
  position: relative;
  overflow: hidden;
}
.port-thumb svg {
  width: 100%;
  height: 100%;
  display: block;
}
.port-meta {
  padding: 22px 24px 26px;
}
.port-tag {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}
.port-title {
  font-family: var(--font-fraunces, "Fraunces"), serif;
  font-size: 21px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 8px;
}
.port-line {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}
.port-cta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 48px;
  flex-wrap: wrap;
  gap: 16px;
}
.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  padding: 14px 26px;
  border-radius: 99px;
  border: 1px solid var(--text);
  transition:
    background 0.25s,
    color 0.25s;
}
.btn-link:hover {
  background: var(--text);
  color: #fff;
}

/* ============================================
   STATS
   ============================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  margin-top: 64px;
}
@media (max-width: 900px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-left: 1px solid var(--line-d);
  padding-left: 24px;
}
.stat .n {
  font-family: var(--font-fraunces, "Fraunces"), serif;
  font-size: clamp(56px, 7vw, 108px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.045em;
  color: #fff;
}
.stat .l {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: #8e8e96;
  text-transform: uppercase;
  font-weight: 500;
}

/* ============================================
   COMPARE
   ============================================ */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
}
@media (max-width: 900px) {
  .compare {
    grid-template-columns: 1fr;
  }
}
.comp {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s;
}
.comp.good {
  background: linear-gradient(180deg, #f2f6ff 0%, #fff 100%);
  border-color: rgba(30, 94, 255, 0.3);
}
.comp.good:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 50px -16px rgba(30, 94, 255, 0.22);
}
.comp-lbl {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 99px;
  margin-bottom: 24px;
}
.comp.bad .comp-lbl {
  background: rgba(229, 72, 77, 0.08);
  color: #c13035;
  border: 1px solid rgba(229, 72, 77, 0.2);
}
.comp.good .comp-lbl {
  background: rgba(30, 94, 255, 0.1);
  color: var(--accent);
  border: 1px solid rgba(30, 94, 255, 0.2);
}
.comp-row {
  display: flex;
  gap: 14px;
  font-size: 15px;
  line-height: 1.45;
  color: var(--text);
  padding: 14px 0;
  border-bottom: 1px dashed var(--line);
  align-items: flex-start;
}
.comp-row:last-child {
  border-bottom: none;
}
.comp.bad .comp-row {
  color: #5a5a60;
}
.ci {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  margin-top: 1px;
}
.comp.bad .ci {
  background: rgba(229, 72, 77, 0.12);
  color: #c13035;
}
.comp.good .ci {
  background: rgba(30, 94, 255, 0.1);
  color: var(--accent);
}

/* ============================================
   PRICING
   ============================================ */
.pricing-wrap {
  max-width: 680px;
  margin: 64px auto 0;
  position: relative;
}
.pricing-arrow {
  position: absolute;
  left: -160px;
  top: 30px;
  font-family: var(--font-caveat, "Caveat"), cursive;
  font-size: 24px;
  color: #9db6ff;
  transform: rotate(-8deg);
  font-weight: 600;
  width: 170px;
  text-align: right;
}
.pricing-arrow svg {
  display: block;
  margin: 6px 0 0 auto;
  width: 90px;
  height: 50px;
}
@media (max-width: 1100px) {
  .pricing-arrow {
    display: none;
  }
}

.price-card {
  background: linear-gradient(180deg, #13131a 0%, #0b0b10 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 0;
  overflow: hidden;
  box-shadow:
    0 40px 100px -30px rgba(30, 94, 255, 0.4),
    0 0 0 1px rgba(30, 94, 255, 0.1);
  position: relative;
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s;
  will-change: transform;
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 56px 120px -30px rgba(30, 94, 255, 0.55),
    0 0 0 1px rgba(30, 94, 255, 0.25);
}
.price-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  pointer-events: none;
  background: radial-gradient(
    600px 200px at 50% 0%,
    rgba(30, 94, 255, 0.18) 0%,
    transparent 70%
  );
}
.price-head {
  padding: 36px 40px 32px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
  position: relative;
}
.price-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.price-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.06em;
  font-weight: 600;
  color: #7ed9af;
  margin-bottom: 14px;
}
.price-live .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: ds-pulse 2s infinite;
}
.price-name {
  font-family: var(--font-fraunces, "Fraunces"), serif;
  font-size: 36px;
  font-weight: 400;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1;
}
.price-desc {
  font-size: 14px;
  color: #b5b5bd;
  line-height: 1.5;
  max-width: 30ch;
}
.price-amt {
  text-align: right;
  flex-shrink: 0;
}
.price-was {
  font-family: var(--font-fraunces, "Fraunces"), serif;
  font-style: italic;
  font-weight: 300;
  font-size: 24px;
  color: #4a4a52;
  text-decoration: line-through;
  text-decoration-color: #6b6b72;
  margin-bottom: 4px;
}
.price-now {
  font-family: var(--font-fraunces, "Fraunces"), serif;
  font-size: 72px;
  font-weight: 300;
  letter-spacing: -0.045em;
  line-height: 0.95;
  color: #fff;
  display: inline-flex;
  align-items: baseline;
}
.price-now .unit {
  font-family: var(--font-inter, "Inter"), sans-serif;
  font-size: 16px;
  color: #8e8e96;
  font-weight: 400;
  margin-left: 4px;
}
.price-cancel {
  font-size: 12px;
  color: #8e8e96;
  margin-top: 6px;
}
.price-lock {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 255, 61, 0.1);
  color: #d4ff3d;
  border: 1px solid rgba(212, 255, 61, 0.25);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.005em;
  padding: 8px 16px;
  border-radius: 99px;
}
.price-lock .d {
  width: 6px;
  height: 6px;
  background: #d4ff3d;
  border-radius: 50%;
}

.price-body {
  padding: 32px 40px 40px;
}
.feat-lbl {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8e8e96;
  font-weight: 600;
  margin-bottom: 18px;
}
.feat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 28px;
}
@media (max-width: 600px) {
  .feat-grid {
    grid-template-columns: 1fr;
  }
}
.feat {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  font-size: 14px;
  color: #edeae2;
  line-height: 1.4;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.feat-grid > .feat:nth-child(2n) {
  border-right: none;
}
.feat-grid > .feat:nth-last-child(-n + 2) {
  border-bottom: none;
}
@media (max-width: 600px) {
  .feat-grid > .feat {
    border-right: none;
  }
  .feat-grid > .feat:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .feat-grid > .feat:last-child {
    border-bottom: none;
  }
}
.feat .ck {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(30, 94, 255, 0.18);
  color: #9db6ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  margin-top: 1px;
}
.feat-note {
  display: block;
  font-size: 11px;
  color: #8e8e96;
  margin-top: 3px;
}
.feat-tag {
  font-size: 9.5px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 6px;
  vertical-align: middle;
  background: rgba(212, 255, 61, 0.18);
  color: #d4ff3d;
  letter-spacing: 0.04em;
}

.btn-pay {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  background: #fff;
  color: var(--ink);
  padding: 20px 30px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.005em;
  transition:
    transform 0.25s var(--ease),
    background 0.25s,
    color 0.25s;
  margin-bottom: 16px;
  will-change: transform;
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.btn-pay:hover {
  background: var(--accent);
  color: #fff;
}
.btn-pay .ic {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    background 0.25s,
    color 0.25s;
}
.btn-pay:hover .ic {
  background: rgba(255, 255, 255, 0.18);
}
.pay-meta {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.pay-m {
  font-size: 12px;
  color: #8e8e96;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ============================================
   GUARANTEE BOX
   ============================================ */
.guar {
  max-width: 680px;
  margin: 24px auto 0;
  background: rgba(24, 182, 116, 0.05);
  border: 1px solid rgba(24, 182, 116, 0.25);
  border-radius: var(--radius);
  padding: 32px 36px;
  display: flex;
  gap: 24px;
  align-items: center;
}
.guar-ic {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(24, 182, 116, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green);
}
.guar-ic svg {
  width: 28px;
  height: 28px;
}
.guar-title {
  font-family: var(--font-fraunces, "Fraunces"), serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  color: #fff;
}
.guar-title em {
  font-style: italic;
  color: #7ed9af;
  font-weight: 400;
}
.guar-desc {
  font-size: 14px;
  line-height: 1.55;
  color: #b5b5bd;
}
.guar-desc strong {
  color: #fff;
  font-weight: 600;
}
@media (max-width: 600px) {
  .guar {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
  }
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 64px;
  grid-auto-flow: dense;
}
.testi-grid > :nth-child(1) {
  grid-row: span 2;
}
@media (max-width: 900px) {
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .testi-grid > :nth-child(1) {
    grid-row: auto;
  }
}
@media (min-width: 901px) and (max-width: 1100px) {
  .testi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testi-grid > :nth-child(1) {
    grid-row: auto;
  }
}
.testi {
  background: var(--ink);
  color: var(--text-d);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s;
  will-change: transform;
}
.testi:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.3);
}
.testi.featured {
  background: linear-gradient(180deg, #13131a 0%, #0b0b10 100%);
  border: 1px solid rgba(30, 94, 255, 0.3);
}
.testi.featured::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 280px;
  height: 280px;
  background: radial-gradient(
    circle,
    rgba(30, 94, 255, 0.18) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.testi-metric {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: #7ed9af;
  background: rgba(24, 182, 116, 0.1);
  border: 1px solid rgba(24, 182, 116, 0.22);
  padding: 6px 12px;
  border-radius: 99px;
  position: relative;
  z-index: 1;
}
.testi-q {
  font-family: var(--font-fraunces, "Fraunces"), serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: #fff;
  position: relative;
  z-index: 1;
  flex: 1;
}
.testi.featured .testi-q {
  font-size: 24px;
  line-height: 1.4;
}
.testi-q::before {
  content: "\201C";
  font-family: var(--font-fraunces, "Fraunces"), serif;
  font-size: 80px;
  line-height: 1;
  color: rgba(30, 94, 255, 0.3);
  position: absolute;
  left: -10px;
  top: -30px;
  font-style: italic;
}
.testi-q .body {
  position: relative;
  z-index: 1;
  display: block;
}
.testi-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  position: relative;
  z-index: 1;
}
.testi-av {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
  background: #1a1a26;
}
.testi-av svg {
  width: 100%;
  height: 100%;
  display: block;
}
.testi-name {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}
.testi-role {
  font-size: 12px;
  color: #8e8e96;
  line-height: 1.4;
}

/* ============================================
   TRUST BADGES
   ============================================ */
.tbadges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
@media (max-width: 780px) {
  .tbadges {
    grid-template-columns: 1fr;
  }
}
.tbadge {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 28px;
  transition:
    transform 0.3s var(--ease),
    border-color 0.25s,
    box-shadow 0.35s;
  will-change: transform;
}
.tbadge:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: 0 18px 40px -16px rgba(30, 94, 255, 0.18);
}
.tbadge-logo {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tbadge-mid {
  flex: 1;
  min-width: 0;
}
.tbadge-name {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 4px;
}
.tbadge-rate {
  font-family: var(--font-fraunces, "Fraunces"), serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.015em;
}
.tbadge-stars {
  display: flex;
  gap: 2px;
  flex-shrink: 0;
}
.tbadge-stars svg {
  width: 16px;
  height: 16px;
  color: #ffb400;
}

/* ============================================
   FAQ
   ============================================ */
.faq-wrap {
  max-width: 780px;
  margin: 64px auto 0;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item:first-child {
  border-top: 1px solid var(--line);
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 8px;
  gap: 24px;
  width: 100%;
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}
.faq-qt {
  font-family: var(--font-fraunces, "Fraunces"), serif;
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.3;
  color: var(--text);
  transition: color 0.25s;
}
.faq-q:hover .faq-qt {
  color: var(--accent);
}
.faq-ic {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.3s var(--ease),
    background 0.25s,
    border-color 0.25s;
  background: #fff;
  color: var(--text);
}
.faq-ic svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s var(--ease);
}
.faq-item.open .faq-ic {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.faq-item.open .faq-ic svg {
  transform: rotate(45deg);
}
.faq-item.open .faq-qt {
  color: var(--accent);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease);
}
.faq-item.open .faq-a {
  max-height: 600px;
}
.faq-a-inner {
  padding: 0 8px 26px 8px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 62ch;
}
.faq-a-inner a {
  color: var(--accent);
  text-decoration: underline;
}

/* ============================================
   BOTTOM CTA
   ============================================ */
.cta-sec {
  padding: 140px 0 120px;
  text-align: center;
  background: var(--bg-dark);
  color: var(--text-d);
  position: relative;
  overflow: hidden;
}
.cta-sec .blob {
  opacity: 0.4;
}
.cta-sec h2 {
  margin-bottom: 24px;
}
.cta-note {
  font-size: 13px;
  color: #fff;
  margin-top: 28px;
  line-height: 1.7;
}
.cta-link {
  color: #9db6ff;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--ink);
  color: var(--text-d);
  padding: 80px 0 0;
  border-top: 1px solid var(--line-d);
  overflow: hidden;
  position: relative;
}
.foot-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--line-d);
}
@media (max-width: 900px) {
  .foot-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
@media (max-width: 600px) {
  .foot-top {
    grid-template-columns: 1fr;
  }
}
.foot-brand .mark {
  font-family: var(--font-fraunces, "Fraunces"), serif;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 14px;
  display: inline-block;
}
.foot-brand .mark em {
  font-style: italic;
  color: #5586ff;
  font-weight: 500;
}
.foot-brand .tag {
  font-size: 13px;
  color: #b5b5bd;
  line-height: 1.6;
  max-width: 34ch;
  margin-bottom: 24px;
}
.foot-brand .tag a {
  color: #9db6ff;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.foot-social {
  display: flex;
  gap: 10px;
}
.foot-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line-d);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #8e8e96;
  transition:
    border-color 0.25s,
    color 0.25s,
    background 0.25s;
}
.foot-social a:hover {
  border-color: var(--accent);
  color: #fff;
  background: rgba(30, 94, 255, 0.18);
}
.foot-social a svg {
  width: 16px;
  height: 16px;
}
.foot-col h4 {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8e8e96;
  font-weight: 600;
  margin-bottom: 18px;
}
.foot-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.foot-col a {
  font-size: 14px;
  color: #edeae2;
  transition: color 0.2s;
}
.foot-col a:hover {
  color: #9db6ff;
}
.foot-bottom {
  padding: 36px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.foot-made {
  font-size: 12px;
  color: #8e8e96;
  text-align: center;
}
.foot-made .heart {
  color: #e5484d;
  display: inline-block;
  animation: ds-beat 1.4s ease-in-out infinite;
}
.foot-legal {
  font-size: 12px;
  color: #8e8e96;
}
.foot-legal a {
  margin-left: 18px;
}
.mega-wordmark {
  font-family: var(--font-fraunces, "Fraunces"), serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(72px, 18vw, 260px);
  line-height: 0.9;
  letter-spacing: -0.05em;
  text-align: center;
  background: linear-gradient(180deg, #5586ff 0%, #1e5eff 30%, #0b0b10 95%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding: 80px 0 0;
  user-select: none;
  overflow: hidden;
}

/* ============================================
   FOCUS RING
   ============================================ */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 8px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 600px) {
  .sec {
    padding: 84px 0;
  }
  .container {
    padding: 0 22px;
  }
  .price-head {
    padding: 28px 24px 24px;
  }
  .price-body {
    padding: 24px 24px 32px;
  }
  .price-now {
    font-size: 54px;
  }
  nav {
    padding: 14px 22px;
  }
}

/* ============================================
   KEYFRAMES
   ============================================ */
@keyframes ds-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(24, 182, 116, 0.55);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(24, 182, 116, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(24, 182, 116, 0);
  }
}
@keyframes ds-ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes ds-floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
@keyframes ds-draw {
  0% {
    stroke-dashoffset: 120;
  }
  40% {
    stroke-dashoffset: 0;
  }
  80% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  100% {
    stroke-dashoffset: 120;
    opacity: 0;
  }
}
@keyframes ds-ring-pulse {
  0% {
    transform: scale(0.6);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}
@keyframes ds-cycle {
  0%,
  30% {
    opacity: 1;
  }
  45%,
  100% {
    opacity: 0.35;
  }
}
@keyframes ds-beat {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.18);
  }
}

/* ===================================================================
   DESIGNSHARE ROUTE — tokens, components, animations
   =================================================================== */

@theme {
  --color-ds-cream: #f4efe1;
  --color-ds-cream-2: #ebe3cc;
  --color-ds-ink: #0f0f10;
  --color-ds-ink-2: #181818;
  --color-ds-char: #222222;
  --color-ds-lime: #1e5eff;
  --color-ds-lime-2: #5586ff;
  --color-ds-lime-deep: #0f3dbd;
  --color-ds-ash: #6f6a5c;
  --color-ds-line: #dcd3bd;
  --font-display:
    var(--font-jakarta, "Plus Jakarta Sans"), system-ui, sans-serif;
  --font-serif: var(--font-instrument, "Instrument Serif"), Georgia, serif;
}

/* ---- Shared easing vars (scoped to ds-page) ---- */
.ds-page {
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ---- Container ---- */
.ds-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 600px) {
  .ds-container {
    padding: 0 20px;
  }
}

/* ---- Italic accent helper ---- */
.ds-italic {
  font-family: var(--font-instrument, "Instrument Serif"), Georgia, serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.005em;
}

/* ---- Headings ---- */
.ds-h-mega {
  font-family: var(--font-jakarta, "Plus Jakarta Sans"), system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(64px, 11vw, 168px);
  line-height: 0.92;
  letter-spacing: -0.045em;
  text-wrap: balance;
}
.ds-h-mega .ds-italic {
  font-size: 1.06em;
  display: inline-block;
  letter-spacing: -0.025em;
}
.ds-h-display {
  font-family: var(--font-jakarta, "Plus Jakarta Sans"), system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(48px, 7.4vw, 108px);
  line-height: 0.96;
  letter-spacing: -0.035em;
  text-wrap: balance;
}
.ds-h-display .ds-italic {
  font-size: 1.05em;
  letter-spacing: -0.02em;
}
.ds-h-2 {
  font-family: var(--font-jakarta, "Plus Jakarta Sans"), system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 5.4vw, 76px);
  line-height: 1;
  letter-spacing: -0.03em;
  text-wrap: balance;
}
.ds-h-2 .ds-italic {
  font-size: 1.04em;
  letter-spacing: -0.015em;
}

/* ---- Lede ---- */
.ds-lede {
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.45;
  color: #222222;
  max-width: 54ch;
}
.ds-lede--ink {
  color: #c7c2b3;
}

/* ---- Eyebrow pill ---- */
.ds-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-jakarta, "Plus Jakarta Sans"), system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: #0f0f10;
  color: #f4efe1;
  padding: 8px 16px;
  border-radius: 99px;
  margin-bottom: 28px;
}
.ds-eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #1e5eff;
  flex-shrink: 0;
}
.ds-eyebrow--lime {
  background: #1e5eff;
  color: #fff;
}
.ds-eyebrow--lime .ds-eyebrow-dot {
  background: #0f0f10;
}

/* ---- Buttons ---- */
.ds-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-jakarta, "Plus Jakarta Sans"), system-ui, sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.012em;
  padding: 18px 30px;
  border-radius: 99px;
  background: #0f0f10;
  color: #f4efe1;
  box-shadow: 0 6px 0 #222222;
  transition:
    transform 0.2s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.2s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.2s;
  will-change: transform;
  border: none;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  white-space: nowrap;
}
.ds-btn:hover {
  transform: translateY(2px);
  box-shadow: 0 4px 0 #222222;
}
.ds-btn:active {
  transform: translateY(6px);
  box-shadow: 0 0 0 #222222;
}
.ds-btn svg {
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.ds-btn:hover svg {
  transform: translateX(4px);
}
.ds-btn--lime {
  background: #1e5eff;
  color: #fff;
  box-shadow: 0 6px 0 #0f3dbd;
}
.ds-btn--lime:hover {
  box-shadow: 0 4px 0 #0f3dbd;
}
.ds-btn--lime:active {
  box-shadow: 0 0 0 #0f3dbd;
}
.ds-btn--cream {
  background: #f4efe1;
  color: #0f0f10;
  box-shadow: 0 6px 0 #ebe3cc;
}
.ds-btn--cream:hover {
  box-shadow: 0 4px 0 #ebe3cc;
}
.ds-btn--lg {
  font-size: 18px;
  padding: 22px 36px;
  box-shadow: 0 8px 0 #222222;
}
.ds-btn--lg:hover {
  transform: translateY(2px);
  box-shadow: 0 6px 0 #222222;
}
.ds-btn--lg:active {
  transform: translateY(8px);
  box-shadow: 0 0 0 #222222;
}
.ds-btn--lg.ds-btn--lime {
  box-shadow: 0 8px 0 #0f3dbd;
}
.ds-btn--lg.ds-btn--lime:hover {
  box-shadow: 0 6px 0 #0f3dbd;
}
.ds-btn--lg.ds-btn--lime:active {
  box-shadow: 0 0 0 #0f3dbd;
}
.ds-btn-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-jakarta, "Plus Jakarta Sans"), system-ui, sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #0f0f10;
  padding: 8px 0;
  border-bottom: 2px solid #0f0f10;
  transition: gap 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  text-decoration: none;
}
.ds-btn-text:hover {
  gap: 14px;
}

/* ---- Nav ---- */
.ds-nav-wrap {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  justify-content: center;
  pointer-events: none;
  padding: 0 22px;
}
.ds-nav {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 12px 10px 22px;
  background: rgba(15, 15, 16, 0.92);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-radius: 99px;
  color: #f4efe1;
  box-shadow: 0 12px 30px -10px rgba(0, 0, 0, 0.3);
  min-width: min(900px, 100%);
  max-width: 100%;
}
.ds-nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-jakarta, "Plus Jakarta Sans"), system-ui, sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: #f4efe1;
  text-decoration: none;
}
.ds-nav-logo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1e5eff;
  flex-shrink: 0;
  animation: ds-pulse-lime 2s infinite;
}
.ds-nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}
.ds-nav-link {
  font-size: 14px;
  font-weight: 500;
  color: #c7c2b3;
  transition: color 0.2s;
  text-decoration: none;
}
.ds-nav-link:hover {
  color: #f4efe1;
}
.ds-nav-cta {
  background: #1e5eff;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: 99px;
  box-shadow: 0 4px 0 #0f3dbd;
  transition:
    transform 0.2s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.2s;
  text-decoration: none;
  display: inline-block;
}
.ds-nav-cta:hover {
  transform: translateY(1px);
  box-shadow: 0 3px 0 #0f3dbd;
}
.ds-nav-cta:active {
  transform: translateY(4px);
  box-shadow: 0 0 0 #0f3dbd;
}
@media (max-width: 780px) {
  .ds-nav-links .ds-nav-link {
    display: none;
  }
  .ds-nav {
    padding: 8px 8px 8px 18px;
    gap: 10px;
  }
  .ds-nav-wrap {
    top: 12px;
  }
}

/* ---- Section helpers ---- */
.ds-sec {
  padding: 140px 0;
  position: relative;
}
@media (max-width: 780px) {
  .ds-sec {
    padding: 96px 0;
  }
}
.ds-sec--ink {
  background: #0f0f10;
  color: #f4efe1;
}
.ds-sec-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 80px;
}

/* ---- Hero ---- */
.ds-hero {
  padding: 160px 0 96px;
  position: relative;
  overflow: hidden;
  background: #f4efe1;
}
.ds-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #0f0f10;
  color: #f4efe1;
  font-family: var(--font-jakarta, "Plus Jakarta Sans"), system-ui, sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.03em;
  padding: 8px 16px;
  border-radius: 99px;
  margin: 0 auto 32px;
  max-width: 100%;
  box-sizing: border-box;
}
.ds-hero-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1e5eff;
  animation: ds-pulse-lime 2s infinite;
  flex-shrink: 0;
}
.ds-hero-sub {
  font-family: var(--font-jakarta, "Plus Jakarta Sans"), system-ui, sans-serif;
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.45;
  color: #222222;
  max-width: 34em;
  margin: 0 auto 40px;
  font-weight: 500;
}
.ds-hero-sub b {
  font-weight: 700;
  color: #0f0f10;
  background-image: linear-gradient(#1e5eff, #1e5eff);
  background-repeat: no-repeat;
  background-size: 100% 4px;
  background-position: 0 105%;
  padding-bottom: 4px;
}
.ds-hero-trust {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: #222222;
  flex-wrap: wrap;
  justify-content: center;
}
.ds-hero-stars {
  display: inline-flex;
  gap: 1px;
  color: #f4a92e;
}
.ds-hero-stars svg {
  width: 15px;
  height: 15px;
}
.ds-trust-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #6f6a5c;
  opacity: 0.5;
  flex-shrink: 0;
}

/* Smiley — absolute floating (desktop), inline (mobile) */
.ds-hero-smiley {
  position: absolute;
  top: 14%;
  left: 8%;
  width: 120px;
  height: 120px;
  z-index: 0;
}
@media (max-width: 1100px) {
  .ds-hero-smiley {
    position: relative;
    top: auto;
    left: auto;
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: block;
  }
}

@media (max-width: 600px) {
  .ds-hero {
    padding: 130px 0 72px;
  }
}
@media (max-width: 480px) {
  .ds-hero {
    padding: 110px 0 56px;
  }
  .ds-hero-smiley {
    width: 64px !important;
    height: 64px !important;
  }
  .ds-h-mega {
    font-size: clamp(42px, 13vw, 72px);
  }
  .ds-hero-pill {
    font-size: 10px;
    padding: 6px 12px;
    margin: 0 auto 18px;
    white-space: nowrap;
    max-width: 100%;
    box-sizing: border-box;
  }
  .ds-hero-sub {
    font-size: 16px;
    margin-bottom: 28px;
  }
  .ds-btn {
    font-size: 13px;
    padding: 14px 20px;
    gap: 8px;
    box-shadow: 0 4px 0 #222222;
  }
  .ds-btn:hover {
    transform: translateY(1px);
    box-shadow: 0 3px 0 #222222;
  }
  .ds-btn:active {
    transform: translateY(4px);
    box-shadow: 0 0 0 #222222;
  }
  .ds-btn--lg {
    font-size: 15px;
    padding: 16px 22px;
  }
  .ds-hero-trust {
    font-size: 12px;
    gap: 10px;
  }
  .ds-hero-stars svg {
    width: 12px;
    height: 12px;
  }
  .ds-portfolio-btn {
    font-size: 13px;
    padding: 14px 20px;
    gap: 8px;
  }
}
@media (max-width: 375px) {
  .ds-btn {
    font-size: 12px;
    padding: 12px 18px;
    gap: 6px;
    box-shadow: 0 3px 0 #222222;
  }
  .ds-btn:hover {
    transform: translateY(1px);
    box-shadow: 0 2px 0 #222222;
  }
  .ds-btn:active {
    transform: translateY(3px);
    box-shadow: 0 0 0 #222222;
  }
  .ds-portfolio-btn {
    font-size: 11.5px;
    padding: 12px 16px;
    gap: 6px;
  }
}

/* Word stagger */
.ds-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px) rotate(2deg);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.ds-word.ds-word-in {
  opacity: 1;
  transform: translateY(0) rotate(0);
}

/* Float cards */
.ds-float-card {
  position: absolute;
  background: #fff;
  border: 1px solid #dcd3bd;
  border-radius: 18px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow:
    0 24px 50px -22px rgba(15, 15, 16, 0.22),
    0 4px 10px -4px rgba(15, 15, 16, 0.1);
  font-family: var(--font-jakarta, "Plus Jakarta Sans"), system-ui, sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: #0f0f10;
  pointer-events: auto;
  animation: ds-float-y 5s ease-in-out infinite;
}
.ds-float-meta {
  font-size: 11px;
  font-weight: 500;
  color: #6f6a5c;
  display: block;
  margin-top: 1px;
}
.ds-float-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #1e5eff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}
.ds-float-1 {
  top: 12%;
  left: 4%;
  --r: rotate(-5deg);
  transform: rotate(-5deg);
  animation-delay: 0s;
}
.ds-float-2 {
  top: 18%;
  right: 5%;
  --r: rotate(4deg);
  transform: rotate(4deg);
  animation-delay: 1.2s;
}
.ds-float-3 {
  bottom: 14%;
  left: 7%;
  --r: rotate(3deg);
  transform: rotate(3deg);
  animation-delay: 2.4s;
}
.ds-float-4 {
  bottom: 20%;
  right: 6%;
  --r: rotate(-3deg);
  transform: rotate(-3deg);
  animation-delay: 1.8s;
}
@media (max-width: 1100px) {
  .ds-float-card {
    display: none !important;
  }
}

/* ---- Trust strip ---- */
.ds-trust-strip {
  padding: 36px 0;
  border-top: 1px solid #dcd3bd;
  border-bottom: 1px solid #dcd3bd;
  background: #ebe3cc;
}
.ds-trust-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 40px;
}
.ds-trust-label {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6f6a5c;
  text-align: center;
  margin-bottom: 22px;
  font-weight: 600;
}
.ds-trust-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: nowrap;
  opacity: 0.7;
}
.ds-trust-logo-link {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.ds-trust-logo-link:hover {
  opacity: 0.6;
}
.ds-trust-logos img {
  height: 32px;
  width: auto;
  object-fit: contain;
}
@media (max-width: 1280px) {
  .ds-trust-logos {
    gap: 32px;
    flex-wrap: wrap;
  }
  .ds-trust-logos img {
    height: 28px;
  }
}
@media (max-width: 780px) {
  .ds-trust-container {
    padding: 0 20px;
  }
  .ds-trust-logos {
    gap: 24px;
  }
  .ds-trust-logos img {
    height: 22px;
  }
}

/* ---- Marquee ---- */
.ds-marquee {
  background: #0f0f10;
  color: #f4efe1;
  padding: 26px 0;
  overflow: hidden;
}
.ds-marquee--lime {
  background: #1e5eff;
  color: #fff;
}
.ds-marquee-track {
  display: flex;
  align-items: center;
  gap: 40px;
  white-space: nowrap;
  animation: ds-marq 40s linear infinite;
  width: max-content;
}
.ds-marquee:hover .ds-marquee-track {
  animation-play-state: paused;
}
.ds-marquee-item {
  font-family: var(--font-jakarta, "Plus Jakarta Sans"), system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 3vw, 40px);
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: center;
  gap: 40px;
}
.ds-marquee-item .ds-italic {
  font-weight: 400;
  font-size: 1.1em;
}
.ds-marquee-dot {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.ds-marquee-dot .ds-smiley {
  width: 100%;
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.ds-marquee-dot svg {
  width: 100%;
  height: 100%;
  animation: ds-spin 14s linear infinite;
}

/* ---- How it works ---- */
.ds-how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  .ds-how-grid {
    grid-template-columns: 1fr;
  }
}
.ds-step {
  background: #fff;
  border: 2px solid #0f0f10;
  border-radius: 24px;
  padding: 36px 32px 32px;
  position: relative;
  box-shadow: 0 8px 0 #0f0f10;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s;
}
.ds-step:nth-child(2) {
  background: #1e5eff;
  color: #fff;
  border-color: #0f3dbd;
  box-shadow: 0 8px 0 #0f3dbd;
}
.ds-step:nth-child(2) h3 {
  color: #fff;
}
.ds-step:nth-child(2) p {
  color: #d8e2ff;
}
.ds-step:nth-child(2) .ds-step-num {
  color: #fff;
}
.ds-step:nth-child(2) .ds-step-num .ds-italic {
  color: #d4ff3d;
}
.ds-step:hover {
  transform: translate(-2px, -4px);
  box-shadow: 0 12px 0 #0f0f10;
}
.ds-step:nth-child(2):hover {
  box-shadow: 0 12px 0 #0f3dbd;
}
.ds-step-num {
  font-family: var(--font-jakarta, "Plus Jakarta Sans"), system-ui, sans-serif;
  font-weight: 800;
  font-size: 64px;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 24px;
  display: inline-block;
  color: #0f0f10;
}
.ds-step-num .ds-italic {
  color: #0f3dbd;
  font-size: 0.9em;
}
.ds-step-badge {
  position: absolute;
  top: -14px;
  right: 24px;
  background: #0f0f10;
  color: #f4efe1;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  border-radius: 99px;
}
.ds-step:nth-child(2) .ds-step-badge {
  background: #fff;
  color: #0f0f10;
}

/* ---- Benefits ---- */
.ds-ben-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) {
  .ds-ben-grid {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 901px) and (max-width: 1100px) {
  .ds-ben-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.ds-ben {
  background: #181818;
  color: #f4efe1;
  border-radius: 22px;
  padding: 32px;
  position: relative;
  border: 1px solid #2a2a2a;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.25s;
  overflow: hidden;
}
.ds-ben:hover {
  transform: translateY(-4px) rotate(-0.5deg);
  background: #222;
}
.ds-ben-ic {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #1e5eff;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.ds-ben:hover .ds-ben-ic {
  transform: rotate(-8deg) scale(1.08);
}
.ds-ben-ic svg {
  width: 24px;
  height: 24px;
}
.ds-ben-num {
  position: absolute;
  top: 18px;
  right: 24px;
  font-size: 13px;
  font-weight: 600;
  color: #4a4a4a;
  letter-spacing: 0.04em;
}

/* ---- Work strip ---- */
.ds-work-strip {
  padding: 0 0 96px;
  overflow: hidden;
  background: #f4efe1;
}
.ds-work-marquee {
  display: flex;
  gap: 24px;
  animation: ds-work-scroll 50s linear infinite;
  width: max-content;
}
.ds-work-marquee:has(.ds-work-card:hover) {
  animation-play-state: paused;
}
.ds-work-card {
  flex-shrink: 0;
  width: 480px;
  border-radius: 22px;
  background: #fff;
  border: 2px solid #0f0f10;
  box-shadow: 0 6px 0 #0f0f10;
  overflow: hidden;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s;
  display: block;
  text-decoration: none;
  color: inherit;
}
.ds-work-card:hover {
  /* transform: translate(-2px, -3px);
  box-shadow: 0 9px 0 #0f0f10; */
}
.ds-work-thumb {
  aspect-ratio: 1.6/1;
  position: relative;
  overflow: hidden;
  background: #ebe3cc;
}
.ds-work-thumb svg {
  width: 100%;
  height: 100%;
  display: block;
}
.ds-work-meta {
  padding: 22px 26px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.ds-work-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.ds-work-sub {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #6f6a5c;
  margin-top: 4px;
}
.ds-work-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: #1e5eff;
  color: #fff;
  padding: 5px 12px;
  border-radius: 99px;
  flex-shrink: 0;
}
@media (max-width: 780px) {
  .ds-work-card {
    width: 320px;
  }
}

/* ---- Pricing ---- */
.ds-pricing-wrap {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}
.ds-pricing-scribble {
  position: absolute;
  top: -12px;
  left: -220px;
  width: 200px;
  text-align: right;
  font-family: var(--font-instrument, "Instrument Serif"), Georgia, serif;
  font-style: italic;
  font-size: 28px;
  color: #1e5eff;
  line-height: 1.05;
  transform: rotate(-7deg);
  pointer-events: none;
}
.ds-pricing-scribble svg {
  width: 130px;
  height: 80px;
  margin: 6px 0 0 auto;
  display: block;
}
@media (max-width: 1180px) {
  .ds-pricing-scribble {
    display: none;
  }
}
.ds-price-card {
  background: #f4efe1;
  color: #0f0f10;
  border-radius: 28px;
  border: 3px solid #0f0f10;
  overflow: hidden;
  position: relative;
  box-shadow:
    0 14px 0 #1e5eff,
    0 15px 0 1px #0f0f10;
}
.ds-price-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: #1e5eff;
}
.ds-price-head {
  padding: 42px 44px 30px;
  border-bottom: 2px dashed #0f0f10;
}
@media (max-width: 600px) {
  .ds-price-head {
    padding: 30px 24px 24px;
  }
}
.ds-price-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.ds-price-spots {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #0f0f10;
  color: #fff !important;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 7px 14px;
  border-radius: 99px;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.ds-price-spots-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #1e5eff;
  animation: ds-pulse-lime 2s infinite;
  flex-shrink: 0;
}
.ds-price-name {
  font-family: var(--font-jakarta, "Plus Jakarta Sans"), system-ui, sans-serif;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 8px;
}
.ds-price-desc {
  font-size: 15px;
  color: #222222;
  line-height: 1.5;
  max-width: 32ch;
}
.ds-price-amt {
  text-align: right;
  flex-shrink: 0;
}
.ds-price-was {
  font-family: var(--font-instrument, "Instrument Serif"), Georgia, serif;
  font-style: italic;
  font-size: 24px;
  color: #6f6a5c;
  text-decoration: line-through;
  text-decoration-color: #6f6a5c;
  margin-bottom: 6px;
}
.ds-price-now {
  font-family: var(--font-jakarta, "Plus Jakarta Sans"), system-ui, sans-serif;
  font-size: clamp(56px, 7vw, 84px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.92;
  display: inline-flex;
  align-items: baseline;
}
.ds-price-unit {
  font-size: 18px;
  font-weight: 600;
  color: #222222;
  margin-left: 4px;
}
.ds-price-cancel {
  font-size: 12px;
  color: #6f6a5c;
  margin-top: 6px;
  font-weight: 500;
}
.ds-price-lock {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1e5eff;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 99px;
  border: 1.5px solid #0f0f10;
}
.ds-price-body {
  padding: 32px 44px 38px;
}
@media (max-width: 600px) {
  .ds-price-body {
    padding: 24px 24px 30px;
  }
}
.ds-feat-lbl {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6f6a5c;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ds-feat-lbl::before {
  content: "";
  flex: 1;
  height: 1px;
  background: #dcd3bd;
  max-width: 80px;
}
.ds-feat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
  margin-bottom: 30px;
}
@media (max-width: 600px) {
  .ds-feat-grid {
    grid-template-columns: 1fr;
  }
}
.ds-feat {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 15px;
  color: #0f0f10;
  font-weight: 500;
  line-height: 1.4;
}
.ds-feat-ck {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #1e5eff;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  margin-top: 1px;
  border: 1.5px solid #0f0f10;
}
.ds-feat-note {
  display: block;
  font-size: 12px;
  color: #6f6a5c;
  margin-top: 2px;
  font-weight: 500;
}
.ds-feat-tag {
  font-size: 9.5px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 6px;
  background: #0f0f10;
  color: #5586ff;
  letter-spacing: 0.06em;
  vertical-align: middle;
}
.ds-pay-meta {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.ds-pay-m {
  font-size: 12.5px;
  color: #222222;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}
.ds-guar {
  max-width: 760px;
  margin: 24px auto 0;
  background: #ebe3cc;
  border: 2px solid #0f0f10;
  border-radius: 18px;
  padding: 22px 28px;
  display: flex;
  gap: 18px;
  align-items: center;
}
.ds-guar-ic {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #1e5eff;
  border: 2px solid #0f0f10;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}
.ds-guar-ic svg {
  width: 24px;
  height: 24px;
}
@media (max-width: 600px) {
  .ds-guar {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ---- Testimonials ---- */
.ds-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  grid-auto-flow: dense;
}
.ds-testi-grid > :nth-child(1) {
  grid-row: span 2;
}
@media (max-width: 900px) {
  .ds-testi-grid {
    grid-template-columns: 1fr;
  }
  .ds-testi-grid > :nth-child(1) {
    grid-row: auto;
  }
}
@media (min-width: 901px) and (max-width: 1100px) {
  .ds-testi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ds-testi-grid > :nth-child(1) {
    grid-row: auto;
  }
}
.ds-testi {
  background: #181818;
  color: #f4efe1;
  border: 1px solid #2a2a2a;
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s;
  will-change: transform;
}
.ds-testi:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.4);
}
.ds-testi.featured {
  background: linear-gradient(180deg, #13131a 0%, #0b0b10 100%);
  border: 1px solid rgba(30, 94, 255, 0.3);
}
.ds-testi.featured::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 280px;
  height: 280px;
  background: radial-gradient(
    circle,
    rgba(30, 94, 255, 0.18) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.ds-testi-metric {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: #7ed9af;
  background: rgba(24, 182, 116, 0.1);
  border: 1px solid rgba(24, 182, 116, 0.22);
  padding: 6px 12px;
  border-radius: 99px;
  position: relative;
  z-index: 1;
}
.ds-testi-q {
  font-size: 17px;
  line-height: 1.55;
  color: #e8e3d8;
  font-weight: 400;
  flex: 1;
  position: relative;
  z-index: 1;
}
.ds-testi-q::before {
  content: "\201C";
  font-size: 72px;
  line-height: 1;
  color: rgba(30, 94, 255, 0.3);
  position: absolute;
  left: -8px;
  top: -24px;
  font-style: italic;
}
.ds-testi.featured .ds-testi-q {
  font-size: 22px;
  line-height: 1.4;
  font-weight: 500;
  color: #fff;
}
.ds-testi-stars {
  display: flex;
  gap: 1px;
  color: #f4a92e;
}
.ds-testi-stars svg {
  width: 14px;
  height: 14px;
}
.ds-testi-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  position: relative;
  z-index: 1;
}
.ds-testi-av {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
  border: 2px solid #2a2a2a;
}
.ds-testi-av svg {
  width: 100%;
  height: 100%;
  display: block;
}
.ds-testi-name {
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: #fff;
}
.ds-testi-role {
  font-size: 12.5px;
  color: #8e8e96;
  line-height: 1.4;
  font-weight: 500;
}
/* trust badges */
.ds-tbadges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 32px;
}
@media (max-width: 780px) {
  .ds-tbadges {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .ds-tbadge {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
.ds-tbadge {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 2px solid #0f0f10;
  border-radius: 18px;
  padding: 20px 24px;
  box-shadow: 0 5px 0 #0f0f10;
  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s;
  will-change: transform;
}
.ds-tbadge:hover {
  transform: translate(-1px, -2px);
  box-shadow: 0 7px 0 #0f0f10;
  border-color: #0f0f10;
}
.ds-tbadge-logo {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ds-tbadge-mid {
  flex: 1;
  min-width: 0;
}
.ds-tbadge-name {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6f6a5c;
  font-weight: 700;
  margin-bottom: 2px;
}
.ds-tbadge-rate {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.012em;
  color: #0f0f10;
}
.ds-tbadge-stars {
  display: flex;
  gap: 1.5px;
  color: #f4a92e;
}
.ds-tbadge-stars svg {
  width: 15px;
  height: 15px;
}

/* ---- FAQ ---- */
.ds-faq-wrap {
  max-width: 780px;
  margin: 0 auto;
}
.ds-faq-item {
  background: #fff;
  border: 2px solid #0f0f10;
  border-radius: 18px;
  margin-bottom: 12px;
  box-shadow: 0 5px 0 #0f0f10;
  overflow: hidden;
}
.ds-faq-item.open {
  background: #1e5eff;
  color: #fff;
}
.ds-faq-item.open .ds-faq-qt {
  color: #fff;
}
.ds-faq-item.open .ds-faq-a-inner {
  color: #cfdcff;
}
.ds-faq-item.open .ds-faq-a-inner a {
  color: #fff;
  border-color: #fff;
}
.ds-faq-item.open .ds-faq-ic {
  background: #fff;
  color: #0f0f10;
}
.ds-faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 24px;
  gap: 20px;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-jakarta, "Plus Jakarta Sans"), system-ui, sans-serif;
}
.ds-faq-qt {
  font-size: clamp(16px, 1.55vw, 19px);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.3;
  color: #0f0f10;
}
.ds-faq-ic {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #0f0f10;
  color: #f4efe1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.ds-faq-ic svg {
  width: 14px;
  height: 14px;
}
.ds-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.ds-faq-a-inner {
  padding: 0 24px 24px;
  font-size: 15px;
  line-height: 1.65;
  color: #222222;
  max-width: 64ch;
}
.ds-faq-a-inner a {
  color: #0f0f10;
  font-weight: 700;
  border-bottom: 2px solid #0f0f10;
  text-decoration: none;
}

/* ---- Final CTA ---- */
.ds-final-cta {
  padding: 120px 0 140px;
  background: #1e5eff;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ds-final-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.ds-final-cta-email {
  font-size: 15px;
  color: #fff;
  font-weight: 500;
}
.ds-final-cta-email a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cta-note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 28px;
  line-height: 1.7;
}
.cta-link {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

/* ---- Footer ---- */
.ds-footer {
  background: #0f0f10;
  color: #f4efe1;
  padding: 80px 0 28px;
  overflow: hidden;
  position: relative;
}
.ds-foot-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  flex-wrap: wrap;
  padding-bottom: 60px;
  border-bottom: 1px solid #2a2a2a;
}
.ds-foot-brand-mark {
  font-family: var(--font-jakarta, "Plus Jakarta Sans"), system-ui, sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.022em;
  color: #f4efe1;
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.ds-foot-brand-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #1e5eff;
}
.ds-foot-brand p {
  font-size: 14px;
  color: #b8b3a4;
  line-height: 1.55;
  max-width: 32ch;
}
.ds-foot-brand p a {
  color: #1e5eff;
  font-weight: 600;
  border-bottom: 1px solid currentColor;
  text-decoration: none;
}
.ds-foot-social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.ds-foot-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid #2e2e2e;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #b8b3a4;
  transition: all 0.25s;
  text-decoration: none;
}
.ds-foot-social a:hover {
  border-color: #1e5eff;
  color: #1e5eff;
  background: rgba(30, 94, 255, 0.06);
}
.ds-foot-social svg {
  width: 16px;
  height: 16px;
}
.ds-foot-cols {
  display: flex;
  gap: 64px;
  flex-wrap: wrap;
}
@media (max-width: 780px) {
  .ds-foot-cols {
    gap: 32px;
  }
}
.ds-foot-col h4 {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #7a766b;
  font-weight: 700;
  margin-bottom: 14px;
}
.ds-foot-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ds-foot-col a {
  font-size: 14.5px;
  color: #f4efe1;
  font-weight: 500;
  transition: color 0.2s;
  text-decoration: none;
}
.ds-foot-col a:hover {
  color: #1e5eff;
}
.ds-mega-word {
  font-family: var(--font-jakarta, "Plus Jakarta Sans"), system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(80px, 18vw, 260px);
  line-height: 0.85;
  letter-spacing: -0.06em;
  text-align: center;
  background: linear-gradient(180deg, #1e5eff 0%, #0f3dbd 60%, #0f0f10 98%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding: 48px 32px 12px;
  user-select: none;
}
.ds-foot-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}
.ds-foot-meta {
  font-size: 12.5px;
  color: #7a766b;
}
.ds-foot-heart {
  color: #1e5eff;
  animation: ds-beat-foot 1.4s ease-in-out infinite;
  display: inline-block;
}
@keyframes ds-beat-foot {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.18);
  }
}
.ds-foot-legal {
  display: flex;
  gap: 18px;
  font-size: 12.5px;
  color: #7a766b;
}
.ds-foot-legal a {
  color: #7a766b;
  transition: color 0.2s;
  text-decoration: none;
}
.ds-foot-legal a:hover {
  color: #1e5eff;
}

/* ---- Sticky CTA ---- */
.ds-sticky-cta {
  position: fixed;
  bottom: 48px;
  right: 24px;
  z-index: 150;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #1e5eff;
  color: #fff;
  font-family: var(--font-jakarta, "Plus Jakarta Sans"), system-ui, sans-serif;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -0.01em;
  padding: 14px 22px;
  border-radius: 99px;
  border: 2px solid #0f0f10;
  box-shadow: 0 6px 0 #0f0f10;
  transform: translateY(140px);
  opacity: 0;
  pointer-events: none;
  transition:
    transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity 0.3s,
    box-shadow 0.2s;
  text-decoration: none;
}
.ds-sticky-cta.shown {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.ds-sticky-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 0 #0f0f10;
}
.ds-sticky-cta:active {
  transform: translateY(4px);
  box-shadow: 0 2px 0 #0f0f10;
}
@media (max-width: 600px) {
  .ds-sticky-cta {
    bottom: 32px;
    right: 14px;
    font-size: 13px;
    padding: 12px 18px;
  }
}

/* ---- Reveal ---- */
.ds-out {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.ds-in {
  opacity: 1;
  transform: none;
}
.ds-stagger-out > * {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.ds-stagger-in > *:nth-child(1) {
  opacity: 1;
  transform: none;
  transition-delay: 0.06s;
}
.ds-stagger-in > *:nth-child(2) {
  opacity: 1;
  transform: none;
  transition-delay: 0.13s;
}
.ds-stagger-in > *:nth-child(3) {
  opacity: 1;
  transform: none;
  transition-delay: 0.2s;
}
.ds-stagger-in > *:nth-child(4) {
  opacity: 1;
  transform: none;
  transition-delay: 0.27s;
}
.ds-stagger-in > *:nth-child(5) {
  opacity: 1;
  transform: none;
  transition-delay: 0.34s;
}
.ds-stagger-in > *:nth-child(6) {
  opacity: 1;
  transform: none;
  transition-delay: 0.41s;
}

/* ---- Smiley ---- */
.ds-smiley {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ds-smiley svg {
  width: 100%;
  height: 100%;
}
.ds-smiley-spin svg {
  animation: ds-spin 14s linear infinite;
}

/* ---- Keyframes ---- */
@keyframes ds-pulse-lime {
  0% {
    box-shadow: 0 0 0 0 rgba(30, 94, 255, 0.55);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(30, 94, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(30, 94, 255, 0);
  }
}
@keyframes ds-marq {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes ds-work-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes ds-spin {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes ds-float-y {
  0%,
  100% {
    transform: translateY(0) var(--r, rotate(0));
  }
  50% {
    transform: translateY(-10px) var(--r, rotate(0));
  }
}

/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  .ds-page *,
  .ds-page *::before,
  .ds-page *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .ds-out {
    opacity: 1;
    transform: none;
  }
  .ds-stagger-out > * {
    opacity: 1;
    transform: none;
  }
}

/* ---- Focus ---- */
.ds-page :focus-visible {
  outline: 3px solid #1e5eff;
  outline-offset: 3px;
  border-radius: 6px;
}
