/* ==========================================================
   licence.broker — Corporate gradient SaaS / consultancy grid
   Palette
     #f8f9fc  primary background (cool white)
     #eef1f8  hero gradient stop
     #f1f3f8  trust / partner section
     #2563eb  primary blue (links, CTAs, rectangles)
     #7c3aed  premium accent (purple)
     #059669  success / active deals (green)
     #1e293b  primary text (slate)
     #9ca3af  muted text
     #e5e7eb  borders, dividers
     #ffffff  card background
   Typography
     Plus Jakarta Sans (display) — substitute for General Sans
     DM Sans (body, labels)
   ========================================================== */

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

:root {
    --bg-primary: #f8f9fc;
    --bg-stop: #eef1f8;
    --bg-trust: #f1f3f8;
    --color-blue: #2563eb;
    --color-purple: #7c3aed;
    --color-green: #059669;
    --color-amber: #eab308;
    --color-text: #1e293b;
    --color-muted: #9ca3af;
    --color-border: #e5e7eb;
    --color-white: #ffffff;
    --radius: 8px;
    --radius-lg: 14px;
    --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04);
    --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.06);
    --shadow-lg: 0 18px 40px rgba(15, 23, 42, 0.08);
    --transition: all 0.22s ease;
    --max-w: 1240px;
    --side-pad: clamp(1.25rem, 5vw, 5rem);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-text);
    background: var(--bg-primary);
    /* faint dot grid */
    background-image:
        radial-gradient(circle, rgba(229, 231, 235, 0.55) 1px, transparent 1px);
    background-size: 24px 24px;
    background-attachment: fixed;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, h4, h5 {
    font-family: 'Plus Jakarta Sans', 'DM Sans', sans-serif;
    font-weight: 600;
    color: var(--color-text);
    letter-spacing: -0.01em;
    line-height: 1.2;
}

h2 { font-size: clamp(1.5rem, 2.6vw, 2.25rem); }
h3 { font-size: 1.15rem; }
h4 { font-size: 1rem; }
h5 { font-size: 0.85rem; letter-spacing: 0.02em; }

.label, .eyebrow {
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--color-muted);
}

.label.centered { display: block; text-align: center; }

