/* ================================================================
   VOX SHOWCASE — pixel-perfect app UI recreation
   ALL values copied verbatim from real RN StyleSheets
   ================================================================ */

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

:root {
   --bg: #000000;
   --text: #f5f5f7;
   --text2: #86868b;
   --text3: #48484a;
   --s-bg: #FFFFFF;
   --s-bg2: #F2F2F7;
   --s-surface: #FFFFFF;
   --s-hover: #F9F9FB;
   --s-border: #E5E5EA;
   --s-accent: #007AFF;
   --s-accentDim: rgba(0, 122, 255, 0.12);
   --s-accent2: #5856D6;
   --s-accent2Dim: rgba(88, 86, 214, 0.12);
   --s-success: #34C759;
   --s-successDim: rgba(52, 199, 89, 0.12);
   --s-pink: #FF2D55;
   --s-pinkDim: rgba(255, 45, 85, 0.12);
   --s-warning: #FF9500;
   --s-text: #1C1C1E;
   --s-text2: #8E8E93;
   --s-text3: #C7C7CC;
   --cyan: #0071e3;
   --pink: #ff2d55;
   --purple: #5e5ce6;
}

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

body {
   font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
   background: var(--bg);
   color: var(--text);
   overflow-x: hidden;
   line-height: 1.5;
   letter-spacing: -0.03em
}

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

button {
   font-family: inherit;
   cursor: pointer;
   border: none;
   background: none
}

.gradient-text {
   background: linear-gradient(135deg, var(--cyan), var(--purple), var(--pink), var(--cyan), var(--purple));
   background-size: 300% 300%;
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
   animation: gradientFlow 15s ease-in-out infinite;
}

@keyframes gradientFlow {
   0% { background-position: 0% 50% }
   25% { background-position: 50% 100% }
   50% { background-position: 100% 50% }
   75% { background-position: 50% 0% }
   100% { background-position: 0% 50% }
}

.reveal {
   opacity: 0;
   transform: translateY(32px);
   transition: opacity .7s cubic-bezier(.16, 1, .3, 1), transform .7s cubic-bezier(.16, 1, .3, 1)
}

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

/* NAV */
.nav {
   position: fixed;
   top: 0;
   left: 0;
   right: 0;
   z-index: 1000;
   padding: 0;
   height: 48px;
   display: flex;
   align-items: center;
   transition: background .3s;
   background: rgba(0, 0, 0, 0.8);
   backdrop-filter: blur(20px) saturate(180%);
   -webkit-backdrop-filter: blur(20px) saturate(180%);
   border-bottom: 1px solid rgba(255, 255, 255, 0.15)
}

.nav.scrolled {
   background: rgba(0, 0, 0, 0.85)
}

.nav-inner {
   max-width: 980px;
   margin: 0 auto;
   width: 100%;
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 0 22px
}

.nav-logo {
   display: flex;
   align-items: center;
   gap: 8px;
   font-weight: 600;
   font-size: 17px;
   letter-spacing: -.5px
}

.nav-orb {
   width: 20px;
   height: 20px;
   border-radius: 50%;
   background: rgba(255, 255, 255, .08);
   border: 1px solid rgba(255, 255, 255, .12);
   position: relative;
   overflow: hidden
}

.nav-orb i {
   position: absolute;
   border-radius: 50%;
   filter: blur(3px)
}

.nav-orb .nc {
   width: 11px;
   height: 11px;
   background: var(--cyan);
   top: 1px;
   left: 1px;
   animation: mp1 3s ease-in-out infinite
}

.nav-orb .np {
   width: 10px;
   height: 10px;
   background: var(--pink);
   top: 0;
   right: 0;
   animation: mp2 4s ease-in-out infinite
}

.nav-orb .nv {
   width: 9px;
   height: 9px;
   background: var(--purple);
   bottom: 0;
   right: 3px;
   animation: mp3 3.5s ease-in-out infinite
}

@keyframes mp1 {

   0%,
   100% {
      transform: scale(1);
      opacity: .7
   }

   50% {
      transform: scale(1.15);
      opacity: .9
   }
}

@keyframes mp2 {

   0%,
   100% {
      transform: scale(.9);
      opacity: .6
   }

   50% {
      transform: scale(1.1);
      opacity: .85
   }
}

@keyframes mp3 {

   0%,
   100% {
      transform: scale(1.05);
      opacity: .65
   }

   50% {
      transform: scale(.9);
      opacity: .8
   }
}

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

.nav-links a {
   font-size: 12px;
   font-weight: 400;
   color: #c8c8cc;
   transition: color .2s;
   letter-spacing: -0.01em
}

.nav-links a:hover {
   color: #ffffff
}

.nav-cta {
   color: #fff !important;
   font-weight: 500 !important
}

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

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

.hero-glow-1 {
   width: 700px;
   height: 700px;
   background: radial-gradient(circle, rgba(0, 113, 227, .25), transparent 70%);
   top: -5%;
   left: 5%;
   animation: gf1 12s ease-in-out infinite
}

.hero-glow-2 {
   width: 600px;
   height: 600px;
   background: radial-gradient(circle, rgba(94, 92, 230, .2), rgba(255, 45, 85, .08), transparent 70%);
   bottom: 0%;
   right: 0%;
   animation: gf2 15s ease-in-out infinite
}

@keyframes gf1 {

   0%,
   100% {
      transform: translate(0, 0)
   }

   50% {
      transform: translate(40px, -20px)
   }
}

@keyframes gf2 {

   0%,
   100% {
      transform: translate(0, 0)
   }

   50% {
      transform: translate(-30px, 20px)
   }
}

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

.hero-badge {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   padding: 6px 16px;
   border-radius: 20px;
   border: 1px solid rgba(255, 255, 255, .12);
   background: rgba(255, 255, 255, .02);
   font-size: 12px;
   font-weight: 500;
   color: var(--text2);
   margin-bottom: 32px;
   margin-top: 8px;
}

.badge-dot {
   width: 6px;
   height: 6px;
   border-radius: 50%;
   background: #32d74b;
   animation: dp 2s ease-in-out infinite
}

@keyframes dp {

   0%,
   100% {
      opacity: 1
   }

   50% {
      opacity: .4
   }
}

.hero-title {
   font-size: clamp(48px, 9vw, 96px);
   font-weight: 700;
   line-height: 1.02;
   letter-spacing: -0.05em;
   margin-bottom: 24px
}

.title-line {
   display: block
}

.hero-sub {
   font-size: 21px;
   line-height: 1.4;
   color: var(--text2);
   max-width: 600px;
   margin: 0 auto 56px;
   font-weight: 400;
   letter-spacing: -0.02em
}

.scroll-ind {
   position: absolute;
   bottom: 32px;
   left: 50%;
   transform: translateX(-50%);
   z-index: 2;
   animation: sb 2s ease-in-out infinite
}

.scroll-mouse {
   width: 24px;
   height: 40px;
   border: 1.5px solid rgba(255, 255, 255, .3);
   border-radius: 12px;
   position: relative
}

.scroll-mouse::after {
   content: '';
   width: 2px;
   height: 8px;
   background: rgba(255, 255, 255, .6);
   border-radius: 1px;
   position: absolute;
   top: 8px;
   left: 50%;
   transform: translateX(-50%);
   animation: sd 2s ease-in-out infinite
}

@keyframes sb {

   0%,
   100% {
      transform: translateX(-50%) translateY(0)
   }

   50% {
      transform: translateX(-50%) translateY(8px)
   }
}

@keyframes sd {
   0% {
      opacity: 1;
      top: 8px
   }

   100% {
      opacity: 0;
      top: 22px
   }
}

/* PHONE FRAME */
.phone-frame {
   font-family: 'Syne', sans-serif;
   width: 272px;
   height: 556px;
   border-radius: 44px;
   border: 6px solid #1c1c1e;
   background: var(--s-bg);
   position: relative;
   overflow: hidden;
   box-shadow: 0 0 0 1px rgba(255, 255, 255, .1), 0 32px 64px rgba(0, 0, 0, .6), 0 12px 24px rgba(0, 0, 0, .4)
}

.hero-phone {
   width: 290px;
   height: 594px;
   border-radius: 46px;
   margin: 0 auto;
   animation: pf 6s ease-in-out infinite;
   box-shadow: 0 0 0 1px rgba(255, 255, 255, .08), 0 40px 80px rgba(0, 0, 0, .55), 0 0 100px rgba(144, 224, 255, .06)
}

@keyframes pf {

   0%,
   100% {
      transform: translateY(0)
   }

   50% {
      transform: translateY(-6px)
   }
}

.phone-notch {
   position: absolute;
   top: 10px;
   left: 50%;
   transform: translateX(-50%);
   width: 96px;
   height: 26px;
   background: #000;
   border-radius: 14px;
   z-index: 10
}

.app-screen {
   width: 100%;
   height: 100%;
   display: flex;
   flex-direction: column;
   background: var(--s-bg);
   overflow: hidden
}

/* ================================================================
   APP CHROME — exact from real RN app
   Header: paddingHorizontal:28, paddingVertical:10
   StatusDot(8px green) + "Vox"(Syne_700Bold 18px) on left
   ClockIcon(18px #C7C7CC) + GearIcon(18px #C7C7CC) on right, gap:16
   NO TAB BAR (tabBarStyle: { display: 'none' })
   ================================================================ */
.app-hdr {
   padding: 50px 28px 10px;
   display: flex;
   align-items: center;
   flex-shrink: 0
}

.hdr-left {
   display: flex;
   align-items: center;
   gap: 8px;
   flex: 1
}

.status-dot {
   width: 8px;
   height: 8px;
   border-radius: 4px;
   background: #34C759;
   flex-shrink: 0
}

.app-logo {
   font-family: 'Syne', sans-serif;
   font-weight: 700;
   font-size: 18px;
   color: var(--s-text);
   letter-spacing: .3px
}

.hdr-right {
   display: flex;
   align-items: center;
   gap: 16px
}

.hdr-btn {
   padding: 4px;
   display: flex;
   align-items: center;
   justify-content: center
}

.hdr-btn svg {
   width: 18px;
   height: 18px;
   color: var(--s-text3);
   stroke: var(--s-text3)
}

.app-tabs {
   display: none
}

/* APP BODY — real app: content in ScrollView, orb position:absolute bottom */
.app-body {
   flex: 1;
   display: flex;
   flex-direction: column;
   align-items: center;
   padding: 20px 32px 0;
   overflow: hidden;
   gap: 8px;
   position: relative
}

.app-body .orb-dock {
   position: absolute;
   bottom: 16px;
   left: 0;
   right: 0;
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 4px
}

