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

:root {
    --bg: #fffdf8;
    --bg-soft: #fff8ea;
    --paper: rgba(255, 252, 245, 0.88);
    --ink: #2f220f;
    --muted: #6e5a3b;
    --muted-strong: #8a7248;
    --line: rgba(224, 194, 123, 0.56);
    --honey: #e0a52b;
    --honey-strong: #c68512;
    --shadow-soft: 0 18px 42px rgba(96, 63, 14, 0.1);
    --shadow-strong: 0 26px 64px rgba(72, 45, 7, 0.18);
    --font-display: "Sora", sans-serif;
    --font-body: "Inter", sans-serif;
    --hex-pattern-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='156' viewBox='0 0 180 156'%3E%3Cg fill='none' stroke='%23e2c46f' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M45 0L90 26L90 78L45 104L0 78L0 26Z'/%3E%3Cpath d='M135 0L180 26L180 78L135 104L90 78L90 26Z'/%3E%3Cpath d='M0 78L45 104L45 156'/%3E%3Cpath d='M45 156L45 104L90 78L135 104L135 156'/%3E%3Cpath d='M180 78L135 104L135 156'/%3E%3C/g%3E%3C/svg%3E");
}

html {
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

body {
    overflow-x: hidden;
    background: linear-gradient(180deg, #fffefb 0%, var(--bg) 100%);
    color: var(--ink);
    font-family: var(--font-body);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: none;
}

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

a {
    color: inherit;
    text-decoration: none;
}

main,
.footer {
    position: relative;
}

/* ── Scroll progress bar ────────────────────────────────── */

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #e3a828, #f6cf7a);
    z-index: 9999;
    width: 0%;
    pointer-events: none;
}

/* ── Pattern ────────────────────────────────────────────── */

.section-pattern {
    position: absolute;
    inset: 0;
    background-image: var(--hex-pattern-image);
    background-repeat: repeat;
    pointer-events: none;
}

.section-kicker {
    margin-bottom: 16px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--honey-strong);
}

.section-kicker-light {
    color: #f6cf79;
}

/* ── Hero ───────────────────────────────────────────────── */

.hero {
    position: relative;
    min-height: clamp(420px, 58vh, 720px);
    overflow: hidden;
}

/* ── Language toggle ────────────────────────────────────── */

.lang-toggle {
    position: absolute;
    top: 24px;
    right: clamp(16px, 4vw, 42px);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 2px;
}

.lang-option {
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: rgba(255, 247, 231, 0.5);
    transition: color 0.2s ease, background 0.2s ease;
}

.lang-option:hover {
    color: rgba(255, 247, 231, 0.9);
}

.lang-option.lang-active {
    background: rgba(255, 247, 231, 0.14);
    color: #fff7e7;
}

/* ── Hero overlay & image ───────────────────────────────── */

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(15, 8, 0, 0.14) 0%, rgba(15, 8, 0, 0.12) 36%, rgba(15, 8, 0, 0.46) 100%),
        radial-gradient(circle at 70% 18%, rgba(255, 205, 101, 0.18) 0%, rgba(255, 205, 101, 0) 38%);
}

.hero > img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    object-position: center;
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    left: clamp(22px, 6vw, 84px);
    bottom: clamp(28px, 7vw, 72px);
    z-index: 1;
    max-width: min(520px, calc(100% - 44px));
    animation: hero-rise 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-overlay h1 {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6.2vw, 5.6rem);
    line-height: 0.96;
    letter-spacing: -0.05em;
    color: #fff7e7;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.34);
}

.hero-overlay p {
    margin-top: 10px;
    font-size: clamp(1rem, 1.8vw, 1.26rem);
    font-weight: 500;
    color: rgba(255, 247, 231, 0.9);
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
}

/* ── Scroll chevron ─────────────────────────────────────── */

.scroll-chevron {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255, 247, 231, 0.45);
    animation: chevron-bounce 2.4s ease-in-out infinite;
}

@keyframes chevron-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.4; }
    50% { transform: translateX(-50%) translateY(8px); opacity: 0.9; }
}

@keyframes hero-rise {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Content band ───────────────────────────────────────── */

.content-band {
    position: relative;
    overflow: hidden;
    background: var(--bg);
}

.content-band::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 170px;
    z-index: 1;
    background: linear-gradient(180deg, rgba(255, 253, 248, 0.98) 0%, rgba(255, 253, 248, 0.9) 24%, rgba(255, 253, 248, 0) 100%);
    pointer-events: none;
}

