@import url("design/lash-design-tokens.css");

:root {
    --bg: #6d6e72;
    --bg-dark: #4d4f54;
    --canvas: #ececef;
    --ink: #101114;
    --muted: #4c4f59;
    --line: rgba(16, 17, 20, 0.24);
    --accent: #395AFF;
    --accent-strong: #2342d4;
    --glass-border: rgba(255, 255, 255, 0.52);
    --glass-surface: rgba(255, 255, 255, 0.18);
    --glass-surface-strong: rgba(255, 255, 255, 0.38);
    --radius-xl: 30px;
    --radius-lg: 22px;
    --radius-md: 14px;
}

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

html {
    background: #03050a;
}

html,
body {
    min-height: 100%;
}

body {
    font-family: "Poppins", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at 14% 8%, rgba(19, 56, 180, 0.62), transparent 36%),
        radial-gradient(circle at 86% 22%, rgba(5, 45, 186, 0.7), transparent 44%),
        linear-gradient(160deg, #05070b 0%, #080c16 46%, #03050a 100%);
    padding: clamp(0.75rem, 1.8vw, 1.5rem);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 50% 4%, rgba(255, 255, 255, 0.14), transparent 40%),
        radial-gradient(circle at 18% 90%, rgba(0, 0, 0, 0.42), transparent 42%);
    pointer-events: none;
    z-index: -1;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    background:
        repeating-linear-gradient(0deg,
            rgba(255, 255, 255, 0.02) 0,
            rgba(255, 255, 255, 0.02) 1px,
            transparent 1px,
            transparent 3px);
    mix-blend-mode: soft-light;
    opacity: 0.52;
    pointer-events: none;
    z-index: -1;
}

.page-home {
    min-height: 100vh;
    padding: 0;
    background: #000000;
}

.page-home::before {
    content: none;
}

.page-home::after {
    content: none;
}

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

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

.site-shell {
    width: min(1320px, 100%);
    min-height: calc(100vh - clamp(1.5rem, 3.6vw, 3rem));
    margin-inline: auto;
    border-radius: 0;
    border: 1px solid rgba(42, 78, 201, 0.65);
    background:
        radial-gradient(circle at 82% 34%, rgba(8, 16, 36, 0.92), transparent 44%),
        radial-gradient(circle at 20% 86%, rgba(10, 48, 171, 0.42), transparent 52%),
        linear-gradient(152deg, #0044dc 0%, #0238bf 38%, #05298a 100%);
    box-shadow:
        0 34px 70px rgba(0, 0, 0, 0.48),
        inset 0 1px 0 rgba(255, 255, 255, 0.14);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    isolation: isolate;
}

.site-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(70% 120% at 64% 36%, rgba(4, 8, 22, 0.82), transparent 64%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.34) 0%, transparent 34%, rgba(0, 0, 0, 0.26) 100%);
    pointer-events: none;
    z-index: 0;
}

.panel-inner {
    width: min(1100px, calc(100% - 2rem));
    margin-inline: auto;
}

.panel-header {
    padding: 0.9rem 0;
    background:
        linear-gradient(180deg, rgba(2, 7, 24, 0.42), rgba(2, 7, 24, 0.12));
    backdrop-filter: blur(8px) saturate(120%);
    -webkit-backdrop-filter: blur(8px) saturate(120%);
    position: relative;
    z-index: 1;
}

.content-header {
    padding: clamp(1rem, 3.58vh, 2.5rem) 0 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.content-header .panel-inner {
    width: min(1568px, calc(100% - clamp(2rem, 9.26vw, 10rem)));
}

.content-header .header-row {
    display: grid;
    grid-template-columns: minmax(110px, 1fr) auto minmax(110px, 1fr);
    align-items: center;
    gap: clamp(1rem, 3vw, 3.5rem);
}

.content-header .brand {
    justify-self: start;
}

.content-header .brand-logo-svg {
    width: clamp(118px, 10.76vw, 186px);
}

.content-header .site-nav {
    justify-self: center;
    gap: clamp(2.2rem, 5.21vw, 5.5rem);
}

.content-header .nav-link {
    color: #ffffff;
    font-size: clamp(0.9rem, 1.389vw, 1.5rem);
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
    opacity: 0.88;
}

.content-header .nav-link.is-active,
.content-header .nav-link:hover,
.content-header .nav-link:focus-visible {
    color: #ffffff;
    opacity: 1;
}

.content-header .app-store-link {
    justify-self: end;
}

.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.4rem;
}

.brand {
    display: inline-flex;
    align-items: center;
}

.brand-logo-svg {
    width: 96px;
    height: auto;
}

.site-nav {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(0.85rem, 1.5vw, 1.45rem);
    position: relative;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.site-nav::before {
    content: none;
}

.nav-link,
.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 0;
    padding: 0.1rem 0;
    font-size: 0.67rem;
    font-weight: 600;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: rgba(232, 240, 255, 0.74);
    position: relative;
    white-space: nowrap;
    text-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.nav-link::before,
.nav-cta::before {
    content: none;
}

.nav-link {
    color: rgba(232, 240, 255, 0.74);
}

.nav-link.is-active {
    color: #ffffff;
}

.nav-link:hover,
.nav-link:focus-visible {
    color: #ffffff;
}

.nav-link:focus-visible,
.nav-cta:focus-visible {
    outline: 1px solid rgba(255, 255, 255, 0.72);
    outline-offset: 4px;
}

.nav-cta {
    padding: 0.36rem 0.68rem;
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

.nav-cta:hover,
.nav-cta:focus-visible {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.16);
}

.panel-main {
    width: min(1100px, calc(100% - 2rem));
    margin-inline: auto;
    padding: clamp(0.8rem, 2vw, 1.3rem) 0 clamp(1.4rem, 4vw, 2.2rem);
    flex: 1;
    position: relative;
    z-index: 1;
}

.home-main {
    padding-top: clamp(0.4rem, 1.6vw, 1rem);
}

h1,
h2,
h3 {
    font-family: "Poppins", sans-serif;
    line-height: 0.98;
    letter-spacing: 0;
}

.hero-layout {
    display: grid;
    gap: clamp(0.9rem, 2vw, 1.4rem);
    align-items: stretch;
}

.hero-copy {
    border-radius: calc(var(--radius-lg) + 4px);
    padding: clamp(1.05rem, 2.6vw, 1.8rem);
    border: 1px solid rgba(255, 255, 255, 0.54);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.26));
    box-shadow:
        0 18px 32px rgba(16, 17, 20, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(14px) saturate(125%);
    -webkit-backdrop-filter: blur(14px) saturate(125%);
}

.eyebrow {
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--muted);
}

