:root {
    --navy: #0d1b2a;
    --navy-soft: #142a42;
    --teal: #00a99d;
    --teal-bright: #00b4a6;
    --teal-pale: #dff8f5;
    --blue: #3da9fc;
    --green: #68bc4f;
    --coral: #ff7a59;
    --lavender: #8b6be8;
    --ink: #142033;
    --muted: #667085;
    --line: #dfe5ec;
    --surface: #ffffff;
    --surface-soft: #f4f7f9;
    --surface-teal: #edfafa;
    --shadow-sm: 0 8px 30px rgba(13, 27, 42, 0.07);
    --shadow-md: 0 22px 60px rgba(13, 27, 42, 0.12);
    --radius-sm: 14px;
    --radius-md: 22px;
    --radius-lg: 32px;
    --nav-height: 76px;
    --content-width: 1180px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--nav-height) + 24px);
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    background: var(--surface);
    color: var(--ink);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
}

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

a {
    color: inherit;
}

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

:focus-visible {
    outline: 3px solid var(--blue);
    outline-offset: 4px;
}

.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;
}

.skip-link {
    position: fixed;
    left: 16px;
    top: 12px;
    z-index: 2000;
    padding: 10px 16px;
    border-radius: 10px;
    background: var(--navy);
    color: white;
    text-decoration: none;
    transform: translateY(-150%);
    transition: transform 160ms ease;
}

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

.container {
    width: min(calc(100% - 40px), var(--content-width));
    margin-inline: auto;
}

.narrow-container {
    max-width: 780px;
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--nav-height);
    border-bottom: 1px solid rgba(13, 27, 42, 0.08);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.nav-container {
    position: relative;
    width: min(calc(100% - 40px), var(--content-width));
    height: 100%;
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo,
.footer-logo {
    color: var(--navy);
    font-size: 1.35rem;
    font-weight: 850;
    letter-spacing: -0.055em;
    line-height: 1;
    text-decoration: none;
}

.logo span,
.footer-logo span,
.product-hero h1 span {
    color: var(--teal);
}

.nav-panel {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    position: relative;
    padding: 10px 12px;
    border-radius: 10px;
    color: #526071;
    font-size: 0.9rem;
    font-weight: 650;
    text-decoration: none;
    transition: color 160ms ease, background 160ms ease;
}

.nav-link:hover,
.nav-link[aria-current="page"] {
    background: var(--surface-soft);
    color: var(--navy);
}

.nav-link[aria-current="page"]::after {
    position: absolute;
    right: 12px;
    bottom: 5px;
    left: 12px;
    height: 2px;
    border-radius: 999px;
    background: var(--teal);
    content: "";
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 0;
    border-radius: 12px;
    background: var(--surface-soft);
    color: var(--navy);
    cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
    display: block;
    width: 22px;
    height: 2px;
    margin: 4px auto;
    border-radius: 999px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
}

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

.menu-toggle[aria-expanded="true"] > span:nth-child(3) {
    opacity: 0;
}

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

.button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border: 1px solid var(--navy);
    border-radius: var(--radius-sm);
    background: var(--navy);
    color: white;
    font-weight: 750;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.button:hover {
    border-color: var(--teal);
    background: var(--teal);
    box-shadow: 0 10px 24px rgba(0, 169, 157, 0.2);
    transform: translateY(-2px);
}

.button-small {
    min-height: 40px;
    padding: 9px 16px;
    border-radius: 12px;
    font-size: 0.88rem;
}

.button-secondary {
    border-color: var(--line);
    background: white;
    color: var(--navy);
}

.button-secondary:hover {
    border-color: var(--teal);
    background: var(--surface-teal);
    color: var(--navy);
    box-shadow: none;
}

.button-light {
    border-color: white;
    background: white;
    color: var(--navy);
}

.button-light:hover {
    border-color: var(--teal-pale);
    background: var(--teal-pale);
    color: var(--navy);
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: var(--teal);
    font-size: 0.76rem;
    font-weight: 850;
    letter-spacing: 0.12em;
    line-height: 1.3;
    text-transform: uppercase;
}

.eyebrow-light {
    color: #8de9e1;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 5px rgba(104, 188, 79, 0.16);
}

.hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 12%, rgba(0, 180, 166, 0.16), transparent 30%),
        radial-gradient(circle at 90% 4%, rgba(61, 169, 252, 0.15), transparent 28%),
        linear-gradient(180deg, #fbfefe 0%, #ffffff 100%);
}

.hero::after {
    position: absolute;
    right: -180px;
    bottom: -220px;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(0, 169, 157, 0.12);
    border-radius: 50%;
    content: "";
}

.hero-home {
    padding: clamp(72px, 9vw, 124px) 0 clamp(80px, 10vw, 142px);
}

.hero-grid,
.product-hero-grid,
.contact-grid {
    display: grid;
    align-items: center;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    gap: clamp(48px, 8vw, 108px);
}

.hero-copy {
    position: relative;
    z-index: 1;
}

.hero h1,
.product-hero h1,
.contact-section h1,
.policy-hero h1 {
    max-width: 860px;
    margin: 0;
    color: var(--navy);
    font-size: clamp(2.55rem, 6.2vw, 5.4rem);
    font-weight: 850;
    letter-spacing: -0.065em;
    line-height: 0.99;
}

.hero-lede {
    max-width: 680px;
    margin: 26px 0 0;
    color: var(--muted);
    font-size: clamp(1.08rem, 2vw, 1.28rem);
    line-height: 1.65;
}

.hero-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    margin: 30px 0 0;
    padding: 0;
    color: #526071;
    font-size: 0.88rem;
    font-weight: 650;
    list-style: none;
}

.hero-facts li::before {
    margin-right: 8px;
    color: var(--teal);
    content: "•";
}

.hero-visual {
    position: relative;
    z-index: 1;
    min-height: 500px;
    display: grid;
    place-items: center;
}

.app-icon-shell,
.product-icon-wrap {
    position: relative;
    z-index: 2;
    overflow: hidden;
    border: 1px solid rgba(13, 27, 42, 0.08);
    border-radius: 28%;
    background: white;
    box-shadow: var(--shadow-md);
}

.app-icon-shell {
    width: min(78%, 350px);
    transform: rotate(-2deg);
}

.studio-loop-frame {
    --studio-edge-fade: radial-gradient(
        ellipse 50% 50% at center,
        #000 0 58%,
        rgba(0, 0, 0, 0.88) 70%,
        rgba(0, 0, 0, 0.52) 80%,
        rgba(0, 0, 0, 0.2) 88%,
        rgba(0, 0, 0, 0.06) 94%,
        transparent 100%
    );
    position: relative;
    z-index: 2;
    width: min(92%, 460px);
    aspect-ratio: 400 / 255;
    border-radius: 42px;
    transform: rotate(-1deg);
}

.studio-loop-frame::after {
    position: absolute;
    inset: -1px;
    z-index: 2;
    border-radius: inherit;
    background:
        linear-gradient(135deg, rgba(0, 169, 157, 0.1), transparent 46%),
        radial-gradient(circle at 85% 12%, rgba(61, 169, 252, 0.12), transparent 30%);
    content: "";
    opacity: 0.72;
    pointer-events: none;
    -webkit-mask-image: var(--studio-edge-fade);
    mask-image: var(--studio-edge-fade);
}

.studio-loop-frame picture,
.studio-loop-frame img {
    display: block;
    width: 100%;
    height: 100%;
}

