/* wiowiz.ai — Light, clean product portal */
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@300;400;500;600;700&family=IBM+Plex+Mono:wght@400;500&display=swap");

:root {
  --bg: #fafbfc;
  --surface: #ffffff;
  --surface-alt: #f3f5f7;
  --border: #e2e6eb;
  --border-light: #eef1f4;
  --text: #1a1d23;
  --text-secondary: #5a6170;
  --text-muted: #8b919e;
  --accent: #0057ff;
  --accent-hover: #0044cc;
  --accent-light: #e8f0ff;
  --accent-subtle: #f4f7ff;
  --green: #00875a;
  --green-light: #e6f5ee;
  --amber: #b45309;
  --amber-light: #fff7ed;
  --tag-bg: #edeef1;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.08);
  --max-w: 1120px;
  --nav-h: 64px;
  --blue: #2563eb;
  --surfaceeqwave: #f7f8fa;
  --border_home: #e2e5ea;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "IBM Plex Sans",
    -apple-system,
    sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.15s;
}
a:hover {
  color: var(--accent-hover);
}

/* ─── NAV ─── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  /* background-color: #4169e1; */
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  height: var(--nav-h);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav-logo .dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
}
.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.15s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}
.nav-cta {
  background: var(--text);
  color: #fff !important;
  padding: 0.45rem 1.1rem;
  border-radius: 7px;
  font-size: 0.825rem;
  font-weight: 600;
  transition: background 0.15s;
}
.nav-cta:hover {
  background: #333;
  color: #fff !important;
}

/* ─── HERO ─── */
.hero {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 5rem 2rem 4rem;
}
.hero-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  background: var(--accent-light);
  padding: 0.3rem 0.75rem;
  border-radius: 5px;
  margin-bottom: 1.25rem;
}
.hero h1 {
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 1rem;
  max-width: 650px;
}
.hero p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.7;
}
.hero-actions {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1.4rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.15s;
  text-decoration: none;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--accent-hover);
  color: #fff;
}
.btn-secondary {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-secondary:hover {
  background: var(--surface-alt);
  color: var(--text);
}
.btn-sm {
  padding: 0.45rem 1rem;
  font-size: 0.8rem;
}

/* ─── SECTION ─── */
.section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 4rem 2rem;
}
.section-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.section h2 {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.section > p {
  color: var(--text-secondary);
  max-width: 520px;
  margin-bottom: 2.5rem;
}
.divider {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  border: none;
  border-top: 1px solid var(--border-light);
}

/* ─── PRODUCT CARDS ─── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.25rem;
}
.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition:
    box-shadow 0.2s,
    border-color 0.2s;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: #cdd3db;
}
.product-card .badge {
  display: inline-block;
  font-size: 0.675rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  width: fit-content;
  margin-bottom: 1rem;
}
.badge-green {
  background: var(--green-light);
  color: var(--green);
}
.badge-blue {
  background: var(--accent-light);
  color: var(--accent);
}
.badge-amber {
  background: var(--amber-light);
  color: var(--amber);
}
.product-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.product-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  flex-grow: 1;
  margin-bottom: 1.5rem;
}
.product-card .card-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.product-card .card-link:hover {
  gap: 0.5rem;
}

/* ─── FEATURE LIST ─── */
.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.feature-item {
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
}
.feature-item h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.feature-item p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ─── ARTICLES LIST ─── */
.article-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.article-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border-light);
  gap: 2rem;
}
.article-row:last-child {
  border-bottom: none;
}
.article-title {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  flex: 1;
}
.article-title:hover {
  color: var(--accent);
}
.article-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
  white-space: nowrap;
  font-family: "IBM Plex Mono", monospace;
}
.article-tag {
  font-size: 0.7rem;
  background: var(--tag-bg);
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  color: var(--text-secondary);
  white-space: nowrap;
}

