:root {
    --dz-green: #1e5631;
    --dz-green-bright: #2d7a47;
    --dz-bg: #0a120e;
    --dz-bg-elevated: #0f1a14;
    --dz-ink: #f8fafc;
    --dz-muted: rgba(248, 250, 252, 0.72);
    --dz-muted-2: rgba(248, 250, 252, 0.5);
    --dz-surface: #ffffff;
    --dz-surface-muted: #f1f5f9;
    --dz-blanc-b: #fafaf9;
    --dz-radius: 1.25rem;
    --dz-radius-lg: 1.75rem;
    --dz-max: 72rem;
    --dz-space: clamp(1.25rem, 4vw, 2.5rem);
}

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

html {
    scroll-behavior: smooth;
}

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

body.dz-landing {
    margin: 0;
    font-family: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    font-size: 1.0625rem;
    line-height: 1.55;
    color: var(--dz-ink);
    background: var(--dz-bg);
    min-height: 100dvh;
    overflow-x: clip;
}

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

.dz-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-color: var(--dz-bg);
    background-image: url("/assets/images/hex-pattern.svg");
    background-size: 96px 96px;
    background-repeat: repeat;
}

.dz-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 90% 60% at 50% 0%, rgba(30, 86, 49, 0.35), transparent 55%),
        radial-gradient(ellipse 80% 50% at 50% 100%, rgba(0, 0, 0, 0.45), transparent 50%);
}

.dz-i18n-banner {
    position: relative;
    z-index: 3;
    margin: 0;
    padding: 0.65rem var(--dz-space);
    text-align: center;
    font-size: 0.875rem;
    color: var(--dz-ink);
    background: rgba(30, 86, 49, 0.55);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dz-lang {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.12em;
}

.dz-lang__sep {
    width: 1px;
    height: 0.75rem;
    background: rgba(255, 255, 255, 0.2);
}

#main {
    position: relative;
    z-index: 1;
}

.dz-kicker {
    margin: 0 0 0.75rem;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--dz-green-bright);
}

.dz-kicker--on-dark {
    color: #6ee7a8;
}

.dz-h2 {
    margin: 0 0 1rem;
    font-size: clamp(1.75rem, 4vw, 2.35rem);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.dz-prose {
    margin: 0;
    color: var(--dz-muted);
    white-space: pre-line;
}

.dz-prose--tight {
    color: #334155;
}

.dz-list {
    margin: 0;
    padding-left: 1.15rem;
    color: var(--dz-muted);
}

.dz-list li {
    margin-bottom: 0.65rem;
}

.dz-list li::marker {
    color: var(--dz-green-bright);
}

/* Hero — full-bleed putter (Figma: 812px height, padding 50/200/24, gap 50, bottom radius 16) */
.dz-hero {
    position: relative;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    height: min(812px, 92svh);
    overflow: hidden;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
}

.dz-hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
    margin: 0;
    border: none;
    border-radius: inherit;
    background: #0a0f0c;
}

.dz-hero__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.dz-hero__scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
            180deg,
            rgba(5, 10, 8, 0.42) 0%,
            rgba(5, 10, 8, 0.08) 42%,
            rgba(5, 10, 8, 0.32) 100%
        ),
        linear-gradient(90deg, rgba(5, 10, 8, 0.38) 0%, transparent 52%);
}

.dz-hero__overlay {
    position: relative;
    z-index: 2;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 50px;
    min-height: 100%;
    height: 100%;
    width: 100%;
    max-width: 90rem;
    margin: 0 auto;
    padding: 50px clamp(1.25rem, 11vw, 12.5rem) 24px;
}

.dz-hero__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.dz-hero__brand {
    display: block;
    line-height: 0;
    text-decoration: none;
}

.dz-hero__logo {
    display: block;
    height: 30px;
    width: auto;
}

.dz-lang--hero a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    padding: 0.35rem 0.25rem;
}

.dz-lang--hero a:hover,
.dz-lang--hero a:focus-visible {
    color: rgba(255, 255, 255, 0.85);
}

