/* Statmat - Gerador de Fontes Legais e Criativas */
:root {
  --navy: #000000; /* Pure black for Canyon vibes */
  --navy-light: #1a1a1a;
  --white: #ffffff;
  --gray-50: #f8f8f8;
  --gray-100: #efeff0;
  --gray-200: #e2e2e3;
  --gray-400: #8d8d8e;
  --gray-600: #585859;
  --gray-800: #2c2c2d;
  --text: #000000;
  --text-muted: #585859;
  --border: #e2e2e3;
  --accent: #094c46;
  --radius: 0px;
  --font-heading: "Stack Sans Notch", sans-serif;
  --font-body: "Google Sans Flex", sans-serif;
  --shadow-sm: none;
  --shadow-md: none;
  --transition: .3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  font-family: var(--font-body);
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  margin-top: 0;
  line-height: 1.2;
}

p {
  margin-top: 0;
}

.wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 40px 40px;
  overflow-x: hidden;
}

/* HEADER */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 200;
}
.site-header .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  padding: 0 40px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--navy);
  flex-shrink: 0;
}
.site-logo .logo-icon {
  color: var(--navy);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: var(--navy);
  line-height: 1.1;
}

.logo-tagline {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--gray-600);
  letter-spacing: 0.04em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}
.site-nav .page-link {
  color: var(--gray-800);
  text-decoration: none;
  padding: 8px 14px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  transition: color var(--transition);
}
.site-nav .page-link:hover {
  color: var(--navy);
}

.btn-submit {
  background: var(--navy) !important;
  color: var(--white) !important;
  margin-left: 20px;
  padding: 8px 20px !important;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.03em;
  transition: background var(--transition) !important;
}
.btn-submit:hover {
  background: var(--navy-light) !important;
}

.nav-trigger, .menu-icon {
  display: none;
}

/* HERO BANNER */
.hero-banner {
  position: relative;
  background: var(--navy);
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 26, 51, 0.88) 0%, rgba(11, 26, 51, 0.65) 50%, rgba(11, 26, 51, 0.3) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 60px;
  padding-bottom: 40px;
}

.hero-content {
  max-width: 560px;
}
.hero-content h1 {
  font-size: 3rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 20px;
}
.hero-content .hero-sub {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 28px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 24px;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 0px;
  transition: all var(--transition);
}

.btn-hero-primary {
  background: var(--white);
  color: var(--navy);
}
.btn-hero-primary:hover {
  background: var(--gray-100);
}

.btn-hero-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.5);
}
.btn-hero-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.hero-trust-bar {
  display: flex;
  gap: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
}
.trust-item svg {
  flex-shrink: 0;
}
.trust-item strong {
  display: block;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.trust-item span {
  font-size: 0.68rem;
}

/* SECTION HELPERS */
.section-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.section-label {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--navy);
  margin: 0;
}

.view-all-link {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: 0.06em;
}
.view-all-link:hover {
  text-decoration: underline;
}

/* REVIEWS SECTION (kept for legacy compatibility) */
.reviews-section {
  padding: 60px 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

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

.review-card {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform var(--transition);
}
.review-card:hover .review-card-body h3 {
  text-decoration: none;
}

.review-card-img {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  margin-bottom: 14px;
}
.review-card-img img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.review-card-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 4px;
}

.review-card-body h3 {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 8px;
  color: var(--text);
}

.review-card-meta {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.review-card--placeholder {
  opacity: 0.55;
  pointer-events: none;
}
.review-card--placeholder .review-card-badge {
  background: var(--text-muted);
}

/* GENERATORS SECTION */
.generators-section {
  padding: 72px 0;
  background: var(--gray-50);
  border-bottom: 1px solid var(--border);
}

.generators-header {
  margin-bottom: 40px;
}
.generators-header .generators-eyebrow {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--gray-600);
  text-transform: uppercase;
  margin: 0 0 12px;
}
.generators-header .generators-heading {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text);
  margin: 0;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

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

