:root {
  --bg: #f0f4fe;
  --surface: #ffffff;
  --text: #0a1628;
  --muted: #566b8a;
  --line: rgba(10, 22, 40, 0.10);
  --brand: #0f6efd;
  --brand-2: #00a77f;
  --danger: #d93f57;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 20px 48px rgba(10, 22, 40, 0.10);
  --shadow-lg: 0 32px 64px rgba(10, 22, 40, 0.14);
  --glass: rgba(255, 255, 255, 0.78);
  --glass-border: rgba(255, 255, 255, 0.35);
  --font-display: "Sora", sans-serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --theme-btn: #ffffff;
  --theme-btn-border: rgba(10, 22, 40, 0.10);
  --nav-bg: rgb(240 244 254 / 88%);
  --nav-border: rgba(10, 22, 40, 0.06);
  --compare-bg: #ffffff;
  --compare-border: rgba(226, 232, 240, 0.8);
  --compare-header-bg: linear-gradient(135deg, rgba(15, 110, 253, 0.05) 0%, rgba(248, 250, 252, 1) 100%);
  --compare-row-hover: rgba(248, 250, 252, 0.5);
  --compare-feature-label-bg: rgba(248, 250, 252, 0.8);
  --compare-feature-label-color: #475569;
  --compare-app-info-color: #0f172a;
}

[data-theme="dark"] {
  --bg: #070b14;
  --surface: #0d1425;
  --text: #e8edf5;
  --muted: #8899b0;
  --line: rgba(255, 255, 255, 0.08);
  --brand: #4a9eff;
  --brand-2: #34d399;
  --danger: #fb7185;
  --shadow: 0 20px 48px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 32px 64px rgba(0, 0, 0, 0.5);
  --glass: rgba(13, 20, 37, 0.78);
  --glass-border: rgba(255, 255, 255, 0.08);
  --theme-btn: #0d1425;
  --theme-btn-border: rgba(255, 255, 255, 0.12);
  --nav-bg: rgb(7 11 20 / 88%);
  --nav-border: rgba(255, 255, 255, 0.06);
  --compare-bg: #0d1425;
  --compare-border: rgba(255, 255, 255, 0.08);
  --compare-header-bg: linear-gradient(135deg, rgba(74, 158, 255, 0.08) 0%, rgba(13, 20, 37, 1) 100%);
  --compare-row-hover: rgba(255, 255, 255, 0.03);
  --compare-feature-label-bg: rgba(255, 255, 255, 0.04);
  --compare-feature-label-color: #a0b0c8;
  --compare-app-info-color: #e8edf5;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

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

.page-bg {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(
      circle at 12% 10%,
      rgba(15, 110, 253, 0.15) 0,
      rgba(15, 110, 253, 0) 40%
    ),
    radial-gradient(
      circle at 88% 5%,
      rgba(0, 167, 127, 0.12) 0,
      rgba(0, 167, 127, 0) 38%
    ),
    radial-gradient(
      circle at 50% 90%,
      rgba(15, 110, 253, 0.06) 0,
      rgba(15, 110, 253, 0) 30%
    ),
    linear-gradient(180deg, #eef3fc 0%, #e8eef9 50%, #e2eaf8 100%);
  z-index: -1;
}

[data-theme="dark"] .page-bg {
  background:
    radial-gradient(
      circle at 12% 10%,
      rgba(74, 158, 255, 0.12) 0,
      rgba(74, 158, 255, 0) 40%
    ),
    radial-gradient(
      circle at 88% 5%,
      rgba(52, 211, 153, 0.10) 0,
      rgba(52, 211, 153, 0) 38%
    ),
    radial-gradient(
      circle at 50% 90%,
      rgba(74, 158, 255, 0.05) 0,
      rgba(74, 158, 255, 0) 30%
    ),
    linear-gradient(180deg, #070b14 0%, #0a1020 50%, #0d1425 100%);
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: var(--nav-bg);
  border-bottom: 1px solid var(--nav-border);
}

.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

.brand img {
  border-radius: 8px;
}

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

.nav-link {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 8px 16px;
  border-radius: 999px;
  transition:
    color 0.2s var(--ease-out),
    background 0.2s var(--ease-out);
  position: relative;
}

.nav-link:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.nav-link.active {
  color: var(--brand);
  background: rgba(15, 110, 253, 0.08);
}

[data-theme="dark"] .nav-link.active {
  background: rgba(74, 158, 255, 0.12);
}

[data-theme="dark"] .nav-link:hover {
  background: rgba(255, 255, 255, 0.06);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--theme-btn-border);
  border-radius: 50%;
  background: var(--theme-btn);
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 1101;
}

.hamburger span {
  display: block;
  width: 16px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1099;
  opacity: 0;
  transition: opacity 0.3s var(--ease-out);
}

.mobile-overlay.show {
  opacity: 1;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: min(300px, 80vw);
  height: 100vh;
  background: var(--bg);
  border-left: 1px solid var(--line);
  z-index: 1100;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease-out);
  padding: 80px 24px 24px;
  overflow-y: auto;
}

.mobile-menu[aria-hidden="false"] {
  transform: translateX(0);
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-link {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 1.05rem;
  padding: 14px 16px;
  border-radius: 12px;
  transition:
    background 0.2s var(--ease-out),
    color 0.2s var(--ease-out);
}

.mobile-link:hover {
  background: rgba(255, 255, 255, 0.06);
}

.mobile-link.active {
  color: var(--brand);
  background: rgba(15, 110, 253, 0.08);
}

[data-theme="dark"] .mobile-link.active {
  background: rgba(74, 158, 255, 0.12);
}

.mobile-divider {
  border: none;
  border-top: 1px solid var(--line);
  margin: 12px 0;
}

.mobile-cta {
  margin-top: 4px;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }

  .mobile-overlay {
    display: block;
  }
}

.nav-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

#themeToggle {
  background: var(--theme-btn);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 6px;
  min-height: 36px;
  min-width: 36px;
  border: 1px solid var(--theme-btn-border);
  cursor: pointer;
  color: var(--text);
  transition:
    background 0.25s var(--ease-out),
    border-color 0.25s var(--ease-out),
    transform 0.25s var(--ease-out);
}