.studio-loop-frame picture {
    animation: studio-loop-visibility 13.01s ease-in-out infinite;
    filter:
        drop-shadow(0 24px 26px rgba(13, 27, 42, 0.16))
        drop-shadow(0 0 24px rgba(0, 169, 157, 0.1));
    transform-origin: center;
    will-change: opacity, transform;
    -webkit-mask-image: var(--studio-edge-fade);
    mask-image: var(--studio-edge-fade);
}

@keyframes studio-loop-visibility {
    0% {
        opacity: 0;
        transform: scale(0.985);
    }

    6.15%,
    69.95% {
        opacity: 1;
        transform: scale(1);
    }

    76.86%,
    100% {
        opacity: 0;
        transform: scale(0.985);
    }
}

.studio-loop-frame img {
    object-fit: cover;
    filter: saturate(0.82) contrast(1.04) brightness(0.92);
}

.orbit {
    position: absolute;
    border: 1px dashed rgba(0, 169, 157, 0.28);
    border-radius: 50%;
}

.orbit-one {
    width: 420px;
    height: 420px;
}

.orbit-two {
    width: 520px;
    height: 300px;
    transform: rotate(24deg);
}

.floating-note {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 12px 16px;
    border: 1px solid rgba(13, 27, 42, 0.07);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-sm);
    color: var(--navy);
    font-size: 0.86rem;
    font-weight: 750;
}

.floating-note span {
    color: var(--teal);
    font-size: 1.05rem;
}

.note-care {
    top: 52px;
    right: 0;
}

.note-private {
    bottom: 72px;
    left: 0;
}

.section {
    padding: clamp(74px, 9vw, 120px) 0;
}

.section-soft {
    background: var(--surface-soft);
}

.compact-section {
    padding-block: 76px;
}

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

.section-heading h2,
.studio-intro-heading h2,
.ideas-heading h3,
.centered-heading h2,
.cta-card h2,
.privacy-callout h2,
.release-note h2 {
    margin: 0;
    color: var(--navy);
    font-size: clamp(2rem, 4vw, 3.35rem);
    font-weight: 830;
    letter-spacing: -0.05em;
    line-height: 1.08;
}

.section-heading > p {
    max-width: 440px;
    margin: 0 0 6px;
    color: var(--muted);
    text-align: right;
}

.studio-intro-section {
    background:
        radial-gradient(circle at 92% 18%, rgba(0, 180, 166, 0.08), transparent 25%),
        white;
}

.studio-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
    gap: clamp(36px, 7vw, 92px);
    align-items: start;
}

.studio-intro-heading h2 {
    max-width: 520px;
}

.studio-intro-copy {
    max-width: 660px;
    padding-top: 4px;
}

.studio-intro-copy p {
    margin: 0;
    color: #435166;
    font-size: clamp(1.05rem, 1.8vw, 1.2rem);
    line-height: 1.75;
}

.studio-intro-copy p + p {
    margin-top: 18px;
}

.studio-principles {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 8px;
}

.principle-card {
    padding: 28px 28px 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.86);
}

.principle-card > span {
    color: var(--teal);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.14em;
}

.principle-card h3 {
    margin: 14px 0 6px;
    color: var(--navy);
    font-size: 1.15rem;
}

.principle-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
}

.project-directory-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: clamp(24px, 4vw, 42px);
    align-items: center;
    padding: clamp(26px, 4vw, 42px);
    border: 1px solid rgba(13, 27, 42, 0.08);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 100% 0%, rgba(0, 180, 166, 0.1), transparent 32%),
        white;
    box-shadow: var(--shadow-sm);
}

.project-directory-icon {
    width: clamp(88px, 10vw, 116px);
    overflow: hidden;
    border: 1px solid rgba(13, 27, 42, 0.08);
    border-radius: 28%;
    box-shadow: 0 12px 28px rgba(13, 27, 42, 0.1);
}

.project-directory-copy {
    min-width: 0;
}

.project-kicker {
    margin: 13px 0 0;
    color: var(--muted);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.project-directory-copy h3 {
    margin: 0;
    color: var(--navy);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 850;
    letter-spacing: -0.06em;
    line-height: 1.08;
}

.project-directory-copy h3 span {
    color: var(--teal);
}

.project-summary {
    max-width: 620px;
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 1rem;
}

.project-directory-action {
    justify-self: end;
}

.ideas-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 32px;
    margin: clamp(64px, 8vw, 96px) 0 34px;
    padding-top: clamp(52px, 7vw, 76px);
    border-top: 1px solid rgba(13, 27, 42, 0.1);
}

.ideas-heading h3 {
    font-size: clamp(1.8rem, 3.4vw, 2.7rem);
}

.ideas-heading > p {
    max-width: 430px;
    margin: 0 0 5px;
    color: var(--muted);
    text-align: right;
}

.featured-product {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
    gap: clamp(40px, 7vw, 90px);
    padding: clamp(34px, 6vw, 72px);
    overflow: hidden;
    border: 1px solid rgba(13, 27, 42, 0.08);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 100% 0%, rgba(0, 180, 166, 0.14), transparent 36%),
        white;
    box-shadow: var(--shadow-sm);
}

.featured-copy h3 {
    max-width: 700px;
    margin: 16px 0;
    color: var(--navy);
    font-size: clamp(1.9rem, 3.6vw, 3.1rem);
    letter-spacing: -0.045em;
    line-height: 1.12;
}

.featured-copy > p {
    max-width: 640px;
    color: var(--muted);
    font-size: 1.08rem;
}

.status-badge {
    display: inline-flex;
    padding: 7px 11px;
    border: 1px solid rgba(139, 107, 232, 0.18);
    border-radius: 999px;
    background: rgba(139, 107, 232, 0.1);
    color: #6946c7;
    font-size: 0.7rem;
    font-weight: 850;
    letter-spacing: 0.1em;
    line-height: 1;
    text-transform: uppercase;
}

.status-active {
    border-color: rgba(0, 169, 157, 0.2);
    background: var(--teal-pale);
    color: #067c74;
}

.check-list {
    display: grid;
    gap: 10px;
    margin: 28px 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 30px;
    color: #435166;
}

.app-store-section {
    padding-top: 0;
}

.app-store-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: clamp(22px, 4vw, 48px);
    align-items: center;
    padding: clamp(28px, 5vw, 62px);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 12% 10%, rgba(0, 180, 166, 0.24), transparent 32%),
        linear-gradient(135deg, #102338, #08131f);
    color: white;
    box-shadow: var(--shadow-lg);
}

.app-store-icon {
    display: grid;
    width: clamp(66px, 8vw, 92px);
    height: clamp(66px, 8vw, 92px);
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 24px;
    background: linear-gradient(145deg, #58b8ff, #1989f3);
    color: white;
    font-size: clamp(2rem, 4vw, 3.1rem);
    font-weight: 750;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.2);
}

.app-store-copy h2 {
    margin: 4px 0 10px;
    color: white;
    font-size: clamp(1.7rem, 3.2vw, 2.8rem);
    letter-spacing: -0.04em;
}

.app-store-copy p {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
}

.app-store-button {
    display: grid;
    min-width: 190px;
    padding: 12px 22px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 13px;
    background: #050505;
    color: white;
    line-height: 1.05;
    text-decoration: none;
    transition: transform 180ms ease, background 180ms ease;
}

.app-store-button:hover {
    transform: translateY(-2px);
    background: #151515;
}

.app-store-button small {
    font-size: 0.68rem;
}