.hero-title {
    margin-top: 0.55rem;
    font-size: clamp(2.5rem, 8.2vw, 6.2rem);
    max-width: 8.6ch;
}

.hero-title .accent {
    color: var(--accent);
}

.hero-intro {
    margin-top: 0.9rem;
    max-width: 54ch;
    color: rgba(16, 17, 20, 0.74);
    font-size: 1.02rem;
    line-height: 1.48;
}

.hero-actions {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.56rem;
}

.hero-side {
    max-width: none;
    justify-self: stretch;
    border-radius: calc(var(--radius-lg) + 2px);
    padding: clamp(1rem, 2.3vw, 1.45rem);
    border: 1px solid rgba(255, 255, 255, 0.56);
    background:
        linear-gradient(155deg, rgba(255, 255, 255, 0.72), rgba(200, 213, 255, 0.24));
    box-shadow:
        0 18px 34px rgba(45, 63, 158, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(18px) saturate(136%);
    -webkit-backdrop-filter: blur(18px) saturate(136%);
}

.hero-side-label {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(30, 45, 122, 0.72);
}

.hero-side h2 {
    margin-top: 0.4rem;
    font-size: clamp(1.75rem, 3vw, 2.3rem);
}

.hero-metrics {
    margin-top: 0.82rem;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.52rem;
}

.hero-metrics li {
    border-radius: 14px;
    padding: 0.54rem 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.58);
    background:
        linear-gradient(150deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.2));
    display: grid;
    gap: 0.15rem;
}

.hero-metrics strong {
    font-size: 1.1rem;
    line-height: 1;
}

.hero-metrics span {
    font-size: 0.73rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(16, 17, 20, 0.68);
}

.hero-side-footer {
    margin-top: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    font-size: 0.78rem;
    color: rgba(16, 17, 20, 0.66);
}

.primary-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.36);
    border-radius: 999px;
    padding: 0.6rem 0.94rem;
    font-size: 0.9rem;
    font-weight: 800;
    color: #ffffff;
    background:
        linear-gradient(148deg, rgba(56, 91, 255, 0.82), rgba(35, 66, 212, 0.86));
    box-shadow:
        0 14px 30px rgba(36, 64, 190, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.42),
        inset 0 -1px 0 rgba(20, 36, 113, 0.4);
}

.primary-button span {
    width: 1.1rem;
    height: 1.1rem;
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.2);
}

.secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.58);
    border-radius: 999px;
    padding: 0.6rem 0.9rem;
    font-size: 0.89rem;
    font-weight: 700;
    color: rgba(16, 17, 20, 0.78);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.66), rgba(255, 255, 255, 0.22));
    backdrop-filter: blur(10px) saturate(130%);
    -webkit-backdrop-filter: blur(10px) saturate(130%);
}

.secondary-button:hover,
.secondary-button:focus-visible {
    border-color: rgba(255, 255, 255, 0.76);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.28));
    color: rgba(16, 17, 20, 0.9);
}

.project-row {
    margin-top: clamp(1rem, 3vw, 1.95rem);
    display: grid;
    gap: 0.8rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 84px;
    grid-auto-flow: dense;
}

.project-card {
    min-height: 0;
    border-radius: 26px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    isolation: isolate;
    box-shadow:
        0 18px 38px rgba(16, 17, 20, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.66);
}

.project-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 0;
}

.project-card::after {
    content: "";
    position: absolute;
    inset: -30% auto auto -10%;
    width: 70%;
    height: 72%;
    background:
        radial-gradient(circle at center, rgba(255, 255, 255, 0.42), transparent 66%);
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}

.project-card h3 {
    z-index: 1;
    color: #ffffff;
    font-size: clamp(1.3rem, 3.2vw, 1.8rem);
    line-height: 1.02;
}

.project-card p {
    margin-top: 0.34rem;
    color: rgba(255, 255, 255, 0.86);
    z-index: 1;
    font-size: 0.9rem;
    max-width: 28ch;
}

.size-wide {
    grid-column: span 2;
    grid-row: span 4;
}

.size-tall {
    grid-row: span 5;
}

.size-medium {
    grid-row: span 3;
}

.size-compact {
    grid-row: span 2;
}

.tone-1 {
    background:
        radial-gradient(circle at 78% 18%, rgba(189, 227, 255, 0.54), transparent 36%),
        radial-gradient(circle at 20% 80%, rgba(108, 180, 236, 0.62), transparent 34%),
        linear-gradient(155deg, #2f2e57 0%, #31457f 46%, #2f89af 100%);
}

.tone-2 {
    background:
        radial-gradient(circle at 18% 20%, rgba(255, 228, 170, 0.54), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 158, 144, 0.54), transparent 34%),
        linear-gradient(155deg, #40233f 0%, #6f3059 46%, #8a575d 100%);
}

.tone-3 {
    background:
        radial-gradient(circle at 28% 18%, rgba(229, 255, 220, 0.56), transparent 38%),
        radial-gradient(circle at 82% 80%, rgba(188, 255, 223, 0.46), transparent 36%),
        linear-gradient(155deg, #16332c 0%, #1e6655 48%, #3eb48d 100%);
}

.tone-4 {
    background:
        radial-gradient(circle at 18% 26%, rgba(255, 246, 188, 0.58), transparent 40%),
        radial-gradient(circle at 80% 82%, rgba(255, 200, 92, 0.34), transparent 36%),
        linear-gradient(155deg, #5e4914 0%, #92783c 46%, #c8ad65 100%);
}

.tone-5 {
    background:
        radial-gradient(circle at 78% 22%, rgba(222, 218, 255, 0.56), transparent 40%),
        radial-gradient(circle at 24% 76%, rgba(168, 144, 246, 0.5), transparent 36%),
        linear-gradient(160deg, #393155 0%, #5e4b8a 52%, #7d78b8 100%);
}

.tone-6 {
    background:
        radial-gradient(circle at 20% 18%, rgba(190, 255, 246, 0.6), transparent 36%),
        radial-gradient(circle at 82% 76%, rgba(135, 214, 255, 0.44), transparent 40%),
        linear-gradient(155deg, #1f4551 0%, #2f6d84 46%, #4a97b4 100%);
}

.page-hero {
    max-width: 740px;
}

.page-title {
    margin-top: 0.5rem;
    font-size: clamp(2.1rem, 7.2vw, 5rem);
    max-width: 10.8ch;
    color: #f5f8ff;
    text-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
}

.page-intro {
    margin-top: 0.7rem;
    color: rgba(227, 237, 255, 0.8);
    max-width: 56ch;
}

.page-hero .eyebrow {
    color: rgba(232, 240, 255, 0.7);
}

.card-grid {
    margin-top: 1rem;
    display: grid;
    gap: 0.72rem;
}

.info-card,
.faq-item,
.legal-item {
    border: var(--lash-border-subtle);
    border-radius: var(--lash-radius-card-small);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.26));
    box-shadow:
        0 12px 24px rgba(16, 17, 20, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.74);
    backdrop-filter: blur(12px) saturate(120%);
    -webkit-backdrop-filter: blur(12px) saturate(120%);
}

.info-card,
.legal-item {
    padding: 0.95rem;
}

.info-card h3,
.legal-item h3 {
    font-size: 1.28rem;
}

.info-card p,
.legal-item p {
    margin-top: 0.42rem;
    color: var(--muted);
}

.info-card ul {
    margin-top: 0.6rem;
    padding-left: 1.1rem;
    color: var(--muted);
}

.info-card li + li {
    margin-top: 0.26rem;
}

.faq-list {
    margin-top: 1rem;
    display: grid;
    gap: 0.64rem;
}

.faq-item {
    padding: 0 0.95rem;
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    padding: 0.82rem 0;
    font-family: "Poppins", sans-serif;
    font-size: 1.26rem;
}

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

.faq-item summary::after {
    content: "+";
    width: 1.4rem;
    height: 1.4rem;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    font-family: "Poppins", sans-serif;
    font-size: 0.96rem;
    background: rgba(56, 91, 255, 0.16);
    color: #20358d;
}

.faq-item[open] summary::after {
    content: "-";
}

.faq-item p {
    padding: 0 0 0.82rem;
    color: var(--muted);
}

.contact-actions {
    margin-top: 0.92rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.56rem;
}

.contact-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: var(--lash-border-subtle);
    border-radius: 999px;
    padding: 0.54rem 0.84rem;
    font-size: 0.86rem;
    font-weight: 700;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.24));
}

