/* ============================================
   InviSmile - Premium Support Website
   Design: Dark mocha, earth tones, glass morphism
   ============================================ */

:root {
    /* Core Palette */
    --bg-primary: #1E1A14;
    --bg-secondary: #14120F;
    --bg-card: #29241F;
    --bg-card-hover: #342E28;

    /* Text */
    --text-primary: #FAF0E8;
    --text-secondary: rgba(250, 240, 232, 0.6);
    --text-tertiary: rgba(250, 240, 232, 0.4);

    /* Accents */
    --oatmeal: #E3D9C6;
    --caramel: #D1A67A;
    --terracotta: #B3664C;
    --success: #1FD173;
    --warning: #F28F21;
    --ios-gold: #D6AB74;
    --ios-gold-soft: #E4B47B;
    --ios-gold-muted: rgba(228, 180, 123, 0.7);
    --ios-card-shell: #312923;
    --ios-card-shell-deep: #2B241F;
    --ios-pill-shell: #3C342E;
    --ios-pill-shell-soft: #433A34;
    --ios-wallpaper-light: #C6E2E8;
    --ios-wallpaper-mid: #6F7E88;
    --ios-wallpaper-deep: #243C8E;

    /* Gradients */
    --gradient-warm: linear-gradient(135deg, #D9C7AD, #B3664C);
    --gradient-dark: linear-gradient(180deg, #1E1A14, #14120F);
    --gradient-card: linear-gradient(145deg, rgba(41, 36, 31, 0.8), rgba(30, 26, 20, 0.6));

    /* Glass */
    --glass-bg: rgba(41, 36, 31, 0.5);
    --glass-border: rgba(180, 148, 118, 0.15);
    --glass-border-hover: rgba(180, 148, 118, 0.3);

    /* Spacing */
    --section-pad: clamp(80px, 12vw, 160px);
    --container-max: 1200px;

    /* Radius */
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-xl: 40px;

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ============================================
   Reset & Base
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

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

ul {
    list-style: none;
}

/* ============================================
   Navigation
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 24px;
    transition: all 0.4s var(--ease-out);
}

.nav.scrolled {
    background: rgba(30, 26, 20, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--glass-border);
    padding: 12px 24px;
}

.nav-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-cta {
    font-size: 14px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 100px;
    background: var(--gradient-warm);
    color: var(--bg-secondary);
    transition: transform 0.3s var(--ease-spring), opacity 0.3s;
}

.nav-cta:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

/* ============================================
   Hero
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

#particleCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 30%, rgba(209, 166, 122, 0.08) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 80%, rgba(179, 102, 76, 0.05) 0%, transparent 40%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 100px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--success);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
    font-size: clamp(48px, 8vw, 80px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -3px;
    margin-bottom: 24px;
}

.gradient-text {
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.6;
    font-weight: 400;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s var(--ease-spring);
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-warm);
    color: var(--bg-secondary);
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 20px 40px rgba(179, 102, 76, 0.3);
}

.btn-ghost {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
}

.btn-ghost:hover {
    border-color: var(--glass-border-hover);
    background: var(--bg-card);
    transform: translateY(-2px);
}

/* Bento Floating UI Mockups */
.hero-bento-floating {
    position: relative;
    z-index: 1;
    margin-top: 64px;
    display: grid;
    grid-template-columns: 1fr 140px 400px 400px;
    gap: 16px;
    width: 100%;
    max-width: 1360px;
    align-items: stretch;
    animation: floatBobGroup 8s ease-in-out infinite;
}

.bento-card {
    position: relative;
    border-radius: var(--radius-md);
    background: #29241F; /* Color(red: 0.16, green: 0.14, blue: 0.12) */
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
    transition: transform 0.1s ease-out; /* for tilt */
    will-change: transform;
}

/* Card 1: Activity Rings */
.rings-card {
    grid-column: 1 / 3;
    grid-row: 1;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.rc-main-content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 32px;
}

.glow-rings {
    filter: drop-shadow(0 0 24px rgba(227, 217, 199, 0.15));
}

.bc-rings-container {
    display: flex;
    justify-content: flex-start;
}

.bc-rings {
    width: 140px;
    height: 140px;
}

.bc-track { fill: none; stroke-width: 10; }

.bc-progress { 
    fill: none; 
    stroke-width: 10; 
    stroke-linecap: round; 
    --dash-array: calc(2 * 3.14159 * var(--r, 48));
    stroke-dasharray: var(--dash-array);
    stroke-dashoffset: var(--dash-array);
    transform: rotate(-90deg);
    transform-origin: center;
}

.bc-wear-track { stroke: rgba(227, 217, 199, 0.1); }
.bc-streak-track { stroke: rgba(209, 166, 122, 0.1); }
.bc-life-track { stroke: rgba(179, 102, 77, 0.1); }

.bc-wear { stroke: var(--oatmeal); --r: 48; }
.bc-streak { stroke: var(--caramel); --r: 34; }
.bc-life { stroke: var(--terracotta); --r: 20; }

.rc-stats-vertical {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.rcv-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.rcv-lbl-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rcv-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.dot-wear { background: var(--oatmeal); }
.dot-streak { background: var(--caramel); }
.dot-life { background: var(--terracotta); }

.rcv-lbl {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-tertiary);
}

.rcv-val {
    font-size: 20px;
    font-weight: 700;
    color: var(--oatmeal);
}
.rcv-val.caramel { color: var(--caramel); }
.rcv-val.terracotta { color: var(--terracotta); }

.rc-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
}

.rc-status-warning {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--caramel);
}

.bc-tray-info {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-tertiary);
}

/* Card 2: Active Session */
.active-session-card {
    grid-column: 1 / 2;
    grid-row: 2;
    padding: 18px;
}

.ios-preview-surface {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    border: none;
    background: transparent;
    box-shadow: none;
}

.ios-preview-surface::before {
    content: none;
}

.ios-preview-surface--hero {
    min-height: 252px;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
}