.content-band::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 48px;
    z-index: 1;
    width: min(920px, 92vw);
    height: 620px;
    transform: translateX(-50%);
    background: radial-gradient(circle at center, rgba(255, 253, 248, 0.98) 0%, rgba(255, 253, 248, 0.92) 38%, rgba(255, 253, 248, 0.66) 60%, rgba(255, 253, 248, 0) 82%);
    pointer-events: none;
}

.content-pattern {
    background-size: 180px 156px;
    background-position: center -18px;
    opacity: 1;
    -webkit-mask-image: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.34) 0%,
        rgba(0, 0, 0, 0.3) 14%,
        rgba(0, 0, 0, 0.1) 28%,
        rgba(0, 0, 0, 0.02) 38%,
        rgba(0, 0, 0, 0) 50%,
        rgba(0, 0, 0, 0.02) 62%,
        rgba(0, 0, 0, 0.1) 72%,
        rgba(0, 0, 0, 0.3) 86%,
        rgba(0, 0, 0, 0.34) 100%
    );
    mask-image: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.34) 0%,
        rgba(0, 0, 0, 0.3) 14%,
        rgba(0, 0, 0, 0.1) 28%,
        rgba(0, 0, 0, 0.02) 38%,
        rgba(0, 0, 0, 0) 50%,
        rgba(0, 0, 0, 0.02) 62%,
        rgba(0, 0, 0, 0.1) 72%,
        rgba(0, 0, 0, 0.3) 86%,
        rgba(0, 0, 0, 0.34) 100%
    );
}

/* ── Intro ──────────────────────────────────────────────── */

.intro {
    position: relative;
    padding: 64px 20px 38px;
}

.intro-content,
.features-shell,
.footer-inner,
.footer-bottom,
.legal-container {
    position: relative;
    z-index: 2;
    max-width: 1120px;
    margin: 0 auto;
}

.intro-content {
    max-width: 860px;
    text-align: center;
}

.intro h2,
.features-header h2,
.launch-copy h3,
.field-copy h2,
.legal-container h1 {
    font-family: var(--font-display);
}

.intro h2 {
    font-size: clamp(2.7rem, 6vw, 5.2rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.intro-copy {
    max-width: 760px;
    margin: 20px auto 0;
    font-size: clamp(1.05rem, 1.9vw, 1.22rem);
    color: var(--muted);
}

/* ── Launch strip ───────────────────────────────────────── */

.launch-strip {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    max-width: 1120px;
    margin: 10px auto 56px;
    padding: 26px 28px;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(255, 250, 239, 0.96) 0%, rgba(249, 235, 196, 0.88) 100%);
    border: 1px solid rgba(221, 189, 112, 0.44);
    box-shadow: var(--shadow-soft);
}

.launch-copy {
    max-width: 620px;
}

.launch-copy h3 {
    font-size: clamp(1.8rem, 3vw, 2.7rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.launch-copy p:last-child {
    margin-top: 10px;
    color: var(--muted);
}

/* ── Features ───────────────────────────────────────────── */

.features {
    position: relative;
    padding: 36px 20px 86px;
}

.features-header {
    max-width: 760px;
    margin: 0 auto 38px;
    text-align: center;
}

.features-header h2 {
    font-size: clamp(2rem, 4.2vw, 3.5rem);
    line-height: 1.02;
    letter-spacing: -0.045em;
}

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

.feature-card {
    position: relative;
    min-height: 212px;
    padding: 28px 24px 24px;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255, 252, 245, 0.96) 0%, rgba(255, 251, 241, 0.88) 100%);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(10px);
    overflow: hidden;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.feature-card::before {
    content: "";
    position: absolute;
    right: -36px;
    bottom: -42px;
    width: 138px;
    height: 138px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(245, 192, 87, 0.18) 0%, rgba(245, 192, 87, 0) 72%);
    pointer-events: none;
}

.feature-card:hover {
    transform: translateY(-5px) rotate(-0.3deg);
    box-shadow: 0 24px 46px rgba(96, 63, 14, 0.14);
}

.feature-card-wide {
    grid-column: span 7;
}

.feature-card-narrow {
    grid-column: span 5;
}

.feature-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    height: 34px;
    margin-bottom: 16px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(224, 165, 43, 0.12);
    color: var(--honey-strong);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.feature-card h3 {
    margin-bottom: 10px;
    font-family: var(--font-display);
    font-size: 1.28rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.feature-card p {
    color: var(--muted);
    font-size: 0.98rem;
}

/* ── Buttons ────────────────────────────────────────────── */

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 999px;
    font-size: 0.98rem;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    background: linear-gradient(135deg, #f0b643 0%, #da971b 100%);
    color: #39230a;
    box-shadow: 0 16px 32px rgba(211, 150, 33, 0.25);
}

.button-disabled {
    background: rgba(224, 165, 43, 0.14);
    border: 1px solid rgba(224, 165, 43, 0.3);
    color: rgba(73, 48, 11, 0.68);
    box-shadow: none;
    cursor: default;
    animation: gentle-pulse 3s ease-in-out infinite;
}

.button-disabled:hover {
    transform: none;
}

@keyframes gentle-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(224, 165, 43, 0); }
    50% { box-shadow: 0 0 0 10px rgba(224, 165, 43, 0.07); }
}