.gen-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
  text-decoration: none;
  color: inherit;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.gen-card:hover {
  border-color: var(--gray-400);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
}
.gen-card:hover .gen-card-title {
  text-decoration: none;
}

.gen-card-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
}

.gen-card-body {
  flex: 1;
  min-width: 0;
}

.gen-card-category {
  display: block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-600);
  margin-bottom: 6px;
}

.gen-card-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 8px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.gen-card-desc {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.generators-footer {
  margin-top: 32px;
  text-align: center;
}

.gen-view-all {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 2px solid var(--navy);
  padding-bottom: 2px;
}
.gen-view-all:hover {
  opacity: 0.7;
}

/* BRANDS BAR */
.brands-bar-section {
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}

.brands-logo-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 28px 40px;
}

.brand-logo-text {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.06em;
  opacity: 0.7;
  transition: opacity var(--transition);
}
.brand-logo-text:hover {
  opacity: 1;
}

/* TOPICAL / CATEGORIES */
.topical-section {
  padding: 60px 0;
  background: var(--gray-50);
}

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

.topic-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  transition: border-color var(--transition);
}
.topic-card:hover {
  border-color: var(--navy);
}

.topic-card-thumb {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 200px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.topic-card-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.1) 60%, transparent 100%);
}
.topic-card-thumb h3 {
  position: relative;
  z-index: 1;
  color: var(--white);
  margin: 0;
  font-size: 1.15rem;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.topic-btn {
  position: relative;
  z-index: 1;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(6px);
  color: var(--white);
  padding: 6px 6px 6px 14px;
  border-radius: 40px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background var(--transition);
}
.topic-btn:hover {
  background: rgba(0, 0, 0, 0.75);
}

.topic-btn-arrow {
  background: var(--white);
  color: #222;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.topic-card-list {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.topic-card-list p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* FIND YOUR PACK */
.find-pack-section {
  padding: 60px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
}

.find-pack-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.find-pack-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  background: var(--gray-50);
  transition: border-color var(--transition);
}
.find-pack-card:hover {
  border-color: var(--navy);
}
.find-pack-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 6px;
  color: var(--text);
}
.find-pack-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0 0 12px;
}

.find-pack-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
}

.find-pack-link {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.06em;
}

/* MAP SECTION */
.map-section {
  padding: 100px 0;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
}

.map-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.map-content h3 {
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  line-height: 1;
}
.map-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
  max-width: 480px;
}

.map-stats {
  display: flex;
  gap: 40px;
}

.stat-item strong {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}
.stat-item span {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.1em;
}

.map-visual {
  position: relative;
}
.map-visual img {
  width: 100%;
  filter: grayscale(1) brightness(0.6) contrast(1.2);
  opacity: 0.8;
}

.map-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.2);
  animation: pulse 2s infinite;
}

.dot-1 {
  top: 35%;
  left: 45%;
}

.dot-2 {
  top: 50%;
  left: 25%;
}

.dot-3 {
  top: 65%;
  left: 75%;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}
/* COMPARE SECTION */
.compare-section {
  padding: 100px 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.compare-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin: 48px 0;
}

.compare-item {
  width: 320px;
  border: 1px solid var(--border);
  padding: 24px;
  transition: border-color var(--transition);
}
.compare-item:hover {
  border-color: var(--navy);
}

.compare-image {
  margin-bottom: 20px;
}
.compare-image img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.compare-info h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.compare-info .compare-rating {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  background: var(--navy);
  color: var(--white);
  padding: 3px 8px;
  margin-bottom: 16px;
}

.compare-specs {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.85rem;
}
.compare-specs li {
  padding: 8px 0;
  border-top: 1px solid var(--gray-100);
  display: flex;
  justify-content: space-between;
}
.compare-specs li strong {
  color: var(--gray-400);
  font-weight: 600;
}

.compare-vs {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gray-200);
}

.compare-cta {
  text-align: center;
  margin-top: 40px;
}

/* TRUST STRIP */
.trust-strip {
  background: var(--gray-50);
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}

