:root {
    --ink: #0f172a;       /* Slate 900 */
    --paper: #ffffff;
    --paper-strong: #ffffff;
    --paper-soft: #f8fafc;  /* Slate 50 */
    --line: #e2e8f0;       /* Slate 200 */
    --muted: #64748b;      /* Slate 500 */
    --hero: #020617;       /* Slate 950 */
    --hero-text: #f8fafc;
    --jade: #10b981;       /* Emerald 500 */
    --coral: #f43f5e;      /* Rose 500 */
    --gold: #f59e0b;       /* Amber 500 */
    --radius: 16px;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
textarea {
    font: inherit;
}

.shell {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid var(--line);
}

.header-row,
.footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 80px;
}

.brand {
    width: 164px;
    flex: 0 0 auto;
}

.site-nav,
.footer-links {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.site-nav a,
.footer-links a,
.site-footer p,
.footer-location {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--muted);
    transition: color 200ms ease;
}

.site-nav a:hover,
.footer-links a:hover {
    color: var(--ink);
}

.header-cta,
.cta-primary,
.cta-secondary,
.case-link,
.more-work-grid a {
    transition: all 200ms ease;
    cursor: pointer;
}

.header-cta,
.cta-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 52px;
    padding: 0 24px;
    border-radius: var(--radius);
    background: var(--ink);
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: var(--shadow);
    border: none;
}

.header-cta:hover,
.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: #000000;
}

.cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--hero-text);
    font-weight: 600;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

/* HERO SECTION */
.hero {
    position: relative;
    overflow: hidden;
    background: 
        radial-gradient(circle at 15% 50%, rgba(16, 185, 129, 0.15), transparent 40%),
        radial-gradient(circle at 85% 30%, rgba(59, 130, 246, 0.15), transparent 40%),
        var(--hero);
    color: var(--hero-text);
    padding: 140px 0 100px;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 180px;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0), rgba(2, 6, 23, 1));
    pointer-events: none;
}

.hero-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 420px);
    gap: 48px;
    align-items: start;
}

.hero-content {
    position: relative;
    max-width: 680px;
    min-width: 0;
}

.eyebrow,
.section-label,
.section-kicker p,
.case-label {
    margin: 0 0 16px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--jade);
}

.hero h1 {
    margin: 0;
    max-width: 12ch;
    font-size: 4.5rem;
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.hero-copy {
    max-width: 40rem;
    font-size: 1.15rem;
    color: rgba(248, 250, 252, 0.75);
    margin: 28px 0 0;
}

.hero-revenue-highlight {
    margin: 40px 0;
    padding: 32px;
    background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius);
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    backdrop-filter: blur(12px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.revenue-amount {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
    background: linear-gradient(to right, #10b981, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 12px;
}

.revenue-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(248, 250, 252, 0.9);
    max-width: 420px;
    line-height: 1.5;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 24px;
}

.hero-proof {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    list-style: none;
    padding: 0;
    margin: 48px 0 0;
    max-width: 540px;
}

.hero-proof li {
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.03);
    font-size: 0.95rem;
    color: rgba(248, 250, 252, 0.7);
    backdrop-filter: blur(8px);
}

.hero-proof strong {
    display: block;
    margin-bottom: 6px;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #ffffff;
}

.hero-proof span {
    display: block;
    line-height: 1.4;
}

.hero-stack {
    position: relative;
    width: 100%;
    display: grid;
    gap: 20px;
    align-content: start;
    justify-self: end;
    padding-top: 20px;
}

.hero-slip {
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.95);
    color: var(--ink);
    backdrop-filter: blur(10px);
    transition: transform 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero-slip:hover {
    transform: translateY(-8px) scale(1.02) !important;
    z-index: 10;
}

.hero-slip:active {
    transform: translateY(-2px) scale(0.99) !important;
}

.client-mark {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 42px;
    margin-bottom: 14px;
}

.client-mark img {
    width: auto;
    max-width: 172px;
    max-height: 42px;
    object-fit: contain;
}

.client-mark-tall img {
    max-height: 56px;
}

.client-mark-fallback {
    min-height: auto;
    margin-bottom: 16px;
    padding: 10px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--paper-soft);
    color: var(--ink);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1;
}

