@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@700;800;900&display=swap');

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

:root {
  --teal:    #2BAD9C;
  --teal-dk: #1E8A7C;
  --teal-lt: #E6F7F5;
  --dark:    #1A2A1A;
  --dark-m:  #2D3B2D;
  --dark-2:  #344934;
  --cream:   #E8E4DC;
  --cream-l: #F5F3EE;
  --cream-m: #EDE9E1;
  --border:  #DDD9D1;
  --gray:    #7A7A7A;
  --gray-l:  #9A9A9A;
  --white:   #ffffff;
  --orange:  #E8613A;
  --yellow:  #F5C83A;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', system-ui, sans-serif; background: var(--cream-l); color: var(--dark); -webkit-font-smoothing: antialiased; }
h1, h2, h3 { font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif; }
a { text-decoration: none; color: inherit; }
img { display: block; }
button { font-family: inherit; cursor: pointer; border: none; }

/* ── Scroll Reveal ───────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s cubic-bezier(.16,1,.3,1), transform .65s cubic-bezier(.16,1,.3,1);
}
[data-reveal].revealed { opacity: 1; transform: translateY(0); }

/* ── Wrapper ─────────────────────────── */
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 52px; }

/* ── Buttons ─────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: 7px; border-radius: 11px; font-weight: 700; font-size: 14px; transition: all .18s; cursor: pointer; border: none; }
.btn-sm  { padding: 8px 18px; font-size: 14px; }
.btn-lg  { padding: 14px 28px; font-size: 15px; }
.btn-teal    { background: var(--teal); color: var(--white); box-shadow: 0 4px 14px rgba(43,173,156,.3); }
.btn-teal:hover    { background: var(--teal-dk); box-shadow: 0 6px 20px rgba(43,173,156,.42); transform: translateY(-1px); }
.btn-ghost   { background: transparent; color: var(--dark-m); font-weight: 500; }
.btn-ghost:hover   { background: var(--cream-m); }
.btn-outline { background: rgba(255,255,255,.08); color: rgba(255,255,255,.82); border: 1px solid rgba(255,255,255,.2); }
.btn-outline:hover { background: rgba(255,255,255,.14); }
.btn-white   { background: var(--white); color: var(--teal); }
.btn-white:hover   { opacity: .92; transform: translateY(-1px); }

/* ── Nav ─────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,.1);
  transition:
    background .3s ease,
    border-color .3s ease,
    box-shadow .3s ease,
    transform .42s cubic-bezier(.4,0,.2,1);
}
.nav.scrolled {
  background: rgba(245,243,238,.92);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-bottom-color: var(--border);
  box-shadow: 0 4px 32px rgba(0,0,0,.07);
}
.nav.nav-hidden { transform: translateY(-110%); }

/* Text colours when transparent (over dark hero) */
.nav:not(.scrolled) .nav-logo { color: rgba(255,255,255,.92); }
.nav:not(.scrolled) .nav-link { color: rgba(255,255,255,.52); }
.nav:not(.scrolled) .nav-link:hover { color: rgba(255,255,255,.9); background: rgba(255,255,255,.08); }
.nav:not(.scrolled) .nav-signin { color: rgba(255,255,255,.52); }
.nav:not(.scrolled) .nav-signin:hover { color: rgba(255,255,255,.9); background: rgba(255,255,255,.08); }

