/* =============================================================
   Orchrd Sports — Shared Base Stylesheet
   Consolidates CSS previously duplicated across orchrd/*.jinja
   Loaded on every Orchrd template via templates/orchrd/_base.jinja
   ============================================================= */

/* ---------- Design tokens ---------- */
:root {
    --orange: #F47C20;
    --orange-dark: #d96a15;
    --orange-soft: rgba(244, 124, 32, 0.12);
    --charcoal: #1E1B1C;
    --charcoal-soft: rgba(30, 27, 28, 0.08);
    --off-white: #F7F7F7;
    --green: #5FAF2D;
    --green-soft: rgba(95, 175, 45, 0.12);

    /* Rank badge colors for leaderboards (P4) */
    --rank-gold: #D4AF37;
    --rank-silver: #B8BABB;
    --rank-bronze: #CD7F32;

    /* Shadows */
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.06);
    --shadow-card-hover: 0 10px 30px rgba(0, 0, 0, 0.10);
    --shadow-orange: 0 6px 20px rgba(244, 124, 32, 0.4);
    --shadow-orange-soft: 0 4px 12px rgba(244, 124, 32, 0.35);
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--off-white);
    color: var(--charcoal);
    -webkit-font-smoothing: antialiased;
}

/* Centered single-card pages (waitlist, login, register) opt-in */
body.orchrd-centered {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

h1, h2, h3, h4 { font-family: 'Sora', sans-serif; }

/* ---------- Focus rings (P5) ----------
   Accessible, brand-on-brand: orange ring, 3px offset.
   Keyboard-only via :focus-visible — no outline on mouse clicks. */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[role="button"]:focus-visible {
    outline: 2px solid var(--orange);
    outline-offset: 3px;
    border-radius: 4px;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
    font-family: 'Sora', sans-serif;
    line-height: 1.2;
}

.btn-primary,
.btn-orange {
    background: var(--orange);
    color: #fff;
}

.btn-primary:hover,
.btn-orange:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-orange);
}

.btn-ghost {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.5);
}

.btn-ghost:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--charcoal);
    border: 2px solid var(--charcoal);
    transition: all 0.2s ease;
}

.btn-outline:hover {
    background: var(--charcoal);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(30, 27, 28, 0.25);
}

.btn-secondary {
    background: transparent;
    color: var(--charcoal);
    border: 2px solid var(--charcoal-soft);
    width: 100%;
    margin-top: 0.75rem;
}

.btn-secondary:hover {
    border-color: var(--charcoal);
}

.btn-large {
    padding: 0.9rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 10px;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

.btn-submit {
    width: 100%;
    padding: 0.75rem;
    background: var(--orange);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s;
    margin-top: 0.5rem;
}

.btn-submit:hover {
    background: var(--orange-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-orange-soft);
}

/* ---------- Shine animation on button text ---------- */
.btn.btn-shine { background: var(--orange); position: relative; overflow: hidden; }

.btn.btn-shine .btn-text {
    background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,0.4) 10%, #fff 20%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 3s infinite linear;
}

@keyframes shine {
    0% { background-position: 200% center; }
    100% { background-position: -200% center; }
}

/* ---------- Cards ---------- */
.card {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem;
    max-width: 500px;
    width: 100%;
    box-shadow: var(--shadow-card);
    transition: box-shadow 0.2s, transform 0.2s;
}

.card-lg { padding: 3rem; }
.card-sm { padding: 2rem; max-width: 420px; }
.card-center { text-align: center; }

/* Hover-lift utility (P14) — applies to any .card or explicit .hover-lift */
.hover-lift { transition: box-shadow 0.2s, transform 0.2s; }
.hover-lift:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-card-hover);
}

/* ---------- Flash / alerts ---------- */
.flash {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}
.flash-error   { background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; }
.flash-info    { background: #eff6ff; color: #1d4ed8; border: 1px solid #bfdbfe; }
.flash-success { background: #f0fdf4; color: #15803d; border: 1px solid #bbf7d0; }
.flash-warning { background: #fffbeb; color: #b45309; border: 1px solid #fde68a; }

/* ---------- Form fields ---------- */
label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.3rem;
    color: #555;
}

.orchrd-field input[type="email"],
.orchrd-field input[type="password"],
.orchrd-field input[type="text"],
.orchrd-field input[type="tel"],
.orchrd-field select {
    width: 100%;
    padding: 0.65rem 0.75rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    color: var(--charcoal);
    background: #fff;
    transition: border-color 0.2s;
    outline: none;
}

.orchrd-field select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path fill='%231E1B1C' d='M5 6L0 0h10z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    padding-right: 2rem;
}

.orchrd-field input:focus,
.orchrd-field select:focus { border-color: var(--orange); }
.orchrd-field { margin-bottom: 1rem; }
.field-row { display: flex; gap: 0.75rem; }
.field-row .orchrd-field { flex: 1; }

/* Honeypot — hidden from real users */
.hp-field { position: absolute; left: -9999px; }

/* ---------- OAuth button ---------- */
.oauth-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.7rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    color: var(--charcoal);
    font-family: 'Inter', sans-serif;
}