#themeToggle:hover {
  transform: scale(1.1);
}

.theme-icon {
  transition: all 0.3s ease;
  opacity: 1;
}

html:not([data-theme="dark"]) #moonIcon {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

html:not([data-theme="dark"]) #sunIcon {
  opacity: 0;
  transform: rotate(180deg) scale(0.8);
  position: absolute;
}

[data-theme="dark"] #sunIcon {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

[data-theme="dark"] #moonIcon {
  opacity: 0;
  transform: rotate(-180deg) scale(0.8);
  position: absolute;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 700;
  font-size: 0.9rem;
  border: 1px solid transparent;
  line-height: 1;
  height: auto;
  cursor: pointer;
  transition:
    transform 0.25s var(--ease-out),
    box-shadow 0.25s var(--ease-out),
    background 0.25s var(--ease-out);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand), #3f86ff);
  color: #fff;
  box-shadow: 0 8px 28px rgba(15, 110, 253, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 12px 36px rgba(15, 110, 253, 0.45);
}

.btn-ghost {
  background: var(--glass);
  color: var(--text);
  border-color: var(--line);
  backdrop-filter: blur(4px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(10, 22, 40, 0.18);
}

[data-theme="dark"] .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  padding: 64px 0 40px;
  align-items: center;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero--center {
  grid-template-columns: 1fr;
  text-align: center;
  justify-items: center;
}

.hero--center .hero-copy {
  align-items: center;
}

.hero--center .eyebrow {
  margin: 0 auto;
}

.hero--center h1 {
  max-width: 16ch;
}

.eyebrow {
  margin: 0;
  font-weight: 700;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(15, 110, 253, 0.08);
  border-radius: 999px;
  width: fit-content;
}

.hero h1 {
  margin: 14px 0 16px;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--text);
}

.sub {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 58ch;
  line-height: 1.7;
}

.hero-cta {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.quick-points {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.quick-points li {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(4px);
}

.quick-points li .qp-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.hero-panel {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  max-width: 280px;
  max-height: 600px;
  margin: 0 auto;
  position: relative;
}



.hero-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 22px;
}

.shots {
  padding: 24px 0 18px;
}

.shots-head,
.section-head {
  margin-bottom: 32px;
}

.shots-head h2,
.section-head h2 {
  margin: 12px 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  letter-spacing: -0.01em;
  color: var(--text);
}

.shots-head .sub,
.section-head .sub {
  margin-top: 8px;
}

.shot-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 320px);
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 4px 0 24px;
  scrollbar-width: none;
  align-items: stretch;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  position: relative;
  cursor: grab;
}

