:root {
    --ds-bg: #05070d;
    --ds-panel: rgba(22, 25, 34, .74);
    --ds-panel-strong: rgba(31, 35, 47, .9);
    --ds-line: rgba(255, 255, 255, .11);
    --ds-text: #f5f7fb;
    --ds-muted: #aeb5c2;
    --ds-gold: #ffc72c;
    --ds-gold-2: #ff9f1c;
    --ds-cyan: #31eadf;
    --ds-green: #2fe28b;
    --ds-red: #ff6b6b;
    --sidebar-width: 268px;
}

.dg2-page {
    background: #060b19;
    color: #cbd5e1;
    font-family: "Raleway", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    letter-spacing: 0;
    min-height: 100vh;
    overflow-x: hidden;
}

.dg2-page * {
    box-sizing: border-box;
}

.dg2-page a {
    color: inherit;
    text-decoration: none;
}

.dg2-icon {
    flex: 0 0 auto;
}

.dg2-nav {
    backdrop-filter: blur(18px);
    background: rgba(6, 11, 25, .8);
    border-bottom: 1px solid rgba(30, 64, 175, .4);
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 50;
}

.dg2-nav-inner {
    align-items: center;
    display: flex;
    gap: 28px;
    height: 80px;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1280px;
    padding: 0 24px;
}

.dg2-logo {
    align-items: center;
    display: inline-flex;
    gap: 10px;
    white-space: nowrap;
}

.dg2-logo span {
    color: #ffffff;
    font-size: 31px;
    font-weight: 900;
    letter-spacing: -1px;
}

.dg2-logo strong {
    color: #22d3ee;
    font-weight: 500;
}

.dg2-logo small {
    background: rgba(30, 58, 138, .5);
    border: 1px solid rgba(21, 94, 117, .32);
    border-radius: 3px;
    color: #67e8f9;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 5px 8px;
}

.dg2-menu,
.dg2-nav-actions {
    align-items: center;
    display: flex;
}

.dg2-menu {
    gap: 32px;
}

.dg2-menu a,
.dg2-panel-link {
    color: #cbd5e1;
    font-size: 14px;
    font-weight: 700;
    transition: color .2s ease;
}

.dg2-menu a:hover,
.dg2-panel-link:hover {
    color: #22d3ee;
}

.dg2-nav-actions {
    gap: 16px;
}