.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-strip-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.trust-strip-item svg {
  flex-shrink: 0;
  margin-top: 4px;
  color: var(--navy);
}
.trust-strip-item strong {
  display: block;
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.trust-strip-item span {
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--text-muted);
}

/* NEWSLETTER */
.newsletter-section {
  background: var(--gray-100);
  padding: 48px 0;
}

.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr auto;
  gap: 40px;
  align-items: center;
}

.newsletter-text h2 {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: 0.02em;
  margin-bottom: 8px;
  line-height: 1.2;
}
.newsletter-text p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
}

.newsletter-input-row {
  display: flex;
  gap: 0;
}
.newsletter-input-row input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-right: none;
  border-radius: 8px 0 0 8px;
  font-size: 0.88rem;
  font-family: var(--font);
  outline: none;
}
.newsletter-input-row input:focus {
  border-color: var(--navy);
}
.newsletter-input-row button {
  background: var(--navy);
  color: var(--white);
  border: none;
  padding: 12px 24px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  font-family: var(--font);
  cursor: pointer;
  border-radius: 0 8px 8px 0;
  transition: background var(--transition);
}
.newsletter-input-row button:hover {
  background: var(--navy-light);
}

.newsletter-note {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 6px;
  display: block;
}

.newsletter-image img {
  width: 160px;
  height: 120px;
  object-fit: cover;
  border-radius: 15px;
}

/* FOOTER */
.footer-main {
  background: var(--navy);
  padding: 56px 0 40px;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 32px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--white);
}

.footer-logo-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  display: block;
}

.footer-logo-tagline {
  font-size: 0.65rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  display: block;
}

.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.5);
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  transition: color var(--transition);
}
.footer-col ul li a:hover {
  color: var(--white);
}

.footer-social-icons {
  display: flex;
  gap: 12px;
}
.footer-social-icons a {
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition);
}
.footer-social-icons a:hover {
  color: var(--white);
}

.footer-bottom {
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
}
.footer-bottom p {
  text-transform: uppercase;
  margin: 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  max-width: 750px;
  margin: 15px auto;
}

.wrapper-footer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 40px 20px;
}

/* PAGE CONTENT */
.page-content {
  min-height: 60vh;
  flex: 1;
  display: flex;
  flex-direction: column;
  max-width: 100%;
  overflow-x: hidden;
}

/* POST LAYOUT */
.post-wrapper {
  padding: 60px 0 80px;
}

.post-header-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 60px;
}

.post-label {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--navy);
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.post-title {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.12;
  margin-bottom: 30px;
  letter-spacing: -0.02em;
}

.post-header-tag-container {
  margin-bottom: 40px;
}

.post-header-tag {
  display: inline-block;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  font-size: 0.95rem;
  border-bottom: 2px solid var(--navy);
  padding-bottom: 2px;
}

.post-author-block {
  font-size: 0.95rem;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  margin-bottom: 5px;
  padding-top: 10px;
}

.post-header-author {
  font-weight: 700;
  color: var(--text);
  font-size: 1rem;
}

.post-header-image {
  width: 100%;
}
.post-header-image img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: var(--radius);
}

.post-content {
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 680px;
  margin: 0 auto;
}
.post-content.hide-first-h1 h1:first-of-type {
  display: none;
}
.post-content h2 {
  font-size: 1.5rem;
  margin-top: 1.5em;
  margin-bottom: 0.75em;
}
.post-content h3 {
  font-size: 1.3rem;
  margin-top: 2em;
  margin-bottom: 0.5em;
}
.post-content p {
  margin-bottom: 1.5em;
}
.post-content a {
  color: var(--navy);
  text-decoration: none;
}
.post-content blockquote {
  margin: 2em 0;
  padding: 20px 24px;
  background: var(--gray-50);
  border-left: 4px solid var(--navy);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 1rem;
  line-height: 1.7;
}
.post-content blockquote p {
  margin: 0;
}
.post-content blockquote strong {
  display: block;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.post-content table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  margin-bottom: 2em;
  overflow-x: auto;
  display: block;
}
.post-content table th {
  background: var(--navy);
  color: var(--white);
  text-align: left;
  padding: 10px 14px;
  font-weight: 700;
  font-size: 0.85rem;
}
.post-content table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.post-content table tr:hover td {
  background: var(--gray-50);
}
.post-content ul, .post-content ol {
  padding-left: 1.5em;
  margin-bottom: 1.5em;
}
.post-content li {
  margin-bottom: 0.5em;
}