/* IDLE TEXT — real app: Syne font, 22px, #C7C7CC, centered, "Tap the orb\nto speak" */
.idle-text {
   font-family: 'Syne', sans-serif;
   font-size: 22px;
   color: var(--s-text3);
   text-align: center;
   line-height: 1.4;
   margin-top: auto;
   margin-bottom: 180px
}

/* SCROLL CONTENT — real app: ScrollView above position:absolute orb, paddingBottom:180 */
.app-scroll {
   flex: 1;
   width: 100%;
   display: flex;
   flex-direction: column;
   gap: 8px;
   overflow-y: auto;
   padding-bottom: 80px
}

/* ================================================================
   ORB — exact from VoiceOrb/index.tsx
   Size: 140px, borderRadius:70
   Glass: rgba(255,255,255,0.62), border 1.5px rgba(255,255,255,0.85)
   Shadow: #b4c8f0, offset {0,10}, opacity 0.45, radius 28
   Blob sizes: BLOB_L=112px, BLOB_S=105px
   Sparkle: 58.8px (140×0.42), white star, opacity 0.95
   ================================================================ */
.orb-wrap {
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 8px;
   position: relative
}

.orb {
   width: 140px;
   height: 140px;
   position: relative;
   display: flex;
   align-items: center;
   justify-content: center
}

.orb-glass {
   width: 140px;
   height: 140px;
   border-radius: 70px;
   background: rgba(255, 255, 255, .62);
   border: 1.5px solid rgba(255, 255, 255, .85);
   box-shadow: 0 10px 28px rgba(180, 200, 240, .45);
   position: relative;
   overflow: hidden
}

/* Blob layers — cyan 112px, pink 112px, purple 105px */
.orb-glass::before,
.orb-glass::after,
.orb-glass .bl {
   content: '';
   position: absolute;
   border-radius: 50%
}

/* Cyan blob: 112px, top 47.5%, left 32.5%, opacity stops 0.9/0.85/0.35/0 */
.orb-glass::before {
   width: 112px;
   height: 112px;
   top: calc(47.5% - 56px);
   left: calc(32.5% - 56px);
   background: radial-gradient(circle, rgba(144, 224, 255, .9), rgba(144, 224, 255, .85) 40%, rgba(144, 224, 255, .35) 70%, transparent);
   animation: bp1 4s ease-in-out infinite
}

/* Pink blob: 112px, top 37.5%, left 67.5%, opacity stops 0.8/0.7/0.3/0 */
.orb-glass::after {
   width: 112px;
   height: 112px;
   top: calc(37.5% - 56px);
   left: calc(67.5% - 56px);
   background: radial-gradient(circle, rgba(255, 156, 237, .8), rgba(255, 156, 237, .7) 40%, rgba(255, 156, 237, .3) 70%, transparent);
   animation: bp2 5s ease-in-out infinite
}

/* Purple blob: 105px, top 65%, left 55%, opacity stops 0.7/0.6/0.25/0 */
.orb-glass .bl {
   width: 105px;
   height: 105px;
   top: calc(65% - 52.5px);
   left: calc(55% - 52.5px);
   background: radial-gradient(circle, rgba(196, 156, 255, .7), rgba(196, 156, 255, .6) 40%, rgba(196, 156, 255, .25) 70%, transparent);
   animation: bp3 6s ease-in-out infinite;
   z-index: 0
}

/* Vignette — radial: transparent 25%, white fading at 55%, opaque at 85% */
.orb-glass .vig {
   position: absolute;
   inset: 0;
   border-radius: 70px;
   z-index: 1;
   background: radial-gradient(circle, transparent 25%, rgba(255, 255, 255, .6) 55%, rgba(255, 255, 255, 1) 85%)
}

/* Sparkle star — 58.8px, white, opacity 0.95 */
.orb-sparkle {
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   z-index: 2;
   width: 59px;
   height: 59px;
   background: #fff;
   opacity: .95;
   clip-path: polygon(50% 5%, 54% 40%, 95% 50%, 54% 60%, 50% 95%, 46% 60%, 5% 50%, 46% 40%);
   animation: sg 3s ease-in-out infinite
}

/* Idle blob animations — slow pulse: 4s/5s/6s */
@keyframes bp1 {

   0%,
   100% {
      transform: scale(1.08);
      opacity: .8
   }

   50% {
      transform: scale(.94);
      opacity: .6
   }
}

@keyframes bp2 {

   0%,
   100% {
      transform: scale(.93);
      opacity: .7
   }

   50% {
      transform: scale(1.07);
      opacity: .85
   }
}

@keyframes bp3 {

   0%,
   100% {
      transform: scale(1.05);
      opacity: .75
   }

   50% {
      transform: scale(.95);
      opacity: .6
   }
}

@keyframes sg {

   0%,
   100% {
      opacity: .5;
      transform: translate(-50%, -50%) scale(.92)
   }

   50% {
      opacity: .95;
      transform: translate(-50%, -50%) scale(1.08)
   }
}

/* Ripple rings — 140px, cyan + pink */
.orb-rip {
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   border-radius: 50%;
   pointer-events: none;
   opacity: 0
}

.orb-rip.r1 {
   width: 140px;
   height: 140px;
   background: var(--cyan)
}

.orb-rip.r2 {
   width: 140px;
   height: 140px;
   background: var(--pink)
}

/* Recording state — fast pulse: 1s/1.2s/0.8s, ripples active */
.orb.recording .orb-glass::before {
   animation: bf1 1s ease-in-out infinite
}

.orb.recording .orb-glass::after {
   animation: bf2 1.2s ease-in-out infinite
}

.orb.recording .orb-glass .bl {
   animation: bf3 .8s ease-in-out infinite
}

.orb.recording .orb-rip.r1 {
   animation: rp 1.5s ease-out infinite
}

.orb.recording .orb-rip.r2 {
   animation: rp 2s ease-out .4s infinite
}

.orb.recording {
   transform: scale(1.05)
}

/* Thinking state — SAME cyan/pink/purple colors, medium speed: 1s/0.8s/1.2s */
.orb.thinking .orb-glass::before {
   animation: bf1 1s ease-in-out infinite
}

.orb.thinking .orb-glass::after {
   animation: bf2 .8s ease-in-out infinite
}

.orb.thinking .orb-glass .bl {
   animation: bf3 1.2s ease-in-out infinite
}

/* Speaking state — SAME cyan/pink/purple colors, fast speed: 0.6s/0.5s/0.7s */
.orb.speaking .orb-glass::before {
   animation: bf1 .6s ease-in-out infinite
}

.orb.speaking .orb-glass::after {
   animation: bf2 .5s ease-in-out infinite
}

.orb.speaking .orb-glass .bl {
   animation: bf3 .7s ease-in-out infinite
}

/* Done state — same colors, settle back to 1 */
.orb.done .orb-glass::before,
.orb.done .orb-glass::after,
.orb.done .orb-glass .bl {
   animation: none
}

/* Recording/Speaking fast pulses */
@keyframes bf1 {

   0%,
   100% {
      transform: scale(1.12)
   }

   50% {
      transform: scale(.92)
   }
}

@keyframes bf2 {

   0%,
   100% {
      transform: scale(.9)
   }

   50% {
      transform: scale(1.1)
   }
}

@keyframes bf3 {

   0%,
   100% {
      transform: scale(1.08)
   }

   50% {
      transform: scale(.94)
   }
}

@keyframes rp {
   0% {
      transform: translate(-50%, -50%) scale(.8);
      opacity: .22
   }

   100% {
      transform: translate(-50%, -50%) scale(1.55);
      opacity: 0
   }
}

.orb-lbl {
   font-size: 11px;
   color: var(--s-text2);
   font-weight: 500
}

/* USER TRANSCRIPT — real app: Syne_400Regular, 16px, #8E8E93 */
.utxt {
   font-family: 'Syne', sans-serif;
   font-size: 13px;
   font-weight: 400;
   color: var(--s-text2);
   line-height: 1.5;
   align-self: flex-start;
   max-width: 95%
}

/* ================================================================
   CARDS — exact from real RN ActionCard StyleSheets
   Base: width:300 (scales in phone), borderRadius:20, borderWidth:1
   ================================================================ */
.card {
   width: 100%;
   border-radius: 20px;
   border: 1px solid var(--s-border);
   background: var(--s-surface);
   font-family: 'Syne', sans-serif
}

.card-hdr {
   display: flex;
   align-items: center;
   gap: 8px;
   margin-bottom: 12px
}

.card-title {
   font-weight: 600;
   font-size: 13px;
   text-transform: uppercase;
   letter-spacing: .5px
}

/* ----------------------------------------------------------------
   BRIEFING — BriefingCard.tsx
   borderColor:accentDim, padding:0, overflow:hidden
   Header bg: rgba(79,142,247,0.15), padding:18px
   Greeting: Syne_700Bold 20px #1C1C1E
   Date: Syne_400Regular 13px #8E8E93
   Time: Syne_600SemiBold 28px #007AFF
   Section: icon 22px, label Syne_600SemiBold 11px #C7C7CC uppercase
   Value: Syne_400Regular 13px #1C1C1E, lineHeight:18
   ---------------------------------------------------------------- */
.c-briefing {
   border-color: var(--s-accentDim);
   overflow: hidden;
   padding: 0
}

.c-briefing .bh {
   background: rgba(79, 142, 247, .15);
   padding: 18px;
   border-bottom: 1px solid var(--s-accentDim)
}

.c-briefing .bh-greet {
   font-weight: 700;
   font-size: 20px;
   color: var(--s-text);
   margin-bottom: 2px
}

.c-briefing .bh-date {
   font-size: 13px;
   color: var(--s-text2)
}

.c-briefing .bh-time {
   font-weight: 600;
   font-size: 28px;
   color: var(--s-accent);
   margin-top: 4px
}

.c-briefing .bsections {
   padding: 16px
}

.c-briefing .brow {
   display: flex;
   align-items: flex-start;
   gap: 12px;
   margin-bottom: 12px
}

.c-briefing .brow:last-child {
   margin-bottom: 0
}

.c-briefing .brow-icon {
   width: 22px;
   text-align: center;
   font-size: 14px;
   margin-top: 1px
}

.c-briefing .brow-content {
   flex: 1
}

.c-briefing .brow-label {
   font-weight: 600;
   font-size: 11px;
   color: var(--s-text3);
   text-transform: uppercase;
   letter-spacing: .5px;
   margin-bottom: 2px
}

.c-briefing .brow-val {
   font-size: 13px;
   color: var(--s-text);
   line-height: 18px
}

/* ----------------------------------------------------------------
   WEATHER — WeatherCard.tsx
   borderColor:rgba(0,0,0,0.06), padding:20
   City: Syne_700Bold 18px #1C1C1E
   Condition: Syne_400Regular 13px #8E8E93
   Temperature: Syne_800ExtraBold 52px #1C1C1E
   Stat label: Syne_400Regular 11px #C7C7CC
   Stat value: Syne_600SemiBold 14px #8E8E93
   bg dynamic: clear=#FFF8EC, rainy=#EEF2FF, snow=#F0F6FF, cloudy=#F5F5FA, default=#EEF4FF
   ---------------------------------------------------------------- */
