:root {
    --bg: #f7f4f0;
    --surface: #ffffff;
    --surface-soft: #f0eef5;
    --border: rgba(20, 20, 30, 0.12);
    --text: #14131b;
    --muted: rgba(20, 19, 27, 0.65);
    --accent: #2d7ff9;
    --accent-dark: #1f5fd1;
    --highlight: #ff9f66;
}

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

body {
    font-family: "Sora", "Space Grotesk", sans-serif;
    background: var(--bg);
    color: var(--text);
    padding: 16px 5vw 48px;
    line-height: 1.6;
    overflow-x: hidden;
}

.ambient {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
}

.orb {
    position: absolute;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.35;
    animation: float 16s ease-in-out infinite;
}

.orb--one {
    background: radial-gradient(circle at 30% 30%, #b8c7ff, transparent 60%);
    top: -120px;
    left: -140px;
}

.orb--two {
    background: radial-gradient(circle at 70% 40%, #ffd8b3, transparent 55%);
    bottom: -160px;
    right: -120px;
    animation-delay: -6s;
}

.grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(20, 19, 27, 0.05) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(20, 19, 27, 0.05) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(circle at top, rgba(0, 0, 0, 0.9), transparent 70%);
}

.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: stretch;
    margin-bottom: 24px;
    animation: fadeUp 0.9s ease-out;
    min-height: 0;
}

.hero__content,
.hero__preview {
    background: var(--surface);
    border-radius: 20px;
    border: 1px solid var(--border);
    padding: 20px;
    box-shadow: 0 20px 60px rgba(20, 19, 27, 0.08);
}

.hero__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.7rem;
    color: var(--muted);
    margin-bottom: 8px;
    line-height: 1.8;
}

.powered-by {
    font-size: 0.6rem;
    text-transform: none;
    letter-spacing: 0.05em;
    opacity: 0.7;
}

h1 {
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    margin-bottom: 12px;
    font-weight: 700;
}

.subhead {
    color: var(--muted);
    margin-bottom: 8px;
    font-size: 0.85rem;
}

.url-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: var(--surface-soft);
    padding: 14px;
    border-radius: 12px;
}

.url-form__row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

input, button {
    border-radius: 10px;
    border: 1px solid var(--border);
    padding: 10px 14px;
    font-size: 0.95rem;
    background: #ffffff;
    color: var(--text);
    font-family: "Space Grotesk", sans-serif;
}

select {
    border-radius: 10px;
    border: 1px solid var(--border);
    padding: 10px 14px;
    font-size: 0.95rem;
    background: #ffffff;
    color: var(--text);
    font-family: "Space Grotesk", sans-serif;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 160px;
}

.toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--muted);
}

.toggle input {
    width: 16px;
    height: 16px;
}

button {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    border: none;
    cursor: pointer;
    font-weight: 600;
    color: #ffffff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(31, 95, 209, 0.25);
}

.consent {
    font-size: 0.85rem;
    color: var(--muted);
    display: flex;
    gap: 8px;
    align-items: center;
}

.trust {
    font-size: 0.8rem;
    color: var(--muted);
}

.hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.hero__badges span {
    background: var(--surface-soft);
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 0.75rem;
    letter-spacing: 0.04em;
    color: var(--muted);
}

.hero__preview {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

.device {
    background: var(--surface-soft);
    border-radius: 12px;
    padding: 12px;
}

.device__screen {
    height: 200px;
    background: linear-gradient(140deg, #f5f5ff 0%, #fef7f1 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 0.85rem;
}

.preview-card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 14px;
    border-radius: 14px;
    backdrop-filter: blur(8px);
}

.preview-card img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.preview-card__label {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.65rem;
    color: var(--muted);
    margin-bottom: 6px;
}

.float-card {
    position: absolute;
    background: var(--surface);
    border-radius: 14px;
    padding: 14px;
    border: 1px solid var(--border);
    box-shadow: 0 12px 26px rgba(20, 19, 27, 0.12);
    width: 200px;
    min-height: 90px;
    animation: float 12s ease-in-out infinite;
}

.float-card--one {
    top: -12px;
    right: -20px;
}

.float-card--two {
    bottom: 28px;
    left: -30px;
    animation-delay: -5s;
}

.float-card__title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted);
    margin-bottom: 8px;
}

main {
    display: grid;
    gap: 56px;
}

