
:root {
    --green: #174d39;
    --green-dark: #0d3528;
    --green-light: #e8f0e5;
    --blue: #2169a5;
    --blue-light: #e7f0f8;
    --orange: #e9a047;
    --cream: #f8f6ef;
    --text: #18372b;
    --muted: #71877b;
    --border: #dfe7df;
    --white: #ffffff;
    --font-heading: "Outfit", sans-serif;
    --font-body: "DM Sans", sans-serif;
    --radius: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--cream);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.container {
    width: min(1180px, calc(100% - 48px));
    margin-inline: auto;
}

/* Typography */
h1, h2, h3, .brand-text, .stat-number,
.category-distance, .count-box strong {
    font-family: var(--font-heading);
}

h1, h2 {
    letter-spacing: -0.04em;
    line-height: 1.08;
}

h1 {
    font-size: clamp(3.2rem, 6.5vw, 5.8rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(2.4rem, 4vw, 4rem);
    font-weight: 600;
}

h1 em, h2 em {
    font-style: normal;
    color: var(--orange);
}

.section {
    padding: 110px 0;
}

.section-label {
    display: block;
    color: var(--muted);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    margin-bottom: 20px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    color: var(--green);
    font-size: 0.85rem;
    font-weight: 700;
    margin-top: 28px;
    border-bottom: 1px solid var(--green);
    padding-bottom: 5px;
}

.text-link span {
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 22px;
    border-radius: 100px;
    padding: 15px 23px;
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1;
    transition: 0.25s ease;
    cursor: pointer;
    border: 1px solid transparent;
}

.btn span {
    font-size: 1.2rem;
    line-height: 0.8;
}

.btn-primary {
    background: var(--green);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
}

.btn-outline {
    border-color: var(--green);
    color: var(--green);
}

.btn-outline:hover {
    background: var(--green);
    color: white;
}

.btn-light {
    background: white;
    color: var(--green);
}

.btn-light:hover {
    background: var(--orange);
    color: var(--green-dark);
    transform: translateY(-2px);
}

/* Header */
.site-header {
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 10;
    padding: 24px 0;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--green);
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--green);
    color: white;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.brand-text {
    display: flex;
    flex-direction: column;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em;
}

.brand-text small {
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    margin-top: 4px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-nav > a:not(.btn) {
    color: var(--green);
    font-size: 0.78rem;
    font-weight: 600;
}

.main-nav > a:not(.btn):hover {
    color: var(--orange);
}

.main-nav .nav-cta {
    margin-left: 8px;
    padding: 13px 19px;
    gap: 15px;
}

.menu-toggle {
    display: none;
    background: transparent;
    border: 0;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px 0;
    background: var(--green);
    transition: 0.25s;
}

/* Hero */
.hero {
    position: relative;
    min-height: 700px;
    padding: 160px 0 100px;
    background: var(--green-light);
    overflow: hidden;
}

.hero-pattern {
    position: absolute;
    width: 600px;
    height: 600px;
    right: -220px;
    top: -150px;
    opacity: 0.12;
    background-image:
        radial-gradient(circle at 25% 25%, transparent 60px, var(--green) 61px, var(--green) 65px, transparent 66px),
        radial-gradient(circle at 75% 75%, transparent 60px, var(--green) 61px, var(--green) 65px, transparent 66px);
    background-size: 180px 180px;
    transform: rotate(-15deg);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 60px;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--green);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    margin-bottom: 25px;
}

.eyebrow-dot {
    width: 8px;
    height: 8px;
    background: var(--orange);
    border-radius: 50%;
}

