/* 
  APPLE-LEVEL OPULENCE MINIMALISM
  San Francisco / Inter typeface, vast negative space, pure whites, soft glass. 
*/

:root {
    --bg-color: #ffffff;
    --text-primary: #111111;
    --text-secondary: #666666;
    
    --glass-bg: rgba(255, 255, 255, 0.4);
    --glass-border: rgba(150, 150, 150, 0.1);
    --glass-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.5;
    overflow-x: hidden;
}

.page-content {
    position: relative;
    z-index: 2;
}

/* Typography */
h1, h2, h3, h4, h5 {
    font-family: 'Inter', -apple-system, sans-serif;
    font-weight: 500;
    letter-spacing: -0.03em;
}

.brand-font {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.display-font {
    font-family: 'Cormorant Garamond', 'Bodoni Moda', 'Playfair Display', serif;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.mono-font {
    font-family: 'SF Mono', 'JetBrains Mono', ui-monospace, monospace;
    letter-spacing: 0.08em;
}

.logo {
    font-size: 1.25rem;
}

h1.hero-title {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-weight: 300;
}

.section-title, .closing-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
}

p {
    color: var(--text-secondary);
}

/* Glassmorphism Classes */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: 16px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

/* Header */
.site-header {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 32px;
    z-index: 100;
    border-radius: 30px;
}
.site-header:hover {
    box-shadow: 0 16px 40px rgba(0,0,0,0.06);
}
.logo {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}
.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    margin-left: 32px;
    font-size: 0.9rem;
    transition: color 0.3s;
}
.nav-links a:hover {
    color: var(--text-primary);
}

.nav-waitlist-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.7);
    color: var(--text-primary);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-waitlist-pill:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.nav-pill-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(17, 17, 17, 0.06);
}

/* Buttons */
.btn {
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 30px;
    display: inline-block;
    font-weight: 500;
    font-size: 0.95rem;
}
.btn-primary {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.8);
}
.btn-secondary {
    color: var(--text-secondary);
    background: transparent;
}
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 5%;
    position: relative;
    max-width: 100vw;
    margin: 0;
    overflow: hidden;
}

.hero-content {
    z-index: 10;
    max-width: 340px; /* Thinner, refined column */
    text-align: left;
    position: relative;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    animation: fadeRight 1s ease-out forwards;
    pointer-events: none; /* Let clicks pass to the 3D scene */
}

.hero-content > * {
    pointer-events: auto; /* Re-enable clicks on text/buttons */
}

@keyframes fadeRight {
    0% { opacity: 0; transform: translateX(-20px); }
    100% { opacity: 1; transform: translateX(0); }
}