.ios-preview-surface--island {
    width: min(430px, 100%);
    min-height: auto;
    padding: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.ios-preview-surface--live {
    width: min(560px, 100%);
    min-height: auto;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dynamic-island {
    position: relative;
    z-index: 1;
    width: min(390px, calc(100% - 8px));
    min-height: 64px;
    padding: 0 26px 0 20px;
    border-radius: 999px;
    background: #050505;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.02),
        0 12px 26px rgba(0, 0, 0, 0.42);
}

.dynamic-island--hero {
    width: 100%;
}

.dynamic-island__left {
    display: flex;
    align-items: center;
}

.dynamic-island__timer {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", sans-serif;
    font-size: 19px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.04em;
    color: var(--ios-gold-soft);
    font-variant-numeric: tabular-nums;
}

.utensil-mark {
    color: var(--ios-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.utensil-mark--island {
    width: 19px;
    height: 19px;
}

.utensil-mark--card {
    width: 34px;
    height: 34px;
}

.utensil-mark svg {
    width: 100%;
    height: 100%;
}

.live-activity-card {
    position: relative;
    z-index: 1;
    width: min(530px, 100%);
    padding: 28px 28px 26px;
    border-radius: 34px;
    background: linear-gradient(180deg, rgba(50, 42, 36, 0.98), rgba(44, 37, 31, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 24px 48px rgba(17, 12, 8, 0.38),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.live-activity-card--hero {
    width: 100%;
    margin-top: auto;
}

.live-activity-card__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

.live-activity-card__identity {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    min-width: 0;
}

.live-activity-card__copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.live-activity-card__title {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.04em;
    color: #F5F1EB;
}

.live-activity-card__subtitle {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.1;
    color: rgba(245, 241, 235, 0.42);
}

.live-activity-card__close {
    width: 52px;
    height: 52px;
    border: none;
    border-radius: 50%;
    padding: 0;
    background: var(--ios-gold-soft);
    color: #201710;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 24px rgba(26, 17, 10, 0.22);
    cursor: default;
    flex-shrink: 0;
}

.live-activity-card__close svg {
    width: 20px;
    height: 20px;
}

.live-activity-card__timer-pill {
    margin-top: 22px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 18px;
    min-height: 88px;
    padding: 0 28px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(66, 57, 50, 0.92), rgba(57, 49, 43, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.03),
        0 10px 22px rgba(17, 12, 8, 0.2);
}

.live-activity-card__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #DBAE74;
    box-shadow: 0 0 16px rgba(219, 174, 116, 0.95);
}

.live-activity-card__timer {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", sans-serif;
    font-size: clamp(40px, 5vw, 50px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.06em;
    color: #F5F1EB;
    font-variant-numeric: tabular-nums;
}

.live-activity-card__badge {
    padding: 7px 13px 8px;
    border-radius: 999px;
    background: rgba(125, 101, 74, 0.4);
    color: var(--ios-gold-soft);
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.22em;
    line-height: 1;
}

/* Card 3: Stats Stack */
.stat-stack {
    grid-column: 2 / 3;
    grid-row: 2;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mini-stat {
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    background: #1C1917;
    flex: 1;
}

.ms-val {
    font-size: 18px;
    font-weight: 800;
}
.ms-val.oatmeal { color: var(--oatmeal); }
.ms-val.caramel { color: var(--caramel); }
.ms-val.white { color: #fff; }

.ms-lbl {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-tertiary);
}

/* Card 4: Chart Card (Wear) */
.chart-card {
    grid-column: 3 / 4;
    grid-row: 1 / 3;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    background: #1C1917;
    overflow-y: auto;
    max-height: 750px;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}
.chart-card::-webkit-scrollbar {
    display: none;
}

/* Card 5: Removal Chart Card */
.removal-chart-card {
    grid-column: 4 / 5;
    grid-row: 1 / 3;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    background: #1C1917;
    overflow-y: auto;
    max-height: 750px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.removal-chart-card::-webkit-scrollbar {
    display: none;
}

/* Calendar Top Bar */
.calendar-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.ct-date {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.5px;
}
.ct-btn {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* Week Strip */
.calendar-week-strip {
    display: flex;
    justify-content: space-between;
}
.cws-day {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 8px 4px;
    border-radius: 12px;
}
.cws-day.active {
    background: rgba(255, 255, 255, 0.06);
}
.cws-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-tertiary);
}
.cws-ring {
    width: 24px;
    height: 24px;
}

/* Hero Rings */
.calendar-hero-rings {
    display: flex;
    justify-content: center;
    margin: 16px 0;
}
.chr-svg {
    width: 180px;
    height: 180px;
    filter: drop-shadow(0 0 40px rgba(227, 217, 199, 0.15));
}

/* Removal Breakdown */
.calendar-removal-breakdown {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.crb-title {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-tertiary);
    letter-spacing: 1px;
    margin-bottom: 8px;
}
.crb-item {
    display: flex;
    align-items: center;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.crb-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(179, 102, 77, 0.1);
    color: var(--terracotta);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
}
.crb-info {
    flex-grow: 1;
}
.crb-name {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}
.crb-meta {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-tertiary);
}
.crb-duration {
    font-size: 16px;
    font-weight: 700;
}
.crb-duration.terracotta {
    color: var(--terracotta);
}
.crb-duration.oatmeal {
    color: var(--oatmeal);
}
.stat-section {
    display: flex;
    flex-direction: column;
}
.mt-24 {
    margin-top: 24px;
}
.stat-title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}
.stat-value {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}
.stat-value .oatmeal { color: var(--oatmeal); }
.stat-value .oatmeal-dim { color: rgba(227, 217, 199, 0.4); }
.stat-value .terracotta { color: var(--terracotta); }

.chart-area {
    position: relative;
    display: flex;
    flex-direction: column;
}
.chart-y-label {
    font-size: 9px;
    font-weight: 600;
    color: var(--text-tertiary);
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}
.chart-dashed-line {
    width: 100%;
    height: 1px;
    border-top: 1px dashed rgba(255, 255, 255, 0.15);
}
.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 60px;
    margin: 8px 0;
}
.c-bar {
    flex: 1;
    border-radius: 2px;
}
.c-bar.wear-bar { background: var(--oatmeal); }
.c-bar.removal-bar { background: var(--terracotta); }
.c-bar.empty { background: transparent; }

.chart-x-axis {
    display: flex;
    justify-content: space-between;
    font-size: 9px;
    font-weight: 500;
    color: var(--text-tertiary);
    margin-bottom: 8px;
}
.chart-total {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}
.chart-total.oatmeal-dim { color: rgba(227, 217, 199, 0.8); }
.chart-total.terracotta { color: var(--terracotta); }

@keyframes floatBobGroup {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--caramel), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.3; transform: scaleY(0.6); }
}

/* ============================================
   Sections Shared
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--caramel);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1.1;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ============================================
   Features
   ============================================ */
.features {
    padding: var(--section-pad) 0;
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(209, 166, 122, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.features .container {
    max-width: 1280px;
    position: relative;
    z-index: 1;
}

.features .section-header {
    margin-bottom: 56px;
}

.features-showcase {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

.feature-panel {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 22px;
    min-height: 100%;
    padding: 32px;
    border-radius: calc(var(--radius-xl) + 4px);
    background: linear-gradient(180deg, rgba(45, 39, 33, 0.95) 0%, rgba(26, 22, 18, 0.94) 100%);
    border: 1px solid rgba(180, 148, 118, 0.16);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
    overflow: hidden;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.feature-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(209, 166, 122, 0.12), transparent 44%);
    pointer-events: none;
}

.feature-panel::after {
    content: '';
    position: absolute;
    left: 32px;
    right: 32px;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.14) 14%, rgba(255, 255, 255, 0.04) 100%);
    pointer-events: none;
}

.feature-panel--hero {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(300px, 0.86fr) minmax(420px, 1.14fr);
    gap: 36px;
    align-items: center;
    padding: 40px;
}

.feature-panel--calendar {
    grid-column: span 5;
}

.feature-panel--history {
    grid-column: span 7;
}

.feature-panel--reminders {
    grid-column: span 5;
}

.feature-panel--sync-privacy {
    grid-column: span 7;
}

.feature-panel__copy,
.feature-panel__visual {
    position: relative;
    z-index: 1;
}

.feature-panel__visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-panel__eyebrow,
.feature-panel__meta {
    display: inline-flex;
    align-items: center;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--caramel);
}

.feature-panel h3 {
    font-size: clamp(28px, 3.4vw, 42px);
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.02;
}

.feature-panel:not(.feature-panel--hero) h3 {
    font-size: clamp(24px, 2.8vw, 34px);
}

.feature-panel p {
    max-width: 34ch;
    font-size: 16px;
    line-height: 1.72;
    color: var(--text-secondary);
}

.feature-value-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 6px;
}

.feature-value-card {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-value-card__label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-tertiary);
}

.feature-value-card__value {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.feature-ui-mockup {
    width: 100%;
    margin-top: auto;
    flex: 1;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: linear-gradient(180deg, rgba(28, 25, 23, 0.94) 0%, rgba(21, 18, 16, 0.94) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    padding: 20px;
}

.rings-mockup {
    background: transparent;
    border: none;
    padding: 0;
}

.feature-rings-stage {
    position: relative;
    width: 100%;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 28px;
}

.feature-rings-stage::before {
    content: '';
    position: absolute;
    inset: 12% 16%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(209, 166, 122, 0.16) 0%, rgba(209, 166, 122, 0.02) 48%, transparent 72%);
    filter: blur(18px);
    pointer-events: none;
}

.feature-ui-mockup--hero {
    width: min(100%, 560px);
    min-height: 420px;
    align-items: center;
    justify-content: center;
}

.feature-rings-hero__cluster {
    width: min(420px, 100%);
}

.feature-rings-hero__cluster .bc-rings {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 36px rgba(227, 217, 199, 0.14));
}

.feature-rings-chip {
    position: absolute;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(31, 28, 24, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.18);
    font-size: 12px;
    font-weight: 700;
    color: var(--text-primary);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.feature-rings-chip--top {
    top: 18px;
    right: 12px;
}

.feature-rings-chip--left {
    left: -6px;
    bottom: 90px;
}

.feature-rings-chip--right {
    right: -8px;
    bottom: 18px;
}

.feature-ui-mockup--calendar,
.feature-ui-mockup--history,
.feature-ui-mockup--reminders {
    min-height: 250px;
}

.feature-ui-mockup--sync-privacy {
    min-height: 250px;
    align-items: flex-start;
}

.sync-privacy-layout {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    width: 100%;
    padding: 24px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.sync-privacy-column {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 0 20px;
}

.sync-privacy-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.08);
    align-self: stretch;
}

.sync-privacy-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: var(--caramel);
}

.sync-privacy-icon.sync-icon {
    background: rgba(209, 166, 122, 0.10);
}

.sync-privacy-icon.privacy-icon {
    background: rgba(209, 166, 122, 0.10);
}

.sync-privacy-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(255, 255, 255, 0.5);
}

.calendar-shell {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.calendar-shell__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
}

.week-strip {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 10px;
}

.ws-day {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 12px 8px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.025);
}

.ws-day.active {
    background: rgba(255, 255, 255, 0.09);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.ws-lbl {
    font-size: 10px;
    font-weight: 700;
    color: var(--text-tertiary);
}

.ws-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.ws-dot.pass { background: var(--success); }
.ws-dot.warn { background: var(--caramel); }
.ws-dot.empty { background: rgba(255, 255, 255, 0.12); }

.calendar-log-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.calendar-log {
    display: grid;
    grid-template-columns: auto auto 1fr;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.025);
}

.calendar-log__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.calendar-log__dot--pass { background: var(--success); }
.calendar-log__dot--warn { background: var(--caramel); }

.calendar-log__day {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-primary);
}

.calendar-log__value {
    font-size: 12px;
    color: var(--text-secondary);
}

.history-board {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.history-board__top {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 12px;
}

.history-board__summary {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.history-board__summary--compact {
    justify-content: center;
}

.history-board__eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-tertiary);
}

