@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700;800&family=Rubik:wght@500;600;700&display=swap");

:root {
    --brand: #72a1e5;
    --brand-deep: #1f4a75;
    --brand-soft: #dce9fb;
    --accent: #ba5a31;
    --accent-soft: #ffe3d4;
    --mint: #c0e0de;
    --mint-soft: #eef7f7;
    --shell: #0f141b;
    --shell-soft: #1a2430;
    --ink: #15273b;
    --ink-soft: #52667c;
    --panel: #ffffff;
    --panel-soft: rgba(255, 255, 255, 0.82);
    --line: #d7e0ea;
    --success: #1f8f65;
    --warning: #9d4b25;
    --shadow: 0 24px 60px rgba(12, 17, 25, 0.08);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --header-height: 78px;
    --content-width: 1240px;
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Open Sans", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(114, 161, 229, 0.18), transparent 28%),
        linear-gradient(180deg, #f3f7fb 0%, #ffffff 340px);
}

body.nav-open {
    overflow: hidden;
}

a {
    color: var(--brand-deep);
    text-decoration: none;
}

a:hover {
    color: var(--accent);
}

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

code,
pre,
kbd {
    font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
}

pre {
    margin: 1.25rem 0;
    padding: 1rem 1.1rem;
    overflow-x: auto;
    border: 1px solid rgba(114, 161, 229, 0.16);
    border-radius: var(--radius-md);
    background: #0f1722;
    color: #eaf2ff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

pre code {
    color: inherit;
}

:not(pre) > code {
    padding: 0.16rem 0.42rem;
    border-radius: 999px;
    background: var(--brand-soft);
    color: var(--brand-deep);
    font-size: 0.93em;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.25rem 0 1.75rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.9);
}

th,
td {
    padding: 0.9rem 1rem;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid var(--line);
}

thead th {
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink-soft);
    background: linear-gradient(180deg, #f7fbff, #edf4fb);
}

tbody tr:last-child td {
    border-bottom: 0;
}

/* Configuration property names are intentionally long. Keep them inside their
 * table cells and inline-code badges at every viewport width. */
body[data-page="configuration"] table {
    table-layout: fixed;
}

body[data-page="configuration"] .cards--three {
    grid-template-columns: 1fr;
}

body[data-page="configuration"] th,
body[data-page="configuration"] td,
body[data-page="configuration"] :not(pre) > code {
    overflow-wrap: anywhere;
}

body[data-page="configuration"] :not(pre) > code {
    white-space: normal;
    word-break: break-all;
}

body[data-page="configuration"] .card > p > code {
    white-space: nowrap;
    word-break: normal;
}

body[data-page="configuration"] pre {
    white-space: pre-wrap;
    overflow-wrap: anywhere;
}

ul,
ol {
    padding-left: 1.35rem;
}

li + li {
    margin-top: 0.42rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background:
        linear-gradient(90deg, rgba(9, 12, 17, 0.98), rgba(16, 20, 28, 0.96)),
        url("https://omnipasskey.com/featured-background.png") center / cover;
    backdrop-filter: blur(12px);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    max-width: var(--content-width);
    min-height: var(--header-height);
    margin: 0 auto;
    padding: 0 1.25rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    min-width: 0;
    color: #ffffff;
}

.brand:hover {
    color: #ffffff;
}

.brand__logo {
    height: 38px;
    width: auto;
}

.brand__text {
    padding-left: 0.9rem;
    border-left: 1px solid rgba(255, 255, 255, 0.18);
    font-family: "Rubik", sans-serif;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
}

.site-header__links {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

.site-header__links a {
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.95rem;
}

.site-header__links a:hover {
    color: #ffffff;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.78rem 1.15rem;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 700;
    line-height: 1;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button--primary {
    color: #ffffff;
    background: linear-gradient(135deg, var(--brand), #4c86d9);
    box-shadow: 0 14px 30px rgba(76, 134, 217, 0.28);
}

.button--primary:hover {
    color: #ffffff;
}

.button--secondary {
    color: var(--brand-deep);
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(114, 161, 229, 0.2);
}

.button--ghost {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
}

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 0;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 3px 0;
    background: #ffffff;
}

.site-layout {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    max-width: 1680px;
    margin: 0 auto;
    min-height: calc(100vh - var(--header-height));
}

.sidebar {
    position: sticky;
    top: var(--header-height);
    height: calc(100vh - var(--header-height));
    overflow-y: auto;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    background:
        linear-gradient(180deg, rgba(10, 14, 20, 0.97), rgba(12, 19, 26, 0.96)),
        url("https://omnipasskey.com/keyring.png") center bottom / 145% auto no-repeat;
    color: rgba(255, 255, 255, 0.94);
}

.sidebar__inner {
    position: relative;
    padding: 1.7rem 1.25rem 2rem;
}

.sidebar__eyebrow {
    margin: 0 0 0.4rem;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.58);
}

.sidebar__title {
    margin: 0;
    font-family: "Rubik", sans-serif;
    font-size: 1.34rem;
    color: #ffffff;
}

.sidebar__search {
    display: block;
    margin: 1.25rem 0 1.5rem;
}

.sidebar__search span {
    display: block;
    margin-bottom: 0.45rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.72);
}

.sidebar__search input {
    width: 100%;
    padding: 0.85rem 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.sidebar__search input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.sidebar__search input:focus {
    outline: 2px solid rgba(114, 161, 229, 0.75);
    outline-offset: 1px;
}

.docs-search__status {
    margin: 0 0 0.75rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.78rem;
    font-weight: 700;
}

.docs-search__status--error,
.docs-search__notice {
    color: #ffd7c5;
}

.docs-search__notice {
    margin: -0.35rem 0 0.8rem;
    font-size: 0.72rem;
}

.docs-search__results {
    margin: 0;
    padding: 0;
    list-style: none;
}

.docs-search__result + .docs-search__result {
    margin-top: 0.45rem;
}

.docs-search__link {
    display: block;
    padding: 0.72rem 0.78rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.9);
    transition: background 0.18s ease, border-color 0.18s ease;
}

.docs-search__link:hover,
.docs-search__link:focus-visible {
    border-color: rgba(114, 161, 229, 0.44);
    background: rgba(114, 161, 229, 0.13);
    color: #ffffff;
}

.docs-search__link:focus-visible {
    outline: 2px solid rgba(114, 161, 229, 0.75);
    outline-offset: 1px;
}

.docs-search__context,
.docs-search__title,
.docs-search__snippet {
    display: block;
}

.docs-search__context {
    margin-bottom: 0.22rem;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.docs-search__title {
    font-family: "Rubik", sans-serif;
    font-size: 0.84rem;
    line-height: 1.35;
}

.docs-search__snippet {
    display: -webkit-box;
    margin-top: 0.3rem;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.72rem;
    line-height: 1.45;
}

.docs-nav__group + .docs-nav__group {
    margin-top: 1.1rem;
    padding-top: 1.1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.docs-nav__heading {
    margin: 0 0 0.55rem;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.docs-nav__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.docs-nav__item + .docs-nav__item {
    margin-top: 0.3rem;
}

.docs-nav__link {
    display: block;
    padding: 0.7rem 0.8rem;
    border-radius: 14px;
    color: rgba(255, 255, 255, 0.84);
    transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.docs-nav__link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(2px);
}

.docs-nav__link[aria-current="page"] {
    color: #ffffff;
    background:
        linear-gradient(135deg, rgba(114, 161, 229, 0.28), rgba(114, 161, 229, 0.12)),
        rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 0 0 1px rgba(114, 161, 229, 0.24);
}

.page {
    min-width: 0;
}

.page__inner {
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 1.65rem 1.4rem 3rem;
}

.page__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 2rem;
    align-items: start;
}

.page__content {
    min-width: 0;
}

.page__toc {
    position: sticky;
    top: calc(var(--header-height) + 1.5rem);
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-bottom: 1rem;
    color: var(--ink-soft);
    font-size: 0.9rem;
}

.breadcrumbs__divider {
    color: #91a2b4;
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: 420px;
    margin-bottom: 1.8rem;
    padding: clamp(2rem, 4.5vw, 4rem);
    border-radius: var(--radius-xl);
    background:
        linear-gradient(115deg, rgba(8, 12, 16, 0.9), rgba(15, 30, 54, 0.55) 45%, rgba(114, 161, 229, 0.18)),
        url("https://omnipasskey.com/featured-background.png") center / cover;
    box-shadow: var(--shadow);
    color: #ffffff;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto -8% -22% auto;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(114, 161, 229, 0.38), transparent 70%);
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: 740px;
}

.eyebrow {
    margin: 0 0 0.8rem;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.hero .eyebrow {
    color: rgba(255, 255, 255, 0.72);
}

.hero h1,
.page-banner h1,
.docs-article h1,
.docs-article h2,
.docs-article h3 {
    font-family: "Rubik", sans-serif;
}

.hero h1 {
    margin: 0;
    font-size: clamp(2.45rem, 4vw, 4rem);
    line-height: 1.04;
}

.hero p {
    max-width: 58ch;
    margin: 1rem 0 0;
    font-size: 1.08rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.5rem;
}

.hero__metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
    margin-top: 1.7rem;
}

.hero__metric {
    padding: 1rem 1rem 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.hero__metric strong {
    display: block;
    font-size: 1.55rem;
}

.hero__metric span {
    display: block;
    margin-top: 0.25rem;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.92rem;
}

.page-banner {
    margin-bottom: 1.25rem;
    padding: 1.55rem 1.8rem;
    border: 1px solid rgba(114, 161, 229, 0.18);
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(114, 161, 229, 0.12), rgba(192, 224, 222, 0.18)),
        rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow);
}

.page-banner h1 {
    margin: 0.2rem 0 0;
    font-size: clamp(2rem, 3vw, 3rem);
}

.page-banner p {
    max-width: 72ch;
    margin: 0.8rem 0 0;
    color: var(--ink-soft);
}

.docs-article {
    min-width: 0;
    padding: clamp(1.5rem, 3vw, 2.6rem);
    border: 1px solid rgba(114, 161, 229, 0.16);
    border-radius: var(--radius-xl);
    background: var(--panel-soft);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow);
}

.docs-article > :first-child {
    margin-top: 0;
}

.docs-article h2 {
    margin: 2.25rem 0 0.85rem;
    font-size: 1.65rem;
}

.docs-article h3 {
    margin: 1.65rem 0 0.65rem;
    font-size: 1.16rem;
}

.docs-article p,
.docs-article li {
    color: var(--ink);
    line-height: 1.7;
}

.docs-article .lede {
    font-size: 1.1rem;
    color: var(--ink-soft);
}

.cards {
    display: grid;
    gap: 1rem;
}

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

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

.card {
    min-width: 0;
    padding: 1.2rem 1.25rem;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 16px 40px rgba(12, 17, 25, 0.06);
}

.card h3,
.card h4 {
    margin-top: 0;
}

.card p:last-child,
.card ul:last-child {
    margin-bottom: 0;
}

.card--dark {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.1);
    background:
        linear-gradient(145deg, rgba(15, 20, 28, 0.96), rgba(27, 37, 50, 0.94)),
        url("https://omnipasskey.com/minifig-identity.png") right bottom / cover;
}