.app-store-button strong {
    font-size: 1.45rem;
    letter-spacing: -0.03em;
}

.check-list li::before {
    position: absolute;
    left: 0;
    top: 1px;
    display: grid;
    width: 21px;
    height: 21px;
    place-items: center;
    border-radius: 50%;
    background: var(--teal-pale);
    color: var(--teal);
    content: "✓";
    font-size: 0.72rem;
    font-weight: 900;
}

.text-link,
.back-link {
    color: #087d77;
    font-weight: 800;
    text-decoration-color: rgba(8, 125, 119, 0.28);
    text-decoration-thickness: 2px;
    text-underline-offset: 5px;
}

.text-link:hover,
.back-link:hover {
    color: var(--navy);
    text-decoration-color: var(--navy);
}

.feature-stack {
    display: grid;
    align-content: center;
    gap: 14px;
}

.mini-feature {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px;
    border: 1px solid rgba(13, 27, 42, 0.06);
    border-radius: 18px;
    background: white;
    box-shadow: 0 8px 20px rgba(13, 27, 42, 0.04);
}

.mini-icon {
    display: grid;
    width: 50px;
    height: 50px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 15px;
    color: white;
    font-size: 1.2rem;
    font-weight: 900;
}

.feature-teal .mini-icon { background: var(--teal); }
.feature-coral .mini-icon { background: var(--coral); }
.feature-blue .mini-icon { background: var(--blue); }

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

.mini-feature strong {
    color: var(--navy);
    font-size: 1.02rem;
}

.mini-feature div > span {
    color: var(--muted);
    font-size: 0.86rem;
}

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

.beta-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 22px;
    padding: clamp(26px, 5vw, 42px);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: white;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.beta-card:hover {
    border-color: rgba(0, 169, 157, 0.32);
    box-shadow: var(--shadow-sm);
    transform: translateY(-4px);
}

.beta-icon {
    display: grid;
    width: 68px;
    height: 68px;
    place-items: center;
    border-radius: 20px;
    background: var(--surface-soft);
    font-size: 2rem;
}

.beta-copy h3 {
    margin: 12px 0 2px;
    color: var(--navy);
    font-size: 1.65rem;
    letter-spacing: -0.035em;
}

.beta-copy p {
    margin: 0 0 18px;
    color: var(--muted);
}

.cta-section {
    padding: clamp(70px, 9vw, 112px) 0;
}

.cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 38px;
    padding: clamp(34px, 6vw, 70px);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 100% 0%, rgba(0, 180, 166, 0.3), transparent 34%),
        var(--navy);
    color: white;
}

.cta-card h2 {
    max-width: 760px;
    color: white;
}

.product-hero {
    padding: clamp(70px, 9vw, 120px) 0;
    background:
        radial-gradient(circle at 10% 10%, rgba(0, 180, 166, 0.13), transparent 28%),
        linear-gradient(180deg, #fbfefe, white);
}

.product-hero-grid {
    grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
}

.product-icon-wrap {
    width: min(100%, 390px);
    justify-self: center;
}

.product-demo {
    --product-video-edge-fade: radial-gradient(
        ellipse 50% 50% at center,
        #000 0 60%,
        rgba(0, 0, 0, 0.88) 71%,
        rgba(0, 0, 0, 0.52) 81%,
        rgba(0, 0, 0, 0.2) 89%,
        rgba(0, 0, 0, 0.06) 95%,
        transparent 100%
    );
    aspect-ratio: 1;
    isolation: isolate;
    background: transparent;
    transition: border-color 420ms ease, box-shadow 420ms ease;
}

.product-demo-poster,
.product-demo-video {
    width: 100%;
    height: 100%;
}

.product-demo-poster {
    position: relative;
    z-index: 2;
    object-fit: cover;
    opacity: 1;
    transform: scale(1);
    transition: opacity 420ms ease, transform 700ms ease;
}

.product-demo-video {
    position: absolute;
    top: 50%;
    right: 0;
    bottom: auto;
    left: 0;
    z-index: 1;
    display: block;
    aspect-ratio: 978 / 718;
    height: auto;
    border: 0;
    background: transparent;
    filter:
        drop-shadow(0 22px 30px rgba(13, 27, 42, 0.12))
        drop-shadow(0 0 22px rgba(0, 169, 157, 0.08));
    object-fit: contain;
    opacity: 0;
    transform: translateY(-50%) scale(0.985);
    transition: opacity 420ms ease, transform 700ms ease;
    -webkit-mask-image: var(--product-video-edge-fade);
    mask-image: var(--product-video-edge-fade);
}

.product-demo.is-playing .product-demo-poster {
    opacity: 0;
    transform: scale(1.025);
    pointer-events: none;
}

.product-demo.is-playing .product-demo-video {
    opacity: 1;
    transform: translateY(-50%) scale(1);
}

.product-demo.is-playing {
    border-color: transparent;
    box-shadow: none;
}

.product-demo-toggle {
    position: absolute;
    right: 18px;
    bottom: 18px;
    z-index: 3;
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    gap: 9px;
    padding: 9px 14px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    background: rgba(13, 27, 42, 0.84);
    box-shadow: 0 8px 24px rgba(13, 27, 42, 0.2);
    color: white;
    cursor: pointer;
    font: inherit;
    font-size: 0.78rem;
    font-weight: 760;
    letter-spacing: 0.01em;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: background 160ms ease, transform 160ms ease;
}

.product-demo-toggle:hover {
    background: rgba(0, 169, 157, 0.94);
    transform: translateY(-1px);
}

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

.product-demo-toggle-icon {
    width: 0.9em;
    text-align: center;
}

.product-hero h1 {
    margin-top: 18px;
}

.product-tagline {
    margin: 20px 0 0;
    color: var(--navy);
    font-size: clamp(1.25rem, 2.4vw, 1.75rem);
    font-weight: 760;
    letter-spacing: -0.025em;
}

.centered-heading {
    max-width: 780px;
    margin: 0 auto 48px;
    text-align: center;
}

.centered-heading p {
    margin: 20px auto 0;
    color: var(--muted);
    font-size: 1.08rem;
}

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

.feature-card {
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: white;
}

.feature-symbol {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: 15px;
    color: white;
    font-size: 1.15rem;
    font-weight: 900;
}

.feature-symbol.coral { background: var(--coral); }
.feature-symbol.green { background: var(--green); }
.feature-symbol.blue { background: var(--blue); }
.feature-symbol.lavender { background: var(--lavender); }
.feature-symbol.teal { background: var(--teal); }
.feature-symbol.navy { background: var(--navy); }

.feature-card h3 {
    margin: 22px 0 8px;
    color: var(--navy);
    font-size: 1.2rem;
}

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

.product-board {
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: white;
    box-shadow: var(--shadow-sm);
}

.product-board figcaption {
    padding: 16px 22px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.85rem;
}

.ios-showcase {
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 48%, rgba(0, 180, 166, 0.11), transparent 28%),
        radial-gradient(circle at 94% 28%, rgba(61, 169, 252, 0.1), transparent 24%),
        white;
}

.ios-capture-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(20px, 2.6vw, 38px);
    align-items: stretch;
}

.ios-capture {
    display: grid;
    grid-template-rows: auto 1fr;
    align-content: start;
    margin: 0;
}

.ios-capture-raised {
    transform: none;
}