.c-weather {
   border-color: rgba(0, 0, 0, .06);
   padding: 20px;
   background: #EEF4FF
}

.c-weather.sunny {
   background: #FFF8EC
}

.c-weather.rainy {
   background: #EEF2FF
}

.c-weather.snowy {
   background: #F0F6FF
}

.c-weather.cloudy {
   background: #F5F5FA
}

.c-weather .wtr {
   display: flex;
   justify-content: space-between;
   align-items: flex-start;
   margin-bottom: 12px
}

.c-weather .wcity {
   font-weight: 700;
   font-size: 18px;
   color: var(--s-text);
   margin-bottom: 2px
}

.c-weather .wcond {
   font-size: 13px;
   color: var(--s-text2)
}

.c-weather .wicon {
   font-size: 32px
}

.c-weather .wtemp {
   font-weight: 800;
   font-size: 52px;
   color: var(--s-text);
   margin-bottom: 16px
}

.c-weather .wstats {
   display: flex;
   gap: 16px
}

.c-weather .wsl {
   font-size: 11px;
   color: var(--s-text3);
   margin-bottom: 2px
}

.c-weather .wsv {
   font-weight: 600;
   font-size: 14px;
   color: var(--s-text2)
}

/* ----------------------------------------------------------------
   CALENDAR — CalendarCard.tsx
   borderColor:accentDim (or accent2Dim for Teams/Zoom), padding:20
   Title: Syne_600SemiBold 13px #007AFF (or #5856D6)
   Event: Syne_700Bold 20px #1C1C1E
   Time: Syne_400Regular 14px #8E8E93
   Join btn: bg:#5856D6 borderRadius:12 padding:12v/16h, Syne_700Bold 14px white
   MiniCal: cell 32×28px, today bg:#007AFF borderRadius:14 white bold
   Day header: Syne_600SemiBold 10px #C7C7CC
   ---------------------------------------------------------------- */
.c-calendar {
   border-color: var(--s-accentDim);
   padding: 20px
}

.c-calendar.zoom {
   border-color: var(--s-accent2Dim)
}

.c-calendar .ct {
   color: var(--s-accent)
}

.c-calendar.zoom .ct {
   color: var(--s-accent2)
}

.c-calendar .cev {
   font-weight: 700;
   font-size: 20px;
   color: var(--s-text);
   margin-bottom: 4px
}

.c-calendar .ctime {
   font-size: 14px;
   color: var(--s-text2)
}

.c-calendar .csuccess {
   display: inline-flex;
   align-items: center;
   gap: 4px;
   margin-top: 8px;
   background: rgba(52, 199, 89, .1);
   border-radius: 8px;
   padding: 4px 10px;
   font-weight: 600;
   font-size: 12px;
   color: var(--s-success)
}

.c-calendar .cjoin {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 8px;
   margin-top: 10px;
   background: var(--s-accent2);
   color: #fff;
   border-radius: 12px;
   padding: 12px 16px;
   text-align: center;
   font-weight: 700;
   font-size: 14px
}

.c-calendar .minical {
   margin-top: 14px;
   display: flex;
   flex-wrap: wrap;
   width: calc(7 * 32px)
}

.c-calendar .minical span {
   width: 32px;
   height: 28px;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 12px;
   color: var(--s-text2)
}

.c-calendar .minical .dow {
   font-weight: 600;
   font-size: 10px;
   color: var(--s-text3);
   height: 18px
}

.c-calendar .minical .today {
   background: var(--s-accent);
   border-radius: 14px;
   color: #fff;
   font-weight: 700
}

/* ----------------------------------------------------------------
   EMAIL — EmailCard.tsx
   borderColor:successDim, padding:16
   Title: Syne_600SemiBold 13px #34C759
   Count badge: bg:successDim borderRadius:10 padding:8h/2v, Syne_700Bold 12px #34C759
   Row label: Syne_600SemiBold 13px #C7C7CC width:56
   Row value: Syne_400Regular 14px #1C1C1E
   List: avatar 36px borderRadius:18 bg:accentDim
   Avatar text: Syne_700Bold 16px #007AFF
   From: Syne_600SemiBold 13px #1C1C1E
   Subject: Syne_400Regular 12px #8E8E93
   Sent badge: bg:successDim borderRadius:8 padding:10h/4v gap:4
   ---------------------------------------------------------------- */
.c-email {
   border-color: var(--s-successDim);
   padding: 16px
}

.c-email .et {
   color: var(--s-success)
}

.c-email .ecount {
   background: var(--s-successDim);
   border-radius: 10px;
   padding: 2px 8px;
   font-weight: 700;
   font-size: 12px;
   color: var(--s-success)
}

.c-email .erow {
   display: flex;
   gap: 8px;
   margin-bottom: 8px
}

.c-email .el {
   font-weight: 600;
   font-size: 13px;
   color: var(--s-text3);
   width: 56px
}

.c-email .ev {
   font-size: 14px;
   color: var(--s-text);
   flex: 1
}

.c-email .esent {
   display: inline-flex;
   align-items: center;
   gap: 4px;
   margin-top: 8px;
   background: var(--s-successDim);
   border-radius: 8px;
   padding: 4px 10px;
   font-weight: 600;
   font-size: 12px;
   color: var(--s-success)
}

/* Email list item */
.c-email .elist {
   display: flex;
   flex-direction: column
}

.c-email .eitem {
   display: flex;
   gap: 10px;
   padding: 10px 0;
   border-bottom: 1px solid var(--s-border);
   align-items: flex-start
}

.c-email .eitem:last-child {
   border-bottom: none
}

.c-email .eavatar {
   width: 36px;
   height: 36px;
   border-radius: 18px;
   background: var(--s-accentDim);
   display: flex;
   align-items: center;
   justify-content: center;
   flex-shrink: 0
}

.c-email .eavatar span {
   font-weight: 700;
   font-size: 16px;
   color: var(--s-accent)
}

.c-email .efrom {
   font-weight: 600;
   font-size: 13px;
   color: var(--s-text)
}

.c-email .esubj {
   font-size: 12px;
   color: var(--s-text2);
   margin-top: 1px
}

.c-email .edate {
   font-size: 11px;
   color: var(--s-text3);
   margin-top: 1px
}

/* ----------------------------------------------------------------
   NOW PLAYING — NowPlayingCard.tsx
   borderColor:rgba(250,36,60,0.25), padding:16
   Row layout: flexDirection:row, gap:16
   Album art: 64×64 borderRadius:12, bg:${accent}22
   Music bars: 4px wide, gap:3, height 6-20px, staggered 400/300/500ms
   Label: Syne_600SemiBold 11px uppercase
   Track: Syne_700Bold 17px #1C1C1E
   Artist: Syne_500Medium 13px #8E8E93
   Album: Syne_400Regular 12px #C7C7CC
   Apple Music: accent #fa243c, dim rgba(250,36,60,0.25)
   Podcasts: accent #007AFF
   ---------------------------------------------------------------- */
.c-np {
   border-color: rgba(250, 36, 60, .25);
   padding: 16px;
   display: flex;
   flex-direction: row;
   align-items: center;
   gap: 16px
}

.c-np .np-art {
   width: 64px;
   height: 64px;
   border-radius: 12px;
   background: rgba(250, 36, 60, .13);
   display: flex;
   align-items: center;
   justify-content: center;
   flex-shrink: 0
}

.c-np .np-art svg {
   width: 24px;
   height: 24px
}

.c-np .np-bars {
   display: flex;
   gap: 3px;
   align-items: flex-end;
   height: 30px;
   margin-left: 8px;
   flex-shrink: 0
}

.c-np .np-bars i {
   width: 4px;
   border-radius: 2px;
   background: #fa243c
}

.c-np .np-bars i:nth-child(1) {
   animation: b1 .4s ease-in-out infinite
}

.c-np .np-bars i:nth-child(2) {
   animation: b2 .3s ease-in-out infinite
}

.c-np .np-bars i:nth-child(3) {
   animation: b3 .5s ease-in-out infinite
}

@keyframes b1 {

   0%,
   100% {
      height: 6px
   }

   50% {
      height: 20px
   }
}

@keyframes b2 {

   0%,
   100% {
      height: 10px
   }

   50% {
      height: 20px
   }
}

@keyframes b3 {

   0%,
   100% {
      height: 8px
   }

   50% {
      height: 14px
   }
}

.c-np .np-info {
   flex: 1;
   min-width: 0
}

.c-np .np-lbl {
   font-weight: 600;
   font-size: 11px;
   text-transform: uppercase;
   letter-spacing: .5px;
   color: #fa243c
}

.c-np .np-badge {
   font-size: 11px;
   color: var(--s-text3)
}

.c-np .np-track {
   font-weight: 700;
   font-size: 17px;
   color: var(--s-text);
   overflow-wrap: break-word
}

.c-np .np-artist {
   font-weight: 500;
   font-size: 13px;
   color: var(--s-text2)
}

.c-np .np-album {
   font-size: 12px;
   color: var(--s-text3);
   margin-top: 2px
}

/* ----------------------------------------------------------------
   STOCKS — StocksCard.tsx
   borderColor:rgba(52,199,89,0.2), padding:16
   Title: Syne_600SemiBold 13px #34C759
   Time: Syne_400Regular 11px #C7C7CC
   Symbol: Syne_700Bold 15px #1C1C1E width:60
   Price: Syne_600SemiBold 15px #1C1C1E
   Change badge: borderRadius:8 padding:8h/4v minWidth:70
   Up: bg rgba(61,214,140,0.15) color #34C759
   Down: bg rgba(240,94,135,0.15) color #FF2D55
   Change text: Syne_600SemiBold 12px
   ---------------------------------------------------------------- */
.c-stocks {
   border-color: rgba(52, 199, 89, .2);
   padding: 16px
}

.c-stocks .st {
   color: var(--s-success);
   flex: 1
}

.c-stocks .stime {
   font-size: 11px;
   color: var(--s-text3)
}

.c-stocks .srow {
   display: flex;
   align-items: center;
   padding: 10px 0;
   gap: 8px;
   border-bottom: 1px solid var(--s-border)
}

.c-stocks .srow:last-child {
   border-bottom: none
}

.c-stocks .ssym {
   font-weight: 700;
   font-size: 15px;
   color: var(--s-text);
   width: 60px
}

.c-stocks .sprice {
   font-weight: 600;
   font-size: 15px;
   color: var(--s-text);
   flex: 1;
   text-align: right
}