.oauth-btn:hover {
    background: #f9f9f9;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.oauth-btn svg { width: 18px; height: 18px; }

/* ---------- Dividers ---------- */
.orchrd-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.25rem 0;
    color: #ccc;
    font-size: 0.8rem;
}

.orchrd-divider::before,
.orchrd-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e5e5e5;
}

/* ---------- Badges / status pills ---------- */
.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
}

.badge-green   { background: var(--green-soft);   color: var(--green); }
.badge-orange  { background: var(--orange-soft);  color: var(--orange); }
.badge-charcoal{ background: var(--charcoal-soft);color: var(--charcoal); }
.badge-live    { background: #fee2e2; color: #b91c1c; }

/* Leaderboard rank badges — top 3 (P4) */
.rank-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    color: #fff;
}
.rank-badge-1 { background: var(--rank-gold); }
.rank-badge-2 { background: var(--rank-silver); }
.rank-badge-3 { background: var(--rank-bronze); }
.rank-badge-other { background: transparent; color: var(--charcoal); font-size: 0.9rem; }

/* ---------- Back link (used on single-page flows) ---------- */
.back-link {
    position: fixed;
    top: 1.25rem;
    left: 1.5rem;
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--charcoal);
    text-decoration: none;
    opacity: 0.6;
    transition: opacity 0.2s;
    /* On dark hero backgrounds the back link looks faded; a subtle backdrop
       keeps it readable without being a full pill button. */
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(4px);
}

.back-link:hover { opacity: 1; }
.back-link svg { width: 16px; height: 16px; }

/* Pages that serve back-link content below a fixed-arrow benefit from a
   small top content offset on mobile so the arrow doesn't overlap the
   first line of copy. */
@media (max-width: 640px) {
    body.orchrd-centered { padding-top: 4rem; }
}

/* ---------- Links ---------- */
.link-orange {
    color: var(--orange);
    text-decoration: none;
    font-weight: 500;
}
.link-orange:hover { text-decoration: underline; }

/* ---------- Orchrd app nav (base.jinja header, logged-in pages) ----------
   Mirrors the public landing nav (orchrd/home.jinja): transparent background
   + backdrop blur so content shows through when scrolled under. `sticky`
   keeps the nav pinned to the top without needing page-level top padding. */
.orchrd-app-nav {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #fff;
    padding: 0.75rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: sticky;
    top: 0;
    z-index: 100;
}

.orchrd-app-nav-logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}
.orchrd-app-nav-logo img {
    height: 38px;
    width: auto;
    display: block;
}

.orchrd-app-nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    /* Push the links group to the right so it clusters with the user menu /
       auth buttons instead of hugging the logo. */
    margin-left: auto;
}

.orchrd-app-nav-link {
    font-family: 'Sora', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: color 0.2s;
    padding: 0;
}
.orchrd-app-nav-link:hover { color: var(--orange); }

.orchrd-app-nav-btn {
    padding: 0.45rem 1.1rem;
    border-radius: 6px;
    background: var(--orange);
    color: #fff;
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition: background 0.2s;
}
.orchrd-app-nav-btn:hover { background: var(--orange-dark); }

.orchrd-app-nav-user {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
}

.orchrd-app-nav-auth {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    /* No margin-left: auto here — nav-links already claims the auto margin,
       so auth naturally sits adjacent to it on the right. */
}

.orchrd-app-nav-spoof { display: inline-flex; align-items: center; }

@media (max-width: 800px) {
    .orchrd-app-nav { padding: 0.55rem 1rem; gap: 0.5rem; }
    /* Top-nav links hide on mobile — they live inside the user-menu
       dropdown instead (see .orchrd-user-nav-section). */
    .orchrd-app-nav-links { display: none; }
    /* With nav-links gone, nothing else claims the leftover space —
       push the user trigger to the right edge. Same for the guest
       auth buttons (Log In / Sign Up). */
    .orchrd-app-nav-user,
    .orchrd-app-nav-auth { margin-left: auto; }
}

