:root {
    --ink: #17211a;
    --muted: #5b675f;
    --paper: #fbfaf5;
    --surface: #ffffff;
    --soft-green: #dce9dc;
    --elm: #276441;
    --elm-dark: #153c2a;
    --moss: #8da86d;
    --sun: #f2bf5e;
    --clay: #c66f4d;
    --line: #d8ddd2;
    --shadow: 0 24px 70px rgba(23, 33, 26, 0.12);
    --radius: 8px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.5;
}

a {
    color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 3px solid rgba(242, 191, 94, 0.85);
    outline-offset: 3px;
}

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px clamp(18px, 4vw, 56px);
    color: #fff;
    text-shadow: 0 2px 18px rgba(10, 22, 14, 0.45);
}

.standard-header {
    position: relative;
    color: var(--elm-dark);
    background: rgba(251, 250, 245, 0.96);
    border-bottom: 1px solid var(--line);
    text-shadow: none;
}

.wordmark {
    display: inline-flex;
    align-items: center;
    color: #fff;
    text-decoration: none;
}

.wordmark-logo {
    display: block;
    width: clamp(220px, 28vw, 340px);
    height: auto;
    filter:
        drop-shadow(0 2px 2px rgba(255, 255, 255, 0.45))
        drop-shadow(0 5px 16px rgba(8, 18, 12, 0.5));
}

.standard-header .wordmark-logo {
    filter: drop-shadow(0 2px 8px rgba(23, 33, 26, 0.12));
}

.site-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px 18px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.94rem;
    font-weight: 650;
}

.standard-header .site-nav {
    color: var(--elm-dark);
}

.site-nav a {
    text-decoration: none;
    white-space: nowrap;
}

.site-nav a:hover {
    color: #fff;
}

.standard-header .site-nav a:hover {
    color: var(--elm);
}

.section-band,
.content-section {
    padding-inline: clamp(18px, 5vw, 72px);
}

.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: clamp(112px, 15vh, 150px) clamp(18px, 5vw, 72px) clamp(72px, 10vh, 120px);
    overflow: hidden;
    isolation: isolate;
}

.hero::after {
    position: absolute;
    inset: 0;
    z-index: -1;
    content: "";
    background:
        linear-gradient(180deg, rgba(10, 24, 15, 0.52), rgba(10, 24, 15, 0.1) 34%, rgba(10, 24, 15, 0.24) 68%, rgba(10, 24, 15, 0.68)),
        radial-gradient(circle at 50% 55%, rgba(251, 250, 245, 0.3), transparent 31%);
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image: url("../images/linkelm-elm-hero.webp");
    background-position: center;
    background-size: cover;
    transform: scale(1.01);
}

.hero-copy {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: min(880px, 100%);
    max-width: 880px;
    color: #fff;
    text-align: center;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--clay);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    margin-bottom: 10px;
    color: var(--elm-dark);
    font-size: clamp(4rem, 12vw, 9.5rem);
    line-height: 0.9;
    letter-spacing: 0;
}

h2 {
    margin-bottom: 14px;
    color: var(--elm-dark);
    font-size: clamp(2rem, 4vw, 3.8rem);
    line-height: 1.02;
    letter-spacing: 0;
}

h3 {
    margin-bottom: 8px;
    color: var(--elm-dark);
    font-size: 1.08rem;
}

.hero-tagline {
    margin-bottom: 14px;
    color: var(--elm);
    font-size: clamp(1.5rem, 3vw, 2.35rem);
    font-weight: 800;
    line-height: 1.08;
}

.hero .hero-tagline {
    line-height: 1.02;
}

.hero-text {
    max-width: 600px;
    margin-bottom: 28px;
    color: var(--muted);
    font-size: 1.15rem;
}

.hero-actions,
.product-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: 10px 0 24px;
}

.hero-actions .button-link {
    box-shadow: 0 12px 32px rgba(8, 18, 12, 0.22);
}

.button-link-secondary {
    color: var(--elm-dark);
    background: rgba(255, 255, 255, 0.92);
}

.button-link-secondary:hover {
    color: #fff;
}