.dz-lang--hero a.is-active {
    color: #ffffff;
    opacity: 1;
}

.dz-lang--hero .dz-lang__sep {
    background: rgba(255, 255, 255, 0.25);
}

.dz-hero__body {
    max-width: 40rem;
}

.dz-hero__body .dz-hero__kicker {
    margin: 0 0 0.65rem;
    font-size: 14px;
    line-height: 1.35;
    letter-spacing: 0.12em;
    color: #68a734;
}

.dz-hero__title {
    margin: 0 0 1rem;
    font-size: clamp(1.875rem, 5vw, 2.25rem);
    font-weight: 300;
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: #ffffff;
}

.dz-hero__title strong {
    font-weight: 500;
}

.dz-hero__line {
    display: inline-block;
}

.dz-hero__subtitle {
    margin: 0 0 1.5rem;
    color: rgba(255, 255, 255, 0.88);
    font-size: 16px;
    line-height: 1.5;
    max-width: min(100%, 38ch);
    white-space: pre-line;
    text-wrap: balance;
}

.dz-hero__cta {
    font-size: 16px;
    line-height: 1.25;
}

.dz-hero__note {
    margin: 0.75rem 0 0;
    font-size: 14px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.55);
}

/* Placeholders */
.dz-ph {
    width: 100%;
    background: linear-gradient(145deg, rgba(30, 86, 49, 0.35), rgba(0, 0, 0, 0.5));
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.dz-ph--hero {
    min-height: 100%;
    height: 100%;
}

.dz-ph--tall {
    aspect-ratio: 4 / 5;
    min-height: 18rem;
    filter: grayscale(1) contrast(1.05);
    opacity: 0.85;
}

.dz-ph--strip {
    width: 100%;
    max-width: 6rem;
    margin: 0 auto;
    aspect-ratio: 1 / 2.2;
    border-radius: 0.5rem;
}

.dz-ph--phone {
    aspect-ratio: 390 / 844;
    border-radius: 1.75rem;
    max-height: 22rem;
    margin-inline: auto;
}

/* Buttons */
.dz-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 1.5rem;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

@media (prefers-reduced-motion: reduce) {
    .dz-btn {
        transition: none;
    }
}

.dz-btn:focus-visible {
    outline: 2px solid #6ee7a8;
    outline-offset: 3px;
}

.dz-btn--primary {
    background: var(--dz-green);
    color: #fff;
    box-shadow: 0 4px 20px rgba(30, 86, 49, 0.35);
}

.dz-btn--primary:hover {
    background: var(--dz-green-bright);
    transform: translateY(-1px);
}

.dz-btn--block {
    width: 100%;
}

/* Split sections */
.dz-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.5rem, 4vw, 2.5rem);
    align-items: center;
    max-width: var(--dz-max);
    margin: 0 auto;
    padding: clamp(2.5rem, 6vw, 4.5rem) var(--dz-space);
}

@media (min-width: 900px) {
    .dz-split:not(.dz-split--stacked) {
        grid-template-columns: 1fr 1fr;
    }
}

/* Text block above image (The feeling) — approach stays two-column */
.dz-split--stacked {
    grid-template-columns: 1fr;
}

.dz-split--stacked .dz-split__text {
    order: 0;
    width: 100%;
    max-width: 100%;
}

.dz-split--stacked .dz-split__media {
    order: 0;
    width: 100%;
}

.dz-split__media img,
.dz-split__media .dz-ph {
    display: block;
    width: 100%;
    border-radius: var(--dz-radius-lg);
}

.dz-split__media img {
    height: auto;
    object-fit: cover;
    max-height: min(70vh, 38rem);
}

/* “The feeling” — intro (narrow headline) + row: image | verses */
.dz-feeling {
    max-width: var(--dz-max);
    margin: 0 auto;
    padding: clamp(2.5rem, 6vw, 4.5rem) var(--dz-space);
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.dz-feeling__intro {
    max-width: min(100%, 36rem);
    margin-bottom: clamp(1.5rem, 4vw, 2.25rem);
}

.dz-feeling__columns {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.25rem, 3vw, 2rem);
    align-items: stretch;
}