.history-board__value {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -0.05em;
    color: var(--text-primary);
}

.history-board__mini {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--oatmeal);
}

.history-board__caption {
    font-size: 12px;
    color: var(--text-secondary);
}

.history-week {
    display: flex;
    flex-direction: column;
    gap: 26px;
    padding: 8px 0 0;
}

.history-week__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.history-week__title {
    font-size: clamp(22px, 2.8vw, 42px);
    font-weight: 800;
    letter-spacing: -0.06em;
    line-height: 0.94;
    color: var(--text-primary);
}

.history-week__icon {
    width: 78px;
    height: 78px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.88);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.04),
        0 18px 34px rgba(0, 0, 0, 0.18);
}

.history-week__grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 18px;
    align-items: start;
}

.history-week__day {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding-top: 6px;
}

.history-week__day--selected {
    position: relative;
}

.history-week__day--selected::after {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--caramel);
    box-shadow: 0 0 6px rgba(209, 166, 122, 0.5);
}

.history-week__label {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: rgba(250, 240, 232, 0.52);
}

.history-week__day--selected .history-week__label {
    color: rgba(250, 240, 232, 0.72);
}

.history-ring {
    position: relative;
    width: 72px;
    height: 72px;
    border-radius: 50%;
}

.history-ring__svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
    overflow: visible;
    filter: drop-shadow(0 10px 26px rgba(0, 0, 0, 0.14));
}

.history-ring__track,
.history-ring__progress {
    fill: none;
    stroke-linecap: round;
}

.history-ring__track--wear {
    stroke: rgba(227, 217, 198, 0.16);
    stroke-width: 6;
}

.history-ring__track--streak {
    stroke: rgba(209, 166, 122, 0.15);
    stroke-width: 5.5;
}

.history-ring__track--life {
    stroke: rgba(179, 102, 76, 0.15);
    stroke-width: 5;
}

.history-ring__progress--wear {
    stroke: var(--oatmeal);
    stroke-width: 6;
}

.history-ring__progress--streak {
    stroke: var(--caramel);
    stroke-width: 5.5;
}

.history-ring__progress--life {
    stroke: var(--terracotta);
    stroke-width: 5;
}

.history-ring__core {
    fill: #1B1713;
    filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.18));
}

.history-ring__core-dot {
    fill: rgba(19, 16, 13, 0.96);
    stroke: rgba(255, 255, 255, 0.06);
    stroke-width: 1.2;
}

.history-ring--selected {
    width: 72px;
    height: 72px;
}

.history-week__day--muted .history-ring {
    opacity: 0.54;
}

.history-week__day--muted .history-week__label {
    color: rgba(250, 240, 232, 0.34);
}

.reminders-stack {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.reminders-scene {
    position: relative;
    width: 100%;
    height: 110px;
    padding-top: 6px;
    overflow: hidden;
}

.reminders-scene::before {
    display: none;
}

.reminders-scene::after {
    display: none;
}

.notif-bubble {
    background: rgba(34, 29, 25, 0.92);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 15px 16px;
    width: 100%;
    max-width: 320px;
    box-shadow:
        0 22px 40px rgba(0, 0, 0, 0.24),
        inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.notif-bubble--queue {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(100%) scale(0.96);
    width: min(100%, 320px);
    max-width: none;
    opacity: 0;
    z-index: 2;
    animation: notifCarousel 12s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.notif-bubble--1 { animation-delay: 0s; }
.notif-bubble--2 { animation-delay: 3s; }
.notif-bubble--3 { animation-delay: 6s; }
.notif-bubble--4 { animation-delay: 9s; }

@keyframes notifCarousel {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(100%) scale(0.96);
    }
    5% {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1);
    }
    22% {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1);
    }
    27% {
        opacity: 0;
        transform: translateX(-50%) translateY(-100%) scale(0.96);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(-100%) scale(0.96);
    }
}


.notif-bubble--2,
.notif-bubble--4 {
    border-color: rgba(209, 166, 122, 0.16);
}

.notif-bubble--3 {
    border-color: rgba(227, 217, 198, 0.14);
}

.notif-header {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

.notif-icon {
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, #FFF1E6, #D1A67A);
    border-radius: 4px;
}

.notif-app {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    flex-grow: 1;
}

.notif-time {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
}

.notif-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.notif-title {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

.notif-text {
    font-size: 12px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.74);
}

.reminders-chip-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
}

.reminders-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    border-radius: 6px;
    background: transparent;
    border: none;
    font-size: 11px;
    font-weight: 500;
    color: var(--text-tertiary);
    letter-spacing: 0.03em;
}

.reminders-chip::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--caramel);
    opacity: 0.6;
}

@keyframes slideDown {
    0%, 100% { transform: translateY(-10px); opacity: 0.5; }
    10%, 90% { transform: translateY(0); opacity: 1; }
}

@keyframes notifQueue {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(24px) scale(0.94);
    }
    10% {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1);
    }
    18% {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1);
    }
    22% {
        opacity: 0;
        transform: translateX(-50%) translateY(-12px) scale(0.98);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(-12px) scale(0.98);
    }
}

/* Front notification: slides in from bottom, holds, exits up */
@keyframes notifFront {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px) scale(0.96);
    }
    6% {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1);
    }
    21% {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1);
    }
    25% {
        opacity: 0;
        transform: translateX(-50%) translateY(-12px) scale(0.98);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(-12px) scale(0.98);
    }
}

.sync-cloud-card {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 18px;
    justify-content: flex-start;
}

.sync-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
    background: none;
    border: none;
    color: rgba(209, 166, 122, 0.55);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.sync-device-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.sync-device {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 10px;
    min-height: 52px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 12px;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    white-space: nowrap;
}

.sync-device__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--caramel);
    box-shadow: 0 0 8px rgba(209, 166, 122, 0.35);
}

/* privacy mockup min-height moved above with sync */

.privacy-feature-card {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    padding: 22px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.privacy-feature-card__shield {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    background: rgba(209, 166, 122, 0.08);
    color: var(--caramel);
    box-shadow: inset 0 0 0 1px rgba(209, 166, 122, 0.16);
}

.privacy-feature-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.privacy-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    min-height: 50px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.045);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    width: 100%;
    box-sizing: border-box;
}

.privacy-feature-item__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--caramel);
    box-shadow: 0 0 8px rgba(209, 166, 122, 0.35);
    flex-shrink: 0;
}

/* ============================================
   Experience
   ============================================ */
.experience {
    position: relative;
    padding: clamp(88px, 10vw, 140px) 0;
}

.experience::before {
    content: '';
    position: absolute;
    inset: 60px 8% auto;
    height: 520px;
    background:
        radial-gradient(circle at 25% 25%, rgba(209, 166, 122, 0.12) 0%, transparent 42%),
        radial-gradient(circle at 75% 68%, rgba(227, 217, 199, 0.08) 0%, transparent 38%);
    pointer-events: none;
    filter: blur(12px);
}

.experience .container {
    position: relative;
    z-index: 1;
    max-width: 1320px;
}

.experience .section-header {
    margin-bottom: 52px;
}

.experience-showcase {
    display: grid;
    grid-template-columns: minmax(320px, 0.74fr) minmax(620px, 1.46fr);
    grid-template-rows: auto auto;
    gap: 28px;
    align-items: stretch;
}

.showcase-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
    gap: 24px;
    min-height: 100%;
    padding: 36px;
    border-radius: calc(var(--radius-xl) + 4px);
    background:
        linear-gradient(180deg, rgba(45, 39, 33, 0.94) 0%, rgba(27, 23, 19, 0.94) 100%);
    border: 1px solid rgba(180, 148, 118, 0.16);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
    overflow: hidden;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.showcase-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(209, 166, 122, 0.12), transparent 42%);
    pointer-events: none;
}

.showcase-item::after {
    content: '';
    position: absolute;
    left: 32px;
    right: 32px;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.14) 14%, rgba(255, 255, 255, 0.04) 100%);
    pointer-events: none;
}

/* Left column: spans both rows */
.showcase-item--tall {
    grid-row: 1 / 3;
    align-self: start;
}

/* Right column items: horizontal layout */
.showcase-item--horiz {
    display: grid;
    grid-template-columns: minmax(180px, 240px) minmax(0, 1fr);
    align-items: center;
    gap: 32px;
}

.showcase-item--horiz .showcase-text {
    width: min(100%, 240px);
    text-align: left;
    order: -1;
}

.showcase-item--tall .showcase-text {
    max-width: 400px;
}

.showcase-item--tray {
    grid-template-columns: minmax(180px, 220px) minmax(0, 1fr);
}

.showcase-item--tray .showcase-text {
    width: min(100%, 220px);
}

.showcase-item--tray .showcase-visual {
    justify-content: stretch;
}