.slip-label,
.slip-micro,
.mini-heading {
    margin: 0;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--muted);
}

.slip-outcome {
    margin: 12px 0 20px;
    line-height: 1.5;
    font-weight: 600;
    font-size: 1.1rem;
}

.hero-slip blockquote,
.case-challenge blockquote {
    margin: 12px 0 0;
    line-height: 1.5;
    font-style: italic;
    color: var(--ink);
}

.slip-link,
.case-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 16px;
    border-radius: 8px;
    border: 1px solid var(--line);
    color: var(--ink);
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 20px;
    background: var(--paper-strong);
}

.hero-slip-a {
    transform: rotate(2deg) translateX(30px);
}

.hero-slip-b {
    transform: rotate(-2deg) translateX(-20px);
}

.hero-slip-c {
    transform: rotate(1deg) translateX(20px);
}

/* SECTION PADDING & BANDS */
.logo-band,
.questions-band,
.outcomes-band,
.case-band,
.testimonial-band,
.contact-band {
    padding: 100px 0;
}

.logo-band {
    background: var(--paper-soft);
    border-bottom: 1px solid var(--line);
}

.section-kicker p,
.section-label,
.case-label {
    color: var(--jade);
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 24px;
    align-items: center;
}

.logo-cell {
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    background: transparent;
    padding: 16px;
    transition: filter 200ms ease;
}

.logo-cell img {
    max-height: 48px;
    width: auto;
    filter: grayscale(100%) opacity(0.6);
    transition: filter 200ms ease;
}

.logo-cell-rvroof img {
    max-height: 60px;
}

.logo-cell:hover img {
    filter: grayscale(0%) opacity(1);
}

.section-head {
    display: grid;
    gap: 16px;
    max-width: 800px;
    margin-bottom: 56px;
}

.section-head.compact {
    max-width: 700px;
}

.section-head h2,
.contact-copy h2 {
    margin: 0;
    font-size: 3.2rem;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.section-head p,
.contact-copy p {
    margin: 0;
    color: var(--muted);
    font-size: 1.15rem;
}

.question-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.question-card,
.testimonial-card,
.case-file,
.contact-form {
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: var(--paper-strong);
    box-shadow: var(--shadow-sm);
    transition: transform 250ms ease, box-shadow 250ms ease;
}

.question-card:hover,
.case-file:hover,
.outcome-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.question-card {
    min-height: 240px;
    padding: 32px 24px;
    display: grid;
    gap: 20px;
    align-content: start;
}

.question-card i,
.outcome-icon i,
.contact-points i {
    font-size: 1.75rem;
}

.question-card i {
    color: var(--coral);
}

.question-card p,
.testimonial-card p {
    margin: 0;
    font-size: 1.15rem;
    line-height: 1.4;
    font-weight: 500;
}

.question-card span,
.testimonial-card span {
    color: var(--muted);
    font-size: 0.95rem;
    font-weight: 500;
}

.outcomes-band {
    background: var(--paper-soft);
}

.outcome-list {
    display: grid;
    gap: 24px;
}

.outcome-item {
    display: grid;
    grid-template-columns: 80px minmax(0, 2fr) minmax(260px, 1fr);
    gap: 32px;
    align-items: start;
    padding: 32px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: var(--paper-strong);
    box-shadow: var(--shadow-sm);
    transition: transform 250ms ease, box-shadow 250ms ease;
}

.outcome-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(16, 185, 129, 0.1); /* Jade tint */
    color: var(--jade);
}

.outcome-copy h3,
.case-body h3 {
    margin: 0 0 12px;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.outcome-copy p,
.case-body p {
    margin: 0;
    color: var(--muted);
}

.outcome-points,
.case-body ul,
.contact-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.outcome-points {
    display: grid;
    gap: 12px;
    background: var(--paper-soft);
    padding: 24px;
    border-radius: 12px;
}

.outcome-points li,
.case-body ul li {
    position: relative;
    padding-left: 24px;
    font-weight: 500;
}

.outcome-points li::before,
.case-body ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--jade);
}