.contact-pill:hover,
.contact-pill:focus-visible {
    border-color: rgba(56, 91, 255, 0.5);
    background: rgba(56, 91, 255, 0.12);
}

.legal-list {
    margin-top: 1rem;
    display: grid;
    gap: 0.64rem;
}

.legal-document {
    margin-top: clamp(1rem, 2vw, 1.5rem);
    display: grid;
    gap: clamp(0.75rem, 1.3vw, 1rem);
}

.legal-summary {
    border: var(--lash-border-subtle);
    border-radius: var(--lash-radius-card-small);
    padding: clamp(1rem, 2vw, 1.4rem);
    background: color-mix(in srgb, var(--lash-color-accent-surface) 42%, transparent);
    color: var(--lash-color-content-secondary);
    box-shadow:
        var(--lash-shadow-control-floating),
        inset 0 1px 0 rgb(255 255 255 / 0.08);
}

.legal-summary p,
.legal-item p,
.legal-item li {
    font-family: var(--lash-font-family);
    line-height: var(--lash-line-height-body);
}

.legal-summary p + p,
.legal-item p + p,
.legal-item ul + p,
.legal-item p + ul,
.legal-item h3 + ul {
    margin-top: 0.75rem;
}

.legal-item h2 {
    color: var(--lash-color-content-primary);
    font-family: var(--lash-font-family);
    font-size: clamp(1.12rem, 1.5vw, 1.42rem);
    font-weight: var(--lash-font-weight-title);
    line-height: 1.18;
}

.legal-item h3 {
    margin-top: 1rem;
    color: var(--lash-color-content-primary);
    font-family: var(--lash-font-family);
    font-size: 0.95rem;
    font-weight: var(--lash-font-weight-title);
    line-height: 1.25;
}

.legal-list-rich {
    padding-left: 1.15rem;
    color: var(--lash-color-content-secondary);
}

.legal-list-rich li + li {
    margin-top: 0.4rem;
}

.legal-document a {
    color: var(--lash-color-content-primary);
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

.legal-contact-card {
    border-color: color-mix(in srgb, var(--lash-color-accent-primary) 44%, transparent);
}

.panel-footer {
    border-top: 0;
    padding: 0.95rem 0;
    background: linear-gradient(180deg, rgba(2, 8, 28, 0.08), rgba(2, 8, 28, 0.2));
    position: relative;
    z-index: 1;
}

.footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 0.6rem;
}

.footer-links {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.68rem;
}

.footer-links a,
.footer-copy {
    color: rgba(235, 243, 255, 0.72);
    font-size: 0.84rem;
    font-weight: 700;
    white-space: nowrap;
}

.footer-copy {
    margin-left: auto;
}

.footer-links a:hover {
    color: #ffffff;
}

.home-footer {
    position: relative;
    z-index: 2;
    padding: 0 0 clamp(var(--lash-space-5), 4vw, var(--lash-space-7));
    background: #000000;
}

.home-footer .panel-inner {
    width: min(1568px, calc(100% - clamp(2rem, 9.26vw, 10rem)));
}

.home-footer .footer-row {
    padding-top: var(--lash-space-4);
    border-top: 0;
}

.home-footer .footer-links a,
.home-footer .footer-copy {
    color: var(--lash-color-content-secondary);
    font-family: var(--lash-font-family);
    font-size: var(--lash-font-size-caption);
    font-weight: var(--lash-font-weight-detail-label);
}

.home-footer .footer-links a:hover,
.home-footer .footer-links a:focus-visible {
    color: var(--lash-color-content-primary);
}

.page-about,
.page-features,
.page-contact {
    min-height: 100vh;
    padding: 0;
    color: var(--lash-color-content-primary);
    background: #000000;
}

.page-about::before,
.page-about::after,
.page-features::before,
.page-features::after,
.page-contact::before,
.page-contact::after {
    content: none;
}

.page-about .site-shell,
.page-features .site-shell,
.page-contact .site-shell {
    width: 100%;
    min-height: 100vh;
    min-height: 100svh;
    margin: 0;
    border: 0;
    background: #000000;
    box-shadow: none;
    overflow: visible;
}

.page-about .site-shell::before,
.page-features .site-shell::before,
.page-contact .site-shell::before {
    content: none;
}

.page-about .panel-main,
.page-features .panel-main,
.page-contact .panel-main {
    width: min(1568px, calc(100% - clamp(2rem, 9.26vw, 10rem)));
    padding: clamp(5rem, 12vh, 8rem) 0 clamp(var(--lash-space-7), 8vw, 7rem);
}

.page-about .page-title,
.page-features .page-title,
.page-contact .page-title {
    color: var(--lash-color-content-primary);
    font-family: var(--lash-font-family);
    font-weight: var(--lash-font-weight-screen-title);
    text-shadow: none;
}

.page-about .page-intro,
.page-features .page-intro,
.page-contact .page-intro {
    color: var(--lash-color-content-secondary);
    font-family: var(--lash-font-family);
    font-size: var(--lash-font-size-body);
    font-weight: var(--lash-font-weight-body);
    line-height: var(--lash-line-height-body);
}