.dg2-cta-small,
.dg2-primary,
.dg2-form button {
    background: linear-gradient(90deg, #06b6d4, #22d3ee);
    color: #060b19;
    font-weight: 900;
}

.dg2-cta-small {
    border-radius: 999px;
    font-size: 14px;
    padding: 11px 24px;
    transition: box-shadow .2s ease, transform .2s ease;
}

.dg2-cta-small:hover,
.dg2-primary:hover,
.dg2-form button:hover {
    box-shadow: 0 0 28px rgba(34, 211, 238, .42);
    transform: translateY(-1px);
}

.dg2-menu-button {
    background: transparent;
    border: 0;
    display: none;
    height: 44px;
    padding: 8px;
    width: 44px;
}

.dg2-menu-button span {
    background: #22d3ee;
    border-radius: 999px;
    display: block;
    height: 2px;
    margin: 6px 0;
    transition: opacity .2s ease, transform .2s ease;
    width: 28px;
}

.dg2-menu-button.is-open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.dg2-menu-button.is-open span:nth-child(2) {
    opacity: 0;
}

.dg2-menu-button.is-open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.dg2-mobile-panel {
    background: #060b19;
    border-top: 1px solid rgba(30, 64, 175, .5);
    display: none;
    padding: 22px 24px 28px;
}

.dg2-mobile-panel.is-open {
    display: grid;
    gap: 18px;
}

.dg2-mobile-panel a {
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
}

.dg2-mobile-panel .dg2-mobile-cta {
    background: linear-gradient(90deg, #06b6d4, #22d3ee);
    border-radius: 14px;
    color: #060b19;
    padding: 14px;
    text-align: center;
}

.dg2-hero {
    align-items: center;
    display: flex;
    min-height: 90vh;
    overflow: hidden;
    padding-top: 80px;
    position: relative;
}

.dg2-hero-media {
    inset: 0;
    position: absolute;
}

.dg2-hero-media img {
    height: 100%;
    object-fit: cover;
    object-position: top;
    width: 100%;
}

.dg2-hero-media::before {
    background: linear-gradient(90deg, #060b19 0%, rgba(6, 11, 25, .82) 52%, rgba(6, 11, 25, .3) 100%);
    content: "";
    inset: 0;
    position: absolute;
    z-index: 1;
}

.dg2-hero-media::after {
    background: linear-gradient(0deg, #060b19 0%, transparent 45%, transparent 100%);
    content: "";
    inset: 0;
    position: absolute;
    z-index: 2;
}

.dg2-hero-inner,
.dg2-section,
.dg2-final,
.dg2-footer {
    margin: 0 auto;
    max-width: 1280px;
    width: 100%;
}

.dg2-hero-inner {
    padding: 80px 24px;
    position: relative;
    z-index: 3;
}

.dg2-hero-copy {
    max-width: 760px;
}

.dg2-pill,
.dg2-app-label {
    align-items: center;
    background: rgba(30, 58, 138, .4);
    border: 1px solid rgba(34, 211, 238, .3);
    border-radius: 999px;
    color: #67e8f9;
    display: inline-flex;
    font-size: 12px;
    font-weight: 900;
    gap: 8px;
    letter-spacing: 1.5px;
    padding: 7px 16px;
    text-transform: uppercase;
}

.dg2-hero h1,
.dg2-section-heading h2,
.dg2-app-copy h2,
.dg2-prize-heading h2,
.dg2-final-card h2 {
    color: #ffffff;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.06;
    margin: 0;
}

.dg2-hero h1 {
    font-size: 68px;
    margin-top: 28px;
    max-width: 820px;
}

.dg2-hero h1 span,
.dg2-app-copy h2 span,
.dg2-section-heading h2 span {
    background: linear-gradient(90deg, #22d3ee, #60a5fa);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.dg2-hero-copy p {
    color: #dbeafe;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.65;
    margin: 30px 0 0;
    max-width: 690px;
}

.dg2-hero-copy strong {
    color: #ffffff;
}

.dg2-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 36px;
}

.dg2-primary,
.dg2-secondary {
    align-items: center;
    border-radius: 999px;
    display: inline-flex;
    font-size: 18px;
    font-weight: 900;
    gap: 8px;
    justify-content: center;
    min-height: 58px;
    padding: 16px 32px;
    transition: background .2s ease, box-shadow .2s ease, transform .2s ease;
}

.dg2-secondary {
    backdrop-filter: blur(16px);
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .2);
    color: #ffffff;
}

.dg2-secondary:hover {
    background: rgba(255, 255, 255, .12);
}

.dg2-proof-list {
    color: #bae6fd;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 32px;
}

.dg2-proof-list span {
    align-items: center;
    display: inline-flex;
    font-size: 14px;
    font-weight: 700;
    gap: 8px;
}

.dg2-proof-list svg {
    color: #22d3ee;
}

.dg2-smart-band {
    background: linear-gradient(90deg, #1d4ed8, #1e3a8a);
    border-bottom: 1px solid rgba(34, 211, 238, .2);
    border-top: 1px solid rgba(34, 211, 238, .2);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .34);
    padding: 24px;
    position: relative;
    z-index: 4;
}

.dg2-smart-band p {
    align-items: center;
    color: #ffffff;
    display: flex;
    flex-wrap: wrap;
    font-size: 24px;
    font-weight: 900;
    gap: 12px;
    justify-content: center;
    margin: 0 auto;
    max-width: 1180px;
    text-align: center;
}

.dg2-smart-band svg {
    color: #67e8f9;
}

.dg2-section {
    padding: 96px 24px;
}

.dg2-benefits,
.dg2-levels,
.dg2-prizes {
    background: #0a1128;
    border-bottom: 1px solid rgba(30, 64, 175, .3);
}

.dg2-section-heading {
    margin: 0 auto 64px;
    max-width: 850px;
    text-align: center;
}

.dg2-section-heading h2,
.dg2-prize-heading h2 {
    font-size: 48px;
}

.dg2-section-heading p,
.dg2-prize-heading p {
    color: rgba(191, 219, 254, .72);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.55;
    margin: 18px 0 0;
}

.dg2-card-grid,
.dg2-level-grid,
.dg2-step-grid {
    display: grid;
    gap: 24px;
}

.dg2-card-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.dg2-card-grid article,
.dg2-step-grid article,
.dg2-level-grid article {
    background: #060b19;
    border: 1px solid rgba(30, 64, 175, .5);
    border-radius: 28px;
    box-shadow: 0 16px 30px rgba(0, 0, 0, .24);
    padding: 32px;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.dg2-card-grid article:hover,
.dg2-step-grid article:hover {
    border-color: rgba(34, 211, 238, .5);
    box-shadow: 0 18px 34px rgba(34, 211, 238, .08);
    transform: translateY(-4px);
}

.dg2-card-grid svg {
    color: #22d3ee;
    margin-bottom: 24px;
}

.dg2-card-grid h3,
.dg2-step-grid h3,
.dg2-level-grid h3 {
    color: #ffffff;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0;
    margin: 0 0 12px;
}

.dg2-card-grid p,
.dg2-step-grid p {
    color: #94a3b8;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.65;
    margin: 0;
}

.dg2-app {
    align-items: center;
    display: grid;
    gap: 64px;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
    position: relative;
}

.dg2-app::before {
    background: rgba(34, 211, 238, .1);
    border-radius: 999px;
    content: "";
    filter: blur(120px);
    height: 500px;
    left: -220px;
    pointer-events: none;
    position: absolute;
    top: 26%;
    width: 500px;
}

.dg2-app-copy,
.dg2-phone-wrap {
    position: relative;
    z-index: 1;
}

.dg2-app-copy h2 {
    font-size: 48px;
    margin-top: 24px;
}

.dg2-app-copy p {
    color: rgba(191, 219, 254, .8);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.7;
    margin: 24px 0;
}

.dg2-app-copy ul {
    display: grid;
    gap: 18px;
    list-style: none;
    margin: 28px 0 0;
    padding: 0;
}

.dg2-app-copy li {
    align-items: flex-start;
    color: #cbd5e1;
    display: flex;
    font-size: 16px;
    font-weight: 600;
    gap: 12px;
    line-height: 1.5;
}

.dg2-app-copy li svg {
    background: rgba(34, 211, 238, .16);
    border-radius: 999px;
    color: #22d3ee;
    padding: 5px;
}

.dg2-phone-wrap {
    display: flex;
    justify-content: flex-end;
}

.dg2-phone-wrap::before {
    background: linear-gradient(0deg, rgba(34, 211, 238, .28), rgba(37, 99, 235, .28));
    border-radius: 999px;
    content: "";
    filter: blur(32px);
    inset: 0;
    position: absolute;
}

.dg2-phone {
    aspect-ratio: 9 / 19;
    background: #0a1128;
    border: 6px solid #1f2937;
    border-radius: 40px;
    box-shadow: 0 26px 60px rgba(0, 0, 0, .48);
    max-width: 390px;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.dg2-phone-head {
    background: #060b19;
    border-bottom: 1px solid rgba(30, 64, 175, .5);
    padding: 28px 24px;
}

.dg2-phone-head span,
.dg2-phone-points span {
    color: #94a3b8;
    display: block;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.dg2-phone-head strong {
    color: #ffffff;
    display: block;
    font-size: 25px;
    font-weight: 900;
    margin-top: 6px;
}

.dg2-phone-head em {
    color: #facc15;
    font-style: normal;
}

.dg2-phone-body {
    display: grid;
    gap: 16px;
    padding: 24px;
}

.dg2-phone-points {
    background: linear-gradient(135deg, rgba(30, 58, 138, .62), #060b19);
    border: 1px solid #1e40af;
    border-radius: 18px;
    padding: 18px;
}

.dg2-phone-points strong {
    color: #22d3ee;
    display: block;
    font-size: 34px;
    font-weight: 900;
    margin-top: 6px;
}

.dg2-phone-stats {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dg2-phone-stats span {
    align-items: center;
    background: #060b19;
    border: 1px solid rgba(30, 64, 175, .5);
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 18px 12px;
    text-align: center;
}

.dg2-phone-stats svg {
    color: #22d3ee;
}

.dg2-phone-stats strong {
    color: #ffffff;
    font-size: 22px;
    font-weight: 900;
}

.dg2-phone-stats small {
    color: #94a3b8;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .8px;
    text-transform: uppercase;
}

.dg2-phone-body button {
    background: #22d3ee;
    border: 0;
    border-radius: 18px;
    box-shadow: 0 10px 22px rgba(34, 211, 238, .2);
    color: #060b19;
    font-weight: 900;
    margin-top: 4px;
    padding: 18px;
}

.dg2-level-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.dg2-level-grid article {
    overflow: hidden;
    position: relative;
}

.dg2-level-grid article::before {
    border-bottom-left-radius: 999px;
    content: "";
    height: 128px;
    position: absolute;
    right: 0;
    top: 0;
    transition: transform .2s ease;
    width: 128px;
}

.dg2-level-grid article:hover::before {
    transform: scale(1.1);
}

.dg2-level-grid article > div {
    align-items: center;
    border-radius: 999px;
    display: flex;
    height: 64px;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
    width: 64px;
    z-index: 1;
}

.dg2-level-grid h3,
.dg2-level-grid p,
.dg2-level-grid dl {
    position: relative;
    z-index: 1;
}

.dg2-level-grid p {
    font-size: 14px;
    font-weight: 800;
    margin: 0 0 18px;
}

.dg2-level-grid dl {
    border-top: 1px solid #1f2937;
    display: grid;
    gap: 12px;
    grid-template-columns: 1fr auto;
    margin: 0;
    padding-top: 18px;
}

.dg2-level-grid dt {
    color: #94a3b8;
    font-size: 14px;
    font-weight: 700;
}

.dg2-level-grid dd {
    color: #ffffff;
    font-size: 14px;
    font-weight: 900;
    margin: 0;
}

.dg2-bronze {
    border-color: rgba(154, 52, 18, .5) !important;
}

.dg2-bronze::before {
    background: rgba(194, 65, 12, .1);
}

.dg2-bronze div {
    background: rgba(124, 45, 18, .3);
    border: 1px solid rgba(194, 65, 12, .5);
    box-shadow: 0 0 18px rgba(194, 65, 12, .28);
    color: #f97316;
}

.dg2-bronze p {
    color: #fb923c;
}

.dg2-silver {
    border-color: rgba(71, 85, 105, .5) !important;
}

.dg2-silver::before {
    background: rgba(148, 163, 184, .1);
}

.dg2-silver div {
    background: rgba(51, 65, 85, .3);
    border: 1px solid rgba(148, 163, 184, .5);
    box-shadow: 0 0 18px rgba(148, 163, 184, .25);
    color: #cbd5e1;
}

.dg2-silver p {
    color: #cbd5e1;
}

.dg2-gold {
    background: linear-gradient(180deg, #060b19, rgba(113, 63, 18, .22)) !important;
    border-color: rgba(202, 138, 4, .5) !important;
    box-shadow: 0 0 30px rgba(202, 138, 4, .14) !important;
}

.dg2-gold::before {
    background: rgba(234, 179, 8, .1);
}

.dg2-gold div {
    background: rgba(202, 138, 4, .2);
    border: 1px solid rgba(234, 179, 8, .5);
    box-shadow: 0 0 22px rgba(234, 179, 8, .34);
    color: #facc15;
}

.dg2-gold p,
.dg2-gold dd:nth-of-type(2) {
    color: #facc15;
}

.dg2-sapphire {
    background: linear-gradient(180deg, #060b19, rgba(8, 145, 178, .25)) !important;
    border-color: rgba(34, 211, 238, .6) !important;
    box-shadow: 0 0 40px rgba(34, 211, 238, .16) !important;
}

.dg2-sapphire > span {
    background: #22d3ee;
    border-bottom-left-radius: 14px;
    color: #060b19;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
    padding: 6px 11px;
    position: absolute;
    right: 0;
    text-transform: uppercase;
    top: 0;
    z-index: 2;
}

.dg2-sapphire::before {
    background: rgba(34, 211, 238, .1);
    filter: blur(16px);
}

.dg2-sapphire div {
    background: rgba(34, 211, 238, .18);
    border: 1px solid rgba(103, 232, 249, .6);
    box-shadow: 0 0 26px rgba(34, 211, 238, .36);
    color: #67e8f9;
}

.dg2-sapphire p,
.dg2-sapphire dd:nth-of-type(2) {
    color: #67e8f9;
}

.dg2-steps {
    background: #060b19;
}

.dg2-step-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    position: relative;
}

.dg2-step-grid::before {
    background: linear-gradient(90deg, #1e3a8a, rgba(34, 211, 238, .5), #1e3a8a);
    content: "";
    height: 1px;
    left: 10%;
    position: absolute;
    right: 10%;
    top: 50%;
}

.dg2-step-grid article {
    background: #0a1128;
    position: relative;
    z-index: 1;
}

.dg2-step-grid article > svg {
    background: rgba(30, 58, 138, .42);
    border: 1px solid rgba(29, 78, 216, .5);
    border-radius: 18px;
    color: #22d3ee;
    height: 64px;
    margin-bottom: 24px;
    padding: 16px;
    width: 64px;
}

.dg2-prize-heading {
    margin-bottom: 48px;
}

.dg2-prize-carousel {
    background: #060b19;
    border: 1px solid #1e40af;
    border-radius: 28px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .55);
    display: grid;
    grid-template-columns: minmax(300px, 40%) minmax(0, 1fr);
    overflow: hidden;
}

.dg2-prize-tabs {
    display: grid;
    gap: 16px;
    padding: 32px;
}

.dg2-prize-tabs button {
    align-items: center;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 18px;
    color: #94a3b8;
    cursor: pointer;
    display: grid;
    gap: 4px 16px;
    grid-template-columns: auto 1fr;
    padding: 20px;
    text-align: left;
    transition: background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.dg2-prize-tabs button:hover {
    background: rgba(23, 37, 84, .55);
}

.dg2-prize-tabs button.is-active {
    background: rgba(30, 58, 138, .4);
    border-color: rgba(34, 211, 238, .5);
    box-shadow: 0 0 20px rgba(34, 211, 238, .14);
}

.dg2-prize-tabs span {
    align-items: center;
    background: rgba(30, 58, 138, .5);
    border: 1px solid #1e40af;
    border-radius: 14px;
    color: #22d3ee;
    display: flex;
    grid-row: span 2;
    height: 52px;
    justify-content: center;
    width: 52px;
}

.dg2-prize-tabs button.is-active span {
    background: #22d3ee;
    color: #060b19;
}

.dg2-prize-tabs strong {
    color: inherit;
    font-size: 18px;
    font-weight: 900;
}

.dg2-prize-tabs button.is-active strong {
    color: #ffffff;
}

.dg2-prize-tabs small {
    color: #22d3ee;
    display: none;
    font-size: 13px;
    font-weight: 700;
}

.dg2-prize-tabs button.is-active small {
    display: block;
}

.dg2-prize-panels {
    background: #060b19;
    min-height: 500px;
    position: relative;
}

.dg2-prize-panels article {
    inset: 0;
    opacity: 0;
    position: absolute;
    transition: opacity .8s ease;
}

.dg2-prize-panels article.is-active {
    opacity: 1;
    z-index: 1;
}

.dg2-prize-panels img {
    height: 100%;
    mix-blend-mode: overlay;
    object-fit: cover;
    opacity: .7;
    width: 100%;
}

.dg2-prize-panels article::after {
    background: linear-gradient(0deg, #060b19 0%, rgba(6, 11, 25, .62) 55%, transparent 100%);
    content: "";
    inset: 0;
    position: absolute;
}

.dg2-prize-panels article > div {
    bottom: 0;
    left: 0;
    padding: 56px;
    position: absolute;
    right: 0;
    z-index: 2;
}

.dg2-prize-panels span {
    background: #22d3ee;
    border-radius: 6px;
    color: #060b19;
    display: inline-flex;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
    margin-bottom: 18px;
    padding: 6px 12px;
    text-transform: uppercase;
}

.dg2-prize-panels h3 {
    color: #ffffff;
    font-size: 44px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.05;
    margin: 0 0 16px;
    max-width: 560px;
}

.dg2-prize-panels p {
    color: #e2e8f0;
    font-size: 19px;
    font-weight: 600;
    line-height: 1.6;
    margin: 0;
    max-width: 520px;
}

.dg2-final {
    padding: 96px 24px;
    position: relative;
}

.dg2-final::before {
    background: rgba(30, 58, 138, .18);
    border-radius: 999px;
    content: "";
    filter: blur(100px);
    height: 600px;
    left: 50%;
    pointer-events: none;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

.dg2-final-card {
    background: #0a1128;
    border: 1px solid #1e40af;
    border-radius: 48px;
    box-shadow: 0 0 60px rgba(0, 0, 0, .55);
    margin: 0 auto;
    max-width: 900px;
    padding: 60px;
    position: relative;
    text-align: center;
    z-index: 1;
}

.dg2-final-icon {
    align-items: center;
    background: rgba(30, 58, 138, .5);
    border: 1px solid rgba(34, 211, 238, .3);
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(34, 211, 238, .2);
    color: #22d3ee;
    display: flex;
    height: 80px;
    justify-content: center;
    margin: 0 auto 30px;
    width: 80px;
}

.dg2-final-card h2 {
    font-size: 46px;
}

.dg2-final-card > p {
    color: rgba(191, 219, 254, .8);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.6;
    margin: 24px auto 34px;
    max-width: 650px;
}

.dg2-form {
    display: grid;
    gap: 16px;
    margin: 0 auto 28px;
    max-width: 450px;
}

.dg2-form input {
    background: #060b19;
    border: 1px solid #1e40af;
    border-radius: 14px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    padding: 17px 20px;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.dg2-form input:focus {
    border-color: #22d3ee;
    box-shadow: 0 0 0 1px rgba(34, 211, 238, .4);
    outline: 0;
}

.dg2-form input::placeholder {
    color: #475569;
}

.dg2-form button {
    border: 0;
    border-radius: 14px;
    cursor: pointer;
    font-size: 20px;
    padding: 18px;
    transition: box-shadow .2s ease, transform .2s ease;
}

.dg2-whatsapp {
    color: #94a3b8 !important;
    font-size: 16px !important;
    margin-bottom: 0 !important;
}

.dg2-whatsapp a {
    color: #22d3ee;
    font-weight: 900;
}

.dg2-footer {
    align-items: center;
    background: #02050c;
    border-top: 1px solid rgba(30, 64, 175, .3);
    display: flex;
    gap: 28px;
    justify-content: space-between;
    padding: 48px 24px;
}

.dg2-footer strong {
    color: rgba(255, 255, 255, .45);
    display: block;
    font-size: 26px;
    font-weight: 900;
    letter-spacing: -1px;
}

.dg2-footer strong span {
    color: rgba(34, 211, 238, .45);
}

.dg2-footer p {
    color: #475569;
    font-size: 14px;
    font-weight: 600;
    margin: 10px 0 0;
}

.dg2-footer > div:last-child {
    align-items: center;
    color: #64748b;
    display: flex;
    gap: 24px;
}

.dg2-footer > div:last-child span {
    align-items: center;
    display: inline-flex;
    font-size: 14px;
    font-weight: 700;
    gap: 8px;
}

.dg2-footer > div:last-child strong {
    align-items: center;
    border: 1px solid #334155;
    border-radius: 999px;
    color: #64748b;
    display: flex;
    font-size: 14px;
    height: 34px;
    justify-content: center;
    letter-spacing: 0;
    width: 34px;
}

@media (max-width: 1100px) {
    .dg2-menu,
    .dg2-nav-actions {
        display: none;
    }

    .dg2-menu-button {
        display: block;
    }

    .dg2-hero h1 {
        font-size: 54px;
    }

    .dg2-card-grid,
    .dg2-level-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .dg2-app {
        grid-template-columns: 1fr;
    }

    .dg2-phone-wrap {
        justify-content: center;
    }

    .dg2-prize-carousel {
        grid-template-columns: 1fr;
    }

    .dg2-prize-panels {
        min-height: 460px;
    }
}

@media (max-width: 760px) {
    .dg2-nav-inner {
        height: 72px;
        padding: 0 18px;
    }

    .dg2-logo span {
        font-size: 26px;
    }

    .dg2-logo small {
        display: none;
    }

    .dg2-hero {
        min-height: auto;
        padding-top: 72px;
    }

    .dg2-hero-media::before {
        background: linear-gradient(0deg, #060b19 0%, rgba(6, 11, 25, .82) 58%, rgba(6, 11, 25, .64) 100%);
    }

    .dg2-hero-inner {
        padding: 96px 18px 70px;
    }

    .dg2-pill {
        font-size: 10px;
    }

    .dg2-hero h1 {
        font-size: 40px;
        margin-top: 22px;
    }

    .dg2-hero-copy p,
    .dg2-section-heading p,
    .dg2-prize-heading p,
    .dg2-final-card > p {
        font-size: 17px;
    }

    .dg2-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .dg2-primary,
    .dg2-secondary {
        width: 100%;
    }

    .dg2-proof-list {
        gap: 14px;
    }

    .dg2-smart-band p {
        font-size: 19px;
    }

    .dg2-section,
    .dg2-final {
        padding: 64px 18px;
    }

    .dg2-section-heading {
        margin-bottom: 40px;
    }

    .dg2-section-heading h2,
    .dg2-prize-heading h2,
    .dg2-app-copy h2,
    .dg2-final-card h2 {
        font-size: 34px;
    }

    .dg2-card-grid,
    .dg2-level-grid,
    .dg2-step-grid,
    .dg2-phone-stats {
        grid-template-columns: 1fr;
    }

    .dg2-step-grid::before {
        display: none;
    }

    .dg2-card-grid article,
    .dg2-step-grid article,
    .dg2-level-grid article {
        border-radius: 22px;
        padding: 26px;
    }

    .dg2-prize-tabs {
        padding: 20px;
    }

    .dg2-prize-panels {
        min-height: 430px;
    }

    .dg2-prize-panels article > div {
        padding: 28px;
    }

    .dg2-prize-panels h3 {
        font-size: 32px;
    }

    .dg2-prize-panels p {
        font-size: 17px;
    }

    .dg2-final-card {
        border-radius: 28px;
        padding: 34px 22px;
    }

    .dg2-footer {
        align-items: flex-start;
        flex-direction: column;
    }
}

html,
body {
    min-height: 100%;
}

body.socios-shell,
body.public-shell,
body.landing-shell {
    background: var(--ds-bg);
    color: var(--ds-text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    letter-spacing: 0;
    margin: 0;
}

body.landing-shell {
    font-family: "Raleway", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.socios-bg,
.public-shell::before,
.landing-bg {
    background:
        radial-gradient(circle at 24% 6%, rgba(203, 255, 55, .22), transparent 28%),
        radial-gradient(circle at 78% 92%, rgba(255, 159, 28, .22), transparent 32%),
        radial-gradient(circle at 42% 78%, rgba(49, 234, 223, .15), transparent 26%),
        linear-gradient(135deg, #090719 0%, #121017 46%, #07090e 100%);
    inset: 0;
    position: fixed;
    z-index: -2;
}

.socios-bg::after,
.public-shell::after,
.landing-bg::after {
    background-image: linear-gradient(130deg, rgba(255,255,255,.05) 1px, transparent 1px);
    background-size: 46px 46px;
    content: "";
    inset: 0;
    opacity: .25;
    position: fixed;
    z-index: -1;
}

.landing-shell {
    overflow-x: hidden;
}

.landing-shell a {
    color: inherit;
}

.dg-affiliate-page {
    background:
        linear-gradient(120deg, rgba(0, 33, 77, .92), rgba(0, 91, 137, .84) 35%, rgba(255, 255, 255, .92) 35.2%, rgba(255, 255, 255, .94) 47%, rgba(16, 145, 202, .86) 47.2%, rgba(0, 36, 74, .96) 100%),
        #07345d;
    color: #ffffff;
    min-height: 100vh;
    overflow: hidden;
    position: relative;
}

.dg-affiliate-page::before {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .08) 0 12%, transparent 12% 100%),
        linear-gradient(35deg, transparent 0 42%, rgba(33, 204, 241, .35) 42% 45%, transparent 45% 100%),
        linear-gradient(125deg, transparent 0 58%, rgba(0, 32, 67, .6) 58% 68%, transparent 68% 100%);
    content: "";
    inset: 0;
    opacity: .85;
    pointer-events: none;
    position: absolute;
}

.dg-affiliate-page::after {
    background:
        repeating-linear-gradient(165deg, rgba(255, 255, 255, .08) 0 2px, transparent 2px 78px),
        radial-gradient(circle at 20% 16%, rgba(55, 214, 246, .42), transparent 28%),
        radial-gradient(circle at 82% 68%, rgba(0, 26, 70, .7), transparent 34%);
    content: "";
    inset: 0;
    opacity: .55;
    pointer-events: none;
    position: absolute;
}

.dg-affiliate-page > * {
    position: relative;
    z-index: 1;
}

.dg-topbar {
    align-items: center;
    display: grid;
    gap: 22px;
    grid-template-columns: 250px 1fr auto auto;
    margin: 0 auto;
    max-width: 1180px;
    padding: 28px 0 0;
    position: relative;
    width: calc(100% - 36px);
    z-index: 30;
}

.dg-logo,
.dg-logo-xl,
.dg-footer-bottom strong {
    color: #ffffff;
    font-weight: 300;
    letter-spacing: -1px;
    line-height: .72;
    text-decoration: none;
}

.dg-logo {
    align-items: flex-end;
    display: inline-flex;
    gap: 4px;
}

.dg-logo span,
.dg-logo-xl span {
    font-size: 38px;
}

.dg-logo small,
.dg-logo-xl small,
.dg-footer-bottom small {
    font-size: 20px;
    font-weight: 500;
}

.dg-logo-xl {
    display: inline-flex;
    flex-direction: column;
    margin-bottom: 28px;
    text-align: center;
}

.dg-logo-xl span {
    font-size: clamp(64px, 10vw, 114px);
}

.dg-logo-xl small {
    align-self: flex-end;
    font-size: clamp(24px, 4vw, 42px);
    margin-top: 18px;
}

.dg-main-menu {
    align-items: center;
    display: flex;
    gap: 16px;
    justify-content: center;
}

.dg-main-menu a,
.dg-top-cta {
    color: #ffffff;
    font-weight: 950;
    text-decoration: none;
    text-transform: uppercase;
}

.dg-main-menu a {
    color: rgba(255, 255, 255, .88);
    position: relative;
}

.dg-main-menu a:not(:first-child)::before {
    color: #69cdf0;
    content: "•";
    font-size: 20px;
    font-weight: 950;
    left: -13px;
    position: absolute;
    top: 50%;
    transform: translateY(-54%);
}

.dg-main-menu a:hover {
    color: #69cdf0;
}

.dg-top-cta,
.dg-main-btn {
    background: linear-gradient(180deg, #69cdf0, #538DC9);
    border: 3px solid #ffffff;
    box-shadow: 0 8px 0 #002f3f, 0 18px 28px rgba(0, 0, 0, .28);
    color: #ffffff;
}

.dg-top-cta {
    border-radius: 8px;
    color: #ffffff !important;
    padding: 14px 24px;
}

.dg-menu-toggle {
    background: transparent;
    border: 0;
    display: none;
    gap: 6px;
    padding: 8px;
}

.dg-menu-toggle span {
    background: #ffffff;
    display: block;
    height: 3px;
    transition: transform .2s ease, opacity .2s ease;
    width: 32px;
}

.dg-menu-toggle.is-open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.dg-menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.dg-menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.dg-hero,
.dg-blue-band,
.dg-steps,
.dg-prize-section,
.dg-levels,
.dg-qr-flow,
.dg-contact-section,
.dg-access,
.dg-footer {
    margin-left: auto;
    margin-right: auto;
    max-width: 1180px;
    width: calc(100% - 36px);
}

.dg-hero {
    align-content: center;
    box-sizing: border-box;
    display: grid;
    min-height: calc(100vh - 98px);
    min-height: calc(100svh - 98px);
    padding: 24px 0 64px;
    position: relative;
}

.dg-hero-copy {
    text-align: center;
}

.dg-hero-stage {
    display: grid;
    margin: 0 auto;
    min-height: 720px;
}

.dg-hero-slide {
    align-items: center;
    display: grid;
    gap: 42px;
    grid-area: 1 / 1;
    grid-template-columns: minmax(0, .96fr) minmax(430px, 1.04fr);
    opacity: 0;
    pointer-events: none;
    transform: translateY(18px);
    visibility: hidden;
}

.dg-hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    transition: opacity .35s ease, transform .35s ease;
    visibility: visible;
}

.dg-ribbon {
    background: #ffffff;
    border-bottom: 9px solid #69cdf0;
    box-shadow: 12px 12px 0 rgba(0, 31, 65, .72);
    color: #002f3f;
    display: inline-block;
    font-size: clamp(18px, 2vw, 25px);
    font-weight: 950;
    margin-bottom: 18px;
    padding: 13px 28px 11px;
    text-transform: uppercase;
    transform: skew(-8deg);
}

.dg-ribbon.white {
    border-bottom-color: #002f3f;
    box-shadow: 10px 10px 0 #69cdf0;
}

.dg-ribbon,
.dg-ribbon * {
    letter-spacing: 0;
}

.dg-hero h1,
.dg-blue-band h2,
.dg-prize-copy h2,
.dg-section-heading h2,
.dg-qr-copy h2,
.dg-contact-section h2,
.dg-access h2 {
    font-weight: 950;
    letter-spacing: 0;
    line-height: .86;
    text-transform: uppercase;
}

.dg-hero h1 {
    color: #ffffff;
    font-size: clamp(52px, 6.4vw, 92px);
    margin: 0 auto 26px;
    max-width: 760px;
    text-shadow: 0 7px 0 #002f3f, 0 13px 18px rgba(0, 0, 0, .38);
}

.dg-hero h1 span,
.dg-hero h1 strong {
    display: block;
}

.dg-title-cyan {
    color: #69cdf0;
    text-shadow: 0 4px 0 #ffffff, 0 10px 0 #002f3f, 0 16px 18px rgba(0, 0, 0, .32);
}

.dg-title-white {
    color: #ffffff;
}

.dg-hero h1 strong {
    color: #538DC9;
    text-shadow: 0 4px 0 #ffffff, 0 10px 0 #ffffff, 0 16px 18px rgba(0, 0, 0, .34);
}

.dg-points-title {
    padding-top: 10px;
}

.dg-hero-copy p,
.dg-prize-copy p,
.dg-qr-copy p,
.dg-access p {
    color: #ffffff;
    font-size: 22px;
    font-weight: 850;
    line-height: 1.45;
    margin: 0 auto;
    max-width: 720px;
    text-shadow: 0 2px 8px rgba(0, 30, 60, .36);
}

.dg-hero-dots {
    align-items: center;
    display: flex;
    gap: 12px;
    justify-content: center;
    margin: -20px auto 0;
}

.dg-hero-dots button {
    background: #ffffff;
    border: 3px solid #ffffff;
    box-shadow: 0 5px 0 #002f3f;
    cursor: pointer;
    height: 15px;
    padding: 0;
    transition: background .2s ease, transform .2s ease, width .2s ease;
    width: 42px;
}

.dg-hero-dots button.is-active {
    background: #69cdf0;
    transform: translateY(-2px);
    width: 74px;
}

.dg-hero-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-top: 28px;
}

.dg-main-btn,
.dg-secondary-btn,
.dg-blue-band a,
.dg-affiliate-popup a {
    border-radius: 16px;
    display: inline-flex;
    font-size: 18px;
    font-weight: 950;
    justify-content: center;
    padding: 16px 22px;
    text-decoration: none;
    text-transform: uppercase;
}

.dg-secondary-btn {
    background: #ffffff;
    border: 3px solid #002f3f;
    box-shadow: 0 8px 0 #69cdf0;
    color: #002f3f !important;
}

.dg-secondary-btn:hover,
.dg-secondary-btn:focus,
.dg-secondary-btn:visited {
    background: #ffffff;
    color: #002f3f !important;
}

.dg-legal-strip {
    background: #ffffff;
    border-top: 8px solid #69cdf0;
    color: #002f3f;
    display: inline-block;
    font-size: 16px;
    font-weight: 950;
    margin-top: 32px;
    padding: 12px 22px;
    text-transform: uppercase;
}

.dg-hero-art {
    min-height: 640px;
    position: relative;
}

.dg-person-art {
    align-items: center;
    display: flex;
    justify-content: center;
}

.dg-person-card {
    background: #07345d;
    border: 8px solid #ffffff;
    border-radius: 30px;
    border-bottom-width: 16px;
    box-shadow: 22px 26px 0 rgba(0, 52, 91, .82), 0 30px 80px rgba(0, 0, 0, .35);
    height: 640px;
    overflow: hidden;
    position: relative;
    transform: rotate(2.5deg);
    width: min(500px, 82vw);
}

.dg-person-card::before,
.dg-person-card::after {
    background: #69cdf0;
    content: "";
    height: 14px;
    position: absolute;
    transform: skew(-9deg);
    z-index: 2;
}

.dg-person-card::before {
    left: 34px;
    top: 18px;
    width: 110px;
}

.dg-person-card::after {
    bottom: 24px;
    right: 28px;
    width: 150px;
}

.dg-person-card-man {
    transform: rotate(-2.5deg);
}

.dg-person-card img {
    display: block;
    height: 100%;
    object-fit: cover;
    object-position: center;
    width: 100%;
}

.dg-floating-note,
.dg-points-mini {
    background: #ffffff;
    border-bottom: 9px solid #69cdf0;
    box-shadow: 10px 10px 0 #002f3f;
    color: #002f3f;
    padding: 16px 20px;
    position: absolute;
    text-transform: uppercase;
    transform: skew(-7deg);
    z-index: 4;
}

.dg-floating-note {
    left: -18px;
    right: auto;
    top: 74px;
}

.dg-points-mini {
    right: -8px;
    top: 72px;
}

.dg-floating-note span,
.dg-floating-note strong,
.dg-points-mini span,
.dg-points-mini strong,
.dg-points-mini small {
    display: block;
}

.dg-floating-note span,
.dg-points-mini span,
.dg-points-mini small {
    color: #538DC9;
    font-size: 13px;
    font-weight: 950;
}

.dg-floating-note strong,
.dg-points-mini strong {
    color: #002f3f;
    font-size: 24px;
    font-weight: 950;
    line-height: .9;
}

.dg-points-mini strong {
    color: #538DC9;
    font-size: 44px;
    text-shadow: 0 3px 0 #69cdf0;
}

.dg-points-art {
    align-items: center;
    display: flex;
    justify-content: center;
}

.dg-points-board {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(230, 250, 255, .92)),
        #ffffff;
    border: 8px solid #ffffff;
    border-bottom: 16px solid #69cdf0;
    box-shadow: 22px 26px 0 rgba(0, 52, 91, .82), 0 30px 80px rgba(0, 0, 0, .35);
    display: grid;
    gap: 16px;
    max-width: 520px;
    padding: 28px;
    position: relative;
    transform: rotate(2deg);
    width: min(520px, 84vw);
}

.dg-points-board::before {
    background: #002f3f;
    border-bottom: 8px solid #69cdf0;
    color: #ffffff;
    content: "Panel mensual";
    display: inline-block;
    font-size: 17px;
    font-weight: 950;
    left: -20px;
    padding: 10px 18px 9px;
    position: absolute;
    text-transform: uppercase;
    top: -26px;
    transform: skew(-7deg);
}

.dg-points-card,
.dg-points-progress {
    background: #07345d;
    border: 3px solid rgba(105, 205, 240, .82);
    box-shadow: 8px 8px 0 rgba(0, 22, 50, .88);
    color: #ffffff;
    padding: 22px;
}

.dg-points-card.main {
    background: linear-gradient(135deg, #538DC9, #69cdf0);
}

.dg-points-card span,
.dg-points-progress span {
    color: #ffffff;
    display: block;
    font-size: 14px;
    font-weight: 950;
    letter-spacing: 0;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.dg-points-card strong {
    color: #ffffff;
    display: block;
    font-size: clamp(34px, 5vw, 64px);
    font-weight: 950;
    line-height: .9;
    text-shadow: 0 5px 0 #002f3f;
    text-transform: uppercase;
}

.dg-points-card small,
.dg-points-progress small {
    color: rgba(255, 255, 255, .86);
    display: block;
    font-size: 15px;
    font-weight: 850;
    margin-top: 8px;
}

.dg-points-progress div {
    background: rgba(255, 255, 255, .32);
    height: 18px;
    margin-top: 14px;
}

.dg-points-progress i {
    background: #69cdf0;
    display: block;
    height: 100%;
    width: 72%;
}

.dg-promo-stack {
    height: 100%;
    position: relative;
}

.dg-promo-main,
.dg-promo-side {
    border: 8px solid #ffffff;
    box-shadow: 18px 22px 0 rgba(0, 52, 91, .82), 0 28px 70px rgba(0, 0, 0, .35);
    object-fit: cover;
    position: absolute;
}

.dg-promo-main {
    border-radius: 28px;
    height: 610px;
    left: 54px;
    top: 0;
    transform: rotate(-3deg);
    width: min(470px, 82vw);
}

.dg-promo-side {
    border-radius: 24px;
    height: 360px;
    right: 4px;
    top: 165px;
    transform: rotate(7deg);
    width: 290px;
}

.dg-qr-ticket {
    background: #ffffff;
    border-bottom: 10px solid #69cdf0;
    bottom: 18px;
    box-shadow: 10px 10px 0 #002f3f;
    color: #002f3f;
    left: 0;
    padding: 18px 24px;
    position: absolute;
    text-transform: uppercase;
    transform: skew(-7deg);
}

.dg-qr-ticket span,
.dg-qr-ticket strong {
    display: block;
}

.dg-qr-ticket span {
    color: #538DC9;
    font-size: 14px;
    font-weight: 950;
}

.dg-qr-ticket strong {
    font-size: 25px;
    font-weight: 950;
}

.dg-blue-band {
    align-items: center;
    background: linear-gradient(90deg, #538DC9, #69cdf0);
    border-bottom: 12px solid #ffffff;
    border-top: 12px solid #ffffff;
    box-shadow: 0 18px 0 #002f3f;
    color: #ffffff;
    display: flex;
    gap: 24px;
    justify-content: space-between;
    margin-bottom: 56px;
    padding: 34px;
    position: relative;
    text-transform: uppercase;
}

.dg-blue-band::before,
.dg-blue-band::after {
    background: #69cdf0;
    content: "";
    height: 18px;
    position: absolute;
    width: 190px;
}

.dg-blue-band::before {
    left: -24px;
    top: -26px;
}

.dg-blue-band::after {
    bottom: -26px;
    right: -24px;
}

.dg-blue-band span,
.dg-section-heading span,
.dg-contact-copy span,
.dg-access span,
.dg-prize-card span,
.dg-affiliate-popup > span {
    color: #d7f8ff;
    display: block;
    font-size: 13px;
    font-weight: 950;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.dg-blue-band h2,
.dg-prize-copy h2,
.dg-section-heading h2,
.dg-qr-copy h2,
.dg-contact-section h2,
.dg-access h2 {
    font-size: clamp(36px, 5vw, 64px);
    margin: 0;
}

.dg-prize-copy h2,
.dg-section-heading h2,
.dg-qr-copy h2 {
    text-shadow: 0 5px 0 #002f3f;
}

.dg-prize-copy h2 {
    line-height: .92;
    margin-bottom: 32px;
    max-width: 860px;
}

.dg-prize-copy p {
    background: #ffffff;
    border-left: 12px solid #69cdf0;
    box-shadow: 10px 10px 0 #002f3f;
    color: #002f3f;
    margin: 0;
    max-width: 760px;
    padding: 18px 22px;
    text-shadow: none;
}

.dg-blue-band a {
    background: #ffffff;
    color: #093d7a;
    flex: 0 0 auto;
}

.dg-steps {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding-bottom: 80px;
}

.dg-steps article,
.dg-level-grid article {
    background: rgba(255, 255, 255, .94);
    border: 5px solid #ffffff;
    box-shadow: 9px 10px 0 #002f3f;
    color: #002f3f;
    padding: 28px;
    position: relative;
}

.dg-steps article::before,
.dg-level-grid article::before {
    background: #69cdf0;
    content: "";
    height: 12px;
    left: 24px;
    position: absolute;
    top: -8px;
    width: 120px;
}

.dg-steps article > span {
    color: #538DC9;
    display: block;
    font-size: 56px;
    font-weight: 950;
    line-height: 1;
}

.dg-steps h3 {
    font-size: 30px;
    font-weight: 950;
    margin: 14px 0 10px;
    text-transform: uppercase;
}

.dg-steps p {
    color: #002f3f;
    font-size: 17px;
    font-weight: 850;
    line-height: 1.45;
    margin: 0;
}

.dg-prize-section {
    align-items: center;
    display: grid;
    gap: 34px;
    grid-template-columns: minmax(0, .92fr) minmax(360px, 1.08fr);
    padding: 18px 0 90px;
}

.dg-prize-card {
    background: #ffffff;
    border: 8px solid #ffffff;
    box-shadow: 18px 18px 0 #002f3f;
    color: #002f3f;
    overflow: hidden;
}

.dg-prize-card img {
    display: block;
    width: 100%;
}

.dg-prize-card div {
    border-top: 12px solid #69cdf0;
    padding: 24px;
}

.dg-prize-card span {
    color: #538DC9;
}

.dg-prize-card strong {
    display: block;
    font-size: 29px;
    font-weight: 950;
    line-height: 1.05;
    text-transform: uppercase;
}

.dg-levels {
    padding-bottom: 86px;
}

.dg-section-heading {
    margin-bottom: 26px;
    max-width: 880px;
}

.dg-level-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.dg-level-grid article span,
.dg-level-grid article strong,
.dg-level-grid article small {
    display: block;
    position: relative;
}

.dg-level-grid article span {
    color: #538DC9;
    font-size: 22px;
    font-weight: 950;
}

.dg-level-grid article strong {
    font-size: 33px;
    font-weight: 950;
    margin: 22px 0 8px;
    text-transform: uppercase;
}

.dg-level-grid article small {
    font-size: 15px;
    font-weight: 900;
}

.dg-qr-flow {
    align-items: center;
    display: grid;
    gap: 54px;
    grid-template-columns: minmax(0, .95fr) minmax(380px, 1.05fr);
    padding-bottom: 96px;
}

.dg-qr-copy h2 {
    max-width: 820px;
}

.dg-qr-copy p {
    background: rgba(0, 47, 63, .88);
    border-left: 12px solid #69cdf0;
    box-shadow: 10px 10px 0 rgba(255, 255, 255, .96);
    margin: 28px 0 0;
    max-width: 760px;
    padding: 20px 22px;
    text-shadow: none;
}

.dg-qr-flow-steps {
    display: grid;
    gap: 12px;
    margin-top: 34px;
}

.dg-qr-flow-steps span {
    align-items: center;
    background: #ffffff;
    box-shadow: 7px 7px 0 #002f3f;
    color: #002f3f;
    display: flex;
    font-size: 17px;
    font-weight: 950;
    gap: 12px;
    padding: 12px 14px;
    text-transform: uppercase;
}

.dg-qr-flow-steps strong {
    align-items: center;
    background: #69cdf0;
    color: #002f3f;
    display: inline-flex;
    flex: 0 0 auto;
    height: 34px;
    justify-content: center;
    width: 34px;
}

.dg-talker-stage {
    align-items: center;
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.dg-qr-poster {
    display: block;
    filter: drop-shadow(24px 28px 0 rgba(0, 47, 63, .86)) drop-shadow(0 30px 70px rgba(0, 0, 0, .32));
    height: auto;
    max-height: 720px;
    object-fit: contain;
    transform: rotate(-3deg);
    width: min(430px, 100%);
}

.dg-talker-card {
    background:
        linear-gradient(160deg, rgba(255, 255, 255, .96) 0 44%, rgba(105, 205, 240, .16) 44.2% 100%),
        #ffffff;
    border: 9px solid #ffffff;
    border-bottom: 22px solid #002f3f;
    box-shadow: 24px 28px 0 rgba(0, 47, 63, .86), 0 30px 90px rgba(0, 0, 0, .34);
    color: #002f3f;
    max-width: 430px;
    padding: 30px 28px 24px;
    position: relative;
    text-align: center;
    transform: rotate(-3deg);
    width: 100%;
}

.dg-talker-card::before {
    background: #69cdf0;
    bottom: -32px;
    content: "";
    height: 12px;
    left: 10%;
    position: absolute;
    width: 80%;
}

.dg-talker-brand {
    color: #002f3f;
    display: inline-flex;
    flex-direction: column;
    line-height: .78;
    margin-bottom: 18px;
}

.dg-talker-brand strong {
    font-size: 48px;
    font-weight: 300;
}

.dg-talker-brand small {
    align-self: flex-end;
    font-size: 22px;
    font-weight: 600;
}

.dg-talker-ribbon {
    background: #002f3f;
    border-bottom: 7px solid #69cdf0;
    color: #ffffff;
    display: inline-block;
    font-size: 16px;
    font-weight: 950;
    margin-bottom: 18px;
    padding: 10px 18px;
    text-transform: uppercase;
    transform: skew(-7deg);
}

.dg-talker-card h3 {
    color: #538DC9;
    font-size: 38px;
    font-weight: 950;
    line-height: .92;
    margin: 0 auto 22px;
    text-shadow: 0 3px 0 #ffffff, 0 7px 0 #69cdf0;
    text-transform: uppercase;
}

.dg-talker-qr-wrap {
    background: #ffffff;
    border: 8px solid #002f3f;
    box-shadow: 9px 9px 0 #69cdf0;
    margin: 0 auto 22px;
    padding: 12px;
    width: min(235px, 80%);
}

.dg-mock-qr {
    aspect-ratio: 1;
    background: #ffffff;
    display: grid;
    gap: 2px;
    grid-template-columns: repeat(17, 1fr);
    width: 100%;
}

.dg-mock-qr span {
    background: transparent;
}

.dg-mock-qr .is-dark {
    background: #002f3f;
}

.dg-talker-card p {
    color: #002f3f;
    font-size: 22px;
    font-weight: 950;
    line-height: 1.05;
    margin: 0 0 8px;
    text-transform: uppercase;
}

.dg-talker-card > small {
    color: #538DC9;
    display: block;
    font-weight: 950;
    text-transform: uppercase;
}

.dg-contact-section {
    background:
        linear-gradient(125deg, rgba(0, 47, 63, .98) 0 48%, rgba(0, 137, 187, .92) 48.2% 100%),
        #002f3f;
    border: 8px solid #ffffff;
    border-bottom: 16px solid #69cdf0;
    box-shadow: 18px 18px 0 #002f3f;
    display: grid;
    gap: 54px;
    grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
    margin-bottom: 74px;
    padding: 70px;
}

.dg-contact-copy h2 {
    color: #69cdf0;
    line-height: .95;
    margin-bottom: 24px;
    text-shadow: 0 5px 0 #002f3f;
    text-transform: none;
}

.dg-contact-copy span {
    color: #ffffff;
    font-size: 38px;
    line-height: 1.05;
    margin: 0;
    text-transform: none;
}

.dg-contact-copy p {
    color: rgba(255, 255, 255, .9);
    font-size: 19px;
    font-weight: 750;
    line-height: 1.45;
    margin: 0;
    max-width: 650px;
}

.dg-contact-links {
    display: grid;
    gap: 22px;
    margin-top: 36px;
}

.dg-contact-links a {
    align-items: center;
    color: #ffffff;
    display: inline-flex;
    font-size: 22px;
    font-weight: 850;
    gap: 18px;
    text-decoration: none;
}

.dg-contact-links i {
    color: #69cdf0;
    font-size: 28px;
    width: 30px;
}

.dg-contact-form {
    background: rgba(255, 255, 255, .12);
    border: 3px solid rgba(255, 255, 255, .72);
    box-shadow: 12px 12px 0 rgba(0, 47, 63, .72);
    padding: 28px;
}

.dg-contact-form h2 {
    color: #ffffff;
    font-size: clamp(34px, 4.6vw, 54px);
    line-height: 1.08;
    margin-bottom: 28px;
    text-transform: none;
}

.dg-form-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dg-contact-form input,
.dg-contact-form textarea {
    background: rgba(255, 255, 255, .96);
    border: 3px solid #ffffff;
    border-radius: 6px;
    box-shadow: 0 5px 0 #002f3f;
    color: #002f3f;
    font: inherit;
    font-size: 20px;
    font-weight: 750;
    min-height: 62px;
    padding: 0 18px;
    width: 100%;
}

.dg-contact-form textarea {
    min-height: 126px;
    margin-top: 18px;
    padding-top: 16px;
    resize: vertical;
}

.dg-contact-form input::placeholder,
.dg-contact-form textarea::placeholder {
    color: rgba(0, 47, 63, .56);
}

.dg-contact-form input:focus,
.dg-contact-form textarea:focus {
    border-color: #69cdf0;
    box-shadow: 0 5px 0 #002f3f, 0 0 0 4px rgba(105, 205, 240, .28);
    outline: 0;
}

.dg-contact-form button {
    align-items: center;
    background: linear-gradient(180deg, #69cdf0, #538DC9);
    border: 3px solid #ffffff;
    border-radius: 6px;
    box-shadow: 0 8px 0 #002f3f;
    color: #ffffff;
    display: inline-flex;
    font-size: 20px;
    font-weight: 950;
    gap: 10px;
    justify-content: center;
    margin-top: 18px;
    min-height: 62px;
    text-transform: uppercase;
    width: 100%;
}

.dg-access {
    align-items: center;
    background: #ffffff;
    border-bottom: 14px solid #69cdf0;
    box-shadow: 18px 18px 0 #002f3f;
    color: #002f3f;
    display: flex;
    gap: 28px;
    justify-content: space-between;
    margin-bottom: 70px;
    padding: 34px;
}

.dg-access span {
    color: #538DC9;
}

.dg-access p {
    color: #002f3f;
    font-size: 19px;
    margin: 16px 0;
    max-width: 780px;
    text-shadow: none;
}

.dg-access code {
    background: #e7f8fc;
    border: 2px solid #69cdf0;
    color: #002f3f;
    display: inline-block;
    font-weight: 850;
    max-width: 100%;
    overflow-wrap: anywhere;
    padding: 10px 12px;
}

.dg-footer {
    color: #002f3f;
    padding: 28px 0 42px;
}

.dg-legal-footer {
    background:
        linear-gradient(135deg, rgba(0, 47, 63, .98), rgba(83, 141, 201, .94)),
        #002f3f;
    border: 6px solid #ffffff;
    border-bottom: 14px solid #69cdf0;
    box-shadow: 18px 18px 0 rgba(0, 47, 63, .82);
    color: #ffffff;
    display: grid;
    gap: 34px;
    grid-template-columns: minmax(0, 1.25fr) minmax(390px, .75fr);
    margin-bottom: 34px;
    padding: 34px;
}

.dg-legal-warning {
    align-items: flex-start;
    display: flex;
    gap: 22px;
}

.dg-age-mark {
    align-items: center;
    background: #ffffff;
    border: 6px solid #ff8fa5;
    border-radius: 999px;
    color: #002f3f;
    display: inline-flex;
    flex: 0 0 72px;
    font-size: 31px;
    font-weight: 950;
    height: 72px;
    justify-content: center;
    line-height: 1;
    position: relative;
    width: 72px;
}

.dg-age-mark::after {
    background: #ff8fa5;
    content: "";
    height: 7px;
    left: 8px;
    position: absolute;
    right: 8px;
    top: 50%;
    transform: rotate(-45deg);
}

.dg-legal-warning strong {
    color: #ffffff;
    display: block;
    font-size: clamp(24px, 2.5vw, 34px);
    font-weight: 950;
    line-height: 1.08;
    margin-bottom: 20px;
}

.dg-legal-warning p {
    color: rgba(255, 255, 255, .92);
    font-size: 18px;
    font-weight: 650;
    line-height: 1.5;
    margin: 0;
}

.dg-legal-warning a {
    color: #ffffff;
    display: inline-block;
    font-weight: 950;
    text-decoration-color: #69cdf0;
    text-decoration-thickness: 3px;
    text-underline-offset: 4px;
}

.dg-legal-logos {
    align-items: center;
    display: grid;
    gap: 22px;
    grid-template-columns: 1fr 1fr;
}

.dg-legal-logos img {
    display: block;
    max-height: 76px;
    max-width: 100%;
    object-fit: contain;
}

.dg-powered-by {
    align-items: center;
    display: grid;
    gap: 8px;
    grid-column: 1 / -1;
    justify-items: start;
}

.dg-powered-by span {
    color: #ffffff;
    display: block;
    font-size: 19px;
    font-weight: 850;
}

.dg-powered-by img {
    max-height: 54px;
}

.dg-footer-bottom {
    align-items: center;
    background: #ffffff;
    border-bottom: 8px solid #69cdf0;
    box-shadow: 10px 10px 0 rgba(0, 47, 63, .76);
    color: #002f3f;
    display: flex;
    gap: 24px;
    justify-content: space-between;
    padding: 22px 26px;
}

.dg-footer-bottom strong,
.dg-footer-bottom span {
    display: block;
}

.dg-footer-bottom strong {
    color: #002f3f;
    font-size: 42px;
}

.dg-footer-bottom span {
    font-weight: 850;
}

.dg-footer-bottom a {
    color: #002f3f;
    font-weight: 950;
    text-transform: uppercase;
}

.dg-affiliate-popup {
    background: #ffffff;
    border: 6px solid #69cdf0;
    bottom: 22px;
    box-shadow: 12px 12px 0 #002f3f, 0 18px 50px rgba(0, 0, 0, .32);
    color: #002f3f;
    max-width: 380px;
    padding: 28px;
    position: fixed;
    right: 22px;
    transition: transform .25s ease, opacity .25s ease;
    width: calc(100% - 44px);
    z-index: 60;
}

.dg-affiliate-popup.is-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(24px);
}

.dg-popup-close {
    -webkit-appearance: none;
    appearance: none;
    background: #002f3f;
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    cursor: pointer;
    height: 36px;
    padding: 0;
    position: absolute;
    right: 10px;
    top: 10px;
    width: 36px;
}

.dg-popup-close::before,
.dg-popup-close::after {
    background: #ffffff;
    border-radius: 999px;
    content: "";
    height: 5px;
    left: 50%;
    position: absolute;
    top: 50%;
    transform-origin: center;
    width: 20px;
}

.dg-popup-close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.dg-popup-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.dg-affiliate-popup > span {
    color: #538DC9;
}

.dg-affiliate-popup h2 {
    color: #002f3f;
    font-size: 38px;
    font-weight: 950;
    line-height: .92;
    margin: 0 28px 12px 0;
    text-transform: uppercase;
}

.dg-affiliate-popup p {
    font-size: 17px;
    font-weight: 850;
    line-height: 1.35;
    margin-bottom: 18px;
}

.dg-popup-actions {
    display: grid;
    gap: 10px;
}

.dg-affiliate-popup .dg-popup-primary,
.dg-affiliate-popup .dg-popup-whatsapp {
    align-items: center;
    background: linear-gradient(180deg, #69cdf0, #538DC9);
    border: 3px solid #002f3f;
    box-shadow: 0 7px 0 #002f3f;
    color: #ffffff;
    gap: 9px;
    width: 100%;
}

.dg-popup-whatsapp .fab {
    font-size: 22px;
    line-height: 1;
}

.socios-app {
    display: flex;
    min-height: 100vh;
}

.socios-sidebar {
    background: rgba(6, 8, 14, .76);
    border-right: 1px solid var(--ds-line);
    bottom: 0;
    display: flex;
    flex-direction: column;
    left: 0;
    padding: 20px 16px;
    position: fixed;
    top: 0;
    width: var(--sidebar-width);
    z-index: 20;
}

.socios-brand {
    align-items: center;
    color: var(--ds-text);
    display: flex;
    gap: 12px;
    margin-bottom: 22px;
    text-decoration: none;
}

.socios-brand:hover {
    color: var(--ds-text);
}

.socios-brand-mark {
    align-items: center;
    background: linear-gradient(145deg, var(--ds-gold), var(--ds-gold-2));
    border-radius: 14px;
    color: #1a1201;
    display: inline-flex;
    font-weight: 900;
    height: 42px;
    justify-content: center;
    width: 42px;
}

.socios-brand strong,
.socios-brand small {
    display: block;
    line-height: 1.1;
}

.socios-brand small {
    color: var(--ds-muted);
    font-size: 12px;
    margin-top: 4px;
}

.socios-nav {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 20px;
    overflow-y: auto;
}

.socios-nav-title,
.socios-kicker,
.metric-label {
    color: var(--ds-muted);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.socios-nav-title {
    margin: 0 10px 8px;
}

.socios-nav-link {
    border: 1px solid transparent;
    border-radius: 11px;
    color: #d9dee8;
    display: block;
    font-weight: 700;
    padding: 10px 12px;
    text-decoration: none;
}

.socios-nav-link:hover,
.socios-nav-link.active {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .12);
    color: #ffffff;
}

.socios-nav-link.active {
    box-shadow: inset 0 0 0 1px rgba(255, 199, 44, .22);
}

.socios-sidebar-card,
.glass-card,
.gold-hero,
.level-table-card,
.page-heading,
.public-card {
    background: var(--ds-panel);
    border: 1px solid var(--ds-line);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), 0 24px 80px rgba(0, 0, 0, .28);
    backdrop-filter: blur(18px);
}

.socios-sidebar-card {
    border-radius: 14px;
    color: var(--ds-muted);
    font-size: 12px;
    margin-top: 18px;
    padding: 14px;
}

.socios-sidebar-card strong {
    color: var(--ds-text);
    display: block;
    font-size: 14px;
}

.socios-main {
    margin-left: var(--sidebar-width);
    min-width: 0;
    width: calc(100% - var(--sidebar-width));
}

.socios-topbar {
    align-items: center;
    background: rgba(7, 9, 15, .72);
    border-bottom: 1px solid var(--ds-line);
    display: flex;
    gap: 14px;
    justify-content: space-between;
    min-height: 74px;
    padding: 16px 28px;
    position: sticky;
    top: 0;
    z-index: 15;
    backdrop-filter: blur(18px);
}

.socios-topbar strong {
    display: block;
    font-size: 22px;
}

.socios-top-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.inline-form {
    display: inline-flex;
    margin: 0;
}

.socios-content {
    padding: 28px;
}

.login-stage {
    align-items: center;
    display: flex;
    justify-content: center;
    min-height: 100vh;
    padding: 24px;
}

.login-panel {
    background: rgba(10, 12, 20, .82);
    border: 1px solid var(--ds-line);
    border-radius: 22px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), 0 28px 90px rgba(0, 0, 0, .38);
    max-width: 460px;
    padding: 28px;
    width: 100%;
    backdrop-filter: blur(18px);
}

.login-brand {
    align-items: center;
    display: flex;
    gap: 12px;
    margin-bottom: 28px;
}

.login-brand strong,
.login-brand small {
    display: block;
}

.login-brand small,
.login-copy p {
    color: var(--ds-muted);
}

.login-copy h1 {
    font-size: 34px;
    margin: 8px 0;
}

.login-panel .form-label,
.login-panel .form-check-label {
    color: var(--ds-text);
    font-weight: 700;
}

.login-panel .form-control {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .14);
    color: var(--ds-text);
}

.login-panel .form-control:focus {
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 199, 44, .72);
    box-shadow: 0 0 0 .2rem rgba(255, 199, 44, .18);
    color: var(--ds-text);
}

.gold-hero {
    --level-color: var(--ds-gold);
    --level-color-light: #ffe47a;
    --level-color-dark: #6b4300;
    --level-contrast: #241500;
    --level-rgb: 255, 199, 44;
    border-radius: 24px;
    margin: 0 auto 24px;
    max-width: 1120px;
    overflow: hidden;
    padding: 44px;
    position: relative;
    text-align: center;
}

.gold-hero::before {
    background: radial-gradient(circle, rgba(var(--level-rgb), .24), transparent 62%);
    content: "";
    height: 520px;
    left: 50%;
    position: absolute;
    top: -270px;
    transform: translateX(-50%);
    width: 520px;
}

.gold-badge {
    background: rgba(var(--level-rgb), .08);
    border: 1px solid rgba(var(--level-rgb), .38);
    border-radius: 999px;
    color: var(--level-color);
    display: inline-flex;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0;
    padding: 8px 14px;
    position: relative;
    text-transform: uppercase;
}

.level-orb {
    align-items: center;
    background: linear-gradient(145deg, var(--level-color-light), var(--level-color));
    border-radius: 24px;
    box-shadow: 0 0 54px rgba(var(--level-rgb), .34), inset 0 1px 0 rgba(255, 255, 255, .45);
    color: var(--level-contrast);
    display: flex;
    height: 150px;
    justify-content: center;
    margin: 24px auto 22px;
    position: relative;
    width: 150px;
}

.level-trophy-icon {
    color: var(--level-color);
    display: inline-block;
    flex: 0 0 auto;
    height: 48px;
    overflow: visible;
    vertical-align: middle;
    width: 48px;
}

.level-orb-icon {
    color: var(--level-contrast);
    filter: drop-shadow(0 10px 18px rgba(0, 0, 0, .22));
    height: 96px;
    width: 96px;
}

.trophy-glow {
    fill: currentColor;
    opacity: .16;
}

.trophy-cup,
.trophy-stem,
.trophy-base {
    fill: currentColor;
}

.trophy-handle {
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 8;
}

.trophy-shine {
    fill: #fff;
    opacity: .38;
}

.gold-hero h1 {
    font-size: clamp(44px, 7vw, 74px);
    font-weight: 900;
    line-height: .95;
    margin: 0;
    position: relative;
}

.gold-hero h1 strong {
    color: var(--level-color);
    text-shadow: 0 0 28px rgba(var(--level-rgb), .28);
}

.gold-hero p {
    color: var(--ds-muted);
    font-size: 18px;
    margin: 18px auto 0;
    max-width: 720px;
    position: relative;
}

.gold-metrics {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 34px auto 24px;
    max-width: 820px;
    position: relative;
}

.gold-metrics article,
.reward-mini,
.stack-item,
.level-table article {
    background: rgba(255, 255, 255, .06);
    border: 1px solid var(--ds-line);
    border-radius: 16px;
}

.gold-metrics article {
    padding: 18px 20px;
    text-align: left;
}

.gold-metrics span,
.reward-card span,
.muted {
    color: var(--ds-muted);
}

.gold-metrics strong {
    color: var(--level-color);
    display: block;
    font-size: 34px;
    line-height: 1;
    margin-top: 6px;
}

.level-progress-card {
    background: rgba(7, 8, 12, .48);
    border: 1px solid rgba(var(--level-rgb), .28);
    border-radius: 18px;
    margin: 0 auto;
    max-width: 820px;
    padding: 20px;
    position: relative;
    text-align: left;
}

.progress-heading,
.card-heading,
.ledger-list > div,
.stat-list > div {
    align-items: center;
    display: flex;
    gap: 14px;
    justify-content: space-between;
}

.progress-heading span {
    color: var(--ds-muted);
    font-weight: 800;
    text-transform: uppercase;
}

.progress-heading strong {
    color: var(--level-color);
}

.level-progress-track {
    background: rgba(255, 255, 255, .09);
    border-radius: 999px;
    height: 14px;
    margin: 18px 0 10px;
    overflow: hidden;
}

.level-progress-track span {
    background: linear-gradient(90deg, var(--level-color), var(--level-color-light));
    border-radius: inherit;
    display: block;
    height: 100%;
}

.level-scale-name {
    color: var(--level-color);
    font-weight: 900;
}

.level-card-title,
.metric-level-name {
    align-items: center;
    color: var(--level-color);
    display: inline-flex;
    gap: 10px;
}

.level-title-icon {
    height: 34px;
    width: 34px;
}

.level-metric-card {
    border-color: rgba(var(--level-rgb), .32);
    box-shadow: inset 0 0 28px rgba(var(--level-rgb), .08);
}

.metric-level-icon {
    height: 40px;
    width: 40px;
}

.progress-scale {
    color: var(--ds-muted);
    display: flex;
    font-size: 13px;
    justify-content: space-between;
}

.socios-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.two-cols {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.glass-card,
.page-heading,
.level-table-card {
    border-radius: 22px;
    padding: 22px;
}

.wide-card {
    grid-column: span 2;
}

.qr-card,
.activity-card {
    grid-column: span 2;
}

.qr-card {
    text-align: center;
}

.qr-card.xl {
    grid-column: auto;
}

.qr-image {
    background: #ffffff;
    border-radius: 18px;
    display: block;
    margin: 18px auto;
    max-width: 230px;
    padding: 12px;
    width: 100%;
}

.qr-image.large {
    max-width: 360px;
}

.card-heading {
    margin-bottom: 16px;
}

.card-heading h2,
.page-heading h1,
.level-table-card h2,
.reward-card h2,
.public-card h1 {
    font-weight: 850;
    letter-spacing: 0;
    margin: 0;
}

.card-heading h2 {
    font-size: 22px;
}

.page-heading {
    align-items: center;
    display: flex;
    gap: 16px;
    justify-content: space-between;
    margin-bottom: 18px;
}

.page-heading p {
    color: var(--ds-muted);
    margin: 8px 0 0;
}

.page-heading > .table-actions {
    justify-content: flex-end;
    max-width: 680px;
}

.activity-bars {
    align-items: end;
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(7, 1fr);
    min-height: 180px;
}

.activity-bar {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: end;
}

.activity-bar span {
    background: linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,255,255,.14));
    border-radius: 999px;
    display: block;
    min-height: 34px;
    width: 100%;
}

.activity-bar span.active {
    background: linear-gradient(180deg, var(--ds-gold), rgba(255, 199, 44, .22));
}

.activity-bar small {
    color: var(--ds-muted);
    margin-top: 10px;
}

.benefit-list {
    display: grid;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.benefit-list li {
    background: rgba(47, 226, 139, .09);
    border: 1px solid rgba(47, 226, 139, .18);
    border-radius: 12px;
    padding: 12px;
}

.stack-list,
.ledger-list,
.stat-list {
    display: grid;
    gap: 10px;
}

.stack-item,
.reward-mini {
    padding: 13px;
}

.stack-item strong,
.stack-item span,
.reward-mini strong,
.reward-mini span {
    display: block;
}

.stack-item span,
.reward-mini span {
    color: var(--ds-muted);
    margin-top: 5px;
}

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

.ledger-list > div,
.stat-list > div {
    border-bottom: 1px solid var(--ds-line);
    padding: 10px 0;
}

.positive {
    color: var(--ds-green);
}

.negative {
    color: var(--ds-red);
}

.level-table-card {
    margin-top: 18px;
}

.level-table {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 16px;
}

.level-table article {
    min-height: 130px;
    padding: 18px;
}

.level-table article.current {
    border-color: rgba(var(--level-rgb), .46);
    box-shadow: inset 0 0 40px rgba(var(--level-rgb), .13), 0 0 24px rgba(var(--level-rgb), .1);
}

.level-table span,
.level-table strong,
.level-table small {
    display: block;
}

.level-table span {
    color: var(--level-color);
    font-weight: 900;
}

.level-table-icon {
    align-items: center;
    background: rgba(var(--level-rgb), .12);
    border: 1px solid rgba(var(--level-rgb), .22);
    border-radius: 14px;
    color: var(--level-color);
    display: inline-flex;
    height: 54px;
    justify-content: center;
    margin-bottom: 12px;
    width: 54px;
}

.level-table-icon .level-trophy-icon {
    height: 36px;
    width: 36px;
}

.level-table strong {
    font-size: 22px;
    margin: 12px 0 4px;
}

.level-table small {
    color: var(--ds-muted);
}

.reward-catalog {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.reward-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.level-admin-card {
    border-color: rgba(var(--level-rgb), .26);
    box-shadow: inset 0 0 30px rgba(var(--level-rgb), .08);
}

.level-admin-card span,
.level-admin-card h2,
.level-admin-card strong {
    color: var(--level-color);
}

.level-admin-icon {
    align-items: center;
    background: linear-gradient(145deg, rgba(var(--level-rgb), .18), rgba(255, 255, 255, .04));
    border: 1px solid rgba(var(--level-rgb), .24);
    border-radius: 16px;
    display: inline-flex;
    height: 68px;
    justify-content: center;
    width: 68px;
}

.level-admin-icon .level-trophy-icon {
    height: 46px;
    width: 46px;
}

.reward-card p {
    color: var(--ds-muted);
    flex: 1;
}

.reward-availability {
    color: var(--ds-muted);
    display: block;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .04em;
    margin: 6px 0 14px;
    text-transform: uppercase;
}

.reward-availability.available {
    color: var(--ds-cyan);
}

.redeem-confirm-wrap {
    display: flex;
    justify-content: center;
}

.redeem-confirm-card {
    max-width: 760px;
    width: 100%;
}

.redeem-confirm-card h2 {
    font-size: clamp(30px, 5vw, 48px);
    font-weight: 900;
    line-height: 1;
    margin: 10px 0 12px;
}

.redeem-confirm-card > p {
    color: var(--ds-muted);
    font-size: 17px;
}

.redeem-summary {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 24px 0;
}

.redeem-summary div {
    background: rgba(255, 255, 255, .06);
    border: 1px solid var(--ds-line);
    border-radius: 16px;
    padding: 16px;
}

.redeem-summary span,
.redeem-summary strong {
    display: block;
}

.redeem-summary span {
    color: var(--ds-muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.redeem-summary strong {
    font-size: 28px;
    line-height: 1;
    margin-top: 8px;
}

.redeem-summary .spend {
    border-color: rgba(255, 199, 44, .3);
    box-shadow: inset 0 0 28px rgba(255, 199, 44, .08);
}

.redeem-summary .spend strong {
    color: var(--ds-gold);
}

.redeem-warning {
    background: rgba(49, 234, 223, .09);
    border: 1px solid rgba(49, 234, 223, .22);
    border-radius: 14px;
    color: #d6fff9;
    padding: 14px 16px;
}

.redeem-warning.danger {
    background: rgba(255, 107, 107, .1);
    border-color: rgba(255, 107, 107, .3);
    color: #ffd6d6;
}

.metric-big {
    display: block;
    font-size: 38px;
    line-height: 1;
    margin-top: 10px;
}

.metric-big.metric-level-name {
    align-items: center;
    color: var(--level-color);
    display: inline-flex;
}

.socios-badge {
    border-radius: 999px;
    display: inline-flex;
    font-size: 11px;
    font-weight: 900;
    padding: 7px 10px;
}

.badge-good {
    background: rgba(47, 226, 139, .14);
    color: var(--ds-green);
}

.badge-warn {
    background: rgba(255, 199, 44, .14);
    color: var(--ds-gold);
}

.badge-danger {
    background: rgba(255, 107, 107, .14);
    color: var(--ds-red);
}

.badge-neutral {
    background: rgba(255, 255, 255, .1);
    color: var(--ds-muted);
}

.btn-neon {
    background: linear-gradient(135deg, var(--ds-gold), var(--ds-gold-2));
    border: 0;
    color: #1b1200;
    font-weight: 900;
}

.btn-neon:hover,
.btn-neon:focus {
    color: #1b1200;
    filter: brightness(1.05);
}

.btn-glass {
    background: rgba(255, 255, 255, .08);
    border: 1px solid var(--ds-line);
    color: var(--ds-text);
    font-weight: 800;
}

.btn-glass:hover,
.btn-glass:focus {
    background: rgba(255, 255, 255, .14);
    color: var(--ds-text);
}

.text-link {
    color: var(--ds-cyan);
    font-weight: 800;
    text-decoration: none;
}

.table-card {
    overflow-x: auto;
}

.socios-table {
    border-collapse: collapse;
    min-width: 760px;
    width: 100%;
}

.socios-table th,
.socios-table td {
    border-bottom: 1px solid var(--ds-line);
    padding: 13px 12px;
    vertical-align: middle;
}

.socios-table th {
    color: var(--ds-muted);
    font-size: 12px;
    text-transform: uppercase;
}

.socios-table code {
    background: rgba(0, 0, 0, .28);
    border: 1px solid var(--ds-line);
    border-radius: 10px;
    color: #d6fff9;
    display: inline-block;
    max-width: 360px;
    overflow: hidden;
    padding: 7px 9px;
    text-overflow: ellipsis;
    vertical-align: middle;
    white-space: nowrap;
}

.qr-admin-table {
    min-width: 1040px;
}

.qr-admin-preview {
    align-items: center;
    display: flex;
    gap: 12px;
    min-width: 180px;
}

.qr-admin-preview img {
    background: #ffffff;
    border-radius: 10px;
    height: 58px;
    padding: 5px;
    width: 58px;
}

.qr-admin-preview strong,
.socios-table td > strong,
.socios-table td > span {
    display: block;
}

.socios-table td > span {
    color: var(--ds-muted);
    font-size: 12px;
    margin-top: 3px;
}

.table-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.table-actions form {
    margin: 0;
}

.api-card code,
.api-card pre {
    background: rgba(0, 0, 0, .34);
    border: 1px solid var(--ds-line);
    border-radius: 12px;
    color: #d6fff9;
    display: block;
    padding: 14px;
    white-space: pre-wrap;
}

.public-landing {
    align-items: center;
    display: flex;
    justify-content: center;
    min-height: 100vh;
    padding: 24px;
}

.public-card {
    border-radius: 28px;
    max-width: 560px;
    padding: 34px;
    text-align: center;
}

.public-card h1 {
    font-size: clamp(38px, 7vw, 64px);
    margin-top: 22px;
}

.public-card p {
    color: var(--ds-muted);
    font-size: 18px;
    margin: 16px 0 24px;
}

.public-meta {
    background: rgba(255, 255, 255, .06);
    border: 1px solid var(--ds-line);
    border-radius: 16px;
    margin-bottom: 18px;
    padding: 16px;
}

.public-meta span,
.public-meta strong {
    display: block;
}

.public-meta span {
    color: var(--ds-muted);
}

.public-card small {
    color: var(--ds-muted);
    display: block;
    margin-top: 14px;
}

.form-group {
    margin-bottom: 1rem;
}

.form-card .form-label {
    color: var(--ds-muted);
    font-weight: 800;
}

.form-card .form-control,
.form-card .form-select {
    background: rgba(255, 255, 255, .08);
    border: 1px solid var(--ds-line);
    color: var(--ds-text);
}

.form-card .form-control:focus,
.form-card .form-select:focus {
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 199, 44, .54);
    box-shadow: 0 0 0 .2rem rgba(255, 199, 44, .12);
    color: var(--ds-text);
}

.form-card .form-select option {
    background: #11141d;
    color: var(--ds-text);
}

.qr-form-note {
    background: rgba(255, 255, 255, .06);
    border: 1px solid var(--ds-line);
    border-radius: 14px;
    color: var(--ds-muted);
    margin-top: 18px;
    padding: 14px;
}

.qr-form-note strong {
    color: var(--ds-text);
    display: block;
    margin-bottom: 4px;
}

.qr-form-note code {
    color: var(--ds-cyan);
}

.form-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

@media (max-width: 1180px) {
    .dg-topbar {
        grid-template-columns: 220px 1fr auto auto;
    }

    .dg-hero-slide,
    .dg-prize-section,
    .dg-qr-flow,
    .dg-contact-section {
        grid-template-columns: 1fr;
    }

    .dg-hero-stage {
        min-height: 1160px;
    }

    .dg-hero-art {
        min-height: 650px;
    }

    .dg-promo-main {
        left: calc(50% - 270px);
    }

    .dg-promo-side {
        right: calc(50% - 360px);
    }

    .dg-level-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .socios-grid,
    .stats-grid,
    .reward-catalog,
    .level-table {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .dg-topbar {
        grid-template-columns: 1fr auto auto;
    }

    .dg-logo {
        order: 1;
    }

    .dg-top-cta {
        order: 2;
    }

    .dg-menu-toggle {
        order: 3;
    }

    .dg-main-menu {
        background: rgba(2, 18, 38, .96);
        border: 2px solid rgba(105, 205, 240, .5);
        box-shadow: 8px 8px 0 #002f3f;
        display: none;
        gap: 0;
        grid-column: 1 / -1;
        justify-content: stretch;
        margin-top: 8px;
        order: 4;
        padding: 8px;
    }

    .dg-main-menu.is-open {
        display: grid;
    }

    .dg-main-menu a {
        border-bottom: 1px solid rgba(255, 255, 255, .12);
        padding: 14px 12px;
    }

    .dg-main-menu a:last-child {
        border-bottom: 0;
    }

    .dg-main-menu a::before {
        display: none;
    }

    .dg-menu-toggle {
        align-items: center;
        display: grid;
    }

    .dg-blue-band,
    .dg-access,
    .dg-footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .dg-legal-footer {
        grid-template-columns: 1fr;
    }

    .dg-contact-section {
        padding: 48px;
    }

    .dg-steps {
        grid-template-columns: 1fr;
    }

    .socios-app {
        display: block;
    }

    .socios-sidebar {
        border-bottom: 1px solid var(--ds-line);
        border-right: 0;
        position: static;
        width: 100%;
    }

    .socios-nav {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .socios-nav-group {
        flex: 0 0 190px;
    }

    .socios-sidebar-card {
        display: none;
    }

    .socios-main {
        margin-left: 0;
        width: 100%;
    }
}

@media (max-width: 720px) {
    .dg-topbar {
        gap: 10px;
        padding-top: 14px;
        width: calc(100% - 20px);
    }

    .dg-logo span {
        font-size: 25px;
    }

    .dg-logo small {
        font-size: 12px;
    }

    .dg-top-cta {
        box-shadow: none;
        font-size: 12px;
        padding: 9px 11px;
    }

    .dg-menu-toggle {
        padding: 6px;
    }

    .dg-menu-toggle span {
        height: 2px;
        width: 28px;
    }

    .dg-hero,
    .dg-blue-band,
    .dg-steps,
    .dg-prize-section,
    .dg-levels,
    .dg-qr-flow,
    .dg-contact-section,
    .dg-access,
    .dg-footer {
        width: calc(100% - 24px);
    }

    .dg-hero {
        padding: 76px 0 44px;
    }

    .dg-hero-stage {
        min-height: 990px;
    }

    .dg-hero-slide {
        gap: 24px;
    }

    .dg-logo-xl span {
        font-size: 58px;
    }

    .dg-logo-xl small {
        font-size: 24px;
        margin-top: 8px;
    }

    .dg-ribbon {
        font-size: 15px;
        padding: 11px 18px 9px;
    }

    .dg-hero h1 {
        font-size: 46px;
    }

    .dg-hero-copy p,
    .dg-prize-copy p {
        font-size: 18px;
    }

    .dg-main-btn,
    .dg-secondary-btn,
    .dg-blue-band a {
        width: 100%;
    }

    .dg-legal-strip {
        font-size: 12px;
    }

    .dg-hero-art {
        min-height: 540px;
    }

    .dg-person-card {
        border-width: 6px;
        border-bottom-width: 12px;
        box-shadow: 12px 14px 0 rgba(0, 52, 91, .82), 0 22px 50px rgba(0, 0, 0, .32);
        height: 500px;
        width: min(348px, 86vw);
    }

    .dg-person-card::before {
        left: 20px;
        top: 14px;
        width: 84px;
    }

    .dg-person-card::after {
        bottom: 18px;
        right: 16px;
        width: 110px;
    }

    .dg-floating-note {
        left: 6px;
        max-width: 230px;
        padding: 13px 16px;
        right: auto;
        top: 18px;
    }

    .dg-points-mini {
        max-width: 230px;
        padding: 13px 16px;
        right: 4px;
        top: 22px;
    }

    .dg-floating-note strong {
        font-size: 18px;
    }

    .dg-points-mini strong {
        font-size: 34px;
    }

    .dg-points-art {
        min-height: 460px;
    }

    .dg-points-board {
        box-shadow: 12px 14px 0 rgba(0, 52, 91, .82), 0 22px 50px rgba(0, 0, 0, .32);
        padding: 22px;
        transform: rotate(1deg);
    }

    .dg-promo-main {
        height: 500px;
        left: calc(50% - 170px);
        width: 340px;
    }

    .dg-promo-side {
        display: none;
    }

    .dg-qr-ticket {
        bottom: 0;
        left: 10px;
        right: 10px;
    }

    .dg-blue-band,
    .dg-access {
        padding: 24px;
    }

    .dg-blue-band h2,
    .dg-prize-copy h2,
    .dg-section-heading h2,
    .dg-access h2 {
        font-size: 35px;
    }

    .dg-prize-section,
    .dg-levels,
    .dg-qr-flow {
        padding-bottom: 56px;
    }

    .dg-level-grid {
        grid-template-columns: 1fr;
    }

    .dg-qr-copy p {
        font-size: 17px;
    }

    .dg-qr-flow-steps span {
        align-items: flex-start;
        font-size: 14px;
    }

    .dg-qr-poster {
        max-height: none;
        width: min(330px, 100%);
    }

    .dg-talker-card {
        max-width: 360px;
        padding: 24px 20px;
    }

    .dg-talker-brand strong {
        font-size: 38px;
    }

    .dg-talker-card h3 {
        font-size: 30px;
    }

    .dg-contact-section {
        gap: 34px;
        margin-bottom: 48px;
        padding: 34px 22px;
    }

    .dg-contact-copy span {
        font-size: 30px;
    }

    .dg-contact-copy p,
    .dg-contact-links a {
        font-size: 17px;
    }

    .dg-form-grid {
        grid-template-columns: 1fr;
    }

    .dg-contact-form h2 {
        font-size: 34px;
    }

    .dg-legal-footer {
        box-shadow: 10px 10px 0 rgba(0, 47, 63, .82);
        padding: 24px;
    }

    .dg-legal-warning {
        display: grid;
    }

    .dg-age-mark {
        flex-basis: 64px;
        font-size: 27px;
        height: 64px;
        width: 64px;
    }

    .dg-legal-warning strong {
        font-size: 24px;
    }

    .dg-legal-warning p {
        font-size: 16px;
    }

    .dg-legal-logos {
        grid-template-columns: 1fr;
    }

    .dg-legal-logos img {
        max-height: 68px;
    }

    .dg-footer-bottom {
        padding: 20px;
    }

    .dg-footer-bottom strong {
        font-size: 34px;
    }

    .dg-affiliate-popup {
        bottom: 12px;
        max-width: none;
        padding: 22px;
        right: 12px;
        width: calc(100% - 24px);
    }

    .dg-affiliate-popup h2 {
        font-size: 32px;
    }

    .socios-content,
    .socios-topbar {
        padding: 18px;
    }

    .socios-topbar,
    .page-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .page-heading > .table-actions {
        justify-content: flex-start;
        max-width: none;
        width: 100%;
    }

    .gold-hero {
        padding: 30px 18px;
    }

    .gold-metrics,
    .socios-grid,
    .two-cols,
    .stats-grid,
    .reward-catalog,
    .level-table,
    .redeem-summary,
    .reward-row {
        grid-template-columns: 1fr;
    }

    .wide-card,
    .qr-card,
    .activity-card {
        grid-column: auto;
    }

    .level-orb {
        height: 118px;
        width: 118px;
    }

    .level-orb-icon {
        height: 78px;
        width: 78px;
    }
}