.hero-description {
    max-width: 410px;
    color: #587568;
    font-size: 0.95rem;
    line-height: 1.9;
    margin-top: 28px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.hero-date {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 55px;
}

.date-icon {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid #b5cbbc;
    border-radius: 50%;
    color: var(--green);
    font-size: 1.3rem;
}

.hero-date strong,
.hero-date small {
    display: block;
}

.hero-date strong {
    font-size: 0.75rem;
    letter-spacing: 0.04em;
}

.hero-date small {
    color: var(--muted);
    font-size: 0.72rem;
    margin-top: 2px;
}

.hero-visual {
    position: relative;
    padding: 0 0 25px 25px;
}

.hero-image-wrap {
    position: relative;
    height: 500px;
    border-radius: 170px 170px 16px 16px;
    overflow: hidden;
    background: #b6c8bb;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(13, 53, 40, 0.5), transparent 60%);
}

.image-tag {
    position: absolute;
    top: 30px;
    right: 25px;
    padding: 7px 12px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    border-radius: 100px;
}

.image-bottom-label {
    position: absolute;
    left: 30px;
    bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
}

.label-line {
    width: 25px;
    height: 2px;
    background: var(--orange);
}

.hero-badge {
    position: absolute;
    width: 125px;
    height: 125px;
    left: -15px;
    bottom: -5px;
    background: var(--orange);
    border-radius: 50%;
    padding: 8px;
    transform: rotate(-15deg);
}

.hero-badge svg {
    width: 100%;
    height: 100%;
    fill: var(--green);
}

.hero-badge text {
    font-family: var(--font-body);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.4px;
}

.hero-badge .badge-center {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.hero-bottom-pattern {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 25px;
    background: repeating-linear-gradient(
        135deg,
        var(--green) 0 12px,
        var(--orange) 12px 24px,
        var(--blue) 24px 36px
    );
    opacity: 0.85;
}

/* Stats */
.event-stats {
    background: var(--green);
    color: white;
    padding: 30px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    align-items: center;
}

.stat-item {
    padding: 8px 0;
    border-right: 1px solid rgba(255,255,255,0.2);
}

.stat-item:last-child {
    border-right: 0;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.stat-label {
    display: block;
    color: #b5cbbc;
    font-size: 0.75rem;
    margin-top: 8px;
}

.stat-action span {
    display: block;
    color: #b5cbbc;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.stat-action a {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    margin-top: 8px;
    border-bottom: 1px solid var(--orange);
    padding-bottom: 3px;
}

/* About */
.about-section {
    background: var(--cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.about-content {
    max-width: 480px;
}

.about-content .lead {
    color: var(--green);
    font-size: 1.45rem;
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.45;
    margin-bottom: 24px;
}

.about-content p:not(.lead) {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.9;
}

/* Categories */
.categories-section {
    background: white;
}

.section-topline {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
    margin-bottom: 50px;
}

.section-intro {
    max-width: 390px;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.8;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.category-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 370px;
    padding: 32px;
    border-radius: var(--radius);
    overflow: hidden;
}

.category-green {
    background: var(--green);
    color: white;
}

.category-blue {
    background: var(--blue);
    color: white;
}

.category-orange {
    background: #f1e3ce;
    color: var(--green);
}

.category-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.category-icon {
    font-size: 1.7rem;
}

.category-number {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    opacity: 0.65;
}

.category-distance {
    font-size: 4.5rem;
    font-weight: 700;
    letter-spacing: -0.07em;
    line-height: 1;
    margin-top: 45px;
}

.category-distance span {
    font-size: 2rem;
    letter-spacing: -0.02em;
    margin-left: 3px;
}

.category-card h3 {
    font-size: 1.3rem;
    margin-top: 15px;
}

.category-card p {
    max-width: 280px;
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
    line-height: 1.8;
    margin-top: 10px;
}

.category-orange p {
    color: #71877b;
}

.category-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-top: auto;
    padding-top: 30px;
    font-size: 0.72rem;
    font-weight: 600;
}

.category-footer a {
    display: grid;
    place-items: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.4);
    font-size: 1.1rem;
    transition: 0.2s;
}

.category-orange .category-footer a {
    border-color: #b7c9bc;
}

.category-footer a:hover {
    background: white;
    color: var(--green);
}

/* Route */
.route-section {
    background: var(--cream);
}

.route-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.route-image {
    position: relative;
    height: 470px;
    border-radius: 16px;
    overflow: hidden;
}

.route-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.route-image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    display: flex;
    justify-content: space-between;
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    background: linear-gradient(transparent, rgba(0,0,0,0.6));
}

.route-content > p {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.9;
    max-width: 420px;
    margin: 25px 0;
}

.route-details {
    border-top: 1px solid var(--border);
    margin: 30px 0;
}

.route-details > div {
    padding: 17px 0;
    border-bottom: 1px solid var(--border);
}

.detail-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--muted);
    margin-bottom: 5px;
}

.route-details strong {
    font-size: 0.9rem;
    font-weight: 600;
}

/* Countdown */
.countdown-section {
    padding: 55px 0;
    background: var(--blue);
    color: white;
}

.countdown-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.countdown-section .section-label {
    color: #b6d1e6;
    margin-bottom: 10px;
}

.countdown-section h2 {
    font-size: 2.2rem;
}