.page-about .page-hero .eyebrow,
.page-features .page-hero .eyebrow,
.page-contact .page-hero .eyebrow {
    color: var(--lash-color-content-tertiary);
}

.page-about .info-card,
.page-features .info-card {
    border: var(--lash-border-subtle);
    border-radius: var(--lash-radius-card-small);
    background: rgba(18, 18, 18, 0.72);
    background: color-mix(in srgb, var(--lash-color-surface-primary) 72%, transparent);
    box-shadow:
        var(--lash-shadow-control-floating),
        inset 0 1px 0 rgb(255 255 255 / 0.08);
}

.page-about .info-card h3,
.page-features .info-card h3 {
    color: var(--lash-color-content-primary);
    font-family: var(--lash-font-family);
    font-size: var(--lash-font-size-section-title);
    font-weight: var(--lash-font-weight-title);
}

.page-about .info-card p,
.page-features .info-card p,
.page-features .info-card li {
    color: var(--lash-color-content-secondary);
    font-size: var(--lash-font-size-caption);
    font-weight: var(--lash-font-weight-body);
    line-height: var(--lash-line-height-body);
}

.page-about .about-main {
    display: grid;
    gap: 1rem;
}

.about-hero {
    max-width: 64rem;
}

.page-about .about-hero .page-title {
    max-width: 12ch;
    font-size: clamp(3rem, 6.2vw, 7rem);
    line-height: 0.96;
}

.page-about .about-hero .page-intro {
    max-width: 58ch;
    font-size: clamp(1rem, 1.25vw, 1.18rem);
}

.about-story-section {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(18rem, 0.65fr);
    gap: clamp(var(--lash-space-4), 2vw, var(--lash-space-5));
}

.about-story-card {
    border: var(--lash-border-subtle);
    border-radius: var(--lash-radius-card-small);
    background: color-mix(in srgb, var(--lash-color-surface-primary) 72%, transparent);
    box-shadow:
        var(--lash-shadow-control-floating),
        inset 0 1px 0 rgb(255 255 255 / 0.08);
}

.about-story-card {
    padding: clamp(var(--lash-space-5), 3vw, var(--lash-space-7));
}

.about-story-card h2 {
    color: var(--lash-color-content-primary);
    font-family: var(--lash-font-family);
    font-weight: var(--lash-font-weight-title);
    line-height: var(--lash-line-height-title);
}

.about-story-card h2 {
    margin-top: var(--lash-space-2);
    max-width: 18ch;
    font-size: clamp(2rem, 3.9vw, 4.4rem);
}

.about-founder-card h2 {
    font-size: clamp(1.75rem, 2.7vw, 3rem);
}

.about-story-card p:not(.eyebrow) {
    color: var(--lash-color-content-secondary);
    font-family: var(--lash-font-family);
    font-size: var(--lash-font-size-body);
    font-weight: var(--lash-font-weight-body);
    line-height: var(--lash-line-height-body);
}

.about-story-card p:not(.eyebrow) {
    margin-top: var(--lash-space-4);
    max-width: 68ch;
}

.page-contact .contact-pill {
    border: var(--lash-border-subtle);
    border-radius: var(--lash-radius-pill);
    color: var(--lash-color-content-primary);
    background: rgba(18, 18, 18, 0.72);
    background: color-mix(in srgb, var(--lash-color-surface-primary) 72%, transparent);
    box-shadow: var(--lash-shadow-control-floating);
}

.page-contact .contact-pill:hover,
.page-contact .contact-pill:focus-visible {
    border-color: var(--lash-color-accent-border);
    background: var(--lash-color-accent-surface);
}

.feature-detail-grid {
    margin-top: clamp(var(--lash-space-5), 4vw, var(--lash-space-7));
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(var(--lash-space-4), 2vw, var(--lash-space-5));
}

.feature-detail-card {
    min-height: 17rem;
    padding: clamp(var(--lash-space-4), 2vw, var(--lash-space-5));
}

.feature-detail-card .feature-card-label {
    margin-top: 0;
}

.feature-detail-card h3 {
    margin-top: var(--lash-space-2);
}

.feature-detail-card > p:not(.feature-card-label) {
    max-width: 42ch;
}

.feature-detail-card ul {
    margin-top: var(--lash-space-5);
    padding-left: 0;
    list-style: none;
    display: grid;
    gap: var(--lash-space-2);
}

.feature-detail-card li {
    display: flex;
    align-items: center;
    gap: var(--lash-space-2);
}

.feature-detail-card li::before {
    content: "";
    flex: 0 0 6px;
    width: 6px;
    height: 6px;
    border-radius: var(--lash-radius-pill);
    background: var(--lash-color-accent-primary);
}

.page-features .features-main {
    padding-top: clamp(4.75rem, 10vh, 7.5rem);
}

.features-hero {
    min-height: auto;
}

.features-hero-copy {
    max-width: 58rem;
}

.page-features .features-hero .page-title {
    max-width: 10.8ch;
    font-size: clamp(3rem, 6.2vw, 7rem);
    line-height: 0.96;
}

.page-features .features-hero .page-intro {
    max-width: 54ch;
    font-size: clamp(1rem, 1.25vw, 1.18rem);
}

.feature-explainer-section {
    margin-top: 1rem;
}

.feature-explainer-copy {
    max-width: 54rem;
}

.feature-explainer-copy h2 {
    margin-top: var(--lash-space-2);
    max-width: 12ch;
    color: var(--lash-color-content-primary);
    font-family: var(--lash-font-family);
    font-size: clamp(2rem, 4.5vw, 4.75rem);
    font-weight: var(--lash-font-weight-screen-title);
    line-height: 0.98;
    letter-spacing: 0;
}

.feature-explainer-copy p:not(.eyebrow) {
    margin-top: var(--lash-space-4);
    max-width: 60ch;
    color: var(--lash-color-content-secondary);
    font-family: var(--lash-font-family);
    font-size: var(--lash-font-size-body);
    font-weight: var(--lash-font-weight-body);
    line-height: var(--lash-line-height-body);
}

.feature-explainer-grid {
    --feature-masonry-gap: clamp(var(--lash-space-4), 2vw, var(--lash-space-5));
    margin-top: clamp(var(--lash-space-5), 4vw, var(--lash-space-7));
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
    gap: var(--feature-masonry-gap);
}

.feature-masonry-section .feature-explainer-grid {
    margin-top: 0;
}

.feature-masonry-column {
    min-width: 0;
    display: grid;
    align-content: start;
    gap: var(--feature-masonry-gap);
}

.feature-masonry-column:nth-child(2) {
    padding-top: clamp(var(--lash-space-5), 5vw, var(--lash-space-7));
}

