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

:root {
    --surface-0: #1A1A1A;
    --text-primary: #FFFFFF;
    --gold: #D4AF37;
    --gold-hover: #C9A227;
    --gold-dim: #2A2418;
    --surface-1: #252525;
    --surface-2: #2A2A2A;
    --safe: #10B981;
    --safe-a30: #1A3A2E;
    --ink-muted: #CCCCCC;
    --ink-faint: #999999;
    --line-strong: #333333;
    --line-soft: #2A2A2A;
    --elev-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --elev-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --elev-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --elev-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shell-max: 1080px;
    --ease-fast: 0.15s ease;
    --ease-base: 0.2s ease;
    --ease-slow: 0.3s ease;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--surface-0);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    transition: background-color var(--ease-base);
    overflow-x: hidden;
    width: 100%;
    position: relative;
    padding-top: 0;
}

h1 {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

h2 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

p {
    margin-bottom: 1.25rem;
    color: var(--text-primary);
    line-height: 1.7;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: all var(--ease-base);
    border-radius: 2px;
}

img, video, iframe {
    max-width: 100%;
    height: auto;
    display: block;
}

table {
    width: 100%;
    overflow-x: auto;
    display: block;
}

@media (max-width: 768px) {
    table {
        font-size: 0.875rem;
    }
}

a:hover {
    color: var(--gold-hover);
    text-decoration: underline;
}

a:focus {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
    border-radius: 4px;
}

a:active {
    transform: scale(0.98);
}

.shell-wrap {
    max-width: var(--shell-max);
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
    animation: kfFade 0.4s ease-in;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .shell-wrap {
        padding: 0 0.875rem;
    }
}

@media (max-width: 480px) {
    .shell-wrap {
        padding: 0 0.625rem;
    }
}

@keyframes kfFade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

header {
    background-color: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line-soft);
    padding: 0.5rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--elev-sm);
    transition: all var(--ease-base);
}

@media (max-width: 768px) {
    header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 1000;
    }
}

header:hover {
    box-shadow: var(--elev-md);
}

.mast-inner {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    position: relative;
}

.mast-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0.5rem;
    width: 100%;
}

.wordmark {
    font-size: 1.1rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold) 0%, #F4D03F 50%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all var(--ease-base);
    cursor: pointer;
    letter-spacing: -0.01em;
    line-height: 1.2;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    padding-left: 3rem;
    text-decoration: none;
}

.wordmark:focus {
    text-decoration: none;
    outline: 2px solid var(--gold);
    outline-offset: 2px;
    border-radius: 4px;
}

.wordmark::before {
    content: '';
    position: absolute;
    left: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--gold) 0%, #F4D03F 50%, #D4AF37 100%);
    border-radius: 12px;
    box-shadow: 0 3px 12px rgba(212, 175, 55, 0.3), inset 0 2px 4px rgba(212, 175, 55, 0.2);
    transition: all var(--ease-base);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wordmark::after {
    content: '';
    position: absolute;
    left: 10px;
    width: 20px;
    height: 20px;
    background: 
        radial-gradient(circle at 30% 30%, rgba(212, 175, 55, 0.9) 0%, rgba(212, 175, 55, 0.7) 30%, transparent 60%),
        linear-gradient(135deg, rgba(212, 175, 55, 0.95) 0%, rgba(212, 175, 55, 0.85) 100%);
    border-radius: 5px;
    box-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.2),
        inset 0 1px 2px rgba(212, 175, 55, 0.8),
        inset 0 -1px 2px rgba(0, 0, 0, 0.1);
    transition: all var(--ease-base);
    transform: rotate(-5deg);
}

.wordmark:hover {
    transform: scale(1.02);
    filter: brightness(1.05);
    text-decoration: none;
}

.wordmark:hover::before {
    transform: rotate(8deg) scale(1.08);
    box-shadow: 0 6px 24px rgba(212, 175, 55, 0.45), inset 0 2px 4px rgba(212, 175, 55, 0.25);
}

.wordmark:hover::after {
    transform: rotate(3deg) scale(1.1);
    box-shadow: 
        0 3px 6px rgba(0, 0, 0, 0.25),
        inset 0 1px 2px rgba(212, 175, 55, 0.9),
        inset 0 -1px 2px rgba(0, 0, 0, 0.15);
}

.age-stamp {
    background: linear-gradient(135deg, var(--safe) 0%, #059669 100%);
    color: white;
    padding: 0.35rem 0.75rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: var(--elev-sm);
    transition: all var(--ease-base);
}

.age-stamp:hover {
    transform: translateY(-1px);
    box-shadow: var(--elev-md);
}

.nav-fab {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
}

.nav-fab span {
    display: block;
    width: 24px;
    height: 3px;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-fab.nav-on span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-fab.nav-on span:nth-child(2) {
    opacity: 0;
}

.nav-fab.nav-on span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

nav {
    transition: max-height 0.3s ease;
}

nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.25rem;
}

nav a {
    color: var(--text-primary);
    font-weight: 500;
    padding: 0.375rem 0.625rem;
    display: block;
    min-height: 36px;
    display: flex;
    align-items: center;
    border-radius: 5px;
    transition: all var(--ease-base);
    position: relative;
    font-size: 0.9rem;
}

nav a:hover {
    color: var(--gold);
    text-decoration: none;
    background-color: var(--gold-dim);
}

nav a:focus {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

main {
    flex: 1;
    padding: 0.5rem 0;
    animation: kfFade 0.5s ease-in;
    margin-top: 75px;
}

.intro-splash {
    text-align: center;
    padding: 0.375rem 0.75rem 0.25rem;
    margin-bottom: 0.375rem;
    background: linear-gradient(180deg, var(--surface-2) 0%, transparent 100%);
    border-radius: 4px;
    border-left: 2px solid var(--gold);
    position: relative;
    overflow: hidden;
}

.intro-splash::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), #F4D03F);
    opacity: 0.3;
}

