/* Self-hosted (no third-party requests, no font-related GDPR/tracking concerns). */
@font-face {
    font-family: "Anton";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("fonts/anton-latin-400.woff2") format("woff2");
}

@font-face {
    font-family: "Archivo";
    font-style: normal;
    font-weight: 400 900;
    font-display: swap;
    src: url("fonts/archivo-latin-var.woff2") format("woff2");
}

:root {
    --paper: #f4f1e8;
    --paper-strong: #fffdf4;
    --ink: #111210;
    --charcoal: #111312;
    --muted: #625f57;
    --line: #272825;
    --soft-line: rgba(17, 18, 16, 0.18);
    --accent: #ffd400;
    --success: #bff3a9;
    --shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
    --paper-max: 1300px;
    --content-max: 1180px;
    --hero-copy-fixed: 452px;
    --hero-visual-fixed: 490px;
    --font-display: "Anton", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
    --font-compact: "Archivo", "Arial Narrow", "Helvetica Neue Condensed", "Roboto Condensed", Arial, Helvetica, sans-serif;
    --font-body: "Archivo", Arial, Helvetica, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: var(--charcoal);
    /* The hero shots are allowed to run past the viewport's right edge
       on narrow screens rather than shrink to nothing or force a
       stacked layout - this is what stops that from also creating a
       horizontal scrollbar. */
    overflow-x: hidden;
}

body {
    position: relative;
    margin: 0;
    background: transparent;
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.45;
    isolation: isolate;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body::before {
    content: "";
    position: absolute;
    z-index: 0;
    top: 0;
    bottom: 0;
    left: 50%;
    /* vw here (not %), matching .site-header::before/.site-footer::before
       below - both need the same unit or a visible scrollbar (which vw
       doesn't subtract but % of body does) throws the two panels a few
       pixels out of alignment. */
    width: min(var(--paper-max), calc(100vw - 32px));
    transform: translateX(-50%);
    background: var(--paper);
    pointer-events: none;
}

body > * {
    position: relative;
    z-index: 1;
}

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

button,
input {
    font: inherit;
}

button {
    cursor: pointer;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}

.site-header,
.hero,
.builds-queue,
.price-explainer,
.owner-cta,
.faq-section,
.site-footer {
    width: min(var(--content-max), calc(100% - 96px));
    margin: 0 auto;
}

.site-header {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 44px;
    padding: 20px 0;
}

.site-header::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 50%;
    width: min(var(--paper-max), calc(100vw - 32px));
    transform: translateX(-50%);
    background: var(--accent);
}

.logo {
    font-family: var(--font-display);
    font-size: 3.25rem;
    line-height: 0.9;
    letter-spacing: 0;
    text-transform: none;
}

.logo span{
    color:white;
}

.main-nav,
.header-actions {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 30px;
}

.main-nav a,
.btn,
.rebuilt-count,
.section-heading span,
.status,
.step-number {
    font-size: 0.78rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.main-nav a {
    padding: 10px 0;
}

.btn {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border: 1px solid var(--line);
    padding: 0 26px;
    background: transparent;
    color: var(--ink);
    white-space: nowrap;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 0 var(--line);
}

.btn:active {
    transform: translateY(0);
    box-shadow: none;
}

.btn-accent {
    background: var(--accent);
}

.btn-dark {
    background: var(--charcoal);
    color: #fff;
}

/* The hover shadow strip below a button (.btn:hover above) is black by
   default, which disappears against a black button face or a black
   section background. Override it per context so it's always distinct
   from both the button and whatever it's sitting on. */
.btn-dark:hover {
    box-shadow: 0 6px 0 var(--accent);
}

.site-header .btn-dark:hover {
    /* Black button on the yellow header - the accent strip above would
       just vanish into the header itself, so use white instead. */
    box-shadow: 0 6px 0 #fff;
}

.owner-cta .btn:hover {
    /* Any button on the black owner-cta background - the default black
       strip would vanish into it. */
    box-shadow: 0 6px 0 #fff;
}

.btn-outline {
    background: transparent;
}

.btn.full {
    width: 100%;
}

.btn.small {
    min-height: 42px;
    padding-inline: 18px;
}

.rebuilt-count {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    gap: 12px;
    border-radius: 3px;
    background: var(--charcoal);
    color: #fff;
    padding: 0 18px;
}

.rebuilt-count span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);


}