.ios-device-frame {
    overflow: hidden;
    padding: 7px;
    border: 1px solid rgba(13, 27, 42, 0.18);
    border-radius: clamp(34px, 5vw, 54px);
    background: #0b1016;
    box-shadow: 0 30px 70px rgba(13, 27, 42, 0.18);
}

.ios-device-frame img {
    width: 100%;
    border-radius: clamp(28px, 4.5vw, 47px);
}

.ios-capture figcaption {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-content: start;
    gap: 2px 10px;
    margin-top: 18px;
}

#preview-title,
#widget-title,
#watch-title,
#possibilities-title,
#app-store-title {
    scroll-margin-top: calc(var(--nav-height) + 28px);
}

.watch-showcase {
    overflow: hidden;
    background:
        radial-gradient(circle at 88% 35%, rgba(0, 180, 166, 0.14), transparent 31%),
        linear-gradient(180deg, #ffffff, #f5fbfb);
}

.watch-showcase-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1.08fr);
    gap: clamp(42px, 7vw, 96px);
    align-items: center;
}

.watch-copy h2 {
    margin: 8px 0 20px;
    color: var(--navy);
    font-size: clamp(2.2rem, 4.6vw, 4.35rem);
    letter-spacing: -0.055em;
    line-height: 0.98;
}

.watch-copy > p {
    margin: 0;
    color: var(--muted);
}

.watch-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
}

.watch-feature-grid > div {
    padding: 17px;
    border: 1px solid rgba(0, 180, 166, 0.18);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.8);
}

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

.watch-feature-grid strong {
    color: var(--navy);
    font-size: 0.9rem;
}

.watch-feature-grid span {
    margin-top: 5px;
    color: var(--muted);
    font-size: 0.78rem;
    line-height: 1.45;
}

.watch-captures {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(24px, 4vw, 42px);
    align-items: end;
    padding: clamp(30px, 5vw, 58px);
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, #14263a, #07111c);
    box-shadow: var(--shadow-lg);
}

.watch-capture {
    position: relative;
    z-index: 1;
    margin: 0;
}

.watch-capture-ultra {
    transform: translateY(-18px);
}

.watch-device {
    position: relative;
    overflow: visible;
    padding: 10px;
    border: 2px solid #3b4149;
    border-radius: 34% / 27%;
    background: #11151a;
    box-shadow: 0 24px 46px rgba(0, 0, 0, 0.42);
}

.watch-device-ultra {
    border-color: #8a8f92;
    background: #3c4144;
}

.watch-device img {
    width: 100%;
    border-radius: 31% / 24%;
}

.watch-crown {
    position: absolute;
    top: 29%;
    right: -9px;
    width: 9px;
    height: 34px;
    border-radius: 0 7px 7px 0;
    background: #555c64;
}

.watch-device-ultra .watch-crown {
    background: #ef6d3f;
}

.watch-capture figcaption {
    display: grid;
    gap: 3px;
    margin-top: 17px;
    text-align: center;
}

.watch-capture figcaption strong {
    color: white;
}

.watch-capture figcaption span,
.watch-capture-note {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.74rem;
}

.watch-capture-note {
    grid-column: 1 / -1;
    margin: 0;
    text-align: center;
}

.ios-capture figcaption > span {
    grid-row: 1 / 3;
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 50%;
    background: var(--teal);
    color: white;
    font-size: 0.72rem;
    font-weight: 850;
}

.ios-capture figcaption strong {
    color: var(--navy);
    font-size: 0.98rem;
}

.ios-capture figcaption small {
    color: var(--muted);
    line-height: 1.45;
}

.ios-showcase-copy h3 {
    margin: 0;
    color: var(--navy);
    font-size: clamp(1.8rem, 3.3vw, 3.1rem);
    letter-spacing: -0.045em;
    line-height: 1.04;
}

.ios-showcase-copy {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(260px, 0.85fr) minmax(320px, 1.15fr);
    gap: 18px clamp(32px, 6vw, 88px);
    align-items: start;
    margin-top: clamp(20px, 3vw, 42px);
}

.ios-showcase-copy .eyebrow,
.ios-showcase-copy h3 {
    grid-column: 1;
}

.ios-showcase-copy > p,
.ios-showcase-copy .check-list {
    grid-column: 2;
}

.ios-showcase-copy > p {
    grid-row: 1 / span 2;
    margin-top: 0;
}

.ios-showcase-copy > p {
    margin: 22px 0 0;
    color: var(--muted);
}

.check-list {
    display: grid;
    gap: 13px;
    margin: 26px 0 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 30px;
    color: var(--ink);
    font-size: 0.94rem;
    font-weight: 650;
}

.check-list li::before {
    position: absolute;
    top: 0.14em;
    left: 0;
    display: grid;
    width: 20px;
    height: 20px;
    place-items: center;
    border-radius: 50%;
    background: var(--teal-pale);
    color: var(--teal);
    content: "✓";
    font-size: 0.72rem;
    font-weight: 900;
}

.widget-showcase-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(430px, 1.18fr);
    gap: clamp(44px, 7vw, 96px);
    align-items: center;
}

.widget-copy h2 {
    max-width: 600px;
}

.widget-copy > p {
    max-width: 620px;
    margin: 22px 0 0;
    color: var(--muted);
    font-size: 1.05rem;
}

.widget-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 26px;
}

.widget-benefits span {
    padding: 7px 11px;
    border: 1px solid rgba(0, 169, 157, 0.24);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--navy);
    font-size: 0.78rem;
    font-weight: 760;
}

.widget-stage {
    padding: clamp(24px, 5vw, 48px);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 90% 10%, rgba(61, 169, 252, 0.2), transparent 36%),
        linear-gradient(145deg, #dff8f5, #edf2f8);
}

.today-widget {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 210px;
    padding: 22px;
    border: 1px solid rgba(13, 27, 42, 0.1);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 24px 55px rgba(13, 27, 42, 0.16);
    color: #161b22;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.today-widget-care {
    padding-right: 20px;
    border-right: 1px solid #d9dde2;
}

.today-widget-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.today-widget-heading strong {
    font-size: 0.92rem;
}

.today-widget-heading strong span,
.today-widget-item b {
    color: var(--teal);
}

.today-widget-heading small {
    color: var(--muted);
    font-weight: 750;
}

.today-widget-progress {
    height: 5px;
    margin: 13px 0 16px;
    overflow: hidden;
    border-radius: 999px;
    background: #dbe3e7;
}

.today-widget-progress i {
    display: block;
    width: 34%;
    height: 100%;
    border-radius: inherit;
    background: var(--teal);
}

.today-widget-item {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    margin-top: 11px;
}

.today-widget-item.is-done b {
    color: var(--green);
}

.today-widget-item > span {
    display: grid;
    line-height: 1.25;
}

.today-widget-item strong {
    font-size: 0.76rem;
}

.today-widget-item small,
.today-widget-next small {
    color: var(--muted);
    font-size: 0.65rem;
}

.today-widget-next {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 18px;
    padding-left: 20px;
}

.today-widget-next > div:first-child {
    display: grid;
    gap: 4px;
    line-height: 1.25;
}

.today-widget-next > div:first-child > strong {
    color: #e97717;
    font-size: 0.75rem;
}

.today-widget-next > div:first-child > b {
    font-size: 0.78rem;
}

.widget-shortcuts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
}

.widget-shortcuts span {
    padding: 9px 4px;
    border-radius: 9px;
    background: rgba(0, 169, 157, 0.12);
    color: var(--teal);
    font-size: 0.62rem;
    font-weight: 760;
    text-align: center;
}