.intro-splash h1 {
    margin-bottom: 0.1875rem;
    animation: kfFadeUp 0.6s ease-out;
    font-size: 1.5rem;
    line-height: 1.3;
}

.intro-splash p {
    font-size: 0.875rem;
    color: var(--ink-muted);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.4;
    animation: kfFadeUp 0.7s ease-out;
}

.intro-legal {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(212, 175, 55, 0.1);
    border-left: 3px solid var(--gold);
    border-radius: 6px;
    font-size: 0.8125rem;
    line-height: 1.5;
    color: var(--text-primary);
}

.intro-legal p {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.intro-legal p:last-child {
    margin-bottom: 0;
}

.intro-legal strong {
    color: var(--gold);
    font-weight: 600;
}

@keyframes kfFadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.rank-wrap {
    margin-bottom: 0.75rem;
}

.rank-prose {
    margin-bottom: 0.375rem;
    padding: 0.375rem 0.625rem;
    background: linear-gradient(135deg, var(--surface-1) 0%, var(--surface-2) 100%);
    border-radius: 4px;
    border-left: 2px solid var(--gold);
    box-shadow: none;
    transition: all var(--ease-base);
    font-size: 0.7rem;
    line-height: 1.35;
}

.rank-prose h2 {
    font-size: 1rem;
    margin-bottom: 0.1875rem;
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.3;
}

.rank-prose:hover {
    box-shadow: none;
    transform: none;
}

.offer-tile {
    background: var(--surface-0);
    border: 2px solid var(--gold);
    border-radius: 12px;
    padding: 0.875rem;
    margin-bottom: 0.875rem;
    transition: all var(--ease-slow);
    position: relative;
    overflow: visible;
    animation: kfTileIn 0.6s ease-out;
    box-shadow: 
        0 0 0 2px rgba(212, 175, 55, 0.1),
        0 0 20px rgba(212, 175, 55, 0.15),
        0 4px 12px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}


@keyframes kfTileIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.offer-tile::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--gold), #F4D03F, var(--gold));
    border-radius: 16px;
    z-index: -1;
    opacity: 0.6;
    filter: blur(8px);
    transition: all var(--ease-slow);
    animation: kfPulseEdge 3s ease-in-out infinite;
}

@keyframes kfPulseEdge {
    0%, 100% {
        opacity: 0.4;
        filter: blur(8px);
    }
    50% {
        opacity: 0.7;
        filter: blur(12px);
    }
}

.offer-tile::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--gold), #F4D03F);
    border-radius: 16px 0 0 16px;
    opacity: 1;
    transition: width var(--ease-base);
}


.tile-top {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: flex-start;
    margin-bottom: 0.625rem;
    padding-bottom: 0.625rem;
    border-bottom: 1px solid var(--line-soft);
}

.badge-pos {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-hover) 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 7px;
    font-weight: 800;
    font-size: 1.1rem;
    min-width: 65px;
    text-align: center;
    box-shadow: var(--elev-md), 0 0 15px rgba(212, 175, 55, 0.3);
    transition: all var(--ease-base);
    position: relative;
    overflow: hidden;
    letter-spacing: -0.02em;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.badge-pos::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    transition: left 0.5s ease;
}

.badge-pos:hover::before {
    left: 100%;
}

.badge-pos:hover {
    transform: scale(1.05);
    box-shadow: var(--elev-lg);
}

.title-cluster {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.tile-heading {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0;
    color: var(--gold);
    transition: color var(--ease-base);
    letter-spacing: -0.01em;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
    flex: 1;
    min-width: 0;
}


.tile-rate {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 0;
    padding: 0.625rem 1rem;
    background: linear-gradient(135deg, var(--gold-dim) 0%, rgba(212, 175, 55, 0.1) 100%);
    border-radius: 6px;
    display: inline-flex;
    border: 1px solid var(--gold-dim);
    flex-shrink: 0;
    align-self: flex-start;
}

.score-val {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}

.score-cap {
    font-size: 1.35rem;
    color: var(--ink-muted);
    font-weight: 600;
}

.badge-tier {
    display: none;
}

.line-licence {
    font-size: 0.75rem;
    color: var(--safe);
    font-weight: 500;
    margin-top: 0.25rem;
    line-height: 1.3;
    width: 100%;
    flex-basis: 100%;
}

.tile-blurb {
    margin-bottom: 0.75rem;
    padding-left: 0.75rem;
    background: transparent;
    border-radius: 0;
    border-left: 3px solid var(--gold);
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--text-primary);
    font-weight: 500;
}

.perk-list {
    list-style: none;
    margin-bottom: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.4375rem;
}

.perk-list li {
    padding: 0.375rem 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-primary);
    transition: all var(--ease-base);
    border-radius: 0;
    background-color: transparent;
    border: none;
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1.5;
    display: flex;
    align-items: center;
}

.perk-list li:hover {
    transform: translateY(-1px);
}

.perk-list li::before {
    content: "✓";
    position: absolute;
    left: 0.625rem;
    color: var(--safe);
    font-weight: 800;
    font-size: 1.1em;
    transition: transform var(--ease-base);
}

.perk-list li:hover::before {
    transform: scale(1.2) rotate(5deg);
}

.btn-go {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-hover) 100%);
    color: white;
    padding: 1rem 1.75rem;
    border-radius: 9px;
    font-weight: 800;
    font-size: 1.05rem;
    text-align: center;
    min-width: 200px;
    min-height: 48px;
    transition: all var(--ease-base);
    border: none;
    cursor: pointer;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    box-shadow: var(--elev-md), 0 0 20px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.01em;
    width: 100%;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.btn-go::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-go:hover {
    transform: translateY(-3px);
    box-shadow: var(--elev-lg), 0 0 30px rgba(212, 175, 55, 0.4);
    text-decoration: none;
    color: white;
    border-color: rgba(212, 175, 55, 0.5);
}

