:root {
  --bg: #050806;
  --surface: #0d140f;
  --surface-2: #121a15;
  --primary: #8eff3d;
  --primary-dark: #6bd628;
  --accent: #5fe3c2;
  --text: #f6fff4;
  --text-muted: #b5c3b2;
  --border: rgba(142, 255, 61, 0.22);
  --radius: 24px;
  --shadow: 0 25px 70px rgba(0, 0, 0, 0.28);
  --transition: 0.3s ease;
  --font-body: "Inter", "Segoe UI", Arial, sans-serif;
  --font-heading: "Plus Jakarta Sans", "Inter", "Segoe UI", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.7;
  background:
    radial-gradient(circle at top left, rgba(95, 227, 194, 0.16), transparent 30%),
    radial-gradient(circle at 90% 8%, rgba(142, 255, 61, 0.14), transparent 25%),
    var(--bg);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

::selection {
  background: var(--primary);
  color: #050805;
}

.background-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.background-glow .glow1,
.background-glow .glow2,
.background-glow .glow3 {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.9;
}

.glow1 {
  width: 480px;
  height: 480px;
  background: rgba(142, 255, 61, 0.14);
  top: -180px;
  right: -120px;
}

.glow2 {
  width: 380px;
  height: 380px;
  background: rgba(142, 255, 61, 0.08);
  left: -160px;
  top: 30%;
}

.glow3 {
  width: 460px;
  height: 460px;
  background: rgba(95, 227, 194, 0.1);
  bottom: -220px;
  right: 12%;
}

header {
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(16px);
  background: rgba(5, 8, 6, 0.8);
  border-bottom: 1px solid var(--border);
}

.navbar {
  max-width: 1250px;
  margin: 0 auto;
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-area img {
  width: 56px;
  transition: var(--transition);
}

.logo-area:hover img {
  transform: rotate(-6deg) scale(1.06);
}

.logo-area .logo-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  display: block;
}

.logo-area .logo-subtitle {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 3px;
}

.nav-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--text-muted);
  font-weight: 600;
  transition: var(--transition);
}

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

.nav-links a[aria-current="page"] {
  color: var(--primary);
}

section {
  max-width: 1250px;
  margin: 0 auto;
  padding: 96px 30px;
  position: relative;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 38px;
  align-items: center;
  padding-top: 90px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(142, 255, 61, 0.16), rgba(142, 255, 61, 0.08));
  border: 1px solid var(--border);
  color: var(--primary);
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 22px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4.6vw, 4.2rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  max-width: 760px;
}

.hero h1 span {
  display: block;
  color: var(--accent);
  margin-top: 10px;
}

.hero p {
  font-size: 1.08rem;
  color: var(--text-muted);
  max-width: 640px;
}

.trust-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.trust-pill {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(142, 255, 61, 0.2);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 600;
}

.hero-downloads {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

.browser-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--border);
  transition: var(--transition);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.browser-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 20px 48px rgba(140, 255, 63, 0.15);
}

.browser-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(142, 255, 61, 0.1);
}

.browser-icon img {
  display: block;
  width: auto;
  height: 34px;
  max-width: 100%;
  object-fit: contain;
}

.browser-card-copy {
  flex: 1;
}

.browser-card-copy strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 2px;
}