.showcase-visual {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.showcase-item--tall .showcase-visual {
    flex: 1;
    align-items: flex-end;
}

.showcase-item--horiz .showcase-visual {
    min-width: 0;
    justify-content: flex-end;
}

.glass-card {
    border-radius: var(--radius-lg);
    background: var(--gradient-card);
    border: 1px solid var(--glass-border);
    padding: 3px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
}

.glass-inner {
    border-radius: calc(var(--radius-lg) - 3px);
    background: var(--bg-card);
    padding: 40px;
    display: flex;
    justify-content: center;
}

/* Session Card Mockup (Effortless Tracking) */
.session-card-mockup {
    border-radius: var(--radius-xl);
    background: #1C1917;
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 34px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    box-shadow: 0 60px 120px rgba(0, 0, 0, 0.5);
    width: min(430px, 100%);
}

.scm-reason-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 100px;
    background: rgba(209, 166, 122, 0.15);
    color: var(--caramel);
    font-size: 14px;
    font-weight: 700;
}

.scm-section-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-tertiary);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.scm-ring-area {
    position: relative;
    width: 184px;
    height: 184px;
    flex-shrink: 0;
}

.scm-ring-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 24px rgba(209, 166, 122, 0.25));
}

.scm-ring-progress {
    animation: scmRingGrow 8s ease-in-out infinite;
}

@keyframes scmRingGrow {
    0% { stroke-dashoffset: 280; }
    80% { stroke-dashoffset: 180; }
    100% { stroke-dashoffset: 280; }
}

.scm-center {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.scm-time {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -2px;
    font-variant-numeric: tabular-nums;
}

.scm-stats-row {
    display: flex;
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 16px 0;
}

.scm-stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.scm-stat-border {
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.scm-stat-val {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.scm-stat-lbl {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-tertiary);
}

/* Session List */
.scm-sessions {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.scm-sessions-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-tertiary);
    letter-spacing: 1.2px;
    margin-bottom: 4px;
}

.scm-session-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.scm-session-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(209, 166, 122, 0.1);
    color: var(--caramel);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.scm-session-info {
    flex: 1;
    min-width: 0;
}

.scm-session-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.scm-live-badge {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.1em;
    padding: 3px 8px;
    border-radius: 5px;
    background: rgba(31, 209, 115, 0.15);
    color: #58D37E;
}

.scm-session-dur {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-secondary);
    font-variant-numeric: tabular-nums;
}

/* Session slide-in animations */
.scm-session-anim-1 {
    animation: sessionSlideIn 8s ease-out infinite;
}
.scm-session-anim-2 {
    animation: sessionSlideIn 8s ease-out infinite;
    animation-delay: 0.8s;
}
.scm-session-anim-3 {
    animation: sessionSlideIn 8s ease-out infinite;
    animation-delay: 1.6s;
}

@keyframes sessionSlideIn {
    0% { opacity: 0; transform: translateY(16px); }
    5% { opacity: 1; transform: translateY(0); }
    85% { opacity: 1; transform: translateY(0); }
    95% { opacity: 0; transform: translateY(-8px); }
    100% { opacity: 0; transform: translateY(16px); }
}

/* Rings Card Mockup (Build Consistency) */
.rings-card-mockup {
    border-radius: var(--radius-xl);
    background: #1C1917;
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 24px 22px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 60px 120px rgba(0, 0, 0, 0.5);
    width: min(380px, 100%);
    margin-left: auto;
}

.rcm-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.rcm-title {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
}

.rcm-streak-pill {
    padding: 6px 14px;
    border-radius: 100px;
    background: rgba(209, 166, 122, 0.12);
    color: var(--caramel);
    font-size: 13px;
    font-weight: 700;
}

.rcm-ring-area {
    position: relative;
    width: 148px;
    height: 148px;
    margin: 4px auto;
    flex-shrink: 0;
}

.rcm-ring-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 28px rgba(227, 217, 199, 0.15));
}

.rcm-center {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    color: var(--oatmeal);
    letter-spacing: -0.5px;
}

.rcm-stats {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rcm-stat-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
}

.rcm-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.rcm-stat-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-tertiary);
}

.rcm-stat-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
}

/* Ring fill animations */
.rcm-ring-wear {
    animation: rcmFillWear 6s ease-out infinite;
}
.rcm-ring-streak {
    animation: rcmFillStreak 6s ease-out infinite;
    animation-delay: 0.3s;
}
.rcm-ring-life {
    animation: rcmFillLife 6s ease-out infinite;
    animation-delay: 0.6s;
}

@keyframes rcmFillWear {
    0% { stroke-dashoffset: 301; }
    30% { stroke-dashoffset: 36; }
    85% { stroke-dashoffset: 36; }
    100% { stroke-dashoffset: 301; }
}
@keyframes rcmFillStreak {
    0% { stroke-dashoffset: 226; }
    30% { stroke-dashoffset: 68; }
    85% { stroke-dashoffset: 68; }
    100% { stroke-dashoffset: 226; }
}
@keyframes rcmFillLife {
    0% { stroke-dashoffset: 151; }
    30% { stroke-dashoffset: 53; }
    85% { stroke-dashoffset: 53; }
    100% { stroke-dashoffset: 151; }
}

.showcase-text {
    position: relative;
    z-index: 1;
    text-align: left;
    max-width: none;
    order: -1;
}

.showcase-text h3 {
    font-size: clamp(30px, 3.6vw, 42px);
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.02;
    margin-bottom: 16px;
}

.showcase-text p {
    max-width: 34ch;
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.72;
}

/* ============================================
   Ecosystem
   ============================================ */
.ecosystem { padding: var(--section-pad) 0; }

.eco-section {
    display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
    margin-bottom: 100px;
}
.eco-section:last-child { margin-bottom: 0; }
.eco-section.reverse { direction: rtl; }
.eco-section.reverse > * { direction: ltr; }

.eco-text h3 { font-size: 36px; font-weight: 800; letter-spacing: -1px; margin-bottom: 14px; }
.eco-text p { font-size: 19px; color: var(--text-secondary); line-height: 1.7; }
.eco-devices { display: flex; justify-content: center; gap: 28px; flex-wrap: wrap; align-items: center; }

/* ---- Apple Watch Studio ---- */
.eco-section--watch {
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    gap: 72px;
}

.eco-devices--watch {
    justify-content: flex-end;
    width: 100%;
}

.watch-studio {
    --studio-height: 500px;
    --hero-watch-width: 258px;
    --hero-watch-height: 320px;
    --hero-strap-width: 160px;
    --hero-strap-height: 122px;
    --side-watch-width: 176px;
    --side-watch-height: 220px;
    --side-strap-width: 100px;
    --side-strap-height: 68px;
    --left-width: 288px;
    --left-height: 344px;
    --left-left: -44px;
    --left-top: 186px;
    --right-width: 334px;
    --right-height: 396px;
    --right-right: -56px;
    --right-top: 78px;
    --hero-top: 26px;
    --loop-padding: 34px;
    position: relative;
    width: min(660px, 100%);
    min-height: calc(var(--studio-height) + 74px);
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    isolation: isolate;
    overflow: visible;
}

.watch-studio::before {
    content: none;
}

.watch-studio::after {
    content: none;
}

.watch-studio__eyebrow {
    display: none;
}

.watch-studio__cluster {
    position: relative;
    z-index: 2;
    min-height: var(--studio-height);
    margin-top: 0;
}

.watch-rig {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
}

.watch-rig--hero {
    left: 50%;
    top: var(--hero-top);
    width: var(--hero-watch-width);
    transform: translateX(-50%);
    z-index: 3;
}

.watch-rig--left {
    left: var(--left-left);
    top: var(--left-top);
    width: var(--left-width);
    height: var(--left-height);
    transform: rotate(-23deg);
    z-index: 2;
}

.watch-rig--right {
    right: var(--right-right);
    top: var(--right-top);
    width: var(--right-width);
    height: var(--right-height);
    transform: rotate(18deg);
    z-index: 1;
}

.watch-rig--loop::before,
.watch-rig--loop::after {
    content: "";
    position: absolute;
    inset: 18px 12px 10px;
    border-radius: 52% 48% 50% 50% / 46% 44% 56% 54%;
    pointer-events: none;
}

.watch-rig--loop::before {
    padding: var(--loop-padding);
    background: linear-gradient(135deg, var(--loop-light) 0%, var(--loop-mid) 50%, var(--loop-dark) 100%);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    box-shadow: 0 24px 44px rgba(27, 21, 16, 0.14);
}

.watch-rig--loop::after {
    padding: calc(var(--loop-padding) - 10px);
    background:
        repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0 8px, rgba(255, 255, 255, 0) 8px 16px),
        repeating-linear-gradient(45deg, rgba(0, 0, 0, 0.08) 0 8px, rgba(0, 0, 0, 0) 8px 16px);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: var(--loop-texture);
    mix-blend-mode: soft-light;
}

.watch-rig--loop-cream {
    --loop-light: #F8F4ED;
    --loop-mid: #EEE6D9;
    --loop-dark: #D8CDBC;
    --loop-texture: 0.14;
}

