@font-face {
    font-family: 'RobotoCondensed';
    src: url('RobotoCondensed-Bold.ttf');
}

:root {
    --color-brand-red:      #e50914;
    --color-brand-red-dark: #b20710;
    --color-background:     #000000;
    --color-surface:        #141414;
    --color-overlay:        rgba(0, 0, 0, 0.65);
    --color-text-primary:   #ffffff;
    --color-text-secondary: #b3b3b3;
    --color-border:         #333333;
    --color-input-bg:       rgba(22, 22, 22, 0.7);
    --color-hero-gradient:  linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.1) 40%,
        rgba(0, 0, 0, 0.1) 60%,
        rgba(0, 0, 0, 0.8) 100%
    );

    --font-stack:           'Helvetica Neue', Helvetica, Arial, sans-serif;
    --font-size-base:       16px;

    --spacing-xs:   0.5rem;
    --spacing-sm:   1rem;
    --spacing-md:   2rem;
    --spacing-lg:   4rem;
    --spacing-xl:   6rem;

    --border-radius-sm: 4px;
    --border-radius-md: 8px;

    --max-content-width: 1200px;
    --max-page-width:    1920px;

    --transition-default: 0.2s ease;
}

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

html {
    font-size: var(--font-size-base);
    scroll-behavior: smooth;
}

body {
    margin: 0;
    max-width: 100%;
    font-family: var(--font-stack);
    background-color: var(--color-background);
    color: var(--color-text-primary);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
}

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
}

.faq-list > li,
nav li {
    list-style: none;
}

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

.quote {
    white-space: nowrap;
}

/* ============================================================
   Curve divider
============================================================ */

.curve-container {
    box-sizing: border-box;
    overflow-x: hidden;
    position: relative;
    height: 6.25rem;
    z-index: 1;
}

.curve-container .curve {
    box-sizing: border-box;
    position: absolute;
    height: 100%;
    top: 0;
    margin: auto;
    display: flex;
    align-items: center;
    border: solid 0.25rem transparent;
    border-bottom: none;
    border-top-left-radius: 50% 100%;
    border-top-right-radius: 50% 100%;
    background: radial-gradient(50% 500% at 50% -420%, rgba(64, 97, 231, 0.4) 80%, rgba(0, 0, 0, 0.1) 100%), black;
    background-clip: padding-box;
    width: 130%;
    left: -15%;
}

.curve-container .curve::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    margin-top: -0.25rem;
    border-radius: inherit;
    background: linear-gradient(to right, rgba(33, 13, 22, 1) 16%, rgba(184, 40, 105, 1), rgba(229, 9, 20, 1), rgba(184, 40, 105, 1), rgba(33, 13, 22, 1) 84%);
}

/* ============================================================
   Page layout
============================================================ */

.page-root {
    width: 100%;
    padding-top: 0;
    background: transparent;
    position: static;
    color: white;
}

.page-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
}

.header-section-wrapper {
    position: relative;
    width: 100%;
}

.page-header-section {
    z-index: 1;
    position: relative;
    width: 100%;
}

.glow-frame-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 100%;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    z-index: -1;
}