.widget-stage > p {
    margin: 20px 0 0;
    color: #607080;
    font-size: 0.78rem;
    font-weight: 650;
    text-align: center;
}

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

.capability-card {
    padding: clamp(26px, 4vw, 38px);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: white;
    box-shadow: var(--shadow-sm);
}

.capability-card-wide {
    grid-column: span 2;
    background:
        radial-gradient(circle at 100% 0%, rgba(0, 180, 166, 0.13), transparent 36%),
        white;
}

.capability-card > span {
    color: var(--teal);
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.capability-card h3 {
    margin: 15px 0 10px;
    color: var(--navy);
    font-size: 1.24rem;
}

.capability-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.94rem;
}

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

.feature-story {
    position: relative;
    overflow: hidden;
    display: flex;
    min-width: 0;
    flex-direction: column;
    padding: clamp(28px, 4vw, 46px);
    border: 1px solid rgba(13, 27, 42, 0.08);
    border-radius: var(--radius-lg);
    background: radial-gradient(circle at 100% 0%, rgba(0, 180, 166, 0.11), transparent 34%), linear-gradient(160deg, #ffffff 0%, #f7fbfc 100%);
    box-shadow: var(--shadow-md);
}

.feature-story-map {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
    gap: clamp(32px, 6vw, 82px);
    align-items: center;
    background: radial-gradient(circle at 86% 20%, rgba(61, 169, 252, 0.16), transparent 34%), radial-gradient(circle at 4% 100%, rgba(104, 188, 79, 0.11), transparent 30%), white;
}

.feature-story-sharing {
    background: radial-gradient(circle at 100% 0%, rgba(104, 188, 79, 0.15), transparent 34%), linear-gradient(160deg, #ffffff 0%, #f8fcf8 100%);
}

.feature-story-copy { position: relative; z-index: 1; }

.feature-story-kicker {
    color: var(--teal);
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.feature-story h3 {
    max-width: 590px;
    margin: 14px 0;
    color: var(--navy);
    font-size: clamp(1.7rem, 3.2vw, 2.7rem);
    letter-spacing: -0.045em;
    line-height: 1.05;
}

.feature-story-copy > p {
    margin: 0;
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.7;
}

.feature-story-points {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.feature-story-points li {
    padding: 8px 11px;
    border: 1px solid rgba(0, 169, 157, 0.14);
    border-radius: 999px;
    background: rgba(0, 169, 157, 0.07);
    color: #335064;
    font-size: 0.72rem;
    font-weight: 720;
}

.feature-story-action {
    width: fit-content;
    margin-top: 20px;
}

.feature-phone {
    position: relative;
    width: min(84%, 300px);
    margin: 34px auto -190px;
    padding: 7px;
    border: 2px solid #172331;
    border-radius: 44px;
    background: #172331;
    box-shadow: 0 30px 55px rgba(13, 27, 42, 0.24);
}

.feature-phone-map { width: min(100%, 340px); margin: 0 auto -230px; }
.feature-phone-sharing { margin-bottom: -120px; }

.feature-phone img {
    display: block;
    width: 100%;
    border-radius: 37px;
}

.feature-depth {
    display: grid;
    grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr);
    gap: clamp(30px, 6vw, 76px);
    margin-top: 28px;
    padding: clamp(30px, 5vw, 54px);
    border-radius: var(--radius-lg);
    background: var(--navy);
    color: white;
}

.feature-depth-heading h3 {
    margin: 14px 0 12px;
    font-size: clamp(1.55rem, 3vw, 2.35rem);
    letter-spacing: -0.04em;
    line-height: 1.08;
}

.feature-depth-heading p { margin: 0; color: rgba(255, 255, 255, 0.66); }

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

.feature-depth-grid > div {
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.055);
}

.feature-depth-grid strong,
.feature-depth-grid span { display: block; }
.feature-depth-grid strong { color: #7de0d8; font-size: 0.9rem; }
.feature-depth-grid span { margin-top: 7px; color: rgba(255, 255, 255, 0.68); font-size: 0.78rem; line-height: 1.55; }

.privacy-callout {
    padding: clamp(72px, 9vw, 112px) 0;
    background:
        radial-gradient(circle at 92% 10%, rgba(61, 169, 252, 0.23), transparent 32%),
        var(--navy);
    color: white;
}

.privacy-callout-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.privacy-callout h2 {
    max-width: 720px;
    color: white;
}

.sharing-hero {
    overflow: hidden;
    padding: clamp(72px, 9vw, 118px) 0;
    background:
        radial-gradient(circle at 5% 10%, rgba(0, 180, 166, 0.18), transparent 31%),
        radial-gradient(circle at 90% 80%, rgba(61, 169, 252, 0.15), transparent 32%),
        linear-gradient(150deg, #fbfefe 0%, #ffffff 62%, #f3fbff 100%);
}

.sharing-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(330px, 0.7fr);
    align-items: center;
    gap: clamp(44px, 8vw, 100px);
}

.sharing-hero-copy h1 {
    max-width: 820px;
    margin: 0;
    color: var(--navy);
    font-size: clamp(2.7rem, 6.6vw, 5.7rem);
    font-weight: 850;
    letter-spacing: -0.068em;
    line-height: 0.97;
}

.sharing-hero-copy > p {
    max-width: 700px;
    margin: 26px 0 0;
    color: var(--muted);
    font-size: clamp(1.05rem, 2vw, 1.24rem);
    line-height: 1.7;
}

.sharing-hero-panel {
    display: grid;
    gap: 12px;
    padding: 18px;
    border: 1px solid rgba(13, 27, 42, 0.08);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(18px);
}

.sharing-hero-panel > div {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    column-gap: 14px;
    padding: 18px;
    border-radius: 18px;
    background: var(--surface-soft);
}

.sharing-hero-panel > div > span {
    grid-row: 1 / span 2;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 14px;
    background: var(--teal-pale);
    color: #087d77;
    font-weight: 900;
}

.sharing-hero-panel strong,
.sharing-hero-panel small {
    display: block;
}

.sharing-hero-panel strong {
    color: var(--navy);
    font-size: 0.97rem;
}

.sharing-hero-panel small {
    margin-top: 2px;
    color: var(--muted);
    font-size: 0.78rem;
}

.sharing-flow-section {
    background: white;
}

.sharing-flow {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
    margin: 44px 0 0;
    padding: 0;
    list-style: none;
}

.sharing-flow li {
    min-width: 0;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: white;
    box-shadow: var(--shadow-sm);
}

.sharing-flow li > span {
    display: inline-grid;
    width: 34px;
    height: 34px;
    margin-bottom: 20px;
    place-items: center;
    border-radius: 50%;
    background: var(--navy);
    color: white;
    font-size: 0.7rem;
    font-weight: 850;
}

.sharing-flow strong,
.sharing-flow p {
    display: block;
}

.sharing-flow strong {
    color: var(--navy);
    font-size: 1rem;
    line-height: 1.3;
}

.sharing-flow p {
    margin: 9px 0 0;
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.55;
}

.sharing-section-grid {
    display: grid;
    grid-template-columns: minmax(240px, 0.52fr) minmax(0, 1.48fr);
    align-items: start;
    gap: clamp(32px, 6vw, 76px);
}

.sharing-section-intro h2,
.sharing-manage-grid h2 {
    margin: 0;
    color: var(--navy);
    font-size: clamp(2rem, 4vw, 3.5rem);
    letter-spacing: -0.05em;
    line-height: 1.04;
}

.sharing-section-intro > p,
.sharing-manage-grid > div > p {
    margin: 20px 0 0;
    color: var(--muted);
}

.sharing-role-table {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: white;
    box-shadow: var(--shadow-sm);
}

.sharing-role-row {
    display: grid;
    grid-template-columns: minmax(105px, 0.42fr) minmax(180px, 1fr) minmax(180px, 1fr);
}

.sharing-role-row + .sharing-role-row {
    border-top: 1px solid var(--line);
}

.sharing-role-row > * {
    min-width: 0;
    padding: 20px;
}

.sharing-role-row > * + * {
    border-left: 1px solid var(--line);
}

.sharing-role-head {
    background: var(--navy);
    color: white;
    font-size: 0.73rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.sharing-role-row strong {
    color: #087d77;
}

.sharing-role-row:not(.sharing-role-head) span {
    color: #516073;
    font-size: 0.85rem;
    line-height: 1.55;
}

.sharing-data-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-top: 44px;
}

.sharing-data-card {
    padding: clamp(30px, 5vw, 50px);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.sharing-data-included {
    background: radial-gradient(circle at 100% 0%, rgba(0, 180, 166, 0.14), transparent 35%), white;
}

.sharing-data-private {
    background: radial-gradient(circle at 100% 0%, rgba(61, 169, 252, 0.13), transparent 35%), #f8fbfd;
}

.sharing-data-label {
    color: #087d77;
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.sharing-data-card h3 {
    margin: 12px 0 18px;
    color: var(--navy);
    font-size: clamp(1.4rem, 3vw, 2rem);
    letter-spacing: -0.035em;
}

.sharing-data-card ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    color: #465568;
    list-style: none;
}

.sharing-data-card li {
    position: relative;
    padding-left: 24px;
}

.sharing-data-card li::before {
    position: absolute;
    left: 0;
    color: var(--teal);
    content: "✓";
    font-weight: 900;
}

.sharing-data-private li::before {
    color: var(--blue);
    content: "—";
}

.sharing-data-card > p {
    margin: 22px 0 0;
    color: var(--muted);
    font-size: 0.88rem;
}

.sharing-manage-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.7fr);
    align-items: center;
    gap: clamp(34px, 7vw, 90px);
}

.sharing-manage-note {
    padding: clamp(28px, 5vw, 44px);
    border-left: 5px solid var(--teal);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    background: white;
    box-shadow: var(--shadow-sm);
}

.sharing-manage-note strong {
    color: var(--navy);
    font-size: 1.08rem;
}

.sharing-manage-note p {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.sharing-notices {
    padding-bottom: clamp(80px, 10vw, 132px);
}

.sharing-notice-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 42px;
}

.sharing-notice-grid article {
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: white;
}

.sharing-notice-grid article > span {
    color: var(--teal);
    font-size: 0.68rem;
    font-weight: 850;
    letter-spacing: 0.12em;
}

.sharing-notice-grid h3 {
    margin: 12px 0 8px;
    color: var(--navy);
    font-size: 1.08rem;
}

.sharing-notice-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 0.84rem;
    line-height: 1.6;
}

.sharing-legal-note {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 34px;
    margin-top: 22px;
    padding: clamp(30px, 5vw, 48px);
    border-radius: var(--radius-lg);
    background: var(--navy);
    color: white;
}

.sharing-legal-note strong {
    font-size: 1.2rem;
}

.sharing-legal-note p {
    max-width: 720px;
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.85rem;
}

.sharing-legal-note .button-row {
    justify-content: flex-end;
    margin-top: 0;
}

.sharing-outline-button {
    border-color: rgba(255, 255, 255, 0.35);
    background: transparent;
}

.sharing-outline-button:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
}

