:root {
    --two-primary: #67c7b8;
    --two-secondary: #17343a;
    --two-accent: #ffbf69;
    --two-background: #f4fbf8;
    --two-surface: #ffffff;
    --two-surface-strong: rgba(255, 255, 255, .96);
    --two-text: #133038;
    --two-muted: #5b7480;
    --two-button-text: #ffffff;
    --two-card-radius: 22px;
    --two-button-radius: 999px;
    --two-primary-soft: rgba(103, 199, 184, .12);
    --two-accent-soft: rgba(255, 191, 105, .16);
    --two-shadow: 0 18px 40px rgba(12, 38, 42, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background:
        radial-gradient(circle at top right, rgba(103, 199, 184, .15), transparent 24%),
        radial-gradient(circle at top left, rgba(255, 191, 105, .16), transparent 18%),
        var(--two-background);
    color: var(--two-text);
    line-height: 1.6;
}
a { color: inherit; }
img { max-width: 100%; height: auto; display: block; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.site-header {
    position: sticky; top: 0; z-index: 30;
    backdrop-filter: blur(14px);
    background: rgba(244, 251, 248, .82);
    border-bottom: 1px solid rgba(23, 52, 58, .08);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 16px 0; }
.site-title { font-size: 1.2rem; font-weight: 800; text-decoration: none; color: var(--two-secondary); }
.menu { display: flex; gap: 18px; list-style: none; margin: 0; padding: 0; }
.menu a { color: var(--two-muted); text-decoration: none; font-weight: 600; }
.menu a:hover, .menu a:focus { color: var(--two-secondary); }
.hero-section { padding: 72px 0 28px; }
.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: center;
}
.eyebrow {
    display: inline-flex;
    margin-bottom: 16px;
    padding: 8px 14px;
    background: var(--two-primary-soft);
    color: var(--two-secondary);
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.hero-copy h1 { margin: 0 0 16px; font-size: clamp(2rem, 5vw, 4rem); line-height: 1.08; color: var(--two-secondary); }
.hero-copy p { margin: 0 0 28px; color: var(--two-muted); font-size: 1.05rem; max-width: none; }
.hero-panel {
    display: grid; gap: 18px;
    padding: 26px;
    background: linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.65));
    border-radius: calc(var(--two-card-radius) + 8px);
    border: 1px solid rgba(23, 52, 58, .08);
    box-shadow: var(--two-shadow);
}
.hero-stat-card {
    padding: 24px;
    background: var(--two-surface-strong);
    border-radius: var(--two-card-radius);
    border: 1px solid rgba(23, 52, 58, .06);
}
.hero-stat-card span { display: block; color: var(--two-muted); margin-bottom: 8px; }
.hero-stat-card strong { font-size: 1.1rem; color: var(--two-secondary); }
.hero-stat-card.muted { background: linear-gradient(135deg, var(--two-primary-soft), rgba(255,255,255,.8)); }
.badges-section { padding: 12px 0 28px; }
.badge-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.badge-item {
    display: flex; align-items: center; gap: 12px;
    padding: 16px 18px;
    background: rgba(255,255,255,.72);
    border: 1px solid rgba(23, 52, 58, .06);
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(12, 38, 42, .05);
}
.badge-icon {
    width: 34px; height: 34px; display: inline-grid; place-items: center;
    border-radius: 50%;
    color: var(--two-button-text);
    background: var(--two-primary);
    font-weight: 900;
}
.offers-section { padding: 30px 0 80px; }
.section-heading { margin-bottom: 18px; }
.section-heading h2 { margin: 8px 0 0; font-size: clamp(1.6rem, 3vw, 2.4rem); color: var(--two-secondary); }
.cards-stack { display: grid; gap: 18px; }
.offer-card {
    display: grid;
    grid-template-columns: 90px minmax(220px, 1.2fr) minmax(260px, 1.35fr) minmax(220px, .95fr);
    gap: 18px;
    align-items: center;
    padding: 24px;
    background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.88));
    border: 1px solid rgba(23, 52, 58, .08);
    border-radius: var(--two-card-radius);
    box-shadow: var(--two-shadow);
}
.offer-rank {
    font-size: 2rem;
    font-weight: 900;
    color: var(--two-accent);
    text-align: center;
}
.offer-brand { display: flex; align-items: center; gap: 16px; }
.offer-logo-link { text-decoration: none; }
.offer-logo {
    width: 86px; height: 86px; object-fit: cover;
    border-radius: 18px;
    background: rgba(103,199,184,.10);
    border: 1px solid rgba(23, 52, 58, .08);
}
.fallback-logo {
    display: grid; place-items: center;
    padding: 12px;
    color: var(--two-secondary);
    font-weight: 800;
}
.offer-branding-text h3 { margin: 0 0 5px; font-size: 1.25rem; color: var(--two-secondary); }