@keyframes pulse-dot {
    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 16px var(--accent);
    }
    50% {
        opacity: 0.55;
        box-shadow: 0 0 6px var(--accent);
    }
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 0.96fr) minmax(460px, 1.04fr);
    gap: 42px;
    align-items: start;
    padding-top: 40px;
    padding-bottom: 50px;
}

.hero-copy {
    max-width: 560px;
}

.hero h1,
.section-heading h2,
.owner-cta h2 {
    margin: 0;
    line-height: 0.9;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero h1,
.owner-cta h2 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 0.88;
    letter-spacing: -0.01em;
}

.hero h1 {
    font-size: clamp(2rem, 4.4vw + 0.8rem, 5.6rem);
    line-height: 1.08;
    white-space: nowrap;
}

.title-line {
    display: block;
}

.hero h1 .dot,
mark {
    color: var(--accent);
}

mark {
    padding: 0 5px;
    background: var(--accent);
    color: var(--ink);
}

.hero-copy p {
    max-width: 500px;
    margin: 20px 0 28px;
    font-size: 1.18rem;
}

.domain-form {
    max-width: 520px;
}

.owner-form {
    max-width: 560px;
}

.form-grid {
    display: grid;
    gap: 12px;
}

.field-frame {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    height: 66px;
    border: 2px solid var(--line);
    background: rgba(255, 255, 255, 0.52);
}

.field-frame.has-error {
    box-shadow: 0 0 0 4px rgba(223, 255, 0, 0.55);
}

.field-icon {
    display: grid;
    place-items: center;
}

.field-icon svg {
    width: 24px;
    fill: none;
    stroke: var(--ink);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.field-frame input {
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--ink);
    font-size: 1.18rem;
    font-weight: 800;
}

.field-frame input::placeholder {
    color: #aaa69e;
}

.consent-checks {
    display: grid;
    gap: 10px;
    margin-top: 14px;
}

.consent-checks label {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    font-size: 0.88rem;
    font-weight: 700;
}

.consent-checks input {
    width: 18px;
    height: 18px;
    accent-color: var(--accent);
}

.consent-checks a {
    text-decoration: underline;
}

.consent-checks em {
    font-style: normal;
    font-weight: 700;
    color: var(--muted);
}

.domain-entry {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr) 76px;
    height: 76px;
    border: 2px solid var(--line);
    background: rgba(255, 255, 255, 0.52);
}

.domain-entry.has-error {
    box-shadow: 0 0 0 4px rgba(223, 255, 0, 0.55);
}

.globe,
.submit-arrow {
    display: grid;
    place-items: center;
}

.globe svg {
    width: 25px;
    fill: none;
    stroke: var(--ink);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.domain-entry input {
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--ink);
    font-size: 1.55rem;
    font-weight: 800;
}

.domain-entry input::placeholder {
    color: #b4b0aa;
}

.submit-arrow {
    border: 0;
    border-left: 2px solid var(--line);
    background: var(--accent);
    font-size: 3rem;
    line-height: 1;
}

.wide-submit {
    width: 260px;
    margin-top: 18px;
}

.form-note,
.form-message {
    margin: 14px 0 0;
    font-size: 0.98rem;
}

.form-message.error {
    font-weight: 800;
}

.form-message.success,
.form-message.warning {
    border: 1px solid var(--line);
    padding: 10px 12px;
    font-weight: 800;
}

.form-message.success {
    background: var(--success);
}

.form-message.warning {
    background: #fff4a8;
}

.hero h1.hero-title-compact {
    max-width: 100%;
    font-size: clamp(1.8rem, 2.6vw + 1rem, 3.2rem);
    line-height: 1.05;
    white-space: normal;
}

