:root {
    --ink: #171717;
    --muted: #5c625f;
    --paper: #fbfaf5;
    --surface: #ffffff;
    --line: rgba(23, 23, 23, 0.13);
    --line-strong: rgba(23, 23, 23, 0.22);
    --green: #285c49;
    --purple: #5e4d82;
    --blue: #2d5f86;
    --coral: #bd654f;
    --gold: #a77d37;
    --shadow-soft: 0 24px 80px rgba(36, 43, 39, 0.14);
    --shadow-card: 0 18px 50px rgba(36, 43, 39, 0.12);
    --product-media-height: 530px;
    --product-card-copy-height: 174px;
    --product-card-height: calc(var(--product-media-height) + var(--product-card-copy-height) + 2px);
    color-scheme: light;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(23, 23, 23, 0.035) 1px, transparent 1px),
        linear-gradient(180deg, rgba(23, 23, 23, 0.035) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.82), transparent 70%);
    z-index: -1;
}

a {
    color: inherit;
}

img {
    max-width: 100%;
}

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

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 16px clamp(18px, 4vw, 52px);
    background: rgba(251, 250, 245, 0.84);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
}

.brand-lockup {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    text-decoration: none;
    font-size: 15px;
    font-weight: 780;
}

.brand-lockup img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(23, 23, 23, 0.12);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.site-menu-toggle {
    position: relative;
    display: none;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.74);
    color: var(--ink);
    cursor: pointer;
}

.site-menu-toggle:hover,
.site-menu-toggle:focus-visible,
.site-header.is-menu-open .site-menu-toggle {
    border-color: var(--line-strong);
    background: rgba(23, 23, 23, 0.07);
    outline: none;
}

.menu-line {
    position: absolute;
    width: 18px;
    height: 2px;
    border-radius: 99px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
}

.menu-line:nth-child(1) {
    transform: translateY(-6px);
}

.menu-line:nth-child(3) {
    transform: translateY(6px);
}

.site-header.is-menu-open .menu-line:nth-child(1) {
    transform: rotate(45deg);
}

.site-header.is-menu-open .menu-line:nth-child(2) {
    opacity: 0;
}

.site-header.is-menu-open .menu-line:nth-child(3) {
    transform: rotate(-45deg);
}

.site-nav-item {
    position: relative;
}

.site-nav a,
.site-nav-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 38px;
    padding: 0 13px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: #2b302e;
    text-decoration: none;
    font: inherit;
    font-size: 14px;
    font-weight: 680;
    cursor: pointer;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav-trigger:hover,
.site-nav-trigger:focus-visible,
.site-nav-item.is-open .site-nav-trigger {
    background: rgba(23, 23, 23, 0.07);
    outline: none;
}

.chevron {
    width: 7px;
    height: 7px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
    transition: transform 160ms ease;
}

.site-nav-item.is-open .chevron,
.site-nav-item:hover .chevron {
    transform: translateY(1px) rotate(225deg);
}

.site-nav-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: max-content;
    min-width: 300px;
    display: none;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 48px rgba(23, 23, 23, 0.15);
    backdrop-filter: blur(18px);
}

.site-nav-menu::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 100%;
    height: 10px;
}

.site-nav-item:hover .site-nav-menu,
.site-nav-item.is-open .site-nav-menu {
    display: grid;
    z-index: 30;
}

.site-nav .site-nav-menu a {
    justify-content: space-between;
    gap: 16px;
    min-height: 36px;
    padding: 0 10px;
    color: #2b302e;
    font-size: 14px;
}