.shot-strip:active {
  cursor: grabbing;
}

.shot-strip::-webkit-scrollbar {
  display: none;
}

.shot-card {
  background: var(--glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 22px;
  padding: 18px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.35s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.shot-card header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-bottom: 12px;
  text-align: center;
}

.shot-card header > div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 8px;
}

.shot-card h3 {
  margin: 0;
  font-size: 1rem;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
  letter-spacing: -0.01em;
  text-align: center;
}

.shot-card p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.4;
  font-weight: 500;
  text-align: center;
}

.shot-frame {
  background: linear-gradient(160deg, #ffffff, #f4f7fc);
  border-radius: 16px;
  overflow: hidden;
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
}

[data-theme="dark"] .shot-frame {
  background: linear-gradient(160deg, #0d1425, #111a2e);
}

.shot-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 30%);
  pointer-events: none;
}

.shot-frame iframe,
.shot-frame img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  border: 0;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 12px 0 32px;
}

.feature {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 0;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition:
    transform 0.35s var(--ease-out),
    box-shadow 0.35s var(--ease-out);
}

.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(255, 255, 255, 0.5);
}

.feature-icon {
  padding: 24px 24px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon img {
  width: 44px;
  height: 44px;
  opacity: 0.85;
  transition: transform 0.35s var(--ease-out);
}

.feature:hover .feature-icon img {
  transform: scale(1.12);
  opacity: 1;
}

.feature-content {
  padding: 0 24px 24px;
  flex: 1;
}

.feature-content h3 {
  text-align: center;
}

.feature h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.feature p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

#faq {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

#faq .feature {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 24px;
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition:
    transform 0.35s var(--ease-out),
    box-shadow 0.35s var(--ease-out);
}

#faq .feature:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(255, 255, 255, 0.5);
}

#faq .feature h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 10px;
}

#faq .feature h3::before {
  content: "?";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(15, 110, 253, 0.1);
  color: var(--brand);
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

#faq .feature p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.proof {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 12px 0 56px;
}

@supports (content-visibility: auto) {
  .shots,
  .features,
  .plans,
  .proof {
    content-visibility: auto;
    contain-intrinsic-size: 1px 900px;
  }
}

.plans {
  padding: 8px 0 24px;
}

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

.plan-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 28px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  transition:
    transform 0.35s var(--ease-out),
    box-shadow 0.35s var(--ease-out);
}

.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(255, 255, 255, 0.5);
}

.plan-card.premium {
  background: linear-gradient(
    160deg,
    rgba(15, 110, 253, 0.08),
    rgba(0, 167, 127, 0.06)
  );
  border-color: rgba(15, 110, 253, 0.12);
  position: relative;
}

.plan-card.premium::before {
  content: "Popular";
  position: absolute;
  top: -1px;
  right: 24px;
  padding: 5px 12px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), #3f86ff);
  border-radius: 0 0 10px 10px;
}

.plan-tag {
  margin: 0 0 10px;
  display: inline-flex;
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand);
  background: rgba(15, 110, 253, 0.08);
  width: fit-content;
}

.plan-card h3 {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.plan-card ul {
  margin: 0 0 20px;
  padding-left: 0;
  list-style: none;
  color: var(--muted);
  flex: 1;
}

.plan-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
}

.plan-card li::before {
  content: "";
  width: 18px;
  height: 18px;
  background: rgba(15, 110, 253, 0.1);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%230f6efd' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}

.plan-card li + li {
  margin-top: 10px;
}

.plan-flow {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 16px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
}

[data-theme="dark"] .plan-flow {
  background: rgba(255, 255, 255, 0.04);
}

.plan-flow p {
  margin: 6px 0 0;
}

.proof-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 28px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition:
    transform 0.35s var(--ease-out),
    box-shadow 0.35s var(--ease-out);
}

.proof-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(255, 255, 255, 0.5);
}

.proof-card h2 {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: -0.01em;
}

