/* ── Reset ─────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

/* ── Theme tokens ─────────────────────────────────── */
:root,
[data-theme="light"] {
  --bg:        #FAF8F5;
  --bg-alt:    #F0ECE6;
  --surface:   #FFFFFF;
  --text:      #1A1613;
  --text-mid:  #5C5550;
  --text-soft: #8A837C;
  --accent:    #C4622D;
  --accent-hover: #A84F1F;
  --accent-soft: rgba(196, 98, 45, 0.08);
  --border:    #E2DDD6;
  --border-strong: #C9C2B8;
  --card-shadow: 0 1px 3px rgba(26, 22, 19, 0.04), 0 4px 16px rgba(26, 22, 19, 0.04);
  --card-shadow-hover: 0 2px 8px rgba(26, 22, 19, 0.06), 0 8px 32px rgba(26, 22, 19, 0.06);
  --highlight-bg: #C4622D;
  --highlight-text: #FFFFFF;
  --code-bg: #F0ECE6;
  --orbit-stroke: rgba(26, 22, 19, 0.10);
  --orbit-dot: rgba(196, 98, 45, 0.45);
}

[data-theme="dark"] {
  --bg:        #141210;
  --bg-alt:    #1C1A17;
  --surface:   #201E1B;
  --text:      #EDE9E3;
  --text-mid:  #A9A29A;
  --text-soft: #716B64;
  --accent:    #E07A3E;
  --accent-hover: #F09050;
  --accent-soft: rgba(224, 122, 62, 0.1);
  --border:    #2E2B27;
  --border-strong: #3E3A35;
  --card-shadow: 0 1px 3px rgba(0, 0, 0, 0.2), 0 4px 16px rgba(0, 0, 0, 0.15);
  --card-shadow-hover: 0 2px 8px rgba(0, 0, 0, 0.25), 0 8px 32px rgba(0, 0, 0, 0.2);
  --highlight-bg: #E07A3E;
  --highlight-text: #141210;
  --code-bg: #1C1A17;
  --orbit-stroke: rgba(237, 233, 227, 0.09);
  --orbit-dot: rgba(224, 122, 62, 0.55);
}

/* ── Base ──────────────────────────────────────────── */
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "DM Sans", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 1rem;
}

/* ── Typography ───────────────────────────────────── */
h1, h2, h3 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

/* ── Layout ───────────────────────────────────────── */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Animated orbital background ──────────────────── */
.orbits-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.orbits-bg svg {
  width: 100%;
  height: 100%;
}


/* ── Header ───────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  background: color-mix(in srgb, var(--bg) 85%, transparent);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 3.75rem;
}

.site-header .logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "DM Sans", system-ui, sans-serif;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  flex-shrink: 0;
}

.logo-wordmark {
  display: inline;
  font-size: 1.075rem;
  letter-spacing: -0.025em;
}

.logo-get {
  color: var(--accent);
  font-weight: 500;
  margin-right: 0.15em;
}

.logo-brand {
  color: var(--text);
  font-weight: 700;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.site-header nav a {
  color: var(--text-mid);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.15s;
}

.site-header nav a:hover {
  color: var(--text);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-signin {
  padding: 0.4rem 1rem;
  border: 1px solid var(--border-strong);
  border-radius: 6px;
  transition: border-color 0.15s, color 0.15s;
}

.btn-signin:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-header-cta {
  padding: 0.4rem 1rem;
  background: var(--accent);
  color: #fff !important;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.15s;
}

.btn-header-cta:hover {
  background: var(--accent-hover);
  color: #fff !important;
}

/* ── Hero ──────────────────────────────────────────── */
.hero {
  position: relative;
  z-index: 1;
  padding: 7rem 0 5rem;
  text-align: center;
}

.hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  margin-bottom: 1.25rem;
  color: var(--text);
}

