/* ============================================================
   Aurea — Premium Landing Page
   Stack: HTML5, CSS3, Bootstrap 5, Vanilla JS
   Palette: white, dark gold (#B8860B), luxury gold (#D4AF37),
            warm yellow (#F4C430), cream, soft gray
   ============================================================ */

:root {
  --white: #ffffff;
  --cream: #fbf7ef;
  --cream-2: #f6efe1;
  --beige: #efe6d3;
  --gray-100: #f4f4f3;
  --gray-300: #d9d6cf;
  --gray-500: #8a8677;
  --ink: #1a1712;
  --ink-2: #2a2620;
  --gold-dark: #b8860b;
  --gold: #d4af37;
  --gold-warm: #f4c430;
  --gold-soft: rgba(212, 175, 55, 0.14);
  --shadow-sm: 0 6px 16px rgba(26, 23, 18, 0.06);
  --shadow-md: 0 18px 44px rgba(26, 23, 18, 0.08);
  --shadow-lg: 0 32px 80px rgba(26, 23, 18, 0.14);
  --radius-lg: 28px;
  --radius-xl: 40px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* -------------------- BASE -------------------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background: var(--gold); color: var(--ink); }

h1, h2, h3, h4, h5 {
  font-family: "Playfair Display", "Plus Jakarta Sans", serif;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.1;
}
p { color: var(--ink-2); }
a { color: inherit; text-decoration: none; transition: color .3s var(--ease); }
img { max-width: 100%; display: block; }

.text-gradient {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-warm));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* -------------------- EYEBROW / SECTION -------------------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 8px 14px; border-radius: 999px;
  background: var(--gold-soft); color: var(--gold-dark);
  border: 1px solid rgba(184, 134, 11, 0.18);
}
.eyebrow-light { background: rgba(255,255,255,0.12); color: var(--gold-warm); border-color: rgba(244,196,48,0.28); }
.eyebrow i { font-size: 11px; }

.section { padding: 120px 0; position: relative; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 72px; }
.section-title { font-size: clamp(2rem, 4vw, 3.25rem); font-weight: 600; margin: 20px 0 14px; }
.section-title em { font-style: italic; color: var(--gold-dark); }
.section-sub { font-size: 1.05rem; color: var(--gray-500); max-width: 560px; margin: 0 auto; }

/* -------------------- NAV -------------------- */
.nav-luxury {
  padding: 20px 0;
  background: transparent;
  transition: background .4s var(--ease), padding .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav-luxury.scrolled {
  background: rgba(251, 247, 239, 0.78);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  padding: 12px 0;
  box-shadow: var(--shadow-sm);
  border-bottom-color: rgba(26,23,18,0.06);
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 40px; height: 40px; border-radius: 12px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-warm));
  color: #fff; font-family: "Playfair Display", serif; font-weight: 700; font-size: 1.15rem;
  box-shadow: 0 8px 22px rgba(184,134,11,0.35);
  transition: transform .5s var(--ease);
}
.brand:hover .brand-mark { transform: rotate(-8deg) scale(1.05); }
.brand-name { font-family: "Playfair Display", serif; font-weight: 600; font-size: 1.4rem; }
.brand-lg .brand-mark { width: 46px; height: 46px; }

.navbar-nav .nav-link {
  color: var(--ink-2) !important; font-weight: 500; font-size: 0.94rem;
  position: relative; padding: 8px 2px !important;
}
.navbar-nav .nav-link::after {
  content: ""; position: absolute; left: 0; bottom: 2px; width: 0; height: 1px;
  background: var(--gold-dark); transition: width .35s var(--ease);
}
.navbar-nav .nav-link:hover::after { width: 100%; }
.navbar-nav .nav-link:hover { color: var(--gold-dark) !important; }

.navbar-toggler { border: none; padding: 8px; }
.navbar-toggler:focus { box-shadow: none; }
.toggler-line {
  display: block; width: 22px; height: 2px; background: var(--ink);
  margin: 4px 0; border-radius: 2px; transition: transform .3s var(--ease);
}