.countdown {
    display: flex;
    gap: 12px;
}

.count-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 85px;
    padding: 15px 10px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px;
}

.count-box strong {
    font-size: 2.1rem;
    line-height: 1;
}

.count-box span {
    color: #b6d1e6;
    font-size: 0.65rem;
    margin-top: 8px;
}

.countdown-finished {
    font-weight: 600;
}

/* Register */
.register-section {
    position: relative;
    overflow: hidden;
    background: var(--green);
    color: white;
    text-align: center;
    padding: 115px 0;
}

.register-inner {
    position: relative;
    z-index: 1;
}

.register-section .section-label {
    color: #9fbdae;
}

.register-section h2 {
    font-size: clamp(2.8rem, 5vw, 5rem);
}

.register-section p {
    max-width: 450px;
    margin: 25px auto 32px;
    color: #b5cbbc;
    font-size: 0.9rem;
    line-height: 1.9;
}

.register-note {
    color: #8dab9c;
    font-size: 0.7rem;
    margin-top: 18px;
}

.register-pattern {
    position: absolute;
    width: 600px;
    height: 600px;
    border: 2px solid rgba(255,255,255,0.04);
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    box-shadow:
        0 0 0 50px rgba(255,255,255,0.025),
        0 0 0 100px rgba(255,255,255,0.025),
        0 0 0 150px rgba(255,255,255,0.025);
    z-index: -1;
}

/* Sponsors */
.sponsors-section {
    background: white;
    padding: 65px 0;
}

.sponsors-section .section-label {
    text-align: center;
}

.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 35px;
}

.sponsor-logo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100px;
    color: var(--green);
    text-align: center;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
}

.sponsor-logo strong {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 0.95;
}

.sponsor-logo small {
    display: block;
    color: var(--muted);
    font-size: 0.6rem;
    margin-top: 7px;
}

.sponsor-placeholder {
    color: #a4b4aa;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

/* Footer */
.site-footer {
    background: var(--green-dark);
    color: white;
    padding: 40px 0 25px;
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}

.brand-footer {
    color: white;
}

.brand-footer .brand-mark {
    background: white;
    color: var(--green);
}

.footer-top p {
    color: #9fbdae;
    font-size: 0.8rem;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    color: #b5cbbc;
    font-size: 0.75rem;
}

.footer-social a:hover {
    color: var(--orange);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 22px;
    color: #789b89;
    font-size: 0.68rem;
}

/* Responsive */
@media (max-width: 1000px) {
    .hero-grid {
        gap: 30px;
    }

    .hero-image-wrap {
        height: 450px;
    }

    .route-grid {
        gap: 45px;
    }

    .section {
        padding: 80px 0;
    }
}

@media (max-width: 768px) {
    .container {
        width: min(100% - 32px, 600px);
    }

    .site-header {
        padding: 18px 0;
    }

    .menu-toggle {
        display: block;
        position: relative;
        z-index: 11;
    }

    .main-nav {
        position: absolute;
        top: 0;
        right: 16px;
        left: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: white;
        border-radius: 16px;
        padding: 70px 20px 20px;
        box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    }

    .main-nav.is-open {
        display: flex;
    }

    .main-nav > a:not(.btn) {
        padding: 13px 0;
        border-bottom: 1px solid var(--border);
    }

    .main-nav .nav-cta {
        margin: 18px 0 0;
    }

    .hero {
        min-height: auto;
        padding: 130px 0 65px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    h1 {
        font-size: clamp(3rem, 12vw, 4.2rem);
    }

    .hero-description {
        max-width: 450px;
    }

    .hero-date {
        margin-top: 35px;
    }

    .hero-visual {
        padding: 0 0 25px 15px;
    }

    .hero-image-wrap {
        height: 400px;
        border-radius: 120px 120px 16px 16px;
    }

    .hero-badge {
        width: 105px;
        height: 105px;
        left: -10px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }

    .stat-item {
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,0.2);
        padding-bottom: 20px;
    }

    .stat-action {
        border-bottom: 0;
    }

    .about-grid,
    .route-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .section-topline {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .category-card {
        min-height: 300px;
    }

    .category-distance {
        margin-top: 30px;
    }

    .route-image {
        height: 350px;
    }

    .countdown-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .countdown {
        width: 100%;
        gap: 8px;
    }

    .count-box {
        flex: 1;
        min-width: 0;
    }

    .count-box strong {
        font-size: 1.8rem;
    }

    .sponsors-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 22px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 400px) {
    .container {
        width: calc(100% - 28px);
    }

    .hero-actions .btn {
        padding: 13px 16px;
        gap: 12px;
    }

    .hero-image-wrap {
        height: 330px;
    }

    .count-box strong {
        font-size: 1.4rem;
    }

    .count-box span {
        font-size: 0.58rem;
    }

    .category-card {
        padding: 25px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *, *::before, *::after {
        transition-duration: 0.01ms !important;
    }
}


/* =========================================
   REGISTRATION MODAL
========================================= */

body.modal-open {
    overflow: hidden;
}

.registration-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    padding: 24px;
}

.registration-modal.is-open {
    display: flex;
    align-items: center;
    justify-content: center;
}

.registration-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(9, 29, 22, 0.72);
    backdrop-filter: blur(5px);
    cursor: pointer;
}

.registration-modal-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 580px;
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    background: var(--white);
    border-radius: 18px;
    padding: 40px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.25);
}