.dz-feeling__media img,
.dz-feeling__media .dz-ph {
    display: block;
    width: 100%;
    border-radius: var(--dz-radius-lg);
}

.dz-feeling__media img {
    height: auto;
    object-fit: cover;
    max-height: min(70vh, 38rem);
}

@media (min-width: 900px) {
    /* Design: row max 1040×500, 100px gap; image track ≈70% / verses ≈30% of space after gap */
    .dz-feeling__columns {
        box-sizing: border-box;
        width: 100%;
        max-width: 1040px;
        margin-inline: auto;
        grid-template-columns: minmax(0, 7fr) minmax(0, 3fr);
        gap: 100px;
        min-height: 500px;
    }

    .dz-feeling__media img,
    .dz-feeling__media .dz-ph {
        border-radius: 16px;
    }

    .dz-feeling__media img {
        height: 500px;
        max-height: none;
        object-fit: cover;
        opacity: 1;
    }

    .dz-feeling__media .dz-ph {
        height: 500px;
        min-height: 500px;
        aspect-ratio: auto;
        opacity: 1;
    }
}

.dz-feeling__verses {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dz-feeling__kicker-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0 0 1.25rem;
}

.dz-feeling__kicker {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    color: #68a734;
}

.dz-feeling__kicker-line {
    display: block;
    width: 35px;
    height: 1px;
    flex-shrink: 0;
    background: #68a734;
}

.dz-feeling__title {
    margin: 0;
    max-width: 100%;
    font-size: clamp(1.5rem, 3.4vw, 2.35rem);
    font-weight: 300;
    line-height: 1.18;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: #f8fafc;
}

.dz-feeling__title-accent,
.dz-changes__title-accent {
    color: #68a734;
}

.dz-feeling__title--plain {
    text-transform: none;
    letter-spacing: -0.01em;
}

.dz-feeling__body {
    position: relative;
    padding-left: 1.1rem;
    margin: 0;
}

.dz-feeling__body::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    border-radius: 1px;
    background: linear-gradient(180deg, #68a734 0%, #145631 100%);
}

.dz-feeling__verse {
    margin: 0;
    color: rgba(248, 250, 252, 0.92);
    line-height: 174%;
    letter-spacing: -0.015em; /* ≈ -1.5% of font size (CSS has no % for letter-spacing) */
}

.dz-feeling__verse + .dz-feeling__verse {
    margin-top: 0.2rem;
}

.dz-feeling__verse--1 {
    font-size: 18px;
    font-weight: 500;
}

.dz-feeling__verse--2 {
    font-size: 17px;
    font-weight: 400;
}

.dz-feeling__verse--3 {
    font-size: 16px;
    font-weight: 400;
}

.dz-feeling__verse--4 {
    font-size: 15px;
    font-weight: 300;
}

.dz-feeling__verse--5 {
    font-size: 14px;
    font-weight: 300;
}

/* “What changes” — intro full width; row = bullets left, image right */
.dz-changes {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    max-width: var(--dz-max);
    margin: 0 auto;
    padding: clamp(2.5rem, 6vw, 4.5rem) var(--dz-space);
    display: flex;
    flex-direction: column;
    gap: clamp(1.5rem, 4vw, 2.5rem);
}

.dz-changes__intro {
    width: 100%;
}

.dz-changes__row {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.5rem, 4vw, 2.5rem);
    align-items: center;
    width: 100%;
}

@media (min-width: 900px) {
    .dz-changes__row {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: clamp(1.5rem, 4vw, 3rem);
    }
}

.dz-changes__bullets {
    min-width: 0;
}

.dz-changes__media img,
.dz-changes__media .dz-ph {
    display: block;
    width: 100%;
    border-radius: var(--dz-radius-lg);
}