.domain-link { display: block; }
.rating-text { display: block; margin-top: 6px; font-weight: 700; }
.text-link { color: var(--two-muted); text-decoration: none; }
.domain-link:hover, .text-link:hover { color: var(--two-secondary); }
.offer-label {
    display: inline-block;
    margin-bottom: 6px;
    color: var(--two-accent);
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 800;
}
.offer-copy strong { display: block; margin-bottom: 10px; font-size: 1.12rem; color: var(--two-secondary); }
.card-excerpt { color: var(--two-muted); font-size: .95rem; }
.card-excerpt p:last-child { margin-bottom: 0; }
.offer-cta { display: grid; gap: 10px; justify-items: start; }
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    min-height: 50px; padding: 0 22px;
    border-radius: var(--two-button-radius);
    border: none;
    text-decoration: none;
    font-weight: 800;
    transition: transform .2s ease, opacity .2s ease;
}
.btn:hover { transform: translateY(-1px); opacity: .96; }
.btn-primary {
    background: linear-gradient(135deg, var(--two-primary), color-mix(in srgb, var(--two-secondary), white 22%));
    color: var(--two-button-text);
}
.price-note { color: var(--two-muted); font-size: .95rem; }
.offer-meta-row {
    grid-column: 2 / -1;
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    padding-top: 4px;
}
.tag-pill {
    display: inline-flex; align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--two-accent-soft);
    color: #8d5300;
    font-weight: 800;
    font-size: .85rem;
}
.disclaimer-text { margin: 0; color: var(--two-muted); font-size: .88rem; }
.generic-page { padding: 56px 0 80px; }
.content-card {
    padding: 32px;
    background: rgba(255,255,255,.82);
    border: 1px solid rgba(23, 52, 58, .06);
    border-radius: var(--two-card-radius);
    box-shadow: var(--two-shadow);
}
.site-footer {
    border-top: 1px solid rgba(23, 52, 58, .08);
    background: rgba(255,255,255,.6);
}
.footer-inner {
    display: flex; justify-content: space-between; gap: 16px; align-items: center;
    padding: 24px 0;
    color: var(--two-muted);
}
.footer-menu { flex-wrap: wrap; justify-content: flex-end; }

@media (max-width: 980px) {
    .hero-grid,
    .offer-card {
        grid-template-columns: 1fr;
    }
    .badge-grid { grid-template-columns: 1fr; }
    .offer-rank { text-align: left; }
    .offer-meta-row { grid-column: auto; flex-direction: column; align-items: start; }
    .header-inner, .footer-inner { flex-direction: column; align-items: start; }
    .menu { flex-wrap: wrap; }
}

@media (max-width: 640px) {
    .hero-section { padding-top: 48px; }
    .offer-card { padding: 18px; }
    .hero-panel { padding: 18px; }
    .content-card { padding: 22px; }
}

.site-branding {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.site-logo-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    line-height: 0;
}

.site-logo-wrap .custom-logo-link {
    display: inline-flex;
    line-height: 0;
}

.site-logo-wrap .custom-logo {
    width: 2.4rem;
    height: 2.4rem;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}