/* ============ HEADER ============ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(248, 249, 252, 0.85);
    backdrop-filter: saturate(140%) blur(10px);
    -webkit-backdrop-filter: saturate(140%) blur(10px);
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}
.site-header.is-scrolled {
    border-bottom-color: var(--color-border);
    background: rgba(255, 255, 255, 0.92);
}

.header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 1.05rem var(--side-pad);
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 1.02rem;
    color: var(--color-text);
}

.brand-mark {
    width: 22px;
    height: 22px;
    border-radius: 5px;
    position: relative;
    background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-purple) 100%);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.08);
}
.brand-mark::after {
    content: "";
    position: absolute;
    inset: 4px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.primary-nav {
    display: flex;
    gap: 1.6rem;
    margin-left: 1rem;
    flex: 1;
}
.primary-nav a {
    font-size: 0.88rem;
    color: var(--color-text);
    opacity: 0.78;
    transition: var(--transition);
    position: relative;
}
.primary-nav a:hover { opacity: 1; color: var(--color-blue); }

.header-cta {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 0.85rem;
    padding: 0.6rem 1.1rem;
    border-radius: var(--radius);
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    line-height: 1;
}
.btn-primary {
    background: var(--color-blue);
    color: #fff;
    box-shadow: 0 1px 0 rgba(37, 99, 235, 0.4) inset, 0 6px 16px rgba(37, 99, 235, 0.18);
}
.btn-primary:hover {
    background: #1d4fd6;
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(37, 99, 235, 0.24);
}
.btn-ghost {
    background: transparent;
    color: var(--color-text);
    border-color: var(--color-border);
}
.btn-ghost:hover { border-color: var(--color-blue); color: var(--color-blue); }
.btn-link {
    background: transparent;
    color: var(--color-blue);
    padding: 0.6rem 0.4rem;
}
.btn-link:hover { color: var(--color-purple); }

/* ============ HERO ============ */
.hero {
    position: relative;
    min-height: 86vh;
    background: linear-gradient(135deg, #f8f9fc 0%, #eef1f8 100%);
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(37, 99, 235, 0.06) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
    opacity: 0.6;
    mask-image: radial-gradient(ellipse at 80% 30%, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at 80% 30%, black 0%, transparent 70%);
}

.hero-grid {
    position: relative;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: clamp(4rem, 9vh, 7rem) var(--side-pad) clamp(3rem, 7vh, 5rem);
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

.hero-left .eyebrow {
    display: inline-block;
    margin-bottom: 1.4rem;
    padding: 0.35rem 0.7rem;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
    color: var(--color-text);
    opacity: 0.85;
}

.hero-title {
    font-size: clamp(2.4rem, 5.5vw, 4.6rem);
    font-weight: 600;
    line-height: 1.04;
    letter-spacing: -0.02em;
    margin-bottom: 1.4rem;
    color: var(--color-text);
}
.hero-dot {
    color: var(--color-blue);
    font-weight: 700;
}

.hero-subtitle {
    max-width: 38ch;
    color: var(--color-muted);
    font-size: 1.02rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-bottom: 2.6rem;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    list-style: none;
    border-top: 1px solid var(--color-border);
    padding-top: 1.4rem;
    max-width: 520px;
}
.hero-meta li {
    display: flex;
    flex-direction: column;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-muted);
}
.hero-meta strong {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 1.4rem;
    color: var(--color-text);
    letter-spacing: -0.01em;
    text-transform: none;
    margin-bottom: 0.15rem;
}

/* ----- Hero overlapping rectangles (license stack) ----- */
.hero-right {
    position: relative;
    height: 480px;
    width: 100%;
}
.hero-right .rect {
    position: absolute;
    border-radius: var(--radius);
    transition: transform 0.6s cubic-bezier(0.22, 0.8, 0.3, 1);
    will-change: transform;
}
.rect-1 {
    width: 280px; height: 180px;
    top: 30px; left: 40px;
    background: rgba(37, 99, 235, 0.08);
    transform: rotate(-6deg);
}
.rect-2 {
    width: 280px; height: 180px;
    top: 90px; left: 110px;
    background: rgba(37, 99, 235, 0.12);
    transform: rotate(-2deg);
}
.rect-3 {
    width: 280px; height: 180px;
    top: 160px; left: 60px;
    background: rgba(37, 99, 235, 0.16);
    transform: rotate(4deg);
    border: 1px solid rgba(37, 99, 235, 0.18);
}
.rect-4 {
    width: 220px; height: 130px;
    top: 240px; left: 180px;
    background: rgba(124, 58, 237, 0.12);
    transform: rotate(8deg);
}
.rect-5 {
    width: 180px; height: 110px;
    top: 60px; left: 240px;
    background: rgba(5, 150, 105, 0.08);
    transform: rotate(-10deg);
}
.rect-accent {
    width: 90px; height: 90px;
    top: 320px; left: 80px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    transform: rotate(-4deg);
    box-shadow: var(--shadow-md);
    background-image:
        linear-gradient(transparent 50%, rgba(37, 99, 235, 0.12) 50%),
        linear-gradient(90deg, transparent 50%, rgba(37, 99, 235, 0.12) 50%);
    background-size: 14px 14px, 14px 14px;
}

.hero-scroll-hint {
    position: absolute;
    left: 50%;
    bottom: 1.4rem;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    color: var(--color-muted);
    text-transform: uppercase;
    letter-spacing: 0.16em;
}
.hero-scroll-hint span {
    width: 1px;
    height: 36px;
    background: linear-gradient(to bottom, transparent, var(--color-blue));
    animation: drip 2.4s ease-in-out infinite;
}
@keyframes drip {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ============ DEAL LINE DIVIDER ============ */
.deal-line {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.4rem var(--side-pad);
    max-width: var(--max-w);
    margin: 0 auto;
    gap: 1rem;
}
.deal-line .line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--color-blue) 50%, transparent);
    opacity: 0.6;
}
.deal-line .node {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--color-blue);
    box-shadow: 0 0 0 5px rgba(37, 99, 235, 0.12);
}

/* ============ SECTION SCAFFOLD ============ */
.section {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: clamp(2.4rem, 5vw, 4rem) var(--side-pad);
}