.card--accent {
    background:
        linear-gradient(145deg, rgba(255, 227, 212, 0.9), rgba(255, 255, 255, 0.88));
    border-color: rgba(186, 90, 49, 0.18);
}

.card__eyebrow {
    margin: 0 0 0.55rem;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
}

.journey {
    counter-reset: journey;
    display: grid;
    gap: 1rem;
}

.journey__step {
    position: relative;
    padding: 1.15rem 1.25rem 1.15rem 4.1rem;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.92);
}

.journey__step::before {
    counter-increment: journey;
    content: counter(journey);
    position: absolute;
    left: 1.05rem;
    top: 1.1rem;
    width: 2.2rem;
    height: 2.2rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-family: "Rubik", sans-serif;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, var(--brand), var(--accent));
}

.media-split {
    display: grid;
    grid-template-columns: 1.25fr 0.95fr;
    gap: 1rem;
    align-items: stretch;
}

.media-split__visual {
    border-radius: 24px;
    background:
        linear-gradient(145deg, rgba(15, 20, 28, 0.92), rgba(24, 38, 61, 0.76)),
        url("https://omnipasskey.com/keyring.png") center / cover;
    min-height: 280px;
}

.docs-figure {
    margin: 1.5rem 0;
}

.docs-figure img {
    display: block;
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: 0 18px 42px rgba(18, 37, 65, 0.12);
}