.hero .eyebrow,
.hero h1,
.hero-tagline,
.hero-text {
    color: #fff;
    text-shadow: 0 3px 24px rgba(8, 18, 12, 0.72);
}

.hero .eyebrow {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.86);
}

.hero-text {
    max-width: 680px;
    margin-bottom: 32px;
    font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.search-panel {
    width: min(760px, 100%);
    max-width: 760px;
    padding: clamp(16px, 3vw, 24px);
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: var(--radius);
    box-shadow: 0 28px 80px rgba(8, 18, 12, 0.28);
    backdrop-filter: blur(18px);
    text-align: left;
}

.search-panel label {
    display: block;
    margin-bottom: 12px;
    color: var(--elm-dark);
    font-weight: 800;
}

.search-row {
    display: grid;
    grid-template-columns: minmax(120px, 1fr) auto auto;
    align-items: center;
    gap: 0;
    border: 1px solid #c9d2c6;
    border-radius: var(--radius);
    overflow: hidden;
    background: #fff;
}

.search-row input,
.search-row button,
.domain-suffix {
    min-height: 56px;
}

.search-row input {
    width: 100%;
    min-width: 0;
    border: 0;
    padding: 0 16px;
    color: var(--ink);
    font: inherit;
    font-weight: 700;
    text-align: right;
}

.domain-suffix {
    display: inline-flex;
    align-items: center;
    padding-inline: 10px 16px;
    color: var(--muted);
    white-space: nowrap;
}

.search-row button {
    border: 0;
    padding-inline: 24px;
    color: #fff;
    background: var(--elm);
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.search-row button:hover {
    background: var(--elm-dark);
}

.field-help,
.field-message {
    margin: 10px 0 0;
    font-size: 0.94rem;
}

.field-help {
    color: var(--muted);
}

.field-message[data-type="success"] {
    color: var(--elm);
    font-weight: 800;
}

.field-message a {
    color: var(--elm-dark);
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}

.field-message[data-type="error"] {
    color: #a13e28;
    font-weight: 800;
}

.content-section {
    max-width: 1220px;
    margin: 0 auto;
    padding-top: clamp(58px, 8vw, 104px);
    padding-bottom: clamp(58px, 8vw, 104px);
}

.inner-body {
    background:
        linear-gradient(180deg, #fbfaf5 0%, #f4f5ed 44%, #fbfaf5 100%);
}

.inner-hero {
    width: min(1120px, calc(100% - 36px));
    margin: 0 auto;
    padding: clamp(64px, 9vw, 110px) 0 clamp(36px, 6vw, 72px);
}

.inner-hero h1 {
    max-width: 880px;
    margin-bottom: 18px;
    color: var(--elm-dark);
    font-size: clamp(3rem, 8vw, 6.7rem);
    line-height: 0.96;
}

.about-hero {
    padding-bottom: clamp(22px, 4vw, 44px);
}

.about-hero h1 {
    max-width: 980px;
    font-size: clamp(3rem, 6vw, 5.7rem);
}

.inner-hero p:not(.eyebrow) {
    max-width: 660px;
    color: var(--muted);
    font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.split-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
    gap: clamp(28px, 6vw, 72px);
    align-items: end;
    padding-bottom: clamp(18px, 3vw, 34px);
}

.split-hero h1 {
    font-size: clamp(2.8rem, 7vw, 5.8rem);
}

.quiet-panel {
    padding: clamp(20px, 4vw, 30px);
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 18px 44px rgba(23, 33, 26, 0.08);
}

.quiet-panel h2 {
    margin-bottom: 10px;
    font-size: 1.35rem;
}

.quiet-panel p {
    margin-bottom: 0;
    color: var(--muted);
}

.inner-section {
    margin-bottom: clamp(36px, 7vw, 80px);
}

.about-page-section {
    max-width: 1220px;
    background: transparent;
}

.about-page-section > * {
    max-width: none;
}

.about-page-section .section-heading {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.about-page-section .roadmap-list {
    width: min(1040px, 100%);
    margin-left: auto;
    margin-right: auto;
    grid-template-columns: repeat(4, minmax(0, 248px));
    justify-content: center;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 28px;
}

.about-section {
    max-width: none;
    background: #f4f5ed;
}

.about-section > * {
    max-width: 1220px;
    margin-left: auto;
    margin-right: auto;
}

.roadmap-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.roadmap-list li {
    min-height: 100%;
    padding: 22px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.roadmap-list span {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    margin-bottom: 18px;
    color: #fff;
    background: var(--elm);
    border-radius: 50%;
    font-weight: 800;
}

.roadmap-list p {
    color: var(--muted);
}

.form-section {
    display: grid;
    grid-template-columns: minmax(0, 0.75fr) minmax(320px, 1fr);
    gap: clamp(28px, 6vw, 72px);
    align-items: start;
}

.polished-form-section {
    align-items: start;
    padding-top: clamp(22px, 4vw, 46px);
}

.contact-section {
    border-top: 1px solid var(--line);
}

.form-copy p:not(.eyebrow) {
    color: var(--muted);
    font-size: 1.12rem;
}

.public-form {
    display: grid;
    gap: 12px;
    padding: clamp(20px, 4vw, 30px);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.public-form label,
.choice-set legend {
    color: var(--elm-dark);
    font-weight: 800;
}

.public-form label span {
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 700;
}

.public-form input,
.public-form textarea {
    width: 100%;
    border: 1px solid #c9d2c6;
    border-radius: var(--radius);
    padding: 14px 16px;
    color: var(--ink);
    background: #fff;
    font: inherit;
}

.public-form textarea {
    resize: vertical;
}

.public-form input:focus,
.public-form textarea:focus {
    border-color: var(--elm);
    outline: 3px solid rgba(242, 191, 94, 0.35);
}

.compact-domain-row {
    grid-template-columns: minmax(120px, 1fr) auto;
}

.compact-domain-row input {
    min-height: 54px;
}

.choice-set {
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 4px 0 0;
    border: 0;
}

.choice-set label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--ink);
    font-weight: 650;
}

.choice-set input {
    width: auto;
}

.public-form button {
    justify-self: start;
    border: 0;
    padding: 14px 22px;
    color: #fff;
    background: var(--elm);
    border-radius: var(--radius);
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.public-form button:hover {
    background: var(--elm-dark);
}

.feature-form {
    position: relative;
    overflow: hidden;
}

.feature-form::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    content: "";
    background: linear-gradient(90deg, var(--elm), var(--sun), var(--clay));
}

.button-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    color: #fff;
    background: var(--elm);
    border-radius: var(--radius);
    font-weight: 800;
    text-decoration: none;
}

.button-link:hover {
    background: var(--elm-dark);
}

.button-link-outline {
    color: var(--elm-dark);
    background: transparent;
    border: 1px solid var(--elm);
}

.button-link-outline:hover {
    color: #fff;
}

.product-index-hero {
    padding-bottom: clamp(24px, 4vw, 42px);
}

.product-grid-section {
    padding-top: clamp(26px, 5vw, 56px);
}

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

.product-card {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
    min-height: 100%;
    padding: clamp(24px, 4vw, 38px);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: calc(var(--radius) * 2);
    box-shadow: 0 22px 54px rgba(23, 33, 26, 0.08);
}

.product-card-featured {
    border-top: 6px solid var(--clay);
}

.product-card-quiet {
    border-top: 6px solid var(--elm);
}

.product-card-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    width: 100%;
}

.product-mark {
    display: inline-grid;
    place-items: center;
    width: 52px;
    height: 52px;
    color: #fff;
    background: var(--clay);
    border-radius: 14px;
    font-size: 1.45rem;
    font-weight: 850;
}

.product-mark-elm {
    background: var(--elm);
}

.product-mark-large {
    width: 72px;
    height: 72px;
    margin-bottom: 24px;
    border-radius: 20px;
    font-size: 2rem;
}

.availability-badge {
    padding: 7px 11px;
    color: #7f3e27;
    background: #f7e6dd;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.availability-badge-soft {
    color: var(--elm-dark);
    background: var(--soft-green);
}

.product-card h3 {
    margin-bottom: 10px;
    font-size: clamp(2rem, 4vw, 3rem);
}

.product-card p,
.feature-card-grid p,
.purchase-readiness p {
    color: var(--muted);
}

.feature-list {
    display: grid;
    gap: 9px;
    padding: 0;
    margin: 0 0 auto;
    list-style: none;
}

.feature-list li {
    position: relative;
    padding-left: 24px;
}

.feature-list li::before {
    position: absolute;
    top: 0.55em;
    left: 2px;
    width: 8px;
    height: 8px;
    content: "";
    background: var(--moss);
    border-radius: 50%;
}

.text-cta {
    color: var(--elm);
    font-weight: 800;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

.trust-strip,
.purchase-readiness {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(300px, 1fr);
    gap: clamp(28px, 6vw, 80px);
    align-items: start;
    margin-bottom: clamp(48px, 8vw, 96px);
    background: var(--soft-green);
    border-radius: calc(var(--radius) * 2);
}

.trust-strip h2,
.purchase-readiness h2 {
    margin-bottom: 0;
    font-size: clamp(2rem, 4vw, 3.3rem);
}

.trust-strip > p {
    margin-bottom: 0;
    color: var(--elm-dark);
    font-size: 1.12rem;
}

.product-detail-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
    gap: clamp(36px, 7vw, 88px);
    align-items: center;
}

.product-detail-hero h1 {
    max-width: 790px;
    font-size: clamp(3rem, 7vw, 6.3rem);
}

.product-detail-hero .product-actions {
    justify-content: flex-start;
    margin-block: 28px 20px;
}

.availability-note {
    max-width: 760px !important;
    padding: 16px 18px;
    color: var(--elm-dark) !important;
    background: #fff7e7;
    border: 1px solid #ebd39c;
    border-radius: var(--radius);
    font-size: 0.98rem !important;
}

.product-summary-card {
    padding: clamp(24px, 4vw, 36px);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: calc(var(--radius) * 2);
    box-shadow: var(--shadow);
}

.product-summary-card h2 {
    font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.product-facts {
    margin: 24px 0 0;
}

.product-facts div {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 16px;
    padding: 12px 0;
    border-top: 1px solid var(--line);
}

.product-facts dt {
    color: var(--muted);
    font-weight: 700;
}

.product-facts dd {
    margin: 0;
    color: var(--elm-dark);
    font-weight: 800;
}

.feature-section {
    padding-top: clamp(36px, 6vw, 68px);
}

.feature-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.feature-card-grid article {
    padding: 24px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.feature-card-grid p {
    margin-bottom: 0;
}

.policy-link-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
}

.policy-link-row a {
    color: var(--elm);
    font-weight: 800;
}

.policy-page {
    width: min(1120px, calc(100% - 36px));
    margin: 0 auto;
    padding: clamp(58px, 8vw, 100px) 0 clamp(72px, 10vw, 120px);
}

.policy-header {
    max-width: 820px;
    margin-bottom: clamp(40px, 7vw, 72px);
}

.policy-header h1 {
    margin-bottom: 18px;
    font-size: clamp(3.2rem, 8vw, 6.5rem);
}

.policy-header > p:not(.eyebrow):not(.policy-status) {
    color: var(--muted);
    font-size: 1.18rem;
}

.policy-status {
    display: inline-block;
    margin-bottom: 20px;
    padding: 7px 11px;
    color: #7f3e27;
    background: #f7e6dd;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 800;
}

.policy-layout {
    display: grid;
    grid-template-columns: 190px minmax(0, 760px);
    gap: clamp(36px, 7vw, 80px);
    align-items: start;
}

.policy-nav {
    display: grid;
    gap: 4px;
    position: sticky;
    top: 24px;
}

.policy-nav a {
    padding: 10px 12px;
    color: var(--muted);
    border-left: 3px solid transparent;
    text-decoration: none;
    font-weight: 750;
}

.policy-nav a:hover,
.policy-nav a[aria-current="page"] {
    color: var(--elm-dark);
    background: var(--soft-green);
    border-left-color: var(--elm);
}

.policy-content {
    padding: clamp(24px, 4vw, 42px);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: calc(var(--radius) * 2);
}

.policy-content section + section {
    padding-top: 28px;
    margin-top: 28px;
    border-top: 1px solid var(--line);
}

.policy-content h2 {
    font-size: clamp(1.55rem, 3vw, 2.15rem);
}

.policy-content p {
    color: var(--muted);
}

.policy-content p:last-child {
    margin-bottom: 0;
}

.policy-content a {
    color: var(--elm);
    font-weight: 750;
}

.thank-you-panel {
    width: min(780px, calc(100% - 36px));
    margin: clamp(72px, 12vw, 140px) auto;
    padding: clamp(28px, 5vw, 48px);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.thank-you-panel h1 {
    margin-bottom: 16px;
    color: var(--elm-dark);
    font-size: clamp(2.5rem, 6vw, 4.8rem);
    line-height: 0.98;
}

.thank-you-panel p:not(.eyebrow) {
    max-width: 560px;
    margin-bottom: 24px;
    color: var(--muted);
    font-size: 1.12rem;
}

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

.form-status {
    margin: 0;
    padding: 12px 14px;
    border-left: 5px solid var(--elm);
    background: var(--soft-green);
    border-radius: var(--radius);
    font-weight: 800;
}

.form-status[data-type="error"] {
    color: #a13e28;
    background: #f7e1dc;
    border-left-color: #a13e28;
}

.form-note {
    min-height: 1.4em;
    margin: 0;
    color: var(--muted);
    font-size: 0.94rem;
}

.purchase-form,
.compact-form {
    display: grid;
    gap: 16px;
    margin-top: 24px;
}

.terms-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--muted);
}

.terms-check input {
    width: auto;
    margin-top: 4px;
}

.license-code-card {
    display: grid;
    gap: 6px;
    margin-top: 14px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--soft-green);
}

.license-code-card code,
.form-note code {
    overflow-wrap: anywhere;
}

.lazy-turnstile {
    min-height: 0;
}

.contact-turnstile {
    margin-top: 2px;
}

.site-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 14px 22px;
    padding: 28px clamp(18px, 5vw, 72px);
    color: var(--muted);
    border-top: 1px solid var(--line);
}