/* ── Field showcase ─────────────────────────────────────── */

.field-showcase {
    position: relative;
    min-height: clamp(340px, 40vw, 560px);
    overflow: hidden;
}

.field-showcase img,
.field-overlay {
    position: absolute;
    inset: 0;
}

.field-showcase img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.04);
    animation: field-drift 18s ease-in-out infinite alternate;
}

.field-overlay {
    background:
        linear-gradient(90deg, rgba(29, 18, 5, 0.68) 0%, rgba(29, 18, 5, 0.28) 46%, rgba(29, 18, 5, 0.06) 100%),
        linear-gradient(180deg, rgba(255, 199, 87, 0.08) 0%, rgba(255, 199, 87, 0) 100%);
}

@keyframes field-drift {
    from {
        transform: scale(1.04) translateX(0);
    }
    to {
        transform: scale(1.08) translateX(-1.5%);
    }
}

.field-copy {
    position: relative;
    z-index: 1;
    max-width: 1120px;
    margin: 0 auto;
    padding: clamp(32px, 5vw, 72px) 20px;
    color: #fff8ec;
}

.field-copy h2 {
    max-width: 520px;
    font-size: clamp(2.2rem, 4.2vw, 4.2rem);
    line-height: 1.02;
    letter-spacing: -0.05em;
}

.field-copy p {
    max-width: 540px;
    margin-top: 16px;
    font-size: 1.04rem;
    color: rgba(255, 247, 231, 0.88);
}

/* ── Footer ─────────────────────────────────────────────── */

.footer-accent {
    height: 4px;
    background: linear-gradient(90deg, #e3a828 0%, #f6cf7a 50%, #e3a828 100%);
}

.footer {
    background: linear-gradient(140deg, #2c1d0c 0%, #3a2811 48%, #201509 100%);
    color: rgba(255, 247, 231, 0.72);
    padding: 54px 20px 28px;
}

.footer-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
    gap: 28px;
    align-items: start;
}

.footer-brand {
    font-family: var(--font-display);
    font-size: 1.18rem;
    color: #fff7e7;
}

.footer-desc {
    max-width: 320px;
    margin-top: 10px;
    font-size: 0.92rem;
    line-height: 1.65;
}

.footer-links h4 {
    margin-bottom: 14px;
    color: #f0bf58;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.footer-links ul {
    list-style: none;
}

.footer-links li + li {
    margin-top: 10px;
}

.footer-links a {
    position: relative;
    display: inline-block;
    color: rgba(255, 247, 231, 0.74);
    transition: color 0.2s ease;
}

.footer-links a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #f6cf7a;
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #f6cf7a;
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 34px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 247, 231, 0.1);
    font-size: 0.84rem;
}

/* ── Reveal animation ───────────────────────────────────── */

[data-reveal] {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    transition:
        opacity 0.8s ease,
        transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
    transition-delay: var(--reveal-delay, 0s);
}

[data-reveal].reveal-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* ── Legal pages ────────────────────────────────────────── */

.legal-page {
    background:
        linear-gradient(180deg, rgba(255, 251, 241, 0.94) 0%, rgba(255, 253, 248, 1) 220px),
        var(--bg);
}