.hero-copy .checkmark {
    margin-bottom: 18px;
}

.notes-field {
    display: grid;
    gap: 8px;
    margin-top: 6px;
}

.notes-field span {
    font-size: 0.88rem;
    font-weight: 800;
    text-transform: uppercase;
}

.notes-field em {
    font-weight: 700;
    text-transform: none;
    color: var(--muted);
}

.notes-field textarea {
    resize: vertical;
    min-height: 120px;
    border: 2px solid var(--line);
    background: rgba(255, 255, 255, 0.52);
    color: var(--ink);
    padding: 14px 16px;
    font-family: inherit;
    font-size: 1rem;
}

.notes-field textarea::placeholder {
    color: #aaa69e;
}

.notes-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-top: 18px;
}

.notes-actions .wide-submit {
    margin-top: 0;
}

.hero-visual {
    position: relative;
    min-height: 580px;
    margin-top: 145px;
}

.hero-shot {
    --hero-shot-offset: 0px;
    --hero-shot-rotation: 0deg;
    position: absolute;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.42);
    border-radius: 6px;
    background: #f8f5eb;
    box-shadow: var(--shadow);
    transform: translateX(var(--hero-shot-offset)) rotate(var(--hero-shot-rotation));
    transition: transform 0.28s ease, box-shadow 0.28s ease;
    will-change: transform;
}

.hero-shot img {
    display: block;
    width: 100%;
    height: auto;
}

.hero-shot-before {
    --hero-shot-rotation: -3deg;
    top: 52px;
    right: 10px;
    z-index: 1;
    width: 430px;
}

.hero-shot-after {
    --hero-shot-rotation: 5deg;
    right: 26px;
    bottom: 34px;
    z-index: 2;
    width: 480px;
}

.build-shot {
    height: 152px;
    overflow: hidden;
    background: #222;
}

.build-shot img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.how-section {
    background: var(--charcoal);
    color: #fff;
    padding: 28px 0 44px;
}

.how-section .eyebrow,
.steps {
    width: min(var(--content-max), calc(100% - 96px));
    margin: 0 auto;
}

.eyebrow {
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 34px;
    margin-top: 26px;
}

.steps article {
    position: relative;
    min-height: 116px;
    border-right: 1px solid rgba(255, 255, 255, 0.25);
    padding-right: 34px;
}

.steps article:last-child {
    border-right: 0;
}

.step-number {
    display: inline-grid;
    width: 38px;
    height: 38px;
    place-items: center;
    background: var(--accent);
    color: var(--ink);
}

.steps h2 {
    display: inline-block;
    margin: 0 0 12px 12px;
    font-family: var(--font-compact);
    font-size: 1.42rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0;
    text-transform: uppercase;
}

.steps p {
    margin: 25px 0 0;
    color: rgba(255, 255, 255, 0.88);
}

.steps a {
    text-decoration: underline;
}

.builds-queue {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 430px;
    gap: 34px;
    padding: 38px 0 18px;
}

.builds-panel {
    min-width: 0;
}

.section-heading {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
}

.section-heading span {
    display: block;
    margin-bottom: 8px;
}

.section-heading h2 {
    font-family: var(--font-compact);
    font-size: 2.1rem;
    font-weight: 800;
}

.section-heading.compact {
    align-items: end;
}

.build-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.build-card {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.34);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.build-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
}

.build-card-body {
    padding: 16px 16px 14px;
}

.build-card h3 {
    margin: 0;
    font-family: var(--font-compact);
    font-size: 1.12rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.build-card p {
    margin: 2px 0 0;
    font-size: 0.88rem;
}

.build-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--soft-line);
    padding: 12px 16px;
}

.build-card-footer a,
.build-card-footer .no-link,
.build-card-footer strong {
    font-size: 0.76rem;
    font-weight: 900;
    text-transform: uppercase;
}

.build-card-footer .no-link {
    color: rgba(19, 17, 12, 0.35);
    cursor: default;
}

.build-card-footer strong {
    background: var(--accent);
    padding: 4px 6px;
}