.privacy-callout p {
    max-width: 760px;
    margin: 22px 0 0;
    color: #c8d6e4;
    font-size: 1.05rem;
}

.release-note {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 28px;
    align-items: start;
    max-width: 900px;
}

.release-mark {
    display: grid;
    width: 72px;
    height: 72px;
    place-items: center;
    border-radius: 22px;
    background: var(--teal-pale);
    color: var(--teal);
    font-size: 2rem;
    font-weight: 900;
}

.release-note h2 {
    font-size: clamp(1.8rem, 3vw, 2.55rem);
}

.release-note p {
    margin: 14px 0 0;
    color: var(--muted);
}

.beta-detail,
.contact-section,
.error-section {
    min-height: calc(100vh - var(--nav-height));
    padding: clamp(70px, 9vw, 120px) 0;
    background:
        radial-gradient(circle at 80% 10%, rgba(0, 180, 166, 0.13), transparent 28%),
        var(--surface-soft);
}

.beta-detail-card {
    max-width: 780px;
    padding: clamp(34px, 7vw, 76px);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: white;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.back-link {
    display: inline-block;
    margin-bottom: 40px;
}

.beta-detail-icon {
    display: grid;
    width: 112px;
    height: 112px;
    margin: 0 auto 24px;
    place-items: center;
    border-radius: 32px;
    background: var(--surface-soft);
    font-size: 3.2rem;
}

.beta-detail h1 {
    margin: 18px 0 0;
    color: var(--navy);
    font-size: clamp(2.5rem, 6vw, 4.8rem);
    letter-spacing: -0.06em;
    line-height: 1;
}

.beta-description {
    max-width: 600px;
    margin: 22px auto 30px;
    color: var(--muted);
    font-size: 1.05rem;
}

.contact-grid {
    align-items: start;
}

.contact-card {
    padding: clamp(30px, 5vw, 48px);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: white;
    box-shadow: var(--shadow-sm);
}

.contact-icon {
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    border-radius: 16px;
    background: var(--teal-pale);
    color: var(--teal);
    font-size: 1.4rem;
    font-weight: 900;
}

.contact-card h2 {
    margin: 22px 0 8px;
    color: var(--navy);
    font-size: 1.7rem;
}

.contact-card > p {
    color: var(--muted);
}

.contact-card .button {
    margin-top: 12px;
}

.contact-note {
    margin: 24px 0 0;
    font-size: 0.82rem;
}

.policy-hero {
    padding: clamp(70px, 9vw, 112px) 0 64px;
    background:
        radial-gradient(circle at 16% 0%, rgba(0, 180, 166, 0.14), transparent 33%),
        white;
    text-align: center;
}

.policy-hero h1 {
    margin-inline: auto;
    font-size: clamp(2.6rem, 6vw, 4.8rem);
}

.policy-hero > .container > p:not(.last-updated) {
    max-width: 650px;
    margin: 22px auto 0;
    color: var(--muted);
    font-size: 1.1rem;
}

.last-updated {
    margin: 22px 0 0;
    color: #7b8797;
    font-size: 0.82rem;
}

.policy-section {
    padding: 56px 0 clamp(80px, 10vw, 130px);
    background: var(--surface-soft);
}

.policy-layout {
    display: grid;
    grid-template-columns: minmax(230px, 0.35fr) minmax(0, 0.65fr);
    align-items: start;
    gap: 36px;
}

.policy-summary,
.policy-content {
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: white;
}

.policy-summary {
    position: sticky;
    top: calc(var(--nav-height) + 24px);
    padding: 26px;
}

.policy-summary h2 {
    margin: 0 0 16px;
    color: var(--navy);
    font-size: 1.1rem;
}

.policy-summary ul {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    color: var(--muted);
    font-size: 0.88rem;
    list-style: none;
}

.policy-summary li {
    position: relative;
    padding-left: 22px;
}

.policy-summary li::before {
    position: absolute;
    left: 0;
    color: var(--teal);
    content: "✓";
    font-weight: 900;
}

.policy-content {
    padding: clamp(30px, 6vw, 62px);
}

.policy-content h2 {
    margin: 48px 0 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--line);
    color: var(--navy);
    font-size: 1.45rem;
    letter-spacing: -0.025em;
}