.hide-first-h1 h1:first-child {
  display: none;
}

.post-cat-tag {
  display: inline-block;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--navy);
  margin-bottom: 20px;
}

/* RELATED */
.related-content-section {
  max-width: 1000px;
  margin: 80px auto 0;
  padding-top: 60px;
}

.related-content-heading {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 32px;
  color: var(--text);
}

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

.related-card {
  border: 1px solid var(--border);
  background: var(--white);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  padding: 16px;
}
.related-card:hover {
  border-color: var(--navy);
}
.related-card:hover .related-card-title {
  text-decoration: underline;
}
.related-card-img {
  margin-bottom: 20px;
}
.related-card-img img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.related-card-tag {
  color: var(--navy);
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  margin-bottom: 12px;
  letter-spacing: 0.06em;
}
.related-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
  margin: 0 0 24px;
}
.related-card-date {
  margin-top: auto;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* TOPIC PAGE */
.topic-header {
  padding: 72px 0 56px;
  border-bottom: 1px solid var(--border);
  background: var(--gray-50);
}
.topic-header h1 {
  font-size: 3rem;
  margin: 0 0 20px;
  letter-spacing: -0.03em;
  color: var(--navy);
}

.topic-meta-top {
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--navy);
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}

.topic-description {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 700px;
  line-height: 1.65;
}
.topic-description p {
  margin: 0;
}

.topic-posts-section {
  padding: 60px 0;
}

.section-title-alt {
  margin-bottom: 40px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.section-title-alt h2 {
  font-size: 1rem;
  margin: 0;
  color: var(--navy);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.no-posts {
  grid-column: 1/-1;
  padding: 80px 40px;
  text-align: center;
  background: var(--gray-50);
  border: 1px dashed var(--border);
  color: var(--gray-400);
  border-radius: var(--radius);
  font-size: 1rem;
}

/* POSTS GRID (reused on topic pages) */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.post-card {
  text-decoration: none;
  color: inherit;
  display: block;
}
.post-card:hover h3 {
  text-decoration: underline;
}
.post-card-img {
  margin-bottom: 14px;
  overflow: hidden;
  border-radius: var(--radius);
}
.post-card-img img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.post-card-cat {
  font-size: 0.68rem;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--navy);
  margin-bottom: 6px;
  display: block;
}
.post-card h3 {
  margin: 0 0 8px;
  font-size: 0.95rem;
  line-height: 1.4;
  font-weight: 700;
}
.post-card-date {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* AUTHOR BIO */
.author-bio-box {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  margin: 32px 0;
}
.author-bio-box .author-avatar {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.author-bio-box .author-info h4 {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 700;
}
.author-bio-box .author-info p {
  margin: 0 0 10px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}
.author-bio-box .author-info .author-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
}
.author-bio-box .author-info .author-link:hover {
  text-decoration: underline;
}

/* AD CARD */
.ad-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  max-width: 500px;
  border: 1px solid var(--border);
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 14px;
  text-decoration: none;
  transition: border-color 0.2s ease;
  margin: 30px auto;
  text-align: left;
}
.ad-card:hover {
  border-color: var(--navy);
}

.top-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.app-icon {
  width: 62px;
  height: 62px;
  border-radius: 15px;
  object-fit: cover;
  border: 1px solid var(--border);
  flex-shrink: 0;
  margin: 0;
}

.right-col {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  padding-top: 2px;
}

.install-btn {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  background: transparent;
  border: 1.5px solid var(--navy);
  border-radius: 5px;
  padding: 6px 20px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.15s, color 0.15s;
}
.install-btn:hover {
  background: var(--navy);
  color: #fff;
}

.app-name {
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
  margin: 0;
}

.description {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.55;
  border-top: 1px solid var(--gray-100);
  padding-top: 12px;
  margin: 10px 0 0;
}

.badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  color: var(--navy);
  background: var(--gray-50);
  border-radius: 4px;
  padding: 2px 6px;
  margin-bottom: 5px;
}

