:root {
  color-scheme: light;
  --dd-ink: #102c25;
  --dd-green: #073d3e;
  --dd-green-2: #0d4d50;
  --dd-mint: #b1f6cf;
  --dd-paper: #f7faf8;
  --dd-surface: #ffffff;
  --dd-muted: #5d756e;
  --dd-border: rgba(22, 67, 57, 0.12);
  --dd-shadow: 0 18px 55px rgba(16, 44, 37, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--dd-paper);
  color: var(--dd-ink);
  font-family: "Hanken Grotesk", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.dd-cmp-button {
  min-height: 42px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  box-sizing: border-box;
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.dd-cmp-primary {
  background: #12484b;
  color: #ffffff;
}

.dd-cmp-primary:hover {
  background: #0c383b;
}

.dd-cmp-secondary {
  background: #e6fbef;
  color: #12484b;
}

.dd-cmp-ghost {
  border: 1px solid #cde2dc;
  background: transparent;
  color: #12484b;
}

.dd-cmp-banner,
.dd-cmp-panel {
  z-index: 2147483000;
  border: 1px solid #d8e6e2;
  border-radius: 14px;
  box-sizing: border-box;
  background: #ffffff;
  box-shadow: 0 22px 70px rgba(18, 72, 75, 0.22);
  color: #163f43;
  font-family: inherit;
}

.dd-cmp-banner {
  position: fixed;
  bottom: 16px;
  left: 50%;
  display: none;
  width: min(860px, calc(100vw - 24px));
  max-width: calc(100vw - 24px);
  padding: 18px;
  transform: translateX(-50%);
}

.dd-cmp-banner[data-open="1"],
.dd-cmp-panel[data-open="1"] {
  display: block;
}

.dd-cmp-title {
  display: block;
  margin: 0 0 8px;
  color: #12484b;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.18;
}

.dd-cmp-banner p,
.dd-cmp-panel p {
  margin: 0;
  color: #4f6464;
  font-size: 14px;
  line-height: 1.55;
}

.dd-cmp-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 16px;
}

.dd-cmp-panel {
  position: fixed;
  top: 50%;
  left: 50%;
  display: none;
  width: min(640px, calc(100vw - 24px));
  max-width: calc(100vw - 24px);
  max-height: min(720px, calc(100vh - 24px));
  overflow: auto;
  padding: 22px;
  transform: translate(-50%, -50%);
}

.dd-cmp-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 12px;
  padding: 14px;
  border: 1px solid #dbe9e5;
  border-radius: 12px;
  box-sizing: border-box;
}

.dd-cmp-option strong {
  display: block;
  margin-bottom: 4px;
  color: #12484b;
  font-size: 15px;
}

.dd-cmp-option input {
  width: 22px;
  min-width: 22px;
  height: 22px;
  accent-color: #12484b;
}

.dd-cmp-reopen {
  position: fixed;
  bottom: 14px;
  left: 14px;
  z-index: 2147482999;
  display: none;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: #12484b;
  color: #ffffff;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
}

.dd-cmp-reopen[data-open="1"] {
  display: inline-flex;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--dd-border);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
}

.site-header__inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  min-height: 74px;
  width: min(100% - clamp(28px, 6vw, 88px), 1240px);
  margin: 0 auto;
}

.site-brand,
.site-nav a,
.site-actions a,
.site-actions button,
.site-footer a {
  color: inherit;
  text-decoration: none;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: 184px;
  min-height: 44px;
  padding: 0;
}

.site-brand__logo {
  display: block;
  width: 176px;
  max-width: 100%;
  height: auto;
  aspect-ratio: 900 / 193;
  object-fit: contain;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2vw, 28px);
  min-width: 0;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0;
  color: #315149;
  font-size: 0.92rem;
  font-weight: 760;
  letter-spacing: 0;
  white-space: nowrap;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 160ms ease, transform 160ms ease;
}

.site-nav a:hover {
  color: #0b604d;
}