.feature-masonry-column:nth-child(3) {
    padding-top: clamp(var(--lash-space-3), 2.5vw, var(--lash-space-5));
}

.feature-explainer-card {
    min-height: 14rem;
    border: var(--lash-border-subtle);
    border-radius: var(--lash-radius-card-small);
    padding: clamp(var(--lash-space-4), 2vw, var(--lash-space-5));
    background: color-mix(in srgb, var(--lash-color-surface-primary) 72%, transparent);
    box-shadow:
        var(--lash-shadow-control-floating),
        inset 0 1px 0 rgb(255 255 255 / 0.08);
    display: flex;
    flex-direction: column;
}

.feature-explainer-card-photo {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    border: 0;
    background: #111111;
    box-shadow: none;
}

.feature-card-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: block;
    overflow: hidden;
}

.feature-card-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: var(--feature-card-photo-position, center);
}

.feature-explainer-card-photo::before,
.feature-explainer-card-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.feature-explainer-card-photo::before {
    background: rgb(0 0 0 / 0.26);
}

.feature-explainer-card-photo::after {
    background: linear-gradient(180deg, rgb(0 0 0 / 0.08) 0%, rgb(0 0 0 / 0.38) 50%, rgb(0 0 0 / 0.84) 100%);
}

.feature-explainer-card-photo > :not(.feature-card-media) {
    position: relative;
    z-index: 2;
}

.feature-photo-discover {
    --feature-card-photo-position: center;
}

.feature-photo-feed {
    --feature-card-photo-position: center;
}

.feature-photo-travelcards {
    --feature-card-photo-position: center 58%;
}

.feature-photo-save {
    --feature-card-photo-position: center;
}

.feature-photo-comments {
    --feature-card-photo-position: center 58%;
}

.feature-photo-details {
    --feature-card-photo-position: center;
}

.feature-photo-profiles {
    --feature-card-photo-position: center 42%;
}

.feature-explainer-card-photo .feature-card-label,
.feature-explainer-card-photo h3,
.feature-explainer-card-photo p,
.feature-explainer-card-photo .feature-card-points li {
    color: #ffffff;
    text-shadow: 0 2px 14px rgb(0 0 0 / 0.48);
}

.feature-explainer-card-photo .feature-card-label,
.feature-explainer-card-photo .feature-card-points li {
    color: rgb(255 255 255 / 0.82);
}

.feature-explainer-card-tall {
    min-height: clamp(24rem, 31vw, 31rem);
}

.feature-explainer-card-medium {
    min-height: clamp(17rem, 21vw, 22rem);
}

.feature-explainer-card-compact {
    min-height: clamp(14rem, 17vw, 18rem);
}

.feature-explainer-card h3 {
    margin-top: var(--lash-space-2);
    color: var(--lash-color-content-primary);
    font-family: var(--lash-font-family);
    font-size: var(--lash-font-size-section-title);
    font-weight: var(--lash-font-weight-title);
    line-height: var(--lash-line-height-title);
}

.feature-explainer-card p:not(.feature-card-label) {
    margin-top: var(--lash-space-3);
    color: var(--lash-color-content-secondary);
    font-family: var(--lash-font-family);
    font-size: var(--lash-font-size-caption);
    font-weight: var(--lash-font-weight-body);
    line-height: var(--lash-line-height-body);
}

.feature-card-points {
    margin-top: auto;
    padding-top: var(--lash-space-5);
    list-style: none;
    display: grid;
    gap: var(--lash-space-2);
}

.feature-card-points li {
    display: flex;
    gap: var(--lash-space-2);
    color: var(--lash-color-content-secondary);
    font-family: var(--lash-font-family);
    font-size: var(--lash-font-size-caption);
    font-weight: var(--lash-font-weight-detail-label);
    line-height: var(--lash-line-height-title);
}

.feature-card-points li::before {
    content: "";
    flex: 0 0 6px;
    width: 6px;
    height: 6px;
    margin-top: 0.38em;
    border-radius: var(--lash-radius-pill);
    background: var(--lash-color-accent-primary);
}

.page-about .panel-footer,
.page-features .panel-footer,
.page-contact .panel-footer {
    padding: 0 0 clamp(var(--lash-space-5), 4vw, var(--lash-space-7));
    border-top: 0;
    background: #000000;
}

.page-about .panel-footer .panel-inner,
.page-features .panel-footer .panel-inner,
.page-contact .panel-footer .panel-inner {
    width: min(1568px, calc(100% - clamp(2rem, 9.26vw, 10rem)));
}

.page-about .panel-footer .footer-row,
.page-features .panel-footer .footer-row,
.page-contact .panel-footer .footer-row {
    padding-top: var(--lash-space-4);
    border-top: 0;
}

.page-about .footer-links a,
.page-about .footer-copy,
.page-features .footer-links a,
.page-features .footer-copy,
.page-contact .footer-links a,
.page-contact .footer-copy {
    color: var(--lash-color-content-secondary);
    font-family: var(--lash-font-family);
    font-size: var(--lash-font-size-caption);
    font-weight: var(--lash-font-weight-detail-label);
}

.page-faq,
.page-privacy,
.page-terms {
    min-height: 100vh;
    padding: 0;
    color: var(--lash-color-content-primary);
    background: #000000;
}

.page-faq::before,
.page-faq::after,
.page-privacy::before,
.page-privacy::after,
.page-terms::before,
.page-terms::after {
    content: none;
}

.page-faq .site-shell,
.page-privacy .site-shell,
.page-terms .site-shell {
    width: 100%;
    min-height: 100vh;
    min-height: 100svh;
    margin: 0;
    border: 0;
    background: #000000;
    box-shadow: none;
    overflow: visible;
}

.page-faq .site-shell::before,
.page-privacy .site-shell::before,
.page-terms .site-shell::before {
    content: none;
}

.page-faq .panel-main,
.page-privacy .panel-main,
.page-terms .panel-main {
    width: min(1568px, calc(100% - clamp(2rem, 9.26vw, 10rem)));
    padding: clamp(5rem, 12vh, 8rem) 0 clamp(var(--lash-space-7), 8vw, 7rem);
}

.page-faq .page-title,
.page-privacy .page-title,
.page-terms .page-title {
    color: var(--lash-color-content-primary);
    font-family: var(--lash-font-family);
    font-weight: var(--lash-font-weight-screen-title);
    text-shadow: none;
}

.page-faq .page-intro,
.page-privacy .page-intro,
.page-terms .page-intro {
    color: var(--lash-color-content-secondary);
    font-family: var(--lash-font-family);
    font-size: var(--lash-font-size-body);
    font-weight: var(--lash-font-weight-body);
    line-height: var(--lash-line-height-body);
}