.glow-layer-sides {
    z-index: 1;
    position: absolute;
    top: 0;
    width: 165rem;
    left: 50%;
    bottom: 100px;
    background:
        radial-gradient(11% 56% at 17% 50%, #461518 0%, transparent 100%),
        radial-gradient(11% 56% at 83% 50%, #461518 0%, transparent 100%);
    transform: translateX(-50%);
}

.glow-layer-center {
    position: absolute;
    top: 0;
    left: calc(50% - 0.25rem);
    bottom: 100px;
    z-index: 2;
    background: linear-gradient(0deg, transparent 0%, #6f181d 50%, transparent 100%);
    width: 120.5rem;
    transform: translate(calc(-50% + 0.25rem), 0px);
}

.page-content {
    width: 100%;
    max-width: 120rem;
    margin: -3rem auto 0;
    z-index: 2;
    box-sizing: border-box;
    padding: 0 1.5rem;
}

@media (min-width: 600px) {
    .page-content {
        margin-top: -2rem;
        padding: 0 2rem;
    }
}

@media (min-width: 960px) {
    .page-content {
        padding: 0 5rem;
    }
}

@media (min-width: 1280px) {
    .page-content {
        padding: 0 9.25rem;
    }
}

@media (min-width: 1920px) {
    .page-content {
        padding: 0 22.125rem;
    }
}


/* ============================================================
   Banner / promo card
============================================================ */

.banner-section {
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 3.5rem;
    padding-top: 1.75rem;
}

@media (min-width: 600px) {
    .banner-section {
        padding-top: 0;
    }
}

@media (min-width: 960px) {
    .banner-section {
        margin-bottom: 4rem;
    }
}

.banner-section .hover-scale {
    transition: all 0.5s cubic-bezier(0.33, 0, 0, 1);
}

.banner-section .hover-scale:hover {
    scale: 1.03;
}

.banner-section .hover-scale:hover .promo-card::before {
    opacity: 1;
}

@media (prefers-reduced-motion) {
    .banner-section .hover-scale:hover {
        scale: 1;
    }
}

.banner-section .banner-container {
    box-sizing: border-box;
    display: inherit;
    height: auto;
    width: 100%;
    position: relative;
}

.banner-section .banner-content {
    display: inline-flex;
    height: inherit;
    align-items: normal;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    margin-left: 0;
    margin-top: 0;
    max-width: none;
    width: 100%;
}

.banner-section .banner-content .popcorn-bag-wrapper {
    position: absolute;
    left: 0;
    z-index: 2;
    transform: scale(0.7);
    top: -3.9375rem;
}

.banner-section .banner-content .popcorn-bag-wrapper img {
    width: 100px;
}

@media (min-width: 600px) {
    .banner-section .banner-content .popcorn-bag-wrapper {
        top: -0.5rem;
        transform: scale(0.8);
    }
}

.promo-card {
    border-radius: 1rem;
    position: relative;
    display: flex;
    overflow: hidden;
    flex: 1;
    background: linear-gradient(91deg, #261733, #151a3f);
    z-index: 1;
    margin-left: 0;
}

.promo-card::before {
    content: '';
    position: absolute;
    border-radius: 1rem;
    inset: 0;
    background: linear-gradient(91deg, #482566 0%, #161d52 99.51%);
    z-index: -1;
    transition: opacity 0.5s cubic-bezier(0.33, 0, 0, 1);
    opacity: 0;
}

@media (min-width: 600px) {
    .promo-card {
        margin-left: 6.25rem;
    }
}

.promo-card-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 2rem 1rem;
    width: calc(100% + 1rem);
}

@media (min-width: 600px) {
    .promo-card-inner {
        flex-direction: row;
        align-items: center;
        padding: 0.75rem 1.5rem;
    }
}

@media (min-width: 960px) {
    .promo-card-inner {
        padding: 0.88rem 1.5em;
    }
}

@media (min-width: 1280px) {
    .promo-card-inner {
        padding: 1rem 2rem;
    }
}

@media (min-width: 1920px) {
    .promo-card-inner {
        padding: 1rem 2.5rem;
    }
}

.promo-headline {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 500;
    color: #fff;
}

.promo-subline {
    margin: 0;
    font-size: 1rem;
    font-weight: 400;
    color: #fff;
}

/* ============================================================
   More info button
============================================================ */

.btn-more-info {
    --btn-surface:         rgba(128, 128, 128, 0.4);
    --btn-surface-hover:   rgba(128, 128, 128, 0.3);
    --btn-surface-pressed: rgba(128, 128, 128, 0.3);
    --btn-foreground:      rgb(255, 255, 255);
    --btn-radius:          0.25rem;
    --btn-height:          2.5rem;
    --btn-duration:        250ms;
    --btn-easing:          cubic-bezier(0.4, 0, 0.68, 0.06);
    --btn-easing-hover:    cubic-bezier(0.32, 0.94, 0.6, 1);

    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;

    background: var(--btn-surface);
    border: none;
    border-radius: var(--btn-radius);
    color: var(--btn-foreground);
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    min-height: var(--btn-height);
    padding: 0.375rem 1rem;
    position: relative;
    transition: background-color var(--btn-duration) var(--btn-easing);
    white-space: nowrap;
}

@media (hover: hover) {
    .btn-more-info:hover {
        background: var(--btn-surface-hover);
        transition-timing-function: var(--btn-easing-hover);
    }
}

.btn-more-info:active {
    background: var(--btn-surface-pressed);
}

.btn-more-info:focus-visible {
    outline: 0.125rem solid #fff;
    outline-offset: 0.125rem;
}

@supports (outline-color: Highlight) {
    .btn-more-info:focus-visible {
        outline-color: Highlight;
    }
}

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

/* ============================================================
   Top navigation / header
============================================================ */

.top-wrapper {
    background: linear-gradient(180deg,
        rgba(0, 0, 0, 0.8000)  0.000%,
        rgba(0, 0, 0, 0.7889)  8.333%,
        rgba(0, 0, 0, 0.7556) 16.670%,
        rgba(0, 0, 0, 0.7000) 25.000%,
        rgba(0, 0, 0, 0.6222) 33.330%,
        rgba(0, 0, 0, 0.5222) 41.670%,
        rgba(0, 0, 0, 0.4000) 50.000%,
        rgba(0, 0, 0, 0.2778) 58.330%,
        rgba(0, 0, 0, 0.1778) 66.670%,
        rgba(0, 0, 0, 0.1000) 75.000%,
        rgba(0, 0, 0, 0.0444) 83.330%,
        rgba(0, 0, 0, 0.0111) 91.670%,
        rgba(0, 0, 0, 0.0000) 100.00%
    );
    position: relative;
    z-index: 2;
    width: 100%;
}

.top-wrapper .top-container {
    width: 100%;
    max-width: 120rem;
    height: 7.5rem;
    margin: 0 auto -7.5rem auto;
    padding: 0 1.5rem;
}

@media (min-width: 600px) {
    .top-wrapper .top-container {
        padding: 0 2rem;
    }
}

@media (min-width: 960px) {
    .top-wrapper .top-container {
        padding: 0 5rem;
    }
}

@media (min-width: 1280px) {
    .top-wrapper .top-container {
        padding: 0 9.25rem;
    }
}
@media (min-width: 1920px) {
    .top-wrapper .top-container {
        padding: 0 22.125rem;
    }
}

.top-wrapper .header-container {
    box-sizing: border-box;
    display: inherit;
    width: 100%;
    height: 5rem;
}

@media (min-width: 1280px) {
    .top-wrapper .header-container {
        height: 5.5rem;
    }
}

.top-wrapper .header-content {
    display: inline-flex;
    flex-wrap: wrap;
    height: inherit;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    margin-left: -16px;
    margin-top: 0;
    max-width: none;
    width: calc(100% + 16px);
}

.site-logo {
    font-size: 2rem;
    font-weight: 900;
    color: var(--color-brand-red);
    letter-spacing: -1px;
    width: 170px;
}

.top-wrapper .site-logo-wrapper,
.top-wrapper .header-actions-wrapper {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: normal;
    margin-left: 16px;
    margin-top: 0;
    pointer-events: auto;
}

.top-wrapper .site-logo-wrapper {
    justify-content: normal;
}

.top-wrapper .header-actions-wrapper {
    justify-content: flex-end;
}

.top-wrapper .header-actions {
    display: inline-flex;
    flex-wrap: wrap;
    height: inherit;
    align-items: normal;
    flex-direction: row;
    justify-content: flex-end;
    margin-left: -12px;
    margin-top: 0;
    max-width: none;
    width: calc(100% + 12px);
}

.top-wrapper .header-action-item {
    display: inline-flex;
    align-items: normal;
    justify-content: normal;
    padding: 0;
    width: auto;
    margin-left: 12px;
    margin-top: 0;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.8rem;
    border: 1px solid var(--color-text-secondary);
    border-radius: var(--border-radius-sm);
    background-color: rgba(22, 22, 22, 0.7);
    color: var(--color-text-primary);
    font-size: 0.85rem;
}

.language-selector option {
    background: var(--color-surface);
}

.button-sign-in {
    padding: 0.45rem 1.1rem;
    border-radius: var(--border-radius-sm);
    background-color: var(--color-brand-red);
    color: var(--color-text-primary);
    font-size: 0.9rem;
    font-weight: 600;
    transition: background-color var(--transition-default);
    text-decoration: none;
}

.button-sign-in:hover {
    background-color: var(--color-brand-red-dark);
}

/* ============================================================
   Splashscreen
============================================================ */

.splashscreen-container {
    position: absolute;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.splashscreen-container .splashscreen-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    background-image: linear-gradient(7deg,
        rgba(0, 0, 0, 0.8500) 10.00%,
        rgba(0, 0, 0, 0.8465) 17.25%,
        rgba(0, 0, 0, 0.8361) 24.50%,
        rgba(0, 0, 0, 0.8187) 31.75%,
        rgba(0, 0, 0, 0.7944) 39.00%,
        rgba(0, 0, 0, 0.7632) 46.25%,
        rgba(0, 0, 0, 0.7250) 53.50%,
        rgba(0, 0, 0, 0.6868) 60.75%,
        rgba(0, 0, 0, 0.6556) 68.00%,
        rgba(0, 0, 0, 0.6312) 75.25%,
        rgba(0, 0, 0, 0.6139) 82.50%,
        rgba(0, 0, 0, 0.6035) 89.75%,
        rgba(0, 0, 0, 0.6000) 97.00%
    );
}

.splashscreen-container .splashscreen {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

/* ============================================================
   Hero stage
============================================================ */

.hero-stage {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 120rem;
    align-items: center;
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
}

.hero-aspect-box {
    overflow: hidden;
    display: flex;
    position: relative;
    margin: 0 auto;
    padding-top: 100px;
    background-size: cover;
    background-position: center;
    align-items: flex-end;
    justify-content: center;
    z-index: 3;
}

.hero-aspect-box::before {
    content: '';
    width: 1px;
    margin-left: -1px;
    height: 0;
    padding-top: 46.666666666666664%;
    box-sizing: border-box;
}

/* ============================================================
   Hero Section
============================================================ */

.hero-section {
    display: flex;
    flex-direction: column;
    flex: 1;
    z-index: 3;
}

.hero-section .hero-wrapper {
    display: flex;
    flex-direction: column;
    flex: 1;
    z-index: 3;
}

.hero-section .hero-container {
    margin: -2rem auto 0 auto;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 120rem;
    justify-content: center;
    padding: 0 2rem 2rem 2rem;
    min-height: 31rem;
}

@media (min-width: 960px) {
    .hero-section .hero-container {
        min-height: 37rem;
    }
}

@media (min-width: 1280px) {
    .hero-section .hero-container {
        min-height: min(80vh, 45rem);
    }
}

.hero-section .hero-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    align-self: center;
    position: relative;
}

@media (min-width: 600px) {
    .hero-section .hero-content {
        max-width: 27rem;
    }
}

@media (min-width: 960px) {
    .hero-section .hero-content {
        max-width: 31.75rem;
    }
}

@media (min-width: 1280px) {
    .hero-section .hero-content {
        max-width: 36.75rem;
    }
}

@media (min-width: 1920px) {
    .hero-section .hero-content {
        max-width: 41.5rem;
    }
}

.hero-section .hero-title {
    line-height: 125%;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

@media (min-width: 960px) {
    .hero-section .hero-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 1280px) {
    .hero-section .hero-title {
        font-size: 3.5rem;
        font-weight: 900;
    }
}

.hero-section .hero-subtitle {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

@media (min-width: 960px) {
    .hero-section .hero-subtitle {
        margin-bottom: 1.5rem;
    }
}

@media (min-width: 1280px) {
    .hero-section .hero-subtitle {
        margin-bottom: 2rem;
        font-size: 1.25rem;
        font-weight: 500;
    }
}

@media (min-width: 1920px) {
    .hero-section .hero-subtitle {
        font-size: 1.25rem;
        font-weight: 500;
    }
}

.hero-section .cta-label {
    text-align: justify;
    text-align-last: center;
}

.cta-label {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: var(--spacing-sm);
    color: var(--color-text-primary);
    text-align: center;
}

/* ============================================================
   Sign-up form
============================================================ */

.signup-form {
    max-width: 600px;
    margin: 0 auto;
    padding-top: 16px;
}

.hero-section .signup-form {
    width: 100%;
    padding-top: 0;
}

.signup-form .form-content {
    display: flex;
    gap: 0.5rem;
    justify-content: space-evenly;
    flex-direction: column;
    align-items: center;
}

.signup-form .invite-code-input {
    flex: 1;
    padding: 1rem 0.5rem;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-sm);
    background-color: var(--color-input-bg);
    color: var(--color-text-primary);
    font-size: 1rem;
    font-family: inherit;
}

.signup-form .invite-code-input::placeholder {
    color: var(--color-text-secondary);
}

.signup-form .invite-code-input:focus {
    outline: 2px solid var(--color-brand-red);
    outline-offset: 2px;
}

.signup-form .code-inputs {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.signup-form .code-sep {
    font-size: 1.25rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.4);
    user-select: none;
    line-height: 1;
}

.signup-form .code-seg.invite-code-input {
    width: 4em;
    text-align: center;
    font-family: monospace;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.signup-form .button-get-started {
    justify-content: center;
    padding: 0.5rem 1rem;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    background-color: var(--color-brand-red);
    color: var(--color-text-primary);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 3%;
    border-radius: var(--border-radius-sm);
    white-space: nowrap;
    transition: background-color var(--transition-default);
}

.signup-form .button-get-started:hover {
    background-color: var(--color-brand-red-dark);
}

@media (min-width: 960px) {
    .signup-form .form-content {
        flex-direction: row;
    }

    .signup-form .form-content .button-get-started {
        width: auto;
        padding: 0.5 1.5rem;
        margin-top: 0;
    }
}

/* ============================================================
   Feature sections
============================================================ */

.feature-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-md);
    max-width: var(--max-content-width);
    margin: 0 auto;
    padding: 4rem 2rem;
}

.feature-card.feature-card--reversed {
    flex-direction: row-reverse;
}

.feature-card__text {
    flex: 1;
    text-align: left;
}

.feature-card h2 {
    font-size: clamp(1.5rem, 3.5vw, 2.6rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

.feature-card h3 {
    font-size: clamp(1.125rem, 2.625vw, 1.95rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

.feature-card__description {
    font-size: clamp(1rem, 2vw, 1.4rem);
    font-weight: 400;
    line-height: 1.4;
}

.feature-card__media {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card__image {
    width: 100%;
    max-width: 500px;
    border-radius: var(--border-radius-md);
}

/* Download animation card */
.download-card-preview {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--color-background);
    border: 2px solid var(--color-border);
    border-radius: var(--border-radius-md);
    padding: 0.8rem 1.2rem;
    margin: 1rem auto 0;
    max-width: 320px;
}

.download-card-preview__cover {
    width: 50px;
    height: 70px;
    background: linear-gradient(135deg, #e50914, #831010);
    border-radius: 4px;
    flex-shrink: 0;
}

.download-card-preview__info {
    flex: 1;
}

.download-card-preview__title {
    font-size: 0.9rem;
    font-weight: 700;
}

.download-card-preview__status {
    font-size: 0.8rem;
    color: #0071eb;
}

.download-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* ============================================================
   FAQ section
============================================================ */

.faq-section {
    width: 100%;
}

.faq-section__inner {
    max-width: var(--max-content-width);
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-size: clamp(1.5rem, 3.5vw, 2.6rem);
    font-weight: 900;
    margin-bottom: var(--spacing-md);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: var(--spacing-md);
}

.faq-item {
    background-color: #2d2d2d;
}

.faq-item__question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.3rem 1.5rem;
    background: transparent;
    color: var(--color-text-primary);
    font-size: 1.5rem;
    font-weight: 500;
    text-align: left;
    transition: background-color var(--transition-default);
}

.faq-item__question:hover {
    background-color: #3d3d3d;
}

.faq-item__icon {
    font-size: 2rem;
    font-weight: 300;
    flex-shrink: 0;
    margin-left: 1rem;
    transition: transform var(--transition-default);
}

.faq-item__answer {
    display: none;
    padding: 1.3rem 1.5rem;
    font-size: 1.5rem;
    line-height: 1.6;
    text-align: left;
    list-style-position: inside;
}

.faq-item.faq-item--open .faq-item__answer {
    display: block;
}

.faq-item.faq-item--open .faq-item__icon {
    transform: rotate(45deg);
}

/* ============================================================
   Sign-up CTA section
============================================================ */

.signup-cta-section {
    text-align: center;
}

.signup-cta-section .cta-label {
    margin-bottom: var(--spacing-sm);
}

.signup-cta-section .signup-form {
    justify-content: center;
}

/* ============================================================
   Footer
============================================================ */

.site-footer {
    width: 100%;
    padding: var(--spacing-lg) var(--spacing-md) var(--spacing-md);
    color: var(--color-text-secondary);
}

.site-footer__inner {
    max-width: var(--max-content-width);
    margin: 0 auto;
}

.footer-contact {
    margin-bottom: var(--spacing-md);
    font-size: 1rem;
}

.footer-contact a {
    color: var(--color-text-secondary);
    text-decoration: underline;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-md);
}

.footer-links a {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    text-decoration: underline;
}

.footer-links a:hover {
    text-decoration: none;
    color: var(--color-text-primary);
}

.footer-language-selector {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    border: 1px solid var(--color-text-secondary);
    border-radius: var(--border-radius-sm);
    background: transparent;
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    margin-bottom: var(--spacing-sm);
}

.footer-language-selector option {
    background: var(--color-surface);
}

.footer-copyright {
    font-size: 0.8rem;
    color: var(--color-text-secondary);
    margin-top: var(--spacing-sm);
}

/* ============================================================
   Responsive overrides
============================================================ */

@media (max-width: 768px) {
    .feature-card,
    .feature-card.feature-card--reversed {
        padding: 4rem 0rem;
        flex-direction: column;
        text-align: center;
    }

    .feature-card__text,
    .feature-card--reversed .feature-card__text {
        text-align: center;
    }

    .site-logo {
        font-size: 1.5rem;
    }
    .footer-links {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }
}