.browser-card-copy span {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.browser-pill {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(142, 255, 61, 0.12);
  color: var(--primary);
  font-size: 0.83rem;
  font-weight: 700;
}

.hero-visual {
  padding: 24px;
  border-radius: 30px;
  border: 1px solid var(--border);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
}

.hero-visual-card {
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(5, 8, 6, 0.65);
}

.hero-visual-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.hero-visual-card p {
  color: var(--text-muted);
  margin-bottom: 18px;
}

.hero-feature-list {
  display: grid;
  gap: 10px;
}

.hero-feature-list div {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.hero-feature-list strong {
  color: var(--primary);
}

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px;
}

.section-heading .section-label {
  display: inline-block;
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-heading h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.section-heading p {
  color: var(--text-muted);
  font-size: 1.02rem;
}

.download-section {
  padding-top: 30px;
}

.adsense-section {
  max-width: 1250px;
  margin: 0 auto;
  padding: 6px 30px 0;
}

.adsense-card {
  padding: 18px 20px;
  border-radius: 22px;
  border: 1px solid var(--border);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
  min-height: 120px;
  display: grid;
  gap: 12px;
  overflow: hidden;
}

.adsense-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.adsense-label {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(142, 255, 61, 0.12);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.adsense-note {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.adsense-card .adsbygoogle {
  min-height: 90px;
  border-radius: 16px;
  overflow: hidden;
}

.adsense-section-footer {
  padding-top: 8px;
  margin-bottom: 20px;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.download-card-large {
  padding: 32px;
  border-radius: 28px;
  border: 1px solid var(--border);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.download-card-large:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: 0 24px 58px rgba(140, 255, 63, 0.16);
}

.download-card-large .card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.download-card-large h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.download-card-large p {
  color: var(--text-muted);
  margin-bottom: 18px;
}

.download-features {
  display: grid;
  gap: 8px;
  margin-bottom: 22px;
}

.download-features div {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
}

.download-features strong {
  color: var(--primary);
}

.download-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #041107;
  font-weight: 800;
  transition: var(--transition);
}

.download-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(140, 255, 63, 0.25);
}

.featured-section {
  padding-top: 24px;
}

.featured-grid {
  display: grid;
  justify-items: center;
}

.featured-card {
  width: min(100%, 720px);
  padding: 34px 30px;
  border-radius: 30px;
  border: 1px solid var(--border);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  text-align: center;
  transition: var(--transition);
}

.featured-card:hover {
  transform: translateY(-6px);
  border-color: rgba(142, 255, 61, 0.44);
  box-shadow: 0 24px 58px rgba(140, 255, 63, 0.16);
}

.featured-badge-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 22px 24px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 20px 35px rgba(0, 0, 0, 0.22);
  transition: var(--transition);
}

.featured-badge-link:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 24px 42px rgba(140, 255, 63, 0.16);
}

.featured-badge-link img {
  display: block;
  width: 154px;
  height: 54px;
}

.featured-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  margin-bottom: 6px;
}

.featured-card p {
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

.featured-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(142, 255, 61, 0.26);
  background: rgba(142, 255, 61, 0.10);
  color: var(--primary);
  font-weight: 700;
  transition: var(--transition);
}

.featured-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(140, 255, 63, 0.16);
  background: rgba(142, 255, 63, 0.16);
}

.compatibility-section {
  padding-top: 24px;
}

.compatibility-shell {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: start;
}

.compatibility-card,
.assistant-highlight,
.support-card,
.cta-card {
  padding: 30px;
  border-radius: 28px;
  border: 1px solid var(--border);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
}

.compatibility-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.compatibility-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.compatibility-item strong {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}

.compatibility-pill {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(142, 255, 61, 0.12);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
}

.compatibility-note {
  margin-top: 20px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

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

.feature-card {
  padding: 26px;
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: auto -40px -40px auto;
  width: 160px;
  height: 160px;
  background: rgba(140, 255, 63, 0.08);
  border-radius: 50%;
  filter: blur(30px);
  pointer-events: none;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 0 20px 42px rgba(140, 255, 63, 0.12);
}

.feature-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(142, 255, 61, 0.12);
  color: var(--primary);
  font-size: 1.35rem;
  margin-bottom: 18px;
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.14rem;
  margin-bottom: 8px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.assistant-section {
  padding-top: 24px;
}

.assistant-showcase {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 24px;
}

.assistant-highlight {
  position: relative;
  overflow: hidden;
}

.assistant-highlight::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(95, 227, 194, 0.12);
  filter: blur(60px);
}

.assistant-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(142, 255, 61, 0.12);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 16px;
}

.assistant-highlight h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
  margin-bottom: 12px;
  max-width: 540px;
}

.assistant-highlight p {
  color: var(--text-muted);
  max-width: 560px;
}