/* ─── DOWNLOAD TABLE ─── */
.dl-table {
  width: 100%;
  border-collapse: collapse;
}
.dl-table th {
  text-align: left;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  padding: 0.75rem 1rem;
  border-bottom: 2px solid var(--border);
}
.dl-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.9rem;
}
.dl-table tr:last-child td {
  border-bottom: none;
}
.dl-name {
  font-weight: 600;
}
.dl-version {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.8rem;
  color: var(--text-secondary);
}
.dl-platform {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ─── GATED BOX ─── */
.gated-box {
  background: var(--accent-subtle);
  border: 1px solid #d6e2ff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  margin-top: 2rem;
}
.gated-box h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.gated-box p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}
.gated-box .input-row {
  display: flex;
  gap: 0.5rem;
  max-width: 400px;
  margin: 0 auto;
}
.gated-box input {
  flex: 1;
  padding: 0.6rem 1rem;
  border: 1px solid var(--border);
  border-radius: 7px;
  font-size: 0.875rem;
  font-family: inherit;
  outline: none;
  background: #fff;
}
.gated-box input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 87, 255, 0.08);
}

/* ─── FOOTER ─── */
.footer {
  /* margin-top: 4rem; */
  border-top: 1px solid var(--border-light);
  background: var(--surface);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 3rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
}
.footer-left {
  max-width: 320px;
}
.footer-logo {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-logo .dot {
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
}
.footer-left p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.footer-links {
  display: flex;
  gap: 3rem;
}
.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}
.footer-col a:hover {
  color: var(--text);
}
.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1.5rem 2rem;
  border-top: 1px solid var(--border-light);
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ─── PAGE HEADER ─── */
.page-header {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 4rem 2rem 2rem;
}
.page-header h1 {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.page-header p {
  color: var(--text-secondary);
  font-size: 1rem;
  max-width: 540px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  .product-grid {
    grid-template-columns: 1fr;
  }
  .feature-list {
    grid-template-columns: 1fr;
  }
  .nav-links {
    display: none;
  }
  .footer-inner {
    flex-direction: column;
  }
  .footer-links {
    flex-direction: column;
    gap: 1.5rem;
  }
  .article-row {
    flex-direction: column;
    gap: 0.5rem;
  }
  .gated-box .input-row {
    flex-direction: column;
  }
  .page-header {
    padding: 3rem 1.5rem 1.5rem;
  }
  .section {
    padding: 3rem 1.5rem;
  }
  .hero {
    padding: 3rem 1.5rem 2rem;
  }
}
/* .logo img {
  max-height: 40px;
  margin-right: 6px;
} */
/* Dropdown container */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Button style (match your nav links) */
.dropbtn {
  background: none;
  border: none;
  /* color: inherit; */
  font: inherit;
  cursor: pointer;
  padding: 0;
  font-weight: 500;
  color: var(--text-secondary);
}

/* Dropdown content */
.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 180px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}

/* Links inside dropdown */
.dropdown-content a {
  display: block;
  padding: 10px 14px;
  color: var(--text-secondary);
  text-decoration: none;
}

.dropdown-content a:hover {
  background: #fff;
  /* color: var(--text); */
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Hero */
.hero_wizview {
  max-width: 700px;
  margin: 0 auto;
  padding: 2rem 2rem 3rem;
  text-align: center;
}
.badge_wizview {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: 3px;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}
.hero_wizview h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  line-height: 1.2;
  color: var(--text);
}
.hero_wizview p {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto 2rem;
}
.btn_wizview {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  padding: 0.8rem 1.8rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: background 0.2s;
}
.btn_wizview:hover {
  background: #1d4ed8;
}

/* Screenshot */
.preview_wizview {
  max-width: 98%;
  margin: 0 auto 4rem;
  padding: 0 2rem;
}
.preview-box_wizview {
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.preview-box_wizview img {
  width: 100%;
  display: block;
}

/* Features */
.features_wizview {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  border-top: 1px solid var(--border);
}
.feature_wizview {
  text-align: center;
}
.feature-icon_wizview {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.feature_wizview h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text);
}
.feature_wizview p {
  font-size: 0.9rem;
  color: var(--muted);
}

