:root {
  --ds-color-bg: #f2f5f7;
  --ds-color-surface: #ffffff;
  --ds-color-text: #0f1720;
  --ds-color-text-secondary: #3a4654;
  --ds-color-muted: #667484;
  --ds-color-border: #d5dde6;
  --ds-color-primary: #0d9488;
  --ds-color-primary-hover: #0f766e;
  --ds-color-primary-soft: #e6fffa;
  --ds-color-success: #059669;
  --ds-color-ink: #07111c;
  --ds-color-ink-soft: #122033;
  --ds-radius-md: 10px;
  --ds-radius-lg: 14px;
  --ds-radius-xl: 20px;
  --ds-shadow-sm: 0 1px 2px rgba(15, 23, 32, 0.05);
  --ds-shadow-md: 0 22px 50px rgba(15, 23, 32, 0.14);
  --ds-font: "DM Sans", ui-sans-serif, system-ui, sans-serif;
  --ds-display: "Outfit", "DM Sans", ui-sans-serif, system-ui, sans-serif;
  --ds-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

.ds-container {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.ds-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 50px;
  padding: 0 22px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 200ms var(--ds-ease), background 200ms var(--ds-ease), box-shadow 200ms var(--ds-ease);
}

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

.ds-btn--primary {
  background: var(--ds-color-primary);
  color: #fff;
}

.ds-btn--glow {
  box-shadow: 0 12px 28px rgba(13, 148, 136, 0.35);
}

.ds-btn--primary:hover {
  background: var(--ds-color-primary-hover);
}

.ds-btn--secondary {
  background: #fff;
  border-color: var(--ds-color-border);
  color: var(--ds-color-text);
}

.ds-btn--ghost {
  background: transparent;
  color: var(--ds-color-text-secondary);
}

.ds-btn--ghost-light {
  background: transparent;
  color: rgba(255, 255, 255, 0.88);
  border-color: rgba(255, 255, 255, 0.28);
}

.ds-btn--ghost-light:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.ds-text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--ds-color-primary);
  font-weight: 700;
  font-size: 14px;
}

/* Header — always readable (never white text on light bleed) */
.ds-site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--ds-color-border);
  transition: border-color 200ms var(--ds-ease), background 200ms var(--ds-ease), color 200ms var(--ds-ease);
  color: var(--ds-color-text);
}

.home .ds-site-header:not(.is-scrolled) {
  /* Overlays dark hero — frosted ink so nav stays visible */
  background: rgba(7, 17, 28, 0.58);
  border-bottom-color: transparent;
  color: #fff;
}

.home .ds-site-header.is-scrolled {
  border-bottom-color: rgba(255, 255, 255, 0.08);
  background: rgba(7, 17, 28, 0.94);
  color: #fff;
}

.home .ds-site-header:not(.is-scrolled) .ds-nav a,
.home .ds-site-header.is-scrolled .ds-nav a {
  color: rgba(255, 255, 255, 0.88);
}

.home .ds-site-header:not(.is-scrolled) .ds-nav a:hover,
.home .ds-site-header.is-scrolled .ds-nav a:hover {
  color: #fff;
}

.home .ds-site-header:not(.is-scrolled) .ds-btn--ghost,
.home .ds-site-header.is-scrolled .ds-btn--ghost {
  color: rgba(255, 255, 255, 0.9);
}

.home .ds-site-header:not(.is-scrolled) .ds-brand,
.home .ds-site-header.is-scrolled .ds-brand {
  color: #fff;
}

/* Inner pages: dark nav links on light header */
.ds-site-header .ds-nav a {
  color: var(--ds-color-text-secondary);
}

.ds-site-header .ds-nav a:hover {
  color: var(--ds-color-text);
}

.ds-site-header .ds-btn--ghost {
  color: var(--ds-color-text-secondary);
}

.ds-site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.ds-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ds-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.04em;
}

.ds-brand__wordmark {
  height: 32px;
  width: auto;
  display: block;
}