.footer-identity {
    max-width: none;
}

.footer-identity p + p {
    margin-top: 5px;
    white-space: nowrap;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px 18px;
}

.footer-nav a {
    white-space: nowrap;
}

.site-footer p {
    margin: 0;
}

.site-footer a {
    color: var(--elm);
    font-weight: 800;
}

@media (max-width: 920px) {
    .site-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .site-nav {
        justify-content: flex-start;
    }

    .hero {
        min-height: 100svh;
    }

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

    .form-section {
        grid-template-columns: 1fr;
    }

    .split-hero {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .product-detail-hero,
    .trust-strip,
    .purchase-readiness {
        grid-template-columns: 1fr;
    }

    .policy-layout {
        grid-template-columns: 1fr;
    }

    .policy-nav {
        display: flex;
        flex-wrap: wrap;
        position: static;
    }

    .policy-nav a {
        border-bottom: 3px solid transparent;
        border-left: 0;
    }

    .policy-nav a:hover,
    .policy-nav a[aria-current="page"] {
        border-bottom-color: var(--elm);
        border-left-color: transparent;
    }
}

@media (max-width: 640px) {
    .site-header {
        gap: 12px;
        padding: 16px 18px;
    }

    .site-nav {
        gap: 8px 14px;
        font-size: 0.9rem;
    }

    .hero {
        padding-top: 156px;
    }

    .inner-hero h1,
    .split-hero h1,
    .thank-you-panel h1 {
        font-size: 2.55rem;
    }

    .hero-background {
        background-position: center top;
    }

    .search-row {
        grid-template-columns: 1fr;
    }

    .domain-suffix {
        justify-content: flex-end;
        min-height: 42px;
        padding: 0 16px 10px;
    }

    .search-row button {
        width: 100%;
    }

    .roadmap-list {
        grid-template-columns: 1fr;
    }

    .product-grid,
    .feature-card-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions,
    .product-actions {
        align-items: stretch;
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .button-link,
    .product-actions .button-link {
        width: 100%;
    }

    .product-facts div {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .footer-nav {
        justify-content: flex-start;
    }

    .footer-identity p + p {
        white-space: normal;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
    }
}