.watch-rig--loop-coral {
    --loop-light: #FFBF98;
    --loop-mid: #F0956A;
    --loop-dark: #D87950;
    --loop-texture: 0.34;
}

.watch-render {
    --watch-width: 220px;
    --watch-height: 278px;
    --strap-width: 134px;
    --strap-height: 104px;
    --strap-light: #7C8EA7;
    --strap-dark: #5E6F85;
    --case-light: #727780;
    --case-mid: #3D444E;
    --case-shadow: #191E25;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    filter: drop-shadow(0 20px 30px rgba(20, 16, 12, 0.2));
}

.watch-render--hero {
    --watch-width: var(--hero-watch-width);
    --watch-height: var(--hero-watch-height);
    --strap-width: var(--hero-strap-width);
    --strap-height: var(--hero-strap-height);
}

.watch-render--side {
    --watch-width: var(--side-watch-width);
    --watch-height: var(--side-watch-height);
    --strap-width: var(--side-strap-width);
    --strap-height: var(--side-strap-height);
}

.watch-render--loopless .watch-render__strap {
    display: none;
}

.watch-render--loopless .watch-render__shell {
    margin-top: 0;
}

.watch-render--band-lilac {
    --strap-light: #D4B896;
    --strap-dark: #A8896A;
}

.watch-render--band-cream {
    --strap-light: #E8D5BE;
    --strap-dark: #C4A882;
}

.watch-render--band-coral {
    --strap-light: #C49070;
    --strap-dark: #9B6B4F;
}

.watch-render--silver {
    --case-light: #F4F0E8;
    --case-mid: #C7BCB1;
    --case-shadow: #786E65;
}

.watch-render--starlight {
    --case-light: #F7F2EA;
    --case-mid: #D5C9BB;
    --case-shadow: #8B7C6E;
}

.watch-render--champagne {
    --case-light: #F2E7DC;
    --case-mid: #CFBEAF;
    --case-shadow: #8A766A;
}

.watch-render__strap {
    width: var(--strap-width);
    height: var(--strap-height);
    background: linear-gradient(180deg, var(--strap-light), var(--strap-dark));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.42),
        0 10px 20px rgba(0, 0, 0, 0.1);
}

.watch-render__strap--top {
    border-radius: 38px 38px 18px 18px;
}

.watch-render__strap--bottom {
    margin-top: -14px;
    border-radius: 18px 18px 40px 40px;
}

.watch-render__shell {
    position: relative;
    z-index: 2;
    width: var(--watch-width);
    height: var(--watch-height);
    margin-top: -14px;
    border-radius: calc(var(--watch-width) * 0.26);
    padding: 9px;
    background: linear-gradient(145deg, var(--case-light) 0%, var(--case-mid) 46%, var(--case-shadow) 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.58),
        inset 0 -1px 0 rgba(0, 0, 0, 0.24),
        0 22px 34px rgba(21, 18, 14, 0.22);
}

.watch-render__shell::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 14px;
    right: 14px;
    height: 22px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0));
    opacity: 0.92;
}

.watch-render__bezel {
    width: 100%;
    height: 100%;
    border-radius: calc(var(--watch-width) * 0.22);
    background: #040404;
    padding: 11px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -6px 18px rgba(255, 255, 255, 0.03);
}

.watch-render--hero .watch-render__bezel {
    padding: 12px;
}

.watch-render__button {
    position: absolute;
    right: -6px;
    top: 58%;
    transform: translateY(-50%);
    width: 10px;
    height: calc(var(--watch-height) * 0.18);
    border-radius: 10px;
    background: linear-gradient(180deg, var(--case-light), var(--case-shadow));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.36);
}

.watch-render__crown {
    position: absolute;
    right: calc(var(--watch-width) * -0.07);
    top: 42%;
    transform: translateY(-50%);
    width: calc(var(--watch-width) * 0.15);
    height: calc(var(--watch-width) * 0.15);
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.44) 0%, rgba(255, 255, 255, 0.16) 58%, rgba(0, 0, 0, 0.14) 72%),
        linear-gradient(145deg, var(--case-light), var(--case-shadow));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        0 8px 16px rgba(0, 0, 0, 0.16);
}

.watch-render__crown::before {
    content: "";
    position: absolute;
    inset: 5px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.watch-screen {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: calc(var(--watch-width) * 0.18);
    overflow: hidden;
}

.watch-screen--mocha-rings,
.watch-screen--mocha-summary,
.watch-screen--mocha-session {
    background: linear-gradient(180deg, #2D2621 0%, #1E1A17 100%);
    color: #F4ECE2;
    padding: 13px 13px 15px;
}

.watch-screen--mocha-rings {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.watch-screen--mocha-summary {
    display: flex;
    flex-direction: column;
}

.watch-screen--mocha-session {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.watch-render--hero .watch-screen--mocha-rings {
    padding: 16px 16px 18px;
}

.watch-mocha__top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.watch-mocha__top-row--summary {
    margin-bottom: 14px;
}

.watch-mocha__app {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.watch-mocha__icon {
    width: 18px;
    height: 18px;
    border-radius: 5px;
    flex: none;
}

.watch-mocha__icon--small {
    width: 16px;
    height: 16px;
    border-radius: 4px;
}

.watch-mocha__app span {
    font-size: 10px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.62);
    white-space: nowrap;
}

.watch-render--hero .watch-mocha__app span {
    font-size: 13px;
}

.watch-mocha__badge {
    padding: 4px 8px;
    border-radius: 9px;
    background: rgba(31, 209, 115, 0.16);
    color: #58D37E;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.watch-render--hero .watch-mocha__badge {
    padding: 5px 10px;
    border-radius: 10px;
    font-size: 11px;
}

.watch-mocha-rings__cluster {
    position: relative;
    width: 96px;
    height: 96px;
    margin: 12px auto 10px;
}

.watch-mocha-rings__cluster svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.18));
}

.watch-mocha-rings__center {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: -0.05em;
    color: #F3EDE0;
}

.watch-render--hero .watch-mocha-rings__cluster {
    width: 132px;
    height: 132px;
    margin: 20px auto 16px;
}

.watch-render--hero .watch-mocha-rings__center {
    font-size: 21px;
}

.watch-mocha-rings__tray {
    text-align: center;
    font-size: 10px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.48);
}

.watch-render--hero .watch-mocha-rings__tray {
    font-size: 12px;
}

.watch-mocha-summary__rows {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
}

.watch-mocha-summary__row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.05);
}

.watch-mocha-summary__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.watch-mocha-summary__dot--wear {
    background: #EDE3CF;
}

.watch-mocha-summary__dot--streak {
    background: #D6B178;
}

.watch-mocha-summary__dot--tray {
    background: #C97B59;
}

.watch-mocha-summary__label {
    font-size: 10px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.4);
}

.watch-mocha-summary__value {
    font-size: 12px;
    font-weight: 800;
    color: #F4ECE2;
    white-space: nowrap;
}

.watch-session__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.watch-session__clock {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #F5ECE0;
}

.watch-session__body {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.watch-session__timer {
    font-size: 40px;
    line-height: 0.9;
    font-weight: 800;
    letter-spacing: -0.06em;
    color: #FFF8EF;
    font-variant-numeric: tabular-nums;
}

.watch-session__reason {
    max-width: 10ch;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.05;
    color: #EFE4D6;
}

.watch-session__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-size: 9px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.48);
}