/* -------------------- BUTTONS -------------------- */
.btn-pill { border-radius: 999px; padding: 12px 26px; font-weight: 600; font-size: 0.95rem; letter-spacing: 0.01em; }
.btn-gold {
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold-warm), var(--gold), var(--gold-dark));
  border: none;
  box-shadow: 0 12px 30px rgba(184,134,11,0.35);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), filter .35s var(--ease);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 18px 40px rgba(184,134,11,0.5); filter: brightness(1.06); color: var(--ink); }

.store-btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 22px; border-radius: 18px;
  background: var(--ink); color: #fff;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease);
  box-shadow: 0 14px 30px rgba(26,23,18,0.18);
}
.store-btn:hover { color:#fff; transform: translateY(-3px); box-shadow: 0 22px 44px rgba(26,23,18,0.28); background: #000; }
.store-btn .store-ic { font-size: 1.7rem; line-height: 1; }
.store-btn .store-text { display: flex; flex-direction: column; text-align: left; line-height: 1.1; }
.store-btn .store-text small { font-size: 0.7rem; opacity: 0.75; letter-spacing: 0.04em; }
.store-btn .store-text strong { font-size: 1.05rem; font-weight: 600; }
.store-btn-dark { background: #fff; color: var(--ink); border-color: rgba(0,0,0,0.06); }
.store-btn-dark:hover { color: var(--ink); background: #fff; }
.store-btn-lg { padding: 16px 26px; border-radius: 22px; }

/* -------------------- HERO -------------------- */
.hero {
  position: relative; padding: 180px 0 120px;
  background: radial-gradient(1200px 600px at 90% -10%, rgba(244,196,48,0.24), transparent 60%),
              radial-gradient(900px 600px at -10% 30%, rgba(212,175,55,0.14), transparent 55%),
              var(--cream);
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.55; }
.blob-1 { width: 460px; height: 460px; background: radial-gradient(circle, var(--gold-warm), transparent 65%); top: -120px; right: -80px; animation: float 12s ease-in-out infinite; }
.blob-2 { width: 380px; height: 380px; background: radial-gradient(circle, var(--gold), transparent 65%); bottom: -140px; left: -80px; animation: float 14s ease-in-out infinite reverse; }
.grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/></svg>");
  opacity: 0.05; mix-blend-mode: multiply;
}

.display-hero { font-size: clamp(2.5rem, 5.4vw, 4.6rem); font-weight: 600; margin: 24px 0 20px; }
.display-hero em { font-style: italic; color: var(--gold-dark); }
.lead-luxury { font-size: 1.2rem; font-weight: 500; color: var(--ink); margin-bottom: 12px; }
.hero-desc { font-size: 1.05rem; color: var(--gray-500); max-width: 520px; margin-bottom: 34px; }

.cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 42px; }

.hero-meta { display: flex; align-items: center; gap: 16px; }
.avatars { display: inline-flex; }
.avatars img { width: 40px; height: 40px; border-radius: 50%; border: 3px solid var(--cream); object-fit: cover; margin-left: -12px; box-shadow: var(--shadow-sm); }
.avatars img:first-child { margin-left: 0; }
.stars { color: var(--gold-warm); font-size: 0.9rem; margin-bottom: 2px; }
.hero-meta small { color: var(--gray-500); font-size: 0.85rem; }

/* Hero visual */
.hero-visual { position: relative; }
.phone-stage { position: relative; height: 620px; display: flex; align-items: center; justify-content: center; }
.halo {
  position: absolute; width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(244,196,48,0.35), transparent 60%);
  filter: blur(30px);
  animation: pulse 6s ease-in-out infinite;
}
.halo-sm { width: 340px; height: 340px; }