.assistant-capsules {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.assistant-capsules span {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 0.9rem;
}

.assistant-list {
  display: grid;
  gap: 12px;
}

.assistant-list-card {
  padding: 20px 22px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.assistant-list-card strong {
  display: block;
  color: var(--primary);
  margin-bottom: 6px;
}

.assistant-list-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.about-card {
  padding: 28px;
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--border);
  transition: var(--transition);
}

.about-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
}

.about-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--primary);
}

.about-card p {
  color: var(--text-muted);
  margin-bottom: 12px;
}

.support-section {
  display: flex;
  justify-content: center;
}

.support-card {
  max-width: 900px;
  text-align: center;
}

.support-card img {
  width: 96px;
  margin: 0 auto 20px;
}

.support-card h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
  margin-bottom: 12px;
}

.support-card p {
  color: var(--text-muted);
  margin: 0 auto 24px;
  max-width: 700px;
}

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

.support-button,
.secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 700;
  transition: var(--transition);
}

.support-button:focus-visible,
.secondary-link:focus-visible,
.support-link-card:focus-visible,
.support-float:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.support-button {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #041107;
}

.support-button:hover,
.secondary-link:hover {
  transform: translateY(-3px);
}

.secondary-link {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

.cta-shell {
  padding-top: 30px;
}

.cta-card {
  text-align: center;
}

.cta-card .cta-badge {
  display: inline-block;
  margin-bottom: 14px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(142, 255, 61, 0.12);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cta-card h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 3vw, 2.65rem);
  margin-bottom: 12px;
}

.cta-card p {
  color: var(--text-muted);
  max-width: 740px;
  margin: 0 auto 22px;
}

.cta-points {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.cta-points span {
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.92rem;
}

footer {
  margin-top: 70px;
  padding: 70px 30px 90px;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
}

.support-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1200;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #00b321, #16d03a);
  color: #041107;
  font-weight: 800;
  box-shadow: 0 18px 40px rgba(0, 179, 33, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  transform: translateY(12px);
}

.support-float.is-ready {
  opacity: 1;
  transform: translateY(0);
}

.support-float:hover,
.support-float:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(0, 179, 33, 0.34);
}

.support-float__icon {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  font-size: 1rem;
}

.support-float__label {
  white-space: nowrap;
}

.support-hero {
  max-width: 1280px;
  margin: 0 auto;
  padding: 90px 30px 40px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 30px;
  align-items: start;
}

.support-hero__copy .section-label {
  display: inline-block;
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.support-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3.7vw, 3.2rem);
  margin-bottom: 16px;
}

.support-hero p {
  color: var(--text-muted);
  max-width: 620px;
}

.support-widget-card {
  padding: 24px;
  border-radius: 28px;
  border: 1px solid var(--border);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
}

.support-widget-card__header {
  margin-bottom: 18px;
}

.support-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(142, 255, 61, 0.12);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.support-widget-card__header p {
  color: var(--text-muted);
}

.kofi-cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 22px 24px;
  border-radius: 20px;
  background: linear-gradient(135deg, #00b321, #16d03a);
  color: #041107;
  font-weight: 800;
  font-size: 1.15rem;
  box-shadow: 0 18px 40px rgba(0, 179, 33, 0.28);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.kofi-cta-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(0, 179, 33, 0.34);
}

.kofi-cta-button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.kofi-cta-button__icon {
  font-size: 1.6rem;
  line-height: 1;
}

.kofi-cta-note {
  text-align: center;
  margin-top: 14px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.support-grid-section,
.support-roadmap,
.support-links-section {
  padding-top: 24px;
}

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

.support-feature-card,
.support-roadmap-card,
.support-link-card {
  padding: 24px;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.support-feature-card:hover,
.support-roadmap-card:hover,
.support-link-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
}

.support-feature-card h3,
.support-roadmap-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.support-feature-card p,
.support-roadmap-card p,
.support-link-card {
  color: var(--text-muted);
}

.support-roadmap-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.support-links-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.support-link-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 78px;
  font-weight: 700;
  color: var(--text);
}