.queue-panel {
    border-left: 1px solid var(--line);
    padding-left: 34px;
}

.queue-list {
    display: grid;
    gap: 0;
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
}

.pipeline-list {
    display: grid;
    gap: 0;
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
}

.pipeline-list li {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 44px;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid var(--soft-line);
    padding: 14px 0;
}

.pipeline-list span {
    font-weight: 800;
}

.pipeline-list strong {
    display: inline-grid;
    width: 36px;
    height: 28px;
    place-items: center;
    justify-self: end;
    background: var(--accent);
    font-size: 0.82rem;
    line-height: 1;
}

.queue-list li {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 80px 98px;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--soft-line);
    padding: 12px 0;
}

.queue-list span {
    min-width: 0;
    overflow: hidden;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.queue-list time {
    color: var(--muted);
    font-size: 0.83rem;
}

.status {
    display: inline-flex;
    min-height: 27px;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid var(--soft-line);
    border-radius: 3px;
    padding: 0 8px;
    font-size: 0.68rem;
}

.status i {
    font-style: normal;
    font-size: 0.85em;
}

.status.reviewing {
    background: #fff;
}

.status.building {
    background: #f2f06b;
}

.status.rebuilt {
    background: var(--success);
}

.status.queued {
    background: #eeeeea;
}

.checkmark {
    display: grid;
    width: 76px;
    height: 76px;
    place-items: center;
    border: 2px solid var(--line);
    border-radius: 50%;
    background: var(--accent);
}

.checkmark svg {
    width: 42px;
    fill: none;
    stroke: var(--ink);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.analysis-card b {
    display: block;
    background: var(--accent);
    padding: 4px 8px;
}

.analysis-card strong {
    display: block;
    margin: 8px 0;
    font-size: 0.9rem;
}

.analysis-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 0.9rem;
}

.analysis-card li::before {
    content: "\2713";
    margin-right: 8px;
    color: #22a43a;
}


.price-explainer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 20px;
    padding: 28px 34px;
    border: 1px solid var(--line);
    background: var(--paper-strong);
}

.price-explainer h2 {
    margin: 0 0 6px;
    font-size: 1.3rem;
}

.price-explainer p {
    margin: 0;
    max-width: 640px;
    color: var(--muted);
}

.price-explainer p + p {
    margin-top: 8px;
}

.price-explainer p strong {
    color: var(--ink);
}

.owner-cta {
    display: grid;
    grid-template-columns: 1.15fr 1fr 0.95fr;
    gap: 50px;
    align-items: center;
    margin-top: 20px;
    background: var(--charcoal);
    color: #fff;
    padding: 32px 34px;
}

.owner-cta h2 {
    font-size: 2.6rem;
    line-height: 1.15;
}

.owner-cta p {
    margin: 0;
}

.owner-cta div > p {
    margin-top: 16px;
    color: var(--accent);
    font-family: "Comic Sans MS", "Bradley Hand", cursive;
    font-size: 1.45rem;
}

.price-card {
    display: grid;
    gap: 8px;
}

.price-card strong {
    color: var(--accent);
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 5.8rem;
    line-height: 0.85;
}

.price-card span {
    font-weight: 900;
    text-transform: uppercase;
}

.faq-section {
    padding: 46px 0 10px;
}

.faq-section .eyebrow {
    color: var(--ink);
    margin-bottom: 8px;
}

.faq-section h2 {
    margin: 0 0 24px;
    font-family: var(--font-compact);
    font-size: 2.1rem;
    font-weight: 800;
}

.faq-list {
    display: grid;
    gap: 14px;
    margin-top: 10px;
}

.faq-item {
    border: 1px solid var(--line);
    /* Same thickness as the button hover bar, for the same "solid base
       edge" look - kept constant (not just while open) so opening and
       closing only ever animates height, not height and border width
       at once, which was landing slightly out of sync. */
    border-bottom-width: 6px;
    background: rgba(255, 255, 255, 0.34);
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 24px;
    list-style: none;
    cursor: pointer;
    background: var(--ink);
    color: #fff;
    font-weight: 800;
    font-size: 1.05rem;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-icon {
    position: relative;
    flex: none;
    width: 20px;
    height: 20px;
}

.faq-icon::before,
.faq-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background: #fff;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease;
}