.proof-card ul,
.proof-card ol {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.proof-card li + li {
  margin-top: 10px;
}

.proof-card li strong {
  color: var(--text);
}

.proof-card.accent {
  background: linear-gradient(
    160deg,
    rgba(15, 110, 253, 0.08),
    rgba(0, 167, 127, 0.06)
  );
  border-color: rgba(15, 110, 253, 0.08);
}

.proof-card.accent ol {
  counter-reset: step-counter;
  list-style: none;
  padding-left: 0;
}

.proof-card.accent ol li {
  counter-increment: step-counter;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.proof-card.accent ol li::before {
  content: counter(step-counter);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(15, 110, 253, 0.1);
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.install-hero-panel {
  display: grid;
  gap: 10px;
}

.install-badges {
  display: grid;
  gap: 10px;
}

.install-badge {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.84);
  padding: 10px;
}

[data-theme="dark"] .install-badge {
  background: rgba(255, 255, 255, 0.04);
}

.install-badge img {
  border-radius: 8px;
}

.install-badge h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 0.94rem;
}

.install-badge p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.install-feature {
  padding: 24px;
}

.install-feature h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}

.install-feature h3::before {
  content: "";
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(15, 110, 253, 0.08);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%230f6efd' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
}

.install-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  font-weight: 800;
  background: linear-gradient(
    145deg,
    rgba(15, 110, 253, 0.15),
    rgba(0, 167, 127, 0.15)
  );
  color: #1f3e68;
}