.stars-row {
  display: flex;
  align-items: center;
  gap: 3px;
}

.star {
  color: #F5A623;
  font-size: 12px;
}

.rating-label {
  font-size: 11.5px;
  color: var(--gray-400);
  font-weight: 500;
  margin-top: 2px;
}

/* BREADCRUMB */
.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.breadcrumb-nav a {
  color: var(--navy);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb-nav a:hover {
  color: var(--text);
  text-decoration: underline;
}
.breadcrumb-nav span[aria-hidden=true] {
  color: var(--border);
  font-size: 0.9rem;
}

/* PAGE LAYOUT */
.page-content-inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 80px 40px;
}
.page-content-inner h1 {
  font-size: 2.8rem;
  margin-bottom: 24px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .topical-grid {
    grid-template-columns: 1fr;
  }
  .review-cards-grid, .posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .generators-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .find-pack-grid {
    grid-template-columns: 1fr;
  }
  .trust-strip-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .newsletter-inner {
    grid-template-columns: 1fr;
  }
  .newsletter-image {
    display: none;
  }
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .post-header-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .wrapper {
    padding: 40px 20px 40px;
  }
  .site-header .wrapper {
    height: 56px;
    padding: 0 20px;
  }
  .menu-icon {
    display: block;
    cursor: pointer;
    padding: 8px;
    position: relative;
    z-index: 401;
  }
  .menu-icon svg {
    fill: var(--navy);
    transition: fill var(--transition);
  }
  .site-nav .trigger {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 400;
    padding: 40px;
  }
  .site-nav .trigger .page-link {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    padding: 15px 0;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid var(--gray-100);
  }
  .site-nav .trigger .page-link.btn-submit {
    background: var(--navy) !important;
    color: var(--white) !important;
    border-radius: 0 !important;
    border-bottom: none !important;
    margin-top: 20px;
    font-size: 1.5rem !important;
  }
  .nav-trigger:checked ~ .trigger {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .nav-trigger:checked ~ label .menu-icon svg {
    fill: var(--accent);
  }
  .hero-banner {
    min-height: 400px;
  }
  .hero-content h1 {
    font-size: 2.2rem;
    margin-bottom: 12px;
  }
  .hero-content .hero-sub {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }
  .hero-trust-bar {
    flex-wrap: wrap;
    gap: 16px;
    justify-content: flex-start;
  }
  .review-cards-grid, .posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .generators-grid {
    grid-template-columns: 1fr;
  }
  .related-content-grid {
    grid-template-columns: 1fr;
  }
  .topic-card {
    grid-template-columns: 1fr;
  }
  .topic-header h1 {
    font-size: 2.4rem;
  }
  .post-title {
    font-size: 2rem;
  }
  .post-wrapper {
    padding-top: 25px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .brands-logo-grid {
    gap: 16px 24px;
  }
  /* MOBILE MAP & COMPARE */
  .map-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .map-content h3 {
    font-size: 2.2rem;
  }
  .map-content p {
    margin: 0 auto 32px;
  }
  .map-stats {
    justify-content: center;
  }
  .compare-grid {
    flex-direction: column;
    gap: 20px;
  }
  .compare-item {
    width: 100%;
  }
  .compare-vs {
    transform: rotate(90deg);
  }
}
@media (max-width: 480px) {
  .review-cards-grid, .posts-grid, .generators-grid, .related-content-grid, .trust-strip-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .hero-banner {
    min-height: auto;
    align-items: center;
  }
  .hero-inner {
    padding-top: 40px;
    padding-bottom: 30px;
  }
  .hero-content h1 {
    font-size: 1.8rem;
  }
  .hero-content h1 br {
    display: none;
  }
  .hero-ctas {
    flex-direction: column;
    width: 100%;
    gap: 10px;
    margin-bottom: 30px;
  }
  .hero-ctas .btn-hero {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .hero-trust-bar {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .author-bio-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
/* 404 PAGE */
.error-404 {
  text-align: center;
  padding: 80px 0;
}
.error-404 .error-code {
  font-size: 8rem;
  font-weight: 900;
  color: var(--gray-100);
  margin-bottom: -20px;
  line-height: 1;
}
.error-404 h1 {
  font-size: 2.5rem;
  color: var(--navy);
  margin-bottom: 20px;
}
.error-404 p {
  max-width: 500px;
  margin: 0 auto 40px;
  color: var(--text-muted);
  font-size: 1.1rem;
}
.error-404 .error-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.error-404 .error-actions .btn {
  padding: 14px 28px;
  font-size: 0.9rem;
}

/* FAQ Styles */
.tool-faq {
  margin: 3rem auto;
  max-width: 800px;
}

.tool-faq h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--black);
}

.faq-item {
  border: 1px solid #eaeaea;
  border-bottom: none;
  background: #fff;
  transition: background 0.2s ease;
}

.faq-item:first-of-type {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.faq-item:last-of-type {
  border-bottom: 1px solid #eaeaea;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--black);
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border: 1px solid #eaeaea;
  border-radius: 2px;
  font-size: 16px;
  font-weight: 400;
  color: #666;
  flex-shrink: 0;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  padding: 0 20px 20px 20px;
  margin: 0;
  color: #4a5568;
  line-height: 1.6;
}

/* Tool Header Styles (Title & Description) */
.tool-header {
  margin-top: 3rem;
  margin-bottom: 2.5rem;
  text-align: left;
  max-width: 900px;
}

.tool-header .tool-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #4a5568;
  margin-bottom: 0.5rem;
}

.tool-header h1 {
  font-size: 2.25rem;
  font-weight: 800;
  color: #1a202c;
  margin-top: 0;
  margin-bottom: 1rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.tool-header .tool-description {
  font-size: 1.125rem;
  color: #374151;
  line-height: 1.6;
  margin-top: 0;
}

/* Tool Content Split Layout */
.tool-content {
  margin: 60px auto;
  max-width: 1040px;
}

.content-row {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  margin-bottom: 60px;
  align-items: start;
}

.content-left {
  position: sticky;
  top: 100px;
}
.content-left .content-eyebrow {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #3182ce; /* Blue like Pinecone */
  margin-bottom: 16px;
}
.content-left h2, .content-left h3, .content-left h4, .content-left h5, .content-left h6 {
  margin: 0;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.content-left h3 {
  font-size: 1.5rem;
}
.content-left h4 {
  font-size: 1.25rem;
}

.content-right {
  text-align: left;
  /* Styling for tables in right column */
}
.content-right p, .content-right li, .content-right div {
  font-size: 1.05rem;
  color: #4a5568;
  line-height: 1.75;
  margin-top: 0;
  margin-bottom: 1.5rem;
}
.content-right ul, .content-right ol {
  margin-top: 0;
  margin-bottom: 1.5rem;
  padding-left: 1.25rem;
  color: #4a5568;
  text-align: left;
}
.content-right p:last-child, .content-right ul:last-child {
  margin-bottom: 0;
}
.content-right table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
}
.content-right table th, .content-right table td {
  padding: 12px;
  border-bottom: 1px solid var(--border);
  text-align: left;
}
.content-right table th {
  font-weight: 700;
  color: var(--navy);
  background: var(--gray-50);
}

@media (max-width: 900px) {
  .content-row {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }
  .content-left {
    position: static;
  }
}
/* === RESPONSIVE TABLES === */
.tool-content table,
.content-right table,
.page-content table,
.post-content table {
  width: 100%;
  border-collapse: collapse;
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  white-space: nowrap;
}

.tool-content table th,
.tool-content table td,
.content-right table th,
.content-right table td,
.page-content table th,
.page-content table td {
  white-space: nowrap;
}

@media (max-width: 768px) {
  .tool-content table,
  .content-right table,
  .page-content table,
  .post-content table {
    font-size: 0.85rem;
  }
}
/* === TOOL INTERFACE (Generator UI) === */
.tool-interface {
  margin-top: 40px;
  margin-bottom: 40px;
}

/* Generator container (used by tool.html) */
.gen-container {
  max-width: 760px;
  margin: 0 auto;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 6px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.gen-toolbar {
  display: flex;
  align-items: center;
  padding: 6px 12px 0 12px;
  gap: 6px;
  flex-wrap: wrap;
}

.gen-toolbar-label {
  color: #a0aec0;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.gen-toolbar-actions {
  margin-left: auto;
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  align-items: center;
}

.gen-toolbar-btn {
  background: none;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  width: 32px;
  height: 28px;
  font-size: 13px;
  cursor: pointer;
  color: #1a202c;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.gen-toolbar-btn:hover {
  background: #edf2f7;
}

.gen-toolbar-btn-bold {
  font-weight: bold;
}

.gen-toolbar-btn-italic {
  font-style: italic;
}

.gen-toolbar-btn-strike {
  text-decoration: line-through;
}

.gen-toolbar-btn-primary {
  background: #000;
  color: #fff !important;
  border: none;
  padding: 6px 20px;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 13px;
  margin-left: 4px;
  transition: opacity 0.2s;
}

.gen-toolbar-btn-primary:hover {
  opacity: 0.85;
}

.gen-textarea {
  width: 100%;
  background: transparent;
  border: none;
  font-size: 15px;
  outline: none;
  color: #1a202c;
  padding: 12px;
  resize: vertical;
  min-height: 100px;
  line-height: 1.5;
  font-family: inherit;
}

/* Inline input variant (non-textarea) */
.gen-inline-group {
  max-width: 760px;
  margin: 0 auto;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  padding: 6px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  flex-wrap: wrap;
}

.gen-inline-icon {
  color: #a0aec0;
  padding: 12px 12px 4px 12px;
  flex-shrink: 0;
}

.gen-inline-input {
  flex: 1;
  background: transparent;
  border: none;
  font-size: 16px;
  outline: none;
  color: #1a202c;
  padding: 12px 0;
  min-width: 150px;
}

.gen-inline-extra {
  background: transparent;
  border: none;
  border-left: 1px solid #e2e8f0;
  font-size: 14px;
  outline: none;
  color: #1a202c;
  padding: 12px 16px;
  max-width: 260px;
  min-width: 0;
}

.gen-inline-select {
  background: transparent;
  border: none;
  border-left: 1px solid #e2e8f0;
  font-size: 14px;
  outline: none;
  color: #1a202c;
  padding: 12px 12px;
  cursor: pointer;
  min-width: 0;
}

/* Platform page input group */
.tool-input-group {
  max-width: 760px;
  margin: 0 auto 24px;
}

.tool-input-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  color: #1a202c;
}

.tool-input-group textarea {
  width: 100%;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 14px;
  font-size: 1rem;
  font-family: inherit;
  resize: vertical;
  outline: none;
  transition: border-color 0.2s;
}

.tool-input-group textarea:focus {
  border-color: #3182ce;
}

.tool-placeholder-msg {
  text-align: center;
  color: #8d8d8e;
  padding: 32px 16px;
  border: 1px dashed #e2e8f0;
  border-radius: 8px;
  font-size: 0.95rem;
}

/* Platform tips & compatibility grid */
.platform-tips {
  margin-top: 60px;
}

.platform-tips h2 {
  font-size: 1.5rem;
  margin-bottom: 24px;
}

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

.tip-card, .compat-item {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px;
  background: var(--white);
}

.compat-item {
  text-align: center;
}

.compat-item strong {
  display: block;
  margin-bottom: 8px;
}

.compat-supported span {
  color: #2f855a;
}

.compat-limited span {
  color: #d69e2e;
}

.compat-unsupported span {
  color: #e53e3e;
}

/* Generator heading */
.gen-heading {
  text-align: center;
  margin-bottom: 24px;
  font-size: 1.3rem;
  font-weight: 700;
}

/* Generate button in inline mode (outside toolbar) */
.gen-inline-group .gen-toolbar-btn-primary {
  margin-left: auto;
  padding: 12px 24px;
  white-space: nowrap;
  font-size: 14px;
}

/* Related section (was inline-styled) */
.gen-related-section {
  margin-top: 60px;
}

.gen-related-heading {
  text-align: center;
  margin-bottom: 24px;
}

.gen-related-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #718096;
}

.gen-related-heading h2 {
  font-size: 1.8rem;
  font-weight: 800;
  margin: 8px 0 0;
}

/* Tool output grid base */
.tool-output-grid {
  max-width: 760px;
  margin: 20px auto 0;
}

/* === MOBILE OVERRIDES for Tool/Platform pages === */
@media (max-width: 768px) {
  .gen-container {
    max-width: 100% !important;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }
  .gen-inline-group {
    max-width: 100% !important;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }
  .gen-inline-extra {
    max-width: 100%;
    flex: 1 1 100%;
    border-left: none;
    border-top: 1px solid #e2e8f0;
    padding: 12px;
  }
  .gen-inline-select {
    flex: 1;
    border-left: none;
    border-top: 1px solid #e2e8f0;
    width: 100%;
  }
  .gen-toolbar {
    padding: 6px 8px 0 8px;
  }
  .gen-toolbar-actions {
    margin-left: 0;
    width: 100%;
    justify-content: flex-start;
    padding-top: 6px;
  }
  .gen-textarea {
    font-size: 16px;
  }
  .gen-heading {
    font-size: 1.1rem;
  }
  .tool-header h1 {
    font-size: 1.7rem;
  }
  .tool-header .tool-description {
    font-size: 1rem;
  }
  .tool-input-group {
    max-width: 100%;
  }
  .tool-output-grid {
    max-width: 100%;
  }
  .tool-input-group textarea {
    font-size: 16px;
  }
  .tips-grid, .compat-grid {
    grid-template-columns: 1fr;
  }
  .gen-related-heading h2 {
    font-size: 1.4rem;
  }
  .gen-related-section {
    margin-top: 40px;
  }
}
@media (max-width: 480px) {
  .gen-toolbar-actions {
    gap: 4px;
  }
  .gen-toolbar-btn {
    width: 28px;
    height: 26px;
    font-size: 12px;
  }
  .gen-toolbar-btn-primary {
    padding: 6px 14px;
    font-size: 12px;
  }
  .gen-inline-group .gen-toolbar-btn-primary {
    padding: 10px 16px;
    font-size: 13px;
  }
  .gen-inline-input {
    font-size: 15px;
    min-width: 120px;
  }
  .tool-header h1 {
    font-size: 1.4rem;
  }
  .gen-related-heading h2 {
    font-size: 1.2rem;
  }
}
/* =====================================================
   GLOBAL TOOL TOAST NOTIFICATION
   Standar tunggal untuk semua notifikasi "Copied" di
   seluruh tool. Class: .tool-toast (via toast-util.js)
   ===================================================== */
@keyframes toast-in {
  from {
    opacity: 0;
    transform: translate(-50%, 12px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}
@keyframes toast-out {
  from {
    opacity: 1;
    transform: translate(-50%, 0);
  }
  to {
    opacity: 0;
    transform: translate(-50%, 12px);
  }
}
.tool-toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: var(--white);
  padding: 9px 20px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-body);
  letter-spacing: 0.01em;
  pointer-events: none;
  z-index: 9999;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
  animation: toast-in 0.18s ease forwards;
}

.tool-toast.hiding {
  animation: toast-out 0.18s ease forwards;
}

/*# sourceMappingURL=style.css.map */