.dz-changes__media img {
    height: auto;
    object-fit: cover;
    max-height: min(70vh, 38rem);
}

.dz-changes__kicker-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0 0 1.25rem;
}

.dz-changes__kicker {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    color: #68a734;
}

.dz-changes__kicker-line {
    display: block;
    width: 35px;
    height: 1px;
    flex-shrink: 0;
    background: #68a734;
}

.dz-changes__title {
    margin: 0;
    max-width: 100%;
    font-size: clamp(1.5rem, 3.4vw, 2.35rem);
    font-weight: 300;
    line-height: 1.18;
    letter-spacing: -0.01em;
    color: #f8fafc;
}

.dz-changes__title.dz-changes__title--uppercase {
    text-transform: uppercase;
}

.dz-changes__body {
    position: relative;
    padding-left: 1.1rem;
    margin: 0;
}

.dz-changes__body::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    border-radius: 1px;
    background: linear-gradient(180deg, #68a734 0%, #145631 100%);
}

.dz-changes__list {
    margin: 0;
    padding: 0;
    list-style: none;
    color: rgba(248, 250, 252, 0.92);
}

.dz-changes__list li {
    margin: 0;
    padding-left: 0;
    line-height: 1.45;
    font-size: clamp(15px, 1.9vw, 18px);
    font-weight: 400;
}

.dz-changes__list li + li {
    margin-top: 0.2rem;
}

/* Dual: card + approach */
.dz-dual {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.75rem, 4vw, 2.5rem);
    max-width: var(--dz-max);
    margin: 0 auto;
    padding: clamp(2.5rem, 6vw, 4.5rem) var(--dz-space);
}

@media (min-width: 960px) {
    .dz-dual {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
        align-items: start;
    }
}

.dz-card--light {
    background: var(--dz-surface);
    color: #0f172a;
    border-radius: var(--dz-radius-lg);
    padding: clamp(1.75rem, 4vw, 2.5rem);
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}

.dz-card__logo {
    margin: 0 0 0.65rem;
    line-height: 0;
}

.dz-card__logo-icon {
    display: block;
    width: 52px;
    height: auto;
    aspect-ratio: 1;
}

.dz-card__h {
    margin: 0 0 0.5rem;
    font-size: clamp(1.5rem, 3vw, 1.85rem);
    font-weight: 600;
    letter-spacing: -0.02em;
}

.dz-access-card .dz-card__h:not(.dz-card__h--plain) {
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.dz-card__h--plain {
    text-transform: none;
}

.dz-card__h-start {
    color: #0f172a;
    font-weight: 600;
}

.dz-card__h-accent {
    color: #68a734;
    font-weight: 600;
}

.dz-card__lede {
    margin: 0 0 1rem;
    color: #475569;
    font-size: 1rem;
}

/* Left accent borders: #7BA746, #53743E, #CBDFB7 — 16px padding from border */
.dz-border-lines {
    margin: 0 0 1.5rem;
    padding: 0;
    list-style: none;
    color: #334155;
}

.dz-border-lines li {
    margin: 0 0 0.65rem;
    padding-left: 16px;
    border-left: 3px solid #7ba746;
    font-size: 1rem;
    line-height: 1.45;
}

.dz-border-lines li:nth-child(2) {
    border-left-color: #53743e;
}

.dz-border-lines li:nth-child(3) {
    border-left-color: #cbdfb7;
}

.dz-border-lines li:last-child {
    margin-bottom: 0;
}

.dz-access-card__kicker-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0 0 0.85rem;
}

.dz-access-card__kicker {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    color: #68a734;
}

.dz-access-card__kicker-line {
    display: block;
    width: 35px;
    height: 1px;
    flex-shrink: 0;
    background: #68a734;
}

/* Approach column (right) */
.dz-approach-column__kicker-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0 0 1rem;
}

.dz-approach-column__kicker {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    color: #68a734;
}

.dz-approach-column__kicker-line {
    display: block;
    width: 35px;
    height: 1px;
    flex-shrink: 0;
    background: #68a734;
}