.case-band {
    background: var(--paper);
}

.case-file-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
}

.case-file {
    display: grid;
    gap: 24px;
    padding: 32px;
}

.case-file .client-mark {
    margin-bottom: 16px;
}

.case-file .client-mark img {
    max-width: 160px;
    max-height: 44px;
}

.case-file .client-mark.client-mark-tall img {
    max-width: 188px;
    max-height: 72px;
}

.case-file-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.case-file-head > div {
    min-width: 0;
}

.case-file-head h3 {
    margin: 0;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.2;
}

.outcome-pill {
    margin: 0;
    padding: 16px 20px;
    border-radius: 12px;
    background: var(--ink);
    color: #ffffff;
    line-height: 1.5;
    font-weight: 500;
    font-size: 1.05rem;
}

.case-challenge {
    padding: 24px;
    border-left: 4px solid var(--gold);
    border-radius: 0 12px 12px 0;
    background: var(--paper-soft);
}

.case-text p:last-child {
    margin: 8px 0 0;
    color: var(--muted);
}

.case-wins ul {
    display: grid;
    gap: 12px;
    margin: 12px 0 0;
    padding: 0;
    list-style: none;
}

.more-work-grid a {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 84px;
    padding: 16px 20px;
    border-radius: 12px;
    border: 1px solid var(--line);
    color: var(--ink);
    font-weight: 500;
    background: var(--paper-strong);
    line-height: 1.45;
}

.more-work-grid a:hover {
    border-color: var(--ink);
}

.case-link {
    white-space: nowrap;
    flex: 0 0 auto;
}

.more-work {
    margin-top: 64px;
    padding-top: 40px;
    border-top: 1px solid var(--line);
}

.more-work-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.testimonial-band {
    background: var(--hero);
    color: var(--hero-text);
}

.testimonial-band .section-label {
    color: var(--jade);
}

.testimonial-band .section-head p {
    color: rgba(248, 250, 252, 0.7);
}

.testimonial-band .section-head h2 {
    color: #ffffff;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

.testimonial-card {
    position: relative;
    display: grid;
    gap: 18px;
    align-content: start;
    min-height: 252px;
    padding: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border-color: rgba(255, 255, 255, 0.14);
    color: var(--hero-text);
    box-shadow: 0 18px 40px -24px rgba(0, 0, 0, 0.55);
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px -24px rgba(0, 0, 0, 0.65);
}

.testimonial-card p {
    font-size: 1.1rem;
    line-height: 1.55;
    font-weight: 600;
}

.testimonial-mark {
    font-size: 4rem;
    line-height: 0.7;
    font-weight: 700;
    color: rgba(16, 185, 129, 0.7);
}

.testimonial-card footer {
    margin-top: auto;
    display: grid;
    gap: 4px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.testimonial-card strong {
    font-size: 1rem;
    color: #ffffff;
}

.testimonial-card span {
    color: rgba(248, 250, 252, 0.68);
    font-size: 0.92rem;
    font-weight: 500;
}

.contact-band {
    background: var(--paper-soft);
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
    grid-template-areas:
        "copy copy"
        "direct form";
    gap: 40px 48px;
    align-items: start;
}

.contact-copy {
    grid-area: copy;
    display: grid;
    gap: 16px;
    max-width: 760px;
}

.contact-points {
    display: grid;
    gap: 20px;
    margin-top: 16px;
}

.contact-points li {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--ink);
    font-size: 1.1rem;
    font-weight: 500;
}

.contact-points i {
    color: var(--jade);
    background: rgba(16, 185, 129, 0.1);
    padding: 12px;
    border-radius: 12px;
}

.contact-direct {
    grid-area: direct;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-self: stretch;
    max-width: none;
    height: 100%;
    padding: 32px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper-strong);
    box-shadow: var(--shadow-sm);
}

.contact-direct-title,
.contact-location {
    margin: 0;
}

.contact-trust {
    display: grid;
    grid-template-rows: auto 1fr auto;
    gap: 18px;
    flex: 1 1 auto;
    padding-bottom: 12px;
}