.phone {
  position: absolute; width: 260px; height: 540px;
  border-radius: 42px; overflow: hidden;
  background: #111;
  box-shadow: 0 40px 90px rgba(26,23,18,0.35), inset 0 0 0 2px rgba(255,255,255,0.06);
  border: 8px solid #1c1a16;
}
.phone img { width: 100%; height: 100%; object-fit: cover; }
.phone-back { transform: translate(-70px, 20px) rotate(-8deg); opacity: 0.9; }
.phone-front { transform: translate(60px, -10px) rotate(4deg); animation: floatY 6s ease-in-out infinite; }

.float-chip {
  position: absolute; padding: 10px 16px; border-radius: 999px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.6);
  font-size: 0.85rem; font-weight: 600; color: var(--ink);
  box-shadow: var(--shadow-md);
  display: inline-flex; align-items: center; gap: 8px;
}
.float-chip i { color: var(--gold-dark); }
.chip-1 { top: 12%; left: -10px; animation: floatY 5s ease-in-out infinite; }
.chip-2 { bottom: 22%; right: -10px; animation: floatY 6s ease-in-out infinite reverse; }
.chip-3 { top: 46%; right: 20px; animation: floatY 7s ease-in-out infinite; }

/* -------------------- LOGO STRIP -------------------- */
.logo-strip { padding: 44px 0; border-top: 1px solid rgba(26,23,18,0.06); border-bottom: 1px solid rgba(26,23,18,0.06); background: var(--white); }
.strip-caption { text-align: center; font-size: 0.75rem; letter-spacing: 0.24em; color: var(--gray-500); text-transform: uppercase; margin-bottom: 22px; }
.strip-row { display: flex; flex-wrap: wrap; justify-content: space-around; gap: 32px; align-items: center; }
.strip-row span {
  font-family: "Playfair Display", serif; font-weight: 600;
  color: var(--gray-500); font-size: 1.2rem;
  letter-spacing: 0.06em; opacity: 0.7; transition: opacity .3s var(--ease), color .3s var(--ease);
}
.strip-row span:hover { opacity: 1; color: var(--gold-dark); }

/* -------------------- FEATURES -------------------- */
.features { background: var(--cream); }
.feature-card {
  position: relative; padding: 36px 32px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
}
.feature-card::before {
  content: ""; position: absolute; inset: 0; border-radius: var(--radius-lg); padding: 1px;
  background: linear-gradient(135deg, rgba(244,196,48,0.7), rgba(184,134,11,0));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity .5s var(--ease);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.feature-card:hover::before { opacity: 1; }
.fc-ic {
  width: 56px; height: 56px; border-radius: 16px;
  display: grid; place-items: center; margin-bottom: 22px;
  background: linear-gradient(135deg, var(--gold-warm), var(--gold-dark));
  color: #fff; font-size: 1.35rem;
  box-shadow: 0 10px 24px rgba(184,134,11,0.28);
}
.feature-card h3 { font-size: 1.35rem; font-weight: 600; margin-bottom: 10px; }
.feature-card p { color: var(--gray-500); font-size: 0.98rem; margin: 0; }

/* -------------------- SCREENSHOTS -------------------- */
.screenshots { background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%); }
.ss-track {
  display: flex; gap: 26px; overflow-x: auto; padding: 20px 6px 40px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.ss-track::-webkit-scrollbar { display: none; }
.ss-card {
  flex: 0 0 260px; height: 520px;
  border-radius: 34px; overflow: hidden;
  background: #111;
  border: 8px solid #1c1a16;
  box-shadow: var(--shadow-lg);
  scroll-snap-align: center;
  transition: transform .6s var(--ease), box-shadow .6s var(--ease);
}
.ss-card:hover { transform: translateY(-8px) scale(1.02); }
.ss-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.ss-card:hover img { transform: scale(1.08); }

/* -------------------- WHY -------------------- */
.why { background: var(--white); }
.why-card {
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--cream) 0%, #fff 100%);
  border: 1px solid rgba(184,134,11,0.08);
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.why-card i {
  font-size: 1.6rem; color: var(--gold-dark);
  background: var(--gold-soft); width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center; margin-bottom: 18px;
}
.why-card h4 { font-size: 1.2rem; font-weight: 600; margin-bottom: 8px; }
.why-card p { color: var(--gray-500); margin: 0; }

/* -------------------- STATS -------------------- */
.stats { background: var(--cream); padding: 60px 0; }
.stats-panel {
  border-radius: var(--radius-xl);
  padding: 60px 40px;
  background: linear-gradient(135deg, #1a1712 0%, #2a2620 100%);
  color: #fff;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.stats-panel::before {
  content: ""; position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(244,196,48,0.25), transparent 60%);
}
.stat-num {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 600;
  background: linear-gradient(135deg, var(--gold-warm), var(--gold));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 6px;
}
.stat-lbl { color: rgba(255,255,255,0.7); font-size: 0.9rem; letter-spacing: 0.06em; text-transform: uppercase; }

/* -------------------- TESTIMONIALS -------------------- */
.testimonials { background: var(--white); }
.t-card {
  padding: 34px 30px;
  background: var(--cream);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(184,134,11,0.08);
  height: 100%;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.t-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.t-stars { color: var(--gold-warm); margin-bottom: 14px; font-size: 0.9rem; }
.t-card p { font-family: "Playfair Display", serif; font-style: italic; font-size: 1.15rem; color: var(--ink); line-height: 1.5; margin-bottom: 24px; }
.t-who { display: flex; align-items: center; gap: 14px; }
.t-who img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold-warm); }
.t-who strong { display: block; font-family: "Plus Jakarta Sans", sans-serif; font-weight: 600; font-size: 0.98rem; color: var(--ink); }
.t-who small { color: var(--gray-500); font-size: 0.82rem; }