.ds-brand__logo,
.ds-brand__mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: block;
  flex-shrink: 0;
}

.ds-brand__mark {
  background: var(--ds-color-primary);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(13, 148, 136, 0.35);
}

.ds-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.ds-nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--ds-color-text-secondary);
}

.ds-nav a:hover {
  color: var(--ds-color-text);
}

.ds-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ds-nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--ds-color-border);
  border-radius: 12px;
  background: #fff;
}

@media (max-width: 860px) {
  .ds-nav,
  .ds-header-actions .ds-btn--ghost {
    display: none;
  }

  .ds-nav-toggle {
    display: grid;
    place-items: center;
  }

  .home .ds-site-header.is-open .ds-nav a {
    color: var(--ds-color-text);
  }

  .ds-site-header.is-open .ds-nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    left: 20px;
    right: 20px;
    top: 78px;
    padding: 16px;
    background: #fff;
    border: 1px solid var(--ds-color-border);
    border-radius: var(--ds-radius-lg);
    box-shadow: var(--ds-shadow-md);
  }
}

/* Full-bleed marketing hero — photo + brand composition */
.ds-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  color: #fff;
  background: var(--ds-color-ink);
}

.home .ds-hero {
  margin-top: -72px;
}

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

.ds-hero__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  animation: ds-hero- ken 18s ease-in-out infinite alternate;
}

.ds-hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 17, 28, 0.92) 0%, rgba(7, 17, 28, 0.72) 42%, rgba(7, 17, 28, 0.35) 100%),
    linear-gradient(180deg, rgba(7, 17, 28, 0.55) 0%, rgba(7, 17, 28, 0.2) 35%, rgba(7, 17, 28, 0.82) 100%);
}

.ds-hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.ds-hero__content {
  position: relative;
  z-index: 2;
  width: min(720px, 100%);
  padding: 120px 0 88px;
  animation: ds-rise 800ms var(--ds-ease) both;
}

.home .ds-hero__content {
  padding-top: 148px;
}

.ds-hero__wordmark {
  width: min(340px, 72vw);
  height: auto;
  margin-bottom: 22px;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.35));
}

.ds-hero__logo {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  margin-bottom: 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

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

.ds-hero__brand {
  margin: 0;
  font-family: var(--ds-display);
  font-size: clamp(44px, 7.5vw, 72px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #fff;
}

.ds-hero__headline {
  margin: 22px 0 14px;
  font-family: var(--ds-display);
  font-size: clamp(24px, 3.6vw, 36px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  max-width: 18ch;
  color: rgba(255, 255, 255, 0.96);
}

.ds-hero__sub {
  margin: 0 0 32px;
  max-width: 34em;
  font-size: 18px;
  line-height: 1.5;
  color: rgba(226, 232, 240, 0.82);
}

.ds-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* Pitch band */
.ds-pitch {
  padding: 88px 0;
  background: #fff;
  border-bottom: 1px solid var(--ds-color-border);
}

.ds-pitch__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.ds-pitch__inner {
  max-width: 520px;
}

.ds-pitch__title {
  margin: 0 0 16px;
  font-family: var(--ds-display);
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.045em;
  line-height: 1.1;
}

.ds-pitch__copy {
  margin: 0;
  font-size: 18px;
  color: var(--ds-color-text-secondary);
  line-height: 1.6;
}

.ds-pitch__media {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--ds-shadow-md);
  border: 1px solid var(--ds-color-border);
}

.ds-pitch__media img {
  width: 100%;
  height: auto;
  display: block;
}

@keyframes ds-hero-ken {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.08) translate3d(-1.5%, -1%, 0);
  }
}

@media (max-width: 900px) {
  .ds-pitch__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* Funnel steps */
.ds-funnel-steps {
  list-style: none;
  margin: 48px 0 0;
  padding: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--ds-color-border);
}

.ds-funnel-step {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--ds-color-border);
  align-items: start;
}