.contact-trust-title {
    margin: 0;
    color: var(--ink);
    font-size: 1.12rem;
    font-weight: 700;
    line-height: 1.35;
    max-width: 14ch;
}

.contact-logo-cloud {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 18px 12px;
    align-content: start;
    min-height: 250px;
    padding: 4px 0 8px;
}

.contact-logo {
    width: 100%;
    height: auto;
    max-height: 42px;
    object-fit: contain;
    object-position: left center;
    justify-self: start;
    filter: grayscale(100%) opacity(0.76);
    transition: filter 200ms ease, transform 200ms ease;
}

.contact-logo:hover {
    filter: grayscale(0%) opacity(1);
    transform: translateY(-2px);
}

.contact-logo-abc {
    grid-column: 1 / span 4;
}

.contact-logo-smartwerks {
    grid-column: 7 / span 4;
    margin-top: 10px;
}

.contact-logo-offenbachers {
    grid-column: 3 / span 3;
    margin-top: 10px;
}

.contact-logo-pace {
    grid-column: 8 / span 4;
    margin-top: 18px;
}

.contact-logo-rvroof {
    grid-column: 1 / span 4;
    margin-top: 16px;
    max-height: 54px;
}

.contact-logo-tower {
    grid-column: 6 / span 4;
    margin-top: 8px;
}

.contact-logo-western {
    grid-column: 10 / span 3;
    margin-top: 18px;
}

.contact-logo-nsdmtac {
    grid-column: 2 / span 3;
    margin-top: 10px;
}

.contact-logo-rain {
    grid-column: 6 / span 4;
    margin-top: 16px;
}

.contact-logo-messiah {
    grid-column: 10 / span 3;
    margin-top: 6px;
}

.contact-logo-double-deuces {
    grid-column: 4 / span 2;
    margin-top: 12px;
    max-height: 50px;
}

.contact-direct-title {
    color: var(--ink);
    font-size: 1rem;
    font-weight: 700;
}

.contact-direct-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.contact-direct-item {
    display: grid;
    gap: 8px;
    align-content: start;
    min-height: 120px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: var(--shadow-sm);
    transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.contact-direct-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: rgba(15, 23, 42, 0.18);
}

.contact-direct-item i {
    font-size: 1.4rem;
    color: var(--jade);
}

.contact-direct-item span {
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 600;
}

.contact-direct-item strong {
    color: var(--ink);
    font-size: 1rem;
    line-height: 1.4;
    overflow-wrap: anywhere;
}

.contact-location {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-size: 0.95rem;
    font-weight: 500;
}

.contact-location i {
    color: var(--jade);
    font-size: 1.1rem;
}

.contact-form {
    grid-area: form;
    position: relative;
    display: grid;
    gap: 20px;
    padding: 40px;
    align-self: start;
}

.contact-form label {
    display: grid;
    gap: 10px;
}

.honeypot-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.contact-form span {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--ink);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
    color: var(--ink);
    padding: 16px;
    transition: border-color 200ms ease, box-shadow 200ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--jade);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}

.contact-form textarea {
    resize: vertical;
    min-height: 160px;
}

.captcha-group {
    gap: 14px;
}

.captcha-panel {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--paper-soft);
}

.captcha-panel img {
    width: 120px;
    height: 88px;
    border-radius: 8px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #ffffff;
}

.captcha-copy {
    display: grid;
    gap: 6px;
}

.captcha-copy strong {
    font-size: 1rem;
}