/* CTA */
.cta_wizview {
  background: #fafafa;
  padding: 4rem 2rem;
  text-align: center;
  border-top: 1px solid var(--border);
}
.cta_wizview h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: var(--text);
}
.cta_wizview p {
  color: var(--muted);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

/* Form */
.form-container {
  max-width: 500px;
  margin: 0 auto;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-align: left;
}
.form-group label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.05em;
}
.form-group input {
  padding: 0.7rem 1rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus {
  border-color: var(--blue);
}
.submit-btn {
  width: 100%;
  padding: 0.9rem;
  border: none;
  cursor: pointer;
}
#form-success h3 {
  color: var(--blue);
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .features {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  nav {
    padding: 1rem 1.5rem;
  }
  .hero {
    padding: 3rem 1.5rem 2rem;
  }
}

/* HERO */
.hero_eqwave {
  padding: 2rem 2.5rem 3rem;
  max-width: 720px;
  margin: 0 auto;
}
.badge_eqwave {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}
h1 {
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  line-height: 1.15;
  margin-bottom: 1.2rem;
  color: var(--black);
}
.hero-sub_eqwave {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}
.btn-row_eqwave {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn-primary_eqwave {
  background: var(--blue);
  color: #fff;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.75rem 1.8rem;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: opacity 0.2s;
}
.btn-primary_eqwave:hover {
  opacity: 0.85;
}
.btn-secondary_eqwave {
  background: transparent;
  color: var(--black);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.75rem 1.8rem;
  border: 1px solid var(--border);
  border-radius: 3px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.2s;
}
.btn-secondary_eqwave:hover {
  border-color: var(--blue);
  color: var(--blue);
}

/* SCREENSHOT */
.screenshot-wrap_eqwave {
  max-width: 98%;
  margin: 0 auto;
  padding: 0 2.5rem 4rem;
}
/* .screenshot-box_eqwave {
  border: 1px solid var(--border);
  background: var(--surface);
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}
.screenshot-box_eqwave img {
  width: 100%;
  border-radius: 4px;
  display: block;
} */
.ph-label_eqwave {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.06em;
}
.sep {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}
.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.form-wrap {
  background: var(--surfaceeqwave);
  border: 1px solid var(--border);
  border-top: 3px solid var(--blue);
  max-width: 640px;
  margin: 2rem auto;
  padding: 3rem 2.5rem;
}
input,
textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--black);
  padding: 0.7rem 0.9rem;
  font-family: "Inter", sans-serif;
  font-size: 0.88rem;
  border-radius: 3px;
  outline: none;
  width: 100%;
  transition: border-color 0.2s;
}
input:focus,
textarea:focus {
  border-color: var(--blue);
}
textarea {
  resize: vertical;
  min-height: 60px;
}

.section_fsimx {
  max-width: 800px;
  margin: 0 auto;
  padding: 3.5rem 2rem;
}
.features_fsimx {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.feat_fsimx {
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--border);
}
.feat_fsimx:nth-child(odd) {
  padding-right: 1.8rem;
  border-right: 1px solid var(--border);
}
.feat_fsimx:nth-child(even) {
  padding-left: 1.8rem;
}
.feat_fsimx h3 {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.15rem;
}
.feat_fsimx p {
  font-size: 0.8rem;
  color: var(--dim);
  line-height: 1.5;
}
.standards_fsimx {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 2rem 0;
}
.std-tag_fsimx {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
  color: var(--blue);
  border: 1px solid rgba(26, 60, 138, 0.2);
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
  letter-spacing: 0.03em;
}