.docs-figure figcaption {
    margin-top: 0.65rem;
    color: var(--muted);
    font-size: 0.92rem;
}

.architecture {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin: 1.25rem 0 0;
}

.architecture__item {
    position: relative;
    padding: 1.15rem 1.2rem;
    border: 1px solid rgba(114, 161, 229, 0.18);
    border-radius: 22px;
    background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.architecture__item strong {
    display: block;
    margin-bottom: 0.35rem;
    font-family: "Rubik", sans-serif;
    font-size: 1.04rem;
}

.architecture__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-deep);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.callout {
    margin: 1.25rem 0;
    padding: 1rem 1.1rem;
    border-left: 5px solid var(--brand);
    border-radius: 0 20px 20px 0;
    background: linear-gradient(135deg, rgba(114, 161, 229, 0.12), rgba(255, 255, 255, 0.9));
}

.callout strong {
    display: block;
    margin-bottom: 0.25rem;
    font-family: "Rubik", sans-serif;
}

.callout--warning {
    border-left-color: var(--accent);
    background: linear-gradient(135deg, rgba(186, 90, 49, 0.12), rgba(255, 255, 255, 0.92));
}

.callout--success {
    border-left-color: var(--success);
    background: linear-gradient(135deg, rgba(31, 143, 101, 0.12), rgba(255, 255, 255, 0.92));
}