.ds-funnel-step__num {
  font-family: var(--ds-display);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--ds-color-primary);
  line-height: 1;
  padding-top: 4px;
}

.ds-funnel-step h3 {
  margin: 0 0 8px;
  font-family: var(--ds-display);
  font-size: 24px;
  letter-spacing: -0.03em;
}

.ds-funnel-step p {
  margin: 0;
  max-width: 42em;
  color: var(--ds-color-text-secondary);
  font-size: 16px;
}

.ds-funnel-cta {
  margin: 40px 0 0;
}

/* Capabilities on ink */
.ds-section--ink {
  background:
    radial-gradient(700px 400px at 90% 0%, rgba(13, 148, 136, 0.2), transparent 55%),
    var(--ds-color-ink);
  color: #fff;
}

.ds-section__eyebrow--light {
  color: #5eead4;
}

.ds-section__title--light {
  color: #fff;
  max-width: 18ch;
}

.ds-capability-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.ds-capability {
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.ds-capability h3 {
  margin: 0 0 10px;
  font-family: var(--ds-display);
  font-size: 22px;
  letter-spacing: -0.03em;
}

.ds-capability p {
  margin: 0;
  color: rgba(226, 232, 240, 0.72);
  font-size: 15px;
  max-width: 36em;
}

@media (max-width: 720px) {
  .ds-funnel-step {
    grid-template-columns: 56px 1fr;
    gap: 16px;
  }

  .ds-capability-list {
    grid-template-columns: 1fr;
  }

  .ds-hero__content {
    padding: 100px 0 72px;
  }
}

/* Legacy stage helpers still used elsewhere */
.ds-hero__stage-chart {
  margin-top: 12px;
  height: 160px;
  border-radius: 16px;
  border: 1px solid rgba(217, 227, 239, 0.9);
  background:
    linear-gradient(180deg, rgba(13, 148, 136, 0.14), transparent 72%),
    #fff;
  position: relative;
  overflow: hidden;
}

.ds-hero__stage-chart--tall {
  height: 240px;
  margin: 0;
}

/* Outcomes (unused on new home — keep safe) */
.ds-outcomes {
  display: none;
}

/* Sections */
.ds-section {
  padding: 96px 0;
}

.ds-section--surface {
  background: linear-gradient(180deg, #ffffff, #f7fafb);
  border-block: 1px solid rgba(213, 221, 230, 0.9);
}

.ds-section--cta {
  padding-bottom: 110px;
}

.ds-section__eyebrow {
  margin: 0 0 12px;
  color: var(--ds-color-primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ds-section__title {
  margin: 0 0 14px;
  font-family: var(--ds-display);
  font-size: clamp(30px, 4.5vw, 46px);
  letter-spacing: -0.045em;
  line-height: 1.08;
  max-width: 16ch;
}

.ds-section__lead {
  margin: 0;
  max-width: 540px;
  color: var(--ds-color-text-secondary);
  font-size: 17px;
}

.ds-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 42px;
  counter-reset: step;
}

.ds-step {
  padding: 24px;
  border: 1px solid var(--ds-color-border);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--ds-shadow-sm);
  counter-increment: step;
  transition: transform 220ms var(--ds-ease), box-shadow 220ms var(--ds-ease);
}

.ds-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--ds-shadow-md);
}

.ds-step::before {
  content: counter(step);
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: var(--ds-color-primary-soft);
  color: var(--ds-color-primary);
  font-size: 13px;
  font-weight: 800;
}

.ds-step h3 {
  margin: 0 0 8px;
  font-family: var(--ds-display);
  font-size: 18px;
  letter-spacing: -0.03em;
}

.ds-step p {
  margin: 0;
  color: var(--ds-color-muted);
  font-size: 14px;
}