.hero-title {
    font-size: 2.2rem !important; /* Reduced 40-50% */
    letter-spacing: 0.05em;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.hero-subtitle {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.hero-body {
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 0; /* Margin handled by pills below if needed */
}

.hero-imagery {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; /* Fully horizontal and screen-filling */
    height: 100%;
    z-index: 1; 
    pointer-events: auto; 
}

.motion-space {
    display: none;
}

.hero-watch-container {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-watch {
    width: 100% !important;
    height: 100% !important;
    display: block;
    background: transparent;
    object-fit: cover;
    outline: none;
    /* Removed drop-shadow and float animation to let Spline handle the 3D */
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}

/* Breathing animation for pills */
@keyframes breathe {
    0% { transform: scale(1); box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
    50% { transform: scale(1.02); box-shadow: 0 8px 25px rgba(0,0,0,0.1); }
    100% { transform: scale(1); box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
}

.pill-breathe {
    animation: breathe 4s infinite ease-in-out;
}

/* Nav Pills Row */
.hero-nav-pills {
    display: flex;
    justify-content: flex-start;
    gap: 12px;
    margin-top: 3rem;
    pointer-events: auto;
}

.hero-nav-pill {
    padding: 6px 14px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 400;
    border: 1px solid rgba(200, 200, 200, 0.2);
    transition: all 0.3s;
}

.hero-nav-pill:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-primary);
    border-color: rgba(200, 200, 200, 0.8);
}

/* Bottom Right Apple-style Pill */
.bottom-right-pill {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: linear-gradient(135deg, #0c0c0c, #1a1a1a);
    color: #ffffff;
    padding: 14px 30px;
    border-radius: 30px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 100;
    font-size: 0.95rem;
    font-family: 'Cormorant Garamond', 'Cinzel', serif;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.bottom-right-pill .red-text {
    color: #ff3b30; /* Apple System Red */
    letter-spacing: 0.2em;
}

.bottom-right-pill .arrow {
    color: #ffffff;
    font-size: 1.1rem;
}

/* Sections General */
section {
    padding: 100px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Brand Story */
.story-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}
.story-card {
    padding: 40px;
}
.story-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

/* Vertical Scroll / Craft */
.vertical-scroll-section {
    height: 200vh; /* space for scrolling */
    position: relative;
}
.scroll-container {
    position: sticky;
    top: 15vh;
    display: flex;
    gap: 5%;
    height: 70vh;
    align-items: center;
}
.scroll-text-pinned {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.scroll-text-pinned h2 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 24px;
}
.scroll-imagery {
    flex: 0 0 clamp(260px, 32vw, 420px);
    height: clamp(420px, 70vh, 560px);
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.tall-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
}

/* Materials */
.materials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.glass-widget {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 32px;
    transition: transform 0.3s;
}
.glass-widget:hover {
    transform: translateY(-5px);
}
.glass-widget h4 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

/* Watch Data */
.watch-data-section {
    display: flex;
    justify-content: center;
}
.data-block {
    width: 100%;
    max-width: 800px;
}
.glass-panel {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 48px;
}
.data-row {
    display: flex;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.data-row:last-child {
    border-bottom: none;
}
.data-label {
    color: var(--text-secondary);
}
.data-value {
    font-weight: 500;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 300px;
    gap: 24px;
}
.gallery-tile {
    display: flex;
    align-items: flex-end;
    padding: 24px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    background-color: transparent;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.gallery-tile:hover {
    transform: scale(1.02);
}
.gallery-tile::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0.55));
    opacity: 0.75;
    z-index: 0;
}
.tile-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #f7f7f7;
    position: relative;
    z-index: 1;
    text-shadow: 0 8px 18px rgba(0, 0, 0, 0.45);
}

.tile-front {
    background-image: url("assets/6figure/_High-end_commercial_photo_of_a_202605160112.jpeg");
}

.tile-side {
    background-image: url("assets/6figure/_High-end_commercial_photo_of_a_202605160113.jpeg");
}

.tile-movement {
    background-image: url("assets/6figure/High-end_commercial_photo_of_a_202605160115.jpeg");
}

.tile-color {
    background-image: url("assets/6figure/Color_Detail_(Bottom-Left)_The_vibrant_202605160122.jpeg");
}

.tile-material {
    background-image: url("assets/6figure/High-end_commercial_photo_of_a_202605160125.jpeg");
}

.tile-lifestyle {
    background-image: url("assets/6figure/High-end_commercial_photo_of_a_202605160131.jpeg");
}

/* Wish Waitlist */
.waitlist-section {
    position: relative;
    min-height: 100vh;
    padding: 140px 5% 160px;
    overflow: hidden;
    background: radial-gradient(80% 60% at 10% 10%, rgba(255, 244, 230, 0.6), rgba(255, 255, 255, 0.2)),
                radial-gradient(60% 60% at 90% 20%, rgba(235, 245, 255, 0.6), rgba(255, 255, 255, 0.2)),
                #ffffff;
    max-width: none;
    margin: 0;
}

.waitlist-glow {
    position: absolute;
    inset: -20% -10% auto -10%;
    height: 60%;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.waitlist-content {
    position: relative;
    display: grid;
    grid-template-columns: minmax(280px, 1fr) minmax(360px, 1.1fr);
    gap: 6vw;
    align-items: start;
}

.waitlist-editorial {
    max-width: 540px;
}

.waitlist-eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 18px;
}

.waitlist-title {
    font-size: clamp(3rem, 6vw, 5rem);
    margin-bottom: 18px;
}

.waitlist-typing {
    font-size: 1rem;
    color: var(--text-primary);
    min-height: 1.5em;
    letter-spacing: 0.02em;
    margin-bottom: 20px;
}

.typing-cursor {
    display: inline-block;
    width: 1px;
    height: 1.1em;
    background: var(--text-primary);
    margin-left: 6px;
    animation: cursorBlink 1s steps(2, start) infinite;
}

@keyframes cursorBlink {
    0%, 45% { opacity: 1; }
    50%, 100% { opacity: 0; }
}

.waitlist-body {
    font-size: 1.05rem;
    max-width: 480px;
    margin-bottom: 28px;
}

.waitlist-cta {
    font-size: 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-primary);
}

.waitlist-panel {
    padding: 36px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.06);
}

.waitlist-form.is-hidden {
    display: none;
}

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

.form-field {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-field.span-2 {
    grid-column: span 2;
}

.form-field label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--text-secondary);
}

.form-field input {
    width: 100%;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    color: var(--text-primary);
    outline: none;
    transition: border 0.3s ease, box-shadow 0.3s ease;
}

.form-field input:focus {
    border-color: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08);
}

.field-hint {
    font-size: 0.82rem;
    color: var(--text-secondary);
    margin-top: 4px;
}

.interest-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.interest-option {
    flex: 1 1 auto;
    padding: 12px 18px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-primary);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.interest-option.is-selected {
    background: #111111;
    color: #ffffff;
    border-color: #111111;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.address-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    cursor: pointer;
    color: var(--text-primary);
    transition: border 0.3s ease, box-shadow 0.3s ease;
}

.address-toggle .toggle-icon svg {
    transition: transform 0.3s ease;
}

.address-toggle.is-open .toggle-icon svg {
    transform: rotate(180deg);
}