.section-head {
    margin-bottom: 2.4rem;
    max-width: 720px;
}
.section-head h2 {
    margin-top: 0.5rem;
}
.section-head p.section-lead {
    color: var(--color-muted);
    margin-top: 0.7rem;
    font-size: 1rem;
}
.section-head.split {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    justify-content: space-between;
    max-width: none;
    gap: 1.4rem;
}

/* ============ CATEGORY DOTS ============ */
.cat-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
    vertical-align: middle;
}
.dot-software { background: var(--color-blue); }
.dot-media { background: var(--color-purple); }
.dot-patent { background: var(--color-green); }
.dot-trademark { background: var(--color-amber); }
.dot-success { background: var(--color-green); box-shadow: 0 0 0 4px rgba(5, 150, 105, 0.15); }

/* ============ BENTO GRID ============ */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.bento-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 1.6rem 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.bento-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--color-blue), transparent);
    opacity: 0;
    transition: var(--transition);
}
.bento-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
    border-color: rgba(37, 99, 235, 0.4);
}
.bento-card:hover::before { opacity: 1; }

.card-head {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.card-meta {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--color-muted);
    font-weight: 500;
}
.bento-card h3 {
    color: var(--color-text);
}
.bento-card p {
    color: var(--color-muted);
    font-size: 0.9rem;
    line-height: 1.65;
    flex: 1;
}
.card-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.8rem;
    border-top: 1px solid var(--color-border);
    font-size: 0.82rem;
}
.card-stat { color: var(--color-muted); }
.card-link {
    color: var(--color-blue);
    font-weight: 500;
    transition: var(--transition);
}
.bento-card:hover .card-link { transform: translateX(2px); }

/* ============ DEALS LIST ============ */
.filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}
.chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    color: var(--color-text);
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 999px;
    padding: 0.4rem 0.85rem;
    cursor: pointer;
    transition: var(--transition);
}
.chip:hover { border-color: var(--color-blue); color: var(--color-blue); }
.chip.is-active {
    background: var(--color-text);
    color: #fff;
    border-color: var(--color-text);
}
.chip.is-active .cat-dot { box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2); }

.deal-list {
    display: flex;
    flex-direction: column;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    overflow: hidden;
}
.deal-row {
    display: grid;
    grid-template-columns: 110px 110px 1fr 130px 140px 28px;
    align-items: center;
    gap: 1rem;
    padding: 1.05rem 1.4rem;
    border-bottom: 1px solid var(--color-border);
    transition: var(--transition);
    cursor: pointer;
}
.deal-row:last-child { border-bottom: none; }
.deal-row:hover {
    background: var(--bg-primary);
}
.deal-row[data-hidden="true"] { display: none; }

.deal-status {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-green);
    font-weight: 500;
}
.deal-status.closing { color: var(--color-purple); }
.pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 0 0 currentColor;
    animation: pulse 1.8s ease-out infinite;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 currentColor; opacity: 1; }
    70% { box-shadow: 0 0 0 8px transparent; opacity: 0.6; }
    100% { box-shadow: 0 0 0 0 transparent; opacity: 1; }
}

.deal-id {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    color: var(--color-muted);
}
.deal-title {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    min-width: 0;
}
.deal-title h4 {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--color-text);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.deal-region {
    font-size: 0.82rem;
    color: var(--color-muted);
}
.deal-multiple {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-text);
    text-align: right;
}
.deal-arrow {
    color: var(--color-muted);
    font-size: 1.1rem;
    transition: var(--transition);
    text-align: right;
}
.deal-row:hover .deal-arrow {
    color: var(--color-blue);
    transform: translateX(3px);
}

/* ============ PROCESS ============ */
.process-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}
.process-copy h2 { margin-top: 0.5rem; }
.process-copy .section-lead {
    color: var(--color-muted);
    margin: 0.7rem 0 2rem;
    max-width: 50ch;
}
.process-steps {
    list-style: none;
    display: flex;
    flex-direction: column;
}
.process-steps li {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 1.2rem;
    padding: 1.4rem 0;
    border-top: 1px solid var(--color-border);
}
.process-steps li:last-child { border-bottom: 1px solid var(--color-border); }
.step-num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    color: var(--color-blue);
}
.process-steps h4 {
    margin-bottom: 0.3rem;
    font-size: 1rem;
}
.process-steps p {
    color: var(--color-muted);
    font-size: 0.9rem;
    line-height: 1.65;
}