.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.nav-logo { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 17px; color: var(--dark); letter-spacing: -.3px; transition: color .3s; }
.nav-logo img { width: 32px; height: 32px; border-radius: 9px; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link { padding: 7px 13px; border-radius: 9px; font-size: 14px; font-weight: 500; color: var(--gray); transition: color .2s, background .2s; }
.nav-link:hover { color: var(--dark); background: var(--cream-m); }
.nav-actions { display: flex; align-items: center; gap: 8px; }
.nav-signin { font-size: 14px; font-weight: 500; color: var(--gray); padding: 7px 13px; border-radius: 9px; transition: color .2s, background .2s; }
.nav-signin:hover { color: var(--dark); background: var(--cream-m); }

/* ── Hero ────────────────────────────── */
.hero {
  background: linear-gradient(160deg, #0F1F0F 0%, var(--dark-m) 52%, #263826 100%);
  overflow: hidden;
  position: relative;
  padding-top: 68px; /* compensate for fixed nav */
}
.hero-orb { position: absolute; border-radius: 50%; pointer-events: none; }
.hero-orb-1 { width: 560px; height: 560px; top: -160px; right: 8%; background: radial-gradient(circle, rgba(43,173,156,.16) 0%, transparent 65%); filter: blur(10px); animation: drift1 9s ease-in-out infinite; }
.hero-orb-2 { width: 380px; height: 380px; bottom: -60px; left: -80px; background: radial-gradient(circle, rgba(43,173,156,.1) 0%, transparent 65%); filter: blur(12px); animation: drift2 12s ease-in-out infinite; }
.hero-dots { position: absolute; inset: 0; opacity: .045; background-image: radial-gradient(circle, rgba(255,255,255,.7) 1px, transparent 1px); background-size: 36px 36px; pointer-events: none; }
.hero-fade { position: absolute; bottom: 0; left: 0; right: 0; height: 130px; background: linear-gradient(to bottom, transparent, var(--cream-l)); pointer-events: none; }
.hero-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding-top: 90px;
  padding-bottom: 130px;
  /* horizontal padding comes from .wrap — do NOT add shorthand padding here */
}
.hero-copy { flex: 0 0 auto; width: 46%; max-width: 520px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; border-radius: 100px; margin-bottom: 30px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); }
.hero-badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 8px var(--teal); display: inline-block; animation: pulseGlow 2.5s ease-in-out infinite; }
.hero-badge span { font-size: 12px; font-weight: 600; color: rgba(255,255,255,.6); letter-spacing: .3px; }
.hero-h1 { font-size: clamp(44px, 5vw, 72px); font-weight: 900; line-height: 1.04; letter-spacing: -2.5px; color: var(--white); margin-bottom: 22px; }
.hero-h1 em { font-style: normal; color: var(--teal); }
.hero-p { font-size: 17px; line-height: 1.68; color: rgba(255,255,255,.5); margin-bottom: 38px; max-width: 440px; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 30px; }
.hero-trust { display: flex; align-items: center; gap: 12px; }
.hero-avatars { display: flex; }
.ha { width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 800; color: white; border: 2px solid #1A2A1A; margin-right: -7px; }
.ha:last-child { margin-right: 0; }
.hero-trust-text { font-size: 13px; color: rgba(255,255,255,.4); margin-left: 5px; }
.hero-trust-text strong { color: rgba(255,255,255,.65); font-weight: 600; }

/* ── Hero Carousel ───────────────────── */
.hero-carousel {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hc-slides {
  position: relative;
  width: 100%;
  max-width: 560px;
  overflow: visible;
}
.hc-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(14px) scale(.98);
  transition: opacity .55s cubic-bezier(.4,0,.2,1), transform .55s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
}
.hc-slide.active {
  position: relative;
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
/* Slide inner — provides padding space for floating widgets */
.hc-slide-inner {
  position: relative;
  padding: 28px 48px 40px 28px;
}
/* ── Floating dark widgets ───────────── */
.hw {
  position: absolute;
  z-index: 4;
  border-radius: 14px;
  padding: 11px 14px;
  min-width: 148px;
}
.hw-dark {
  background: rgba(10,20,10,.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
  color: white;
}
.hw-tr { top: 0; right: 0; }
.hw-bl { bottom: 12px; left: 0; }
/* Float animations per widget */
.hw-float-a { animation: hwFloatA 4.5s ease-in-out infinite; }
.hw-float-b { animation: hwFloatB 5.5s ease-in-out .9s infinite; }
.hw-float-c { animation: hwFloatC 4.2s ease-in-out .4s infinite; }
.hw-float-d { animation: hwFloatD 5.8s ease-in-out 1.4s infinite; }
/* Widget content helpers */
.hw-live-row { display: flex; align-items: center; gap: 7px; font-size: 11px; font-weight: 600; color: rgba(255,255,255,.8); white-space: nowrap; }
.hw-avatars { display: flex; margin-left: 2px; }
.hw-avatars .awca { width: 18px; height: 18px; font-size: 7px; margin-right: -5px; border: 1.5px solid rgba(10,20,10,.8); }
.hw-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; color: rgba(255,255,255,.38); margin-bottom: 3px; }
.hw-big-val { font-family: 'Plus Jakarta Sans','Inter',system-ui,sans-serif; font-size: 22px; font-weight: 900; letter-spacing: -1px; color: white; margin-bottom: 2px; }
.hw-val { font-size: 13px; font-weight: 700; color: white; }
.hw-small { font-size: 10px; color: rgba(255,255,255,.42); margin-top: 2px; }
.hw-check-row { display: flex; align-items: center; gap: 9px; }
.hw-check-icon { width: 20px; height: 20px; border-radius: 50%; background: var(--teal); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hw-on-track { display: flex; align-items: center; gap: 6px; margin: 4px 0 2px; }
.hw-on-track-dot { width: 8px; height: 8px; border-radius: 50%; background: #4CD896; box-shadow: 0 0 6px #4CD896; flex-shrink: 0; }
.hw-on-track-text { font-size: 15px; font-weight: 800; color: #4CD896; letter-spacing: -.3px; }

/* Shared typing dots (used in slide 2) */
.hfc-live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 6px var(--teal); flex-shrink: 0; animation: pulseGlow 2s ease-in-out infinite; }
.hfc-typing-dots { display: flex; gap: 3px; align-items: center; }
.hfc-typing-dots span { width: 5px; height: 5px; border-radius: 50%; background: var(--gray-l); animation: typingDot 1.2s ease-in-out infinite; }
.hfc-typing-dots span:nth-child(2) { animation-delay: .2s; }
.hfc-typing-dots span:nth-child(3) { animation-delay: .4s; }

/* ── Slide 2: Collaboration ──────────── */
.sl-live-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  background: var(--teal-lt);
  border-bottom: 1px solid rgba(43,173,156,.15);
  font-size: 12px; font-weight: 500; color: var(--teal-dk);
}
.sl-live-text { flex: 1; font-size: 12px; }
.sl-feed { display: flex; flex-direction: column; gap: 0; padding: 0 16px; }
.sl-event {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
}
.sl-event:last-child { border-bottom: none; }
.sl-event-body { flex: 1; }
.sl-event-text { font-size: 13px; color: var(--dark); line-height: 1.4; }
.sl-event-text strong { font-weight: 700; }
.sl-event-time { font-size: 11px; color: var(--gray-l); margin-top: 1px; }
.sl-invite-row {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px;
  border-top: 1px solid var(--border);
  background: var(--cream-l);
}
.sl-invite-label { font-size: 12px; font-weight: 600; color: var(--teal); flex: 0 0 auto; }
.sl-invite-input {
  flex: 1;
  font-size: 12px; color: var(--gray-l);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 6px 10px;
}

/* ── Slide 3: Budget ─────────────────── */
.bg-overview { padding: 14px 16px 12px; background: var(--cream-l); border-bottom: 1px solid var(--border); }
.bg-ov-row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; }
.bg-ov-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .6px; color: var(--gray); }
.bg-ov-val { font-size: 20px; font-weight: 900; color: var(--dark); letter-spacing: -.5px; }
.bg-ov-val small { font-size: 13px; font-weight: 500; color: var(--gray-l); letter-spacing: 0; }
.bg-ov-track { height: 6px; border-radius: 4px; background: var(--border); overflow: hidden; margin-bottom: 6px; }
.bg-ov-fill { height: 100%; border-radius: 4px; background: linear-gradient(to right, var(--teal), #45D4C5); transition: width 1.2s cubic-bezier(.4,0,.2,1) .3s; }
.bg-ov-sub { font-size: 11px; color: var(--gray-l); }
.bg-cats { display: flex; flex-direction: column; gap: 0; padding: 0 16px; }
.bg-cat {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.bg-cat:last-child { border-bottom: none; }
.bg-cat-name { font-size: 13px; font-weight: 600; color: var(--dark); width: 64px; flex-shrink: 0; }
.bg-cat-track { flex: 1; height: 5px; border-radius: 3px; background: var(--border); overflow: hidden; }
.bg-cat-fill { height: 100%; border-radius: 3px; transition: width 1s cubic-bezier(.4,0,.2,1) .4s; }
.bg-cat-pct { font-size: 11px; color: var(--gray-l); width: 28px; text-align: right; }
.bg-cat-amt { font-size: 13px; font-weight: 700; color: var(--dark); width: 44px; text-align: right; }

/* ── App Window Mockup ───────────────── */
.app-window {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 520px;
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 40px 80px rgba(0,0,0,.5), 0 8px 24px rgba(0,0,0,.25);
  position: relative;
}
.aw-chrome {
  background: #ECECEC;
  border-bottom: 1px solid #D8D8D8;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.aw-chrome-dots { display: flex; gap: 6px; flex-shrink: 0; }
.aw-chrome-dots span { width: 11px; height: 11px; border-radius: 50%; }
.aw-chrome-dots span:nth-child(1) { background: #FF5F57; }
.aw-chrome-dots span:nth-child(2) { background: #FFBD2E; }
.aw-chrome-dots span:nth-child(3) { background: #28C840; }
.aw-chrome-title { flex: 1; text-align: center; font-size: 11px; color: #888; font-weight: 500; }
.aw-chrome-spacer { flex: 0 0 auto; width: 56px; }
.aw-topbar { background: var(--cream-l); border-bottom: 1px solid var(--border); padding: 12px 16px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.aw-trip-name { font-weight: 700; font-size: 14px; color: var(--dark); letter-spacing: -.2px; }
.aw-trip-meta { font-size: 11px; color: var(--gray); margin-top: 2px; }
.aw-collab-heads { display: flex; align-items: center; gap: 4px; }
.awca { width: 26px; height: 26px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 800; color: white; border: 2px solid var(--cream-l); margin-right: -5px; flex-shrink: 0; }
.awca:last-of-type { margin-right: 0; }
.awca-more { background: var(--border); color: var(--gray); font-size: 9px; }
.awca-sm { width: 22px; height: 22px; font-size: 9px; border: none; flex-shrink: 0; }
.aw-share-btn { margin-left: 8px; padding: 5px 12px; border-radius: 7px; font-size: 11px; font-weight: 700; background: var(--teal); color: white; border: none; cursor: default; }
.aw-tabs { border-bottom: 1px solid var(--border); padding: 0 16px; display: flex; gap: 0; overflow-x: auto; scrollbar-width: none; background: var(--white); }
.aw-tabs::-webkit-scrollbar { display: none; }
.aw-tab { padding: 10px 13px; font-size: 12px; font-weight: 600; color: var(--gray-l); border-bottom: 2px solid transparent; white-space: nowrap; cursor: default; }
.aw-tab.active { color: var(--teal); border-bottom-color: var(--teal); }
.aw-list { padding: 10px 14px; display: flex; flex-direction: column; gap: 6px; background: var(--white); }
.aw-act { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 10px; background: var(--cream-l); border-left: 3px solid var(--act-c, var(--border)); }
.aw-act-time { font-size: 11px; font-weight: 700; color: var(--gray); min-width: 34px; flex-shrink: 0; }
.aw-act-badge { font-size: 8px; font-weight: 800; letter-spacing: .5px; color: white; padding: 3px 6px; border-radius: 4px; flex-shrink: 0; }
.aw-act-body { flex: 1; min-width: 0; }
.aw-act-name { font-size: 12px; font-weight: 600; color: var(--dark); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.aw-act-sub { font-size: 10px; color: var(--gray-l); margin-top: 1px; }
.aw-act-pill { font-size: 9px; font-weight: 700; padding: 2px 7px; border-radius: 4px; flex-shrink: 0; }
.aw-act-pill.confirmed { background: #E8F5F3; color: var(--teal-dk); }
.aw-act-pill.pending { background: #FFF4EC; color: #C0602A; }
.aw-foot { border-top: 1px solid var(--border); padding: 10px 16px; background: var(--white); }
.aw-budget-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.aw-budget-lbl { font-size: 11px; font-weight: 600; color: var(--gray); }
.aw-budget-val { font-size: 12px; font-weight: 700; color: var(--dark); }
.aw-budget-val small { font-weight: 400; color: var(--gray-l); font-size: 10px; }
.aw-budget-track { display: flex; align-items: center; gap: 8px; }
.aw-budget-bar { flex: 1; height: 5px; border-radius: 3px; background: var(--border); overflow: hidden; }
.aw-budget-fill { height: 100%; border-radius: 3px; background: linear-gradient(to right, var(--teal), var(--teal-dk)); }
.aw-budget-pct { font-size: 10px; font-weight: 700; color: var(--teal); flex-shrink: 0; }
/* Floating notification */
.aw-notif-hide { opacity: 0; transform: translateX(16px) !important; }
.aw-notif-show { opacity: 1 !important; transform: translateX(0) !important; }
.aw-notif {
  position: absolute;
  bottom: 68px;
  right: 12px;
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--dark);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  padding: 8px 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  white-space: nowrap;
  animation: slideInRight .5s .6s cubic-bezier(.16,1,.3,1) both;
}
.aw-notif-time { font-size: 10px; color: var(--teal); font-weight: 600; }

/* ── Stats Strip ─────────────────────── */
.stats-strip { background: var(--white); border-bottom: 1px solid var(--border); padding: 36px 0; }
.stats-inner { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; }
.stat-s { text-align: center; padding: 0 44px; }
.stat-s-num { font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif; font-size: 28px; font-weight: 900; color: var(--dark); letter-spacing: -1px; line-height: 1.1; }
.stat-s-lbl { font-size: 13px; color: var(--gray); margin-top: 4px; font-weight: 500; }
.stats-div { width: 1px; height: 40px; background: var(--border); flex-shrink: 0; }

/* ── Section labels ──────────────────── */
.section-lbl { display: inline-flex; align-items: center; padding: 5px 14px; border-radius: 100px; margin-bottom: 14px; background: var(--teal-lt); border: 1px solid rgba(43,173,156,.25); font-size: 12px; font-weight: 700; color: var(--teal); text-transform: uppercase; letter-spacing: .8px; }
.section-lbl-inv { background: rgba(43,173,156,.12); border: 1px solid rgba(43,173,156,.28); color: var(--teal); }
.section-h2 { font-size: clamp(30px,4vw,52px); font-weight: 900; letter-spacing: -1.5px; line-height: 1.1; color: var(--dark); margin-bottom: 14px; }
.section-h2-inv { color: var(--white); }

/* ── Feature Showcase ────────────────── */
.feat { padding: 100px 0; }
.feat-cream { background: var(--cream-l); }
.feat-white { background: var(--white); }
.feat-inner { display: flex; align-items: center; gap: 80px; flex-wrap: wrap; }
.feat-flip { flex-direction: row-reverse; }
.feat-copy { flex: 1 1 360px; }
.feat-copy h2 { font-size: clamp(28px,3.5vw,46px); font-weight: 900; letter-spacing: -1.5px; line-height: 1.12; color: var(--dark); margin-bottom: 16px; }
.feat-copy p { font-size: 16px; color: var(--gray); line-height: 1.7; margin-bottom: 28px; max-width: 420px; }
.feat-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.feat-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--dark); line-height: 1.5; font-weight: 500; }
.feat-check { flex-shrink: 0; margin-top: 2px; }
.feat-visual { flex: 1 1 400px; }

/* ── Feature Mockups (shared) ────────── */
.fmock { background: var(--white); border-radius: 16px; border: 1px solid var(--border); box-shadow: 0 20px 60px rgba(0,0,0,.08), 0 4px 12px rgba(0,0,0,.04); overflow: hidden; }
.fmock-head { display: flex; align-items: center; justify-content: space-between; padding: 14px 18px; border-bottom: 1px solid var(--border); background: var(--cream-l); }
.fmock-head strong { font-weight: 800; font-size: 14px; color: var(--dark); }
.fmock-count { font-size: 12px; color: var(--gray-l); font-weight: 500; }

/* Itinerary timeline mock */
.fmock-timeline { padding: 14px 16px; display: flex; flex-direction: column; }
.fmt-row { display: flex; align-items: flex-start; gap: 12px; }
.fmt-time { font-size: 11px; font-weight: 700; color: var(--gray); min-width: 36px; padding-top: 13px; flex-shrink: 0; text-align: right; }
.fmt-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; margin-top: 15px; box-shadow: 0 0 0 3px rgba(255,255,255,1), 0 0 0 4px var(--border); }
.fmt-card { flex: 1; background: var(--cream-l); border-radius: 10px; padding: 10px 14px; display: flex; align-items: center; gap: 10px; border: 1px solid var(--border); }
.fmt-badge { font-size: 8px; font-weight: 800; letter-spacing: .5px; color: white; padding: 3px 6px; border-radius: 4px; flex-shrink: 0; }
.fmt-info { flex: 1; min-width: 0; }
.fmt-info strong { font-size: 12px; font-weight: 600; color: var(--dark); display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.fmt-info span { font-size: 10px; color: var(--gray-l); }
.fmt-status { font-size: 9px; font-weight: 700; padding: 2px 7px; border-radius: 4px; flex-shrink: 0; color: var(--gray-l); background: transparent; }
.fmt-status.ok { background: #E8F5F3; color: var(--teal-dk); }
.fmt-status.warn { background: #FFF4EC; color: #C0602A; }
.fmt-connector { width: 1px; height: 10px; background: var(--border); margin-left: calc(36px + 12px + 4px); }

/* Collaboration mock */
.fmock-collab .fmock-head { align-items: center; }
.fc-status { display: flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 600; color: var(--dark); }
.fc-live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 6px var(--teal); animation: pulseGlow 2s ease-in-out infinite; flex-shrink: 0; }
.fc-users { display: flex; }
.fc-feed { padding: 12px 16px; display: flex; flex-direction: column; gap: 0; }
.fc-item { display: flex; align-items: flex-start; gap: 10px; padding: 12px 0; border-bottom: 1px solid var(--border); }
.fc-item:last-child { border-bottom: none; }
.fc-item-body { flex: 1; }
.fc-item-body > div:first-child { font-size: 13px; color: var(--dark); }
.fc-item-body strong { font-weight: 600; }
.fc-comment { margin-top: 6px; font-size: 12px; color: var(--dark); background: var(--cream-l); border-radius: 8px; padding: 8px 12px; border-left: 3px solid var(--teal); line-height: 1.5; }
.fc-time { font-size: 10px; color: var(--gray-l); margin-top: 3px; }
.fc-input-row { display: flex; align-items: center; gap: 8px; padding: 12px 16px; border-top: 1px solid var(--border); background: var(--cream-l); }
.fc-input { flex: 1; font-size: 12px; color: var(--gray-l); background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 9px 12px; }
.fc-send { width: 32px; height: 32px; border-radius: 8px; background: var(--teal); display: flex; align-items: center; justify-content: center; flex-shrink: 0; border: none; cursor: default; }

/* Budget mock */
.fb-header { display: flex; align-items: flex-start; justify-content: space-between; padding: 18px 18px 12px; }
.fb-total { font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif; font-size: 28px; font-weight: 900; color: var(--dark); letter-spacing: -1px; }
.fb-subtitle { font-size: 12px; color: var(--gray); margin-top: 3px; }
.fb-per { text-align: right; }
.fb-per-num { font-size: 18px; font-weight: 800; color: var(--teal); letter-spacing: -.5px; }
.fb-per-lbl { font-size: 11px; color: var(--gray-l); }
.fb-track-bar { margin: 0 18px; height: 7px; border-radius: 4px; background: var(--border); overflow: hidden; }
.fb-track-fill { height: 100%; border-radius: 4px; background: linear-gradient(to right, var(--teal), var(--teal-dk)); }
.fb-track-labels { display: flex; justify-content: space-between; padding: 4px 18px 0; font-size: 10px; color: var(--gray-l); }
.fb-pct { font-weight: 700; color: var(--teal); }
.fb-cats { padding: 14px 18px; display: flex; flex-direction: column; gap: 10px; }
.fb-cat { display: flex; align-items: center; gap: 10px; }
.fb-cat-label { display: flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 500; color: var(--dark); min-width: 110px; }
.fb-cat-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.fb-cat-bar-wrap { flex: 1; height: 5px; border-radius: 3px; background: var(--border); overflow: hidden; }
.fb-cat-bar { height: 100%; border-radius: 3px; }
.fb-cat-amt { font-size: 12px; font-weight: 700; color: var(--dark); min-width: 42px; text-align: right; flex-shrink: 0; }
.fb-footer { border-top: 1px solid var(--border); padding: 12px 18px; display: flex; align-items: center; justify-content: space-between; background: var(--cream-l); }
.fb-curr { display: flex; align-items: center; gap: 7px; font-size: 11px; color: var(--gray); }
.fb-curr-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); }
.fb-add { padding: 6px 14px; border-radius: 8px; font-size: 12px; font-weight: 700; background: var(--teal); color: white; border: none; cursor: default; }

/* ── How it works ────────────────────── */
.how { padding: 110px 0; background: linear-gradient(180deg, #111E11 0%, var(--dark) 100%); }
.how-head { text-align: center; margin-bottom: 64px; }
.how-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 40px; }
.how-step { }
.step-num { width: 56px; height: 56px; border-radius: 16px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dk) 100%); color: var(--white); font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif; font-weight: 900; font-size: 22px; margin-bottom: 22px; box-shadow: 0 8px 24px rgba(43,173,156,.35); letter-spacing: -1px; }
.how-step h3 { font-weight: 800; font-size: 17px; color: var(--white); margin-bottom: 9px; letter-spacing: -.2px; }
.how-step p  { font-size: 14px; color: rgba(255,255,255,.42); line-height: 1.65; }

/* ── CTA Final ───────────────────────── */
.cta-final {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #080F08 0%, var(--dark) 55%, #0F1F14 100%);
  padding: 130px 0 110px;
  text-align: center;
}
.cta-final-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}
.cta-final-glow-l {
  position: absolute; left: -200px; top: 50%; transform: translateY(-50%);
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(43,173,156,.10) 0%, transparent 65%);
  pointer-events: none;
}
.cta-final-glow-r {
  position: absolute; right: -150px; bottom: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(43,173,156,.07) 0%, transparent 65%);
  pointer-events: none;
}
.cta-final-inner {
  position: relative;
  display: flex; flex-direction: column; align-items: center;
}
.cta-final-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 6px 18px; border-radius: 100px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,.4);
  letter-spacing: .3px;
  margin-bottom: 36px;
}
.cta-eyebrow-logo {
  width: 18px; height: 18px; border-radius: 5px; object-fit: contain;
  opacity: .7;
}
.cta-final-h2 {
  font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  font-size: clamp(42px, 7vw, 88px);
  font-weight: 900;
  letter-spacing: -3px;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 24px;
}
.cta-final-h2 em {
  font-style: italic;
  color: var(--teal);
}
.cta-final-p {
  font-size: 18px;
  color: rgba(255,255,255,.42);
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 44px;
}
.cta-final-btns {
  display: flex; align-items: center; gap: 20px;
  flex-wrap: wrap; justify-content: center;
  margin-bottom: 28px;
}
.cta-btn-primary { font-size: 16px; padding: 16px 32px; }
.cta-signin-link {
  font-size: 14px; color: rgba(255,255,255,.38);
  transition: color .15s; text-decoration: none;
}
.cta-signin-link:hover { color: rgba(255,255,255,.7); }
.cta-final-stores { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.store-btn { display: inline-flex; align-items: center; gap: 7px; padding: 11px 22px; border-radius: 10px; font-size: 13px; font-weight: 700; font-family: inherit; background: rgba(255,255,255,.08); color: rgba(255,255,255,.7); border: 1px solid rgba(255,255,255,.14); transition: all .18s; cursor: pointer; }
.store-btn:hover { background: rgba(255,255,255,.14); color: rgba(255,255,255,.9); }
.store-btn-secondary { background: rgba(255,255,255,.05); }

/* ── Footer ──────────────────────────── */
.footer { background: var(--dark); border-top: 1px solid rgba(255,255,255,.05); padding: 32px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-logo img { width: 26px; height: 26px; border-radius: 7px; object-fit: contain; }
.footer-logo span { font-weight: 600; font-size: 14px; color: rgba(255,255,255,.42); }
.footer-copy { font-size: 12px; color: rgba(255,255,255,.22); }
.footer-copy a { color: rgba(255,255,255,.38); text-decoration: underline; text-underline-offset: 3px; transition: color .15s; }
.footer-copy a:hover { color: rgba(255,255,255,.65); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 12px; color: rgba(255,255,255,.3); transition: color .15s; }
.footer-links a:hover { color: rgba(255,255,255,.65); }

/* ── Auth pages ──────────────────────── */
.auth-page { min-height: 100vh; display: flex; }

/* Left panel */
.auth-panel {
  width: 44%;
  padding: 48px 52px;
  display: none;
  flex-direction: column;
  background: linear-gradient(160deg, #080F0A 0%, var(--dark) 50%, #0E1E12 100%);
  position: relative;
  overflow: hidden;
}
.auth-panel::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(43,173,156,.08) 0%, transparent 65%);
  bottom: -200px; right: -150px;
  pointer-events: none;
}
@media (min-width: 960px) { .auth-panel { display: flex; } }
.auth-panel-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.auth-panel-logo img { width: 44px; height: 44px; border-radius: 12px; object-fit: contain; }
.auth-panel-logo span { font-weight: 700; font-size: 17px; color: rgba(255,255,255,.7); }

/* Left carousel */
.ap-carousel { flex: 1; display: flex; flex-direction: column; padding: 56px 0 32px; }
.ap-slides { flex: 1; position: relative; }
.ap-slide {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: center;
  opacity: 0; transform: translateY(20px);
  transition: opacity .65s cubic-bezier(.4,0,.2,1), transform .65s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
}
.ap-slide.active { opacity: 1; transform: translateY(0); pointer-events: auto; }
.ap-eyebrow {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; color: var(--teal); margin-bottom: 20px;
}
.ap-h {
  font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  font-size: clamp(32px, 3.2vw, 48px);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1.02;
  color: var(--white);
  margin-bottom: 20px;
}
.ap-h em { font-style: italic; color: var(--teal); }
.ap-p { font-size: 15px; color: rgba(255,255,255,.45); line-height: 1.7; max-width: 340px; }

/* Nav: dots + progress */
.ap-nav { display: flex; align-items: center; gap: 16px; margin-top: 0; }
.ap-dots { display: flex; gap: 7px; flex-shrink: 0; }
.ap-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,.2);
  border: none; padding: 0; cursor: pointer;
  transition: background .3s, width .3s;
}
.ap-dot.active { width: 20px; border-radius: 4px; background: var(--teal); }
.ap-progress { flex: 1; height: 2px; background: rgba(255,255,255,.1); border-radius: 2px; overflow: hidden; }
.ap-progress-fill { height: 100%; background: var(--teal); border-radius: 2px; width: 0; }

/* Bottom stat */
.ap-stat { display: flex; align-items: baseline; gap: 8px; margin-top: 36px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.07); }
.ap-stat-val { font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif; font-size: 22px; font-weight: 900; letter-spacing: -1px; color: var(--white); }
.ap-stat-lbl { font-size: 13px; color: rgba(255,255,255,.35); }

/* Right side */
.auth-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 32px;
  background: #F7F5F0;
  min-height: 100vh;
}
.auth-form-wrap {
  width: 100%;
  max-width: 400px;
  background: var(--white);
  border-radius: 20px;
  padding: 40px 40px 36px;
  box-shadow: 0 4px 6px rgba(0,0,0,.04), 0 20px 60px rgba(0,0,0,.08);
  border: 1px solid var(--border);
}
.auth-mini-logo {
  display: block;
  width: 36px; height: 36px;
  margin-bottom: 28px;
}
.auth-mini-logo img { width: 36px; height: 36px; border-radius: 10px; object-fit: contain; }
.auth-form-head { margin-bottom: 28px; }
.auth-form-title {
  font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  font-size: 28px; font-weight: 900;
  letter-spacing: -1px; color: var(--dark);
  margin-bottom: 6px;
}
.auth-form-sub { font-size: 14px; color: var(--gray); }
.auth-form-sub a { font-weight: 700; color: var(--teal); text-decoration: none; }
.auth-form-sub a:hover { text-decoration: underline; }
.alert { display: flex; align-items: center; gap: 10px; padding: 12px 14px; border-radius: 10px; margin-bottom: 20px; font-size: 13px; font-weight: 500; }
.alert-success { background: var(--teal-lt); border: 1px solid rgba(43,173,156,.25); color: var(--teal-dk); }
.alert-error   { background: #FDF2F2; border: 1px solid #F0C8C8; color: #B85450; }
.auth-form { display: flex; flex-direction: column; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field-row { display: flex; align-items: center; justify-content: space-between; }
.field label { font-size: 11px; font-weight: 700; color: var(--gray); text-transform: uppercase; letter-spacing: .8px; }
.field input {
  width: 100%; padding: 14px 16px;
  border-radius: 12px; font-size: 15px;
  font-family: inherit; outline: none;
  color: var(--dark); background: #F9F8F5;
  border: 1.5px solid var(--border);
  transition: border-color .15s, background .15s, box-shadow .15s;
  box-shadow: 0 1px 2px rgba(0,0,0,.04);
}
.field input:focus {
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(43,173,156,.12);
}
.field input::placeholder { color: #B8B4AC; }
.pw-wrap { position: relative; }
.pw-wrap input { padding-right: 46px; }
.pw-toggle { position: absolute; right: 13px; top: 50%; transform: translateY(-50%); background: none; border: none; padding: 0; color: var(--gray-l); display: flex; cursor: pointer; }
.forgot-btn { font-size: 12px; font-weight: 600; color: var(--teal); background: none; border: none; cursor: pointer; padding: 0; font-family: inherit; }
.strength-row { display: flex; align-items: center; gap: 8px; margin-top: 6px; }
.strength-bar { display: flex; gap: 4px; flex: 1; }
.strength-seg { height: 3px; flex: 1; border-radius: 3px; background: #DDD9D1; transition: background .2s; }
.strength-lbl { font-size: 11px; font-weight: 700; }
.submit-btn {
  width: 100%; padding: 15px;
  border-radius: 12px; font-weight: 700;
  font-size: 15px; font-family: inherit;
  background: var(--teal); color: var(--white);
  border: none; cursor: pointer;
  transition: background .15s, transform .1s, box-shadow .15s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  box-shadow: 0 4px 14px rgba(43,173,156,.35);
  margin-top: 4px;
}
.submit-btn:hover { background: var(--teal-dk); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(43,173,156,.45); }
.submit-btn:active { transform: translateY(0); }
.submit-btn:disabled { opacity: .7; cursor: not-allowed; transform: none; }
.auth-terms { font-size: 11px; text-align: center; color: var(--gray-l); margin-top: 4px; }
.auth-terms a { color: var(--teal); }

/* ── Dashboard ───────────────────────── */
.dash-nav { position: sticky; top: 0; z-index: 50; background: rgba(245,243,238,.92); backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); }
.dash-nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.dash-logo { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 16px; color: var(--dark); }
.dash-logo img { width: 32px; height: 32px; border-radius: 9px; object-fit: contain; }
.dash-user { display: flex; align-items: center; gap: 12px; }
.dash-avatar { width: 32px; height: 32px; border-radius: 50%; background: var(--teal); color: var(--white); font-size: 13px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.signout-btn { font-size: 12px; font-weight: 500; color: var(--gray-l); background: none; border: none; cursor: pointer; font-family: inherit; transition: color .15s; }
.signout-btn:hover { color: #B85450; }
.dash-body { max-width: 1120px; margin: 0 auto; padding: 40px 24px 80px; }
.dash-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; margin-bottom: 32px; flex-wrap: wrap; }
.dash-header h1 { font-size: 30px; font-weight: 800; color: var(--dark); margin-bottom: 4px; letter-spacing: -.5px; }
.dash-header p { font-size: 15px; color: var(--gray); }
.app-hint { display: flex; align-items: center; gap: 12px; padding: 14px 18px; background: var(--white); border: 1px solid var(--border); border-radius: 14px; }
.app-hint-icon { width: 36px; height: 36px; border-radius: 10px; background: var(--cream-l); display: flex; align-items: center; justify-content: center; font-size: 18px; }
.app-hint strong { font-size: 13px; color: var(--dark); display: block; }
.app-hint span { font-size: 12px; color: var(--gray-l); }
.tabs { display: flex; gap: 2px; padding: 4px; background: var(--white); border: 1px solid var(--border); border-radius: 14px; width: fit-content; margin-bottom: 28px; }
.tab-btn { padding: 8px 18px; border-radius: 10px; font-size: 13px; font-weight: 600; border: none; cursor: pointer; font-family: inherit; transition: all .15s; background: transparent; color: var(--gray); text-transform: capitalize; }
.tab-btn.active { background: var(--teal); color: var(--white); }
.tab-btn:not(.active):hover { background: var(--cream-l); }
#trips-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.trip-card { border-radius: 20px; overflow: hidden; background: var(--white); border: 1px solid var(--border); transition: box-shadow .2s, transform .2s; cursor: default; }
.trip-card:hover { box-shadow: 0 10px 36px rgba(0,0,0,.08); transform: translateY(-2px); }
.trip-cover { height: 130px; background: linear-gradient(135deg, var(--dark-m) 0%, var(--dark-2) 100%); position: relative; display: flex; align-items: flex-end; padding: 14px; }
.trip-cover-dots { position: absolute; inset: 0; opacity: .08; background-image: radial-gradient(circle, rgba(255,255,255,.5) 1px, transparent 1px); background-size: 20px 20px; }
.status-pill { padding: 4px 10px; border-radius: 100px; font-size: 11px; font-weight: 700; position: relative; z-index: 1; }
.s-ongoing  { background: #F0F7F0; color: #2D7D2D; }
.s-upcoming { background: #EFF4FB; color: #2D5FA0; }
.s-past     { background: #F2F2F2; color: #7A7A7A; }
.trip-body { padding: 18px 18px 16px; }
.trip-name { font-weight: 800; font-size: 15px; color: var(--dark); margin-bottom: 4px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.trip-dates { font-size: 12px; color: var(--gray); margin-bottom: 12px; }
.trip-meta { display: flex; align-items: center; justify-content: space-between; }
.trip-pills { display: flex; align-items: center; gap: 10px; }
.trip-pill  { font-size: 12px; color: var(--gray-l); }
.trip-arrow { width: 28px; height: 28px; border-radius: 50%; background: var(--cream-l); display: flex; align-items: center; justify-content: center; color: var(--dark-m); flex-shrink: 0; }
.empty-state { text-align: center; padding: 80px 20px; }
.empty-icon { width: 64px; height: 64px; border-radius: 18px; background: var(--white); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 28px; margin: 0 auto 16px; }
.empty-state h3 { font-weight: 700; font-size: 18px; color: var(--dark); margin-bottom: 8px; }
.empty-state p { font-size: 14px; color: var(--gray-l); }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 14px; margin-top: 36px; }
.stat-card { padding: 18px; border-radius: 16px; background: var(--white); border: 1px solid var(--border); }
.stat-icon { font-size: 20px; margin-bottom: 6px; }
.stat-val { font-size: 26px; font-weight: 800; color: var(--dark); }
.stat-lbl { font-size: 12px; color: var(--gray-l); }
.mobile-cta { margin-top: 32px; border-radius: 20px; padding: 24px 28px; background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dk) 100%); display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.mobile-cta-copy strong { font-weight: 700; font-size: 15px; color: var(--white); display: block; margin-bottom: 4px; }
.mobile-cta-copy span { font-size: 13px; color: rgba(255,255,255,.6); }
.mobile-cta-btns { display: flex; gap: 10px; }
.app-dl-btn { display: flex; align-items: center; gap: 7px; padding: 10px 18px; border-radius: 10px; font-size: 13px; font-weight: 700; transition: all .15s; }
.app-dl-w { background: var(--white); color: var(--teal); }
.app-dl-w:hover { opacity: .88; }
.app-dl-o { background: rgba(255,255,255,.12); color: rgba(255,255,255,.9); border: 1px solid rgba(255,255,255,.22); }
.app-dl-o:hover { background: rgba(255,255,255,.2); }
#loading-screen { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--cream-l); }

/* ── Animations ──────────────────────── */
.spinner { animation: spin .85s linear infinite; }
@keyframes spin    { to { transform: rotate(360deg); } }
@keyframes floatY  { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes pulseGlow { 0%,100% { opacity:.65; transform:scale(.96); } 50% { opacity:1; transform:scale(1.04); } }
@keyframes drift1  { 0%,100% { transform:translate(0,0) scale(1); } 50% { transform:translate(-24px,18px) scale(1.06); } }
@keyframes drift2  { 0%,100% { transform:translate(0,0) scale(1); } 50% { transform:translate(18px,-14px) scale(.94); } }
@keyframes hwFloatA {
  0%, 100% { transform: rotate(3deg) translateY(0px); }
  50%       { transform: rotate(3deg) translateY(-9px); }
}
@keyframes hwFloatB {
  0%, 100% { transform: rotate(-4deg) translateY(0px); }
  50%       { transform: rotate(-4deg) translateY(-7px); }
}
@keyframes hwFloatC {
  0%, 100% { transform: rotate(2deg) translateY(0px); }
  50%       { transform: rotate(2deg) translateY(-8px); }
}
@keyframes hwFloatD {
  0%, 100% { transform: rotate(-3deg) translateY(0px); }
  50%       { transform: rotate(-3deg) translateY(-7px); }
}
@keyframes floatCard1 {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}
@keyframes floatCard2 {
  0%, 100% { transform: rotate(3deg) translateY(0px); }
  50%       { transform: rotate(3deg) translateY(-10px); }
}
@keyframes floatCard3 {
  0%, 100% { transform: rotate(-3.5deg) translateY(0px); }
  50%       { transform: rotate(-3.5deg) translateY(-8px); }
}
@keyframes typingDot {
  0%, 80%, 100% { transform: scale(.6); opacity: .4; }
  40%            { transform: scale(1); opacity: 1; }
}
@keyframes slideInRight { from { opacity:0; transform:translateX(16px); } to { opacity:1; transform:translateX(0); } }

/* ── Responsive ──────────────────────── */
@media (max-width: 860px) {
  .wrap { padding: 0 28px; }
  .hero-inner { flex-direction: column; padding: 64px 0 110px; }
  .hero-copy { width: 100%; max-width: 100%; }
  .hero-ctas { flex-wrap: wrap; }
  .hero-carousel { width: 100%; }
  .app-window { max-width: 100%; }
  .aw-notif { display: none; }
  .feat-inner, .feat-flip { flex-direction: column; gap: 48px; }
  .feat-flip { flex-direction: column; }
  .stats-inner { gap: 8px; }
  .stat-s { padding: 12px 20px; }
  .stats-div { display: none; }
  .cta-final { padding: 80px 0 70px; }
  .cta-final-h2 { letter-spacing: -2px; }
  .footer-inner { flex-direction: column; text-align: center; gap: 12px; }
  .nav-links { display: none; }
}
@media (max-width: 480px) {
  .wrap { padding: 0 20px; }
  .hero-h1 { font-size: 40px; letter-spacing: -2px; }
  .cta-final-btns { flex-direction: column; align-items: center; gap: 14px; }
}
