@charset "UTF-8";

/* =========================================================================
   一耽女孩 高级浅色主题设计系统
   ========================================================================= */

:root {
  /* Colors - Light Theme based on Logo (Deep Blue & Vibrant Yellow) */
  --bg-color: #F8FAFC;
  /* Light gray background */
  --bg-surface: #FFFFFF;
  /* Pure white for cards */
  --bg-surface-elevated: #FFFFFF;
  --border-color: #E2E8F0;
  --border-glow: rgba(18, 94, 143, 0.15);

  --text-primary: #0F172A;
  /* Deep slate / Almost black */
  --text-secondary: #475569;
  /* Slate gray */
  --text-muted: #94A3B8;
  /* Light slate */

  --accent-primary: #115E8F;
  /* Logo Deep Blue */
  --accent-secondary: #FFD200;
  /* Logo Vibrant Yellow */
  --accent-purple: #0EA5E9;
  /* Sky blue for secondary highlights */

  --gradient-accent: linear-gradient(135deg, #115E8F 0%, #1E88E5 100%);
  --gradient-purple: linear-gradient(135deg, #FFD200 0%, #F59E0B 100%);
  --glow-accent: rgba(17, 94, 143, 0.15);
  --glow-yellow: rgba(255, 210, 0, 0.3);

  /* Typography */
  --font-family: 'Inter', 'Outfit', 'PingFang SC', 'Microsoft YaHei', sans-serif;

  /* Spacing & Radii */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --max-width: 1280px;
}

/* =========================================================================
   Reset & Base
   ========================================================================= */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

::selection {
  background: var(--accent-secondary);
  color: #000;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul,
ol {
  list-style: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

/* =========================================================================
   Typography Utilities
   ========================================================================= */

h1,
h2,
h3,
h4,
h5 {
  line-height: 1.2;
  font-weight: 700;
  color: var(--text-primary);
}

.text-gradient {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-purple {
  background: var(--gradient-purple);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Yellow gradient needed for dark backgrounds (like the CTA banner) */
.text-gradient-yellow {
  background: linear-gradient(135deg, #FFD200 0%, #FFF5A0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: rgba(17, 94, 143, 0.08); /* Light blue bg */
  color: var(--accent-primary);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.section-desc {
  font-size: 1.25rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 700px;
}
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 16px;
  border: 1px solid rgba(17, 94, 143, 0.15);
}

.section-title {
  font-size: 2.75rem;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.section-desc {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: 48px;
}

/* =========================================================================
   Layout & Containers
   ========================================================================= */

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.grid {
  display: grid;
}

.section-padding {
  padding: 80px 0;
}

/* =========================================================================
   Components
   ========================================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
}

/* Primary Button (Yellow) */
.btn-primary {
  background: var(--gradient-purple);
  /* Yellow gradient */
  color: #0F172A;
  box-shadow: 0 8px 20px var(--glow-yellow);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 30px rgba(255, 210, 0, 0.5);
}

/* Blue Button */
.btn-blue {
  background: var(--gradient-accent);
  /* Deep blue */
  color: #FFFFFF;
  box-shadow: 0 8px 20px var(--glow-accent);
}

.btn-blue:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 30px rgba(17, 94, 143, 0.3);
}

.btn-secondary {
  background: rgba(17, 94, 143, 0.05);
  color: var(--accent-primary);
  border: 1px solid rgba(17, 94, 143, 0.15);
}

.btn-secondary:hover {
  background: rgba(17, 94, 143, 0.1);
  border-color: rgba(17, 94, 143, 0.3);
}

/* =========================================================================
   Header & Navigation
   ========================================================================= */

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
  z-index: 1000;
}

header.scrolled {
  border-bottom-color: var(--border-color);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.nav-content {
  height: 100%;
}

.logo-group {
  gap: 12px;
}

.logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
}

/* Adjusted for the logo */
.brand-name {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--accent-primary);
}

.nav-links {
  gap: 32px;
}

.nav-links a {
  color: var(--text-secondary);
  font-size: 1rem;
  font-weight: 600;
}

.nav-links a:hover {
  color: var(--accent-primary);
}

.nav-links a.active {
  color: var(--accent-primary);
}

/* =========================================================================
   Hero Section
   ========================================================================= */

.hero {
  position: relative;
  padding: 40px 0;
  overflow: hidden;
  min-height: auto;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  overflow: hidden;
  background: radial-gradient(circle at top right, rgba(255, 210, 0, 0.1) 0%, transparent 40%),
    radial-gradient(circle at bottom left, rgba(17, 94, 143, 0.05) 0%, transparent 40%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-content h1 {
  font-size: 4.5rem;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.hero-content p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  max-width: 90%;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  perspective: 1000px;
}

.mockup-container {
  position: relative;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  transform: rotateY(0deg) rotateX(0deg);
  transform-style: preserve-3d;
  animation: float 6s ease-in-out infinite;
}

.mockup-phone {
  background: #FFFFFF;
  border-radius: 40px;
  padding: 10px;
  border: 1px solid #E2E8F0;
  box-shadow: 0 30px 60px rgba(17, 94, 143, 0.15), inset 0 0 0 2px rgba(0, 0, 0, 0.02);
  position: relative;
  z-index: 2;
  overflow: hidden;
}

/* Add a dynamic shadow below phone */
.mockup-shadow {
  position: absolute;
  bottom: -30px;
  left: 10%;
  width: 80%;
  height: 20px;
  background: rgba(17, 94, 143, 0.2);
  filter: blur(20px);
  border-radius: 50%;
}

.mockup-screen {
  background: #F8FAFC;
  border-radius: 30px;
  height: 650px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
}

.mockup-header {
  padding: 20px;
  background: #FFF;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
  z-index: 10;
}

.mockup-header .line {
  height: 8px;
  background: #E2E8F0;
  border-radius: 4px;
}

.mockup-header .l-short {
  width: 40px;
}

.mockup-header .l-long {
  width: 100px;
}

.mockup-body {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #F8FAFC;
  overflow-y: auto;
}

.mockup-version-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--accent-primary);
  margin-bottom: 8px;
  text-align: left;
}

.mockup-version-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.version-item {
  background: #FFF;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
  transition: all 0.2s;
}

.version-item:hover {
  transform: scale(1.02);
  border-color: var(--accent-primary);
  box-shadow: 0 8px 20px rgba(17, 94, 143, 0.08);
}

.version-logo {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
}

.version-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  line-height: 1.5;
  text-align: left;
  overflow: hidden;
}

.v-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-primary);
}

.v-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin: 4px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.v-date {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.v-dl {
  background: var(--accent-secondary);
  color: #000;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  white-space: nowrap;
  align-self: center;
}

/* =========================================================================
   Stats Section
   ========================================================================= */

.stats-bar {
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  background: #FFFFFF;
  padding: 50px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item h4 {
  font-size: 2.75rem;
  color: var(--accent-primary);
  margin-bottom: 8px;
  font-weight: 800;
}

.stat-item p {
  color: var(--text-secondary);
  font-size: 1rem;
  font-weight: 600;
}

/* =========================================================================
   Bento Grid Features
   ========================================================================= */

.bento-section {
  position: relative;
  background: #F8FAFC;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(280px, auto);
  gap: 24px;
}

.bento-card {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 40px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.bento-card:hover {
  border-color: rgba(17, 94, 143, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(17, 94, 143, 0.08);
}

.bento-col-2 {
  grid-column: span 2;
}

.bento-col-3 {
  grid-column: span 3;
}

.bento-seo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.bento-row-2 {
  grid-row: span 2;
}

/* Distinctive Dark Blue Card Alternative inside the light grid */
.bento-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: rgba(17, 94, 143, 0.08);
  border: 1px solid rgba(17, 94, 143, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-primary);
  margin-bottom: 32px;
}

.bento-icon svg {
  width: 32px;
  height: 32px;
}

.bento-card h3 {
  font-size: 1.75rem;
  margin-bottom: 16px;
  z-index: 2;
}

.bento-card p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.7;
  z-index: 2;
}

/* Visual Elements inside Bento Cards */
.bento-visual {
  position: absolute;
  right: -5%;
  bottom: -5%;
  width: 60%;
  height: 60%;
  opacity: 0.05;
  z-index: 1;
  transition: all 0.5s ease;
  color: var(--accent-primary);
}

.bento-card:hover .bento-visual {
  opacity: 0.15;
  transform: scale(1.1);
}

.bento-glow-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at right bottom, rgba(17, 94, 143, 0.05), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.bento-card:hover .bento-glow-bg {
  opacity: 1;
}

/* =========================================================================
   Showcase / UI Previews
   ========================================================================= */

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 120px;
}

.showcase-grid.reverse {
  direction: rtl;
}

.showcase-grid.reverse>* {
  direction: ltr;
}

.showcase-text ul {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.showcase-text li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.showcase-text li svg {
  width: 28px;
  height: 28px;
  color: var(--accent-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.showcase-image {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.comic-grid-mockup {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.comic-mock {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: #E2E8F0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.comic-mock::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4) 0%, transparent 50%);
}

.comic-mock.c1 {
  background-image: url('../img/1.png');
  background-size: cover;
  background-position: center;
}

.comic-mock.c2 {
  background-image: url('../img/2.png');
  background-size: cover;
  background-position: center;
}

.comic-mock.c3 {
  background-image: url('../img/3.png');
  background-size: cover;
  background-position: center;
}

.comic-mock.c4 {
  background-image: url('../img/4.png');
  background-size: cover;
  background-position: center;
}

.comic-mock.c5 {
  background-image: url('../img/5.png');
  background-size: cover;
  background-position: center;
}

.comic-mock.c6 {
  background-image: url('../img/6.png');
  background-size: cover;
  background-position: center;
}

/* =========================================================================
   Categories / Tags Marquee
   ========================================================================= */

.marquee-container {
  overflow: hidden;
  width: 100%;
  padding: 40px 0;
  background: #FFFFFF;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  position: relative;
}

.marquee-container::before,
.marquee-container::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 150px;
  z-index: 2;
  pointer-events: none;
}

.marquee-container::before {
  left: 0;
  background: linear-gradient(to right, #FFFFFF, transparent);
}

.marquee-container::after {
  right: 0;
  background: linear-gradient(to left, #FFFFFF, transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 40s linear infinite;
}

.marquee-list {
  display: flex;
  gap: 24px;
  padding-right: 24px;
  /* Essential gap between groups */
}

.marquee-item {
  padding: 16px 32px;
  background: rgba(17, 94, 143, 0.03);
  border: 1px solid rgba(17, 94, 143, 0.1);
  border-radius: var(--radius-full);
  font-size: 1.1rem;
  font-weight: 700;
  white-space: nowrap;
  color: var(--accent-primary);
  transition: all 0.3s;
}

.marquee-item:hover {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
  color: #FFF;
  box-shadow: 0 4px 15px rgba(17, 94, 143, 0.3);
}

/* =========================================================================
   FAQ Accordion
   ========================================================================= */

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-color);
  padding: 24px 0;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: inherit;
}

.faq-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
  color: var(--text-secondary);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--accent-primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding-top: 16px;
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* =========================================================================
   Testimonials
   ========================================================================= */

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  padding: 40px;
  border-radius: var(--radius-xl);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.review-stars {
  color: #F59E0B;
  margin-bottom: 20px;
}

.review-stars svg {
  width: 24px;
  height: 24px;
  display: inline-block;
  fill: currentColor;
}

.review-text {
  font-size: 1.15rem;
  color: var(--text-primary);
  margin-bottom: 32px;
  font-style: italic;
  line-height: 1.7;
}

.review-user {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
}

.ru-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #E2E8F0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: var(--accent-primary);
  font-size: 1.2rem;
}

.ru-info h5 {
  font-size: 1.1rem;
  color: var(--text-primary);
}

.ru-info p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* =========================================================================
   Download Center (Bottom)
   ========================================================================= */

/* =========================================================================
   Download Center (Minimalist Island)
   ========================================================================= */

.download-island {
  background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-2xl);
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(17, 94, 143, 0.05);
}

.download-island::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 4px;
  background: var(--gradient-accent);
  opacity: 0.8;
}

.island-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.island-btn {
  padding: 24px 60px;
  font-size: 1.25rem;
  border-radius: var(--radius-full);
  margin-bottom: 48px;
  width: auto;
  min-width: 320px;
}

.island-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(17, 94, 143, 0.08);
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.dot.primary {
  background: var(--accent-primary);
  box-shadow: 0 0 10px var(--glow-blue);
}

.dot.success {
  background: #10B981;
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.4);
}

.dot.accent {
  background: #F59E0B;
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.4);
}

/* =========================================================================
   Marquee Ticker (Seamless & Refined)
   ========================================================================= */

.marquee-container {
  padding: 8px 0;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-color);
  margin-top: 72px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 40s linear infinite;
  will-change: transform;
}

.marquee-list {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-right: 24px;
  flex-shrink: 0;
}

.marquee-item {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: rgba(17, 94, 143, 0.04);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  border: 1px solid rgba(17, 94, 143, 0.08);
}

/* =========================================================================
   Footer
   ========================================================================= */

footer {
  background: #FFFFFF;
  padding: 80px 0 40px;
  border-top: 1px solid var(--border-color);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand p {
  color: var(--text-secondary);
  margin-top: 24px;
  font-size: 1rem;
  max-width: 320px;
}

.footer-col h4 {
  margin-bottom: 24px;
  font-size: 1.15rem;
  color: var(--text-primary);
  font-weight: 800;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-col a {
  color: var(--text-secondary);
  font-weight: 500;
}

.footer-col a:hover {
  color: var(--accent-primary);
}

.download-app-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  background: #F8FAFC;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  transition: all 0.3s;
}

.download-app-btn:hover {
  background: rgba(17, 94, 143, 0.05);
  border-color: var(--accent-primary);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(17, 94, 143, 0.1);
}

.download-app-btn svg {
  width: 36px;
  height: 36px;
  color: var(--accent-primary);
}

.dab-text span {
  display: block;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.dab-text strong {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-primary);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.copyright {
  font-size: 0.8rem;
  opacity: 0.8;
}

/* =========================================================================
   Subpages Text Content Layout
   ========================================================================= */

.page-header {
  padding: 160px 0 60px;
  background: #F8FAFC;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 60px;
}

.page-title {
  font-size: 3.5rem;
  margin-bottom: 16px;
  text-align: center;
  color: var(--accent-primary);
}

.content-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding-bottom: 100px;
}

.content-wrap h2 {
  margin-top: 48px;
  margin-bottom: 24px;
  font-size: 2rem;
  color: var(--text-primary);
  border-bottom: 2px solid rgba(17, 94, 143, 0.1);
  padding-bottom: 16px;
}

.content-wrap p {
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.8;
  font-size: 1.1rem;
}

.content-wrap ul {
  margin-bottom: 32px;
  padding-left: 24px;
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.content-wrap li {
  margin-bottom: 12px;
  list-style: disc;
}

/* =========================================================================
   Animations
   ========================================================================= */

@keyframes float {
  0% {
    transform: translateY(0px) rotateY(0deg) rotateX(0deg);
  }

  50% {
    transform: translateY(-20px) rotateY(0deg) rotateX(0deg);
  }

  100% {
    transform: translateY(0px) rotateY(0deg) rotateX(0deg);
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.reveal.active {
  opacity: 1;
  transform: none;
}

/* =========================================================================
   Responsive
   ========================================================================= */

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-content p {
    margin: 0 auto 40px;
  }

  .hero-actions {
    justify-content: center;
  }

  .mockup-container {
    margin-top: 40px;
  }

  .bento-grid {
    grid-template-columns: 1fr 1fr;
  }

  .bento-col-2,
  .bento-col-3 {
    grid-column: span 2;
  }

  .bento-seo-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .bento-row-2 {
    grid-row: span 1;
  }

  .showcase-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .showcase-grid.reverse {
    direction: ltr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .review-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 3rem;
  }

  .section-title {
    font-size: 2.25rem;
  }

  .nav-links {
    display: none;
  }

  .bento-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .bento-col-2,
  .bento-col-3 {
    grid-column: span 1;
  }

  .cta-banner {
    padding: 60px 30px;
  }

  .cta-banner h2 {
    font-size: 2.25rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .page-title {
    font-size: 2.5rem;
  }

  .island-meta {
    flex-direction: column;
    gap: 16px;
    padding-top: 24px;
    align-items: center;
  }

  .island-btn {
    width: 100%;
    min-width: unset;
    max-width: 340px;
    padding: 20px 30px;
    font-size: 1.15rem;
  }
}