:root {
    --ink: #07110f;
    --ink-2: #0b1816;
    --ink-3: #12211e;
    --paper: #f3f5f1;
    --white: #ffffff;
    --mist: #e7efeb;
    --line-dark: rgba(221, 246, 238, 0.14);
    --line-light: rgba(7, 17, 15, 0.15);
    --teal: #5ed0c8;
    --teal-bright: #86eee3;
    --teal-deep: #1f6f69;
    --warm: #efb55f;
    --red: #c96c60;
    --text: #0d1b2d;
    --muted: #68746f;
    --muted-dark: #9caaa5;
    --shell: min(1280px, calc(100vw - 64px));
    --radius-sm: 8px;
    --radius-md: 18px;
    --radius-lg: 34px;
    --shadow: 0 36px 100px rgba(0, 0, 0, 0.22);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: var(--ink);
}

body {
    margin: 0;
    overflow-x: hidden;
    color: var(--white);
    background: var(--ink);
    font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.55;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

::selection {
    color: var(--ink);
    background: var(--teal-bright);
}

a {
    color: inherit;
}

button,
input,
textarea {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

:focus-visible {
    outline: 2px solid var(--warm);
    outline-offset: 4px;
}

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

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

h1,
h2,
h3,
h4 {
    font-family: "Manrope", sans-serif;
    font-weight: 600;
}

.shell {
    width: var(--shell);
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 1000;
    padding: 12px 16px;
    color: var(--ink);
    background: var(--teal-bright);
    text-decoration: none;
    transform: translateY(-150%);
    transition: transform 180ms ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    border-bottom: 1px solid transparent;
    transition: background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.site-header.scrolled {
    border-color: var(--line-dark);
    background: rgba(7, 17, 15, 0.82);
    backdrop-filter: blur(22px);
}

.navbar {
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.wordmark {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: baseline;
    color: var(--white);
    font-family: "Manrope", sans-serif;
    font-size: 1.42rem;
    font-weight: 700;
    letter-spacing: -0.065em;
    line-height: 1;
    text-decoration: none;
}

.wordmark-accent {
    color: var(--teal-bright);
}

.wordmark-dot {
    width: 5px;
    height: 5px;
    margin-left: 4px;
    border-radius: 50%;
    background: var(--teal-bright);
}

.nav-panel,
.nav-links {
    display: flex;
    align-items: center;
}

.nav-panel {
    gap: 36px;
}

.nav-links {
    gap: 30px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-links a {
    position: relative;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 180ms ease;
}

.nav-links a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -9px;
    left: 0;
    height: 1px;
    background: var(--teal-bright);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 180ms ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-cta {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 17px;
    border: 1px solid rgba(134, 238, 227, 0.35);
    border-radius: 999px;
    color: var(--white);
    font-size: 0.84rem;
    font-weight: 700;
    text-decoration: none;
    transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.nav-cta:hover {
    border-color: var(--teal-bright);
    color: var(--ink);
    background: var(--teal-bright);
}

.menu-toggle {
    display: none;
}

.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 62% 38%, rgba(43, 153, 142, 0.12), transparent 28%),
        linear-gradient(145deg, #07110f 0%, #091815 55%, #07110f 100%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    opacity: 0.36;
    background-image:
        linear-gradient(rgba(134, 238, 227, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(134, 238, 227, 0.045) 1px, transparent 1px);
    background-size: 68px 68px;
    mask-image: linear-gradient(to right, black, transparent 75%);
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.hero-glow-one {
    width: 430px;
    height: 430px;
    right: 8%;
    bottom: 4%;
    background: rgba(44, 196, 183, 0.16);
}

.hero-glow-two {
    width: 260px;
    height: 260px;
    right: 36%;
    top: 18%;
    background: rgba(239, 181, 95, 0.08);
}

.hero-layout {
    position: relative;
    z-index: 2;
    min-height: 100svh;
    display: grid;
    grid-template-columns: minmax(0, 0.93fr) minmax(480px, 1.07fr);
    align-items: center;
    gap: clamp(30px, 4vw, 80px);
    padding-top: 120px;
    padding-bottom: 80px;
}

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

.eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    color: var(--teal-bright);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.eyebrow > span {
    width: 32px;
    height: 1px;
    display: inline-block;
    background: currentColor;
}

.eyebrow-dark {
    color: var(--teal-deep);
}

.hero h1 {
    max-width: 760px;
    margin-bottom: 30px;
    font-size: clamp(3.5rem, 6.4vw, 7rem);
    line-height: 0.92;
    letter-spacing: -0.052em;
}

.hero-lede {
    max-width: 610px;
    margin-bottom: 36px;
    color: var(--muted-dark);
    font-size: clamp(1.03rem, 1.45vw, 1.3rem);
    line-height: 1.62;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.button {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 0 23px;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: transform 180ms ease, color 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-primary {
    color: var(--ink);
    background: var(--teal-bright);
}

.button-primary:hover {
    background: var(--white);
}

.button-ghost {
    border-color: rgba(255, 255, 255, 0.23);
    color: var(--white);
    background: rgba(255, 255, 255, 0.025);
}

.button-ghost:hover {
    border-color: rgba(255, 255, 255, 0.55);
}

.button-ink {
    width: 100%;
    color: var(--white);
    background: var(--ink);
}

.hero-note {
    margin: 23px 0 0;
    color: rgba(255, 255, 255, 0.43);
    font-size: 0.78rem;
}

.hero-system {
    position: relative;
    min-height: min(760px, 78vh);
    transform: perspective(1200px) rotateX(calc(var(--tilt-y, 0) * -0.35deg)) rotateY(calc(var(--tilt-x, 0) * 0.35deg));
    transition: transform 180ms ease-out;
}

.product-orbit {
    position: absolute;
    border: 1px solid rgba(134, 238, 227, 0.14);
    border-radius: 50%;
    transform: rotate(-18deg);
}

.orbit-one {
    width: 76%;
    aspect-ratio: 1;
    top: 8%;
    left: 8%;
}

.orbit-two {
    width: 102%;
    aspect-ratio: 1;
    top: -4%;
    left: -5%;
    border-color: rgba(134, 238, 227, 0.07);
}

.hero-device {
    position: absolute;
    z-index: 2;
    width: 60%;
    left: 0;
    top: 2%;
    filter: drop-shadow(0 38px 45px rgba(0, 0, 0, 0.48)) drop-shadow(0 0 70px rgba(74, 211, 199, 0.12));
    animation: device-float 7s ease-in-out infinite;
}

.hero-device img {
    width: 100%;
    max-height: 720px;
    object-fit: contain;
}

.hero-phone,
.app-phone,
.render-phone {
    overflow: hidden;
    border: 7px solid #12201e;
    border-radius: 36px;
    background: #f5f8f5;
    box-shadow: var(--shadow);
}

.hero-phone {
    position: absolute;
    z-index: 4;
    width: clamp(205px, 31%, 275px);
    height: auto;
    aspect-ratio: 1290 / 2796;
    right: 0;
    bottom: 12%;
    transform: rotate(1deg);
}

.hero-phone::after,
.app-phone::after,
.render-phone::after {
    content: "";
    position: absolute;
    z-index: 7;
    bottom: 10px;
    left: 50%;
    width: 54px;
    height: 5px;
    border-radius: 999px;
    background: #192522;
    transform: translateX(-50%);
}

.phone-screen-crop {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #f6f8f5;
}

.phone-screen-crop img {
    width: 100%;
    height: auto;
    max-width: none;
}

.hero-phone-crop img {
    height: calc(100% + 27px);
    object-fit: fill;
    object-position: top;
    transform: translateY(-27px);
}

.product-label {
    position: absolute;
    z-index: 8;
    min-width: 140px;
    padding: 12px 14px;
    border: 1px solid rgba(134, 238, 227, 0.2);
    border-radius: 10px;
    background: rgba(7, 17, 15, 0.82);
    backdrop-filter: blur(14px);
}

.product-label span,
.product-label small {
    display: block;
}

.product-label span {
    color: var(--white);
    font-family: "Manrope", sans-serif;
    font-size: 0.84rem;
    font-weight: 700;
}

.product-label small {
    margin-top: 2px;
    color: var(--teal-bright);
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.product-label-device {
    right: auto;
    bottom: 1%;
    left: 1%;
}

.product-label-app {
    right: 1%;
    bottom: 1%;
}

.signal-line {
    position: absolute;
    z-index: 3;
    right: 22%;
    bottom: 33%;
    width: 33%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--teal-bright));
    transform: rotate(10deg);
    transform-origin: right;
}

.signal-line span {
    position: absolute;
    right: 0;
    top: -3px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--teal-bright);
    box-shadow: 0 0 18px var(--teal-bright);
}

.scroll-cue {
    position: absolute;
    z-index: 4;
    left: 50%;
    bottom: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-decoration: none;
    text-transform: uppercase;
    transform: translateX(-50%);
}

.scroll-cue i {
    width: 1px;
    height: 26px;
    background: linear-gradient(var(--teal-bright), transparent);
}

.recognition {
    position: relative;
    z-index: 5;
    border-top: 1px solid var(--line-dark);
    border-bottom: 1px solid var(--line-dark);
    background: var(--ink-2);
}

.recognition-layout {
    min-height: 118px;
    display: grid;
    grid-template-columns: 210px 1fr;
    align-items: center;
    gap: 48px;
}

.recognition-intro {
    margin: 0;
    color: var(--muted-dark);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.recognition-list {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: center;
    gap: 25px;
}

.recognition-list span {
    color: rgba(255, 255, 255, 0.75);
    font-family: "Manrope", sans-serif;
    font-size: clamp(0.8rem, 1.05vw, 1rem);
    font-weight: 600;
    text-align: center;
}

.section {
    position: relative;
    padding: clamp(100px, 11vw, 168px) 0;
    scroll-margin-top: 80px;
}

.section-light {
    color: var(--text);
    background: var(--paper);
}

.section-mist {
    color: var(--text);
    background: var(--mist);
}

.section-heading {
    margin-bottom: clamp(60px, 8vw, 105px);
}

.split-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(290px, 0.55fr);
    align-items: end;
    gap: clamp(44px, 8vw, 130px);
}

.section-heading h2 {
    max-width: 940px;
    margin-bottom: 0;
    font-size: clamp(3rem, 5.6vw, 6.6rem);
    line-height: 0.95;
    letter-spacing: -0.045em;
}

.heading-aside {
    padding-bottom: 8px;
}

.heading-aside p {
    margin-bottom: 22px;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.72;
}

.heading-aside-dark p {
    color: var(--muted-dark);
}

.text-link {
    display: inline-flex;
    gap: 12px;
    align-items: center;
    padding-bottom: 5px;
    border-bottom: 1px solid currentColor;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
}

.app-showcase {
    position: relative;
    min-height: 800px;
    display: grid;
    grid-template-columns: 0.7fr 2fr 0.7fr;
    align-items: center;
    gap: clamp(20px, 4vw, 60px);
}

.phone-gallery {
    position: relative;
    min-height: 750px;
}

.app-phone {
    position: absolute;
    width: 300px;
    height: 650px;
    top: 50%;
    left: 50%;
    margin: 0;
    border-width: 8px;
    transform-origin: center;
}

.app-phone::after {
    content: "";
    position: absolute;
    z-index: 5;
    bottom: 10px;
    left: 50%;
    width: 56px;
    height: 5px;
    border-radius: 999px;
    background: #152421;
    transform: translateX(-50%);
}

.phone-main {
    z-index: 3;
    transform: translate(-50%, -50%);
}

.phone-left {
    z-index: 1;
    opacity: 0.68;
    transform: translate(-93%, -48%) rotate(-7deg) scale(0.87);
}

.phone-right {
    z-index: 2;
    opacity: 0.76;
    transform: translate(-7%, -48%) rotate(7deg) scale(0.87);
}

.screen-environment img,
.screen-insights img {
    height: calc(100% + 22px);
    object-fit: fill;
    object-position: top;
    transform: translateY(-22px);
}

.screen-today img {
    height: calc(100% + 93px);
    object-fit: fill;
    object-position: top;
    transform: translateY(-93px);
}

.app-feature {
    position: relative;
    z-index: 6;
}

.feature-number {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    margin-bottom: 26px;
    border: 1px solid var(--line-light);
    border-radius: 50%;
    color: var(--teal-deep);
    font-size: 0.68rem;
    font-weight: 700;
}

.app-feature h3 {
    margin-bottom: 14px;
    font-size: clamp(1.5rem, 2vw, 2rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.app-feature p {
    color: var(--muted);
    font-size: 0.94rem;
}

.feature-rail {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 40px;
    border-top: 1px solid var(--line-light);
    border-bottom: 1px solid var(--line-light);
}

.feature-rail > div {
    padding: 26px 24px;
    border-right: 1px solid var(--line-light);
}

.feature-rail > div:first-child {
    padding-left: 0;
}

.feature-rail > div:last-child {
    border-right: 0;
}

.feature-rail span,
.feature-rail strong {
    display: block;
}

.feature-rail span {
    margin-bottom: 6px;
    color: var(--teal-deep);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.feature-rail strong {
    font-family: "Manrope", sans-serif;
    font-size: 1rem;
    font-weight: 600;
}

.inhalair-section {
    overflow: hidden;
    background:
        linear-gradient(rgba(134, 238, 227, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(134, 238, 227, 0.03) 1px, transparent 1px),
        var(--ink);
    background-size: 80px 80px;
}

.hardware-glow {
    position: absolute;
    width: 800px;
    height: 800px;
    right: -360px;
    top: 22%;
    border-radius: 50%;
    background: rgba(45, 170, 158, 0.08);
    filter: blur(100px);
}

.patent-note {
    display: inline-block;
    padding: 9px 12px;
    border: 1px solid var(--line-dark);
    border-radius: 999px;
    color: var(--teal-bright) !important;
    font-size: 0.76rem !important;
}

.hardware-stage {
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(300px, 0.35fr);
    border: 1px solid var(--line-dark);
    background: var(--ink-2);
}

.video-wrap {
    position: relative;
    min-height: 720px;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: transparent;
}

.video-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.assembly-canvas {
    display: none;
    width: 100%;
    height: 100%;
}

.video-wrap.is-keyed video {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
}

.video-wrap.is-keyed .assembly-canvas {
    display: block;
}

.video-toggle {
    position: absolute;
    right: 20px;
    bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    border: 1px solid rgba(7, 17, 15, 0.18);
    border-radius: 999px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.85);
    font-size: 0.72rem;
    font-weight: 700;
    cursor: pointer;
    backdrop-filter: blur(12px);
}

.video-icon {
    font-size: 0.65rem;
}

.hardware-specs {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
}

.hardware-specs article {
    min-height: 225px;
    padding: 32px;
    border-bottom: 1px solid var(--line-dark);
}

.hardware-specs article:last-child {
    border-bottom: 0;
}

.hardware-specs span {
    display: block;
    margin-bottom: 54px;
    color: var(--teal-bright);
    font-size: 0.7rem;
    font-weight: 700;
}

.hardware-specs h3 {
    margin-bottom: 8px;
    font-size: 1.42rem;
    letter-spacing: -0.035em;
}

.hardware-specs p {
    margin: 0;
    color: var(--muted-dark);
    font-size: 0.88rem;
}

.render-strip {
    display: grid;
    grid-template-columns: 0.85fr 0.85fr 1.3fr;
    margin-top: 28px;
    border: 1px solid var(--line-dark);
}

.render-strip figure {
    width: 100%;
    min-height: 360px;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: 280px 20px;
    place-items: center;
    align-content: center;
    row-gap: 22px;
    margin: 0;
    padding: 22px;
    box-sizing: border-box;
    border-right: 1px solid var(--line-dark);
    background: rgba(255, 255, 255, 0.018);
    text-align: center;
}

.render-strip img {
    align-self: center;
    justify-self: center;
    width: 100%;
    height: 280px;
    object-fit: contain;
    filter: drop-shadow(0 22px 24px rgba(0, 0, 0, 0.35));
}

.render-phone {
    position: relative;
    align-self: center;
    justify-self: center;
    width: auto;
    max-width: 78%;
    height: 252px;
    max-height: 90%;
    aspect-ratio: 1290 / 2796;
    margin-inline: auto;
    border-width: 6px;
    border-radius: 32px;
    box-shadow: 0 22px 42px rgba(0, 0, 0, 0.32);
}

.render-phone::after {
    bottom: 7px;
    width: 46px;
    height: 4px;
}

.render-phone-crop img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: none;
    transform: none;
}

.render-strip figcaption {
    width: 100%;
    align-self: center;
    justify-self: stretch;
    color: var(--muted-dark);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-align: center;
    text-transform: uppercase;
}

.render-statement {
    min-height: 360px;
    display: flex;
    align-items: flex-end;
    padding: 36px;
    background: var(--teal);
}

.render-statement p {
    margin: 0;
    color: var(--ink);
    font-family: "Manrope", sans-serif;
    font-size: clamp(1.6rem, 2.5vw, 3rem);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.05em;
}

.centered {
    max-width: 920px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.centered .eyebrow {
    justify-content: center;
}

.centered p:last-child {
    max-width: 690px;
    margin: 28px auto 0;
    color: var(--muted);
    font-size: 1.06rem;
}

.system-flow {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--line-light);
    border-left: 1px solid var(--line-light);
    list-style: none;
}

.system-flow li {
    position: relative;
    min-height: 340px;
    padding: 25px;
    border-right: 1px solid var(--line-light);
    border-bottom: 1px solid var(--line-light);
}

.system-flow li:not(:last-child)::after {
    content: "";
    position: absolute;
    z-index: 3;
    top: 88px;
    right: -6px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--teal-deep);
}

.flow-index {
    display: block;
    color: var(--teal-deep);
    font-size: 0.68rem;
    font-weight: 700;
}

.flow-media {
    width: 100%;
    height: 155px;
    margin: 28px 0 38px;
    border: 1px solid var(--line-light);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.45);
}

.flow-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.flow-media-log img {
    object-position: center 39%;
}

.flow-media-context img {
    object-position: center 8%;
}

.flow-media-device {
    background:
        radial-gradient(circle at 70% 20%, rgba(134, 238, 227, 0.2), transparent 35%),
        var(--ink-2);
}

.flow-media-device img {
    object-fit: contain;
    filter: drop-shadow(0 16px 18px rgba(0, 0, 0, 0.35));
}

.system-flow h3 {
    margin-bottom: 9px;
    font-size: 1.3rem;
}

.system-flow p {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.highlight-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    gap: 22px;
    margin-bottom: 90px;
}

.award-highlight {
    position: relative;
    isolation: isolate;
    min-height: 460px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(30px, 4vw, 56px);
    color: var(--white);
    text-decoration: none;
    overflow: hidden;
}

.award-draper {
    position: relative;
    background:
        linear-gradient(150deg, rgba(8, 20, 18, 0.22), rgba(7, 17, 15, 0.9)),
        radial-gradient(circle at 76% 18%, rgba(134, 238, 227, 0.54), transparent 26%),
        var(--ink-2);
}

.award-draper::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 500px;
    top: -120px;
    right: 9%;
    border: 1px solid rgba(134, 238, 227, 0.22);
    border-radius: 50%;
    transform: rotate(35deg);
    z-index: 1;
}

.award-draper::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.84) 0%, rgba(0, 0, 0, 0.42) 42%, transparent 82%);
    pointer-events: none;
}

.award-hopkins {
    color: var(--ink);
    background: var(--teal);
}

.award-hopkins::after {
    content: "";
    position: absolute;
    inset: 28% 0 0;
    z-index: 1;
    background: linear-gradient(to bottom, transparent, var(--teal) 72%);
    pointer-events: none;
}

.award-media {
    position: absolute;
    z-index: 0;
    display: block;
    pointer-events: none;
}

.award-media-draper {
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 1;
}

.award-media-app {
    width: 52%;
    height: 88%;
    top: -26%;
    right: -2%;
    border: 5px solid rgba(7, 17, 15, 0.8);
    border-radius: 24px;
    object-fit: cover;
    object-position: top;
    box-shadow: 0 30px 60px rgba(7, 17, 15, 0.25);
    transform: rotate(7deg);
}

.award-year {
    position: relative;
    z-index: 2;
    margin-bottom: auto;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.award-highlight strong {
    position: relative;
    z-index: 2;
    align-self: flex-start;
    margin-bottom: 18px;
    padding: 10px 14px;
    border: 1px solid currentColor;
    border-radius: 999px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(0.95rem, 1.5vw, 1.15rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.award-hopkins strong {
    border-color: rgba(7, 17, 15, 0.28);
}

.award-highlight h3 {
    position: relative;
    z-index: 2;
    margin-bottom: 4px;
    font-size: clamp(1.3rem, 2vw, 2rem);
    letter-spacing: -0.04em;
}

.award-highlight p {
    position: relative;
    z-index: 2;
    margin-bottom: 24px;
    opacity: 0.72;
}

.award-link {
    position: relative;
    z-index: 2;
    align-self: flex-start;
    padding-bottom: 4px;
    border-bottom: 1px solid currentColor;
    font-size: 0.76rem;
    font-weight: 700;
}

.timeline {
    border-top: 1px solid var(--line-light);
}

.timeline-year {
    display: grid;
    grid-template-columns: 170px 1fr;
    border-bottom: 1px solid var(--line-light);
}

.timeline-year > span {
    padding: 31px 24px 31px 0;
    color: var(--teal-deep);
    font-family: "Manrope", sans-serif;
    font-size: 1.45rem;
    font-weight: 600;
}

.timeline-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    border-left: 1px solid var(--line-light);
}

.timeline-items > div,
.timeline-items > a {
    min-height: 132px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px 28px;
    border-right: 1px solid var(--line-light);
    color: inherit;
    text-decoration: none;
}

.timeline-items strong,
.timeline-items small {
    display: block;
}

.timeline-items strong {
    margin-bottom: 7px;
    font-family: "Manrope", sans-serif;
    font-size: 0.98rem;
    line-height: 1.35;
}

.timeline-items small {
    color: var(--muted);
    font-size: 0.76rem;
    line-height: 1.5;
}

.timeline-items a:hover {
    background: rgba(94, 208, 200, 0.11);
}

.press-row {
    display: grid;
    grid-template-columns: 150px repeat(3, minmax(0, 1fr));
    align-items: stretch;
    margin-top: 70px;
    border: 1px solid var(--line-light);
}

.press-row > p,
.press-row > a {
    margin: 0;
    padding: 25px 28px;
}

.press-row > p {
    display: flex;
    align-items: center;
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.press-row > a {
    border-left: 1px solid var(--line-light);
    text-decoration: none;
    transition: background 180ms ease;
}

.press-row > a:hover {
    background: var(--mist);
}

.press-row span,
.press-row small {
    display: block;
}

.press-row span {
    font-family: "Manrope", sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
}

.press-row small {
    margin-top: 3px;
    color: var(--muted);
}

.team-section {
    background: var(--ink-2);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.team-card {
    overflow: hidden;
    border: 1px solid var(--line-dark);
    background: rgba(255, 255, 255, 0.02);
}

.team-photo {
    position: relative;
    aspect-ratio: 0.86;
    overflow: hidden;
    background: var(--ink-3);
}

.team-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(7, 17, 15, 0.35), transparent 45%);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.74) contrast(1.03);
    transition: transform 600ms cubic-bezier(.2,.75,.2,1), filter 400ms ease;
}

.team-card:hover .team-photo img {
    transform: scale(1.025);
    filter: saturate(1) contrast(1.03);
}

.team-card > div:last-child {
    padding: 22px;
}

.team-card h3 {
    margin-bottom: 3px;
    font-size: 1.04rem;
    letter-spacing: -0.025em;
}

.team-card p {
    margin: 0;
    color: var(--teal-bright);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-section {
    color: var(--ink);
    background: var(--ink-2);
}

.contact-panel {
    display: grid;
    grid-template-columns: 1fr 0.78fr;
    gap: clamp(50px, 9vw, 140px);
    padding: clamp(45px, 7vw, 90px);
    background:
        radial-gradient(circle at 12% 15%, rgba(255, 255, 255, 0.25), transparent 28%),
        var(--teal);
}

.contact-copy h2 {
    max-width: 700px;
    margin-bottom: 28px;
    font-size: clamp(3.2rem, 5.6vw, 6.4rem);
    line-height: 0.94;
    letter-spacing: -0.045em;
}

.contact-copy > p:not(.eyebrow) {
    max-width: 560px;
    margin-bottom: 36px;
    font-size: 1.05rem;
}

.contact-email {
    display: inline-flex;
    gap: 18px;
    padding-bottom: 6px;
    border-bottom: 1px solid currentColor;
    font-family: "Manrope", sans-serif;
    font-size: clamp(1.1rem, 1.7vw, 1.5rem);
    font-weight: 600;
    text-decoration: none;
}

.contact-form {
    display: grid;
    gap: 19px;
    align-content: center;
    padding: 34px;
    background: rgba(245, 249, 246, 0.86);
    backdrop-filter: blur(16px);
}

.form-row {
    display: grid;
    gap: 7px;
}

.form-row label {
    font-size: 0.75rem;
    font-weight: 700;
}

.form-row label span {
    color: var(--muted);
    font-weight: 400;
}

.form-row input,
.form-row textarea {
    width: 100%;
    border: 0;
    border-bottom: 1px solid rgba(7, 17, 15, 0.2);
    border-radius: 0;
    outline: 0;
    color: var(--ink);
    background: transparent;
    transition: border-color 180ms ease;
}

.form-row input {
    height: 42px;
}

.form-row textarea {
    padding: 10px 0;
    resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus {
    border-color: var(--teal-deep);
}

.contact-form button:disabled {
    cursor: wait;
    opacity: 0.65;
}

.form-status {
    min-height: 20px;
    margin: -7px 0 0;
    color: var(--teal-deep);
    font-size: 0.76rem;
}

.form-status.error {
    color: #a53f35;
}

.site-footer {
    background: var(--ink);
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 70px;
    padding: 80px 0 66px;
}

.wordmark-footer {
    margin-bottom: 23px;
    font-size: 1.8rem;
}

.footer-top > div:first-child p {
    color: var(--muted-dark);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.footer-links > div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.footer-links h3 {
    margin-bottom: 9px;
    color: var(--teal-bright);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.footer-links a {
    color: var(--muted-dark);
    font-size: 0.88rem;
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    min-height: 88px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 50px;
    border-top: 1px solid var(--line-dark);
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.38);
    font-size: 0.69rem;
}

.footer-bottom p:first-child {
    max-width: 820px;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.75,.2,1);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.team-card.reveal:nth-child(2),
.system-flow.reveal li:nth-child(2) {
    transition-delay: 70ms;
}

.team-card.reveal:nth-child(3),
.system-flow.reveal li:nth-child(3) {
    transition-delay: 140ms;
}

.team-card.reveal:nth-child(4),
.system-flow.reveal li:nth-child(4) {
    transition-delay: 210ms;
}

@keyframes device-float {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(0, -12px, 0); }
}

/* Legal pages */
.legal-body {
    color: var(--text);
    background: var(--paper);
}

.legal-header {
    position: relative;
    border-bottom: 1px solid var(--line-light);
    background: var(--ink);
}

.legal-header .navbar {
    min-height: 78px;
}

.legal-home-link {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
}

.legal-home-link:hover {
    color: var(--white);
}

.legal-main {
    width: min(860px, calc(100vw - 48px));
    margin: 0 auto;
    padding: 88px 0 120px;
}

.legal-main .container > h1 {
    margin: 24px 0 16px;
    font-size: clamp(3.1rem, 8vw, 6.8rem);
    line-height: 0.92;
    letter-spacing: -0.07em;
}

.back-link {
    display: inline-flex;
    padding-bottom: 5px;
    border-bottom: 1px solid currentColor;
    color: var(--teal-deep);
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
}

.legal-main .updated {
    margin-bottom: 60px;
    color: var(--muted);
    font-size: 0.82rem;
}

.legal-main h2 {
    margin: 58px 0 16px;
    padding-top: 23px;
    border-top: 1px solid var(--line-light);
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    letter-spacing: -0.04em;
}

.legal-main h3 {
    margin: 30px 0 10px;
    font-size: 1.22rem;
    letter-spacing: -0.025em;
}

.legal-main h4 {
    margin: 24px 0 8px;
}

.legal-main p,
.legal-main li {
    color: #46524e;
    line-height: 1.75;
}

.legal-main li + li {
    margin-top: 7px;
}

.legal-main a:not(.back-link) {
    color: var(--teal-deep);
    text-underline-offset: 3px;
}

.notice,
.notice-box,
.summary,
.contact-info {
    margin: 25px 0;
    padding: 24px 28px;
    border-left: 3px solid var(--teal-deep);
    background: var(--mist);
}

.notice p,
.notice-box p,
.summary p,
.contact-info p {
    margin-bottom: 0;
}

.legal-footer {
    color: var(--white);
    background: var(--ink);
}

.legal-footer .footer-bottom {
    border-top: 0;
}

@media (max-width: 1100px) {
    :root {
        --shell: min(100% - 44px, 980px);
    }

    .hero-layout {
        grid-template-columns: 0.88fr 1.12fr;
    }

    .hero-system {
        min-height: 630px;
    }

    .hero-device {
        width: 60%;
        left: 0;
    }

    .hero-phone {
        right: 0;
        height: auto;
    }

    .split-heading {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 60px;
    }

    .app-showcase {
        grid-template-columns: 0.6fr 2fr 0.6fr;
        gap: 18px;
    }

    .app-phone {
        width: 260px;
        height: 575px;
    }

    .hardware-stage {
        grid-template-columns: 1fr 340px;
    }

    .video-wrap {
        min-height: 640px;
    }

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

@media (max-width: 860px) {
    .navbar {
        min-height: 72px;
    }

    .menu-toggle {
        position: relative;
        z-index: 102;
        width: 42px;
        height: 42px;
        display: grid;
        place-content: center;
        gap: 7px;
        padding: 0;
        border: 0;
        color: var(--white);
        background: transparent;
        cursor: pointer;
    }

    .menu-toggle span {
        width: 24px;
        height: 1px;
        display: block;
        background: currentColor;
        transition: transform 180ms ease;
    }

    .menu-toggle[aria-expanded="true"] span:first-child {
        transform: translateY(4px) rotate(45deg);
    }

    .menu-toggle[aria-expanded="true"] span:last-child {
        transform: translateY(-4px) rotate(-45deg);
    }

    .nav-panel {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 101;
        width: 100vw;
        height: 100vh;
        min-height: 100svh;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 38px;
        padding: 80px max(28px, calc((100vw - var(--shell)) / 2));
        overflow-y: auto;
        background: #07110f;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-12px);
        transition: opacity 200ms ease, transform 200ms ease;
    }

    .nav-panel.open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .nav-links a {
        display: block;
        color: var(--white);
        font-family: "Manrope", sans-serif;
        font-size: clamp(2.1rem, 8vw, 3.5rem);
        font-weight: 500;
        line-height: 1.05;
        letter-spacing: -0.05em;
    }

    .nav-cta {
        min-height: 48px;
        padding-inline: 22px;
    }

    .hero-layout {
        grid-template-columns: 1fr;
        align-content: center;
        padding-top: 130px;
        padding-bottom: 120px;
    }

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

    .hero-system {
        width: min(690px, 100%);
        min-height: 650px;
        margin: -20px auto 0;
    }

    .hero-device {
        width: 60%;
        left: 2%;
    }

    .hero-phone {
        width: 230px;
        right: 0;
        bottom: 12%;
    }

    .recognition-layout {
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 28px 0;
    }

    .recognition-list {
        grid-template-columns: repeat(5, 1fr);
    }

    .split-heading {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .heading-aside {
        max-width: 660px;
    }

    .app-showcase {
        min-height: auto;
        grid-template-columns: 1fr 1fr;
        gap: 38px;
    }

    .phone-gallery {
        grid-column: 1 / -1;
        grid-row: 1;
        min-height: 680px;
    }

    .app-feature {
        padding: 25px 0;
    }

    .feature-rail,
    .system-flow {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-rail > div:nth-child(2) {
        border-right: 0;
    }

    .feature-rail > div:nth-child(-n+2) {
        border-bottom: 1px solid var(--line-light);
    }

    .feature-rail > div:nth-child(3) {
        padding-left: 0;
    }

    .hardware-stage {
        grid-template-columns: 1fr;
    }

    .video-wrap {
        min-height: 590px;
    }

    .hardware-specs {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: none;
    }

    .hardware-specs article {
        min-height: 240px;
        border-right: 1px solid var(--line-dark);
        border-bottom: 0;
    }

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

    .render-strip {
        grid-template-columns: 1fr 1fr;
    }

    .render-strip figure:nth-child(2) {
        border-right: 0;
    }

    .render-statement {
        grid-column: 1 / -1;
        min-height: 260px;
    }

    .system-flow li:nth-child(2)::after {
        display: none;
    }

    .highlight-grid {
        grid-template-columns: 1fr;
    }

    .award-hopkins {
        min-height: 390px;
    }

    .timeline-year {
        grid-template-columns: 100px 1fr;
    }

    .timeline-items {
        grid-template-columns: 1fr;
    }

    .timeline-items > div,
    .timeline-items > a {
        min-height: 108px;
        border-right: 0;
        border-bottom: 1px solid var(--line-light);
    }

    .timeline-items > :last-child {
        border-bottom: 0;
    }

    .press-row {
        grid-template-columns: 130px 1fr;
    }

    .press-row > a:last-child {
        grid-column: 2;
        border-top: 1px solid var(--line-light);
    }

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

    .footer-top {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 580px) {
    :root {
        --shell: calc(100vw - 32px);
    }

    .section {
        padding: 88px 0;
    }

    .hero-layout {
        padding-top: 116px;
        padding-bottom: 80px;
    }

    .hero h1 {
        font-size: clamp(3.25rem, 16vw, 5.2rem);
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

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

    .hero-system {
        min-height: 510px;
        margin-top: -10px;
    }

    .hero-device {
        width: 54%;
        left: 0;
        top: 0;
    }

    .hero-phone {
        width: 170px;
        height: auto;
        right: 0;
        bottom: 15%;
        border-width: 5px;
        border-radius: 27px;
    }

    .product-label {
        min-width: 116px;
        padding: 9px 10px;
    }

    .product-label-device {
        right: auto;
        bottom: 0;
        left: 0;
    }

    .product-label-app {
        right: 0;
        bottom: 0;
        left: auto;
    }

    .scroll-cue {
        display: none;
    }

    .recognition-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px 12px;
    }

    .recognition-list span {
        text-align: left;
    }

    .section-heading h2 {
        font-size: clamp(2.75rem, 14vw, 4.3rem);
    }

    .phone-gallery {
        min-height: 530px;
        overflow: hidden;
    }

    .app-phone {
        width: 205px;
        height: 455px;
        border-width: 6px;
        border-radius: 29px;
    }

    .phone-left {
        transform: translate(-105%, -48%) rotate(-7deg) scale(0.82);
    }

    .phone-right {
        transform: translate(5%, -48%) rotate(7deg) scale(0.82);
    }

    .screen-today img {
        height: calc(100% + 64px);
        transform: translateY(-64px);
    }

    .app-showcase {
        grid-template-columns: 1fr;
    }

    .phone-gallery,
    .app-feature {
        grid-column: auto;
    }

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

    .feature-rail > div {
        padding-left: 0;
        border-right: 0;
        border-bottom: 1px solid var(--line-light);
    }

    .feature-rail > div:last-child {
        border-bottom: 0;
    }

    .video-wrap {
        min-height: 420px;
    }

    .video-wrap video {
        object-fit: contain;
    }

    .hardware-specs {
        grid-template-columns: 1fr;
    }

    .hardware-specs article {
        min-height: 200px;
        border-right: 0;
        border-bottom: 1px solid var(--line-dark);
    }

    .hardware-specs span {
        margin-bottom: 42px;
    }

    .render-strip {
        grid-template-columns: 1fr;
    }

    .render-strip figure {
        border-right: 0;
        border-bottom: 1px solid var(--line-dark);
    }

    .render-statement {
        grid-column: auto;
    }

    .system-flow {
        grid-template-columns: 1fr;
    }

    .system-flow li {
        min-height: 250px;
    }

    .system-flow li::after {
        display: none;
    }

    .flow-media {
        height: 180px;
        margin-bottom: 32px;
    }

    .award-highlight {
        min-height: 410px;
    }

    .timeline-year {
        grid-template-columns: 1fr;
    }

    .timeline-year > span {
        padding-bottom: 12px;
    }

    .timeline-items {
        border-left: 0;
    }

    .timeline-items > div,
    .timeline-items > a {
        padding-left: 0;
    }

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

    .press-row > p,
    .press-row > a,
    .press-row > a:last-child {
        grid-column: auto;
        border-left: 0;
        border-top: 1px solid var(--line-light);
    }

    .press-row > p {
        border-top: 0;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .contact-panel {
        width: 100%;
        padding: 72px 20px 20px;
    }

    .contact-copy h2 {
        font-size: clamp(3rem, 15vw, 4.6rem);
    }

    .contact-form {
        padding: 25px 20px;
    }

    .footer-top {
        padding-top: 64px;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
    }

    .footer-bottom {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 26px 0;
    }

    .legal-main {
        width: calc(100vw - 32px);
        padding-top: 64px;
    }

    .legal-main .container > h1 {
        font-size: clamp(3rem, 16vw, 5rem);
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }

    .hero-system {
        transform: none !important;
    }
}