.site-nav a.is-active {
  color: var(--dd-green);
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

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

.site-actions__link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 12px;
  color: #315149;
  font-size: 0.92rem;
  font-weight: 760;
  white-space: nowrap;
}

.site-actions__link:hover {
  color: #0b604d;
}

.site-header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 14px;
  background: var(--dd-green);
  color: #ffffff;
  font-weight: 820;
  white-space: nowrap;
  box-shadow: 0 12px 34px rgba(7, 61, 62, 0.18);
}

.site-header__cta:hover {
  color: #ffffff;
  background: #0a4b44;
}

.site-actions .site-header__cta {
  color: #ffffff;
}

.site-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid rgba(22, 67, 57, 0.14);
  border-radius: 10px;
  background: #ffffff;
  color: var(--dd-green);
  cursor: pointer;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 820;
  line-height: 1;
  white-space: nowrap;
}

.site-menu-toggle:hover {
  border-color: rgba(7, 61, 62, 0.28);
  box-shadow: 0 10px 26px rgba(16, 44, 37, 0.08);
}

.site-menu-toggle svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

main {
  min-height: 68vh;
}

.site-footer {
  overflow: hidden;
  background: var(--dd-green);
  color: #ecfaf5;
}

.site-footer-mount {
  display: contents;
}

.site-footer__trust,
.site-footer__main {
  width: 100%;
}

.site-footer__trust {
  padding: clamp(26px, 4vw, 44px) 0;
  border-top: 1px solid rgba(177, 246, 207, 0.1);
  border-bottom: 1px solid rgba(177, 246, 207, 0.12);
  background:
    radial-gradient(circle at 12% 0%, rgba(177, 246, 207, 0.12), transparent 34%),
    linear-gradient(180deg, var(--dd-green-2) 0%, #0a3f42 100%);
}

.site-footer__main {
  padding: clamp(42px, 6vw, 74px) 0 34px;
}

.site-footer__inner {
  width: min(100% - clamp(28px, 6vw, 88px), 1180px);
  margin: 0 auto;
}

.site-footer__eyebrow {
  margin: 0 0 14px;
  color: rgba(236, 250, 245, 0.58);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.site-footer__trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.site-footer__trust-card {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 86px;
  padding: 16px;
  border: 1px solid rgba(177, 246, 207, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
  color: #f7fffb;
}

.site-footer__trust-card:hover {
  border-color: rgba(177, 246, 207, 0.32);
  background: rgba(255, 255, 255, 0.075);
}

.site-footer__trust-card--seal {
  min-height: 104px;
}

.site-footer__seal {
  display: block;
  flex: 0 0 73px;
  width: 73px;
  height: 79px;
  object-fit: contain;
}

.site-footer__mark {
  display: inline-flex;
  flex: 0 0 42px;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--dd-mint);
  color: var(--dd-green);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1;
}

.site-footer__mark svg {
  display: block;
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer__trust-card > span:last-child {
  min-width: 0;
}

.site-footer__trust-card strong {
  display: block;
  margin: 0 0 4px;
  color: #ffffff;
  font-size: 0.98rem;
  font-weight: 850;
  line-height: 1.2;
}

.site-footer__trust-card small {
  display: block;
  color: rgba(236, 250, 245, 0.68);
  font-size: 0.82rem;
  line-height: 1.35;
}

.site-footer__main-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 3fr);
  gap: clamp(30px, 4vw, 58px);
}

.site-footer__brand {
  align-self: start;
}

.site-footer__logo {
  display: inline-flex;
  flex: 0 0 auto;
  margin: 0 0 20px;
  line-height: 1;
}

.site-footer__logo img {
  display: block;
  width: clamp(220px, 18vw, 246px);
  max-width: min(246px, 72vw);
  height: auto;
  aspect-ratio: 3906 / 837;
  object-fit: contain;
}

.site-footer__brand p {
  max-width: 300px;
  margin: 0;
  color: rgba(236, 250, 245, 0.68);
  font-size: 0.98rem;
  line-height: 1.55;
}

.site-footer__nav {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 42px);
}