.support-link-card:hover {
  color: var(--primary);
}

@media (max-width: 900px) {
  .support-hero,
  .support-grid,
  .support-roadmap-grid,
  .support-links-grid {
    grid-template-columns: 1fr;
  }

  .support-float {
    right: 16px;
    bottom: 16px;
    padding: 12px 14px;
  }

  .support-float__label {
    display: none;
  }
}

@media (max-width: 640px) {
  .support-float {
    right: 14px;
    bottom: 14px;
    padding: 12px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    justify-content: center;
  }

  .support-hero {
    padding-top: 70px;
  }

  .support-hero__copy .support-actions {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }
}

.footer-logo {
  width: 72px;
  margin: 0 auto 16px;
}

footer h3 {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  margin-bottom: 12px;
  text-align: center;
}

footer p {
  max-width: 720px;
  margin: 0 auto 20px;
  color: var(--text-muted);
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.footer-links a {
  color: var(--text-muted);
  transition: var(--transition);
}

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

.footer-available {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 16px 0 24px;
}

.footer-available a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  transition: var(--transition);
}

.footer-available a:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
}

.copyright {
  text-align: center;
  color: #7e8d81;
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ============================
   Free Creative Tools — Homepage Showcase
   ============================ */
.tools-showcase {
  padding-top: 30px;
}

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

.tool-card {
  padding: 32px;
  border-radius: 28px;
  border: 1px solid var(--border);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.tool-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: 0 24px 58px rgba(140, 255, 63, 0.16);
}

.tool-icon {
  font-size: 2.1rem;
  margin-bottom: 16px;
}

.tool-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.tool-card p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.tool-card-teaser {
  border-style: dashed;
  opacity: 0.85;
}

/* ============================
   Free Creative Tool Sub-Pages
   (Image Inspector, Creative Assistant)
   ============================ */
.page-hero {
  padding-bottom: 10px;
  text-align: center;
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.page-hero p {
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.page-hero .policy-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

.policy-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(142, 255, 61, 0.1);
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 700;
}

.policy-shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px 30px 0;
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.policy-card {
  padding: 24px;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
}

.policy-card h3 {
  font-family: var(--font-heading);
  font-size: 1.18rem;
  margin-bottom: 10px;
}

.policy-card p,
.policy-card li {
  color: var(--text-muted);
}

.policy-card ul {
  list-style: none;
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.policy-card li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.policy-card li::before {
  content: "•";
  color: var(--primary);
  font-weight: 700;
  line-height: 1.2;
}

.policy-card a {
  color: var(--primary);
}

.tool-shell {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: start;
  padding-top: 20px;
}

.upload-card,
.analysis-card,
.chat-shell {
  padding: 28px;
  border-radius: 26px;
  border: 1px solid var(--border);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
}

.drop-zone {
  text-align: center;
  padding: 40px 20px;
  border: 2px dashed var(--border);
  border-radius: 20px;
  transition: var(--transition);
}

.drop-zone.is-dragging {
  border-color: var(--primary);
  background: rgba(142, 255, 61, 0.06);
}

.drop-zone p {
  font-weight: 700;
  margin-bottom: 6px;
}

.drop-zone span {
  display: block;
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 20px;
}

.tool-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.tool-actions input[type="file"] {
  display: none;
}

.empty-state {
  text-align: center;
  padding: 30px 10px;
}

.empty-state h3 {
  font-family: var(--font-heading);
  margin-bottom: 10px;
}

.empty-state p {
  color: var(--text-muted);
}

.analysis-results .analysis-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.analysis-results .analysis-card {
  padding: 18px;
  border-radius: 16px;
  box-shadow: none;
}

.analysis-results .analysis-card.full {
  grid-column: 1 / -1;
}

.analysis-results .analysis-card h3 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  margin-bottom: 8px;
}

.analysis-results .analysis-card p {
  font-size: 1.02rem;
  font-weight: 600;
}

.analysis-list {
  list-style: none;
  display: grid;
  gap: 6px;
  color: var(--text-muted);
}

.palette-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.palette-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  font-size: 0.82rem;
  font-family: monospace;
}

.palette-swatch {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.tool-callout {
  padding-top: 10px;
}

.download-card {
  text-align: center;
  padding: 40px;
  border-radius: 28px;
  border: 1px solid var(--border);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
}

.download-card h2 {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  margin-bottom: 12px;
}

.download-card p {
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 22px;
}

/* Reset native button element so support-button/secondary-link
   look identical whether used on <a>, <label> or <button> */
button.support-button,
button.secondary-link {
  border: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
  cursor: pointer;
}

/* ============================
   Creative Assistant — Chat
   ============================ */
.chat-log {
  display: grid;
  gap: 12px;
  max-height: 420px;
  overflow-y: auto;
  padding-right: 6px;
  margin-bottom: 18px;
}

.message {
  padding: 14px 16px;
  border-radius: 16px;
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 92%;
}

.message.assistant {
  background: rgba(142, 255, 61, 0.08);
  border: 1px solid var(--border);
  justify-self: start;
}

.message.user {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  justify-self: end;
  color: var(--text);
}

.message.pending {
  color: var(--text-muted);
  font-style: italic;
}

.prompt-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.prompt-pill {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
}

.prompt-pill:hover {
  color: var(--primary);
  border-color: var(--primary);
}

.chat-form {
  display: flex;
  gap: 10px;
}

.chat-form input {
  flex: 1;
  padding: 14px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
}

.chat-form input:focus {
  outline: none;
  border-color: var(--primary);
}

.chat-form input::placeholder {
  color: var(--text-muted);
}

/* ============================
   Creative Assistant — Bring Your Own AI Key
   ============================ */
.ai-connect-section {
  padding-top: 10px;
  padding-bottom: 0;
}

.ai-connect-card {
  padding: 26px 28px;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
}

.ai-connect-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.ai-connect-head h2 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 6px;
}

.ai-connect-head p {
  color: var(--text-muted);
  font-size: 0.92rem;
  max-width: 560px;
}

.ai-status-pill {
  flex-shrink: 0;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
}

.ai-status-pill.is-connected {
  background: rgba(142, 255, 61, 0.14);
  border-color: var(--border);
  color: var(--primary);
}

.ai-status-pill.is-error {
  background: rgba(255, 90, 90, 0.12);
  border-color: rgba(255, 90, 90, 0.35);
  color: #ff8a8a;
}

.ai-connect-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.ai-select,
.ai-connect-form input {
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9rem;
}

.ai-select {
  flex: 0 0 190px;
}

.ai-connect-form input {
  flex: 1 1 220px;
}

.ai-select:focus,
.ai-connect-form input:focus {
  outline: none;
  border-color: var(--primary);
}

.ai-connect-note {
  margin-top: 14px;
  color: var(--text-muted);
  font-size: 0.82rem;
}

@media (max-width: 640px) {
  .ai-connect-form {
    flex-direction: column;
  }

  .ai-select {
    flex-basis: auto;
  }
}

@media (max-width: 1000px) {
  .hero,
  .compatibility-shell,
  .assistant-showcase,
  .about-grid,
  .tool-shell {
    grid-template-columns: 1fr;
  }

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

  .hero-visual {
    order: -1;
  }
}

@media (max-width: 760px) {
  .navbar {
    flex-direction: column;
    gap: 14px;
    padding: 16px 22px;
  }

  .nav-links {
    justify-content: center;
  }

  section {
    padding: 72px 20px;
  }

  .hero {
    padding-top: 56px;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .download-grid,
  .feature-grid,
  .about-grid,
  .tools-grid,
  .analysis-grid {
    grid-template-columns: 1fr;
  }

  .browser-card {
    padding: 16px;
  }

  .download-card-large,
  .compatibility-card,
  .assistant-highlight,
  .support-card,
  .cta-card,
  .adsense-card {
    padding: 24px;
  }

  .adsense-section {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 520px) {
  .hero h1 {
    font-size: 2.05rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .section-heading h2 {
    font-size: 1.7rem;
  }

  .support-actions {
    flex-direction: column;
  }

  .support-button,
  .secondary-link,
  .download-button {
    width: 100%;
  }
}

.paypal-support-button,
.paypal-home-link {
  background: #ffc439;
  color: #003087;
  border-color: #ffc439;
  font-weight: 800;
}

.paypal-support-button,
.paypal-home-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.paypal-cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin-top: 14px;
  padding: 13px 16px;
  border-radius: 10px;
  background: #ffc439;
  color: #003087;
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}

.paypal-cta-button:hover,
.paypal-cta-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(255, 196, 57, .2);
}

.paypal-cta-note { margin: 8px 0 0; color: var(--text-muted); font-size: .82rem; text-align: center; }

/* Shared interaction and navigation polish */
html { scroll-padding-top: 96px; }

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 16px;
  left: 16px;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--primary);
  color: #041107;
  font-weight: 800;
  transform: translateY(-180%);
  transition: transform 0.2s ease;
}