.btn-go:hover::before {
    left: 100%;
}

.btn-go:active {
    transform: translateY(0) scale(0.98);
}

.btn-go:focus {
    outline: 3px solid var(--gold-dim);
    outline-offset: 3px;
}

.fine-print {
    font-size: 0.6875rem;
    color: var(--ink-muted);
    margin-top: 0.5rem;
    font-style: italic;
    text-align: center;
    padding-top: 0.5rem;
    border-top: 1px solid var(--line-soft);
    line-height: 1.3;
}

.strip-partner {
    margin-bottom: 1rem;
    padding: 0.875rem;
    background: rgba(212, 175, 55, 0.08);
    border-left: 3px solid var(--gold);
    border-radius: 6px;
    font-size: 0.75rem;
    line-height: 1.5;
    color: var(--text-primary);
}

.strip-partner p {
    margin-bottom: 0;
    color: var(--text-primary);
}

.strip-partner strong {
    color: var(--gold);
    font-weight: 600;
}

.perk-extra {
    margin-top: 0.75rem;
    padding: 0.75rem;
    background: rgba(42, 42, 42, 0.5);
    border-left: 2px solid var(--gold);
    border-radius: 4px;
    font-size: 0.75rem;
    line-height: 1.5;
    color: var(--ink-muted);
}

.perk-extra strong {
    color: var(--text-primary);
    font-weight: 600;
}

.prose-info {
    margin: 2.5rem 0;
    padding: 2rem;
    background: var(--surface-1);
    border-radius: 12px;
    border-left: 4px solid var(--gold);
}

.prose-info h2 {
    color: var(--gold);
    margin-bottom: 1.25rem;
}

.prose-info p {
    margin-bottom: 1rem;
    color: var(--text-primary);
    line-height: 1.7;
}

.prose-info p:last-child {
    margin-bottom: 0;
}

.prose-info strong {
    color: var(--gold);
    font-weight: 600;
}

.care-wrap {
    background: linear-gradient(135deg, #2A2418 0%, #1F1A0F 100%);
    border-left: 5px solid var(--safe);
    padding: 2rem;
    margin: 2.5rem 0;
    border-radius: 12px;
    box-shadow: var(--elev-sm);
    transition: all var(--ease-base);
    position: relative;
    overflow: hidden;
}

.care-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(30px, -30px);
}

.care-wrap:hover {
    box-shadow: var(--elev-md);
    transform: translateY(-2px);
}

.care-wrap h2 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.care-wrap p {
    margin-bottom: 0.75rem;
}

.care-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.25rem;
}

.care-links a {
    color: var(--gold);
    font-weight: 600;
    padding: 0.75rem 1.25rem;
    background-color: rgba(42, 42, 42, 0.9);
    border-radius: 8px;
    transition: all var(--ease-base);
    border: 1px solid transparent;
}

.care-links a:hover {
    background-color: var(--surface-0);
    border-color: var(--safe);
    transform: translateY(-2px);
    box-shadow: var(--elev-sm);
    text-decoration: none;
}

footer {
    background: linear-gradient(180deg, var(--surface-1) 0%, var(--surface-2) 100%);
    border-top: 2px solid var(--line-soft);
    padding: 3rem 0 2rem;
    margin-top: 4rem;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), #F4D03F);
    opacity: 0.2;
}

.foot-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.foot-block h3 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.foot-block ul {
    list-style: none;
}

.foot-block ul li {
    margin-bottom: 0.5rem;
}

.foot-block a {
    color: var(--ink-muted);
    font-size: 0.875rem;
    transition: all var(--ease-base);
    padding: 0.5rem 0.75rem;
    display: inline-block;
    border-radius: 6px;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
}

.foot-block a:hover {
    color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
    padding-left: 1rem;
    text-decoration: none;
    transform: translateX(4px);
}

.foot-legal {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line-strong);
    font-size: 0.875rem;
    color: var(--ink-muted);
}

.prose-main {
    max-width: 800px;
    margin: 0 auto;
    animation: kfFade 0.5s ease-in;
}

.prose-main section {
    margin-bottom: 2.5rem;
    padding: 0;
}

.prose-main ul,
.prose-main ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.prose-main li {
    margin-bottom: 0.5rem;
}

.form-mail {
    max-width: 600px;
    margin: 0 auto;
}

.field-group {
    margin-bottom: 1.5rem;
}

.field-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-primary);
}

.field-group input,
.field-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--line-soft);
    border-radius: 10px;
    font-size: 16px;
    font-family: inherit;
    transition: all var(--ease-base);
    -webkit-appearance: none;
    appearance: none;
    min-height: 52px;
    touch-action: manipulation;
    background-color: var(--surface-0);
    color: var(--text-primary);
}

.field-group input:hover,
.field-group textarea:hover {
    border-color: var(--line-strong);
}

.field-group input:focus,
.field-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 4px var(--gold-dim);
    background-color: var(--surface-0);
}

.field-group input::placeholder,
.field-group textarea::placeholder {
    color: var(--ink-faint);
    opacity: 0.7;
}

.field-group textarea {
    min-height: 150px;
    resize: vertical;
}

.dock-root {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 3px solid var(--gold);
    padding: 1.5rem;
    padding-bottom: calc(1.5rem + env(safe-area-inset-bottom));
    box-shadow: var(--elev-xl);
    z-index: 1000;
    display: none;
    max-height: 90vh;
    overflow-y: auto;
    animation: kfDock 0.4s ease-out;
}