.checklist {
    display: grid;
    gap: 0.8rem;
    margin: 1rem 0 0;
}

.checklist__item {
    padding: 0.95rem 1rem 0.95rem 3rem;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.92);
    position: relative;
}

.checklist__item::before {
    content: "✓";
    position: absolute;
    left: 1rem;
    top: 0.95rem;
    width: 1.35rem;
    height: 1.35rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #ffffff;
    background: var(--success);
    font-weight: 700;
}

.toc-card {
    padding: 1rem;
    border: 1px solid rgba(114, 161, 229, 0.16);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.84);
    backdrop-filter: blur(10px);
    box-shadow: 0 18px 44px rgba(12, 17, 25, 0.06);
}

.toc-card__title {
    margin-bottom: 0.65rem;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-soft);
}

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

.toc__item + .toc__item {
    margin-top: 0.25rem;
}

.toc__link {
    display: block;
    padding: 0.4rem 0.55rem;
    border-radius: 12px;
    color: var(--ink-soft);
    font-size: 0.92rem;
}

.toc__link:hover,
.toc__link.is-active {
    color: var(--brand-deep);
    background: rgba(114, 161, 229, 0.12);
}

.toc__link--h3 {
    padding-left: 1.1rem;
    font-size: 0.87rem;
}

.page-footer {
    margin-top: 1rem;
    padding: 1rem 0 0;
    color: var(--ink-soft);
    font-size: 0.92rem;
}

.faq {
    display: grid;
    gap: 1rem;
}

.faq__item {
    padding: 1rem 1.1rem;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.92);
}

.faq__item h3 {
    margin-top: 0;
}

.pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin: 1rem 0 0;
}

.pill {
    padding: 0.46rem 0.7rem;
    border: 1px solid rgba(114, 161, 229, 0.2);
    border-radius: 999px;
    background: rgba(114, 161, 229, 0.08);
    color: var(--brand-deep);
    font-size: 0.88rem;
    font-weight: 700;
}

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

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

    .page__toc {
        display: none;
    }
}

@media (max-width: 960px) {
    body.nav-open::after {
        content: "";
        position: fixed;
        inset: var(--header-height) 0 0 0;
        z-index: 18;
        background: rgba(9, 12, 17, 0.5);
    }

    .nav-toggle {
        display: inline-flex;
    }

    .site-header__links {
        display: none;
    }

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

    .sidebar {
        position: fixed;
        inset: var(--header-height) auto 0 0;
        z-index: 20;
        width: min(86vw, 320px);
        transform: translateX(-110%);
        transition: transform 0.24s ease;
        box-shadow: 18px 0 60px rgba(0, 0, 0, 0.3);
    }

    body.nav-open .sidebar {
        transform: translateX(0);
    }

    .hero__metrics,
    .cards--three,
    .cards--two,
    .architecture,
    .media-split {
        grid-template-columns: 1fr;
    }

    .brand__text {
        display: none;
    }
}

@media (max-width: 640px) {
    .site-header__inner,
    .page__inner {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .hero,
    .docs-article,
    .page-banner {
        border-radius: 24px;
    }

    .hero {
        min-height: 360px;
        padding: 1.5rem;
    }

    .hero h1 {
        font-size: 2.2rem;
    }
}