.dz-approach__title {
    margin: 0 0 1.25rem;
    font-size: clamp(1.45rem, 3.2vw, 1.9rem);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #f8fafc;
}

.dz-approach__title-accent {
    color: #68a734;
    font-weight: 600;
}

.dz-approach__title--plain {
    text-transform: none;
    color: #f8fafc;
}

.dz-approach__row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    align-items: start;
}

@media (min-width: 640px) {
    .dz-approach__row {
        grid-template-columns: auto minmax(0, 1fr);
        gap: 1.5rem;
    }
}

.dz-approach-strip {
    margin: 0;
}

.dz-approach-strip img {
    display: block;
    max-height: 14rem;
    width: auto;
    margin: 0;
    border-radius: 0.5rem;
}

.dz-approach__aside {
    min-width: 0;
}

.dz-approach__prose {
    margin: 0 0 1rem;
    color: rgba(248, 250, 252, 0.9);
    font-size: 1rem;
    line-height: 1.55;
    white-space: pre-line;
}

.dz-tags.dz-border-lines {
    margin: 0;
    color: rgba(248, 250, 252, 0.92);
    font-size: 1rem;
}

.dz-tags.dz-border-lines li {
    color: inherit;
}

/* How it works */
.dz-how {
    max-width: var(--dz-max);
    margin: 0 auto;
    padding: clamp(2.5rem, 6vw, 4rem) var(--dz-space) clamp(2rem, 5vw, 3rem);
}

.dz-how__title {
    margin: 0 0 1.5rem;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    text-align: center;
}

.dz-timeline {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 1.25rem;
    list-style: none;
    margin: 0 0 2rem;
    padding: 0;
}

@media (min-width: 800px) {
    .dz-timeline {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }
}

.dz-timeline__item {
    padding: 1rem 1rem 1.1rem;
    border-radius: var(--dz-radius);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.dz-timeline__n {
    display: block;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--dz-muted-2);
    margin-bottom: 0.25rem;
}

.dz-timeline__label {
    display: block;
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 0.35rem;
}

.dz-timeline__text {
    margin: 0;
    font-size: 0.9375rem;
    color: var(--dz-muted);
}

.dz-phones {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    align-items: start;
}

@media (min-width: 900px) {
    .dz-phones {
        grid-template-columns: repeat(4, 1fr);
    }
}

.dz-phone {
    border-radius: 1.75rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--dz-bg-elevated);
}

.dz-phone img {
    display: block;
    width: 100%;
    height: auto;
}

/* Forms */
.dz-forms {
    max-width: 32rem;
    margin: 0 auto;
    padding: clamp(2rem, 5vw, 3.5rem) var(--dz-space) clamp(3rem, 8vw, 5rem);
}

.dz-form-card {
    background: var(--dz-surface);
    color: #0f172a;
    border-radius: var(--dz-radius-lg);
    padding: clamp(1.75rem, 4vw, 2.25rem);
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.dz-form-card + .dz-form-card {
    margin-top: 1.25rem;
}

.dz-form-card__h {
    margin: 0 0 1rem;
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 600;
}

.dz-form-card__q {
    margin: 0 0 1.25rem;
    font-weight: 500;
    color: #334155;
}

.dz-hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.dz-toggle-group {
    border: none;
    margin: 0 0 1.25rem;
    padding: 0;
}

.dz-toggle {
    display: inline-flex;
    padding: 0.25rem;
    border-radius: 999px;
    background: var(--dz-surface-muted);
    gap: 0.25rem;
}

.dz-toggle input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.dz-toggle__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 4.5rem;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9375rem;
    color: #64748b;
    cursor: pointer;
    user-select: none;
}

.dz-toggle input:focus-visible + .dz-toggle__btn {
    outline: 2px solid var(--dz-green);
    outline-offset: 2px;
}

.dz-toggle input:checked + .dz-toggle__btn {
    background: #fff;
    color: var(--dz-green);
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.12);
}

.dz-field {
    display: block;
    margin-bottom: 1rem;
}