.legal-container {
    max-width: 820px;
    padding: 44px 20px 96px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 0.96rem;
    font-weight: 600;
    color: var(--honey-strong);
    transition: color 0.2s ease;
}

.back-link:hover {
    color: var(--honey);
}

.legal-container h1 {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    line-height: 1.02;
    letter-spacing: -0.045em;
    color: var(--ink);
}

.legal-container .subtitle {
    margin-top: 10px;
    margin-bottom: 30px;
    color: var(--muted);
}

.legal-container h2 {
    margin-top: 34px;
    margin-bottom: 12px;
    padding-left: 14px;
    border-left: 3px solid #e0a52b;
    font-family: var(--font-display);
    font-size: 1.28rem;
    line-height: 1.25;
}

.legal-container h3 {
    margin-top: 18px;
    margin-bottom: 8px;
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--ink);
}

.legal-container p,
.legal-container li {
    color: var(--muted);
}

.legal-container p + p {
    margin-top: 12px;
}

.legal-container ul,
.legal-container ol {
    margin: 12px 0 18px;
    padding-left: 24px;
}

.legal-container li + li {
    margin-top: 8px;
}

.legal-container a:not(.back-link) {
    color: var(--honey-strong);
}

/* ── Auth page ──────────────────────────────────────────── */

.auth-page-body {
    min-height: 100vh;
    background:
        radial-gradient(circle at top center, rgba(255, 238, 197, 0.36) 0%, rgba(255, 238, 197, 0) 42%),
        linear-gradient(180deg, rgba(255, 251, 241, 0.98) 0%, rgba(255, 253, 248, 1) 100%);
}

.auth-page {
    position: relative;
    min-height: 100vh;
    padding: 28px 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-page::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255, 253, 248, 0.8) 0%, rgba(255, 253, 248, 0.22) 18%, rgba(255, 253, 248, 0.72) 100%);
    pointer-events: none;
    z-index: 1;
}

.auth-page::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: min(780px, 88vw);
    height: min(780px, 88vw);
    transform: translate(-50%, -50%);
    background: radial-gradient(circle at center, rgba(255, 253, 248, 0.98) 0%, rgba(255, 253, 248, 0.94) 28%, rgba(255, 253, 248, 0.48) 58%, rgba(255, 253, 248, 0) 82%);
    pointer-events: none;
    z-index: 1;
}

.auth-pattern {
    background-size: 180px 156px;
    background-position: center top;
    opacity: 0.74;
    -webkit-mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.06) 0%, rgba(0, 0, 0, 0.16) 26%, rgba(0, 0, 0, 0.3) 48%, rgba(0, 0, 0, 0.46) 100%);
    mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.06) 0%, rgba(0, 0, 0, 0.16) 26%, rgba(0, 0, 0, 0.3) 48%, rgba(0, 0, 0, 0.46) 100%);
}