@media (max-width: 900px) {
  .ds-steps {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .ds-steps {
    grid-template-columns: 1fr;
  }
}

.ds-feature {
  display: grid;
  gap: 36px;
  align-items: center;
  margin-top: 52px;
}

@media (min-width: 900px) {
  .ds-feature {
    grid-template-columns: 1fr 1fr;
  }

  .ds-feature--flip .ds-feature__copy {
    order: 2;
  }
}

.ds-feature__panel {
  min-height: 300px;
  border-radius: 28px;
  border: 1px solid var(--ds-color-border);
  background:
    radial-gradient(500px 220px at 20% 0%, rgba(11, 107, 203, 0.14), transparent 60%),
    #fff;
  box-shadow: var(--ds-shadow-sm);
  padding: 28px;
}

.ds-feature__panel--profit {
  display: grid;
  gap: 12px;
  align-content: center;
}

.ds-profit-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid var(--ds-color-border);
  background: #f8fbff;
}

.ds-profit-card span {
  color: var(--ds-color-muted);
  font-size: 13px;
  font-weight: 600;
}

.ds-profit-card strong {
  font-family: var(--ds-display);
  font-size: 22px;
  letter-spacing: -0.03em;
}

.ds-profit-card--win {
  background: linear-gradient(180deg, #ecfdf5, #f0fdf4);
  border-color: #a7f3d0;
}

.ds-profit-card--win strong {
  color: var(--ds-color-success);
}

.ds-feature h3 {
  margin: 0 0 12px;
  font-family: var(--ds-display);
  font-size: clamp(26px, 3vw, 34px);
  letter-spacing: -0.04em;
}

.ds-feature p {
  margin: 0;
  color: var(--ds-color-text-secondary);
  font-size: 16px;
}

.ds-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 22px;
}

.ds-flow__node {
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--ds-color-primary-soft);
  color: var(--ds-color-primary);
  font-size: 13px;
  font-weight: 700;
}

.ds-flow__arrow {
  color: var(--ds-color-muted);
}

.ds-pricing {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.ds-pricing-toggle {
  display: inline-flex;
  gap: 4px;
  margin-top: 28px;
  padding: 4px;
  border-radius: 14px;
  background: #e8eef2;
}

.ds-pricing-toggle button {
  appearance: none;
  border: 0;
  background: transparent;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 11px;
  font-family: var(--ds-font);
  font-size: 14px;
  font-weight: 700;
  color: var(--ds-color-text-secondary);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ds-pricing-toggle button.is-active {
  background: #fff;
  color: var(--ds-color-primary);
  box-shadow: 0 1px 2px rgba(15, 23, 32, 0.08);
}

.ds-pricing-toggle__save {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(13, 148, 136, 0.12);
  color: #0f766e;
}

.ds-pricing-note {
  margin: 18px 0 0;
  text-align: center;
  color: var(--ds-color-muted);
  font-size: 13px;
}

.ds-price-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--ds-color-border);
  border-radius: 24px;
  padding: 28px 24px;
  box-shadow: var(--ds-shadow-sm);
  transition: transform 220ms var(--ds-ease);
}

.ds-price-card:hover {
  transform: translateY(-4px);
}

.ds-price-card.is-featured {
  border-color: transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(160deg, #0d9488, #2dd4bf) border-box;
  border: 2px solid transparent;
  box-shadow: 0 18px 40px rgba(13, 148, 136, 0.16);
  transform: translateY(-8px);
}

.ds-price-card__badge {
  position: absolute;
  top: -12px;
  left: 24px;
  margin: 0;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--ds-color-primary);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ds-price-card__audience {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ds-color-muted);
}

.ds-price-card__tagline {
  margin: 0;
  color: var(--ds-color-text-secondary);
  font-size: 14px;
}

.ds-price-card__billed {
  margin: 0 0 4px;
  font-size: 12px;
  color: var(--ds-color-muted);
}

.ds-price-card h3 {
  margin: 0 0 6px;
  font-family: var(--ds-display);
  font-size: 20px;
}