@keyframes kfDock {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.dock-root.dock-on {
    display: block;
}

.dock-frame {
    max-width: var(--shell-max);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
}

.dock-copy {
    flex: 1;
    min-width: 250px;
    font-size: 0.875rem;
    color: var(--text-primary);
}

.dock-copy a {
    color: var(--gold);
    font-weight: 500;
}

.dock-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.dock-tap {
    padding: 1rem 1.75rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    min-height: 52px;
    transition: all var(--ease-base);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    flex: 1;
    position: relative;
    overflow: hidden;
}

.dock-tap::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.dock-tap:active::before {
    width: 300px;
    height: 300px;
}

.dock-tap:active {
    transform: scale(0.97);
}

.dock-tap.dock-yes {
    background-color: var(--gold);
    color: white;
}

.dock-tap.dock-yes:hover {
    background-color: #3B56E6;
}

.dock-tap.dock-no {
    background-color: var(--surface-1);
    color: var(--text-primary);
    border: 1px solid var(--line-strong);
}

.dock-tap.dock-no:hover {
    background-color: var(--line-strong);
}

.dock-tap:focus {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

@media (max-width: 768px) {
    html {
        font-size: 16px;
    }

    body {
        padding-bottom: env(safe-area-inset-bottom);
    }

    h1 {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    h2 {
        font-size: 1.35rem;
        line-height: 1.4;
    }

    h3 {
        font-size: 1.15rem;
    }

    .shell-wrap {
        padding: 0 0.875rem;
    }

    header {
        padding: 0.3125rem 0;
    }

    .mast-inner {
        gap: 0.125rem;
    }

    .mast-row {
        margin-bottom: 0;
        flex-direction: row;
        align-items: center;
        width: 100%;
        gap: 0.375rem;
    }

    .wordmark {
        font-size: 0.9rem;
        flex: 1;
        font-weight: 800;
        letter-spacing: -0.01em;
        padding-left: 2.5rem;
    }

    .wordmark::before {
        width: 32px;
        height: 32px;
        border-radius: 8px;
    }

    .wordmark::after {
        left: 8px;
        width: 16px;
        height: 16px;
        border-radius: 3px;
    }

    .age-stamp {
        font-size: 0.625rem;
        padding: 0.3125rem 0.625rem;
        font-weight: 700;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .nav-fab {
        display: flex;
    }

    nav {
        max-height: 0;
        overflow: hidden;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        z-index: 99;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        transition: max-height 0.3s ease;
    }

    nav.nav-on {
        max-height: 500px;
        overflow-y: auto;
    }

    body.nav-locked {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }

    nav ul {
        flex-direction: column;
        gap: 0;
        margin-top: 0;
        padding: 0.5rem 0;
    }

    nav ul li {
        border-bottom: 1px solid var(--line-strong);
    }

    nav ul li:last-child {
        border-bottom: none;
    }

    nav a {
        padding: 0.75rem 0.875rem;
        min-height: 44px;
        font-size: 0.9rem;
        margin: 0.125rem 0;
        border-radius: 6px;
    }

    main {
        padding: 0.125rem 0;
        margin-top: 70px;
    }

    .intro-splash {
        padding: 0.375rem 0.625rem;
        margin-bottom: 0.3125rem;
        border-radius: 4px;
        background: var(--surface-2);
        box-shadow: none;
        border-left: none;
    }

    .intro-splash h1 {
        font-size: 0.95rem;
        margin-bottom: 0.1875rem;
        font-weight: 700;
        line-height: 1.2;
        color: var(--text-primary);
        white-space: nowrap;
    }

    .intro-splash p {
        font-size: 0.75rem;
        line-height: 1.35;
        margin-bottom: 0;
        color: var(--text-primary);
    }

    .intro-splash p:last-child {
        font-size: 0.65rem;
        margin-bottom: 0;
        color: var(--ink-muted);
        padding: 0.375rem;
        background: rgba(42, 42, 42, 0.7);
        border-radius: 3px;
        border-left: 2px solid var(--gold);
        line-height: 1.3;
    }

    .intro-legal {
        margin-top: 0.75rem;
        padding: 0.75rem;
        font-size: 0.6875rem;
        line-height: 1.4;
    }

    .strip-partner {
        margin-bottom: 0.75rem;
        padding: 0.625rem;
        font-size: 0.6875rem;
        line-height: 1.4;
    }

    .perk-extra {
        margin-top: 0.625rem;
        padding: 0.625rem;
        font-size: 0.6875rem;
        line-height: 1.4;
    }

    .prose-info {
        margin: 1.5rem 0;
        padding: 1.25rem;
        border-left-width: 3px;
    }

    .prose-info h2 {
        font-size: 1.125rem;
        margin-bottom: 1rem;
    }

    .prose-info p {
        font-size: 0.8125rem;
        margin-bottom: 0.875rem;
    }

    .intro-splash p strong {
        color: var(--text-primary);
        font-weight: 700;
    }

    .rank-prose {
        padding: 0.3125rem 0.5rem;
        margin-bottom: 0.3125rem;
        font-size: 0.6875rem;
        line-height: 1.35;
        background: var(--surface-1);
        border-left: 2px solid var(--gold);
        border-radius: 4px;
        box-shadow: none;
    }

    .rank-prose h2 {
        font-size: 0.85rem;
        margin-bottom: 0.1875rem;
        color: var(--text-primary);
        font-weight: 700;
        line-height: 1.25;
    }

    .rank-prose p {
        margin-bottom: 0;
        font-size: 0.7rem;
        line-height: 1.4;
    }

    .rank-wrap {
        margin-bottom: 0.625rem;
        margin-top: 0;
    }

    .offer-tile {
        padding: 0.4375rem;
        margin-bottom: 0.4375rem;
        margin-top: 0;
        border-radius: 8px;
        border: 3px solid var(--gold);
        background: var(--surface-0);
        box-shadow: 
            0 0 0 1px rgba(212, 175, 55, 0.3),
            0 0 20px rgba(212, 175, 55, 0.2),
            0 4px 12px rgba(0, 0, 0, 0.15);
        display: block;
        width: 100%;
        max-width: 100%;
        overflow: visible;
        scroll-margin-top: 0.5rem;
        cursor: pointer;
        position: relative;
        transition: all 0.3s ease;
    }

    .offer-tile::before {
        content: '';
        position: absolute;
        top: -3px;
        left: -3px;
        right: -3px;
        bottom: -3px;
        background: linear-gradient(135deg, var(--gold), #F4D03F, var(--gold));
        border-radius: 10px;
        opacity: 0.6;
        z-index: -1;
        filter: blur(8px);
        animation: kfMobPulse 2s ease-in-out infinite;
    }

    @keyframes kfMobPulse {
        0%, 100% {
            opacity: 0.4;
        }
        50% {
            opacity: 0.7;
        }
    }


    .offer-tile:active {
        transform: translateY(-1px);
        box-shadow: 
            0 0 0 2px rgba(244, 208, 63, 0.6),
            0 0 25px rgba(212, 175, 55, 0.5),
            0 3px 10px rgba(0, 0, 0, 0.2);
    }

    .offer-tile::before {
        content: '';
        position: absolute;
        top: -3px;
        left: -3px;
        right: -3px;
        bottom: -3px;
        background: linear-gradient(135deg, var(--gold), #F4D03F, var(--gold));
        border-radius: 10px;
        opacity: 0.6;
        z-index: -1;
        filter: blur(8px);
        animation: kfMobPulse 2s ease-in-out infinite;
    }

    .offer-tile::after {
        display: none;
    }

    .tile-top {
        flex-direction: row;
        align-items: flex-start;
        gap: 0.4375rem;
        margin-bottom: 0.3125rem;
        padding-bottom: 0.3125rem;
        border-bottom: 1px solid var(--line-soft);
        width: 100%;
    }

    .badge-pos {
        align-self: flex-start;
        font-size: 0.775rem;
        padding: 0.3125rem 0.5625rem;
        min-width: 38px;
        font-weight: 900;
        background: linear-gradient(135deg, var(--gold) 0%, #F4D03F 50%, var(--gold-hover) 100%);
        color: white;
        border: 2px solid rgba(255, 255, 255, 0.3);
        box-shadow: 
            0 0 10px rgba(212, 175, 55, 0.5),
            0 3px 10px rgba(212, 175, 55, 0.4),
            inset 0 1px 2px rgba(255, 255, 255, 0.2);
        text-align: center;
        border-radius: 6px;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    }

    .title-cluster {
        flex: 1;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.75rem;
        flex-wrap: wrap;
    }

    .tile-heading {
        font-size: 1.9rem;
        line-height: 1.2;
        margin-bottom: 0;
        font-weight: 900;
        color: var(--gold);
        text-shadow: 
            0 2px 8px rgba(212, 175, 55, 0.5),
            0 0 15px rgba(212, 175, 55, 0.3);
        letter-spacing: -0.01em;
        flex: 1;
        min-width: 0;
    }

    .tile-rate {
        padding: 0.25rem 0.5625rem;
        margin-bottom: 0;
        background: rgba(212, 175, 55, 0.15);
        border: none;
        border-radius: 3px;
        display: inline-flex;
        align-items: baseline;
        flex-shrink: 0;
        align-self: flex-start;
    }

    .score-val {
        font-size: 1.35rem;
        font-weight: 800;
        color: var(--gold);
    }

    .score-cap {
        font-size: 0.95rem;
        font-weight: 600;
    }

    .line-licence {
        font-size: 0.6875rem;
        margin-top: 0.25rem;
        line-height: 1.3;
        display: block;
        padding: 0.375rem;
        background: rgba(16, 185, 129, 0.08);
        border-left: 2px solid var(--safe);
        border-radius: 3px;
        color: var(--safe);
        font-weight: 600;
        width: 100%;
        flex-basis: 100%;
    }

    .badge-tier {
        font-size: 0.6875rem;
        padding: 0.1875rem 0.4375rem;
        margin-bottom: 0.25rem;
        display: inline-block;
        background-color: rgba(212, 175, 55, 0.15);
        color: var(--gold);
    }

    .tile-blurb {
        font-size: 0.725rem;
        line-height: 1.35;
        padding-left: 0.4375rem;
        margin-bottom: 0.375rem;
        background: transparent;
        border-left: 3px solid var(--gold);
        border-radius: 0;
        font-weight: 500;
    }

    .perk-list {
        grid-template-columns: 1fr;
        gap: 0.1rem;
        margin-bottom: 0.3125rem;
    }

    .perk-list li {
        padding: 0.1875rem 0.3125rem;
        padding-left: 1.125rem;
        font-size: 0.6875rem;
        background: transparent;
        border: none;
        border-radius: 0;
        min-height: 24px;
        display: flex;
        align-items: center;
        font-weight: 500;
        position: relative;
        line-height: 1.28;
    }

    .perk-list li::before {
        content: "✓";
        position: absolute;
        left: 0.3125rem;
        color: var(--safe);
        font-weight: 800;
        font-size: 0.875em;
        transition: transform var(--ease-base);
    }

    .perk-list li:hover::before {
        transform: scale(1.2) rotate(5deg);
    }

    .btn-go {
        width: 100%;
        padding: 0.75rem 1.375rem;
        font-size: 0.9rem;
        border-radius: 7px;
        min-height: 44px;
        min-width: 100%;
        font-weight: 900;
        background: linear-gradient(135deg, var(--gold) 0%, #F4D03F 50%, var(--gold-hover) 100%);
        box-shadow: 
            0 0 15px rgba(212, 175, 55, 0.5),
            0 4px 12px rgba(212, 175, 55, 0.4),
            inset 0 1px 2px rgba(255, 255, 255, 0.2);
        margin-bottom: 0.3125rem;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        letter-spacing: 0.02em;
        border: 2px solid rgba(255, 255, 255, 0.2);
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
        position: relative;
        overflow: hidden;
    }

    .btn-go::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transition: left 0.5s ease;
    }

    .btn-go:hover::before {
        left: 100%;
    }

    .btn-go:hover {
        box-shadow: 
            0 0 20px rgba(212, 175, 55, 0.6),
            0 5px 15px rgba(212, 175, 55, 0.5),
            inset 0 1px 2px rgba(255, 255, 255, 0.3);
        transform: translateY(-2px);
    }

    .btn-go:active {
        transform: translateY(0);
        box-shadow: 
            0 0 15px rgba(212, 175, 55, 0.5),
            0 3px 10px rgba(212, 175, 55, 0.4);
    }

    .fine-print {
        font-size: 0.5625rem;
        margin-top: 0;
        padding-top: 0.5rem;
        border-top: 1px solid var(--line-soft);
        text-align: center;
        color: var(--ink-muted);
        font-weight: 500;
        line-height: 1.3;
    }

    .care-wrap {
        padding: 0.875rem;
        margin: 1rem 0;
        border-radius: 6px;
        border-left: 3px solid var(--safe);
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
        background: rgba(16, 185, 129, 0.05);
    }

    .care-wrap h2 {
        font-size: 1rem;
        margin-bottom: 0.625rem;
        color: var(--text-primary);
    }

    .care-wrap p {
        font-size: 0.75rem;
        line-height: 1.45;
        margin-bottom: 0.625rem;
        color: var(--text-primary);
    }

    .care-wrap p strong {
        color: var(--text-primary);
        font-weight: 700;
    }

    .care-links {
        flex-direction: column;
        gap: 0.625rem;
        margin-top: 0.875rem;
    }

    .care-links a {
        padding: 0.6875rem 1rem;
        font-size: 0.8125rem;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        font-weight: 600;
        background-color: rgba(16, 185, 129, 0.1);
        border-radius: 5px;
        border: 1px solid rgba(16, 185, 129, 0.2);
    }

    .prose-main {
        padding: 0 0.5rem;
    }

    .prose-main section {
        margin-bottom: 1rem;
    }

    .prose-main ul,
    .prose-main ol {
        margin-left: 1rem;
        padding-left: 0.5rem;
    }

    .prose-main li {
        margin-bottom: 0.625rem;
        line-height: 1.5;
    }

    .dock-root {
        padding: 0.875rem;
        padding-bottom: calc(0.875rem + env(safe-area-inset-bottom));
    }

    .dock-frame {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }

    .dock-copy {
        font-size: 0.8125rem;
        line-height: 1.4;
    }

    .dock-actions {
        flex-direction: column;
        gap: 0.625rem;
    }

    .dock-tap {
        width: 100%;
        padding: 0.875rem 1.25rem;
        min-height: 44px;
        font-size: 0.9rem;
    }

    footer {
        padding: 1.25rem 0;
        margin-top: 1.5rem;
        border-top: 2px solid rgba(212, 175, 55, 0.2);
    }

    .foot-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .foot-block {
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    }

    .foot-block:last-child {
        border-bottom: none;
    }

    .foot-block h3 {
        font-size: 1rem;
        margin-bottom: 0.875rem;
        color: var(--gold);
        font-weight: 800;
    }

    .foot-block ul {
        margin: 0;
        padding: 0;
    }

    .foot-block ul li {
        margin-bottom: 0.5rem;
    }

    .foot-block a {
        font-size: 0.875rem;
        padding: 0.625rem 0.75rem;
        min-height: 44px;
        display: flex;
        align-items: center;
        color: var(--text-primary);
        background: rgba(212, 175, 55, 0.05);
        border-radius: 6px;
        transition: all var(--ease-base);
        border: 1px solid transparent;
    }

    .foot-block a:hover,
    .foot-block a:active {
        color: var(--gold);
        background: rgba(212, 175, 55, 0.1);
        border-color: rgba(212, 175, 55, 0.3);
        padding-left: 1rem;
        text-decoration: none;
        transform: translateX(4px);
    }

    .foot-legal {
        padding-top: 1rem;
        font-size: 0.75rem;
        line-height: 1.5;
        color: var(--ink-muted);
        margin-top: 0.75rem;
    }
}

@media (max-width: 480px) {
    .shell-wrap {
        padding: 0 0.625rem;
    }

    header {
        padding: 0.3125rem 0;
    }

    main {
        padding: 0.125rem 0;
        margin-top: 65px;
    }

    h1 {
        font-size: 1.3rem;
        line-height: 1.3;
    }

    h2 {
        font-size: 1.1rem;
        line-height: 1.4;
    }

    .wordmark {
        font-size: 0.85rem;
        font-weight: 800;
        letter-spacing: -0.01em;
        padding-left: 2.25rem;
    }

    .wordmark::before {
        width: 28px;
        height: 28px;
        border-radius: 7px;
    }

    .wordmark::after {
        left: 7px;
        width: 14px;
        height: 14px;
        border-radius: 3px;
    }

    .intro-splash {
        padding: 0.3125rem 0.5rem;
        margin-bottom: 0.25rem;
        border-radius: 3px;
        background: var(--surface-2);
        box-shadow: none;
        border-left: none;
    }

    .intro-splash h1 {
        font-size: 0.85rem;
        margin-bottom: 0.125rem;
        font-weight: 700;
        line-height: 1.2;
        color: var(--text-primary);
        white-space: nowrap;
    }

    .intro-splash p {
        font-size: 0.7rem;
        line-height: 1.35;
        margin-bottom: 0;
        color: var(--text-primary);
    }

    .intro-splash p:last-child {
        font-size: 0.625rem;
        margin-bottom: 0;
        color: var(--ink-muted);
        padding: 0.3125rem;
        background: rgba(42, 42, 42, 0.7);
        border-radius: 3px;
        border-left: 2px solid var(--gold);
    }

    .intro-splash p strong {
        color: var(--text-primary);
        font-weight: 700;
    }

    .rank-prose {
        padding: 0.25rem 0.4375rem;
        margin-bottom: 0.25rem;
        font-size: 0.65rem;
        line-height: 1.35;
        background: var(--surface-1);
        border-left: 2px solid var(--gold);
        border-radius: 3px;
        box-shadow: none;
    }

    .rank-prose h2 {
        font-size: 0.8rem;
        margin-bottom: 0.125rem;
        color: var(--text-primary);
        font-weight: 700;
        line-height: 1.25;
    }

    .rank-prose p {
        margin-bottom: 0;
        font-size: 0.65rem;
    }

    .rank-wrap {
        margin-bottom: 0.5rem;
        margin-top: 0;
    }

    .line-licence {
        font-size: 0.625rem;
        padding: 0.25rem 0.375rem;
        line-height: 1.3;
        margin-top: 0.25rem;
        width: 100%;
        flex-basis: 100%;
    }

    .badge-tier {
        display: none;
    }

    .offer-tile {
        padding: 0.375rem;
        border-radius: 7px;
        margin-bottom: 0.375rem;
        margin-top: 0;
        border: 3px solid var(--gold);
        display: block;
        width: 100%;
        max-width: 100%;
        background: var(--surface-0);
        box-shadow: 
            0 0 0 1px rgba(212, 175, 55, 0.3),
            0 0 18px rgba(212, 175, 55, 0.2),
            0 3px 10px rgba(0, 0, 0, 0.15);
        cursor: pointer;
        position: relative;
        transition: all 0.3s ease;
    }

    .offer-tile::before {
        content: '';
        position: absolute;
        top: -3px;
        left: -3px;
        right: -3px;
        bottom: -3px;
        background: linear-gradient(135deg, var(--gold), #F4D03F, var(--gold));
        border-radius: 9px;
        opacity: 0.55;
        z-index: -1;
        filter: blur(7px);
        animation: kfMobPulse 2s ease-in-out infinite;
    }


    .offer-tile:active {
        transform: translateY(-1px);
        box-shadow: 
            0 0 0 2px rgba(244, 208, 63, 0.6),
            0 0 20px rgba(212, 175, 55, 0.5),
            0 2px 8px rgba(0, 0, 0, 0.2);
    }

    .offer-tile::before {
        content: '';
        position: absolute;
        top: -3px;
        left: -3px;
        right: -3px;
        bottom: -3px;
        background: linear-gradient(135deg, var(--gold), #F4D03F, var(--gold));
        border-radius: 9px;
        opacity: 0.55;
        z-index: -1;
        filter: blur(7px);
        animation: kfMobPulse 2s ease-in-out infinite;
    }

    .offer-tile::after {
        display: none;
    }

    .tile-top {
        flex-direction: row;
        align-items: flex-start;
        gap: 0.3125rem;
        margin-bottom: 0.25rem;
        padding-bottom: 0.25rem;
        border-bottom: 1px solid var(--line-soft);
        width: 100%;
    }

    .title-cluster {
        flex: 1;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.5rem;
        flex-wrap: wrap;
    }

    .tile-heading {
        font-size: 1.7rem;
        margin-bottom: 0;
        font-weight: 900;
        line-height: 1.2;
        color: var(--gold);
        text-shadow: 
            0 2px 8px rgba(212, 175, 55, 0.5),
            0 0 12px rgba(212, 175, 55, 0.3);
        letter-spacing: -0.01em;
        flex: 1;
        min-width: 0;
    }

    .badge-pos {
        font-size: 0.725rem;
        padding: 0.25rem 0.5rem;
        min-width: 36px;
        font-weight: 900;
        background: linear-gradient(135deg, var(--gold) 0%, #F4D03F 50%, var(--gold-hover) 100%);
        color: white;
        border: 2px solid rgba(255, 255, 255, 0.25);
        box-shadow: 
            0 0 8px rgba(212, 175, 55, 0.5),
            0 2px 8px rgba(212, 175, 55, 0.4),
            inset 0 1px 2px rgba(255, 255, 255, 0.2);
        text-align: center;
        border-radius: 5px;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    }

    .tile-rate {
        padding: 0.2rem 0.5rem;
        margin-bottom: 0;
        background: rgba(212, 175, 55, 0.15);
        border: none;
        border-radius: 3px;
        display: inline-flex;
        align-items: baseline;
        flex-shrink: 0;
        align-self: flex-start;
    }

    .score-val {
        font-size: 1.25rem;
        font-weight: 800;
        color: var(--gold);
    }

    .score-cap {
        font-size: 0.875rem;
        font-weight: 600;
    }

    .tile-blurb {
        font-size: 0.6625rem;
        line-height: 1.3;
        padding-left: 0.375rem;
        margin-bottom: 0.3125rem;
        background: transparent;
        border-left: 2px solid var(--gold);
        border-radius: 0;
        font-weight: 500;
    }

    .perk-list {
        gap: 0.0625rem;
        margin-bottom: 0.3125rem;
    }

    .perk-list li {
        padding: 0.125rem 0.25rem;
        padding-left: 1rem;
        font-size: 0.6625rem;
        background: transparent;
        border: none;
        border-radius: 0;
        min-height: 22px;
        display: flex;
        align-items: center;
        font-weight: 500;
        line-height: 1.28;
        position: relative;
    }

    .perk-list li::before {
        content: "✓";
        position: absolute;
        left: 0.25rem;
        color: var(--safe);
        font-weight: 800;
        font-size: 0.8em;
        transition: transform var(--ease-base);
    }

    .perk-list li:hover::before {
        transform: scale(1.2) rotate(5deg);
    }

    .btn-go {
        padding: 0.6875rem 1.25rem;
        font-size: 0.85rem;
        min-height: 42px;
        border-radius: 7px;
        margin-bottom: 0.25rem;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 
            0 0 12px rgba(212, 175, 55, 0.5),
            0 3px 10px rgba(212, 175, 55, 0.4),
            inset 0 1px 2px rgba(255, 255, 255, 0.2);
        font-weight: 900;
        letter-spacing: 0.02em;
        background: linear-gradient(135deg, var(--gold) 0%, #F4D03F 50%, var(--gold-hover) 100%);
        border: 2px solid rgba(255, 255, 255, 0.2);
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
        position: relative;
        overflow: hidden;
    }

    .btn-go::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
        transition: left 0.5s ease;
    }

    .btn-go:hover::before {
        left: 100%;
    }

    .btn-go:hover {
        box-shadow: 
            0 0 18px rgba(212, 175, 55, 0.6),
            0 4px 12px rgba(212, 175, 55, 0.5),
            inset 0 1px 2px rgba(255, 255, 255, 0.3);
        transform: translateY(-2px);
    }

    .btn-go:active {
        transform: translateY(0);
        box-shadow: 
            0 0 12px rgba(212, 175, 55, 0.5),
            0 2px 8px rgba(212, 175, 55, 0.4);
    }

    .fine-print {
        font-size: 0.5375rem;
        margin-top: 0;
        padding-top: 0.4375rem;
        border-top: 1px solid var(--line-soft);
        text-align: center;
        color: var(--ink-muted);
        font-weight: 500;
        line-height: 1.3;
    }

    .care-wrap {
        padding: 0.75rem;
        margin: 0.875rem 0;
        border-radius: 5px;
        border-left: 3px solid var(--safe);
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
        background: rgba(16, 185, 129, 0.05);
    }

    .care-wrap h2 {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
        color: var(--text-primary);
    }

    .care-wrap p {
        font-size: 0.7rem;
        line-height: 1.4;
        margin-bottom: 0.5rem;
        color: var(--text-primary);
    }

    .care-wrap p strong {
        color: var(--text-primary);
        font-weight: 700;
    }

    .care-links {
        flex-direction: column;
        gap: 0.5rem;
        margin-top: 0.75rem;
    }

    .care-links a {
        padding: 0.625rem 0.875rem;
        font-size: 0.775rem;
        min-height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        font-weight: 600;
        background-color: rgba(16, 185, 129, 0.1);
        border-radius: 4px;
        border: 1px solid rgba(16, 185, 129, 0.2);
    }

    footer {
        padding: 1rem 0;
        margin-top: 1.25rem;
        border-top: 2px solid rgba(212, 175, 55, 0.2);
    }

    .foot-layout {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .foot-block {
        padding: 0.625rem 0;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    }

    .foot-block:last-child {
        border-bottom: none;
    }

    .foot-block h3 {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
        color: var(--gold);
        font-weight: 800;
    }

    .foot-block ul {
        margin: 0;
        padding: 0;
    }

    .foot-block ul li {
        margin-bottom: 0.4375rem;
    }

    .foot-block a {
        font-size: 0.8125rem;
        padding: 0.5625rem 0.625rem;
        min-height: 42px;
        display: flex;
        align-items: center;
        color: var(--text-primary);
        background: rgba(212, 175, 55, 0.05);
        border-radius: 5px;
        transition: all var(--ease-base);
        border: 1px solid transparent;
    }

    .foot-block a:hover,
    .foot-block a:active {
        color: var(--gold);
        background: rgba(212, 175, 55, 0.1);
        border-color: rgba(212, 175, 55, 0.3);
        padding-left: 0.875rem;
        text-decoration: none;
        transform: translateX(3px);
    }

    .foot-legal {
        padding-top: 0.875rem;
        font-size: 0.7rem;
        line-height: 1.45;
        color: var(--ink-muted);
        margin-top: 0.625rem;
    }

    .prose-main {
        padding: 0 0.5rem;
    }

    .prose-main section {
        margin-bottom: 0.875rem;
    }

    .prose-main ul,
    .prose-main ol {
        margin-left: 0.875rem;
        padding-left: 0.5rem;
    }

    .prose-main li {
        margin-bottom: 0.5rem;
        line-height: 1.45;
    }

    .dock-root {
        padding: 0.75rem;
        padding-bottom: calc(0.75rem + env(safe-area-inset-bottom));
    }

    .dock-frame {
        flex-direction: column;
        align-items: stretch;
        gap: 0.625rem;
    }

    .dock-copy {
        font-size: 0.775rem;
        line-height: 1.4;
    }

    .dock-actions {
        flex-direction: column;
        gap: 0.5rem;
    }

    .dock-tap {
        width: 100%;
        padding: 0.75rem 1rem;
        min-height: 40px;
        font-size: 0.875rem;
    }
}

@media (hover: none) and (pointer: coarse) {
    a, button {
        -webkit-tap-highlight-color: rgba(212, 175, 55, 0.2);
    }

    .btn-go:hover {
        background-color: var(--gold);
    }

    nav a:hover {
        color: var(--text-primary);
    }
}

@supports (padding: max(0px)) {
    header {
        padding-left: max(1rem, env(safe-area-inset-left));
        padding-right: max(1rem, env(safe-area-inset-right));
    }

    .shell-wrap {
        padding-left: max(1rem, env(safe-area-inset-left));
        padding-right: max(1rem, env(safe-area-inset-right));
    }

    footer {
        padding-left: max(1rem, env(safe-area-inset-left));
        padding-right: max(1rem, env(safe-area-inset-right));
    }
}

@media print {
    .dock-root,
    nav,
    .btn-go {
        display: none;
    }
}