.page-faq .page-hero .eyebrow,
.page-privacy .page-hero .eyebrow,
.page-terms .page-hero .eyebrow {
    color: var(--lash-color-content-tertiary);
}

.page-faq .faq-item,
.page-privacy .legal-item,
.page-terms .legal-item {
    border: var(--lash-border-subtle);
    border-radius: var(--lash-radius-card-small);
    background: rgba(18, 18, 18, 0.72);
    background: color-mix(in srgb, var(--lash-color-surface-primary) 72%, transparent);
    box-shadow:
        var(--lash-shadow-control-floating),
        inset 0 1px 0 rgb(255 255 255 / 0.08);
}

.page-faq .faq-item summary,
.page-privacy .legal-item h3,
.page-terms .legal-item h3 {
    color: var(--lash-color-content-primary);
    font-family: var(--lash-font-family);
    font-size: var(--lash-font-size-section-title);
    font-weight: var(--lash-font-weight-title);
}

.page-faq .faq-item p,
.page-privacy .legal-item p,
.page-terms .legal-item p {
    color: var(--lash-color-content-secondary);
    font-size: var(--lash-font-size-caption);
    font-weight: var(--lash-font-weight-body);
    line-height: var(--lash-line-height-body);
}

.page-faq .faq-item a {
    color: var(--lash-color-accent-primary);
    font-weight: var(--lash-font-weight-title);
    text-decoration: underline;
    text-underline-offset: 0.16em;
}

.page-faq .faq-item summary::after {
    background: var(--lash-color-accent-surface);
    color: var(--lash-color-accent-primary);
}

.page-faq .panel-footer,
.page-privacy .panel-footer,
.page-terms .panel-footer {
    padding: 0 0 clamp(var(--lash-space-5), 4vw, var(--lash-space-7));
    border-top: 0;
    background: #000000;
}

.page-faq .panel-footer .panel-inner,
.page-privacy .panel-footer .panel-inner,
.page-terms .panel-footer .panel-inner {
    width: min(1568px, calc(100% - clamp(2rem, 9.26vw, 10rem)));
}

.page-faq .panel-footer .footer-row,
.page-privacy .panel-footer .footer-row,
.page-terms .panel-footer .footer-row {
    padding-top: var(--lash-space-4);
    border-top: 0;
}

.page-faq .footer-links a,
.page-faq .footer-copy,
.page-privacy .footer-links a,
.page-privacy .footer-copy,
.page-terms .footer-links a,
.page-terms .footer-copy {
    color: var(--lash-color-content-secondary);
    font-family: var(--lash-font-family);
    font-size: var(--lash-font-size-caption);
    font-weight: var(--lash-font-weight-detail-label);
}

.page-privacy .legal-document .legal-item,
.page-terms .legal-document .legal-item {
    border: 0;
    border-bottom: 1px solid rgb(255 255 255 / 0.12);
    border-radius: 0;
    padding: clamp(1rem, 2vw, 1.45rem);
    background: transparent;
    box-shadow: none;
}

.page-privacy .legal-document .legal-item:first-of-type,
.page-terms .legal-document .legal-item:first-of-type {
    padding-top: clamp(0.5rem, 1vw, 0.75rem);
}

.page-privacy .legal-document .legal-item:hover,
.page-terms .legal-document .legal-item:hover {
    transform: none;
}

.page-privacy .legal-document .legal-item h2,
.page-terms .legal-document .legal-item h2 {
    color: var(--lash-color-content-primary);
    font-family: var(--lash-font-family);
    font-size: clamp(1.12rem, 1.5vw, 1.42rem);
    font-weight: var(--lash-font-weight-title);
    line-height: 1.18;
}

.page-privacy .legal-document .legal-item h3,
.page-terms .legal-document .legal-item h3 {
    margin-top: 1rem;
    color: var(--lash-color-content-primary);
    font-family: var(--lash-font-family);
    font-size: 0.95rem;
    font-weight: var(--lash-font-weight-title);
    line-height: 1.25;
}

.page-privacy .legal-document .legal-item p,
.page-privacy .legal-document .legal-item li,
.page-terms .legal-document .legal-item p,
.page-terms .legal-document .legal-item li {
    color: var(--lash-color-content-secondary);
    font-size: var(--lash-font-size-body);
    font-weight: var(--lash-font-weight-body);
    line-height: var(--lash-line-height-body);
}

.page-privacy .legal-document .legal-contact-card,
.page-terms .legal-document .legal-contact-card {
    border: var(--lash-border-subtle);
    border-color: color-mix(in srgb, var(--lash-color-accent-primary) 44%, transparent);
    border-radius: var(--lash-radius-card-small);
    padding: clamp(1rem, 2vw, 1.45rem);
    background: color-mix(in srgb, var(--lash-color-surface-primary) 72%, transparent);
    box-shadow:
        var(--lash-shadow-control-floating),
        inset 0 1px 0 rgb(255 255 255 / 0.08);
}