section {
    background: var(--surface);
    border-radius: 22px;
    border: 1px solid var(--border);
    padding: 28px;
    box-shadow: 0 20px 60px rgba(20, 19, 27, 0.05);
    animation: fadeUp 0.9s ease-out;
}

.is-hidden {
    display: none !important;
}

.loading ol {
    margin-top: 16px;
    padding-left: 18px;
    color: var(--muted);
    display: grid;
    gap: 8px;
}

.loading li.active {
    color: var(--text);
    font-weight: 600;
}

.steps__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.step-card {
    background: var(--surface-soft);
    border-radius: 16px;
    padding: 18px;
    border: 1px solid transparent;
}

.step-card span {
    font-weight: 700;
    color: var(--accent);
}

.results {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.snapshot-card {
    background: var(--surface-soft);
    border-radius: 16px;
    padding: 18px;
}

.summary-card {
    margin-top: 16px;
    background: var(--surface-soft);
    border-radius: 16px;
    padding: 18px;
}

.snapshot-visual {
    display: grid;
    gap: 12px;
    margin-bottom: 18px;
}

.snapshot-media {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: var(--surface-soft);
    min-height: 220px;
}

.snapshot-media img {
    display: block;
    width: 100%;
    height: auto;
}

.snapshot-before,
.snapshot-after {
    position: absolute;
    inset: 0;
}

.snapshot-before {
    position: relative;
    z-index: 1;
}

.snapshot-after {
    z-index: 2;
    overflow: hidden;
    width: 50%;
}

.snapshot-after img {
    filter: saturate(1.05) contrast(1.05);
}

.snapshot-after.is-hidden {
    display: none;
}

.snapshot-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 3;
}

.snapshot-overlay.is-hidden {
    display: none;
}

.overlay-marker {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    max-width: 240px;
    padding: 8px 10px;
    border-radius: 999px;
    font-size: 0.8rem;
    color: #ffffff;
    background: rgba(20, 19, 27, 0.85);
    box-shadow: 0 10px 20px rgba(20, 19, 27, 0.2);
    transform: translate(-10%, -50%);
    opacity: 0.85;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.overlay-marker::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--highlight);
    box-shadow: 0 0 0 4px rgba(255, 159, 102, 0.35);
}

.overlay-marker.active {
    transform: translate(-10%, -50%) scale(1.05);
    opacity: 1;
}

.snapshot-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.snapshot-controls button {
    background: var(--accent);
    color: #ffffff;
    border: none;
}

.scrub-control {
    display: grid;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--muted);
}

.scrub-control input[type="range"] {
    width: 140px;
}

.summary-card ul {
    margin-top: 10px;
    padding-left: 18px;
    color: var(--muted);
    display: grid;
    gap: 6px;
}

.win-card {
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 16px;
    margin-top: 14px;
    background: #ffffff;
}

.impact {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
}

.chat__suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
}

.chat__suggestions button {
    background: var(--surface-soft);
    color: var(--text);
    border: 1px solid var(--border);
}

.chat__form {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.chat__controls {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.chat__controls button {
    background: var(--accent);
    color: #ffffff;
    border: none;
}

.chat__response {
    min-height: 60px;
    background: var(--surface-soft);
    border-radius: 12px;
    padding: 12px;
    color: var(--muted);
    display: grid;
    gap: 10px;
    max-height: 260px;
    overflow-y: auto;
}

.chat__message {
    display: flex;
}

.chat__message--user {
    justify-content: flex-end;
}

.chat__message--system {
    justify-content: center;
}

.chat__bubble {
    max-width: 80%;
    padding: 10px 12px;
    border-radius: 12px;
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text);
    font-size: 0.95rem;
}

.chat__message--user .chat__bubble {
    background: var(--accent);
    color: #ffffff;
    border-color: transparent;
}

.chat__message--human .chat__bubble {
    background: #14131b;
    color: #ffffff;
    border-color: transparent;
}

.chat__message--system .chat__bubble {
    background: transparent;
    border: none;
    color: var(--muted);
    font-size: 0.85rem;
}

.chat__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 12px;
    align-items: center;
}

.chat__confidence {
    font-weight: 600;
    color: var(--text);
}