/* The user-menu "mobile nav" section duplicates the top nav links for
   phones. Hide it on desktop so items aren't listed twice. */
@media (min-width: 801px) {
    .orchrd-user-nav-section { display: none; }
}

/* ---------- Orchrd user menu (dropdown in Orchrd nav) ---------- */
.orchrd-user-menu {
    position: relative;
    display: inline-flex;
}

.orchrd-user-trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.7rem 0.35rem 0.35rem;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Sora', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}

.orchrd-user-trigger:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
}

.orchrd-user-trigger[aria-expanded="true"] {
    background: rgba(244, 124, 32, 0.16);
    border-color: rgba(244, 124, 32, 0.45);
}

.orchrd-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--orange);
    color: #fff;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.2px;
}

.orchrd-user-name {
    max-width: 140px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.orchrd-user-chevron {
    font-size: 0.65rem;
    opacity: 0.7;
}

.orchrd-user-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    min-width: 240px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.18);
    overflow: hidden;
    z-index: 200;
    animation: orchrd-user-dropdown-in 0.18s ease-out;
}

@keyframes orchrd-user-dropdown-in {
    0%   { opacity: 0; transform: translateY(-4px); }
    100% { opacity: 1; transform: translateY(0); }
}

.orchrd-user-dropdown[hidden] { display: none; }

.orchrd-user-header {
    padding: 0.9rem 1rem 0.75rem;
    border-bottom: 1px solid #f1f1f1;
}
.orchrd-user-header .name {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    color: var(--charcoal);
    font-size: 0.9rem;
    line-height: 1.2;
}
.orchrd-user-header .email {
    color: #888;
    font-size: 0.78rem;
    margin-top: 0.15rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.orchrd-user-section {
    padding: 0.35rem 0;
    border-bottom: 1px solid #f5f5f5;
}
.orchrd-user-section:last-child { border-bottom: none; }

.orchrd-user-section-label {
    padding: 0.4rem 1rem 0.2rem;
    font-family: 'Sora', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #b5b5b5;
}

.orchrd-user-section a[role="menuitem"],
.orchrd-user-section button[role="menuitem"] {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.55rem 1rem;
    font-size: 0.88rem;
    color: var(--charcoal);
    text-decoration: none;
    transition: background 0.15s;
    /* button-specific resets so the dark-mode toggle sits flush with the
       surrounding anchor rows. */
    width: 100%;
    background: transparent;
    border: none;
    font-family: inherit;
    cursor: pointer;
    text-align: left;
}

.orchrd-user-section a[role="menuitem"] i,
.orchrd-user-section button[role="menuitem"] i {
    color: #999;
    width: 1rem;
    font-size: 0.85rem;
}

.orchrd-user-section a[role="menuitem"]:hover,
.orchrd-user-section button[role="menuitem"]:hover {
    background: var(--off-white);
    color: var(--orange);
}
.orchrd-user-section a[role="menuitem"]:hover i,
.orchrd-user-section button[role="menuitem"]:hover i { color: var(--orange); }

/* Mobile: keep the username + chevron visible so the trigger reads as a
   full dropdown button (not just an avatar circle). The dropdown is
   anchored to the right edge of the viewport (accounting for the nav's
   side padding, ~1rem) and capped at the viewport width minus that
   padding, so it never overflows horizontally. The height cap + scroll
   matters most for admins — their dropdown has an extra admin section
   plus the Other-sports + account sections, which together run past the
   bottom of a phone screen. `overscroll-behavior: contain` keeps the
   outer page from scrolling when the user reaches the top/bottom of the
   dropdown. */
@media (max-width: 640px) {
    .orchrd-user-name { max-width: 160px; }
    .orchrd-user-dropdown {
        right: 0;
        min-width: 240px;
        max-width: calc(100vw - 2rem);
        max-height: calc(100vh - 90px);
        overflow-y: auto;
        overscroll-behavior: contain;
    }
}

/* ---------- Fine print / legal footer ---------- */
.fine-print {
    font-size: 0.75rem;
    color: #bbb;
    line-height: 1.7;
}
.fine-print a {
    color: var(--orange);
    text-decoration: none;
}

/* ---------- Carousel (single-player landing + waitlist "You're In") ---------- */
.orchrd-carousel {
    position: relative;
    width: 100%;
    max-width: 820px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: var(--shadow-card);
    background: var(--charcoal);
}

.orchrd-carousel-viewport {
    position: relative;
    overflow: hidden;
    /* 16:9 on wide viewports reads best for imagery; bump to 5:4 on narrow
       viewports so wrapped headlines don't collide with the top-corner chips. */
    aspect-ratio: 16 / 9;
    background: var(--charcoal);
}

@media (max-width: 700px) {
    .orchrd-carousel-viewport { aspect-ratio: 5 / 4; }
}

.orchrd-carousel-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.55s cubic-bezier(0.5, 0, 0, 1);
}