.hero h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero .subtitle {
  font-size: 1.15rem;
  color: var(--text-mid);
  max-width: 580px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero .tech-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.hero .tech-pills span {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 1rem;
  border: 1px solid var(--border-strong);
  border-radius: 99px;
  font-size: 0.825rem;
  font-weight: 500;
  color: var(--text-mid);
  background: var(--surface);
}

.btn-primary {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, transform 0.1s;
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

/* ── AI Screenshot Carousel ─────────────────────────── */
.ai-carousel {
  max-width: 900px;
  margin: 3rem auto 2.5rem;
  text-align: left;
}

.carousel-wrapper {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(26, 22, 19, 0.08), 0 1px 4px rgba(26, 22, 19, 0.04);
  background: var(--surface);
}

.carousel-stage {
  position: relative;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
  min-width: 100%;
  flex-shrink: 0;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  backdrop-filter: blur(8px);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-mid);
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.carousel-btn:hover {
  background: var(--surface);
  color: var(--text);
  border-color: var(--border-strong);
}

.carousel-btn.prev { left: 0.875rem; }
.carousel-btn.next { right: 0.875rem; }

.carousel-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.carousel-footer {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.75rem 1.25rem;
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.carousel-dots {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
}

.carousel-dots .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border-strong);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}

.carousel-dots .dot.active {
  background: var(--accent);
  transform: scale(1.4);
}

.carousel-caption {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.caption-sep {
  color: var(--border-strong);
}

.caption-text {
  color: var(--text-soft);
}

.ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

.ai-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.ai-badge.claude .ai-badge-dot { background: #D97706; }
.ai-badge.chatgpt .ai-badge-dot { background: #10A37F; }
.ai-badge.gemini .ai-badge-dot { background: #4285F4; }

/* ── Screenshot Mockup ─────────────────────────────── */

.screenshot-mockup {
  width: 100%;
  height: 500px;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.mock-titlebar {
  height: 38px;
  background: color-mix(in srgb, var(--bg-alt) 90%, var(--surface));
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 1rem;
  gap: 0.75rem;
  flex-shrink: 0;
}

.mock-dots {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}

.mock-dots span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.mock-dots span:nth-child(1) { background: #FF5F57; }
.mock-dots span:nth-child(2) { background: #FFBD2E; }
.mock-dots span:nth-child(3) { background: #28CA41; }

[data-theme="dark"] .mock-dots span:nth-child(1) { background: #5C2E2A; }
[data-theme="dark"] .mock-dots span:nth-child(2) { background: #5C4A1A; }
[data-theme="dark"] .mock-dots span:nth-child(3) { background: #1A4A28; }

.mock-title-text {
  font-size: 0.75rem;
  color: var(--text-soft);
  font-weight: 500;
}

.mock-body {
  display: flex;
  flex: 1;
  overflow: hidden;
}

.mock-sidebar {
  width: 210px;
  background: var(--bg-alt);
  border-right: 1px solid var(--border);
  padding: 0.875rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex-shrink: 0;
}

.mock-sidebar-new {
  height: 30px;
  border-radius: 6px;
  background: var(--border-strong);
  opacity: 0.45;
  margin-bottom: 0.25rem;
}

.mock-sidebar-divider {
  height: 1px;
  background: var(--border);
  margin: 0.25rem 0 0.5rem;
}

.mock-sidebar-item {
  height: 26px;
  border-radius: 6px;
  background: var(--border);
  opacity: 0.5;
}

.mock-sidebar-item.short {
  width: 65%;
}

.mock-sidebar-item.active-item {
  background: var(--accent-soft);
  border: 1px solid rgba(196, 98, 45, 0.25);
  opacity: 1;
}

.mock-sidebar-item.chatgpt-accent {
  background: rgba(16, 163, 127, 0.1);
  border-color: rgba(16, 163, 127, 0.25);
}

.mock-sidebar-item.gemini-accent {
  background: rgba(66, 133, 244, 0.1);
  border-color: rgba(66, 133, 244, 0.25);
}

.mock-messages {
  flex: 1;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  overflow: hidden;
}

.mock-message {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.mock-message.user {
  justify-content: flex-end;
}

.mock-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 1px solid rgba(196, 98, 45, 0.2);
  flex-shrink: 0;
  margin-top: 2px;
}

.mock-avatar.chatgpt-avatar {
  background: rgba(16, 163, 127, 0.12);
  border-color: rgba(16, 163, 127, 0.2);
}

.mock-avatar.gemini-avatar {
  background: rgba(66, 133, 244, 0.12);
  border-color: rgba(66, 133, 244, 0.2);
}

.mock-bubble {
  max-width: 70%;
  padding: 0.875rem 1.125rem;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.user-bubble {
  background: var(--accent);
  border-bottom-right-radius: 4px;
}

.chatgpt-bubble {
  background: #10A37F;
}

.gemini-bubble {
  background: #4285F4;
}

.ai-bubble {
  background: var(--surface);
  border: 1px solid var(--border);
  border-bottom-left-radius: 4px;
}

.mock-line {
  height: 9px;
  border-radius: 5px;
}

.user-bubble .mock-line { background: rgba(255, 255, 255, 0.38); }
.ai-bubble .mock-line { background: var(--border); }

.mock-line.full { width: 100%; }
.mock-line.three-quarter { width: 75%; }
.mock-line.two-third { width: 65%; }
.mock-line.half { width: 50%; }

.mock-spacer {
  height: 6px;
}

/* ── Why Section ─────────────────────────────────── */
.why-section {
  position: relative;
  z-index: 1;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 4.5rem 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 4rem;
  max-width: 840px;
  margin: 0 auto;
}

.why-card {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
}

.why-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.why-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent);
}

.why-body h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.why-body p {
  color: var(--text-mid);
  font-size: 0.875rem;
  line-height: 1.7;
  margin: 0;
}

.why-body p em {
  font-style: italic;
  color: var(--text);
}

@media (max-width: 640px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ── Steps / How it works ─────────────────────────── */
.steps {
  position: relative;
  z-index: 1;
  background: var(--bg-alt);
  padding: 5rem 0;
}

.steps h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
}

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

.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem 1.75rem;
  box-shadow: var(--card-shadow);
  transition: box-shadow 0.2s, transform 0.15s;
}

.step-card:hover {
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-2px);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.step-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}

.step-card p {
  color: var(--text-mid);
  font-size: 0.9rem;
  line-height: 1.6;
}

.step-card a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

.step-card a:hover {
  text-decoration: underline;
}

/* ── Conversations ────────────────────────────────── */
.conversations {
  position: relative;
  z-index: 1;
  background: var(--bg-alt);
  padding: 5rem 0;
}

.conversations h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.conversations-sub {
  text-align: center;
  color: var(--text-mid);
  margin-bottom: 3rem;
  font-size: 1rem;
}

.starters-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.starter-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem 1.5rem 1.5rem;
  box-shadow: var(--card-shadow);
  position: relative;
  transition: box-shadow 0.2s, transform 0.15s;
}

.starter-card:hover {
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-2px);
}

.starter-quote {
  font-family: "Fraunces", Georgia, serif;
  font-size: 3rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.35;
  display: block;
  margin-bottom: 0.5rem;
  margin-top: -0.5rem;
}

.starter-card p {
  color: var(--text-mid);
  font-size: 0.9rem;
  line-height: 1.65;
  font-style: italic;
}

/* ── Pricing ──────────────────────────────────────── */
.pricing {
  position: relative;
  z-index: 1;
  padding: 5rem 0;
}

.pricing h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.pricing .pricing-sub {
  text-align: center;
  color: var(--text-mid);
  margin-bottom: 3rem;
  font-size: 1rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  align-items: start;
  max-width: 680px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.25rem 2rem;
  box-shadow: var(--card-shadow);
  transition: box-shadow 0.2s;
}

.pricing-card.featured {
  border-color: var(--accent);
  position: relative;
}

.pricing-card.featured::before {
  content: "Recommended";
  position: absolute;
  top: -0.7rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--highlight-bg);
  color: var(--highlight-text);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.85rem;
  border-radius: 99px;
  letter-spacing: 0.02em;
}

.pricing-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

.pricing-card .price {
  font-family: "Fraunces", Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
}

.pricing-card .price-period {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-soft);
}

.pricing-card .features {
  list-style: none;
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.pricing-card .features li {
  font-size: 0.9rem;
  color: var(--text-mid);
  padding-left: 1.4rem;
  position: relative;
}

.pricing-card .features li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 600;
}

.pricing-card .btn-plan {
  display: block;
  width: 100%;
  padding: 0.7rem;
  text-align: center;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.pricing-card .btn-plan.outline {
  border: 1px solid var(--border-strong);
  background: transparent;
  color: var(--text);
}

.pricing-card .btn-plan.outline:hover {
  background: var(--accent-soft);
  border-color: var(--accent);
  color: var(--accent);
}

.pricing-card .btn-plan.solid {
  border: none;
  background: var(--accent);
  color: #fff;
}

.pricing-card .btn-plan.solid:hover {
  background: var(--accent-hover);
}

/* ── Footer ───────────────────────────────────────── */
.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 3rem 0;
}

.site-footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.footer-brand svg {
  display: block;
  opacity: 0.2;
}

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

.footer-invite {
  font-size: 0.9rem;
  color: var(--text-mid);
  text-align: right;
}

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

.footer-invite a:hover {
  color: var(--accent-hover);
}

.site-footer .copy {
  font-size: 0.825rem;
  color: var(--text-soft);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer-links a {
  font-size: 0.825rem;
  color: var(--text-soft);
  text-decoration: none;
  transition: color 0.15s;
}

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

#theme-toggle {
  background: none;
  border: 1px solid var(--border);
  border-radius: 6px;
  width: 2rem;
  height: 2rem;
  cursor: pointer;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-mid);
  transition: border-color 0.15s, color 0.15s;
}

#theme-toggle:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ── Currency Selector ────────────────────────────── */
.pricing-currency-row {
  display: flex;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.currency-selector {
  position: relative;
}

.currency-btn {
  background: none;
  border: 1px solid var(--border);
  border-radius: 6px;
  cursor: pointer;
  color: var(--text-mid);
  font-size: 0.825rem;
  font-weight: 500;
  font-family: inherit;
  padding: 0.3rem 0.65rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: color 0.15s, border-color 0.15s;
}

.currency-btn:hover {
  color: var(--text);
  border-color: var(--border-strong);
}

.currency-globe {
  flex-shrink: 0;
  opacity: 0.65;
}

.currency-caret {
  font-size: 0.65rem;
  opacity: 0.6;
}

.currency-dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%);
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  box-shadow: var(--card-shadow-hover);
  min-width: 190px;
  padding: 0.35rem 0;
  z-index: 200;
  list-style: none;
  margin: 0;
}

.currency-dropdown-header {
  padding: 0.5rem 1rem 0.3rem;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  cursor: default;
  pointer-events: none;
}

.currency-dropdown li:not(.currency-dropdown-header) {
  padding: 0.5rem 1rem;
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--text-mid);
  white-space: nowrap;
  transition: background 0.1s;
}

.currency-dropdown li:not(.currency-dropdown-header):hover {
  background: var(--bg-alt);
  color: var(--text);
}

.currency-dropdown li[aria-selected="true"] {
  font-weight: 600;
  color: var(--accent);
}

.price-note {
  font-size: 0.78rem;
  color: var(--text-soft);
  margin-top: -0.35rem;
  margin-bottom: 0.5rem;
}

/* ── Connect your favorite AI ─────────────────────── */
.connect {
  position: relative;
  z-index: 1;
  background: var(--bg);
  padding: 5rem 0;
}

.connect h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.connect-sub {
  text-align: center;
  color: var(--text-mid);
  margin-bottom: 3rem;
  font-size: 1rem;
}

.connect-accordion {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Accordion item */
.acc-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.acc-item.open {
  border-color: var(--border-strong);
  box-shadow: var(--card-shadow-hover);
}

.acc-header {
  width: 100%;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.875rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  transition: background 0.15s;
}

.acc-header:hover {
  background: var(--bg-alt);
}

.acc-provider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.acc-title {
  flex: 1;
}

.acc-arrow {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--text-soft);
  transition: transform 0.3s ease;
}

.acc-item.open .acc-arrow {
  transform: rotate(180deg);
}

/* Smooth height animation via CSS grid */
.acc-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}

.acc-item.open .acc-body {
  grid-template-rows: 1fr;
}

.acc-body-inner {
  min-height: 0;
  overflow: hidden;
}

/* Content area (with tabs) */
.acc-body-content {
  border-top: 1px solid var(--border);
}

.connect-tabs .tabs-nav {
  display: flex;
  border-bottom: 1px solid var(--border);
  padding: 0 1.5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.connect-tabs .tabs-nav::-webkit-scrollbar {
  display: none;
}

.tab-btn {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 0.75rem 1rem 0.65rem;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-soft);
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s;
  margin-bottom: -1px;
  white-space: nowrap;
  flex-shrink: 0;
}

.tab-btn:hover {
  color: var(--text);
}

.tab-btn.active {
  color: var(--text);
  border-bottom-color: var(--accent);
  font-weight: 600;
}

.connect-tabs .tab-panes {
  padding: 1.25rem 1.5rem 1.5rem;
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}

/* Content area (no tabs — Others) */
.acc-body-plain {
  padding: 1.25rem 1.5rem 1.5rem;
  border-top: 1px solid var(--border);
}

/* Connect content elements */
.connect-desc {
  font-size: 0.9rem;
  color: var(--text-mid);
  margin-bottom: 0.875rem;
  line-height: 1.6;
}

.connect-desc code {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 0.82em;
  background: var(--code-bg);
  padding: 0.1em 0.4em;
  border-radius: 4px;
  color: var(--text);
}

.code-block {
  position: relative;
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.code-block pre {
  background: var(--code-bg);
  padding: 1rem 3.5rem 1rem 1.25rem;
  overflow-x: auto;
  font-size: 0.82rem;
  line-height: 1.65;
  margin: 0;
}

.code-block code {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  color: var(--text);
  background: none;
  font-size: inherit;
}

.code-copy {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 5px;
  padding: 0.2rem 0.6rem;
  font-size: 0.72rem;
  font-family: inherit;
  color: var(--text-soft);
  cursor: pointer;
  font-weight: 500;
  line-height: 1.5;
  transition: background 0.15s, color 0.15s;
}

.code-copy:hover {
  background: var(--bg-alt);
  color: var(--text);
}

.connect-paths {
  font-size: 0.8rem;
  color: var(--text-soft);
  margin-bottom: 1rem;
  line-height: 1.9;
}

.connect-path-label {
  font-weight: 600;
  color: var(--text-mid);
}

.connect-paths code {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 0.9em;
  background: var(--code-bg);
  padding: 0.1em 0.4em;
  border-radius: 4px;
  color: var(--text-mid);
}

.connect-docs-link {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition: color 0.15s;
}

.connect-docs-link:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}

.connect-unsupported {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
}

.connect-unsupported p {
  color: var(--text-mid);
  font-size: 0.9rem;
}

.connect-steps {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.6;
  padding-left: 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
}

.connect-steps li {
  padding-left: 0.25rem;
}

.connect-steps .code-block {
  margin-top: 0.4rem;
  margin-bottom: 0;
}

.connect-field-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.75rem;
  margin-bottom: 0.3rem;
}

.connect-screenshots-note {
  font-size: 0.82rem;
  color: var(--text-soft);
  font-style: italic;
  margin-top: -0.25rem;
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 768px) {
  .steps-grid,
  .pricing-grid,
  .starters-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .hero { padding: 4rem 0 3rem; }

  .site-header nav { gap: 0.75rem; }
  .site-header nav a { font-size: 0.8rem; }
  .btn-header-cta { display: none; }

  .hero .tech-pills { flex-wrap: wrap; justify-content: center; }

  .ai-carousel {
    margin: 2rem auto 2rem;
  }

  .screenshot-mockup {
    height: 380px;
  }

  .connect-paths code {
    word-break: break-all;
  }

  .mock-sidebar {
    display: none;
  }

  .mock-messages {
    padding: 1.25rem 1rem;
  }

  .mock-bubble {
    max-width: 85%;
  }
}