@media (min-width: 860px) {
    .hero-layout {
        grid-template-columns: minmax(0, 1.22fr) minmax(330px, 0.78fr);
    }

    .project-row {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        grid-auto-rows: 76px;
    }

    .size-wide {
        grid-column: span 2;
        grid-row: span 5;
    }

    .size-tall {
        grid-column: span 1;
        grid-row: span 5;
    }

    .size-medium {
        grid-column: span 1;
        grid-row: span 4;
    }

    .size-compact {
        grid-column: span 1;
        grid-row: span 3;
    }

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

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

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

    .hero-side {
        max-width: 460px;
    }

    .project-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 78px;
    }

    .size-wide {
        grid-column: span 2;
        grid-row: span 4;
    }

    .size-tall {
        grid-row: span 4;
    }

    .size-medium {
        grid-row: span 3;
    }

    .size-compact {
        grid-row: span 2;
    }

    .feature-detail-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    body {
        padding: 0.52rem;
    }

    .page-home {
        padding: 0;
    }

    .site-shell {
        min-height: calc(100vh - 1.04rem);
        border-radius: 22px;
    }

    .panel-inner,
    .panel-main {
        width: calc(100% - 1.3rem);
    }

    .header-row {
        flex-wrap: wrap;
        gap: 0.72rem;
    }

    .site-nav {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 0.7rem 1rem;
    }

    .nav-link {
        flex: 0 0 auto;
        text-align: left;
    }

    .nav-cta {
        width: auto;
    }

    .content-header .header-row {
        grid-template-columns: 1fr auto;
        grid-template-areas:
            "brand store"
            "nav nav";
        row-gap: 0.9rem;
    }

    .content-header .brand {
        grid-area: brand;
    }

    .content-header .brand-logo-svg {
        width: clamp(94px, 29vw, 118px);
    }

    .content-header .site-nav {
        grid-area: nav;
        width: 100%;
        justify-content: space-between;
        gap: 0.5rem;
    }

    .content-header .nav-link {
        font-size: clamp(0.68rem, 3.1vw, 0.78rem);
    }

    .content-header .app-store-link {
        grid-area: store;
        width: clamp(94px, 29vw, 112px);
    }

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

    .project-row {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    .project-card,
    .size-wide,
    .size-tall,
    .size-medium,
    .size-compact {
        grid-column: auto;
        grid-row: auto;
        min-height: 208px;
    }

    .footer-row {
        justify-content: space-between;
        text-align: left;
    }

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

@media (prefers-reduced-motion: no-preference) {
    .nav-link,
    .nav-cta,
    .primary-button,
    .secondary-button,
    .project-card,
    .info-card,
    .feature-explainer-card,
    .faq-item,
    .legal-item,
    .contact-pill {
        transition:
            transform 0.2s ease,
            background-color 0.2s ease,
            border-color 0.2s ease,
            box-shadow 0.2s ease;
    }

    .nav-link:hover,
    .nav-cta:hover,
    .primary-button:hover,
    .secondary-button:hover,
    .contact-pill:hover {
        transform: translateY(-1px);
    }

    .project-card:hover,
    .info-card:hover,
    .feature-explainer-card:hover,
    .legal-item:hover {
        transform: translateY(-3px);
    }
}

/* Responsive landing page */
.page-home {
    color: #ffffff;
    overflow-x: hidden;
    background: #000000;
}

.page-home::before {
    content: none;
}

.page-home::after {
    content: none;
}

.home-shell {
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    position: relative;
    isolation: isolate;
}

.home-header {
    position: absolute;
    inset: 0 0 auto;
    z-index: 3;
    padding: clamp(1rem, 3.58vh, 2.5rem) 0 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.home-header .panel-inner,
.home-hero-inner,
.feature-strip-grid {
    width: min(1568px, calc(100% - clamp(2rem, 9.26vw, 10rem)));
}

.home-header .header-row {
    display: grid;
    grid-template-columns: minmax(110px, 1fr) auto minmax(110px, 1fr);
    align-items: center;
    gap: clamp(1rem, 3vw, 3.5rem);
}

.home-header .brand {
    justify-self: start;
}

.home-header .brand-logo-svg {
    width: clamp(118px, 10.76vw, 186px);
}

.home-header .site-nav {
    justify-self: center;
    gap: clamp(2.2rem, 5.21vw, 5.5rem);
}

.home-header .nav-link,
.home-header .nav-link.is-active {
    color: #ffffff;
}

.home-header .nav-link {
    font-size: clamp(0.9rem, 1.389vw, 1.5rem);
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
    opacity: 0.88;
}

.home-header .nav-link:hover,
.home-header .nav-link:focus-visible {
    opacity: 1;
}

.app-store-link {
    width: clamp(76px, 6.48vw, 112px);
    display: inline-flex;
    justify-self: end;
    border-radius: 7px;
}

.app-store-link:focus-visible {
    outline: 1px solid rgba(255, 255, 255, 0.8);
    outline-offset: 5px;
}

.app-store-badge {
    width: 100%;
    height: auto;
    filter:
        invert(1)
        drop-shadow(0 10px 24px rgba(0, 0, 0, 0.34));
}

.home-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding: 0;
    position: relative;
    z-index: 1;
}

.home-hero {
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: flex-end;
    position: relative;
    overflow: hidden;
    padding-bottom: clamp(12rem, 28.3vh, 20rem);
    background: #000000;
}

.home-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 32%;
    background:
        linear-gradient(180deg,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0) 22%,
            rgba(0, 0, 0, 0.36) 62%,
            rgba(0, 0, 0, 0.82) 86%,
            #000000 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 66%;
    pointer-events: none;
    z-index: 0;
}

.home-hero-inner {
    margin-inline: auto;
    position: relative;
    z-index: 2;
}

.home-title {
    max-width: 15ch;
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    font-size: clamp(2.45rem, 5.1vw, 5.4rem);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: 0;
    text-shadow: 0 0.35rem 1.8rem rgba(0, 0, 0, 0.72);
}

.home-feature-strip {
    position: relative;
    z-index: 2;
    padding: 0 0 clamp(1.4rem, 4vw, 3.5rem);
}

.feature-strip-grid {
    margin-inline: auto;
}

.home-next-panel {
    border: var(--lash-border-subtle);
    border-radius: var(--lash-radius-card-small);
    padding: clamp(var(--lash-space-4), 2vw, var(--lash-space-5));
    background: color-mix(in srgb, var(--lash-color-surface-primary) 72%, transparent);
    box-shadow:
        var(--lash-shadow-control-floating),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px) saturate(120%);
    -webkit-backdrop-filter: blur(14px) saturate(120%);
    display: grid;
    grid-template-columns: minmax(16rem, 0.8fr) minmax(0, 1.2fr);
    gap: clamp(var(--lash-space-4), 2vw, var(--lash-space-5));
    align-items: stretch;
}

.feature-card-label {
    color: var(--lash-color-content-tertiary);
    font-family: var(--lash-font-family);
    font-size: var(--lash-font-size-detail-label);
    font-weight: var(--lash-font-weight-detail-label);
    line-height: var(--lash-line-height-title);
    text-transform: uppercase;
}

.home-next-copy h2 {
    margin-top: var(--lash-space-2);
    max-width: 14ch;
    color: var(--lash-color-content-primary);
    font-family: var(--lash-font-family);
    font-size: clamp(2rem, 4.2vw, 4.6rem);
    font-weight: var(--lash-font-weight-screen-title);
    line-height: 0.98;
    letter-spacing: 0;
}

.home-next-copy p:not(.feature-card-label) {
    margin-top: var(--lash-space-4);
    max-width: 42ch;
    color: var(--lash-color-content-secondary);
    font-family: var(--lash-font-family);
    font-size: var(--lash-font-size-body);
    font-weight: var(--lash-font-weight-body);
    line-height: var(--lash-line-height-body);
}

.home-next-actions {
    display: grid;
    gap: var(--lash-space-3);
}

.home-next-link {
    min-height: 8rem;
    border: 1px solid rgb(255 255 255 / 0.16);
    border-radius: var(--lash-radius-card-small);
    padding: clamp(var(--lash-space-4), 1.6vw, var(--lash-space-5));
    background: rgb(255 255 255 / 0.035);
    display: grid;
    align-content: start;
}

.home-next-link span,
.home-next-link strong,
.home-next-link small {
    font-family: var(--lash-font-family);
    line-height: var(--lash-line-height-title);
}