.install-feature ol {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.install-feature li + li {
  margin-top: 7px;
}

.install-visuals {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.install-icon-card .icon-pair {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.icon-pair img {
  width: 100%;
  max-width: 220px;
  margin: 0 auto;
  display: block;
  background: #fff;
  border: 1px solid rgba(13, 27, 54, 0.12);
  border-radius: 14px;
  padding: 10px;
}

[data-theme="dark"] .icon-pair img {
  background: #0d1425;
  border-color: rgba(255, 255, 255, 0.10);
}

.btn.wide {
  margin-top: 16px;
  width: 100%;
}

/* Modern Footer Styles */
.footer {
  background: var(--nav-bg);
  color: var(--muted);
  border-top: 1px solid var(--nav-border);
  margin-top: 4rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.footer-top {
  padding: 3rem 0 2rem;
  border-bottom: 1px solid var(--nav-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand {
  max-width: 340px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
}

.footer-logo img {
  border-radius: 10px;
}

.footer-logo h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
  letter-spacing: -0.01em;
}

.footer-description {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 0;
  font-size: 0.92rem;
}

.footer-section h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-link {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition:
    color 0.25s var(--ease-out),
    transform 0.25s var(--ease-out);
  display: inline-block;
}

.footer-link:hover {
  color: var(--text);
  transform: translateX(4px);
}

.footer-contact {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
  font-size: 0.9rem;
}

.footer-contact a {
  color: var(--brand);
  font-weight: 600;
  transition: opacity 0.2s ease;
}

.footer-contact a:hover {
  opacity: 0.8;
}

.footer-bottom {
  padding: 1.5rem 0;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: var(--muted);
  font-size: 0.85rem;
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.6);
  color: var(--muted);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid var(--line);
  backdrop-filter: blur(4px);
}

[data-theme="dark"] .footer-badge {
  background: rgba(255, 255, 255, 0.05);
}

.footer p {
  margin: 0;
  font-size: 0.88rem;
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 40px;
    gap: 32px;
  }

  .hero-panel {
    order: 0;
  }

  .features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #faq {
    grid-template-columns: 1fr;
  }

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

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

  .shot-strip {
    grid-auto-columns: minmax(260px, 300px);
    gap: 16px;
  }

  .install-visuals {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .nav {
    min-height: 64px;
  }

  .brand span {
    display: none;
  }

  .btn {
    padding: 14px 20px;
    font-size: 0.85rem;
  }

  .hero {
    padding-top: 28px;
    gap: 24px;
  }

  .hero h1 {
    font-size: clamp(1.6rem, 6vw, 2rem);
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn {
    width: 100%;
  }

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

  .shot-strip {
    grid-auto-columns: minmax(240px, 85vw);
    gap: 12px;
  }

  .proof-card {
    padding: 20px;
  }

  .plan-card {
    padding: 22px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-brand {
    text-align: center;
    max-width: 100%;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-section {
    text-align: center;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .footer-bottom-links {
    justify-content: center;
  }

  .install-visuals {
    grid-template-columns: 1fr;
  }
}

/* Blog Preview Styles */
.blog-preview {
  padding: 4rem 0;
}

.blog-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.blog-preview-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.blog-preview-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.blog-preview-image {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: white;
}

.blog-preview-content {
  padding: 1.5rem;
}

.blog-preview-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.blog-preview-category {
  background: var(--brand);
  color: white;
  padding: 4px 10px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.75rem;
}

.blog-preview-title {
  margin: 0 0 0.75rem;
  color: var(--text);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.3;
}

.blog-preview-excerpt {
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-preview-link {
  color: var(--brand);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: gap 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.blog-preview-link:hover {
  gap: 8px;
}

.blog-preview-cta {
  text-align: center;
}

@media (max-width: 768px) {
  .blog-preview {
    padding: 3rem 0;
  }

  .blog-preview-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .blog-preview-content {
    padding: 1rem;
  }

  .blog-preview-title {
    font-size: 1.1rem;
  }
}

/* Blog Section Styles */
.blog-section {
  padding: 4rem 0;
}

.blog-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.featured-blog-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 2rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition:
    transform 0.35s var(--ease-out),
    box-shadow 0.35s var(--ease-out);
}

.featured-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(255, 255, 255, 0.5);
}

.featured-blog-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--muted);
}

.blog-category {
  background: rgba(15, 110, 253, 0.1);
  color: var(--brand);
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.75rem;
}

.blog-date,
.blog-read-time {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.featured-blog-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.featured-blog-title a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s ease;
}

.featured-blog-title a:hover {
  color: var(--brand);
}

.featured-blog-excerpt {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.featured-blog-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.blog-tag {
  background: rgba(15, 110, 253, 0.06);
  color: var(--muted);
  padding: 0.25rem 0.6rem;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 500;
}

.featured-blog-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  background: linear-gradient(
    145deg,
    rgba(15, 110, 253, 0.1),
    rgba(0, 167, 127, 0.1)
  );
  border-radius: 22px;
  font-size: 2rem;
  font-weight: 600;
  color: var(--brand);
  flex-shrink: 0;
}

.recent-blogs h3 {
  margin: 0 0 1.5rem 0;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
}

.recent-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.recent-blog-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition:
    transform 0.35s var(--ease-out),
    box-shadow 0.35s var(--ease-out);
}

.recent-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(255, 255, 255, 0.5);
}

.recent-blog-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: linear-gradient(
    145deg,
    rgba(15, 110, 253, 0.1),
    rgba(0, 167, 127, 0.1)
  );
  border-radius: 16px;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--brand);
  margin-bottom: 1rem;
}

.recent-blog-content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.recent-blog-content h4 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.recent-blog-content h4 a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s ease;
}

.recent-blog-content h4 a:hover {
  color: var(--brand);
}

.recent-blog-content p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
  font-size: 0.9rem;
}

.blog-read-more {
  color: var(--brand);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.25s var(--ease-out);
}

.blog-read-more:hover {
  gap: 8px;
}