.watch-session__pill {
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(240, 183, 117, 0.16);
    color: #F0B775;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

/* ---- Home Widgets ---- */
.widgets-showcase {
    display: flex;
    gap: 24px;
    align-items: flex-end;
    flex-wrap: wrap;
    justify-content: center;
}

.hw {
    border-radius: 28px;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* Small */
.hw-small {
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hw-ring-wrap {
    position: relative;
    width: 100px;
    height: 100px;
}
.hw-ring-wrap svg { width: 100%; height: 100%; }
.hw-pct {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    color: var(--oatmeal);
}

/* Small widget ring animation */
.hw-small .hw-ring-wrap svg circle:last-child {
    animation: hwSmallFill 5s ease-out infinite;
}
@keyframes hwSmallFill {
    0% { stroke-dashoffset: 126; }
    30% { stroke-dashoffset: 10; }
    85% { stroke-dashoffset: 10; }
    100% { stroke-dashoffset: 126; }
}

/* Medium */
.hw-medium {
    width: 320px;
    height: 150px;
    display: flex;
    align-items: center;
    padding: 20px 24px;
    gap: 20px;
}
.hw-med-ring { width: 90px; height: 90px; flex-shrink: 0; }
.hw-med-right { display: flex; flex-direction: column; gap: 4px; }
.hw-med-title { font-size: 13px; color: var(--text-tertiary); font-weight: 600; }
.hw-med-val { font-size: 28px; font-weight: 800; color: var(--text-primary); letter-spacing: -1px; }
.hw-med-sub { font-size: 13px; color: var(--text-tertiary); }
.hw-med-bar { height: 5px; border-radius: 3px; background: rgba(180,148,118,0.15); width: 120px; overflow: hidden; margin-top: 6px; }
.hw-med-fill { height: 100%; width: 55%; border-radius: 3px; background: var(--gradient-warm); animation: hwBarGrow 4s ease-out infinite alternate; }

@keyframes hwBarGrow {
    0% { width: 10%; }
    100% { width: 55%; }
}

/* Medium widget ring animation */
.hw-medium .hw-med-ring circle:nth-child(2) {
    animation: hwMedOuter 5s ease-out infinite;
}
.hw-medium .hw-med-ring circle:nth-child(4) {
    animation: hwMedInner 5s ease-out infinite;
    animation-delay: 0.3s;
}
@keyframes hwMedOuter {
    0% { stroke-dashoffset: 138; }
    30% { stroke-dashoffset: 11; }
    85% { stroke-dashoffset: 11; }
    100% { stroke-dashoffset: 138; }
}
@keyframes hwMedInner {
    0% { stroke-dashoffset: 101; }
    30% { stroke-dashoffset: 30; }
    85% { stroke-dashoffset: 30; }
    100% { stroke-dashoffset: 101; }
}

/* Large */
.hw-large {
    width: 320px;
    padding: 24px;
}
.hw-lg-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}
.hw-lg-title { font-size: 16px; font-weight: 700; color: var(--text-primary); }
.hw-lg-status {
    font-size: 12px;
    font-weight: 600;
    color: #1FD173;
    padding: 4px 10px;
    border-radius: 6px;
    background: rgba(31,209,115,0.1);
}
.hw-lg-body { display: flex; align-items: center; gap: 20px; }
.hw-lg-ring-wrap { width: 110px; height: 110px; flex-shrink: 0; }
.hw-lg-ring-wrap svg { width: 100%; height: 100%; }
.hw-lg-stats { display: flex; flex-direction: column; gap: 12px; }
.hw-lg-stat { display: flex; flex-direction: column; gap: 2px; }
.hw-lg-sval { font-size: 18px; font-weight: 800; color: var(--text-primary); letter-spacing: -0.5px; }
.hw-lg-slbl { font-size: 11px; color: var(--text-tertiary); font-weight: 500; }

/* Large widget ring animation */
.hw-large .hw-lg-ring-wrap circle:nth-child(2) {
    animation: hwLgWear 6s ease-out infinite;
}
.hw-large .hw-lg-ring-wrap circle:nth-child(4) {
    animation: hwLgStreak 6s ease-out infinite;
    animation-delay: 0.2s;
}
.hw-large .hw-lg-ring-wrap circle:nth-child(6) {
    animation: hwLgLife 6s ease-out infinite;
    animation-delay: 0.4s;
}
@keyframes hwLgWear {
    0% { stroke-dashoffset: 201; }
    25% { stroke-dashoffset: 16; }
    80% { stroke-dashoffset: 16; }
    100% { stroke-dashoffset: 201; }
}
@keyframes hwLgStreak {
    0% { stroke-dashoffset: 145; }
    25% { stroke-dashoffset: 36; }
    80% { stroke-dashoffset: 36; }
    100% { stroke-dashoffset: 145; }
}
@keyframes hwLgLife {
    0% { stroke-dashoffset: 88; }
    25% { stroke-dashoffset: 35; }
    80% { stroke-dashoffset: 35; }
    100% { stroke-dashoffset: 88; }
}

/* ---- Live Activities ---- */
.la-showcase {
    width: min(560px, 100%);
    display: flex;
    flex-direction: column;
    gap: 22px;
    align-items: center;
}

/* ---- Live Activity Animations (Apple-style) ---- */

/* Dynamic Island: expand from pill */
.la-showcase .dynamic-island {
    animation: diExpand 7s cubic-bezier(0.34, 1.56, 0.64, 1) infinite;
}

@keyframes diExpand {
    0% { transform: scaleX(0.6) scaleY(0.8); opacity: 0; }
    8% { transform: scaleX(1) scaleY(1); opacity: 1; }
    88% { transform: scaleX(1) scaleY(1); opacity: 1; }
    96% { transform: scaleX(0.6) scaleY(0.8); opacity: 0; }
    100% { transform: scaleX(0.6) scaleY(0.8); opacity: 0; }
}

/* Live Activity Card: slide up with spring */
.la-showcase .live-activity-card {
    animation: laSlideUp 7s cubic-bezier(0.34, 1.56, 0.64, 1) infinite;
    animation-delay: 0.4s;
}

@keyframes laSlideUp {
    0% { transform: translateY(40px) scale(0.95); opacity: 0; }
    10% { transform: translateY(0) scale(1); opacity: 1; }
    85% { transform: translateY(0) scale(1); opacity: 1; }
    95% { transform: translateY(40px) scale(0.95); opacity: 0; }
    100% { transform: translateY(40px) scale(0.95); opacity: 0; }
}

/* Pulsing glow dot */
.la-showcase .live-activity-card__dot {
    animation: dotPulseGlow 2s ease-in-out infinite;
}

@keyframes dotPulseGlow {
    0%, 100% { box-shadow: 0 0 8px rgba(219, 174, 116, 0.4); transform: scale(1); }
    50% { box-shadow: 0 0 20px rgba(219, 174, 116, 0.9); transform: scale(1.2); }
}

/* LIVE badge pulse */
.la-showcase .live-activity-card__badge {
    animation: liveBadgePulse 3s ease-in-out infinite;
}

@keyframes liveBadgePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Timer pill subtle breathe */
.la-showcase .live-activity-card__timer-pill {
    animation: pillBreathe 4s ease-in-out infinite;
}

@keyframes pillBreathe {
    0%, 100% { box-shadow: inset 0 1px 0 rgba(255,255,255,0.03), 0 10px 22px rgba(17,12,8,0.2); }
    50% { box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 14px 30px rgba(17,12,8,0.3), 0 0 40px rgba(209,166,122,0.06); }
}

/* Close button subtle rotate */
.la-showcase .live-activity-card__close {
    animation: closeRotate 7s ease-in-out infinite;
    animation-delay: 0.4s;
}

@keyframes closeRotate {
    0% { transform: rotate(-90deg) scale(0); }
    12% { transform: rotate(0deg) scale(1); }
    85% { transform: rotate(0deg) scale(1); }
    95% { transform: rotate(90deg) scale(0); }
    100% { transform: rotate(90deg) scale(0); }
}

/* ============================================
   Tray Management
   ============================================ */
/* Tray card styles (used inside experience showcase) */

/* Stacked card carousel */
.tray-stack {
    position: relative;
    width: min(100%, 680px);
    margin-left: auto;
    padding-top: 16px;
    padding-bottom: 8px;
}

.showcase-item--tray .tray-stack {
    width: 100%;
    max-width: none;
}

.tray-stack__card {
    position: absolute;
    left: 50%;
    top: 20px;
    width: 92%;
    height: 100%;
    border-radius: var(--radius-xl);
    background: #24201B;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.tray-stack__card--back2 {
    transform: translateX(-50%) scale(0.9);
    opacity: 0.3;
    z-index: 1;
    top: 8px;
    animation: stackBack2 8s ease-in-out infinite;
}

.tray-stack__card--back1 {
    transform: translateX(-50%) scale(0.95);
    opacity: 0.5;
    z-index: 2;
    top: 14px;
    animation: stackBack1 8s ease-in-out infinite;
}

.tray-stack .tray-card-mockup {
    position: relative;
    z-index: 3;
    animation: stackFront 8s ease-in-out infinite;
}

@keyframes stackBack2 {
    0%, 100% { transform: translateX(-50%) scale(0.88); top: 4px; opacity: 0.25; }
    50% { transform: translateX(-50%) scale(0.90); top: 10px; opacity: 0.35; }
}

@keyframes stackBack1 {
    0%, 100% { transform: translateX(-50%) scale(0.93); top: 10px; opacity: 0.45; }
    50% { transform: translateX(-50%) scale(0.95); top: 16px; opacity: 0.55; }
}

@keyframes stackFront {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.tray-card-mockup {
    width: 100%;
    border-radius: var(--radius-xl);
    background: #1C1917;
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 24px 26px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    box-shadow: 0 60px 120px rgba(0, 0, 0, 0.5);
}

.tcm-horizontal .tcm-body {
    display: flex;
    gap: 26px;
    align-items: flex-start;
}

.tcm-horizontal .tcm-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    width: 160px;
}

.tcm-horizontal .tcm-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 0;
}

/* Header */
.tcm-header {
    display: flex;
    align-items: center;
    gap: 8px;
}

.tcm-active-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--oatmeal);
}

.tcm-active-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    flex: 1;
}

.tcm-menu {
    font-size: 16px;
    color: var(--text-tertiary);
    letter-spacing: 2px;
}

/* Progress Ring */
.tcm-ring-area {
    position: relative;
    width: 144px;
    height: 144px;
    margin: 0 auto;
}

.tcm-ring-svg {
    width: 100%;
    height: 100%;
}

.tcm-ring-progress {
    animation: tcmRingFill 6s ease-out infinite;
}