.home-next-link span {
    color: var(--lash-color-content-tertiary);
    font-size: var(--lash-font-size-detail-label);
    font-weight: var(--lash-font-weight-detail-label);
    text-transform: uppercase;
}

.home-next-link strong {
    margin-top: var(--lash-space-2);
    color: var(--lash-color-content-primary);
    font-size: clamp(1.25rem, 2vw, 2rem);
    font-weight: var(--lash-font-weight-title);
}

.home-next-link small {
    margin-top: var(--lash-space-2);
    max-width: 48ch;
    color: var(--lash-color-content-secondary);
    font-size: var(--lash-font-size-caption);
    font-weight: var(--lash-font-weight-body);
    line-height: var(--lash-line-height-body);
}

@media (max-width: 960px) {
    .content-header .panel-inner,
    .home-header .panel-inner,
    .home-hero-inner,
    .feature-strip-grid {
        width: calc(100% - 2rem);
    }

    .content-header .header-row,
    .home-header .header-row {
        grid-template-columns: minmax(82px, 0.7fr) minmax(0, 1fr) minmax(92px, 0.7fr);
        gap: 1rem;
    }

    .content-header .site-nav,
    .home-header .site-nav {
        gap: clamp(1rem, 3vw, 2rem);
    }

    .home-title {
        font-size: clamp(2.65rem, 7.8vw, 4.5rem);
    }
}

@media (max-width: 1080px) {
    .feature-explainer-grid {
        display: block;
        columns: 2;
        column-gap: var(--feature-masonry-gap);
    }

    .feature-masonry-column {
        display: contents;
    }

    .feature-masonry-column:nth-child(2),
    .feature-masonry-column:nth-child(3) {
        padding-top: 0;
    }

    .feature-explainer-card {
        break-inside: avoid;
        margin-bottom: var(--feature-masonry-gap);
    }
}

@media (max-width: 1080px) {
    .about-story-section {
        grid-template-columns: 1fr;
    }

    .about-founder-card h2 {
        max-width: 16ch;
    }
}

@media (min-width: 1100px) {
    .home-title {
        max-width: 24ch;
        font-size: clamp(3.6rem, 4.5vw, 4.85rem);
    }
}

@media (max-width: 720px) {
    .content-header,
    .home-header {
        padding: 1rem 0 0.75rem;
    }

    .content-header .panel-inner,
    .home-header .panel-inner,
    .home-footer .panel-inner,
    .page-about .panel-footer .panel-inner,
    .page-features .panel-footer .panel-inner,
    .page-contact .panel-footer .panel-inner,
    .page-faq .panel-footer .panel-inner,
    .page-privacy .panel-footer .panel-inner,
    .page-terms .panel-footer .panel-inner,
    .home-hero-inner,
    .feature-strip-grid {
        width: calc(100% - clamp(2rem, 7vw, 2.75rem));
    }

    .content-header .header-row,
    .home-header .header-row {
        grid-template-columns: 1fr auto;
        grid-template-areas:
            "brand store"
            "nav nav";
        row-gap: 0.9rem;
    }

    .content-header .brand,
    .home-header .brand {
        grid-area: brand;
    }

    .content-header .brand-logo-svg,
    .home-header .brand-logo-svg {
        width: clamp(94px, 29vw, 118px);
    }

    .content-header .site-nav,
    .home-header .site-nav {
        grid-area: nav;
        width: 100%;
        justify-content: space-between;
        gap: 0.5rem;
    }

    .content-header .nav-link,
    .home-header .nav-link {
        font-size: clamp(0.68rem, 3.1vw, 0.78rem);
    }

    .app-store-link {
        grid-area: store;
        width: clamp(94px, 29vw, 112px);
    }

    .home-hero {
        min-height: 100vh;
        min-height: 100svh;
        padding-bottom: clamp(3rem, 9vh, 5rem);
    }

    .hero-background {
        object-position: center 66%;
    }

    .home-title {
        max-width: 11ch;
        font-size: clamp(2.3rem, 12.8vw, 3.9rem);
        line-height: 1.02;
    }

    .home-next-panel {
        grid-template-columns: 1fr;
    }

    .home-next-link {
        min-height: auto;
    }

    .feature-explainer-grid {
        --feature-masonry-gap: var(--lash-space-3);
        columns: 1;
    }

    .feature-masonry-column:nth-child(2),
    .feature-masonry-column:nth-child(3) {
        padding-top: 0;
    }

    .feature-explainer-card,
    .feature-explainer-card-tall,
    .feature-explainer-card-medium,
    .feature-explainer-card-compact {
        min-height: auto;
    }

    .page-features .features-main {
        width: calc(100% - clamp(2rem, 7vw, 2.75rem));
        padding-top: clamp(4.25rem, 10vh, 6rem);
    }

    .page-features .features-hero .page-title {
        font-size: clamp(2.55rem, 13vw, 4rem);
        max-width: 9.8ch;
    }

    .page-about .about-hero .page-title {
        font-size: clamp(2.55rem, 13vw, 4rem);
        max-width: 10.5ch;
    }

    .about-story-card {
        padding: clamp(var(--lash-space-4), 7vw, var(--lash-space-6));
    }

    .about-story-card h2 {
        font-size: clamp(2rem, 10.5vw, 3.4rem);
    }

    .feature-explainer-card {
        padding: clamp(var(--lash-space-3), 4.8vw, var(--lash-space-4));
    }

    .feature-explainer-card h3 {
        font-size: clamp(1.18rem, 5.8vw, 1.45rem);
    }

    .feature-explainer-card p:not(.feature-card-label),
    .feature-card-points li {
        font-size: clamp(0.72rem, 3.45vw, 0.86rem);
    }

    .feature-card-points {
        padding-top: var(--lash-space-4);
    }

    .footer-row {
        justify-content: space-between;
        text-align: left;
    }

    .footer-links {
        justify-content: flex-start;
        gap: clamp(0.58rem, 2.6vw, 0.75rem);
    }

    .footer-copy {
        text-align: right;
    }
}

@media (min-width: 561px) and (max-width: 720px) {
    .feature-explainer-grid {
        columns: 2;
    }

    .feature-explainer-card-tall {
        min-height: 23rem;
    }

    .feature-explainer-card-medium {
        min-height: 16rem;
    }

    .feature-explainer-card-compact {
        min-height: 13.5rem;
    }
}

@media (max-width: 390px) {
    .content-header .site-nav,
    .home-header .site-nav {
        gap: 0.35rem;
    }

    .content-header .nav-link,
    .home-header .nav-link {
        font-size: 0.66rem;
    }

    .app-store-link {
        width: 92px;
    }

    .home-title {
        font-size: clamp(2.05rem, 12vw, 3rem);
    }
}