.faq-icon::before {
    width: 14px;
    height: 2px;
}

.faq-icon::after {
    width: 2px;
    height: 14px;
}

.faq-item[open] .faq-icon::after,
.faq-item.is-open .faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg) scaleY(0);
}

.faq-item p {
    margin: 0;
    max-width: 640px;
    padding: 0 20px;
    color: var(--muted);
}

.faq-item p:first-of-type {
    padding-top: 24px;
}

.faq-item p:last-of-type {
    padding-bottom: 24px;
}

.faq-item p + p {
    margin-top: 14px;
}

.faq-item p strong {
    color: var(--ink);
}

.site-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    padding: 24px 28px;
margin-top:50px
}

.site-footer::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 50%;
    width: min(var(--paper-max), calc(100vw - 32px));
    transform: translateX(-50%);
    background: var(--accent);
}

.small-logo {
    font-size: 1.7rem;
}

.footer-brand {
    display: grid;
    gap: 4px;
}

.footer-brand p {
    margin: 0;
    font-size: 0.9rem;
}

.footer-nav {
    display: flex;
    gap: 26px;
}

.footer-nav a {
    font-size: 0.74rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    text-decoration: none;
    text-underline-offset: 3px;
    transition: text-underline-offset 0.15s ease;
}

.footer-nav a:hover {
    text-decoration: underline;
    text-decoration-thickness: 3px;
    text-underline-offset: 5px;
}

.instagram-link {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
}

.instagram-link svg {
    width: 25px;
    fill: none;
    stroke: var(--ink);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.simple-header {
    grid-template-columns: 1fr auto;
}

.confirmation-page {
    width: min(720px, calc(100% - 96px));
    margin: 40px auto 100px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.32);
    padding: 36px;
}

.confirmation-page h1 {
    margin: 18px 0 12px;
    font-family: var(--font-display);
    font-size: 4.2rem;
    font-weight: 400;
    line-height: 0.95;
    text-transform: uppercase;
}

.confirmation-page > p {
    max-width: 520px;
    margin: 0 0 24px;
    font-size: 1.08rem;
}

.confirm-card {
    max-width: 520px;
}

/* Legal pages (legal-notice.php, privacy.php, terms.php) share the site
   header/footer above; this is just the reading column for their body
   copy, kept narrower than --content-max like .confirmation-page. */
.legal-content {
    width: min(760px, calc(100% - 96px));
    margin: 40px auto 100px;
}

.legal-content .notice {
    border: 2px solid var(--line);
    background: var(--paper-strong);
    padding: 16px 20px;
    margin-bottom: 40px;
    font-size: 0.92rem;
}

.legal-content .notice strong {
    background: var(--accent);
    padding: 0 4px;
}

.legal-content h1 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 2.6rem;
    line-height: 1.05;
    text-transform: uppercase;
    margin: 0 0 20px;
}

.legal-content h2 {
    font-weight: 800;
    font-size: 1.15rem;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    margin: 34px 0 10px;
}

.legal-content h3 {
    font-weight: 800;
    font-size: 1.02rem;
    margin: 26px 0 8px;
}

.legal-content h4 {
    font-weight: 800;
    font-size: 0.92rem;
    margin: 18px 0 6px;
}

.legal-content p {
    margin: 0 0 14px;
}

.legal-content ul {
    margin: 0 0 14px;
    padding-left: 20px;
}

.legal-content li {
    margin-bottom: 6px;
}

.legal-content a {
    text-decoration: underline;
}

.legal-content .placeholder {
    background: rgba(223, 255, 0, 0.55);
    padding: 0 3px;
}

.legal-content .muted {
    color: var(--muted);
    font-size: 0.88rem;
}