.dz-field__label {
    display: block;
    margin-bottom: 0.35rem;
    font-weight: 500;
    font-size: 0.9375rem;
    color: #334155;
}

.dz-field input[type="email"] {
    width: 100%;
    padding: 0.85rem 1rem;
    font: inherit;
    border-radius: 0.75rem;
    border: 1px solid #cbd5e1;
    background: #fff;
}

.dz-field input:focus-visible {
    outline: 2px solid var(--dz-green);
    outline-offset: 1px;
    border-color: var(--dz-green);
}

.dz-form__error {
    margin: 0 0 0.75rem;
    font-size: 0.875rem;
    color: #b91c1c;
}

.dz-form__error:not([hidden]) {
    display: block;
}

.dz-form__fine {
    margin: 0.75rem 0 0;
    font-size: 0.8125rem;
    color: #64748b;
    text-align: center;
}

/* Footer — golf ball cap: huge circle, only top arc visible */
.dz-footer {
    position: relative;
    z-index: 1;
    margin-top: 2rem;
    padding-inline: 0;
    padding-bottom: 0;
}

.dz-footer__shell {
    --dz-footer-dome: min(220vw, 3200px);
    position: relative;
    width: 100%;
    max-width: none;
    margin-inline: 0;
    overflow: hidden;
    min-height: clamp(26rem, 58vw, 44rem);
    padding-inline: var(--dz-space);
    padding-bottom: clamp(2rem, 5vw, 3.5rem);
    background: transparent;
}

.dz-footer__shell::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    z-index: 0;
    width: var(--dz-footer-dome);
    height: var(--dz-footer-dome);
    border-radius: 50%;
    transform: translateX(-50%) translateY(58%);
    background-color: var(--dz-blanc-b);
    background-image: radial-gradient(
        circle at 50% 0%,
        rgba(255, 255, 255, 0.55) 0%,
        rgba(255, 255, 255, 0) 42%
    );
    box-shadow:
        inset 0 48px 70px -12px rgba(0, 0, 0, 0.22),
        inset 0 120px 90px -40px rgba(0, 0, 0, 0.12),
        inset 0 -28px 36px -8px rgba(0, 0, 0, 0.08),
        inset 0 -23px 13.7px rgba(0, 0, 0, 0.2),
        inset 0 23px 13.7px rgba(0, 0, 0, 0.14);
    pointer-events: none;
}

.dz-footer__inner {
    position: relative;
    z-index: 1;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 37px;
    max-width: 374px;
    width: 100%;
    margin-inline: auto;
    padding-block: clamp(2.5rem, 7vw, 3.75rem) 50px;
    padding-inline: clamp(1rem, 4vw, 1.5rem);
    color: #0f172a;
    text-align: center;
}

.dz-footer__logo {
    display: block;
    height: 120px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    margin: 0;
}

.dz-footer__tagline {
    margin: 0;
    max-width: 100%;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.4;
    text-align: center;
    color: #0f172a;
    white-space: pre-line;
}

.dz-footer__legal {
    margin: 0;
    max-width: 100%;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: -0.015em;
    text-align: center;
    color: #334155;
}

.dz-footer__legal a {
    color: inherit;
    font-weight: 300;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.dz-footer__legal a:hover {
    color: #0f172a;
}

.dz-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.dz-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.5rem;
    color: #fff;
    background: var(--dz-green);
}

.dz-social a:hover {
    color: #fff;
    background: var(--dz-green-bright);
}

.dz-social__unavailable {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.5rem;
    color: #fff;
    background: var(--dz-green);
    opacity: 0.42;
    cursor: not-allowed;
    pointer-events: none;
}

.dz-footer__copy {
    margin: 0;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-size: 13px;
    line-height: 1.4;
    letter-spacing: -0.01em;
    color: #64748b;
    text-align: center;
}

.dz-footer__copy-link {
    color: inherit;
    font-weight: 300;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.dz-footer__copy-link:hover {
    color: #0f172a;
}