.stag {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
  color: var(--dim);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.stag_h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--black);
}
.stag_h2 em {
  font-style: normal;
  color: var(--blue);
}
.form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 2px solid var(--blue);
  border-radius: var(--radius);
  padding: 2.5rem;
  margin: 3rem 0;
}
.fg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}
.fg .full {
  grid-column: 1 / -1;
}
.fg label {
  display: block;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.66rem;
  color: var(--dim);
  letter-spacing: 0.06em;
  margin-bottom: 0.2rem;
}
.fg input,
.fg select,
.fg textarea {
  width: 100%;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.6rem 0.8rem;
  font-size: 0.86rem;
  font-family: "Space Grotesk", sans-serif;
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.2s;
}
.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--blue);
}
.fg textarea {
  min-height: 55px;
  resize: vertical;
}

/* SECTIONS */
.section_home {
  max-width: 720px;
  margin: 0 auto;
  padding: 3.5rem 2.5rem;
}
.section-label_home {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  font-family: "JetBrains Mono", monospace;
}
.section_home h2 {
  font-weight: 700;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  margin-bottom: 0.6rem;
  color: var(--black);
  letter-spacing: -0.01em;
}
.section-sub_home {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 2rem;
}
/* PRODUCTS GRID */
.products {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--bg);
  margin-top: 0.5rem;
}
.product-card_h {
  background: var(--bg);
  padding: 1.6rem;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: background 0.15s;
}
.product-card_h:hover {
  background: var(--surface);
}
.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--black);
}
.card-badge {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.15rem 0.5rem;
  border-radius: 2px;
  font-family: "JetBrains Mono", monospace;
  white-space: nowrap;
}
.badge-early {
  color: #1a7a3a;
  background: #edf7f0;
  border: 1px solid #b6e2c4;
}
.badge-beta {
  color: var(--blue);
  background: #eef2f8;
  border: 1px solid #c5d3e8;
}
.badge-avail {
  color: #6b3fa0;
  background: #f5f0fc;
  border: 1px solid #d9c8f2;
}

.card-desc {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.55;
}
.card-link {
  font-size: 0.8rem;
  color: var(--blue);
  font-weight: 500;
  margin-top: 0.2rem;
}

/* ARTICLES */
.articles_h {
  list-style: none;
}
.articles_h li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.articles_h li:last-child {
  border-bottom: none;
}
.articles_h a {
  color: var(--black);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  flex: 1;
  transition: color 0.2s;
}
.articles_h a:hover {
  color: var(--blue);
}
.article-meta_h {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  flex-shrink: 0;
}
.a-tag_h {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 0.15rem 0.45rem;
  border-radius: 2px;
  letter-spacing: 0.04em;
  font-family: "JetBrains Mono", monospace;
}
.a-date_h {
  font-size: 0.75rem;
  color: var(--muted);
  font-family: "JetBrains Mono", monospace;
}
.view-all_h {
  display: inline-block;
  margin-top: 1.2rem;
  font-size: 0.85rem;
  color: var(--blue);
  font-weight: 500;
  text-decoration: none;
}
.view-all_h:hover {
  text-decoration: underline;
}

/* CTA STRIP */
.cta-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 3.5rem 2.5rem;
  text-align: center;
}
.cta-strip h2 {
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
}
.cta-strip p {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 1.6rem;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
.email-row {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  flex-wrap: wrap;
}
.email-row input {
  padding: 0.7rem 1rem;
  border: 1px solid var(--border);
  border-radius: 3px;
  font-family: "Inter", sans-serif;
  font-size: 0.88rem;
  outline: none;
  width: 260px;
  transition: border-color 0.2s;
}
.email-row input:focus {
  border-color: var(--blue);
}
.email-row button {
  background: var(--blue);
  color: #fff;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.7rem 1.4rem;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  transition: opacity 0.2s;
}
.email-row button:hover {
  opacity: 0.85;
}
.cta-success {
  display: none;
  color: var(--blue);
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 0.8rem;
}