.nav-label {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav-store-badges {
    display: inline-grid;
    grid-template-columns: repeat(3, 22px);
    align-items: center;
    justify-items: center;
    gap: 6px;
    width: 78px;
    margin-left: auto;
    flex: 0 0 auto;
}

.nav-store-badges .store-logo-web {
    grid-column: 1;
}

.nav-store-badges .store-logo-apple {
    grid-column: 2;
}

.nav-store-badges .store-logo-google {
    grid-column: 3;
}

.nav-current-badge {
    flex: 0 0 auto;
    margin-left: auto;
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(94, 77, 130, 0.14);
    color: var(--purple);
    font-size: 11px;
    font-weight: 820;
}

.site-nav .site-nav-menu a:hover,
.site-nav .site-nav-menu a:focus-visible {
    background: rgba(94, 77, 130, 0.14);
    color: var(--purple);
}

.site-nav .nav-action {
    background: var(--ink);
    color: #ffffff;
}

.site-nav .nav-action:hover,
.site-nav .nav-action:focus-visible {
    background: var(--purple);
}

.hero {
    position: relative;
    isolation: isolate;
    min-height: 76svh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 110px clamp(20px, 6vw, 76px) 58px;
    border-bottom: 1px solid var(--line);
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(251, 250, 245, 0.97) 0%, rgba(251, 250, 245, 0.9) 34%, rgba(251, 250, 245, 0.28) 70%, rgba(251, 250, 245, 0.66) 100%),
        linear-gradient(180deg, rgba(251, 250, 245, 0) 72%, var(--paper) 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-media {
    position: absolute;
    inset: 78px 0 0 43%;
    min-width: 820px;
    z-index: 1;
}

.screen-frame {
    position: absolute;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(23, 23, 23, 0.16);
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

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

.frame-themis {
    width: 230px;
    height: 304px;
    top: 40px;
    left: 38px;
    border-radius: 32px;
    transform: rotate(-6deg);
    z-index: 3;
}

.frame-listing {
    width: min(58vw, 680px);
    height: 342px;
    top: 122px;
    left: 214px;
    border-radius: 18px;
    z-index: 2;
}

.frame-nextstop {
    width: 190px;
    height: 410px;
    top: 26px;
    right: 110px;
    border-radius: 34px;
    transform: rotate(7deg);
    z-index: 4;
}

.frame-chime {
    width: 174px;
    height: 378px;
    top: 330px;
    left: 122px;
    border-radius: 32px;
    transform: rotate(5deg);
    z-index: 5;
}

.frame-vitals {
    width: 182px;
    height: 324px;
    top: 400px;
    right: 238px;
    border-radius: 34px;
    transform: rotate(-5deg);
    z-index: 5;
}

.frame-vitals img {
    object-fit: contain;
    background: #f3f8ee;
}

.hero-copy {
    position: relative;
    z-index: 3;
    width: min(620px, 92vw);
}

.hero h1 {
    margin: 0;
    max-width: 640px;
    font-size: clamp(52px, 7.2vw, 92px);
    line-height: 0.94;
    font-weight: 860;
}

.hero-title-main,
.hero-title-sub {
    display: block;
}

.hero-title-sub {
    margin-top: 8px;
    font-size: 0.58em;
    line-height: 1.02;
}

.hero p {
    margin: 28px 0 0;
    max-width: 540px;
    color: #303532;
    font-size: clamp(19px, 2vw, 25px);
    line-height: 1.42;
    font-weight: 520;
}

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

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 8px;
    border: 1px solid var(--ink);
    text-decoration: none;
    font-size: 15px;
    font-weight: 760;
}

.primary-button {
    background: var(--ink);
    color: #ffffff;
}

.primary-button:hover,
.primary-button:focus-visible {
    background: var(--green);
    border-color: var(--green);
}

.secondary-button {
    background: rgba(255, 255, 255, 0.74);
    color: var(--ink);
}

.secondary-button:hover,
.secondary-button:focus-visible {
    border-color: var(--green);
    color: var(--green);
}

.product-strip {
    position: relative;
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 18px clamp(20px, 6vw, 76px);
    border-bottom: 1px solid var(--line);
    background: #ffffff;
    scrollbar-width: none;
}

.product-strip::-webkit-scrollbar {
    display: none;
}

.product-strip a {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    text-decoration: none;
    color: #2b302e;
    font-size: 14px;
    font-weight: 720;
}

.product-strip a:hover,
.product-strip a:focus-visible {
    border-color: var(--green);
    color: var(--green);
}

.section-shell {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.product-index {
    padding: 84px 0 96px;
}

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

.section-heading h2,
.workflow-layout h2,
.company-section h2 {
    margin: 0;
    font-size: clamp(34px, 5vw, 64px);
    line-height: 0.98;
    font-weight: 840;
}

.section-heading p,
.workflow-layout > div p,
.company-copy p {
    max-width: 560px;
    margin: 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.55;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-areas:
        "themis listing listing"
        "themis appvitals nextstop"
        "drone dynamicisland chime"
        "kindcue . .";
    grid-template-rows: repeat(4, var(--product-card-height));
    gap: 16px;
}

.product-stack {
    display: grid;
    grid-area: themis;
    grid-template-rows: repeat(2, var(--product-card-height));
    gap: 16px;
}

.product-card {
    height: var(--product-card-height);
    min-height: var(--product-card-height);
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    box-shadow: var(--shadow-card);
    overflow: hidden;
}

.product-card[hidden] {
    display: none;
}

.product-stack[hidden] {
    display: none;
}

.wide-card {
    grid-area: listing;
    grid-column: span 2;
    min-height: var(--product-card-height);
}

.app-vitals-card {
    grid-area: appvitals;
}

.nextstop-card {
    grid-area: nextstop;
}

.drone-card {
    grid-area: drone;
}

.chime-card {
    grid-area: chime;
}

.kind-cue-card {
    grid-area: kindcue;
}

.dynamic-island-card {
    grid-area: dynamicisland;
}

.product-stack .product-card {
    height: var(--product-card-height);
    min-height: var(--product-card-height);
}

.product-stack .product-media {
    min-height: 0;
    padding: 9px 18px 0;
}

.product-stack .product-media-phone img {
    width: min(68%, 220px);
}

.themis-card-top .product-media {
    padding: 12px 12px 0;
}

.themis-card-top .product-media-phone img {
    width: min(100%, 340px);
    height: auto;
    max-height: calc(var(--product-media-height) - 12px);
    aspect-ratio: auto;
    object-fit: contain;
    object-position: center bottom;
}

.product-stack .product-body {
    padding: 18px;
}

.product-stack .product-body strong {
    font-size: 21px;
}

.product-stack .product-body span:last-child {
    font-size: 14px;
}

.debate-card .debate-media {
    align-items: flex-end;
    padding-top: 12px;
    background:
        linear-gradient(135deg, rgba(96, 75, 214, 0.14), rgba(229, 138, 108, 0.18)),
        #f4f1ea;
}

.debate-card .debate-media img {
    width: min(82%, 270px);
    height: auto;
    max-height: calc(var(--product-media-height) - 12px);
    aspect-ratio: auto;
    object-fit: contain;
    object-position: center bottom;
    border-radius: 24px 24px 0 0;
}

.dynamic-island-card .dynamic-island-media {
    padding-top: 12px;
    background:
        linear-gradient(135deg, rgba(94, 77, 130, 0.16), rgba(45, 95, 134, 0.13)),
        #f4f1ea;
}

.dynamic-island-card .dynamic-island-media img {
    width: min(82%, 270px);
    height: auto;
    max-height: calc(var(--product-media-height) - 12px);
    aspect-ratio: auto;
    object-fit: contain;
    object-position: center bottom;
    border-radius: 24px 24px 0 0;
}

.app-vitals-card .product-media-phone img {
    width: min(82%, 290px);
    height: auto;
    max-height: calc(var(--product-media-height) - 12px);
    aspect-ratio: auto;
    object-fit: contain;
    object-position: center bottom;
}

.current-project-body .product-topline {
    color: var(--purple);
}

.drone-media {
    align-items: center;
    min-height: 0;
    background:
        radial-gradient(circle at 24% 24%, rgba(167, 125, 55, 0.24), transparent 28%),
        radial-gradient(circle at 78% 72%, rgba(45, 95, 134, 0.18), transparent 30%),
        linear-gradient(135deg, rgba(94, 77, 130, 0.16), rgba(40, 92, 73, 0.12)),
        #f4f1ea;
}

.drone-media img {
    display: block;
    width: min(88%, 360px);
    height: auto;
    border: 1px solid rgba(23, 23, 23, 0.14);
    border-radius: 8px;
    box-shadow: 0 18px 46px rgba(23, 23, 23, 0.16);
}

.drone-schematic {
    position: relative;
    width: min(74%, 520px);
    aspect-ratio: 16 / 9;
    border: 1px solid rgba(23, 23, 23, 0.14);
    border-radius: 8px;
    background:
        linear-gradient(90deg, rgba(23, 23, 23, 0.05) 1px, transparent 1px),
        linear-gradient(180deg, rgba(23, 23, 23, 0.05) 1px, transparent 1px),
        rgba(255, 255, 255, 0.82);
    background-size: 32px 32px;
    box-shadow: 0 18px 46px rgba(23, 23, 23, 0.16);
}

.drone-arm {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 54%;
    height: 8px;
    border-radius: 999px;
    background: #2f3a37;
    transform: translate(-50%, -50%);
}

.drone-arm-vertical {
    width: 8px;
    height: 54%;
}

.drone-rotor {
    position: absolute;
    width: 84px;
    aspect-ratio: 1;
    border: 8px solid #171717;
    border-radius: 999px;
    background: radial-gradient(circle, #ffffff 0 20%, rgba(94, 77, 130, 0.16) 21% 100%);
}

.drone-rotor-top-left {
    left: 14%;
    top: 14%;
}

.drone-rotor-top-right {
    right: 14%;
    top: 14%;
}

.drone-rotor-bottom-left {
    left: 14%;
    bottom: 14%;
}

.drone-rotor-bottom-right {
    right: 14%;
    bottom: 14%;
}

.drone-body {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 124px;
    height: 72px;
    border-radius: 18px;
    background: #171717;
    box-shadow: 0 14px 30px rgba(23, 23, 23, 0.24);
    transform: translate(-50%, -50%);
}

.drone-body::after {
    content: "";
    position: absolute;
    inset: 16px 24px;
    border-radius: 999px;
    background: linear-gradient(90deg, #5e4d82, #d9b66d);
}

.drone-tablet {
    position: absolute;
    right: 9%;
    bottom: 8%;
    width: 92px;
    height: 62px;
    border: 7px solid #171717;
    border-radius: 8px;
    background:
        linear-gradient(90deg, rgba(94, 77, 130, 0.18) 1px, transparent 1px),
        linear-gradient(180deg, rgba(94, 77, 130, 0.18) 1px, transparent 1px),
        #ffffff;
    background-size: 14px 14px;
    box-shadow: 0 12px 24px rgba(23, 23, 23, 0.18);
}

.product-link {
    display: grid;
    grid-template-rows: var(--product-media-height) var(--product-card-copy-height);
    height: 100%;
    text-decoration: none;
}

.product-card:hover,
.product-card:focus-within {
    border-color: var(--line-strong);
    transform: translateY(-2px);
    transition: border-color 180ms ease, transform 180ms ease;
}

.product-media {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height: 330px;
    padding: 14px 28px 0;
    background:
        linear-gradient(135deg, rgba(40, 92, 73, 0.12), rgba(189, 101, 79, 0.12)),
        #f4f1ea;
    overflow: hidden;
}

.product-media-phone img {
    width: min(72%, 260px);
    aspect-ratio: 9 / 19.5;
    object-fit: cover;
    object-position: top;
    border-radius: 28px 28px 0 0;
    box-shadow: 0 18px 46px rgba(23, 23, 23, 0.22);
}

.product-media-wide {
    align-items: center;
    min-height: 260px;
    padding: 24px;
    background:
        linear-gradient(135deg, rgba(45, 95, 134, 0.14), rgba(167, 125, 55, 0.16)),
        #f3f5f1;
}

.product-media-wide img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: top left;
    border: 1px solid rgba(23, 23, 23, 0.14);
    border-radius: 8px;
    box-shadow: 0 16px 42px rgba(23, 23, 23, 0.16);
}

.listing-card .product-media-wide img {
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
}

.product-body {
    position: relative;
    display: grid;
    gap: 10px;
    padding: 22px;
    border-top: 1px solid var(--line);
}

.product-topline {
    display: block;
    max-width: calc(100% - 76px);
    color: var(--green);
    font-size: 12px;
    font-weight: 820;
    letter-spacing: 0.06em;
    line-height: 1.2;
    text-transform: uppercase;
}

.product-store-badges {
    position: absolute;
    top: 18px;
    right: 18px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.store-logo {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: 1px solid rgba(23, 23, 23, 0.14);
    border-radius: 999px;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(23, 23, 23, 0.12);
}

.store-logo-apple {
    background: #171717;
}

.store-logo-apple::before {
    content: "";
    width: 14px;
    height: 17px;
    background: #ffffff;
    -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.152 6.896c-.948 0-2.415-1.078-3.96-1.04-2.04.027-3.91 1.183-4.961 3.014-2.117 3.675-.546 9.103 1.519 12.09 1.013 1.454 2.208 3.09 3.792 3.039 1.52-.065 2.09-.987 3.935-.987 1.831 0 2.35.987 3.96.948 1.637-.026 2.676-1.48 3.676-2.948 1.156-1.688 1.636-3.325 1.662-3.415-.039-.013-3.182-1.221-3.22-4.857-.026-3.04 2.48-4.494 2.597-4.559-1.429-2.09-3.623-2.324-4.39-2.376-2-.156-3.675 1.09-4.61 1.09zm3.378-3.066c.843-1.012 1.4-2.427 1.245-3.83-1.207.052-2.662.805-3.532 1.818-.778.896-1.454 2.338-1.273 3.714 1.338.104 2.715-.688 3.56-1.702z'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.152 6.896c-.948 0-2.415-1.078-3.96-1.04-2.04.027-3.91 1.183-4.961 3.014-2.117 3.675-.546 9.103 1.519 12.09 1.013 1.454 2.208 3.09 3.792 3.039 1.52-.065 2.09-.987 3.935-.987 1.831 0 2.35.987 3.96.948 1.637-.026 2.676-1.48 3.676-2.948 1.156-1.688 1.636-3.325 1.662-3.415-.039-.013-3.182-1.221-3.22-4.857-.026-3.04 2.48-4.494 2.597-4.559-1.429-2.09-3.623-2.324-4.39-2.376-2-.156-3.675 1.09-4.61 1.09zm3.378-3.066c.843-1.012 1.4-2.427 1.245-3.83-1.207.052-2.662.805-3.532 1.818-.778.896-1.454 2.338-1.273 3.714 1.338.104 2.715-.688 3.56-1.702z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.store-logo-google::before {
    content: "";
    width: 15px;
    height: 17px;
    background: linear-gradient(135deg, #3ddc84 0 33%, #4285f4 33% 58%, #fbbc04 58% 76%, #ea4335 76% 100%);
    clip-path: polygon(0 0, 100% 50%, 0 100%, 0 60%, 45% 50%, 0 40%);
}

.store-logo-web {
    background: #5e4d82;
}

.store-logo-web::before {
    content: "";
    box-sizing: border-box;
    width: 15px;
    height: 15px;
    border: 2px solid #ffffff;
    border-radius: 999px;
    background:
        linear-gradient(#ffffff, #ffffff) center / 100% 2px no-repeat,
        linear-gradient(90deg, transparent 34%, #ffffff 34% 43%, transparent 43% 57%, #ffffff 57% 66%, transparent 66%) center / 100% 100% no-repeat;
}

.nav-store-badges .store-logo {
    width: 22px;
    height: 22px;
    box-shadow: 0 6px 16px rgba(23, 23, 23, 0.12);
}

.nav-store-badges .store-logo-apple::before {
    width: 11px;
    height: 14px;
}

.nav-store-badges .store-logo-google::before {
    width: 12px;
    height: 14px;
}

.nav-store-badges .store-logo-web::before {
    width: 13px;
    height: 13px;
}

.product-body.has-web-badge .product-topline,
.product-body.has-web-badge strong {
    max-width: calc(100% - 112px);
}

.product-body strong {
    display: block;
    max-width: calc(100% - 76px);
    font-size: 24px;
    line-height: 1.08;
}

.product-body span:last-child {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.48;
}

.section-band {
    padding: 88px 0;
    background: #1f2824;
    color: #fbfaf5;
}

.workflow-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 56px;
    align-items: start;
}

.workflow-layout > div p {
    margin-top: 22px;
    color: rgba(251, 250, 245, 0.72);
}

.dark-company-layout {
    align-items: center;
}

.dark-company-copy p {
    color: rgba(251, 250, 245, 0.72);
}

.dark-company-panel {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(251, 250, 245, 0.16);
    box-shadow: none;
}

.dark-company-panel div {
    border-color: rgba(251, 250, 245, 0.14);
}

.dark-company-panel span,
.dark-text-link {
    color: #d9b66d;
}

.dark-company-panel strong {
    color: #fbfaf5;
}

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

.workflow-list li {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 10px 18px;
    padding: 22px 0;
    border-top: 1px solid rgba(251, 250, 245, 0.18);
}

.workflow-list li:last-child {
    border-bottom: 1px solid rgba(251, 250, 245, 0.18);
}

.workflow-list span {
    grid-row: span 2;
    color: #cfa964;
    font-size: 14px;
    font-weight: 820;
}

.workflow-list strong {
    font-size: 22px;
    line-height: 1.1;
}

.workflow-list p {
    margin: 0;
    color: rgba(251, 250, 245, 0.68);
    font-size: 15px;
    line-height: 1.5;
}

.company-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
    gap: 52px;
    align-items: start;
    padding: 92px 0 110px;
}

.company-copy p {
    margin-top: 22px;
}

.text-link {
    display: inline-flex;
    margin-top: 26px;
    color: var(--green);
    font-size: 15px;
    font-weight: 780;
    text-decoration-thickness: 2px;
    text-underline-offset: 6px;
}

.company-panel {
    display: grid;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: var(--shadow-card);
}

.company-panel div {
    display: grid;
    gap: 7px;
    padding: 22px;
    border-bottom: 1px solid var(--line);
}

.company-panel div:last-child {
    border-bottom: none;
}

.company-panel span {
    color: var(--coral);
    font-size: 12px;
    font-weight: 820;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.company-panel strong {
    font-size: 19px;
    line-height: 1.2;
}

.section-band .dark-company-panel {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(251, 250, 245, 0.16);
    box-shadow: none;
}

.section-band .dark-company-panel div {
    border-color: rgba(251, 250, 245, 0.14);
}

.section-band .dark-company-panel span,
.section-band .dark-text-link {
    color: #d9b66d;
}

.section-band .dark-company-panel strong {
    color: #fbfaf5;
}

@media (max-width: 1020px) {
    .hero {
        min-height: 84svh;
        align-items: flex-start;
        padding-top: 132px;
    }

    .hero-media {
        inset: 300px auto 0 2%;
        width: 940px;
        min-width: 0;
        opacity: 0.92;
    }

    .hero::after {
        background:
            linear-gradient(180deg, rgba(251, 250, 245, 0.98) 0%, rgba(251, 250, 245, 0.92) 34%, rgba(251, 250, 245, 0.32) 72%, var(--paper) 100%);
    }

    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-areas: none;
        grid-template-rows: auto;
    }

    .wide-card {
        grid-area: auto;
        grid-column: auto;
        grid-row: auto;
        min-height: var(--product-card-height);
    }

    .product-stack {
        display: contents;
    }

    .app-vitals-card,
    .nextstop-card,
    .chime-card,
    .drone-card,
    .dynamic-island-card,
    .kind-cue-card {
        grid-area: auto;
    }

    .workflow-layout,
    .company-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .site-header {
        position: sticky;
        align-items: center;
        flex-direction: row;
        padding: 12px 14px;
    }

    .brand-lockup span {
        max-width: 132px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .site-menu-toggle {
        display: inline-flex;
        flex: 0 0 auto;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 8px);
        left: 14px;
        right: 14px;
        display: grid;
        gap: 6px;
        padding: 8px;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.97);
        box-shadow: 0 18px 48px rgba(23, 23, 23, 0.16);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-6px);
        transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
        visibility: hidden;
        white-space: normal;
        z-index: 30;
    }

    .site-header.is-menu-open .site-nav {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
        visibility: visible;
    }

    .site-nav-item {
        width: 100%;
    }

    .site-nav a,
    .site-nav-trigger {
        justify-content: space-between;
        width: 100%;
        min-height: 44px;
        padding: 0 12px;
        font-size: 14px;
    }

    .site-nav-menu {
        position: static;
        width: 100%;
        min-width: 0;
        margin-top: 4px;
        box-shadow: none;
        backdrop-filter: none;
    }

    .site-nav-menu::before {
        display: none;
    }

    .site-nav-item:hover .site-nav-menu {
        display: none;
    }

    .site-nav-item.is-open .site-nav-menu {
        display: grid;
    }

    .hero {
        min-height: 74svh;
        padding: 58px 20px 58px;
    }

    .hero h1 {
        font-size: clamp(48px, 18vw, 72px);
    }

    .hero p {
        font-size: 18px;
    }

    .hero-media {
        top: 392px;
        left: -86px;
        width: 790px;
        transform: scale(0.82);
        transform-origin: top left;
    }

    .frame-listing {
        width: 500px;
        height: 260px;
        left: 210px;
    }

    .frame-nextstop {
        right: 36px;
    }

    .frame-vitals {
        right: 132px;
    }

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

    .section-heading {
        align-items: start;
        flex-direction: column;
    }

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

    .product-card,
    .wide-card {
        height: var(--product-card-height);
        min-height: var(--product-card-height);
    }

    .drone-schematic {
        width: min(88%, 420px);
    }

    .drone-rotor {
        width: 60px;
        border-width: 6px;
    }

    .drone-body {
        width: 96px;
        height: 58px;
    }

    .drone-tablet {
        width: 72px;
        height: 50px;
        border-width: 6px;
    }

    .product-stack {
        min-height: 0;
    }

    .product-media {
        min-height: 310px;
    }

    .product-index {
        padding-top: 58px;
    }

    .section-band {
        padding: 64px 0;
    }

    .company-section {
        padding: 64px 0 78px;
    }
}

@media (max-width: 520px) {
    .site-header {
        align-items: center;
        flex-direction: row;
        gap: 12px;
    }

    .site-nav {
        width: auto;
    }

    .hero {
        min-height: 74svh;
    }

    .hero-copy {
        width: 100%;
    }

    .hero h1 {
        font-size: clamp(44px, 17vw, 62px);
    }

    .hero-media {
        top: 430px;
        left: -126px;
        transform: scale(0.68);
    }

    .product-strip,
    .section-shell {
        width: auto;
    }

    .section-shell {
        margin-inline: 18px;
    }

    .product-strip {
        padding-inline: 18px;
    }

    .product-body {
        padding: 18px;
    }
}

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

    *,
    *::before,
    *::after {
        transition-duration: 0.001ms !important;
        animation-duration: 0.001ms !important;
    }
}