/* -------------------- FAQ -------------------- */
.faq { background: linear-gradient(180deg, #fff 0%, var(--cream) 100%); }
.accordion-luxury .accordion-item {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(184,134,11,0.12) !important;
  border-radius: 20px !important;
  margin-bottom: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.accordion-luxury .accordion-button {
  padding: 22px 26px; font-weight: 600; font-size: 1.05rem;
  background: transparent; color: var(--ink); box-shadow: none !important;
  border-radius: 20px !important;
}
.accordion-luxury .accordion-button:not(.collapsed) { background: transparent; color: var(--gold-dark); }
.accordion-luxury .accordion-button::after {
  background-image: none; content: "\2b"; font-family: "Font Awesome 6 Free"; font-weight: 900;
  color: var(--gold-dark); font-size: 1rem; transition: transform .3s var(--ease);
}
.accordion-luxury .accordion-button:not(.collapsed)::after { content: "\f068"; transform: rotate(0); }
.accordion-luxury .accordion-body { padding: 4px 26px 26px; color: var(--gray-500); }

/* -------------------- DOWNLOAD CTA -------------------- */
.download-cta { background: var(--cream); }
.cta-panel {
  position: relative; overflow: hidden;
  border-radius: var(--radius-xl);
  padding: 80px 60px;
  background: linear-gradient(135deg, #1a1712 0%, #2a2620 55%, #b8860b 130%);
  color: #fff;
  box-shadow: var(--shadow-lg);
}
.cta-panel::before {
  content: ""; position: absolute; top: -180px; left: -180px;
  width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(244,196,48,0.3), transparent 60%);
}
.cta-title { font-family: "Playfair Display", serif; font-weight: 600; font-size: clamp(2rem, 4vw, 3.4rem); color: #fff; margin: 22px 0 16px; line-height: 1.05; }
.cta-desc { color: rgba(255,255,255,0.78); font-size: 1.08rem; max-width: 520px; margin-bottom: 32px; }
.cta-phone { position: relative; display: inline-block; }
.cta-phone img {
  width: 240px; height: 500px; object-fit: cover;
  border-radius: 34px; border: 8px solid #1c1a16;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
  position: relative; z-index: 2;
  animation: floatY 6s ease-in-out infinite;
}

/* -------------------- FOOTER -------------------- */
.footer { background: #0f0d0a; color: rgba(255,255,255,0.7); padding: 100px 0 40px; }
.footer h5 { color: #fff; font-family: "Plus Jakarta Sans", sans-serif; font-weight: 600; font-size: 0.98rem; margin-bottom: 18px; letter-spacing: 0.04em; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 10px; }
.footer ul li a { color: rgba(255,255,255,0.6); font-size: 0.95rem; transition: color .3s var(--ease); }
.footer ul li a:hover { color: var(--gold-warm); }
.footer-desc { color: rgba(255,255,255,0.6); margin: 18px 0 24px; max-width: 320px; }
.footer .brand-name { color: #fff; }
.footer .brand-mark { box-shadow: 0 8px 22px rgba(184,134,11,0.45); }

.socials { display: flex; gap: 12px; }
.socials a {
  width: 40px; height: 40px; border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.06); color: #fff;
  transition: background .3s var(--ease), transform .3s var(--ease), color .3s var(--ease);
}
.socials a:hover { background: var(--gold-dark); color: #fff; transform: translateY(-3px); }

.news { position: relative; display: flex; flex-wrap: wrap; gap: 10px; }
.news input {
  flex: 1 1 200px;
  padding: 12px 18px; border-radius: 999px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  color: #fff; font-size: 0.94rem; outline: none;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.news input::placeholder { color: rgba(255,255,255,0.4); }
.news input:focus { border-color: var(--gold-warm); background: rgba(255,255,255,0.1); }
.news-ok { display: none; width: 100%; color: var(--gold-warm); font-size: 0.86rem; margin-top: 6px; }
.news-ok.show { display: block; animation: fadeUp .5s var(--ease); }
.tiny { font-size: 0.86rem; color: rgba(255,255,255,0.5); margin-bottom: 14px; }

.footer hr { border-color: rgba(255,255,255,0.08); margin: 60px 0 24px; }
.foot-row { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px; color: rgba(255,255,255,0.5); font-size: 0.86rem; }
.foot-links { display: flex; gap: 22px; }
.foot-links a { color: rgba(255,255,255,0.55); }
.foot-links a:hover { color: var(--gold-warm); }

/* -------------------- ANIMATIONS -------------------- */
@keyframes float { 0%,100% { transform: translate(0,0); } 50% { transform: translate(30px, -25px); } }
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes pulse { 0%,100% { opacity: 0.85; transform: scale(1); } 50% { opacity: 1; transform: scale(1.06); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }

.reveal, .reveal-right { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal-right { transform: translateX(28px); }
.reveal.is-visible, .reveal-right.is-visible { opacity: 1; transform: translate(0,0); }

/* -------------------- RESPONSIVE -------------------- */
@media (max-width: 991.98px) {
  .navbar-nav { padding: 20px 0; gap: 6px !important; }
  .navbar-nav .nav-link { padding: 8px 0 !important; }
  .nav-luxury { background: rgba(251,247,239,0.92); backdrop-filter: blur(14px); }
  .nav-luxury.scrolled { background: rgba(251,247,239,0.96); }
  .hero { padding: 140px 0 80px; }
  .hero-copy { text-align: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .cta-row { justify-content: center; }
  .hero-meta { justify-content: center; }
  .phone-stage { height: 520px; margin-top: 40px; }
  .halo { width: 380px; height: 380px; }
  .cta-panel { padding: 60px 30px; text-align: center; }
  .cta-panel .cta-row { justify-content: center; }
  .section { padding: 80px 0; }
  .section-head { margin-bottom: 48px; }
}

@media (max-width: 575.98px) {
  .phone { width: 220px; height: 460px; }
  .phone-back { transform: translate(-50px, 16px) rotate(-8deg); }
  .phone-front { transform: translate(50px, -8px) rotate(4deg); }
  .ss-card { flex: 0 0 220px; height: 460px; }
  .stats-panel { padding: 40px 24px; }
  .display-hero { font-size: 2.4rem; }
  .float-chip { font-size: 0.75rem; padding: 8px 12px; }
  .chip-3 { display: none; }
}