.auth-shell {
    position: relative;
    z-index: 2;
    width: min(680px, 100%);
    padding: 34px 34px 32px;
    border-radius: 34px;
    border: 1px solid rgba(224, 194, 123, 0.48);
    background: linear-gradient(180deg, rgba(255, 252, 246, 0.94) 0%, rgba(255, 251, 243, 0.9) 100%);
    box-shadow: var(--shadow-strong);
    backdrop-filter: blur(10px);
    animation: hero-rise 0.75s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.auth-brand-block {
    margin-bottom: 24px;
}

.auth-shell h1 {
    font-family: var(--font-display);
    font-size: clamp(2.3rem, 5vw, 4rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.auth-lead {
    margin-top: 16px;
    font-size: clamp(1rem, 1.8vw, 1.14rem);
    color: var(--muted);
}

.auth-status {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 64px;
    padding: 16px 18px;
    border-radius: 22px;
    border: 1px solid transparent;
    background: rgba(255, 250, 239, 0.82);
    color: var(--muted);
}

.auth-status-success {
    border-color: rgba(139, 181, 104, 0.32);
    background: rgba(244, 251, 236, 0.9);
    color: #4b6d2f;
}

.auth-status-error {
    border-color: rgba(207, 116, 91, 0.3);
    background: rgba(255, 242, 238, 0.92);
    color: #a34b37;
}

.auth-status-loading {
    border-color: rgba(224, 194, 123, 0.3);
    background: rgba(255, 248, 232, 0.9);
    color: var(--muted);
}

.auth-spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(224, 165, 43, 0.2);
    border-top-color: var(--honey-strong);
    border-radius: 999px;
    flex: 0 0 auto;
    animation: auth-spin 0.8s linear infinite;
}

.auth-status-success .auth-spinner,
.auth-status-error .auth-spinner {
    display: none;
}

.auth-form {
    margin-top: 22px;
}

.auth-field + .auth-field {
    margin-top: 16px;
}

.auth-field label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.94rem;
    font-weight: 600;
    color: var(--ink);
}

.auth-field input {
    width: 100%;
    min-height: 56px;
    padding: 0 16px;
    border-radius: 18px;
    border: 1px solid rgba(224, 194, 123, 0.52);
    background: rgba(255, 254, 250, 0.96);
    color: var(--ink);
    font: inherit;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.auth-field input:focus {
    border-color: rgba(218, 151, 27, 0.68);
    box-shadow: 0 0 0 4px rgba(224, 165, 43, 0.12);
}

.auth-help {
    margin: 14px 0 20px;
    color: var(--muted);
    font-size: 0.96rem;
}

.auth-form .button {
    border: 0;
    cursor: pointer;
}

.auth-form .button:disabled {
    opacity: 0.65;
    cursor: progress;
    transform: none;
}

.auth-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.auth-button-secondary {
    border: 1px solid rgba(224, 194, 123, 0.42);
    background: rgba(255, 251, 241, 0.84);
    color: var(--ink);
}

.auth-support {
    margin-top: 22px;
    font-size: 0.94rem;
    color: var(--muted);
}

.auth-support a {
    color: var(--honey-strong);
}

@keyframes auth-spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* ── Responsive ─────────────────────────────────────────── */

@media (max-width: 980px) {
    .feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .feature-card-wide,
    .feature-card-narrow {
        grid-column: auto;
    }

    .launch-strip {
        flex-direction: column;
        align-items: flex-start;
    }

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

@media (max-width: 640px) {
    .hero {
        min-height: 320px;
    }

    .lang-toggle {
        top: 14px;
        right: 14px;
    }

    .hero-overlay {
        left: 16px;
        right: 16px;
        bottom: 22px;
        max-width: none;
    }

    .hero-overlay h1 {
        font-size: 2.65rem;
    }

    .hero-overlay p {
        font-size: 0.98rem;
    }

    .scroll-chevron {
        bottom: 10px;
    }

    .intro {
        padding: 48px 14px 28px;
    }

    .content-pattern {
        background-size: 138px 120px;
    }

    .intro h2 {
        font-size: 2.45rem;
    }

    .intro-copy {
        font-size: 1rem;
    }

    .features {
        padding: 28px 14px 68px;
    }

    .features-header h2 {
        font-size: 2.15rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        min-height: 0;
        padding: 24px 18px 22px;
        border-radius: 24px;
    }

    .launch-strip {
        margin: 4px 14px 42px;
        padding: 24px 18px;
        border-radius: 24px;
    }

    .launch-copy h3 {
        font-size: 1.9rem;
    }

    .field-showcase {
        min-height: 430px;
    }

    .field-overlay {
        background:
            linear-gradient(180deg, rgba(29, 18, 5, 0.18) 0%, rgba(29, 18, 5, 0.56) 58%, rgba(29, 18, 5, 0.74) 100%);
    }

    .field-copy {
        display: flex;
        min-height: inherit;
        flex-direction: column;
        justify-content: flex-end;
        padding: 24px 14px 22px;
    }

    .field-copy h2 {
        font-size: 2.25rem;
    }

    .field-copy p {
        font-size: 0.98rem;
    }

    .footer {
        padding: 44px 14px 22px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }

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

    .legal-container {
        padding: 34px 14px 80px;
    }

    .legal-container h1 {
        font-size: 2.3rem;
    }

    .auth-page {
        padding: 18px 14px;
    }

    .auth-pattern {
        background-size: 138px 120px;
    }

    .auth-shell {
        padding: 26px 18px 24px;
        border-radius: 26px;
    }

    .auth-shell h1 {
        font-size: 2.4rem;
    }

    .auth-actions {
        flex-direction: column;
    }

    .auth-actions .button {
        width: 100%;
    }
}