.site-footer__nav div {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}

.site-footer__nav strong {
  margin: 0 0 4px;
  color: var(--dd-mint);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.site-footer__nav a,
.site-footer__bottom a {
  color: rgba(236, 250, 245, 0.82);
  font-size: 0.96rem;
  line-height: 1.35;
}

.site-footer__nav a:hover,
.site-footer__bottom a:hover {
  color: var(--dd-mint);
}

.site-footer__bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 6px;
  padding-top: 24px;
  border-top: 1px solid rgba(177, 246, 207, 0.14);
  color: rgba(236, 250, 245, 0.58);
  font-size: 0.88rem;
  line-height: 1.4;
}

body.dd-stage-release-page .site-footer:not(.dd-footer-replaced) {
  display: block !important;
}

@media (max-width: 1120px) {
  .site-header__inner {
    gap: 18px;
  }

  .site-nav {
    gap: 16px;
  }

  .site-actions__link {
    display: none;
  }
}

@media (max-width: 920px) {
  .site-header__inner {
    grid-template-columns: auto 1fr;
    min-height: 68px;
    padding: 10px 0;
  }

  .site-actions {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    margin: 0 0 4px;
    padding: 10px;
    border: 1px solid rgba(22, 67, 57, 0.1);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 45px rgba(16, 44, 37, 0.1);
  }

  .site-header.is-menu-open .site-nav {
    display: grid;
  }

  .site-nav a {
    min-height: 42px;
    padding: 0 12px;
    border-radius: 10px;
    background: rgba(247, 250, 248, 0.74);
    font-size: 0.92rem;
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav a:hover {
    background: rgba(177, 246, 207, 0.28);
  }

  .site-nav a.is-active {
    background: var(--dd-green);
    color: #ffffff;
  }

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

  .site-footer__main-grid {
    grid-template-columns: 1fr;
  }

  .site-footer__nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .site-footer__trust-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .dd-cmp-banner {
    bottom: 8px;
    width: calc(100vw - 20px);
    max-width: calc(100vw - 20px);
    max-height: min(34vh, 292px);
    overflow: auto;
    padding: 12px;
    border-radius: 20px;
    box-shadow: 0 18px 42px rgba(12, 56, 59, 0.18);
  }

  .dd-cmp-title {
    margin-bottom: 5px;
    font-size: 0.98rem;
    line-height: 1.18;
  }

  .dd-cmp-banner p {
    margin-bottom: 0;
    font-size: 0.78rem;
    line-height: 1.34;
  }

  .dd-cmp-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
    margin-top: 9px;
  }

  .dd-cmp-actions .dd-cmp-button {
    width: 100%;
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.82rem;
  }

  .dd-cmp-actions .dd-cmp-primary {
    grid-column: 1 / -1;
  }

  .dd-cmp-panel {
    width: calc(100vw - 24px);
    max-height: calc(100vh - 28px);
    padding: 18px;
    border-radius: 20px;
  }

  .site-header__inner {
    width: min(100% - 28px, 1180px);
    gap: 10px 12px;
  }

  .site-brand {
    width: 148px;
    min-height: 40px;
  }

  .site-brand__logo {
    width: 136px;
  }

  .site-header__cta {
    min-height: 40px;
    padding: 0 14px;
    border-radius: 9px;
    font-size: 0.92rem;
  }

  .site-menu-toggle {
    width: 40px;
    padding: 0;
  }

  .site-menu-toggle span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
  }

  .site-nav {
    grid-template-columns: 1fr;
  }

  .site-nav a {
    min-height: 44px;
    font-size: 0.95rem;
  }

  .site-footer__inner {
    width: min(100% - 28px, 1180px);
  }

  .site-footer__main {
    padding: 36px 0 28px;
  }

  .site-footer__nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 18px;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}
