/* 256Insights Landing Page
 * White background, black text, smooth modern transitions.
 */

/* Root & Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Inter", "Segoe UI", sans-serif;
  background-color: #ffffff;
  color: #000000;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font: inherit;
}

.page-wrapper {
  min-height: 100vh;
  background: #ffffff;
  color: #000000;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Utilities */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #555555;
}

.eyebrow::before {
  content: "";
  width: 18px;
  height: 1px;
  background: #000000;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}

.section-header h2 {
  font-size: clamp(2.1rem, 3vw, 2.6rem);
  letter-spacing: -0.04em;
  margin: 0.4rem 0 0.75rem;
}

.section-subtitle {
  margin: 0;
  font-size: 0.95rem;
  color: #444444;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  border: 1px solid #000000;
  background: transparent;
  color: #000000;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition:
    background-color 200ms ease,
    color 200ms ease,
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 200ms ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.btn:active {
  transform: translateY(0);
  box-shadow: none;
}

.btn-primary {
  background: #000000;
  color: #ffffff;
}

.btn-primary:hover {
  background: #111111;
}

.btn-ghost {
  background: rgba(0, 0, 0, 0.03);
}

.btn-ghost:hover {
  background: rgba(0, 0, 0, 0.06);
}

.btn-outline {
  background: transparent;
}

.btn-lg {
  padding: 0.7rem 1.6rem;
  font-size: 0.95rem;
}

.btn-block {
  width: 100%;
  justify-content: center;
}

/* Header / Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.brand-name {
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.brand-tagline {
  font-size: 0.7rem;
  color: #555555;
}

.nav {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 1.5rem;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
}

.nav-list a {
  position: relative;
  padding-bottom: 0.15rem;
}

.nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: #000000;
  transition: width 180ms ease;
}

.nav-list a:hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-left: auto;
}

/* Profile dropdown (authenticated) */
.profile-dropdown {
  position: relative;
}

.profile-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: #ffffff;
  cursor: pointer;
  transition: background 150ms ease, border-color 150ms ease;
}

.profile-trigger:hover {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.22);
}

.profile-icon {
  width: 22px;
  height: 22px;
  color: #000000;
}

.profile-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  min-width: 160px;
  padding: 0.35rem 0;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 0.6rem;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  display: none;
  z-index: 30;
}

.profile-dropdown-menu.is-open {
  display: block;
}

.profile-dropdown-item {
  display: block;
  width: 100%;
  padding: 0.5rem 1rem;
  text-align: left;
  font-size: 0.9rem;
  color: #222222;
  text-decoration: none;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background 120ms ease;
}

.profile-dropdown-item:hover {
  background: rgba(0, 0, 0, 0.05);
}

.profile-dropdown-form {
  margin: 0;
  padding: 0;
}

.profile-dropdown-logout {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  margin-top: 0.25rem;
  padding-top: 0.6rem;
}

.nav-toggle {
  display: none;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: #ffffff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  width: 16px;
  height: 1.5px;
  background: #000000;
  transition:
    transform 200ms ease,
    opacity 200ms ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  transform: translateY(-3.5px) rotate(-45deg);
}

/* Hero */
.hero-section {
  padding: 3.5rem 0 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 3.5rem;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.6rem, 4vw, 3.2rem);
  letter-spacing: -0.05em;
  margin: 0.75rem 0 0.7rem;
}

.hero-subtitle {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.6;
  color: #333333;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.9rem 0 1.4rem;
}

.hero-meta {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.04);
  font-size: 0.8rem;
  color: #444444;
  max-width: max-content;
}

.hero-pill .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: 1px solid #000000;
  background: #ffffff;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.stat-number {
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.stat-label {
  font-size: 0.75rem;
  color: #555555;
}

/* Hero Visual */
.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-dashboard {
  width: 100%;
  max-width: 420px;
  border-radius: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: linear-gradient(145deg, #ffffff, #f8f8f8);
  padding: 0.9rem;
  position: relative;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(0, 0, 0, 0.02);
  overflow: hidden;
}

.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.window-dots {
  display: flex;
  gap: 0.35rem;
}

.window-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.35);
}