.c-stocks .schg {
   border-radius: 8px;
   padding: 4px 8px;
   font-weight: 600;
   font-size: 12px;
   min-width: 70px;
   text-align: center
}

.c-stocks .schg.up {
   background: rgba(61, 214, 140, .15);
   color: var(--s-success)
}

.c-stocks .schg.dn {
   background: rgba(240, 94, 135, .15);
   color: var(--s-pink)
}

/* ----------------------------------------------------------------
   HEALTH — HealthCard.tsx
   borderColor:rgba(255,45,85,0.2), padding:16
   Title: Syne_600SemiBold 13px #FF2D55, emoji 18px
   Date: Syne_400Regular 11px #C7C7CC
   Grid: 2 columns, gap:8
   Metric box: bg:#F2F2F7 borderRadius:14 padding:14
   border: 1px solid ${color}30
   Icon: 24px emoji
   Label: Syne_400Regular 11px #8E8E93
   Value: Syne_700Bold 20px dynamic-color
   ---------------------------------------------------------------- */
.c-health {
   border-color: rgba(255, 45, 85, .2);
   padding: 16px
}

.c-health .ht {
   color: #FF2D55;
   flex: 1
}

.c-health .hemoji {
   font-size: 18px
}

.c-health .hdate {
   font-size: 11px;
   color: var(--s-text3)
}

.c-health .hgrid {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 8px
}

.c-health .hm {
   background: var(--s-bg2);
   border-radius: 14px;
   padding: 14px;
   border: 1px solid color-mix(in srgb, var(--mc) 30%, transparent);
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 2px
}

.c-health .hm-i {
   font-size: 24px;
   margin-bottom: 4px
}

.c-health .hm-l {
   font-size: 11px;
   color: var(--s-text2)
}

.c-health .hm-v {
   font-weight: 700;
   font-size: 20px;
   color: var(--mc);
   margin-top: 2px
}

/* ----------------------------------------------------------------
   TIMER — TimerCard.tsx
   borderColor:rgba(245,166,35,0.3), padding:20
   Title: Syne_600SemiBold 13px #FF9500
   Ring: 100×100 borderRadius:50, border 4px #FF9500
   Fill: 88×88 borderRadius:44, bg rgba(245,166,35,0.15)
   Time: Syne_700Bold 22px #1C1C1E
   Controls: gap:12
   Button: bg:#F9F9FB borderRadius:10 padding:10v, border 1px #E5E5EA
   Font: Syne_600SemiBold 14px #1C1C1E
   Cancel: borderColor rgba(240,94,135,0.3), color #FF2D55
   ---------------------------------------------------------------- */
.c-timer {
   border-color: rgba(245, 166, 35, .3);
   padding: 20px
}

.c-timer .tt {
   color: var(--s-warning)
}

.c-timer .tring {
   width: 100px;
   height: 100px;
   margin: 0 auto 16px;
   position: relative
}

.c-timer .tring-outer {
   width: 100px;
   height: 100px;
   border-radius: 50px;
   border: 4px solid var(--s-warning);
   display: flex;
   align-items: center;
   justify-content: center;
   position: relative
}

.c-timer .tring-fill {
   position: absolute;
   width: 88px;
   height: 88px;
   border-radius: 44px;
   background: rgba(245, 166, 35, .15)
}

.c-timer .tring-time {
   font-weight: 700;
   font-size: 22px;
   color: var(--s-text);
   position: relative;
   z-index: 1
}

.c-timer .tctrls {
   display: flex;
   gap: 12px;
   margin-top: 20px
}

.c-timer .tbtn {
   flex: 1;
   background: var(--s-hover);
   border: 1px solid var(--s-border);
   border-radius: 10px;
   padding: 10px;
   text-align: center;
   font-weight: 600;
   font-size: 14px;
   color: var(--s-text)
}

.c-timer .tbtn.cancel {
   border-color: rgba(240, 94, 135, .3);
   color: var(--s-pink)
}

/* ----------------------------------------------------------------
   ALARM — AlarmCard.tsx
   borderColor:rgba(245,166,35,0.35), padding:20
   Row layout: flexDirection:row, gap:16
   Bell icon: 40×40 container, animation shake ±15deg
   Label: Syne_500Medium 11px #FF9500 uppercase
   Time: Syne_700Bold 26px #1C1C1E
   Subtitle: Syne_400Regular 12px #C7C7CC
   Check: 32×32 borderRadius:16 bg:#FF9500 white
   ---------------------------------------------------------------- */
.c-alarm {
   border-color: rgba(245, 166, 35, .35);
   padding: 20px;
   display: flex;
   flex-direction: row;
   align-items: center;
   gap: 16px
}

.c-alarm .al-bell {
   width: 40px;
   height: 40px;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 28px;
   animation: bshk .6s ease-in-out 3
}

@keyframes bshk {

   0%,
   100% {
      transform: rotate(0)
   }

   25% {
      transform: rotate(15deg)
   }

   75% {
      transform: rotate(-15deg)
   }
}

.c-alarm .al-info {
   flex: 1
}

.c-alarm .al-lbl {
   font-weight: 500;
   font-size: 11px;
   text-transform: uppercase;
   letter-spacing: .5px;
   color: var(--s-warning);
   margin-bottom: 2px
}

.c-alarm .al-time {
   font-weight: 700;
   font-size: 26px;
   color: var(--s-text);
   margin-bottom: 2px
}

.c-alarm .al-sub {
   font-size: 12px;
   color: var(--s-text3)
}

.c-alarm .al-chk {
   width: 32px;
   height: 32px;
   border-radius: 16px;
   background: var(--s-warning);
   color: #fff;
   font-size: 14px;
   font-weight: 700;
   display: flex;
   align-items: center;
   justify-content: center
}

/* ----------------------------------------------------------------
   FLIGHT — real app uses similar layout
   borderColor:rgba(0,122,255,0.15), padding:16
   Route codes: Syne_700Bold 20px
   Times: Syne_400Regular 12px #8E8E93
   Gate info: bg:#F2F2F7 borderRadius:10 padding:11
   ---------------------------------------------------------------- */
.c-flight {
   border-color: rgba(0, 122, 255, .15);
   padding: 16px
}

.c-flight .fhdr {
   display: flex;
   align-items: center;
   gap: 8px;
   margin-bottom: 14px
}

.c-flight .femoji {
   font-size: 18px
}

.c-flight .fnum {
   font-weight: 700;
   font-size: 16px;
   color: var(--s-text);
   flex: 1
}

.c-flight .fbadge {
   border-radius: 8px;
   padding: 3px 9px;
   font-weight: 600;
   font-size: 11px
}

.c-flight .fbadge.ok {
   background: rgba(52, 199, 89, .15);
   color: var(--s-success)
}

.c-flight .froute {
   display: flex;
   align-items: center;
   margin-bottom: 12px
}

.c-flight .fair {
   flex: 1
}

.c-flight .fair.right {
   text-align: right
}

.c-flight .fcode {
   font-weight: 700;
   font-size: 20px;
   color: var(--s-text)
}

.c-flight .ftime {
   font-size: 12px;
   color: var(--s-text2);
   margin-top: 1px
}

.c-flight .fline {
   display: flex;
   align-items: center;
   flex: 1;
   margin: 0 6px;
   gap: 2px
}

.c-flight .fdot {
   width: 6px;
   height: 6px;
   border-radius: 3px;
   background: var(--s-accent)
}

.c-flight .fln {
   flex: 1;
   height: 1px;
   background: var(--s-border)
}

.c-flight .fplane {
   font-size: 12px;
   color: var(--s-accent)
}

.c-flight .fgate {
   display: flex;
   justify-content: space-between;
   background: var(--s-bg2);
   border-radius: 10px;
   padding: 11px
}

.c-flight .fgl {
   font-size: 12px;
   color: var(--s-text2)
}

.c-flight .fgv {
   font-weight: 700;
   font-size: 14px;
   color: var(--s-text)
}

/* ----------------------------------------------------------------
   PACKAGE — similar structure
   borderColor:rgba(160,82,45,0.19), padding:16
   ---------------------------------------------------------------- */
.c-pkg {
   border-color: rgba(160, 82, 45, .19);
   padding: 16px
}

.c-pkg .phdr {
   display: flex;
   align-items: center;
   gap: 10px;
   margin-bottom: 14px
}

.c-pkg .pemoji {
   font-size: 22px
}

.c-pkg .pinfo {
   flex: 1
}

.c-pkg .pcarrier {
   font-weight: 600;
   font-size: 14px;
   color: var(--s-text)
}

.c-pkg .ptrack {
   font-size: 10px;
   color: var(--s-text3);
   margin-top: 1px
}

.c-pkg .psbadge {
   background: var(--s-accentDim);
   border-radius: 8px;
   padding: 3px 9px;
   font-weight: 600;
   font-size: 10px;
   color: var(--s-accent);
   white-space: nowrap;
   flex-shrink: 0
}

.c-pkg .pprog {
   display: flex;
   align-items: flex-start;
   margin-bottom: 12px;
   position: relative
}

.c-pkg .pstage {
   flex: 1;
   display: flex;
   flex-direction: column;
   align-items: center;
   position: relative
}

.c-pkg .pdot {
   width: 10px;
   height: 10px;
   border-radius: 5px;
   z-index: 1
}

.c-pkg .pdot.on {
   background: var(--s-accent)
}

.c-pkg .pdot.off {
   background: var(--s-border)
}

.c-pkg .pconn {
   position: absolute;
   top: 4px;
   right: 50%;
   width: 100%;
   height: 2px
}

.c-pkg .pconn.on {
   background: var(--s-accent)
}

.c-pkg .pconn.off {
   background: var(--s-border)
}

.c-pkg .pslbl {
   font-size: 7px;
   color: var(--s-text3);
   margin-top: 3px;
   text-align: center
}

.c-pkg .pslbl.on {
   color: var(--s-accent);
   font-weight: 600
}

.c-pkg .peta {
   display: flex;
   justify-content: space-between;
   gap: 12px;
   background: var(--s-bg2);
   border-radius: 10px;
   padding: 11px
}

.c-pkg .peta > div {
   flex: 1;
}

.c-pkg .petal {
   font-size: 12px;
   color: var(--s-text2)
}

.c-pkg .petav {
   font-weight: 700;
   font-size: 13px;
   color: var(--s-text);
   word-break: break-word
}

/* ----------------------------------------------------------------
   NEWS — NewsCard.tsx
   borderColor:#E5E5EA, padding:16
   Title: Syne_600SemiBold 13px #1C1C1E
   Date: Syne_400Regular 11px #C7C7CC
   Number: Syne_700Bold 13px #007AFF width:18
   Headline: Syne_400Regular 13px #1C1C1E lineHeight:18
   ---------------------------------------------------------------- */