.blog-cta {
  text-align: center;
  padding: 2.5rem 0 0;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.blog-cta p {
  margin: 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.blog-cta .actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Blog Section Responsive */
@media (max-width: 980px) {
  .featured-blog-card {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .featured-blog-image {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .recent-blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .blog-section {
    padding: 3rem 0;
  }

  .featured-blog-card {
    padding: 1.5rem;
  }

  .featured-blog-title {
    font-size: 1.3rem;
  }

  .recent-blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-cta .actions {
    flex-direction: column;
    width: 100%;
  }

  .blog-cta .actions .btn {
    width: 100%;
  }
}

/* Compare Section Styles */
.compare-section {
  padding: 5rem 0;
  background: linear-gradient(
    135deg,
    rgba(15, 110, 253, 0.02) 0%,
    rgba(248, 250, 252, 1) 100%
  );
}

[data-theme="dark"] .compare-section {
  background: linear-gradient(
    135deg,
    rgba(74, 158, 255, 0.04) 0%,
    rgba(7, 11, 20, 1) 100%
  );
}

.compare-table {
  background: var(--compare-bg);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--compare-border);
}

.compare-header {
  display: grid;
  grid-template-columns: 200px repeat(3, 1fr);
  background: var(--compare-header-bg);
  border-bottom: 1px solid var(--compare-border);
}

.compare-row {
  display: grid;
  grid-template-columns: 200px repeat(3, 1fr);
  border-bottom: 1px solid var(--compare-border);
}

.compare-row:last-child {
  border-bottom: none;
}

.compare-row:hover {
  background: var(--compare-row-hover);
}

.feature-label {
  padding: 1.5rem;
  font-weight: 600;
  color: var(--compare-feature-label-color);
  font-size: 0.9rem;
  background: var(--compare-feature-label-bg);
  border-right: 1px solid var(--compare-border);
}

.app-header {
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-right: 1px solid var(--compare-border);
}

.app-header.featured-app {
  background: linear-gradient(
    135deg,
    rgba(15, 110, 253, 0.08) 0%,
    rgba(248, 250, 252, 1) 100%
  );
}

[data-theme="dark"] .app-header.featured-app {
  background: linear-gradient(
    135deg,
    rgba(74, 158, 255, 0.10) 0%,
    rgba(13, 20, 37, 1) 100%
  );
}

.app-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  color: white;
  flex-shrink: 0;
}

.app-icon img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.mint-icon {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.ynab-icon {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

.app-info h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--compare-app-info-color);
}

.badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: linear-gradient(135deg, #0f6efd 0%, #3b82f6 100%);
  color: white;
}

.feature-value {
  padding: 1.5rem;
  text-align: center;
  font-weight: 500;
  color: #64748b;
  font-size: 0.9rem;
}

.feature-value.featured {
  background: linear-gradient(
    135deg,
    rgba(15, 110, 253, 0.08) 0%,
    rgba(248, 250, 252, 1) 100%
  );
  font-weight: 600;
  color: #0f6efd;
}

[data-theme="dark"] .feature-value.featured {
  background: linear-gradient(
    135deg,
    rgba(74, 158, 255, 0.10) 0%,
    rgba(13, 20, 37, 1) 100%
  );
  color: #4a9eff;
}

.feature-value.good {
  color: #10b981;
  font-weight: 600;
}

.feature-value.excellent {
  color: #22c55e;
  font-weight: 700;
}

.feature-value.limited {
  color: #f97316;
  font-weight: 600;
}

.action-cell {
  padding: 1.5rem;
  text-align: center;
}

.compare-row.actions {
  background: rgba(248, 250, 252, 0.8);
}

[data-theme="dark"] .compare-row.actions {
  background: rgba(255, 255, 255, 0.03);
}

@media (max-width: 980px) {
  .compare-table {
    border-radius: 16px;
  }

  .compare-header,
  .compare-row {
    grid-template-columns: 150px repeat(3, 1fr);
  }

  .feature-label,
  .app-header,
  .feature-value,
  .action-cell {
    padding: 1rem;
  }
}

@media (max-width: 640px) {
  .compare-section {
    padding: 3rem 0;
  }

  .compare-table {
    border-radius: 12px;
  }

  .compare-header,
  .compare-row {
    grid-template-columns: 1fr;
  }

  .feature-label {
    padding: 1rem;
    text-align: center;
    border-right: none;
    border-bottom: 1px solid rgba(226, 232, 240, 0.4);
  }

  .app-header {
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    text-align: center;
    border-right: none;
    border-bottom: 1px solid rgba(226, 232, 240, 0.4);
  }

  .feature-value {
    border-bottom: 1px solid rgba(226, 232, 240, 0.4);
  }

  .action-cell {
    border-bottom: none;
  }
}

.toast-region {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
}

.toast {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 14px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
  opacity: 0;
  transform: translateY(16px) scale(0.96);
  transition:
    opacity 0.35s var(--ease-out),
    transform 0.35s var(--ease-out);
  max-width: min(440px, 88vw);
}

.toast.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.toast-success {
  background: linear-gradient(135deg, #059669, #10b981);
}

.toast-error {
  background: linear-gradient(135deg, #dc2626, #ef4444);
}

.toast-info {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
}

.toast-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
