
:root {
  --bg-color: #050505;
  --text-main: #ffffff;
  --text-sub: #71717a;
  --text-sub-light: #a1a1aa;
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.06);
  --glass-border-hover: rgba(255, 255, 255, 0.12);
  --glass-hover: rgba(255, 255, 255, 0.06);
  --pill-bg: rgba(255, 255, 255, 0.06);
  --pill-border: rgba(255, 255, 255, 0.08);
  --pill-text: #d4d4d8;
  --blob-1: #6d28d9;
  --blob-2: #be185d;
  --shadow-heavy: rgba(0, 0, 0, 0.5);
  --shadow-light: rgba(255, 255, 255, 0.06);
  --badge-bg: rgba(255, 255, 255, 0.08);
  --badge-border: rgba(255, 255, 255, 0.1);
  --logo-grad-start: #ffffff;
  --logo-grad-end: #71717a;
  --bento-hover-icon: #fff;
  --footer-text: rgba(255, 255, 255, 0.3);
  --btn-bg: #ffffff;
  --btn-fg: #000000;
  --btn-shadow: rgba(255, 255, 255, 0.12);
  --btn-hover-shadow: rgba(255, 255, 255, 0.2);
}
body.light-mode {
  --bg-color: #fafafa;
  --text-main: #09090b;
  --text-sub: #52525b;
  --text-sub-light: #71717a;
  --glass-bg: rgba(0, 0, 0, 0.02);
  --glass-border: rgba(0, 0, 0, 0.08);
  --glass-border-hover: rgba(0, 0, 0, 0.16);
  --glass-hover: rgba(0, 0, 0, 0.04);
  --pill-bg: rgba(0, 0, 0, 0.05);
  --pill-border: rgba(0, 0, 0, 0.1);
  --pill-text: #3f3f46;
  --blob-1: #a78bfa;
  --blob-2: #f472b6;
  --shadow-heavy: rgba(0, 0, 0, 0.1);
  --shadow-light: rgba(0, 0, 0, 0.05);
  --badge-bg: rgba(0, 0, 0, 0.05);
  --badge-border: rgba(0, 0, 0, 0.1);
  --logo-grad-start: #09090b;
  --logo-grad-end: #52525b;
  --bento-hover-icon: #000;
  --footer-text: rgba(0, 0, 0, 0.4);
  --btn-bg: #09090b;
  --btn-fg: #ffffff;
  --btn-shadow: rgba(0, 0, 0, 0.12);
  --btn-hover-shadow: rgba(0, 0, 0, 0.2);
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-color);
  color: var(--text-main);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  line-height: 1.5;
  user-select: none;
  -webkit-user-select: none;
}
body.no-transition,
body.no-transition *,
body.no-transition *::before,
body.no-transition *::after {
  transition: none !important;
}
img {
  -webkit-user-drag: none;
  pointer-events: none;
}
body::before,
body::after {
  content: '';
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  filter: blur(120px);
  opacity: 0.12;
}
body::before {
  width: 70vw;
  height: 70vw;
  background: var(--blob-1);
  top: -20%;
  right: -20%;
  animation: floatOrb 20s infinite alternate ease-in-out;
}
body::after {
  width: 50vw;
  height: 50vw;
  background: var(--blob-2);
  bottom: -15%;
  left: -10%;
  animation: floatOrb 25s infinite alternate-reverse ease-in-out;
}
@keyframes floatOrb {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-5%, 5%) scale(1.08);
  }
  100% {
    transform: translate(5%, -5%) scale(0.92);
  }
}
.glass-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 48px 48px 48px;
  background: linear-gradient(180deg, var(--bg-color) 20%, transparent 100%);
  pointer-events: none;
}
.glass-header > * {
  pointer-events: auto;
}
.logo-group {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo {
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -1px;
  background: linear-gradient(180deg, var(--logo-grad-start) 0%, var(--logo-grad-end) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.version-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 6px;
  background: var(--badge-bg);
  border: 1px solid var(--badge-border);
  color: var(--text-sub-light);
  letter-spacing: 0.5px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  pointer-events: auto;
}
.chrome-icon {
  flex-shrink: 0;
}
.btn-primary {
  background: var(--btn-bg);
  color: var(--btn-fg);
  box-shadow: 0 4px 14px var(--btn-shadow);
}
.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px var(--btn-hover-shadow);
}
.label-installed {
  font-weight: 500;
  font-size: 13px;
  color: var(--text-sub);
  background: var(--badge-bg);
  padding: 10px 20px;
  border-radius: 30px;
  border: 1px solid var(--badge-border);
}
.scroll-track {
  position: relative;
  width: 100%;
  height: 250vh;
}
.sticky-frame {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 56px;
  padding-top: 90px;
  overflow: hidden;
}
.text-area {
  position: relative;
  width: 100%;
  height: 260px;
    display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 24px;
  z-index: 2;
}
.text-block {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 24px;
  opacity: 0;
  transform: translateY(20px);
  transition: none;
  will-change: opacity, transform;
  pointer-events: none;
}
.text-block.active {
  opacity: 1;
  transform: translateY(0);
}
.hero-title {
  font-size: 64px;
  font-weight: 800;
  letter-spacing: -3px;
  line-height: 1.05;
  margin-bottom: 16px;
  background: linear-gradient(180deg, var(--logo-grad-start) 0%, var(--logo-grad-end) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-subtitle {
  font-size: 18px;
  color: var(--text-sub);
  max-width: 500px;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: -0.3px;
}
.text-block h2 {
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -3px;
  line-height: 1.1;
  margin-bottom: 14px;
  background: linear-gradient(180deg, var(--logo-grad-start) 0%, var(--logo-grad-end) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.text-block p {
  font-size: 18px;
  color: var(--text-sub);
  max-width: 560px;
  line-height: 1.6;
}
.pill-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 20px;
  background: var(--pill-bg);
  border: 1px solid var(--badge-border);
  font-size: 13px;
  font-weight: 500;
  color: var(--pill-text);
}
.pill img {
  width: 16px;
  height: 16px;
  border-radius: 3px;
}
.image-area {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0 24px;
  z-index: 1;
}
.image-stage {
  position: relative;
  width: 55vw;
  max-width: 800px;
  aspect-ratio: 16 / 9.2;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 24px 60px var(--shadow-heavy), 0 0 0 1px var(--shadow-light);
}
.stage-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  border-radius: 14px;
  will-change: opacity;
}
.stage-img:first-child {
  position: absolute;
}
#img-search,
#img-favourites {
  opacity: 0;
}
.bento-section {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 24px;
  position: relative;
  z-index: 10;
}
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.bento-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 36px;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1),
    opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1),
    background 0.3s, border-color 0.3s;
}
.bento-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.bento-card:hover {
  background: var(--pill-bg);
  border-color: var(--glass-border-hover);
  transform: translateY(-8px);
}
.bento-card:hover .bento-icon {
  transform: scale(1.1) rotate(5deg);
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  color: var(--bento-hover-icon);
}
.bento-icon {
  width: 32px;
  height: 32px;
  color: var(--text-sub);
  margin-bottom: 24px;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), color 0.3s;
}
.bento-icon svg {
  width: 100%;
  height: 100%;
}
.bento-card h3 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 10px;
  background: linear-gradient(135deg, var(--logo-grad-start) 0%, var(--logo-grad-end) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.bento-card p {
  font-size: 15px;
  color: var(--text-sub);
  line-height: 1.5;
}
footer {
  text-align: center;
  padding: 60px 24px;
  color: var(--footer-text);
  font-size: 13px;
  position: relative;
  z-index: 10;
  background: transparent;
  border: none;
}
@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .image-stage {
    width: 80vw;
  }
}
@media (max-width: 768px) {
  .hero-title {
    font-size: 44px;
  }
  .text-block h2 {
    font-size: 32px;
  }
  .bento-grid {
    grid-template-columns: 1fr;
  }
  .glass-header {
    padding: 14px 20px;
  }
  .image-stage {
    width: 92vw;
  }
  .sticky-frame {
    padding-top: 70px;
  }
}
.btn-feedback {
  color: var(--text-sub);
  text-decoration: none;
  font-size: 14px;
  border-bottom: 1px dotted var(--text-sub);
  transition: all 0.3s ease;
}
.btn-feedback:hover {
  color: var(--text-main);
  border-bottom: 1px solid var(--text-main);
}
.download-section {
  position: relative;
  width: 100%;
  padding: 100px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}
.download-container {
  max-width: 1000px;
  width: 100%;
  text-align: center;
  padding: 40px 0;
}
.download-container h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--logo-grad-start) 0%, var(--logo-grad-end) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.download-flair {
  font-size: 16px;
  color: var(--text-sub);
  max-width: 600px;
  margin: 0 auto 48px auto;
  line-height: 1.6;
}
.download-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.btn-store {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px;
  font-size: 14px;
}
.download-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 32px 24px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  text-decoration: none;
  box-shadow: 0 8px 32px var(--shadow-light);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.4s;
}
.light-mode .download-card {
  background: rgba(0, 0, 0, 0.02);
}
.download-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 12px 30px var(--shadow-heavy);
}
.light-mode .download-card:hover {
  background: rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.15);
}
.store-img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.download-card:hover .store-img {
  transform: scale(1.05);
}
.store-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.store-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-main);
}
.store-sub {
  font-size: 13px;
  color: var(--text-sub-light);
}
@media (max-width: 900px) {
  .download-grid {
    grid-template-columns: 1fr;
  }
}