.c-news {
   border-color: var(--s-border);
   padding: 16px
}

.c-news .nt {
   color: var(--s-text);
   flex: 1
}

.c-news .ndate {
   font-size: 11px;
   color: var(--s-text3)
}

.c-news .ni {
   display: flex;
   gap: 10px;
   padding: 9px 0;
   border-bottom: 1px solid var(--s-border);
   align-items: flex-start
}

.c-news .ni:last-child {
   border-bottom: none
}

.c-news .nnum {
   font-weight: 700;
   font-size: 13px;
   color: var(--s-accent);
   width: 18px;
   flex-shrink: 0;
   margin-top: 1px
}

.c-news .ntxt {
   font-size: 13px;
   color: var(--s-text);
   line-height: 18px
}

/* ----------------------------------------------------------------
   NAVIGATION — MapsCard.tsx
   borderColor:rgba(255,59,48,0.3) for maps, rgba(0,122,255,0.25) for nav
   Map: height:100 bg:#1a2a1a, pin 12px bg:#FF3B30
   Destination: Syne_700Bold 18px
   Open btn: bg:#FF3B30 borderRadius:10 Syne_600SemiBold 14px white
   ---------------------------------------------------------------- */
.c-nav {
   border-color: rgba(0, 122, 255, .25);
   padding: 16px
}

.c-nav .nvt {
   color: var(--s-accent)
}

.c-nav .nvdest {
   font-weight: 700;
   font-size: 18px;
   color: var(--s-text);
   margin-bottom: 8px
}

.c-nav .nvbadges {
   display: flex;
   gap: 8px;
   margin-bottom: 10px
}

.c-nav .nvb {
   flex: 1;
   background: var(--s-bg2);
   border-radius: 10px;
   padding: 10px
}

.c-nav .nvbl {
   font-size: 10px;
   color: var(--s-text2);
   text-transform: uppercase;
   letter-spacing: .3px
}

.c-nav .nvbv {
   font-weight: 700;
   font-size: 15px;
   color: var(--s-text)
}

.c-nav .nvbtn {
   display: block;
   background: var(--s-accent);
   color: #fff;
   border-radius: 12px;
   padding: 12px;
   text-align: center;
   font-weight: 700;
   font-size: 14px
}

/* MAPS card (MapsCard.tsx) */
.c-maps {
   border-color: rgba(255, 59, 48, .3);
   overflow: hidden;
   padding: 0;
   border-radius: 20px
}

.c-maps .map-preview {
   height: 100px;
   background: #1a2a1a;
   position: relative;
   display: flex;
   align-items: center;
   justify-content: center
}

.c-maps .map-grid {
   position: absolute;
   inset: 0;
   opacity: .15;
   background-image: linear-gradient(rgba(255, 255, 255, .3) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .3) 1px, transparent 1px);
   background-size: 20px 20px
}

.c-maps .map-pin {
   width: 12px;
   height: 12px;
   border-radius: 6px;
   background: #FF3B30;
   border: 2px solid #fff;
   position: relative;
   z-index: 1
}

.c-maps .map-info {
   padding: 16px
}

.c-maps .map-hdr {
   display: flex;
   align-items: center;
   gap: 6px;
   margin-bottom: 8px
}

.c-maps .map-title {
   font-weight: 600;
   font-size: 13px;
   color: #FF3B30;
   text-transform: uppercase;
   letter-spacing: .5px
}

.c-maps .map-dest {
   font-weight: 700;
   font-size: 18px;
   color: var(--s-text);
   margin-bottom: 12px
}

.c-maps .map-btn {
   display: block;
   background: #FF3B30;
   border-radius: 10px;
   padding: 10px;
   text-align: center;
   font-weight: 600;
   font-size: 14px;
   color: #fff
}

/* ----------------------------------------------------------------
   PHOTOS — PhotosCard.tsx
   borderColor:rgba(255,45,85,0.15), padding:16
   Title: Syne_700Bold 16px #1C1C1E
   Subtitle: Syne_400Regular 13px #8E8E93 lineHeight:18
   Count: Syne_500Medium 12px #C7C7CC
   Thumbnails: 80×80 borderRadius:10, selected border 2px #007AFF
   ---------------------------------------------------------------- */
.c-photos {
   border-color: rgba(255, 45, 85, .15);
   padding: 16px
}

.c-photos .pht {
   color: var(--s-pink);
   flex: 1
}

.c-photos .phq {
   font-size: 11px;
   color: var(--s-text2);
   font-style: italic
}

.c-photos .phgrid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 4px;
   margin-bottom: 6px
}

.c-photos .phthmb {
   aspect-ratio: 1;
   border-radius: 10px;
   border: 2px solid transparent
}

.c-photos .phthmb.selected {
   border-color: var(--s-accent)
}

.c-photos .phcnt {
   font-weight: 500;
   font-size: 12px;
   color: var(--s-text3);
   text-align: center
}

/* ----------------------------------------------------------------
   DOCUMENTS — similar structure
   borderColor:rgba(88,86,214,0.15), padding:16
   ---------------------------------------------------------------- */
.c-docs {
   border-color: rgba(88, 86, 214, .15);
   padding: 16px
}

.c-docs .dct {
   color: var(--s-accent2)
}

.c-docs .df {
   display: flex;
   align-items: center;
   gap: 7px;
   padding: 9px;
   background: var(--s-bg2);
   border-radius: 10px;
   margin-bottom: 6px
}

.c-docs .df:last-child {
   margin-bottom: 0
}

.c-docs .dfi {
   font-size: 14px
}

.c-docs .dfn {
   font-weight: 600;
   font-size: 12px;
   color: var(--s-text);
   flex: 1
}

.c-docs .dfs {
   font-size: 10px;
   color: var(--s-text3)
}

/* ----------------------------------------------------------------
   HOME — HomeCard.tsx
   borderColor:rgba(124,106,244,0.25), padding:16
   ROW layout: flexDirection:row, gap:14
   Icon circle: 60×60 borderRadius:30, bg:${color}22
   Inner icon: 30×30
   Label: Syne_500Medium 11px #C7C7CC uppercase
   Action: Syne_700Bold 18px dynamic-color
   Device: Syne_400Regular 13px #8E8E93
   Check: 32×32 borderRadius:16 bg:dynamic white
   ---------------------------------------------------------------- */
.c-home {
   border-color: rgba(124, 106, 244, .25);
   padding: 16px;
   display: flex;
   flex-direction: row;
   align-items: center;
   gap: 14px
}

.c-home .hm-circle {
   width: 60px;
   height: 60px;
   border-radius: 30px;
   display: flex;
   align-items: center;
   justify-content: center;
   flex-shrink: 0
}

.c-home .hm-circle svg {
   width: 30px;
   height: 30px
}

.c-home .hm-info {
   flex: 1
}

.c-home .hm-label {
   font-weight: 500;
   font-size: 11px;
   color: var(--s-text3);
   text-transform: uppercase;
   letter-spacing: .5px;
   margin-bottom: 2px
}

.c-home .hm-action {
   font-weight: 700;
   font-size: 18px;
   margin-bottom: 2px
}

.c-home .hm-device {
   font-size: 13px;
   color: var(--s-text2)
}

.c-home .hm-chk {
   width: 32px;
   height: 32px;
   border-radius: 16px;
   color: #fff;
   font-size: 14px;
   font-weight: 700;
   display: flex;
   align-items: center;
   justify-content: center;
   flex-shrink: 0
}

/* ----------------------------------------------------------------
   SPORTS — SportsCard.tsx
   borderColor:rgba(225,6,0,0.19), padding:16
   F1_RED = #E10600
   Title: Syne_600SemiBold 13px #E10600
   Emoji: 20px
   Badge: Syne_600SemiBold 10px #8E8E93, bg:#F2F2F7 padding:8h/3v borderRadius:6
   Row: gap:10 padding:8v, border-bottom 1px #E5E5EA
   Rank: Syne_700Bold 13px #E10600 width:22
   Line: Syne_400Regular 13px #1C1C1E lineHeight:18
   ---------------------------------------------------------------- */
.c-sports {
   border-color: rgba(225, 6, 0, .19);
   padding: 16px
}

.c-sports .spt {
   color: #E10600;
   flex: 1
}

.c-sports .spemoji {
   font-size: 20px
}

.c-sports .spbadge {
   font-weight: 600;
   font-size: 10px;
   color: var(--s-text2);
   background: var(--s-bg2);
   padding: 3px 8px;
   border-radius: 6px
}

.c-sports .splive {
   font-size: 10px;
   color: #FF2D55;
   font-weight: 600;
   animation: dp 1s ease-in-out infinite
}

.c-sports .sprows {
   max-height: 300px;
   overflow: hidden
}

.c-sports .srow {
   display: flex;
   gap: 10px;
   padding: 8px 0;
   align-items: flex-start;
   border-bottom: 1px solid var(--s-border)
}

.c-sports .srow:last-child {
   border-bottom: none
}

.c-sports .srank {
   font-weight: 700;
   font-size: 13px;
   color: #E10600;
   width: 22px;
   margin-top: 1px;
   flex-shrink: 0
}

.c-sports .sline {
   font-size: 13px;
   color: var(--s-text);
   line-height: 18px;
   flex: 1
}

/* ----------------------------------------------------------------
   NOTES — NotesCard.tsx
   bg:#1c1a0f (dark), borderRadius:16, border rgba(245,166,35,0.3)
   Top bar: height:4 bg:#FF9500
   Title: Syne_600SemiBold 13px #FF9500 uppercase
   Note title: Syne_700Bold 18px #1C1C1E (but on dark bg, use light)
   Lines: Syne_400Regular 13px #8E8E93 lineHeight:18
   Line rule: 1px rgba(245,166,35,0.1)
   Footer: Syne_400Regular 11px #C7C7CC
   ---------------------------------------------------------------- */
.c-notes {
   background: #1c1a0f;
   border-color: rgba(245, 166, 35, .3);
   border-radius: 16px;
   padding: 0;
   overflow: hidden
}

.c-notes .ntbar {
   height: 4px;
   background: var(--s-warning)
}

.c-notes .nt-hdr {
   display: flex;
   align-items: center;
   gap: 8px;
   padding: 16px 16px 8px
}

.c-notes .ntitle {
   font-weight: 600;
   font-size: 13px;
   color: var(--s-warning);
   text-transform: uppercase;
   letter-spacing: .5px
}

.c-notes .nt-name {
   font-weight: 700;
   font-size: 18px;
   color: #f0e8d0;
   padding: 0 16px;
   margin-bottom: 8px
}

.c-notes .nlines {
   padding: 0 16px;
   max-height: 120px;
   overflow: hidden
}

.c-notes .nline {
   margin-bottom: 6px
}