@keyframes tcmRingFill {
    0% { stroke-dashoffset: 301; }
    30% { stroke-dashoffset: 201; }
    85% { stroke-dashoffset: 201; }
    100% { stroke-dashoffset: 301; }
}

.tcm-center {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.tcm-tray-num {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -1px;
}

.tcm-tray-day {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-tertiary);
}

.tcm-date-range {
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-tertiary);
    margin-top: -8px;
}

/* Stats Grid */
.tcm-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.tcm-stat-cell {
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.tcm-stat-full {
    width: 100%;
}

.tcm-stat-val {
    font-size: 16px;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.tcm-val-warn {
    color: var(--terracotta);
}

.tcm-stat-lbl {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-tertiary);
}

/* Daily Log */
.tcm-daily-log {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tcm-log-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-tertiary);
    letter-spacing: 1.2px;
}

.tcm-log-detail {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
}

.tcm-log-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.tcm-dot-amber {
    background: var(--caramel);
}

.tcm-log-day-text {
    flex: 1;
}

.tcm-log-wear {
    font-weight: 700;
    color: var(--text-primary);
}

.tcm-day-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.tcm-day {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-tertiary);
}

.tcm-day-pass {
    background: rgba(31, 209, 115, 0.15);
    color: #58D37E;
}

.tcm-day-warn {
    background: rgba(209, 166, 122, 0.15);
    color: var(--caramel);
}

.tcm-day-active {
    background: var(--oatmeal);
    color: #1C1917;
}

/* Day grid slide-in animation */
.tcm-day {
    animation: tcmDaySlide 6s ease-out infinite;
    opacity: 0;
}

.tcm-day:nth-child(1) { animation-delay: 0s; }
.tcm-day:nth-child(2) { animation-delay: 0.08s; }
.tcm-day:nth-child(3) { animation-delay: 0.16s; }
.tcm-day:nth-child(4) { animation-delay: 0.24s; }
.tcm-day:nth-child(5) { animation-delay: 0.32s; }
.tcm-day:nth-child(6) { animation-delay: 0.40s; }
.tcm-day:nth-child(7) { animation-delay: 0.48s; }
.tcm-day:nth-child(8) { animation-delay: 0.56s; }
.tcm-day:nth-child(9) { animation-delay: 0.64s; }
.tcm-day:nth-child(10) { animation-delay: 0.72s; }
.tcm-day:nth-child(11) { animation-delay: 0.80s; }
.tcm-day:nth-child(12) { animation-delay: 0.88s; }
.tcm-day:nth-child(13) { animation-delay: 0.96s; }
.tcm-day:nth-child(14) { animation-delay: 1.04s; }

@keyframes tcmDaySlide {
    0% { opacity: 0; transform: scale(0.5); }
    10% { opacity: 1; transform: scale(1); }
    82% { opacity: 1; transform: scale(1); }
    92% { opacity: 0; transform: scale(0.5); }
    100% { opacity: 0; transform: scale(0.5); }
}

/* Stats cells staggered fade */
.tcm-stat-cell {
    animation: tcmStatFade 6s ease-out infinite;
    opacity: 0;
}

.tcm-stats-grid .tcm-stat-cell:nth-child(1) { animation-delay: 0.2s; }
.tcm-stats-grid .tcm-stat-cell:nth-child(2) { animation-delay: 0.35s; }
.tcm-stats-grid .tcm-stat-cell:nth-child(3) { animation-delay: 0.5s; }
.tcm-stats-grid .tcm-stat-cell:nth-child(4) { animation-delay: 0.65s; }
.tcm-stat-full { animation-delay: 0.8s; }

@keyframes tcmStatFade {
    0% { opacity: 0; transform: translateY(10px); }
    10% { opacity: 1; transform: translateY(0); }
    82% { opacity: 1; transform: translateY(0); }
    92% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 0; transform: translateY(10px); }
}

/* ============================================
   Download
   ============================================ */
.download {
    padding: var(--section-pad) 0;
    text-align: center;
}

.download-title {
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1.1;
    margin-bottom: 16px;
}

.download-desc {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.app-store-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    border-radius: 14px;
    background: white;
    color: black;
    font-weight: 600;
    transition: all 0.3s var(--ease-spring);
}

.app-store-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.1);
}

.app-store-badge div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.badge-small {
    font-size: 10px;
    font-weight: 400;
    line-height: 1;
}

.badge-large {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
}

/* ============================================
   Support
   ============================================ */
.support {
    padding: var(--section-pad) 0;
}

.support-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 20px;
}

.support-card {
    padding: 32px;
    border-radius: var(--radius-lg);
    background: var(--gradient-card);
    border: 1px solid var(--glass-border);
}

.support-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}

.support-card ul li {
    font-size: 14px;
    color: var(--text-secondary);
    padding: 8px 0;
    border-bottom: 1px solid var(--glass-border);
    padding-left: 16px;
    position: relative;
}

.support-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--caramel);
}

.support-card ul li:last-child {
    border-bottom: none;
}

.support-card details {
    border-bottom: 1px solid var(--glass-border);
    padding: 12px 0;
}

.support-card details:last-of-type {
    border-bottom: none;
}

.support-card details summary {
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    color: var(--text-primary);
    transition: color 0.3s;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.support-card details summary::-webkit-details-marker {
    display: none;
}

.support-card details summary::after {
    content: '+';
    font-size: 18px;
    color: var(--caramel);
    transition: transform 0.3s;
}

.support-card details[open] summary::after {
    transform: rotate(45deg);
}

.support-card details p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-top: 8px;
    padding-right: 24px;
}

.support-email {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
    padding: 12px 20px;
    border-radius: 12px;
    background: rgba(209, 166, 122, 0.1);
    border: 1px solid rgba(209, 166, 122, 0.2);
    font-size: 14px;
    font-weight: 500;
    color: var(--caramel);
    transition: all 0.3s;
}

.support-email:hover {
    background: rgba(209, 166, 122, 0.15);
    border-color: rgba(209, 166, 122, 0.3);
}

.support-note {
    font-size: 12px;
    color: var(--text-tertiary);
    margin-top: 12px;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    padding: 48px 0;
    border-top: 1px solid var(--glass-border);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 16px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 13px;
    color: var(--text-secondary);
    transition: color 0.3s;
}

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

.footer-copy {
    font-size: 12px;
    color: var(--text-tertiary);
}