.orchrd-carousel-slide {
    flex: 0 0 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2.5rem 2rem;
    color: #fff;
    overflow: hidden;
}

/* Subtle Ken Burns on slide backgrounds — scales slowly when active */
.orchrd-carousel-slide .bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 0.8s ease-in-out;
}

.orchrd-carousel-slide.is-active .bg {
    opacity: 1;
    animation: orchrd-kenburns 12s ease-in-out forwards;
}

@keyframes orchrd-kenburns {
    0% { transform: scale(1.05) translate(0, 0); }
    100% { transform: scale(1.14) translate(-2%, -2%); }
}

/* Gradient overlay for text contrast */
.orchrd-carousel-slide .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 27, 28, 0.82) 0%, rgba(30, 27, 28, 0.55) 60%, rgba(244, 124, 32, 0.18) 100%);
}

.orchrd-carousel-slide .content {
    position: relative;
    max-width: 620px;
    z-index: 2;
}

.orchrd-carousel-slide h3 {
    font-size: clamp(1rem, 2vw, 1.4rem);
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 0.65rem;
}

.orchrd-carousel-slide .orange { color: var(--orange); }

.orchrd-carousel-slide p {
    font-size: clamp(0.82rem, 1.35vw, 0.95rem);
    line-height: 1.5;
    color: rgba(255,255,255,0.82);
}

.orchrd-carousel-slide .slide-cta {
    display: inline-block;
    margin-top: 1.25rem;
    color: var(--orange);
    font-weight: 600;
    text-decoration: none;
    font-family: 'Sora', sans-serif;
}

.orchrd-carousel-slide .slide-cta:hover { color: #fff; }

/* Tag chip — lives inside .content now so it stacks above the headline and
   can never collide with long wrapped text. */
.orchrd-carousel-slide .tag {
    display: inline-block;
    font-family: 'Sora', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.3rem 0.7rem;
    background: rgba(244, 124, 32, 0.18);
    color: var(--orange);
    border-radius: 100px;
    margin-bottom: 1rem;
}

/* Slim orange progress bar at the bottom edge of the carousel — crawls from
   0 → 100% during the interval between auto-advances, then resets. Replaces
   the prior dots+arrows bar. Lives inside the carousel's rounded mask so it
   visually belongs to the carousel only. */
.orchrd-carousel-progress {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: rgba(255,255,255,0.12);
    overflow: hidden;
    z-index: 3;
}

.orchrd-carousel-progress-fill {
    width: 0%;
    height: 100%;
    background: var(--orange);
    transition: width linear;
}

/* Pause the crawling fill when the carousel is hovered or focused. */
.orchrd-carousel.is-paused .orchrd-carousel-progress-fill {
    transition: none !important;
}

@media (max-width: 640px) {
    .orchrd-carousel-slide { padding: 2rem 1rem; }
    .orchrd-carousel-slide h3 { font-size: 0.95rem; }
    .orchrd-carousel-slide p { font-size: 0.8rem; }
    .orchrd-carousel-slide .tag { font-size: 0.6rem; padding: 0.25rem 0.55rem; margin-bottom: 0.7rem; }
}

/* ---------- Chevron rotation utility (P7) ----------
   Wrap a chevron icon in .orchrd-chevron; add .is-open to the icon
   or a parent to rotate it 180°. Works with any icon library. */
.orchrd-chevron {
    display: inline-block;
    transition: transform 0.3s ease;
}
.orchrd-chevron.is-open,
.is-open > .orchrd-chevron {
    transform: rotate(180deg);
}

/* ---------- Flash / toast slide-in animation (P13) ----------
   Flash messages rendered with `.flash-animated` get a smooth slide-down
   entrance instead of just popping into the DOM. */
.flash-animated {
    animation: orchrd-flash-in 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    transform-origin: top center;
}

@keyframes orchrd-flash-in {
    0% { opacity: 0; transform: translateY(-12px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* ---------- Mobile ---------- */
@media (max-width: 640px) {
    .card, .card-lg { padding: 2rem 1.5rem; }
    .field-row { flex-direction: column; gap: 0; }
}