.chat__sources {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.chat__sources a {
    font-size: 0.85rem;
    color: var(--accent-dark);
    text-decoration: underline;
}

.chat__handoff {
    margin-top: 12px;
    background: #ffffff;
    border-radius: 12px;
    border: 1px dashed var(--border);
    padding: 12px;
    display: grid;
    gap: 8px;
}

.chat__handoff-fields {
    display: grid;
    gap: 10px;
}

.chat__handoff-fields input {
    border-radius: 10px;
    border: 1px solid var(--border);
    padding: 10px 12px;
    font-size: 0.95rem;
}

.chat__handoff-button {
    background: var(--highlight);
    color: #1b140f;
    border: none;
}

.change__form,
.contrast__form {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
}

.change__form input,
.contrast__form input,
.contrast__form select {
    flex: 1 1 240px;
    border-radius: 12px;
    border: 1px solid var(--border);
    padding: 12px 14px;
    font-size: 0.95rem;
}

.change__output {
    display: grid;
    gap: 12px;
}

.change__output ul {
    padding-left: 18px;
    color: var(--muted);
}

.change__output pre {
    background: var(--surface-soft);
    border-radius: 12px;
    padding: 12px;
    color: var(--muted);
    white-space: pre-wrap;
}

.contrast__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 12px;
}

.contrast-card {
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 12px;
    background: #ffffff;
}

.contrast-media {
    border-radius: 12px;
    overflow: hidden;
    min-height: 140px;
    background: var(--surface-soft);
}

.contrast-media img {
    display: block;
    width: 100%;
    height: auto;
}

.contrast__insights {
    margin-top: 16px;
}

.contrast__insights ul {
    padding-left: 18px;
    color: var(--muted);
    display: grid;
    gap: 6px;
}

.proposal__grid,
.pricing__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    margin-top: 18px;
}

.proposal-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid var(--border);
    padding: 16px;
}

.proposal-card pre {
    white-space: pre-wrap;
    color: var(--muted);
    font-size: 0.85rem;
}

.pricing-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid var(--border);
    padding: 16px;
    display: grid;
    gap: 6px;
    cursor: pointer;
}

.pricing-card__title {
    font-weight: 600;
}

.pricing-card__price {
    color: var(--accent);
    font-weight: 700;
}

.pricing-card input {
    margin-bottom: 8px;
}

.cta {
    margin-top: 18px;
}

.modal {
    position: fixed;
    inset: 0;
    background: rgba(20, 19, 27, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    z-index: 999;
}

.modal__content {
    background: #ffffff;
    border-radius: 20px;
    padding: 24px;
    width: min(520px, 90vw);
    position: relative;
    box-shadow: 0 24px 60px rgba(20, 19, 27, 0.2);
}

.modal__close {
    position: absolute;
    top: 12px;
    right: 16px;
    border: none;
    background: transparent;
    font-size: 1.5rem;
    cursor: pointer;
}

.checkout-form {
    display: grid;
    gap: 12px;
    margin-top: 16px;
}

.checkout-form__row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
}

.voice__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.voice-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid var(--border);
    padding: 18px;
}

.quickwins__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    margin-top: 18px;
}

.quickwin-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid var(--border);
    padding: 16px;
}

.quickwin-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
}

/* New Issue Card Styles */
.section-intro {
    color: var(--muted);
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.issue-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid var(--border);
    padding: 20px;
    transition: box-shadow 0.2s ease;
}

.issue-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.issue-card__header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.issue-card__severity {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.issue-card__severity--high {
    background: #fee2e2;
    color: #dc2626;
}

.issue-card__severity--medium {
    background: #fef3c7;
    color: #d97706;
}

.issue-card__severity--low {
    background: #dbeafe;
    color: #2563eb;
}

.issue-card__title {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text);
}

.issue-card__cost {
    margin-bottom: 16px;
}

.issue-card__cost-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.issue-card__cost-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.issue-card__cost-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 6px;
    font-size: 0.9rem;
    line-height: 1.4;
}

.issue-card__cost-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #dc2626;
}

.issue-card__evidence {
    background: #f8fafc;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
    border: 1px solid #e2e8f0;
}

.issue-card__evidence-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.issue-card__evidence-row {
    margin-bottom: 10px;
}

.issue-card__evidence-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--muted);
    margin-bottom: 4px;
}

.issue-card__evidence-code {
    font-family: 'SF Mono', 'Consolas', monospace;
    font-size: 0.8rem;
    background: #1e293b;
    color: #e2e8f0;
    padding: 10px 12px;
    border-radius: 8px;
    overflow-x: auto;
    white-space: pre-wrap;
    word-break: break-all;
}