/* ============================================
   Animations
   ============================================ */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
    .features-showcase {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .feature-panel--hero {
        grid-column: 1 / -1;
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .feature-panel--calendar,
    .feature-panel--history,
    .feature-panel--reminders,
    .feature-panel--sync-privacy {
        grid-column: span 1;
    }

    .sync-privacy-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .sync-privacy-divider {
        width: 100%;
        height: 1px;
    }

    .feature-panel p {
        max-width: none;
    }

    .feature-rings-stage {
        min-height: 360px;
    }

    .feature-rings-chip--top {
        right: 12%;
    }

    .feature-rings-chip--left {
        left: 8%;
    }

    .eco-section, .eco-section.reverse {
        grid-template-columns: 1fr; direction: ltr; text-align: center; gap: 32px;
    }

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

    .ios-preview-surface--live,
    .la-showcase {
        width: 100%;
    }

    .watch-studio {
        width: min(720px, 100%);
    }

    .eco-devices--watch {
        justify-content: center;
    }

    .watch-studio__cluster {
        margin-top: 0;
    }

    .experience-showcase {
        grid-template-columns: 1fr;
        max-width: 880px;
        margin: 0 auto;
    }

    .showcase-item--tall {
        grid-row: auto;
    }

    .showcase-item--horiz {
        grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-title {
        letter-spacing: -2px;
    }

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

    .feature-panel,
    .feature-panel--hero,
    .feature-panel--calendar,
    .feature-panel--history,
    .feature-panel--reminders,
    .feature-panel--sync-privacy {
        grid-column: auto;
    }

    .feature-panel {
        padding: 24px;
        border-radius: 32px;
    }

    .feature-panel::after {
        left: 24px;
        right: 24px;
    }

    .feature-panel--hero {
        padding: 28px 24px;
        gap: 24px;
    }

    .feature-value-list,
    .history-board__top,
    .sync-device-list {
        grid-template-columns: 1fr;
    }

    .feature-rings-stage {
        min-height: auto;
        flex-direction: column;
        gap: 12px;
        padding: 0;
    }

    .feature-rings-chip {
        position: static;
        width: fit-content;
        max-width: 100%;
    }

    .feature-ui-mockup--hero {
        width: 100%;
        min-height: 320px;
    }

    .feature-panel h3 {
        font-size: clamp(28px, 7vw, 36px);
    }

    .feature-panel:not(.feature-panel--hero) h3 {
        font-size: clamp(24px, 6vw, 32px);
    }

    .history-week__header {
        align-items: flex-start;
    }

    .history-week__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 12px 10px;
    }

    .history-ring {
        width: 54px;
        height: 54px;
    }

    .history-ring--selected {
        width: 54px;
        height: 54px;
    }

    .history-week__title {
        font-size: 26px;
    }

    .history-week__icon {
        width: 48px;
        height: 48px;
        border-radius: 16px;
    }

    .week-strip {
        gap: 6px;
    }

    .ws-day {
        padding: 10px 4px;
    }

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

    .showcase-item--tall {
        grid-row: auto;
    }

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

    .showcase-item--horiz .showcase-text {
        width: 100%;
        order: -1;
    }

    .showcase-item {
        padding: 24px;
        border-radius: 32px;
    }

    .showcase-item::after {
        left: 24px;
        right: 24px;
    }

    .showcase-item--tall .showcase-visual,
    .showcase-item--horiz .showcase-visual {
        justify-content: center;
        align-items: center;
    }

    .showcase-item--tall .showcase-text,
    .showcase-item--horiz .showcase-text {
        max-width: none;
    }

    .showcase-text h3 {
        font-size: clamp(28px, 7vw, 36px);
    }

    .showcase-text p {
        max-width: none;
    }

    .session-card-mockup,
    .rings-card-mockup,
    .tray-stack {
        width: 100%;
        max-width: 460px;
        margin: 0 auto;
    }

    .session-card-mockup {
        padding: 30px 22px;
    }

    .rings-card-mockup {
        margin-left: 0;
    }

    .tray-stack {
        padding-top: 10px;
    }

    .tray-card-mockup {
        padding: 20px;
    }

    .tcm-horizontal .tcm-body {
        flex-direction: column;
    }

    .phone-frame {
        width: 240px;
        height: 480px;
    }

    .ios-preview-surface--hero {
        min-height: 236px;
        padding: 0;
    }

    .ios-preview-surface--island {
        min-height: auto;
        padding: 0;
    }

    .ios-preview-surface--live {
        min-height: auto;
        padding: 0;
    }

    .dynamic-island {
        min-height: 56px;
        padding: 0 20px 0 16px;
    }

    .dynamic-island__timer {
        font-size: 17px;
    }

    .utensil-mark--island {
        width: 17px;
        height: 17px;
    }

    .utensil-mark--card {
        width: 30px;
        height: 30px;
    }

    .live-activity-card {
        padding: 22px 20px 20px;
        border-radius: 28px;
    }

    .live-activity-card__title {
        font-size: 20px;
    }

    .live-activity-card__subtitle {
        font-size: 14px;
    }

    .live-activity-card__close {
        width: 46px;
        height: 46px;
    }

    .live-activity-card__timer-pill {
        min-height: 76px;
        padding: 0 22px;
        gap: 14px;
    }

    .live-activity-card__timer {
        font-size: 40px;
    }

    .live-activity-card__badge {
        font-size: 11px;
        letter-spacing: 0.18em;
        padding: 6px 11px 7px;
    }

    .watch-studio {
        --studio-height: 430px;
        --hero-watch-width: 224px;
        --hero-watch-height: 278px;
        --hero-strap-width: 138px;
        --hero-strap-height: 104px;
        --side-watch-width: 148px;
        --side-watch-height: 186px;
        --left-width: 244px;
        --left-height: 292px;
        --left-left: -40px;
        --left-top: 164px;
        --right-width: 282px;
        --right-height: 334px;
        --right-right: -48px;
        --right-top: 74px;
        --hero-top: 22px;
        --loop-padding: 28px;
        padding: 0;
        border-radius: 0;
    }

    .watch-studio__eyebrow {
        font-size: 10px;
    }

    .watch-render--hero .watch-mocha__app span {
        font-size: 11px;
    }

    .watch-render--hero .watch-mocha__badge {
        font-size: 10px;
    }

    .watch-render--hero .watch-mocha-rings__cluster {
        width: 114px;
        height: 114px;
        margin: 16px auto 12px;
    }

    .watch-render--hero .watch-mocha-rings__center {
        font-size: 18px;
    }

    .watch-render--hero .watch-mocha-rings__tray {
        font-size: 10px;
    }

    .watch-render--side .watch-mocha__app span {
        font-size: 9px;
    }

    .watch-render--side .watch-mocha-summary__label {
        font-size: 9px;
    }

    .watch-render--side .watch-mocha-summary__value {
        font-size: 10px;
    }

    .watch-session__timer {
        font-size: 34px;
    }

    .watch-session__reason {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        justify-content: center;
        max-width: 300px;
    }

    .active-session-card {
        padding: 12px;
    }

    .dynamic-island {
        width: 100%;
        min-height: 52px;
        padding: 0 18px 0 14px;
    }

    .dynamic-island__timer {
        font-size: 16px;
    }

    .live-activity-card {
        padding: 18px 16px 16px;
        border-radius: 24px;
    }

    .live-activity-card__header {
        gap: 12px;
    }

    .live-activity-card__identity {
        gap: 12px;
    }

    .live-activity-card__title {
        font-size: 18px;
    }

    .live-activity-card__subtitle {
        font-size: 13px;
    }

    .live-activity-card__close {
        width: 42px;
        height: 42px;
    }

    .live-activity-card__timer-pill {
        min-height: 70px;
        padding: 0 18px;
        gap: 12px;
    }

    .live-activity-card__dot {
        width: 10px;
        height: 10px;
    }

    .live-activity-card__timer {
        font-size: 34px;
    }

    .live-activity-card__badge {
        font-size: 10px;
        padding: 6px 10px 7px;
    }

    .watch-studio {
        --studio-height: 320px;
        --hero-watch-width: 176px;
        --hero-watch-height: 220px;
        --hero-strap-width: 112px;
        --hero-strap-height: 84px;
        --side-watch-width: 118px;
        --side-watch-height: 148px;
        --left-width: 188px;
        --left-height: 232px;
        --left-left: -36px;
        --left-top: 126px;
        --right-width: 220px;
        --right-height: 264px;
        --right-right: -40px;
        --right-top: 60px;
        --hero-top: 16px;
        --loop-padding: 20px;
        padding: 0;
        border-radius: 0;
    }

    .watch-studio__eyebrow {
        font-size: 9px;
        letter-spacing: 0.14em;
    }

    .watch-studio__cluster {
        margin-top: 0;
    }

    .watch-render__shell {
        padding: 8px;
    }

    .watch-render__bezel {
        padding: 8px;
    }

    .watch-render--hero .watch-screen--mocha-rings,
    .watch-render--side .watch-screen--mocha-summary,
    .watch-render--side .watch-screen--mocha-session {
        padding: 10px 10px 12px;
    }

    .watch-render--hero .watch-mocha__icon {
        width: 16px;
        height: 16px;
        border-radius: 4px;
    }

    .watch-render--hero .watch-mocha__app span {
        font-size: 9px;
    }

    .watch-render--hero .watch-mocha__badge {
        padding: 4px 7px;
        border-radius: 8px;
        font-size: 8px;
    }

    .watch-render--hero .watch-mocha-rings__cluster {
        width: 88px;
        height: 88px;
        margin: 12px auto 8px;
    }

    .watch-render--hero .watch-mocha-rings__center {
        font-size: 14px;
    }

    .watch-render--hero .watch-mocha-rings__tray {
        font-size: 8px;
    }

    .watch-render--side .watch-mocha__app {
        gap: 6px;
    }

    .watch-render--side .watch-mocha__app span,
    .watch-render--side .watch-mocha-summary__label,
    .watch-render--side .watch-mocha-summary__value,
    .watch-session__clock,
    .watch-session__footer {
        font-size: 8px;
    }

    .watch-render--side .watch-mocha-summary__rows {
        gap: 7px;
    }

    .watch-render--side .watch-mocha-summary__row {
        gap: 6px;
        padding: 7px 8px;
        border-radius: 11px;
    }

    .watch-render--side .watch-mocha-summary__dot {
        width: 8px;
        height: 8px;
    }

    .watch-session__timer {
        font-size: 26px;
    }

    .watch-session__reason {
        font-size: 9px;
    }

    .watch-session__pill {
        padding: 3px 7px;
        font-size: 7px;
    }

    .feature-panel {
        padding: 20px;
    }

    .feature-panel::after {
        left: 20px;
        right: 20px;
    }

    .feature-panel--hero {
        padding: 24px 20px;
    }

    .feature-value-card__value {
        font-size: 20px;
    }

    .history-board__value {
        font-size: 34px;
    }

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

    .history-week__title {
        font-size: 20px;
    }

    .history-week__icon {
        width: 38px;
        height: 38px;
        border-radius: 14px;
    }

    .history-ring {
        width: 46px;
        height: 46px;
    }

    .history-ring--selected {
        width: 46px;
        height: 46px;
    }

    .sync-device-list {
        grid-template-columns: 1fr;
    }

    .showcase-item {
        padding: 20px;
    }

    .showcase-item::after {
        left: 20px;
        right: 20px;
    }

    .scm-ring-area {
        width: 164px;
        height: 164px;
    }

    .scm-time {
        font-size: 32px;
    }

    .rcm-ring-area {
        width: 136px;
        height: 136px;
    }
}