.registration-modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
}

.registration-modal-header .section-label {
    margin-bottom: 10px;
    color: var(--green);
}

.registration-modal-header h2 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    color: var(--green);
}

.registration-modal-header p {
    max-width: 420px;
    color: var(--muted);
    font-size: 0.85rem;
    line-height: 1.7;
    margin-top: 14px;
}

.registration-modal-close {
    flex-shrink: 0;
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: transparent;
    color: var(--green);
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    transition: 0.2s ease;
}

.registration-modal-close:hover {
    background: var(--green);
    color: white;
}

.registration-form {
    display: flex;
    flex-direction: column;
    gap: 17px;
}

.registration-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 17px;
}

.registration-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.registration-field label {
    color: var(--green);
    font-size: 0.75rem;
    font-weight: 600;
}

.registration-field label span {
    color: #e05252;
}

.registration-field input,
.registration-field select {
    width: 100%;
    min-height: 47px;
    border: 1px solid #15b76a;
    border-radius: 0;
    background: white;
    color: #18372b;
    padding: 12px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    outline: none;
    transition: 0.2s ease;
}

.registration-field input::placeholder {
    color: #8c9993;
}

.registration-field input:focus,
.registration-field select:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 2px rgba(23, 77, 57, 0.1);
}

.registration-field small {
    color: #657c70;
    font-size: 0.65rem;
    line-height: 1.5;
}

.phone-input {
    display: grid;
    grid-template-columns: 65px 1fr;
    gap: 7px;
}

.phone-input select {
    padding: 8px;
}

.registration-consents {
    display: flex;
    flex-direction: column;
    gap: 13px;
    padding-top: 8px;
}

.consent-item {
    display: grid;
    grid-template-columns: 16px 1fr;
    align-items: flex-start;
    gap: 10px;
    color: #52675c;
    font-size: 0.68rem;
    line-height: 1.6;
    cursor: pointer;
}

.consent-item input {
    width: 14px;
    height: 14px;
    margin-top: 3px;
    accent-color: var(--green);
    cursor: pointer;
}

.consent-item a {
    color: #176db0;
    text-decoration: underline;
}

.registration-submit {
    width: 100%;
    margin-top: 5px;
}

.registration-note {
    color: var(--muted);
    font-size: 0.68rem;
    text-align: center;
    line-height: 1.5;
}

/* Mobile */
@media (max-width: 600px) {
    .registration-modal {
        padding: 12px;
    }

    .registration-modal-content {
        max-height: calc(100vh - 24px);
        padding: 25px 20px;
        border-radius: 14px;
    }

    .registration-modal-header {
        margin-bottom: 25px;
    }

    .registration-modal-header h2 {
        font-size: 2rem;
    }

    .registration-form-grid {
        grid-template-columns: 1fr;
        gap: 17px;
    }

    .registration-field input,
    .registration-field select {
        min-height: 46px;
    }

    .registration-modal-close {
        width: 32px;
        height: 32px;
        font-size: 1.4rem;
    }
}

#thanks .wrap {
  max-width: 1100px;
  margin: auto;
  padding: 40px 24px;
}
#thanks .thanks-content {
  padding: 90px 0;
  max-width: 720px;
}
#thanks .eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
}
#thanks .thanks-content h1 {
  margin: 25px 0;
}
#thanks .thanks-content em {
  color: #d77d36;
  font-style: normal;
}
#thanks .thanks-content p {
  line-height: 1.8;
  max-width: 600px;
}