.policy-content h2:first-child {
    margin-top: 0;
}

.policy-content h3 {
    margin: 28px 0 8px;
    color: var(--navy);
    font-size: 1.05rem;
}

.policy-content p,
.policy-content li {
    color: #465568;
}

.policy-content ul {
    padding-left: 22px;
}

.policy-content a {
    color: #087d77;
    font-weight: 750;
    text-underline-offset: 4px;
}

.error-section {
    display: grid;
    place-items: center;
    padding-inline: 20px;
}

.error-card {
    width: min(100%, 640px);
    padding: clamp(36px, 7vw, 68px);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: white;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.error-code {
    margin: 0 0 12px;
    color: var(--teal);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.2em;
}

.error-card h1 {
    margin: 0;
    color: var(--navy);
    font-size: clamp(2rem, 5vw, 3.2rem);
    letter-spacing: -0.045em;
    line-height: 1.1;
}

.error-card > p:not(.error-code) {
    margin: 18px 0 30px;
    color: var(--muted);
}

.site-footer {
    border-top: 1px solid var(--line);
    background: white;
}

.footer-container {
    width: min(calc(100% - 40px), var(--content-width));
    margin-inline: auto;
    padding: 56px 0 34px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 28px 50px;
    align-items: start;
}

.footer-container > div > p {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 0.88rem;
}

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

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

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

.copyright {
    grid-column: 1 / -1;
    margin: 0;
    padding-top: 26px;
    border-top: 1px solid var(--line);
    color: #8490a0;
    font-size: 0.78rem;
}

@media (max-width: 960px) {
    .hero-grid,
    .product-hero-grid,
    .contact-grid,
    .sharing-hero-grid {
        grid-template-columns: 1fr;
    }

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

    .studio-intro-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .studio-intro-copy {
        max-width: 760px;
    }

    .studio-principles {
        grid-column: 1;
    }

    .hero-visual {
        width: min(100%, 620px);
        margin-inline: auto;
    }

    .product-icon-wrap {
        width: min(58vw, 340px);
    }

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

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

    .mini-feature {
        align-items: flex-start;
    }

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

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

    .ios-showcase-copy {
        grid-column: 1 / -1;
        grid-template-columns: 1fr;
        max-width: 760px;
        margin-top: 20px;
    }

    .ios-showcase-copy .eyebrow,
    .ios-showcase-copy h3,
    .ios-showcase-copy > p,
    .ios-showcase-copy .check-list {
        grid-column: 1;
    }

    .ios-showcase-copy > p {
        grid-row: auto;
        margin-top: 4px;
    }

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

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

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

    .policy-summary {
        position: static;
    }

    .sharing-hero-panel {
        width: min(100%, 680px);
    }

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

    .sharing-section-grid,
    .sharing-legal-note {
        grid-template-columns: 1fr;
    }

    .sharing-legal-note .button-row {
        justify-content: flex-start;
    }
}

@media (max-width: 760px) {
    :root {
        --nav-height: 68px;
    }

    .container,
    .nav-container,
    .footer-container {
        width: min(calc(100% - 32px), var(--content-width));
    }

    .menu-toggle {
        display: block;
    }

    .nav-panel {
        position: absolute;
        top: calc(100% + 10px);
        right: 0;
        left: 0;
        display: grid;
        gap: 4px;
        padding: 12px;
        border: 1px solid var(--line);
        border-radius: 18px;
        background: white;
        box-shadow: var(--shadow-md);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity 160ms ease, transform 160ms ease;
    }

    .nav-panel[data-open="true"] {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-link,
    .nav-panel .button {
        width: 100%;
        min-height: 46px;
        justify-content: flex-start;
        padding: 12px 14px;
        text-align: left;
    }

    .nav-link[aria-current="page"]::after {
        display: none;
    }

    .hero-home {
        padding-top: 64px;
    }

    .hero-visual {
        min-height: 390px;
    }

    .orbit-one {
        width: 320px;
        height: 320px;
    }

    .orbit-two {
        width: 380px;
        height: 220px;
    }

    .floating-note {
        padding: 10px 12px;
        font-size: 0.76rem;
    }

    .note-care {
        top: 38px;
    }

    .note-private {
        bottom: 48px;
    }

    .section-heading {
        display: block;
    }

    .section-heading > p {
        margin-top: 14px;
        text-align: left;
    }

    .studio-principles {
        grid-template-columns: 1fr;
    }

    .ideas-heading {
        display: block;
    }

    .ideas-heading > p {
        margin-top: 12px;
        text-align: left;
    }

    .project-directory-card {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .project-directory-action {
        grid-column: 1 / -1;
        justify-self: stretch;
    }

    .project-directory-action .button {
        width: 100%;
    }

    .feature-stack,
    .feature-grid,
    .beta-grid {
        grid-template-columns: 1fr;
    }

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

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

    .watch-captures {
        width: min(100%, 620px);
        margin-inline: auto;
    }

    .capability-card-wide {
        grid-column: auto;
    }

    .feature-story-grid { grid-template-columns: 1fr; }
    .feature-story-map { grid-column: auto; display: flex; }
    .feature-phone-map { margin-top: 34px; }
    .feature-depth { grid-template-columns: 1fr; }

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

    .sharing-data-grid,
    .sharing-manage-grid {
        grid-template-columns: 1fr;
    }

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

    .sharing-role-table {
        display: grid;
        gap: 12px;
        overflow: visible;
        border: 0;
        background: transparent;
        box-shadow: none;
    }

    .sharing-role-row {
        display: grid;
        grid-template-columns: 1fr;
        border: 1px solid var(--line);
        border-radius: 18px;
        background: white;
        box-shadow: var(--shadow-sm);
    }

    .sharing-role-head {
        display: none;
    }

    .sharing-role-row + .sharing-role-row {
        border-top: 1px solid var(--line);
    }

    .sharing-role-row > * {
        padding: 16px 18px;
    }

    .sharing-role-row > * + * {
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    .app-store-button {
        justify-self: start;
    }

    .cta-card,
    .privacy-callout-grid {
        align-items: flex-start;
        flex-direction: column;
    }

    .release-note {
        grid-template-columns: 1fr;
    }

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

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

    .copyright {
        grid-column: 1;
    }
}

@media (max-width: 520px) {
    .feature-depth-grid {
        grid-template-columns: 1fr;
    }

    .feature-phone,
    .feature-phone-map {
        width: min(92%, 300px);
    }

    .feature-story-action {
        width: 100%;
    }

    .sharing-flow,
    .sharing-notice-grid {
        grid-template-columns: 1fr;
    }

    .sharing-flow li {
        display: grid;
        grid-template-columns: 38px minmax(0, 1fr);
        gap: 14px;
    }

    .sharing-flow li > span {
        margin-bottom: 0;
    }

    .sharing-hero-panel {
        padding: 10px;
    }

    .sharing-hero-panel > div {
        padding: 14px;
    }

    .button-row,
    .button-row .button,
    .contact-card .button {
        width: 100%;
    }

    .button-row .button {
        flex: 1 1 100%;
    }

    .hero-visual {
        min-height: 330px;
    }

    .app-icon-shell {
        width: min(72vw, 280px);
    }

    .studio-loop-frame {
        width: min(84vw, 400px);
        border-radius: 34px;
    }

    .orbit-one {
        width: 270px;
        height: 270px;
    }

    .orbit-two {
        width: 330px;
    }

    .floating-note {
        display: none;
    }

    .project-directory-card {
        grid-template-columns: 1fr;
    }

    .project-directory-icon {
        width: 88px;
    }

    .project-directory-action {
        grid-column: 1;
    }

    .beta-card {
        grid-template-columns: 1fr;
    }

    .beta-icon {
        width: 58px;
        height: 58px;
        font-size: 1.65rem;
    }

    .product-icon-wrap {
        width: min(72vw, 300px);
    }

    .product-demo-toggle {
        right: 12px;
        bottom: 12px;
        min-height: 38px;
        padding: 8px 12px;
    }

    .ios-capture-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .ios-capture {
        width: min(82vw, 340px);
        margin-inline: auto;
    }

    .ios-capture-raised {
        transform: none;
    }

    .ios-showcase-copy {
        margin-top: 6px;
    }

    .widget-stage {
        padding: 18px;
    }

    .today-widget {
        grid-template-columns: 1fr;
    }

    .watch-captures {
        grid-template-columns: 1fr;
        width: min(100%, 360px);
    }

    .watch-capture {
        width: min(68vw, 230px);
        margin-inline: auto;
    }

    .watch-capture-ultra {
        transform: none;
    }

    .today-widget-care {
        padding: 0 0 18px;
        border-right: 0;
        border-bottom: 1px solid #d9dde2;
    }

    .today-widget-next {
        padding: 18px 0 0;
    }

    .policy-content,
    .policy-summary {
        border-radius: 18px;
    }
}

/* September 2026 product refresh and practical feature guide. */
.product-build-note {
    margin-top: 22px;
    color: var(--muted);
    font-size: .875rem;
}

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

.product-update-card {
    min-width: 0;
}

.product-update-image {
    display: block;
    aspect-ratio: 1 / 1.15;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: var(--surface-soft);
    padding: 26px 30px 0;
}

.product-update-image img {
    width: 100%;
    border: 6px solid var(--navy);
    border-radius: 30px;
    box-shadow: var(--shadow-sm);
}

.product-update-card h3 {
    margin: 24px 0 10px;
    font-size: 1.3rem;
    line-height: 1.3;
}

.product-update-card p {
    color: var(--muted);
    margin: 0 0 14px;
}

.product-guide-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 48px;
    padding: 30px 34px;
    border: 1px solid #bde6e1;
    border-radius: 20px;
    background: var(--surface-teal);
}

.product-guide-banner strong { font-size: 1.2rem; line-height: 1.4; }
.product-guide-banner p { margin: 8px 0 0; color: var(--muted); max-width: 670px; }
.product-guide-banner .button { flex-shrink: 0; }
.feature-guide-hero .back-link { display: inline-block; margin-bottom: 30px; color: #08776f; }
.feature-guide-hero .eyebrow { display: block; }
.feature-guide-hero h1 { max-width: 760px; }

.guide-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    padding-block: 28px 18px;
}

.guide-nav a {
    padding: 8px 16px;
    border: 1px solid var(--line);
    border-radius: 50px;
    text-decoration: none;
    font-size: .875rem;
    font-weight: 600;
    background: white;
}

.guide-nav a:hover { border-color: var(--teal); background: var(--surface-teal); }
.guide-capture-note { color: var(--muted); font-size: .875rem; text-align: center; max-width: 850px; }

.guide-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 310px;
    align-items: center;
    gap: clamp(40px, 7vw, 100px);
}

.guide-copy h2 { margin: 14px 0 24px; font-size: clamp(2rem, 3.5vw, 2.8rem); line-height: 1.13; letter-spacing: -.04em; }
.guide-copy > p { color: var(--muted); }
.guide-copy strong { color: var(--ink); }
.guide-list { padding-left: 22px; color: var(--muted); }
.guide-list li { padding-left: 6px; margin-bottom: 18px; }
.guide-list li::marker { color: #08776f; }
.guide-tip { padding: 18px 22px; border-left: 3px solid var(--teal); background: var(--surface-teal); border-radius: 0 12px 12px 0; font-size: .9375rem; }
.guide-capture { min-width: 0; margin: 0; }
.guide-capture-link { display: block; }
.guide-capture img { width: 100%; border: 7px solid #0c1118; border-radius: 42px; box-shadow: var(--shadow-md); }
.guide-capture figcaption { margin-top: 20px; text-align: center; font-size: .875rem; font-weight: 600; line-height: 1.5; }
.guide-capture figcaption span { display: block; margin-top: 5px; color: var(--muted); font-size: .8125rem; font-weight: 400; }
.guide-assistant { background: var(--navy); color: white; }
.guide-assistant h2, .guide-assistant h3 { color: white; }
.guide-assistant .section-heading p { color: #c4d1df; }
.guide-assistant .eyebrow { color: #56ddd0; }

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

.assistant-flow li { border-top: 1px solid #3b5268; padding-top: 22px; }
.assistant-flow span { display: block; color: #56ddd0; font-size: .875rem; margin-bottom: 18px; }
.assistant-flow strong { font-size: 1.2rem; }
.assistant-flow p, .guide-voice-grid p { color: #c4d1df; margin: 10px 0 0; }
.guide-voice-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; padding-top: 20px; }
.guide-voice-grid h3 { font-size: 1.125rem; }
.guide-assistant-note { color: #c4d1df; font-size: .875rem; border-top: 1px solid #3b5268; padding-top: 24px; margin-top: 40px; max-width: 970px; }
.guide-record-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
.guide-record-grid article { border-top: 2px solid #9ddbd4; padding-top: 18px; }
.guide-record-grid h3 { font-size: 1.2rem; margin: 0 0 12px; }
.guide-record-grid p { color: var(--muted); margin: 0; }
.guide-release-note { font-size: .875rem; color: var(--muted); margin-top: 28px; }
.guide-release-note a { overflow-wrap: anywhere; }

@media (max-width: 960px) {
    .product-update-grid { gap: 20px; }
    .product-update-image { padding: 18px 18px 0; }
    .guide-layout { grid-template-columns: minmax(0, 1fr) 265px; gap: 36px; }
    .product-guide-banner { align-items: flex-start; flex-direction: column; gap: 22px; }
    .assistant-flow, .guide-record-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
    .product-update-grid, .guide-layout, .guide-voice-grid, .guide-record-grid { grid-template-columns: minmax(0, 1fr); }
    .product-update-grid { gap: 40px; }
    .product-update-image { aspect-ratio: 1.1; padding: 24px 40px 0; }
    .product-update-image img { max-width: 300px; margin-inline: auto; }
    .product-guide-banner { padding: 24px; }
    .guide-capture { width: min(100%, 300px); margin-inline: auto; }
    .guide-layout { gap: 30px; }
    .guide-nav { justify-content: flex-start; }
    .guide-capture-note { text-align: left; }
    .guide-assistant .section-heading { display: block; }
    .guide-voice-grid { gap: 10px; }
}

@media (max-width: 390px) {
    .assistant-flow { grid-template-columns: minmax(0, 1fr); }
}

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

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

    .studio-loop-frame picture {
        animation: none;
        opacity: 1;
        transform: none;
    }
}