.c-notes .nline-rule {
   height: 1px;
   background: rgba(245, 166, 35, .1);
   margin-bottom: 3px
}

.c-notes .nline-text {
   font-size: 13px;
   color: #a09880;
   line-height: 18px
}

.c-notes .nfoot {
   display: flex;
   align-items: center;
   justify-content: flex-end;
   gap: 4px;
   padding: 8px 16px 12px
}

.c-notes .nfoot-text {
   font-size: 11px;
   color: #6b6350
}

/* ----------------------------------------------------------------
   ROUTINE — compact card
   borderColor:rgba(48,176,199,0.19), padding:16
   ---------------------------------------------------------------- */
.c-routine {
   border-color: rgba(48, 176, 199, .19);
   padding: 16px
}

.c-routine .rtt {
   font-weight: 600;
   font-size: 13px;
   color: #30B0C7;
   text-transform: uppercase;
   letter-spacing: .5px;
   margin-bottom: 8px
}

.c-routine .rsteps {
   display: flex;
   flex-direction: column;
   gap: 4px
}

.c-routine .rs {
   display: flex;
   align-items: center;
   gap: 6px;
   font-size: 12px;
   color: var(--s-text3)
}

.c-routine .rs.done {
   color: var(--s-success);
   text-decoration: line-through
}

.c-routine .rs.active {
   color: var(--s-text);
   font-weight: 600
}

.c-routine .rck {
   font-size: 12px;
   width: 14px
}

/* ----------------------------------------------------------------
   PLACES — PlacesCard.tsx
   borderColor:rgba(255,149,0,0.19), padding:16
   Title: Syne_600SemiBold 13px #FF9500
   Emoji: 18px
   Pin circle: 30×30 borderRadius:15, bg:${ORANGE}15
   Name: Syne_600SemiBold 14px #1C1C1E
   Detail: Syne_400Regular 12px #8E8E93
   Arrow: Syne_600SemiBold 16px #FF9500
   ---------------------------------------------------------------- */
.c-places {
   border-color: rgba(255, 149, 0, .19);
   padding: 16px
}

.c-places .plt {
   font-weight: 600;
   font-size: 13px;
   color: var(--s-warning);
   text-transform: uppercase;
   letter-spacing: .5px
}

.c-places .plq {
   font-size: 11px;
   color: var(--s-text3)
}

.c-places .plrows {
   max-height: 280px;
   overflow: hidden
}

.c-places .plr {
   display: flex;
   align-items: center;
   gap: 10px;
   padding: 10px 0;
   border-bottom: 1px solid var(--s-border)
}

.c-places .plr:last-child {
   border-bottom: none
}

.c-places .pl-pin {
   width: 30px;
   height: 30px;
   border-radius: 15px;
   background: rgba(255, 149, 0, .09);
   display: flex;
   align-items: center;
   justify-content: center;
   flex-shrink: 0;
   font-size: 14px
}

.c-places .pl-info {
   flex: 1
}

.c-places .pln {
   font-weight: 600;
   font-size: 14px;
   color: var(--s-text)
}

.c-places .pld {
   font-size: 12px;
   color: var(--s-text2);
   margin-top: 1px
}

.c-places .pl-arrow {
   font-weight: 600;
   font-size: 16px;
   color: var(--s-warning)
}

/* ----------------------------------------------------------------
   MESSAGE SENT — MessageSentCard.tsx
   borderColor:rgba(0,122,255,0.3), padding:20
   Recipient avatar: 36×36 borderRadius:18 bg:#007AFF
   Name: Syne_600SemiBold 15px #1C1C1E
   Bubble: bg:#007AFF borderRadius:16 (bottomRight:4), padding:12
   Text: Syne_400Regular 14px #fff lineHeight:20
   Sent text: Syne_400Regular 12px #C7C7CC
   ---------------------------------------------------------------- */
.c-message {
   border-color: rgba(0, 122, 255, .3);
   padding: 20px
}

.c-message .msg-t {
   color: var(--s-accent)
}

.c-message .msg-to {
   display: flex;
   align-items: center;
   gap: 10px;
   margin-bottom: 12px
}

.c-message .msg-avatar {
   width: 36px;
   height: 36px;
   border-radius: 18px;
   background: var(--s-accent);
   display: flex;
   align-items: center;
   justify-content: center;
   flex-shrink: 0
}

.c-message .msg-avatar span {
   font-weight: 700;
   font-size: 16px;
   color: #fff
}

.c-message .msg-name {
   font-weight: 600;
   font-size: 15px;
   color: var(--s-text)
}

.c-message .msg-bubble {
   background: var(--s-accent);
   border-radius: 16px 16px 4px 16px;
   padding: 12px;
   margin-bottom: 10px
}

.c-message .msg-text {
   font-size: 14px;
   color: #fff;
   line-height: 20px
}

.c-message .msg-sent {
   display: flex;
   align-items: center;
   justify-content: flex-end;
   gap: 4px;
   font-size: 12px;
   color: var(--s-text3)
}

/* ----------------------------------------------------------------
   CONTACT — ContactCard.tsx
   borderColor:rgba(88,86,214,0.12), padding:20
   Avatar: 56×56 borderRadius:28 bg:#5856D6
   Name: Syne_700Bold 18px #1C1C1E
   Action btns: bg:rgba(124,106,244,0.15) borderRadius:12 padding:10v
   Label: Syne_500Medium 11px #5856D6
   ---------------------------------------------------------------- */
.c-contact {
   border-color: var(--s-accent2Dim);
   padding: 20px
}

.c-contact .con-t {
   color: var(--s-accent2)
}

.c-contact .con-profile {
   display: flex;
   align-items: center;
   gap: 14px;
   margin-bottom: 16px
}

.c-contact .con-avatar {
   width: 56px;
   height: 56px;
   border-radius: 28px;
   background: var(--s-accent2);
   display: flex;
   align-items: center;
   justify-content: center;
   flex-shrink: 0
}

.c-contact .con-avatar span {
   font-weight: 700;
   font-size: 22px;
   color: #fff
}

.c-contact .con-name {
   font-weight: 700;
   font-size: 18px;
   color: var(--s-text);
   margin-bottom: 4px
}

.c-contact .con-detail {
   font-size: 13px;
   color: var(--s-text2)
}

.c-contact .con-actions {
   display: flex;
   gap: 8px
}

.c-contact .con-btn {
   flex: 1;
   background: rgba(124, 106, 244, .15);
   border-radius: 12px;
   padding: 10px 0;
   text-align: center;
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 4px
}

.c-contact .con-btn svg {
   width: 18px;
   height: 18px;
   stroke: var(--s-accent2)
}

.c-contact .con-btn span {
   font-weight: 500;
   font-size: 11px;
   color: var(--s-accent2)
}

/* ----------------------------------------------------------------
   REMINDER — similar to alarm, purple accent
   borderColor:rgba(88,86,214,0.19), padding:16
   ---------------------------------------------------------------- */
.c-reminder {
   border-color: rgba(88, 86, 214, .19);
   padding: 16px
}

.c-reminder .rem-t {
   color: var(--s-accent2)
}

.c-reminder .rem-icon {
   width: 40px;
   height: 40px;
   border-radius: 20px;
   background: rgba(88, 86, 214, .12);
   display: flex;
   align-items: center;
   justify-content: center;
   flex-shrink: 0;
   font-size: 20px
}

.c-reminder .rem-row {
   display: flex;
   align-items: center;
   gap: 12px;
   padding: 10px 0;
   border-bottom: 1px solid var(--s-border)
}

.c-reminder .rem-row:last-child {
   border-bottom: none
}

.c-reminder .rem-info {
   flex: 1
}

.c-reminder .rem-text {
   font-weight: 600;
   font-size: 14px;
   color: var(--s-text)
}

.c-reminder .rem-when {
   font-size: 12px;
   color: var(--s-text2);
   margin-top: 2px
}

.c-reminder .rem-chk {
   width: 24px;
   height: 24px;
   border-radius: 12px;
   border: 2px solid var(--s-accent2);
   display: flex;
   align-items: center;
   justify-content: center;
   flex-shrink: 0
}

.c-reminder .rem-chk.done {
   background: var(--s-accent2);
   border-color: var(--s-accent2);
   color: #fff;
   font-size: 11px
}

/* WEBSITE SECTIONS */
.section {
   padding: 100px 32px;
   position: relative
}

.section-inner {
   max-width: 1060px;
   margin: 0 auto
}

.section-tag {
   font-size: 14px;
   font-weight: 600;
   color: var(--text2);
   text-transform: uppercase;
   letter-spacing: 0.1em;
   margin-bottom: 12px
}

.section-h {
   font-size: clamp(48px, 8vw, 84px);
   font-weight: 700;
   line-height: 1.05;
   letter-spacing: -0.05em;
   margin-bottom: 24px
}

.section-p {
   font-size: 21px;
   color: var(--text2);
   max-width: 640px;
   line-height: 1.5;
   letter-spacing: -0.02em;
   margin-bottom: 80px;
   font-weight: 400
}

.demo-sec {
   background: rgba(5, 5, 10, .6)
}

.flow-steps {
   display: flex;
   align-items: center;
   gap: 0;
   width: 100%;
   max-width: 720px;
   margin-bottom: 48px
}

.fstep {
   flex: 1;
   text-align: center;
   opacity: .35;
   transition: opacity .4s
}

.fstep.active {
   opacity: 1
}

.fstep-n {
   font-size: 10px;
   font-weight: 700;
   color: var(--cyan);
   margin-bottom: 4px
}

.fstep-l {
   font-size: 16px;
   font-weight: 700;
   margin-bottom: 3px
}

.fstep-d {
   font-size: 11px;
   color: var(--text2)
}

.fconn {
   width: 48px;
   height: 1px;
   background: linear-gradient(90deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .12), rgba(255, 255, 255, .05));
   flex-shrink: 0
}

.flow-phone-wrap {
   perspective: 1200px
}

.flow-phone {
   width: 290px;
   height: 594px;
   border-radius: 46px;
   margin: 0 auto;
   box-shadow: 0 0 0 1px rgba(255, 255, 255, .08), 0 40px 80px rgba(0, 0, 0, .5)
}

.flow-body {
   padding-top: 10px !important;
   gap: 10px !important
}

.flow-body .app-scroll {
   padding-bottom: 120px
}

#flow-msg {
   font-family: 'Syne', sans-serif;
   font-size: 13px;
   font-weight: 400;
   color: var(--s-text2);
   line-height: 1.5;
   align-self: flex-start;
   opacity: 0;
   transform: translateY(8px);
   transition: opacity .35s, transform .35s
}

#flow-msg.show {
   opacity: 1;
   transform: translateY(0)
}