.ds-price-card .ds-amount {
  margin: 14px 0 6px;
  font-family: var(--ds-display);
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.ds-price-card .ds-amount span {
  font-size: 14px;
  font-weight: 600;
  color: var(--ds-color-muted);
}

.ds-price-card ul {
  margin: 20px 0 24px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.ds-price-card li {
  font-size: 14px;
  color: var(--ds-color-text-secondary);
}

.ds-price-card li::before {
  content: "✓ ";
  color: var(--ds-color-success);
  font-weight: 800;
}

@media (max-width: 860px) {
  .ds-pricing {
    grid-template-columns: 1fr;
  }

  .ds-price-card.is-featured {
    transform: none;
  }
}

.ds-faq-wrap {
  display: grid;
  gap: 28px;
}

@media (min-width: 900px) {
  .ds-faq-wrap {
    grid-template-columns: 0.8fr 1.2fr;
    align-items: start;
  }
}

.ds-faq {
  display: grid;
  gap: 12px;
}

.ds-faq details {
  background: #fff;
  border: 1px solid var(--ds-color-border);
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: var(--ds-shadow-sm);
}

.ds-faq summary {
  cursor: pointer;
  font-weight: 700;
  font-family: var(--ds-display);
  letter-spacing: -0.02em;
}

.ds-faq p {
  margin: 10px 0 0;
  color: var(--ds-color-text-secondary);
  font-size: 14px;
}

.ds-final-cta {
  text-align: center;
  padding: 72px 28px;
  border-radius: 24px;
  background:
    radial-gradient(700px 280px at 50% 0%, rgba(45, 212, 191, 0.18), transparent 60%),
    linear-gradient(165deg, #07111c, #122033 60%, #0a1624);
  color: #fff;
  box-shadow: var(--ds-shadow-md);
}

.ds-final-cta__wordmark {
  width: min(240px, 70vw);
  height: auto;
  margin: 0 auto 20px;
  display: block;
}

.ds-final-cta__logo {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  margin: 0 auto 16px;
  display: block;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.ds-final-cta__brand {
  margin: 0 0 14px;
  font-family: var(--ds-display);
  font-size: clamp(36px, 6vw, 52px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #fff;
}

.ds-final-cta__eyebrow {
  margin: 0 0 10px;
  color: #5eead4;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ds-final-cta h2 {
  margin: 0 0 12px;
  font-family: var(--ds-display);
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.045em;
}

.ds-final-cta p {
  margin: 0 0 24px;
  color: #cbd5e1;
}

.ds-final-cta__links {
  margin-top: 16px !important;
  font-size: 13px;
}

.ds-final-cta__links a {
  color: #5eead4;
}

.ds-site-footer {
  padding: 56px 0 28px;
  background: #fff;
  border-top: 1px solid var(--ds-color-border);
}

.ds-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 24px;
}

.ds-footer-grid h4 {
  margin: 0 0 12px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ds-color-muted);
}

.ds-footer-grid a {
  display: block;
  margin-bottom: 8px;
  color: var(--ds-color-text-secondary);
  font-size: 14px;
}

.ds-footer-bottom {
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid var(--ds-color-border);
  color: var(--ds-color-muted);
  font-size: 13px;
}

@media (max-width: 800px) {
  .ds-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

body.login {
  background: var(--ds-color-bg) !important;
  font-family: var(--ds-font) !important;
}

body.login #login h1 a {
  background-image: none !important;
  text-indent: 0 !important;
  width: auto !important;
  height: auto !important;
  font-family: var(--ds-display) !important;
  font-size: 28px !important;
  font-weight: 700 !important;
  color: var(--ds-color-text) !important;
  letter-spacing: -0.04em;
}

body.login form {
  border: 1px solid var(--ds-color-border) !important;
  border-radius: 16px !important;
  box-shadow: var(--ds-shadow-sm) !important;
}

body.login .button-primary {
  background: var(--ds-color-primary) !important;
  border-color: var(--ds-color-primary) !important;
  border-radius: 999px !important;
  text-shadow: none !important;
  box-shadow: none !important;
}

.ds-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms var(--ds-ease), transform 650ms var(--ds-ease);
}

.ds-reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes ds-rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes ds-float {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-20px, -24px, 0);
  }
}