.dashboard-title {
  font-size: 0.75rem;
  color: #444444;
}

.dashboard-body {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0.9rem;
}

.dashboard-stream {
  padding: 0.7rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: rgba(255, 255, 255, 0.9);
}

.stream-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
}

.stream-badge {
  padding: 0.1rem 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.4);
  font-size: 0.65rem;
}

.stream-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-size: 0.75rem;
  color: #333333;
}

.stream-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: 1px solid #000000;
  display: inline-block;
  margin-right: 0.35rem;
}

.dashboard-metrics {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.metric-card {
  padding: 0.5rem 0.6rem;
  border-radius: 0.8rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: rgba(255, 255, 255, 0.9);
}

.metric-label {
  font-size: 0.7rem;
  color: #555555;
}

.metric-bar-group {
  margin-top: 0.35rem;
  display: flex;
  gap: 0.2rem;
}

.metric-bar {
  flex: 1;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, #000000, rgba(0, 0, 0, 0.3));
  opacity: 0.75;
}

.sparkline {
  margin-top: 0.4rem;
  height: 36px;
  border-radius: 0.7rem;
  border: 1px dashed rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
}

.sparkline::before {
  content: "";
  position: absolute;
  left: -40%;
  top: 55%;
  width: 180%;
  height: 2px;
  background: #000000;
  transform: skewY(-8deg);
}

.radar-grid {
  margin-top: 0.35rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.3rem;
}

.radar-grid span {
  border-radius: 0.7rem;
  border: 1px solid rgba(0, 0, 0, 0.18);
  height: 18px;
}

.dashboard-play {
  position: absolute;
  left: 50%;
  bottom: 0.9rem;
  transform: translateX(-50%);
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.9);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.dashboard-play .triangle {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  border: 1px solid #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.dashboard-play .triangle::before {
  content: "";
  border-left: 4px solid #000000;
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
}

/* Trusted logos */
.trusted-section {
  padding: 0.5rem 0 2.75rem;
}

.trusted-header {
  text-align: center;
  margin-bottom: 1.4rem;
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.logo-pill {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px dashed rgba(0, 0, 0, 0.35);
  font-size: 0.8rem;
  color: #333333;
}

/* Process */
.process-section {
  padding: 2.8rem 0 3.2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

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

.process-card {
  padding: 1.2rem 1.2rem 1.3rem;
  border-radius: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.04);
}

.process-step {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #666666;
  margin-bottom: 0.4rem;
}

.process-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
}

.process-card p {
  margin: 0 0 0.7rem;
  font-size: 0.9rem;
  color: #444444;
}

.process-list {
  padding-left: 1rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: 0.85rem;
  color: #333333;
}

/* Bento grid – Services */
.bento-section {
  padding: 3rem 0 3.2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(140px, auto);
  gap: 1rem;
  max-width: 100%;
}

.bento-cell {
  padding: 1.25rem 1.3rem;
  border-radius: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: linear-gradient(145deg, #ffffff, #f8f8f8);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.bento-cell:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.bento-cell--wide {
  grid-column: span 2;
}

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

.bento-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.bento-cell h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.bento-cell p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: #444444;
}

/* Who it's for – Audience */
.audience-section {
  padding: 3rem 0 3.2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.audience-card {
  padding: 1.2rem 1.3rem;
  border-radius: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #ffffff;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.audience-card:hover {
  border-color: rgba(0, 0, 0, 0.12);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.audience-card--wide {
  grid-column: span 2;
}

.audience-label {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
}

.audience-card p {
  margin: 0;
  font-size: 0.9rem;
  color: #444444;
  line-height: 1.5;
}

/* Why choose us */
.why-section {
  padding: 3rem 0 3.2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.why-card {
  padding: 1.3rem 1.4rem;
  border-radius: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: linear-gradient(135deg, #ffffff, #fafafa);
}

.why-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.02rem;
  font-weight: 600;
}

.why-card p {
  margin: 0;
  font-size: 0.9rem;
  color: #444444;
  line-height: 1.55;
}

/* Use cases */
.use-cases-section {
  padding: 3rem 0 3.2rem;
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.6rem;
}

.use-case-card {
  padding: 1.3rem 1.3rem 1.4rem;
  border-radius: 1.1rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: linear-gradient(135deg, #ffffff, #f5f5f5);
}

.use-case-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.02rem;
}

.use-case-card p {
  margin: 0 0 0.7rem;
  font-size: 0.9rem;
  color: #444444;
}

.use-case-card ul {
  margin: 0;
  padding-left: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.85rem;
}

.mid-cta-section {
  padding: 1.8rem 0 2.1rem;
}

.mid-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
  padding: 1.3rem 1.4rem;
  border-radius: 1.2rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: linear-gradient(135deg, #ffffff, #f5f5f5);
}

.mid-cta-copy h2 {
  margin: 0.3rem 0 0.55rem;
  font-size: 1.8rem;
  letter-spacing: -0.05em;
}

.mid-cta-copy p {
  margin: 0;
  font-size: 0.95rem;
  color: #333333;
}

.mid-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: flex-end;
}

/* Integrations */
.integrations-section {
  padding: 3rem 0 3.2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.integrations-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.6rem;
}

.integration-group h3 {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.chip {
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  font-size: 0.8rem;
}

/* Insights */
.insights-section {
  padding: 3rem 0 3.2rem;
}

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

.insight-card {
  padding: 1.1rem 1.2rem 1.3rem;
  border-radius: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.9);
}

.insight-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #777777;
  margin: 0 0 0.4rem;
}

.insight-card h3 {
  margin: 0 0 0.45rem;
  font-size: 0.98rem;
}

.insight-card p {
  margin: 0;
  font-size: 0.9rem;
  color: #444444;
}

/* Testimonials */
.testimonials-section {
  padding: 3rem 0 3.2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

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

.testimonial-card {
  padding: 1.3rem 1.3rem 1.4rem;
  border-radius: 1.1rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #ffffff;
}

.testimonial-card .quote {
  margin: 0 0 0.7rem;
  font-size: 0.9rem;
  line-height: 1.7;
}

.testimonial-card .author {
  margin: 0;
  font-size: 0.8rem;
  color: #777777;
}

/* Pricing */
.pricing-section {
  padding: 3rem 0 3.2rem;
}

.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.8rem;
}

.billing-label {
  cursor: pointer;
  color: #777777;
}

.billing-label--active {
  color: #000000;
}

.billing-switch {
  position: relative;
  width: 42px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  padding: 0 2px;
  cursor: pointer;
}

.billing-knob {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #000000;
  left: 3px;
  transition: transform 200ms ease;
}

.billing-switch.is-yearly .billing-knob {
  transform: translateX(18px);
}

.badge {
  padding: 0.1rem 0.4rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.25);
  font-size: 0.7rem;
}

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

.post-pricing-cta-section {
  padding: 1.2rem 0 2.2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.post-pricing-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.1rem 1.4rem;
  border-radius: 1.2rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: linear-gradient(120deg, #ffffff, #f5f5f5);
}

.post-pricing-copy h2 {
  margin: 0.3rem 0 0.5rem;
  font-size: 1.6rem;
  letter-spacing: -0.05em;
}

.post-pricing-copy p {
  margin: 0;
  font-size: 0.92rem;
  color: #333333;
}

.post-pricing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: flex-end;
}

.pricing-card {
  padding: 1.4rem 1.3rem 1.6rem;
  border-radius: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.pricing-card--highlight {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.pricing-card--highlight .btn-primary {
  background: #ffffff;
  color: #000000;
}

.pricing-card--highlight .plan-tagline,
.pricing-card--highlight .plan-features li {
  color: #e7e7e7;
}

.plan-name {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.plan-price {
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 0.15rem;
}

.currency {
  font-size: 1.1rem;
}

.amount {
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: -0.08em;
}

.plan-period {
  font-size: 0.8rem;
  color: #666666;
}

.pricing-card--highlight .plan-period {
  color: #bbbbbb;
}

.plan-tagline {
  margin: 0;
  font-size: 0.88rem;
  color: #444444;
}

.plan-features {
  margin: 0;
  padding-left: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.85rem;
  color: #333333;
}

/* CTA & Newsletter */
.cta-section {
  padding: 3rem 0 3.2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.cta-copy h2 {
  margin: 0.4rem 0 0.75rem;
  font-size: 2rem;
  letter-spacing: -0.05em;
}

.cta-copy p {
  margin: 0 0 1.1rem;
  font-size: 0.95rem;
  color: #333333;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.cta-newsletter {
  padding: 1.4rem 1.4rem 1.6rem;
  border-radius: 1.1rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #ffffff;
}

.cta-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #777777;
  margin: 0 0 0.4rem;
}

.cta-newsletter h3 {
  margin: 0 0 0.9rem;
  font-size: 1.05rem;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.newsletter-row {
  display: flex;
  gap: 0.6rem;
}

.newsletter-input {
  flex: 1;
  padding: 0.55rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.22);
  font-size: 0.9rem;
  outline: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.newsletter-input:focus {
  border-color: #000000;
  box-shadow: 0 0 0 1px #000000;
}

.newsletter-note {
  margin: 0;
  font-size: 0.78rem;
  color: #666666;
}

/* Footer */
.site-footer {
  padding: 2.3rem 0 1.6rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 1.8rem;
  align-items: flex-start;
  font-size: 0.82rem;
}

.brand--footer .brand-tagline {
  color: #444444;
}

.footer-copy {
  margin: 0.7rem 0 0;
  color: #666666;
  font-size: 0.78rem;
}

.footer-columns {
  display: flex;
  gap: 2.5rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-heading {
  margin: 0 0 0.4rem;
  font-weight: 600;
  font-size: 0.8rem;
}

.footer-column a {
  color: #555555;
}

.footer-column a:hover {
  color: #000000;
}

.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  align-items: flex-end;
}

.footer-meta a {
  color: #555555;
}

.footer-meta a:hover {
  color: #000000;
}

/* Reveal on scroll animations */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 480ms ease,
    transform 480ms ease;
}

.reveal.delay-1 {
  transition-delay: 80ms;
}

.reveal.delay-2 {
  transition-delay: 160ms;
}

.reveal.delay-3 {
  transition-delay: 240ms;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.1fr);
  }

  .hero-visual {
    order: -1;
  }

  .hero-section {
    padding-top: 2.6rem;
  }

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

  .bento-cell--wide {
    grid-column: span 2;
  }

  .bento-cell--tall {
    grid-row: span 1;
  }

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

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

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

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

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

  .pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 1.8rem;
  }

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

  .cta-newsletter {
    order: -1;
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.6fr);
    row-gap: 1.4rem;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transform-origin: top;
    transform: scaleY(0.9);
    opacity: 0;
    pointer-events: none;
    transition:
      opacity 160ms ease,
      transform 160ms ease;
  }

  .nav.is-open {
    opacity: 1;
    transform: scaleY(1);
    pointer-events: auto;
  }

  .nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.75rem 1.5rem 1rem;
  }

  .nav-cta {
    padding: 0 1.5rem 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding-top: 1rem;
    gap: 0.6rem;
  }

  .nav-cta .btn {
    display: block;
    text-align: center;
  }

  .nav-cta .profile-dropdown {
    width: 100%;
  }

  .nav-cta .profile-trigger {
    width: 100%;
    justify-content: center;
  }

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

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

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

  .bento-cell--wide,
  .bento-cell--tall {
    grid-column: span 1;
    grid-row: span 1;
  }

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

  .audience-card--wide {
    grid-column: span 1;
  }

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

  .use-cases-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .mid-cta {
    flex-direction: column;
    align-items: flex-start;
  }

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

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

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

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

  .post-pricing-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .newsletter-row {
    flex-direction: column;
  }

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

  .footer-meta {
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    grid-template-columns: minmax(0, 1fr);
  }

  .nav-container {
    padding-inline: 1.1rem;
  }

  .section-header {
    text-align: left;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }
}