#flow-slot {
   width: 100%;
   opacity: 0;
   transform: translateY(24px);
   transition: opacity .45s cubic-bezier(.16, 1, .3, 1), transform .45s cubic-bezier(.16, 1, .3, 1)
}

#flow-slot.show {
   opacity: 1;
   transform: translateY(0)
}

.feat-grid {
   display: flex;
   gap: 24px;
   padding-bottom: 32px;
   overflow-x: auto;
   scroll-snap-type: x mandatory;
   -webkit-overflow-scrolling: touch;
   scrollbar-width: none;
   /* Firefox */
}

.feat-grid::-webkit-scrollbar {
   display: none;
   /* Safari and Chrome */
}

.feat-dots {
   display: flex;
   justify-content: center;
   gap: 8px;
   padding-top: 8px;
}

.feat-dot {
   width: 8px;
   height: 8px;
   border-radius: 4px;
   background: rgba(255, 255, 255, .15);
   transition: background .3s, width .3s cubic-bezier(.16, 1, .3, 1);
   cursor: pointer;
}

.feat-dot.active {
   width: 24px;
   background: rgba(255, 255, 255, .6);
}

.feat-item {
   width: 320px;
   flex-shrink: 0;
   scroll-snap-align: center;
   padding: 36px 28px;
   border-radius: 32px;
   background: #0a0a0c;
   border: 1px solid rgba(255, 255, 255, .04);
   transition: transform .4s cubic-bezier(.16, 1, .3, 1), background .4s, border-color .4s, box-shadow .4s;
   display: flex;
   flex-direction: column;
   align-items: flex-start;
}

/* Different background tints per card */
.feat-item:nth-child(1)  { background: rgba(0,122,255,0.06); }
.feat-item:nth-child(2)  { background: rgba(52,199,89,0.06); }
.feat-item:nth-child(3)  { background: rgba(255,149,0,0.06); }
.feat-item:nth-child(4)  { background: rgba(255,45,85,0.06); }
.feat-item:nth-child(5)  { background: rgba(88,86,214,0.06); }
.feat-item:nth-child(6)  { background: rgba(250,36,60,0.06); }
.feat-item:nth-child(7)  { background: rgba(52,199,89,0.06); }
.feat-item:nth-child(8)  { background: rgba(0,122,255,0.06); }
.feat-item:nth-child(9)  { background: rgba(255,149,0,0.06); }
.feat-item:nth-child(10) { background: rgba(88,86,214,0.06); }
.feat-item:nth-child(11) { background: rgba(255,45,85,0.06); }
.feat-item:nth-child(12) { background: rgba(0,122,255,0.06); }
.feat-item:nth-child(13) { background: rgba(88,86,214,0.06); }
.feat-item:nth-child(14) { background: rgba(0,122,255,0.06); }
.feat-item:nth-child(15) { background: rgba(160,82,45,0.06); }
.feat-item:nth-child(16) { background: rgba(0,122,255,0.06); }
.feat-item:nth-child(17) { background: rgba(48,176,199,0.06); }

.feat-item:hover {
   transform: scale(1.03);
   border-color: rgba(255, 255, 255, .1);
   box-shadow: 0 0 60px rgba(0, 113, 227, 0.05);
}

/* Brighten tint on hover per card */
.feat-item:nth-child(1):hover  { background: rgba(0,122,255,0.12); }
.feat-item:nth-child(2):hover  { background: rgba(52,199,89,0.12); }
.feat-item:nth-child(3):hover  { background: rgba(255,149,0,0.12); }
.feat-item:nth-child(4):hover  { background: rgba(255,45,85,0.12); }
.feat-item:nth-child(5):hover  { background: rgba(88,86,214,0.12); }
.feat-item:nth-child(6):hover  { background: rgba(250,36,60,0.12); }
.feat-item:nth-child(7):hover  { background: rgba(52,199,89,0.12); }
.feat-item:nth-child(8):hover  { background: rgba(0,122,255,0.12); }
.feat-item:nth-child(9):hover  { background: rgba(255,149,0,0.12); }
.feat-item:nth-child(10):hover { background: rgba(88,86,214,0.12); }
.feat-item:nth-child(11):hover { background: rgba(255,45,85,0.12); }
.feat-item:nth-child(12):hover { background: rgba(0,122,255,0.12); }
.feat-item:nth-child(13):hover { background: rgba(88,86,214,0.12); }
.feat-item:nth-child(14):hover { background: rgba(0,122,255,0.12); }
.feat-item:nth-child(15):hover { background: rgba(160,82,45,0.12); }
.feat-item:nth-child(16):hover { background: rgba(0,122,255,0.12); }
.feat-item:nth-child(17):hover { background: rgba(48,176,199,0.12); }

.feat-ic {
   width: 42px;
   height: 42px;
   border-radius: 12px;
   display: flex;
   align-items: center;
   justify-content: center;
   margin-bottom: 14px
}

.feat-item h3 {
   font-size: 17px;
   font-weight: 700;
   margin-bottom: 8px;
   letter-spacing: -0.01em;
}

.feat-item p {
   font-size: 12px;
   color: var(--text2);
   line-height: 1.5
}

.cards-sec {
   background: #000000;
}

.cd-row {
   display: flex;
   align-items: center;
   gap: 80px;
   min-height: 90vh;
   padding: 80px 0;
}

.cd-text {
   flex: 1;
   position: sticky;
   top: 25vh;
   align-self: flex-start;
   padding-right: 40px;
}

.cd-visual {
   flex: 1.2;
   background: #0a0a0c;
   border: 1px solid rgba(255, 255, 255, 0.05);
   border-radius: 48px;
   padding: 80px 40px;
   display: flex;
   justify-content: center;
   align-items: center;
}

.cd-row.reverse .cd-text {
   padding-right: 0;
   padding-left: 40px;
}

.cd-row.reverse {
   flex-direction: row-reverse;
}

.cd-tag {
   display: inline-block;
   font-size: 13px;
   font-weight: 600;
   color: var(--text2);
   text-transform: uppercase;
   letter-spacing: 0.1em;
   margin-bottom: 16px;
   padding: 6px 16px;
   border-radius: 20px;
   background: rgba(255, 255, 255, .05);
   border: 1px solid rgba(255, 255, 255, .08)
}

.cd-title {
   font-size: clamp(36px, 5vw, 56px);
   font-weight: 700;
   line-height: 1.05;
   letter-spacing: -0.05em;
   margin-bottom: 20px
}

.cd-desc {
   font-size: 18px;
   color: var(--text2);
   line-height: 1.5;
   letter-spacing: -0.02em;
   max-width: 440px;
   font-weight: 400;
}

.cd-pair,
.cd-triple {
   display: flex;
   gap: 40px;
   margin-bottom: 64px;
   justify-content: center;
   align-items: center;
   max-width: 900px;
   margin-left: auto;
   margin-right: auto;
}

.cd-triple {
   max-width: 1100px;
}

/* Subtle alternating stagger for pairs */
.cd-pair:nth-of-type(odd) .cd-col:nth-child(2) {
   margin-top: 36px;
}
.cd-pair:nth-of-type(even) .cd-col:nth-child(1) {
   margin-top: 36px;
}

/* Triple stagger — middle rises slightly */
.cd-triple .cd-col:nth-child(1) {
   margin-top: 24px;
}

.cd-triple .cd-col:nth-child(2) {
   margin-top: 0;
}

.cd-triple .cd-col:nth-child(3) {
   margin-top: 24px;
}

.cd-col {
   flex: 1;
   max-width: 420px;
   background: #0a0a0c;
   border: 1px solid rgba(255, 255, 255, 0.05);
   border-radius: 48px;
   padding: 48px 24px 36px;
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   gap: 20px;
   transition: border-color .5s, box-shadow .5s, transform .6s cubic-bezier(.16, 1, .3, 1);
}

.cd-col:hover {
   border-color: rgba(255, 255, 255, 0.1);
   box-shadow: 0 0 60px rgba(0, 113, 227, 0.06);
   transform: translateY(-6px);
}

.cd-caption {
   text-align: center;
   max-width: 260px;
   display: flex;
   flex-direction: column;
   align-items: center;
}

.cd-caption p {
   font-size: 14px;
   color: var(--text2);
   margin-top: 8px;
   line-height: 1.5;
   letter-spacing: -0.01em;
}

.sm-phone {
   width: 252px;
   height: 516px;
   border-radius: 38px
}

.sm-phone .phone-notch {
   width: 86px;
   height: 24px;
   top: 9px;
   border-radius: 12px
}

.sm-phone .app-hdr {
   padding: 46px 20px 8px
}

.sm-phone .app-body {
   padding: 14px 20px 0
}

.sm-phone .orb-dock {
   bottom: 12px
}

/* Now Playing in small phone — compact layout */
.sm-phone .c-np {
   gap: 10px;
   padding: 12px
}

.sm-phone .c-np .np-art {
   width: 48px;
   height: 48px;
   border-radius: 10px
}

.sm-phone .c-np .np-art svg {
   width: 20px;
   height: 20px
}

.sm-phone .c-np .np-bars {
   display: none
}

.sm-phone .c-np .np-info > div:first-child {
   flex-wrap: wrap;
   gap: 2px 6px
}

.sm-phone .c-np .np-lbl {
   font-size: 10px
}

.sm-phone .c-np .np-badge {
   font-size: 10px
}

.sm-phone .c-np .np-track {
   font-size: 14px;
   line-height: 1.2;
   margin-top: 2px
}

.sm-phone .c-np .np-artist {
   font-size: 12px
}

.sm-phone .c-np .np-album {
   font-size: 11px
}

/* Email in small phone — tighter label column */
.sm-phone .c-email .el {
   width: 42px;
   font-size: 12px
}

.sm-phone .c-email .ev {
   font-size: 13px
}

/* Package in small phone — fit two columns properly */
.sm-phone .c-pkg .peta {
   gap: 10px;
   padding: 10px
}

.sm-phone .c-pkg .petal {
   font-size: 11px
}

.sm-phone .c-pkg .petav {
   font-size: 12px;
   white-space: nowrap
}

/* Maps / Navigation in small phone */
.sm-phone .c-maps .map-info {
   padding: 12px
}

.sm-phone .c-maps .map-dest {
   font-size: 16px;
   margin-bottom: 8px
}

.sm-phone .c-maps .map-btn {
   border-radius: 10px;
   padding: 10px;
   font-size: 13px;
   margin-top: 4px
}

/* Package badge — prevent wrapping */
.sm-phone .c-pkg .psbadge {
   white-space: nowrap;
   font-size: 9px;
   padding: 2px 7px
}

.sm-phone .c-pkg .pcarrier {
   font-size: 13px
}

.sm-phone .c-pkg .ptrack {
   font-size: 9px
}

.sm-phone .c-pkg .pslbl {
   font-size: 6px
}