.captcha-copy p,
.captcha-note {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.submit-button {
    width: 100%;
    margin-top: 8px;
}

.form-alert {
    margin: 0;
    padding: 14px 16px;
    border-radius: 8px;
    border: 1px solid transparent;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.5;
}

.form-alert-success {
    border-color: rgba(16, 185, 129, 0.25);
    background: rgba(16, 185, 129, 0.08);
    color: #047857;
}

.form-alert-error {
    border-color: rgba(244, 63, 94, 0.2);
    background: rgba(244, 63, 94, 0.08);
    color: #be123c;
}

.form-note,
.form-status {
    margin: 0;
    font-size: 0.95rem;
    color: var(--muted);
    text-align: center;
}

.form-note a {
    color: var(--jade);
    font-weight: 500;
}

.site-footer {
    border-top: 1px solid var(--line);
    background: var(--paper-strong);
}

[data-reveal] {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 500ms cubic-bezier(0.16, 1, 0.3, 1), transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* RESPONSIVE */
@media (max-width: 1120px) {
    .hero {
        display: flex;
        flex-direction: column;
        padding-top: 120px;
    }

    .hero-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content {
        order: 1;
        max-width: none;
    }

    .hero-stack {
        order: 2;
        width: 100%;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        margin: 40px auto 0;
        padding-top: 0;
    }

    .hero-slip-a,
    .hero-slip-b,
    .hero-slip-c {
        transform: none;
    }

    .hero::after {
        display: none;
    }

    .more-work-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1200px) {
    .hero h1 {
        font-size: 4rem;
    }
    .revenue-amount {
        font-size: 4.5rem;
    }

    .question-grid,
    .testimonial-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .logo-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

}

@media (max-width: 900px) {
    .site-nav {
        display: none;
    }

    .hero {
        display: flex;
        flex-direction: column;
        padding-top: 120px;
    }

    .hero h1 {
        font-size: 3.5rem;
        max-width: none;
    }
    
    .revenue-amount {
        font-size: 4rem;
    }

    .hero-content {
        order: 1;
    }

    .hero-stack {
        order: 2;
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        margin: 40px auto 0;
    }

    .hero-slip-a,
    .hero-slip-b,
    .hero-slip-c {
        transform: none;
    }

    .hero-proof {
        grid-template-columns: 1fr;
    }

    .hero::after {
        display: none;
    }

    .outcome-item,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-layout {
        grid-template-areas:
            "copy"
            "direct"
            "form";
    }

    .contact-direct-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-logo-cloud {
        min-height: 0;
    }

    .logo-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .case-file-grid {
        grid-template-columns: 1fr;
    }

    .more-work-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .captcha-panel {
        grid-template-columns: 1fr;
        justify-items: start;
    }
}

@media (max-width: 640px) {
    .shell {
        width: calc(100% - 32px);
    }

    .header-row,
    .footer-row {
        min-height: 72px;
    }

    .brand {
        width: 140px;
    }

    .header-cta {
        min-height: 44px;
        padding: 0 16px;
        font-size: 0.95rem;
    }

    .hero,
    .logo-band,
    .questions-band,
    .outcomes-band,
    .case-band,
    .testimonial-band,
    .contact-band {
        padding: 72px 0;
    }

    .hero h1 {
        font-size: 2.75rem;
    }
    
    .revenue-amount {
        font-size: 3.25rem;
    }

    .hero-stack {
        grid-template-columns: 1fr;
    }

    .hero-copy,
    .section-head p,
    .contact-copy p {
        font-size: 1.05rem;
    }

    .section-head h2,
    .contact-copy h2 {
        font-size: 2.25rem;
    }

    .logo-grid,
    .question-grid,
    .testimonial-grid,
    .more-work-grid {
        grid-template-columns: 1fr;
    }

    .footer-links,
    .footer-row {
        gap: 16px;
    }

    .contact-direct-grid {
        grid-template-columns: 1fr;
    }

    .contact-trust {
        grid-template-rows: auto auto auto;
    }

    .contact-trust-title {
        max-width: none;
    }

    .contact-logo-cloud {
        grid-template-columns: repeat(6, minmax(0, 1fr));
        gap: 14px 12px;
        min-height: 0;
    }

    .contact-logo-cloud > .contact-logo {
        grid-column: span 3;
        margin-top: 0;
        max-height: 30px;
    }

    .contact-form {
        padding: 24px;
    }

    .captcha-panel {
        padding: 14px;
    }
    
    .outcome-item {
        padding: 24px;
    }

    .case-file-head {
        flex-direction: column;
    }

    .case-link {
        align-self: flex-start;
    }
}