.skip-link:focus { transform: translateY(0); }

.navbar {
  min-height: 82px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.nav-links a {
  position: relative;
  transition: color var(--transition);
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  border-radius: 99px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { transform: scaleX(1); }

.nav-toggle { display: none; }

.browser-card:hover,
.download-card-large:hover,
.featured-card:hover,
.tool-card:hover,
.feature-card:hover,
.support-feature-card:hover,
.support-roadmap-card:hover,
.support-link-card:hover {
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32), 0 0 0 1px rgba(142, 255, 61, 0.14);
}

.browser-card:focus-within,
.download-card-large:focus-within,
.tool-card:focus-within,
.featured-card:focus-within { border-color: var(--primary); }

@media (max-width: 820px) {
  header { backdrop-filter: blur(20px); }

  .navbar {
    min-height: 72px;
    padding: 10px 20px;
    flex-direction: row;
    gap: 12px;
  }

  .logo-area { gap: 10px; }
  .logo-area img { width: 44px; }
  .logo-area .logo-title { font-size: 0.95rem; }
  .logo-area .logo-subtitle { display: none; }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
    padding: 10px 12px;
    border: 1px solid rgba(142, 255, 61, 0.28);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    font: 700 0.85rem var(--font-body);
    cursor: pointer;
  }

  .nav-toggle__icon,
  .nav-toggle__icon::before,
  .nav-toggle__icon::after {
    display: block;
    width: 17px;
    height: 2px;
    border-radius: 2px;
    background: var(--primary);
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .nav-toggle__icon { position: relative; }
  .nav-toggle__icon::before,
  .nav-toggle__icon::after { content: ""; position: absolute; left: 0; }
  .nav-toggle__icon::before { top: -5px; }
  .nav-toggle__icon::after { top: 5px; }
  .is-menu-open .nav-toggle__icon { background: transparent; }
  .is-menu-open .nav-toggle__icon::before { transform: translateY(5px) rotate(45deg); }
  .is-menu-open .nav-toggle__icon::after { transform: translateY(-5px) rotate(-45deg); }

  .nav-links {
    position: absolute;
    top: calc(100% + 1px);
    right: 12px;
    left: 12px;
    display: grid;
    gap: 2px;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(7, 12, 8, 0.98);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.38);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  }

  .is-menu-open .nav-links {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-links a { padding: 11px 12px; border-radius: 10px; }
  .nav-links a:hover, .nav-links a[aria-current="page"] { background: rgba(142, 255, 61, 0.1); }
  .nav-links a::after { display: none; }

  /* Let the value proposition lead on small screens before the visual proof. */
  .hero-visual { order: 0; }
}

@media (max-width: 520px) {
  .navbar { padding-right: 14px; padding-left: 14px; }
  .nav-toggle__label { display: none; }
  .nav-toggle { padding: 11px; }
  .hero { gap: 24px; }
  .trust-row { gap: 8px; }
  .trust-pill { padding: 8px 10px; font-size: 0.82rem; }
  .browser-card { align-items: flex-start; }
  .browser-card-copy span { line-height: 1.45; }
}