.legal-content table.fill {
    width: 100%;
    border-collapse: collapse;
    margin: 10px 0 20px;
}

.legal-content table.fill th,
.legal-content table.fill td {
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid var(--soft-line);
    padding: 8px 10px 8px 0;
    font-size: 0.94rem;
}

.legal-content table.fill th {
    width: 220px;
    font-weight: 800;
}

@media (max-width: 1332px) {
    body::before,
    .site-header::before,
    .site-footer::before {
        width: 100vw;
    }
}

@media (max-width: 1080px) {
    .hero {
        /* Below this point the form column and the mockup stage both
           stop shrinking. The full-size shots then keep their position
           relative to the copy and are clipped by the viewport on the
           right as available screen width runs out. */
        grid-template-columns: min(var(--hero-copy-fixed), 100%) var(--hero-visual-fixed);
        justify-content: start;
    }

    .steps,
    .builds-queue {
        grid-template-columns: repeat(2, 1fr);
    }

    .queue-panel {
        border-left: 0;
        padding-left: 0;
    }

    .owner-cta {
        grid-template-columns: 1fr 1fr;
    }
}

@media (hover: hover) and (pointer: fine) and (max-width: 1024px) and (min-width: 521px) {
    .hero-shot {
        cursor: pointer;
    }

    .hero-shot-before:hover {
        --hero-shot-offset: clamp(-220px, calc(100vw - 1048px), -24px);
        z-index: 5;
        box-shadow: 0 30px 70px rgba(0, 0, 0, 0.24);
    }

    .hero-shot-after:hover {
        --hero-shot-offset: clamp(-260px, calc(100vw - 1052px), -28px);
        z-index: 6;
        box-shadow: 0 30px 70px rgba(0, 0, 0, 0.24);
    }
}

@media (max-width: 520px) {
    .hero {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-visual {
        display: none;
    }
}

@media (max-width: 760px) {
    body::before {
        width: 100vw;
    }

    .site-header::before,
    .site-footer::before {
        width: 100vw;
    }

    .site-header,
    .hero,
    .builds-queue,
    .price-explainer,
    .owner-cta,
    .site-footer,
    .how-section .eyebrow,
    .steps {
        width: min(100% - 48px, var(--content-max));
    }

    .price-explainer {
        flex-direction: column;
        align-items: flex-start;
    }

    .site-header {
        padding-bottom: 24px;
    }

    .logo {
        font-size: 2.25rem;
    }

    .main-nav,
    .header-actions,
    .section-heading {
        flex-wrap: wrap;
        gap: 16px;
    }

    .header-actions .btn {
        display: none;
    }

    .hero {
        padding-bottom: 28px;
    }

    .hero-copy p {
        font-size: 1rem;
    }

    .domain-entry {
        grid-template-columns: 46px minmax(0, 1fr) 58px;
        height: 64px;
    }

    .field-frame {
        grid-template-columns: 46px minmax(0, 1fr);
        height: 62px;
    }

    .domain-entry input {
        font-size: 1.08rem;
    }

    .field-frame input {
        font-size: 1rem;
    }

    .submit-arrow {
        font-size: 2.25rem;
    }

    .wide-submit {
        width: 100%;
    }

    .steps,
    .builds-queue,
    .build-cards,
    .owner-cta {
        grid-template-columns: 1fr;
    }

    .steps article {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.25);
        padding: 0 0 24px;
    }

    .steps article:last-child {
        border-bottom: 0;
        padding-bottom: 0;
    }

    .queue-list li {
        grid-template-columns: 1fr;
        gap: 7px;
    }

    .confirmation-page {
        width: min(100% - 48px, 720px);
        padding: 26px;
    }

    .confirmation-page h1 {
        font-size: 3rem;
    }

    .status {
        width: max-content;
    }

    .checkmark {
        width: 68px;
        height: 68px;
    }

    .owner-cta {
        gap: 24px;
    }

    .price-card strong {
        font-size: 4.8rem;
    }
}

@media (max-width: 400px) {
    .rebuilt-count {
        display: none;
    }
}