@keyframes ds-mesh-shift {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.05);
  }
}

@keyframes ds-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(15, 159, 110, 0.5);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(15, 159, 110, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(15, 159, 110, 0);
  }
}

/* Help center */
.ds-help {
  padding: 48px 0 80px;
}

.ds-help__eyebrow {
  margin: 0 0 10px;
  color: var(--ds-color-primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ds-help__lead {
  margin: 0 0 28px;
  max-width: 54ch;
  color: var(--ds-color-text-secondary);
  font-size: 17px;
  line-height: 1.55;
}

.ds-help__layout {
  display: grid;
  gap: 32px;
  align-items: start;
}

@media (min-width: 960px) {
  .ds-help__layout {
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 48px;
  }
}

.ds-help__nav {
  position: sticky;
  top: 88px;
  padding: 18px;
  border: 1px solid var(--ds-color-border);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--ds-shadow-sm);
}

.ds-help__back {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--ds-color-primary);
  font-size: 13px;
  font-weight: 700;
}

.ds-help__nav-title {
  margin: 0 0 10px;
  color: var(--ds-color-muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ds-help__nav-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
}

.ds-help__nav-list a {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 10px;
  border-radius: 12px;
  color: var(--ds-color-text-secondary);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}

.ds-help__nav-list a span {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border-radius: 8px;
  background: var(--ds-color-primary-soft);
  color: var(--ds-color-primary);
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 800;
}

.ds-help__nav-list a.is-active,
.ds-help__nav-list a:hover {
  background: var(--ds-color-primary-soft);
  color: var(--ds-color-text);
}

.ds-help__article h1 {
  margin: 0 0 12px;
  font-family: var(--ds-display);
  font-size: clamp(32px, 5vw, 44px);
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.ds-help__content {
  color: var(--ds-color-text-secondary);
  font-size: 16px;
  line-height: 1.65;
}

.ds-help__content h2 {
  margin: 36px 0 12px;
  font-family: var(--ds-display);
  font-size: 24px;
  color: var(--ds-color-text);
  letter-spacing: -0.03em;
}

.ds-help__content h3 {
  margin: 28px 0 8px;
  font-family: var(--ds-display);
  font-size: 18px;
  color: var(--ds-color-text);
}

.ds-help__content ol,
.ds-help__content ul {
  margin: 0 0 18px;
  padding-left: 1.2em;
}

.ds-help__content li {
  margin-bottom: 8px;
}

.ds-help__content p {
  margin: 0 0 14px;
}

.ds-help-shot {
  margin: 20px 0 28px;
  border: 1px solid var(--ds-color-border);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--ds-shadow-md);
}

.ds-help-shot img {
  width: 100%;
  height: auto;
  display: block;
}

.ds-help-shot figcaption {
  padding: 12px 16px;
  border-top: 1px solid var(--ds-color-border);
  color: var(--ds-color-muted);
  font-size: 13px;
  font-weight: 600;
}

.ds-help-callout {
  margin: 24px 0;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #bfdbfe;
  background: #eff6ff;
  color: var(--ds-color-text);
}

.ds-help-callout strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ds-color-primary);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ds-help__cta {
  margin-top: 40px;
  padding: 24px;
  border-radius: 20px;
  background:
    radial-gradient(420px 160px at 90% 0%, rgba(56, 189, 248, 0.22), transparent 60%),
    linear-gradient(145deg, #07111f, #0c2744);
  color: #fff;
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.ds-help__cta h2 {
  margin: 0 0 6px;
  font-family: var(--ds-display);
  font-size: 22px;
  letter-spacing: -0.03em;
}

.ds-help__cta p {
  margin: 0;
  color: #cbd5e1;
  max-width: 46ch;
}

.ds-help__cta--hub {
  margin-top: 48px;
}

.ds-help__next {
  margin: 22px 0 0;
  font-weight: 600;
  color: var(--ds-color-text-secondary);
}

.ds-help__next a {
  color: var(--ds-color-primary);
  font-weight: 700;
}

.ds-help--hub {
  padding: 36px 0 64px;
}

.ds-help-hub__header {
  max-width: 560px;
  margin-bottom: 20px;
}

.ds-help-hub__header h1 {
  margin: 0 0 8px;
  font-family: var(--ds-display);
  font-size: clamp(28px, 4vw, 36px);
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.ds-help--hub .ds-help__lead {
  margin: 0;
  font-size: 15px;
}

.ds-help-hub__grid {
  display: grid;
  gap: 10px;
  max-width: 820px;
}

.ds-help-card {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  align-items: stretch;
  border: 1px solid var(--ds-color-border);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: none;
  transition: border-color 160ms var(--ds-ease), background 160ms var(--ds-ease);
}

.ds-help-card:hover {
  border-color: #b6d0ea;
  background: #f8fbfe;
  transform: none;
  box-shadow: none;
}

.ds-help-card__media {
  margin: 0;
  background: #e8f2fc;
  min-height: 100%;
}

.ds-help-card__media img {
  width: 100%;
  height: 100%;
  min-height: 84px;
  object-fit: cover;
  object-position: top left;
}

.ds-help-card__body {
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
}

.ds-help-card__step {
  display: inline-block;
  margin-bottom: 0;
  color: var(--ds-color-primary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ds-help-card__body h2 {
  margin: 0;
  font-family: var(--ds-display);
  font-size: 16px;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.ds-help-card__body p {
  margin: 0;
  color: var(--ds-color-text-secondary);
  font-size: 13px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ds-help-card__link {
  margin-top: 4px;
  color: var(--ds-color-primary);
  font-size: 12px;
  font-weight: 700;
}

@media (max-width: 560px) {
  .ds-help-card {
    grid-template-columns: 1fr;
  }

  .ds-help-card__media {
    max-height: 72px;
  }

  .ds-help-card__media img {
    min-height: 72px;
    max-height: 72px;
  }
}

.ds-help__cta--hub {
  margin-top: 24px;
  padding: 18px 20px;
  max-width: 820px;
}

.ds-help__cta--hub h2 {
  font-size: 18px;
}

.ds-step__help {
  display: inline-flex;
  margin-top: 12px;
  color: var(--ds-color-primary);
  font-size: 13px;
  font-weight: 700;
}

/* Generic content pages */
.ds-page {
  padding: 48px 0 72px;
}

.ds-page__card {
  max-width: 760px;
  margin: 0 auto;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--ds-color-border);
  border-radius: 20px;
  box-shadow: var(--ds-shadow-sm);
}

.ds-page__card .entry-content {
  color: var(--ds-color-text-secondary);
}

/* Registration */
.ds-register {
  padding: 48px 0 72px;
}

.ds-register__wrap {
  max-width: 520px;
}

.ds-register__card {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--ds-color-border);
  border-radius: 20px;
  box-shadow: var(--ds-shadow-sm);
}

.ds-register__card h1 {
  margin: 0 0 8px;
  font-family: var(--ds-display);
  font-size: clamp(28px, 4vw, 36px);
  letter-spacing: -0.04em;
}

.ds-register__lead {
  margin: 0 0 22px;
  color: var(--ds-color-text-secondary);
  font-size: 15px;
}

.ds-register__error {
  margin: 0 0 16px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
  font-size: 14px;
  font-weight: 600;
}

.ds-register__form {
  display: grid;
  gap: 14px;
}

.ds-register__form label {
  display: grid;
  gap: 6px;
}

.ds-register__form label span {
  font-size: 13px;
  font-weight: 700;
  color: var(--ds-color-text);
}

.ds-register__form input,
.ds-register__form select {
  height: 46px;
  padding: 0 12px;
  border: 1px solid var(--ds-color-border);
  border-radius: 10px;
  font: inherit;
  background: #fff;
}

.ds-register__form input:focus,
.ds-register__form select:focus {
  outline: 2px solid rgba(11, 107, 203, 0.25);
  border-color: var(--ds-color-primary);
}

.ds-register__slug {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: center;
}

.ds-register__slug em {
  font-style: normal;
  color: var(--ds-color-muted);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.ds-register__foot {
  margin: 18px 0 0;
  text-align: center;
  color: var(--ds-color-muted);
  font-size: 14px;
}

.ds-register__foot a {
  color: var(--ds-color-primary);
  font-weight: 700;
}

/* Coming Soon splash */
.ds-coming-soon-body {
  margin: 0;
  background: var(--ds-color-ink);
  color: #fff;
  min-height: 100vh;
  min-height: 100dvh;
}

.ds-coming-soon-body #wpadminbar {
  display: none;
}

.ds-coming-soon {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  isolation: isolate;
  display: grid;
  place-items: center;
  padding: 48px 24px;
}

.ds-coming-soon__visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.ds-coming-soon__mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(0, 181, 173, 0.28), transparent 55%),
    radial-gradient(ellipse 55% 45% at 15% 80%, rgba(20, 184, 166, 0.16), transparent 50%),
    linear-gradient(165deg, #050b12 0%, #0a1624 48%, #07111c 100%);
  animation: ds-coming-mesh 16s ease-in-out infinite alternate;
}

.ds-coming-soon__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
  opacity: 0.65;
}

.ds-coming-soon__orb--a {
  width: min(52vw, 480px);
  height: min(52vw, 480px);
  top: -14%;
  right: -10%;
  background: rgba(0, 191, 165, 0.32);
  animation: ds-float 11s ease-in-out infinite alternate;
}

.ds-coming-soon__orb--b {
  width: min(40vw, 360px);
  height: min(40vw, 360px);
  bottom: -12%;
  left: -8%;
  background: rgba(14, 165, 233, 0.18);
  animation: ds-float 13s ease-in-out infinite alternate-reverse;
}

.ds-coming-soon__grain {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.ds-coming-soon__content {
  position: relative;
  z-index: 2;
  width: min(640px, 100%);
  text-align: center;
  animation: ds-rise 900ms var(--ds-ease) both;
}

.ds-coming-soon__mark {
  width: 52px;
  height: auto;
  margin: 0 auto 22px;
  display: block;
  filter: drop-shadow(0 12px 28px rgba(0, 191, 165, 0.35));
  animation: ds-coming-pulse 3.6s ease-in-out infinite;
}

.ds-coming-soon__wordmark {
  width: min(300px, 78vw);
  height: auto;
  margin: 0 auto 28px;
  display: block;
  filter: drop-shadow(0 16px 36px rgba(0, 0, 0, 0.4));
}

.ds-coming-soon__eyebrow {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #5eead4;
}

.ds-coming-soon__headline {
  margin: 0 0 16px;
  font-family: var(--ds-display);
  font-size: clamp(32px, 6vw, 52px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.1;
  color: #fff;
}

.ds-coming-soon__sub {
  margin: 0 auto 36px;
  max-width: 34em;
  font-size: 17px;
  line-height: 1.55;
  color: rgba(226, 232, 240, 0.78);
}

.ds-coming-soon__foot {
  margin: 0;
  font-size: 14px;
}

.ds-coming-soon__foot a {
  color: rgba(255, 255, 255, 0.55);
  font-weight: 600;
  transition: color 200ms var(--ds-ease);
}

.ds-coming-soon__foot a:hover {
  color: #5eead4;
}

@keyframes ds-coming-mesh {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.06);
  }
}

@keyframes ds-coming-pulse {
  0%,
  100% {
    transform: translateY(0);
    filter: drop-shadow(0 12px 28px rgba(0, 191, 165, 0.3));
  }
  50% {
    transform: translateY(-6px);
    filter: drop-shadow(0 18px 36px rgba(0, 191, 165, 0.48));
  }
}