.tn-phone {
   width: 194px;
   height: 400px;
   border-radius: 30px;
   border-width: 4px
}

.tn-phone .phone-notch {
   width: 66px;
   height: 20px;
   top: 7px;
   border-radius: 10px
}

.tn-phone .app-hdr {
   padding: 38px 14px 6px
}

.tn-phone .app-body {
   padding: 8px 12px 0;
   gap: 5px
}

.tn-phone .card {
   border-radius: 14px;
   font-size: 11px
}

.tn-phone .card-hdr {
   margin-bottom: 8px
}

.tn-phone .card-title {
   font-size: 10px
}

.tn-phone .utxt {
   font-size: 10px
}

.tn-phone .orb-dock {
   bottom: 8px
}

/* Timer in tiny phone */
.tn-phone .c-timer {
   padding: 12px
}

.tn-phone .c-timer .tring {
   width: 70px;
   height: 70px;
   margin-bottom: 10px
}

.tn-phone .c-timer .tring-outer {
   width: 70px;
   height: 70px;
   border-radius: 35px;
   border-width: 3px
}

.tn-phone .c-timer .tring-fill {
   width: 60px;
   height: 60px;
   border-radius: 30px
}

.tn-phone .c-timer .tring-time {
   font-size: 16px
}

.tn-phone .c-timer .tctrls {
   gap: 8px;
   margin-top: 10px
}

.tn-phone .c-timer .tbtn {
   padding: 6px;
   font-size: 11px
}

/* Alarm in tiny phone — vertical stack */
.tn-phone .c-alarm {
   padding: 14px;
   gap: 8px;
   flex-direction: column;
   align-items: center;
   text-align: center;
   position: relative
}

.tn-phone .c-alarm .al-bell {
   width: 28px;
   height: 28px;
   font-size: 20px
}

.tn-phone .c-alarm .al-lbl {
   font-size: 10px
}

.tn-phone .c-alarm .al-time {
   font-size: 22px;
   white-space: nowrap
}

.tn-phone .c-alarm .al-sub {
   font-size: 10px
}

.tn-phone .c-alarm .al-chk {
   width: 24px;
   height: 24px;
   font-size: 10px;
   position: absolute;
   top: 10px;
   right: 10px
}

/* Home in tiny phone — vertical stack */
.tn-phone .c-home {
   padding: 14px;
   gap: 8px;
   flex-direction: column;
   align-items: center;
   text-align: center
}

.tn-phone .c-home .hm-circle {
   width: 40px;
   height: 40px;
   border-radius: 20px
}

.tn-phone .c-home .hm-circle svg {
   width: 20px;
   height: 20px
}

.tn-phone .c-home .hm-label {
   font-size: 9px
}

.tn-phone .c-home .hm-action {
   font-size: 16px;
   white-space: nowrap
}

.tn-phone .c-home .hm-device {
   font-size: 11px
}

.tn-phone .c-home .hm-chk {
   width: 24px;
   height: 24px;
   font-size: 10px;
   position: absolute;
   top: 10px;
   right: 10px
}

.tn-phone .c-home {
   position: relative
}

/* Notes in tiny phone */
.tn-phone .c-notes .nt-name {
   font-size: 14px;
   padding: 0 12px
}

.tn-phone .c-notes .nt-hdr {
   padding: 10px 12px 6px
}

.tn-phone .c-notes .nlines {
   padding: 0 12px
}

.tn-phone .c-notes .nline-text {
   font-size: 11px
}

/* Sports in tiny phone */
.tn-phone .c-sports {
   padding: 12px
}

.tn-phone .c-sports .srow {
   padding: 6px 0;
   gap: 6px
}

.tn-phone .c-sports .srank {
   font-size: 11px;
   width: 16px
}

.tn-phone .c-sports .sline {
   font-size: 11px;
   line-height: 15px
}

/* Places in tiny phone */
.tn-phone .c-places {
   padding: 12px
}

.tn-phone .c-places .plr {
   padding: 7px 0;
   gap: 7px
}

.tn-phone .c-places .pl-pin {
   width: 24px;
   height: 24px;
   font-size: 11px
}

.tn-phone .c-places .pln {
   font-size: 12px
}

.tn-phone .c-places .pld {
   font-size: 10px
}

/* Compact card sizing in demo phones */
.demo-phone .c-briefing .bh {
   padding: 14px
}

.demo-phone .c-briefing .bh-greet {
   font-size: 16px
}

.demo-phone .c-briefing .bh-time {
   font-size: 22px
}

.demo-phone .c-briefing .bsections {
   padding: 12px
}

.demo-phone .c-briefing .brow {
   margin-bottom: 8px;
   gap: 8px
}

.demo-phone .c-briefing .brow-icon {
   font-size: 12px
}

.demo-phone .c-briefing .brow-label {
   font-size: 10px
}

.demo-phone .c-briefing .brow-val {
   font-size: 12px
}

.demo-phone {
   transition: transform .5s cubic-bezier(.16, 1, .3, 1), box-shadow .5s
}

.demo-phone:hover {
   transform: translateY(-6px) scale(1.01);
   box-shadow: 0 0 0 1px rgba(255, 255, 255, .1), 0 44px 88px rgba(0, 0, 0, .5)
}

.int-grid {
   display: flex;
   justify-content: center;
   gap: 36px;
   flex-wrap: wrap
}

.int-item {
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 10px;
   width: 88px
}

.int-ic {
   width: 56px;
   height: 56px;
   border-radius: 16px;
   background: rgba(255, 255, 255, .04);
   border: 1px solid rgba(255, 255, 255, .06);
   display: flex;
   align-items: center;
   justify-content: center;
   transition: background .3s, transform .3s
}

.int-ic:hover {
   background: rgba(255, 255, 255, .08);
   transform: scale(1.08);
   box-shadow: 0 0 30px rgba(0, 113, 227, 0.06);
}

.int-item span {
   font-size: 12px;
   color: var(--text2);
   font-weight: 500
}

.stats-sec {
   padding: 64px 32px;
   background: rgba(8, 8, 12, .7)
}

.stats-grid {
   display: flex;
   justify-content: center;
   gap: 56px
}

.stat-n {
   font-size: 64px;
   font-weight: 700;
   color: #ffffff;
   line-height: 1;
   letter-spacing: -0.05em
}

.stat-plus {
   font-size: 40px;
   font-weight: 600;
   color: var(--text2)
}

.stat-l {
   display: block;
   font-size: 15px;
   color: var(--text2);
   margin-top: 8px;
   font-weight: 600;
   letter-spacing: -0.01em
}

.cta-sec {
   text-align: center;
   padding: 140px 32px;
   position: relative;
   overflow: hidden
}

.cta-orb-bg {
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   opacity: .12;
   filter: blur(40px)
}

.cta-orb-bg .orb {
   width: 260px;
   height: 260px
}

.cta-orb-bg .orb-glass {
   width: 260px;
   height: 260px;
   border-radius: 130px
}

.cta-title {
   font-size: clamp(40px, 8vw, 84px);
   font-weight: 700;
   margin-bottom: 20px;
   position: relative;
   z-index: 1;
   letter-spacing: -0.05em
}

.cta-desc {
   font-size: 21px;
   color: var(--text2);
   max-width: 580px;
   margin: 0 auto 40px;
   line-height: 1.4;
   position: relative;
   z-index: 1;
   letter-spacing: -0.02em;
   font-weight: 400
}

.cta-btns {
   display: flex;
   gap: 14px;
   justify-content: center;
   position: relative;
   z-index: 1
}

.btn {
   padding: 16px 32px;
   border-radius: 980px;
   font-size: 17px;
   font-weight: 400;
   transition: transform .3s cubic-bezier(.16, 1, .3, 1), box-shadow .3s, background .3s;
   letter-spacing: -0.02em
}

.btn:hover {
   transform: scale(1.02)
}

.btn-pri {
   background: #ffffff;
   color: #000000;
}

.btn-pri:hover {
   background: #e5e5ea;
   box-shadow: 0 0 40px rgba(255, 255, 255, 0.1);
}

.btn-sec {
   background: transparent;
   color: var(--cyan);
   border: none;
}

.btn-sec:hover {
   text-decoration: underline;
}

.footer {
   padding: 32px;
   border-top: 1px solid rgba(255, 255, 255, .04)
}

.footer-inner {
   max-width: 1060px;
   margin: 0 auto;
   display: flex;
   align-items: center;
   justify-content: space-between
}

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

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

/* MOCKUP FONT ISOLATION — protect from global -apple-system overrides */
.phone-frame *,
.card *,
.orb *,
.app-screen *,
.orb-dock * {
   font-family: 'Syne', sans-serif;
}

/* Apple-style section transitions via IntersectionObserver */
.section {
   opacity: 1;
}

.cards-sec .cd-pair,
.cards-sec .cd-triple,
.cards-sec .cd-row {
   opacity: 0;
   transform: translateY(40px);
   transition: opacity .8s cubic-bezier(.16, 1, .3, 1), transform .8s cubic-bezier(.16, 1, .3, 1);
}

.cards-sec .cd-pair.visible,
.cards-sec .cd-triple.visible,
.cards-sec .cd-row.visible {
   opacity: 1;
   transform: translateY(0);
}

/* Subtle Apple-style glow dividers between major sections */
.section + .section::before {
   content: '';
   display: block;
   height: 1px;
   background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06) 30%, rgba(255, 255, 255, 0.06) 70%, transparent);
   margin-bottom: 100px;
}

@media(max-width:1024px) {
   .feat-grid {
      grid-template-columns: repeat(3, 1fr)
   }

   .cd-row {
      flex-direction: column;
      gap: 32px;
      text-align: center
   }
}

@media(max-width:768px) {
   .nav {
      padding: 0 16px
   }

   .nav-links a:not(.nav-cta) {
      display: none
   }

   .section {
      padding: 64px 16px
   }

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

   .cd-pair,
   .cd-triple {
      flex-direction: column;
      align-items: center
   }

   .cd-pair .cd-col:nth-child(1),
   .cd-pair .cd-col:nth-child(2),
   .cd-triple .cd-col:nth-child(1),
   .cd-triple .cd-col:nth-child(2),
   .cd-triple .cd-col:nth-child(3) {
      margin-top: 0
   }

   .flow-steps {
      display: none
   }

   .stats-grid {
      gap: 24px;
      flex-wrap: wrap
   }

   .stat-n {
      font-size: 36px
   }

   .footer-inner {
      flex-direction: column;
      gap: 10px;
      text-align: center
   }
}

@media(max-width:480px) {
   .feat-grid {
      grid-template-columns: 1fr
   }

   .hero-phone,
   .flow-phone {
      width: 252px;
      height: 516px;
      border-radius: 38px
   }
}