.issue-card__evidence-code--expected {
    border-left: 3px solid #22c55e;
}

.issue-card__evidence-code--found {
    border-left: 3px solid #ef4444;
}

.issue-card__authority {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 12px;
    background: #f0f9ff;
    border-radius: 10px;
    margin-bottom: 16px;
    font-size: 0.85rem;
}

.issue-card__authority-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--accent);
}

.issue-card__authority-text {
    color: var(--text);
    line-height: 1.4;
}

.issue-card__authority-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
}

.issue-card__authority-link:hover {
    text-decoration: underline;
}

.issue-card__fix {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border-radius: 10px;
    font-size: 0.9rem;
}

.issue-card__fix-icon {
    flex-shrink: 0;
    font-size: 1.2rem;
}

.issue-card__fix-text {
    color: #065f46;
    font-weight: 500;
    line-height: 1.4;
}

.issue-card__toggle {
    margin-top: auto;
    background: none;
    border: none;
    color: var(--accent);
    font-size: 0.85rem;
    cursor: pointer;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.issue-card__toggle:hover {
    text-decoration: underline;
}

.issue-card__details {
    display: none;
}

.issue-card__details.is-expanded {
    display: block;
}

.issue-card__tech-name {
    font-family: 'SF Mono', 'Consolas', monospace;
    font-size: 0.75rem;
    color: var(--muted);
    margin-top: 4px;
}

.score-card {
    background: var(--surface-soft);
    border-radius: 16px;
    padding: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    align-items: center;
    margin-bottom: 20px;
}

.score-card__label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted);
    margin-bottom: 6px;
}

.score-card__value {
    font-size: 2rem;
    font-weight: 700;
}

.score-card ul {
    list-style: none;
    display: grid;
    gap: 6px;
    color: var(--muted);
}

.email-form {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
}

.download-link {
    display: inline-flex;
    margin-top: 14px;
    color: var(--accent-dark);
    text-decoration: none;
    font-weight: 600;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    margin-top: 18px;
}

.faq-item {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid var(--border);
    padding: 18px;
}

.faq-item h3 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.helper,
.muted {
    color: var(--muted);
}

.footer {
    margin-top: 16px;
    text-align: center;
    color: var(--muted);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px 16px;
    font-size: 0.8rem;
}

.footer .powered-by {
    display: block;
    font-size: 0.75rem;
    opacity: 0.6;
}

.footer a {
    color: var(--muted);
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-16px);
    }
}

/* Legal Modal */
.legal-modal {
    position: fixed;
    inset: 0;
    background: rgba(20, 19, 27, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    z-index: 1000;
    backdrop-filter: blur(4px);
}

.legal-modal__content {
    background: var(--surface);
    border-radius: 20px;
    width: min(640px, 90vw);
    max-height: 80vh;
    position: relative;
    box-shadow: 0 24px 60px rgba(20, 19, 27, 0.3);
    display: flex;
    flex-direction: column;
}

.legal-modal__close {
    position: absolute;
    top: 12px;
    right: 16px;
    border: none;
    background: transparent;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--muted);
    line-height: 1;
    padding: 4px 8px;
    z-index: 1;
}

.legal-modal__close:hover {
    color: var(--text);
    transform: none;
    box-shadow: none;
}

.legal-modal__body {
    padding: 28px;
    overflow-y: auto;
    flex: 1;
}

.legal-modal__body h1 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.legal-modal__body h2 {
    font-size: 1rem;
    margin-top: 24px;
    margin-bottom: 8px;
}

.legal-modal__body p {
    color: var(--muted);
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.legal-modal__body ul {
    padding-left: 20px;
    margin-bottom: 12px;
}

.legal-modal__body li {
    color: var(--muted);
    margin-bottom: 6px;
    font-size: 0.9rem;
}

/* Viewport height hero - no scroll on load */
@media (min-height: 700px) and (min-width: 900px) {
    .hero {
        max-height: calc(100vh - 48px);
    }
}

@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .hero__preview {
        order: -1;
        max-height: 200px;
    }
}

@media (max-width: 720px) {
    body {
        padding: 24px 5vw 48px;
    }

    .float-card {
        display: none;
    }

    h1 {
        font-size: 1.6rem;
    }
}