.process-panel {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
    padding-top: 1rem;
}

.panel-stack {
    position: relative;
    height: 220px;
    width: 100%;
}
.panel-stack .rect {
    position: absolute;
    border-radius: var(--radius);
}
.rect-a {
    width: 70%; height: 100%;
    top: 0; left: 0;
    background: rgba(37, 99, 235, 0.1);
    transform: rotate(-3deg);
}
.rect-b {
    width: 60%; height: 80%;
    top: 12%; right: 4%;
    background: rgba(124, 58, 237, 0.1);
    transform: rotate(2deg);
}
.rect-c {
    width: 50%; height: 65%;
    top: 28%; left: 22%;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    transform: rotate(-1deg);
    box-shadow: var(--shadow-md);
}

.panel-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 1.4rem;
    box-shadow: var(--shadow-sm);
}
.panel-card-head {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.74rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-muted);
    margin-bottom: 0.9rem;
}
.panel-card-head .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}
.panel-quote {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 500;
    color: var(--color-text);
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}
.panel-by {
    display: flex;
    flex-direction: column;
    font-size: 0.8rem;
    color: var(--color-muted);
}
.panel-by span:first-child {
    color: var(--color-text);
    font-weight: 500;
    margin-bottom: 0.1rem;
}

/* ============ PARTNERS / TRUST ============ */
.section-partners {
    background: var(--bg-trust);
    max-width: none;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    padding: clamp(2.5rem, 5vw, 4rem) var(--side-pad);
    margin: clamp(2rem, 5vw, 4rem) 0 0;
}
.partners-inner {
    max-width: var(--max-w);
    margin: 0 auto;
}
.partner-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.4rem;
    padding: 1.4rem 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    color: var(--color-muted);
}
.partner-row span:not(.rule) {
    transition: var(--transition);
    cursor: default;
}
.partner-row span:not(.rule):hover {
    color: var(--color-text);
}
.partner-row .rule {
    width: 1px;
    height: 16px;
    background: var(--color-border);
}
.section-partners .label.centered {
    margin-bottom: 1.2rem;
}

/* ============ FOOTER ============ */
.site-footer {
    background: var(--bg-primary);
    border-top: 1px solid var(--color-border);
    padding: 3rem var(--side-pad) 1.5rem;
}
.footer-grid {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 2rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--color-border);
}
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.footer-brand .brand-mark { width: 22px; height: 22px; }
.footer-brand .brand-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
}
.footer-brand p {
    color: var(--color-muted);
    font-size: 0.88rem;
    margin-top: 0.4rem;
    max-width: 36ch;
}
.footer-col {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.footer-col h5 {
    color: var(--color-text);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 0.4rem;
}
.footer-col a {
    color: var(--color-muted);
    font-size: 0.88rem;
    transition: var(--transition);
}
.footer-col a:hover { color: var(--color-blue); }

.footer-bottom {
    max-width: var(--max-w);
    margin: 1.5rem auto 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.6rem;
    font-size: 0.8rem;
    color: var(--color-muted);
}

/* ============ REVEAL ANIM ============ */
.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    will-change: opacity, transform;
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1080px) {
    .bento-grid { grid-template-columns: repeat(2, 1fr); }
    .deal-row {
        grid-template-columns: 90px 1fr 110px 28px;
    }
    .deal-row .deal-id,
    .deal-row .deal-region { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
    .primary-nav { display: none; }
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: left;
        padding-bottom: 2rem;
    }
    .hero-right {
        height: 320px;
        order: 2;
    }
    .hero-meta { gap: 1.2rem; }
    .process-grid { grid-template-columns: 1fr; }
    .header-cta .btn-ghost { display: none; }
    .section-head.split { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
    .bento-grid { grid-template-columns: 1fr; }
    .deal-row { grid-template-columns: 90px 1fr 28px; }
    .deal-row .deal-multiple { display: none; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-title { font-size: 2.2rem; }
    .partner-row .rule { display: none; }
}