.address-fields {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.address-fields.is-open {
    margin-top: 16px;
    max-height: 260px;
}

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

.waitlist-status {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 14px 16px;
    border-radius: 14px;
    font-size: 0.9rem;
}

.waitlist-status.is-visible {
    display: flex;
}

.waitlist-status[data-state="loading"] {
    background: rgba(17, 17, 17, 0.06);
    color: var(--text-primary);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.waitlist-status[data-state="error"] {
    background: rgba(255, 59, 48, 0.08);
    color: #9b1c1c;
    border: 1px solid rgba(255, 59, 48, 0.2);
}

.waitlist-status[data-state="success"] {
    background: rgba(52, 199, 89, 0.08);
    color: #1f6f3d;
    border: 1px solid rgba(52, 199, 89, 0.2);
}

.waitlist-submit {
    width: 100%;
    text-align: center;
}

.waitlist-success {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.waitlist-success[hidden] {
    display: none;
}

.success-title {
    font-size: 2.4rem;
    color: var(--text-primary);
}

.success-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
}

.success-details {
    display: grid;
    gap: 10px;
    margin: 16px 0;
}

.success-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.success-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-secondary);
}

.uid-pill {
    padding: 6px 14px;
    border-radius: 999px;
    background: #111111;
    color: #ffffff;
    font-size: 0.85rem;
}

.success-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.link-button {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 0.9rem;
    cursor: pointer;
    padding: 0;
}

/* Final CTA / Footer */
.final-cta-section {
    text-align: center;
    padding: 160px 20px;
}
.final-waitlist-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
    padding: 12px 22px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.85);
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: 0.06em;
    font-size: 0.85rem;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.final-waitlist-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.12);
}

.final-pill-icon {
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(17, 17, 17, 0.08);
    animation: iconBreathe 4s ease-in-out infinite;
}

@keyframes iconBreathe {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}
.site-footer {
    text-align: center;
    padding: 40px;
    color: #999;
    font-size: 0.85rem;
}

@media (max-width: 1024px) {
    .site-header { width: 95%; padding: 0 20px; }
    h1.hero-title { font-size: 4rem; }
    .hero-section { flex-direction: column; padding-top: 150px; text-align: center; }
    .hero-content { margin: 0 auto 60px auto; }
    .hero-actions { justify-content: center; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .scroll-container { flex-direction: column; position: static; height: auto; gap: 40px; }
    .vertical-scroll-section { height: auto; }
    .scroll-imagery {
        flex: 0 0 auto;
        width: 100%;
        height: min(70vh, 520px);
        justify-content: center;
    }
    .waitlist-content { grid-template-columns: 1fr; }
    .waitlist-panel { margin-top: 32px; }
}

@media (max-width: 768px) {
    .nav-links { display: none; } /* Simplified mobile header */
    h1.hero-title { font-size: 3rem; }
    .hero-subtitle { font-size: 1.2rem; }
    .gallery-grid { grid-template-columns: 1fr; }
    .hero-dots { right: 12px; transform: scale(0.8) translateY(-50%); top: 50%; }
    .waitlist-section { padding: 120px 6% 140px; }
    .form-grid { grid-template-columns: 1fr; }
    .form-field.span-2 { grid-column: span 1; }
    .address-grid { grid-template-columns: 1fr; }
}

/* 
=====================================
SCROLL POLISH & IMAGE SEQUENCE STYLES 
=====================================
*/

.hero-scroll-hint {
    position: absolute;
    bottom: 24px;
    left: 40px;
    opacity: 0.4;
    animation: bounce 2s infinite ease-in-out;
    transition: opacity 0.5s ease;
    z-index: 10;
    pointer-events: none;
    color: var(--text-primary);
}
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

.hero-dots {
    position: absolute;
    right: 32px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 50;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.hero-dots .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(0,0,0,0.15);
    transition: background 0.3s ease;
}
.hero-dots .dot.active {
    background: #111111;
}

.hero-loading-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    background: #111111;
    width: 0%;
    z-index: 100;
    transition: width 0.1s linear, opacity 0.5s ease;
}

.section-transition-hr {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(0,0,0,0.06);
    transform-origin: left;
    transform: scaleX(0);
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.section-transition-hr.visible {
    transform: scaleX(1);
}

.craft-canvas {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    background: transparent;
    filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.12));
    will-change: transform;
}

#hero-spline {
    display: block;
    width: 100%;
    height: 100%;
    background: transparent;
    will-change: transform;
    image-rendering: -webkit-optimize-contrast;
}

/* Word choreography */
.word-anim {
    display: inline-block;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: pre;
}
.word-anim.visible {
    opacity: 1;
    transform: translateY(0);
}

.floating-watch-canvas {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.8s ease;
    width: 220px;
    height: 320px;
    border-radius: 12px;
    filter: drop-shadow(0 14px 34px rgba(0, 0, 0, 0.14));
    /* NO left/top transition — JS lerp handles movement */
}
