:root {
  --bg-color: #0b1220;
  --bg-solid: #111827;
  --bg-elevated: #162033;
  --text-primary: #f8fafc;
  --text-secondary: #a8b3c7;
  --text-muted: #71809a;
  --accent-primary: #38bdf8;
  --accent-primary-hover: #0ea5e9;
  --accent-secondary: #6366f1;
  --accent-green: #22c55e;
  --accent-amber: #f59e0b;
  --color-danger: #f43f5e;
  --color-success: #22c55e;
  --gradient-brand: linear-gradient(135deg, #38bdf8 0%, #6366f1 58%, #22c55e 100%);
  --glass-bg: rgba(17, 24, 39, 0.62);
  --glass-border: rgba(226, 232, 240, 0.12);
  --glass-shadow: 0 24px 80px rgba(2, 6, 23, 0.45);
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s var(--ease-out);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  font-family: var(--font-body);
  background:
    linear-gradient(180deg, rgba(56, 189, 248, 0.05), transparent 520px),
    var(--bg-color);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6,
.display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
  font-family: var(--font-heading);
  letter-spacing: 0;
  color: var(--text-primary);
  line-height: 1.12;
}

p {
  color: var(--text-secondary);
}

a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--text-primary);
}

i[data-lucide],
svg[data-lucide] {
  width: 1rem;
  height: 1rem;
  stroke-width: 2;
}

.section-padding {
  padding: 6rem 0;
}

.section-header {
  max-width: 760px;
}

.section-header h2,
.cta-section h2 {
  background: linear-gradient(180deg, #ffffff 20%, #b6c2d6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-intro {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.dark-section {
  background: rgba(2, 6, 23, 0.32);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.eyebrow,
.eyebrow-inline {
  color: var(--accent-primary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 0.32rem 0.8rem;
  margin-bottom: 1.25rem;
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 999px;
}

.eyebrow-inline {
  display: block;
  margin-bottom: 0.85rem;
  text-transform: uppercase;
}

.btn {
  font-family: var(--font-heading);
  font-weight: 700;
  border: none;
  transition: all var(--transition-normal);
  padding: 0.78rem 1.45rem;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  font-size: 0.95rem;
}

.btn-primary {
  background: var(--gradient-brand);
  color: #fff;
  box-shadow: 0 10px 30px rgba(56, 189, 248, 0.2);
}

.btn-primary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(99, 102, 241, 0.28);
}

.btn-secondary {
  background: rgba(226, 232, 240, 0.06);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(226, 232, 240, 0.1);
  border-color: rgba(226, 232, 240, 0.22);
  color: white;
  transform: translateY(-2px);
}

.btn-small {
  padding: 0.5rem 0.9rem;
  font-size: 0.84rem;
}

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(11, 18, 32, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition-normal);
  padding: 0.85rem 0;
}

.site-header.scrolled {
  background: rgba(11, 18, 32, 0.95);
  border-bottom-color: var(--glass-border);
  padding: 0.62rem 0;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-weight: 800;
  color: white !important;
}

.main-nav {
  gap: 0.25rem;
}

.main-nav a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 0.5rem 0.72rem;
  border-radius: 6px;
}

.main-nav a:hover,
.main-nav a:focus,
.main-nav a.active {
  color: white;
  background: rgba(226, 232, 240, 0.05);
}

.hero {
  min-height: 100vh;
  padding-top: 108px;
  padding-bottom: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.hero h1 {
  font-size: clamp(2.55rem, 5vw, 4.45rem);
  margin-bottom: 1.5rem;
  background: linear-gradient(180deg, #ffffff 18%, #9fb1cb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero .subhead {
  font-size: 1.12rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 610px;
  line-height: 1.72;
}

.hero-content .subhead,
.hero-content .proof-strip {
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  margin-bottom: 1.65rem;
}

.proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  max-width: 620px;
}

.proof-strip span,
.market-test-strip,
.partner-fit span,
.use-case-grid span {
  border: 1px solid var(--glass-border);
  background: rgba(226, 232, 240, 0.04);
}

.proof-strip span {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  color: var(--text-secondary);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
}

.proof-strip i {
  color: var(--accent-green);
}

.hero-graphic {
  position: relative;
}

.hero-graphic .ide-hero-shell {
  max-width: 1120px;
  margin: 0 auto;
}

.hero-product-shot {
  margin: 0;
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(9, 14, 25, 0.96);
  box-shadow: var(--glass-shadow);
}

.hero-product-shot img {
  display: block;
  width: 100%;
  height: auto;
}

.studio-shell {
  background: rgba(9, 14, 25, 0.96);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  box-shadow: var(--glass-shadow);
  overflow: hidden;
}

.ide-hero-shell {
  font-size: 0.78rem;
}

.ide-titlebar {
  min-height: 42px;
  display: grid;
  grid-template-columns: auto auto minmax(120px, 1fr) auto auto;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.75rem;
  border-bottom: 1px solid var(--glass-border);
  background: rgba(2, 6, 23, 0.64);
}

.ide-nav {
  display: flex;
  gap: 0.25rem;
  color: var(--text-muted);
}

.ide-nav i,
.ide-search i,
.editor-tools i,
.app-actions i,
.renewal-filters i,
.ide-statusbar i {
  width: 0.9rem;
  height: 0.9rem;
}

.ide-search {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  height: 28px;
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  color: var(--text-secondary);
  background: rgba(226, 232, 240, 0.05);
  font-family: var(--font-mono);
  font-weight: 700;
}

.ide-tool-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.34rem;
  min-height: 28px;
  padding: 0.22rem 0.5rem;
  color: var(--text-primary);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  background: rgba(226, 232, 240, 0.045);
  font-size: 0.68rem;
  font-weight: 800;
  white-space: nowrap;
}

.tool-icon {
  width: 22px;
  height: 22px;
  display: block;
  border-radius: 999px;
}

.codex-icon-img {
  width: 18px;
  height: 18px;
  padding: 1px;
  background: #fff;
}

.ide-workspace {
  display: grid;
  grid-template-columns: 54px 220px minmax(460px, 1fr) 255px;
  min-height: 386px;
}

.activity-rail {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 0.45rem;
  border-right: 1px solid var(--glass-border);
  background: rgba(2, 6, 23, 0.58);
}

.activity-rail i {
  width: 1.15rem;
  height: 1.15rem;
  color: var(--text-muted);
}

.activity-rail i.active {
  color: var(--accent-primary);
}

.activity-rail i:last-child {
  margin-top: auto;
}

.ide-sidebar {
  min-width: 0;
  padding: 0.85rem 0.55rem;
  border-right: 1px solid var(--glass-border);
  background: rgba(15, 23, 42, 0.74);
}

.new-app {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--text-primary);
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.new-app i {
  width: 0.95rem;
  height: 0.95rem;
}

.sidebar-pills {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem;
  margin-bottom: 0.55rem;
}

.sidebar-pills span,
.sidebar-search {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.45rem 0.38rem;
  border: 1px solid var(--glass-border);
  border-radius: 7px;
  color: var(--text-secondary);
  background: rgba(226, 232, 240, 0.05);
  font-size: 0.66rem;
  font-weight: 800;
}

.sidebar-pills i,
.sidebar-search i {
  width: 0.8rem;
  height: 0.8rem;
  flex-shrink: 0;
}

.sidebar-search {
  margin-bottom: 0.65rem;
  color: var(--text-muted);
}

.sidebar-empty {
  color: var(--text-muted);
  font-weight: 700;
  font-size: 0.72rem;
}

.editor-stage {
  min-width: 0;
  border-right: 1px solid var(--glass-border);
  background: rgba(11, 18, 32, 0.74);
}

.editor-tab {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 40px;
  padding: 0 0.75rem;
  border-bottom: 1px solid var(--glass-border);
  color: white;
  font-family: var(--font-mono);
  font-weight: 800;
}

.editor-tools {
  display: flex;
  gap: 0.42rem;
  color: var(--text-secondary);
}

.editor-tools i:first-child {
  color: #f97316;
}

.renewal-app {
  margin: 0.7rem;
  border: 1px solid var(--glass-border);
  border-radius: 9px;
  overflow: hidden;
  background: rgba(2, 6, 23, 0.34);
}

.renewal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.72rem;
  border-bottom: 1px solid var(--glass-border);
}

.renewal-header h3 {
  display: inline-block;
  margin: 0 0.4rem 0 0;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  white-space: nowrap;
}

.app-actions {
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.app-actions button {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  min-height: 28px;
  color: var(--text-primary);
  background: rgba(226, 232, 240, 0.055);
  border: 1px solid var(--glass-border);
  border-radius: 7px;
  padding: 0.28rem 0.45rem;
  font-size: 0.66rem;
  font-weight: 800;
}

.renewal-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
  padding: 0.75rem;
}

.renewal-metrics div {
  min-height: 70px;
  padding: 0.62rem;
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  background: rgba(226, 232, 240, 0.035);
}

.renewal-metrics strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.45rem;
  color: var(--accent-primary);
  line-height: 1.05;
}

.renewal-metrics div:nth-child(2) strong {
  color: var(--accent-amber);
}

.renewal-metrics div:nth-child(3) strong {
  color: var(--accent-green);
}

.renewal-metrics span {
  display: block;
  margin-top: 0.22rem;
  color: var(--text-secondary);
  font-size: 0.68rem;
  font-weight: 700;
}

.renewal-filters {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 0.8fr;
  gap: 0.45rem;
  padding: 0 0.75rem 0.72rem;
}

.renewal-filters span {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.3rem;
  color: var(--text-muted);
  border: 1px solid var(--glass-border);
  border-radius: 7px;
  padding: 0.36rem 0.5rem;
  background: rgba(226, 232, 240, 0.04);
  font-size: 0.64rem;
  font-weight: 800;
}

.renewal-table {
  border-top: 1px solid var(--glass-border);
}

.renewal-row {
  display: grid;
  grid-template-columns: 0.9fr 1fr 0.55fr 1.45fr;
  gap: 0.45rem;
  align-items: center;
  padding: 0.5rem 0.75rem;
  border-bottom: 1px solid rgba(226, 232, 240, 0.07);
  color: var(--text-secondary);
  font-size: 0.66rem;
}

.renewal-row:last-child {
  border-bottom: none;
}

.renewal-head {
  color: var(--text-primary);
  font-weight: 800;
  background: rgba(226, 232, 240, 0.035);
}

.status {
  justify-self: start;
  padding: 0.18rem 0.38rem;
  border-radius: 999px;
  font-size: 0.58rem;
  font-weight: 800;
  white-space: nowrap;
}

.status.purple {
  color: #e9d5ff;
  background: rgba(168, 85, 247, 0.18);
  border: 1px solid rgba(168, 85, 247, 0.24);
}

.status.amber {
  color: #fde68a;
  background: rgba(245, 158, 11, 0.14);
  border: 1px solid rgba(245, 158, 11, 0.24);
}

.status.green {
  color: #bbf7d0;
  background: rgba(34, 197, 94, 0.14);
  border: 1px solid rgba(34, 197, 94, 0.22);
}

.assistant-panel {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 0.75rem;
  background: rgba(2, 6, 23, 0.54);
}

.assistant-title {
  color: var(--text-primary);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding-bottom: 0.55rem;
  margin-bottom: 0.9rem;
  border-bottom: 1px solid rgba(56, 189, 248, 0.42);
}

.assistant-empty {
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--text-secondary);
  min-height: 150px;
}

.claude-star {
  color: #f97316;
  font-size: 1.3rem;
  line-height: 1;
}

.assistant-empty strong {
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: 1.05rem;
}

.assistant-empty p {
  font-size: 0.68rem;
  line-height: 1.45;
  margin: 0.35rem 0 0;
}

.assistant-prompt {
  margin-top: auto;
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 0.58rem;
  background: rgba(226, 232, 240, 0.06);
  color: var(--text-secondary);
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.45;
}

.ide-statusbar {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  padding: 0.42rem 0.75rem;
  border-top: 1px solid var(--glass-border);
  color: var(--text-secondary);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  background: rgba(2, 6, 23, 0.72);
}

.ide-statusbar span {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
}

.studio-topbar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--glass-border);
  background: rgba(2, 6, 23, 0.54);
}

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

.window-dots span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--text-muted);
}

.window-dots span:nth-child(1) { background: var(--color-danger); }
.window-dots span:nth-child(2) { background: var(--accent-amber); }
.window-dots span:nth-child(3) { background: var(--accent-green); }

.studio-title {
  color: var(--text-secondary);
  font-family: var(--font-mono);
  font-size: 0.76rem;
}

.policy-badge,
.preview-chip {
  margin-left: auto;
  color: #bbf7d0;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.24);
  font-weight: 700;
  font-size: 0.72rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
}

.studio-layout {
  display: grid;
  grid-template-columns: 148px 1fr;
  min-height: 430px;
}

.studio-sidebar {
  padding: 1rem 0.75rem;
  border-right: 1px solid var(--glass-border);
  background: rgba(15, 23, 42, 0.74);
}

.sidebar-brand {
  color: var(--text-primary);
  font-weight: 800;
  font-size: 0.82rem;
  margin: 0.35rem 0 1rem;
}

.sidebar-action {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.58rem 0.6rem;
  margin-bottom: 0.35rem;
  color: var(--text-secondary);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 0.82rem;
  font-weight: 700;
  text-align: left;
}

.sidebar-action.active,
.sidebar-action:hover {
  color: white;
  background: rgba(56, 189, 248, 0.1);
  border-color: rgba(56, 189, 248, 0.18);
}

.studio-main {
  padding: 1rem;
}

.prompt-card,
.app-preview,
.architecture-cta,
.cta-card,
.audience-panel {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
}

.prompt-card {
  border-radius: 10px;
  padding: 0.95rem 1rem;
  margin-bottom: 0.9rem;
}

.prompt-label {
  color: var(--accent-primary);
  font-size: 0.72rem;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.06em;
  margin-bottom: 0.3rem;
}

.tool-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.75rem;
}

.tool-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 30px;
  padding: 0.28rem 0.55rem 0.28rem 0.34rem;
  color: var(--text-primary);
  background: rgba(226, 232, 240, 0.055);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 800;
}

.tool-mark {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  line-height: 1;
  color: white;
}

.claude-code .tool-mark {
  background: linear-gradient(135deg, #d97706, #f97316);
}

.codex .tool-mark {
  background: linear-gradient(135deg, #0ea5e9, #6366f1);
}

.prompt-card p {
  margin: 0;
  color: var(--text-primary);
  font-size: 0.92rem;
}

.pipeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
  margin-bottom: 0.9rem;
}

.pipeline-step {
  min-height: 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.35rem;
  color: var(--text-muted);
  background: rgba(226, 232, 240, 0.035);
  border: 1px solid var(--glass-border);
  border-radius: 9px;
  font-size: 0.72rem;
  font-weight: 800;
  text-align: center;
}

.pipeline-step.done {
  color: #bbf7d0;
  border-color: rgba(34, 197, 94, 0.22);
  background: rgba(34, 197, 94, 0.07);
}

.pipeline-step.live {
  color: #bae6fd;
  border-color: rgba(56, 189, 248, 0.3);
  background: rgba(56, 189, 248, 0.08);
  box-shadow: inset 0 0 0 1px rgba(56, 189, 248, 0.06);
}

.app-preview {
  border-radius: 10px;
  overflow: hidden;
}

.preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 0.95rem;
  border-bottom: 1px solid var(--glass-border);
  color: white;
  font-weight: 800;
}

.preview-chip {
  margin-left: 0;
}

.preview-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--glass-border);
}

.preview-metrics div {
  padding: 0.85rem 0.95rem;
  border-right: 1px solid var(--glass-border);
}

.preview-metrics div:last-child {
  border-right: none;
}

.preview-metrics strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.35rem;
}

.preview-metrics span {
  color: var(--text-muted);
  font-size: 0.74rem;
  font-weight: 700;
}

.preview-table {
  padding: 0.5rem 0;
}

.preview-table div {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 0.5rem;
  padding: 0.45rem 0.95rem;
  color: var(--text-secondary);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  border-bottom: 1px solid rgba(226, 232, 240, 0.05);
}

.preview-table div:last-child {
  border-bottom: none;
}

.governance-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding: 0.8rem 1rem;
  border-top: 1px solid var(--glass-border);
  background: rgba(2, 6, 23, 0.46);
}

.governance-rail span {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  color: var(--text-secondary);
  font-size: 0.74rem;
  font-weight: 700;
}

.governance-rail i {
  color: var(--accent-primary);
}

.market-test-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: 10px;
  color: var(--text-secondary);
  font-size: 0.94rem;
  font-weight: 600;
}

.market-test-strip a {
  color: white;
  font-weight: 800;
  white-space: nowrap;
}

.audience-panel {
  border-radius: 12px;
  padding: 2rem;
  transition: all var(--transition-normal);
}

.audience-panel:hover,
.feature-card:hover,
.control-card:hover {
  transform: translateY(-4px);
  border-color: rgba(56, 189, 248, 0.24);
  background: rgba(226, 232, 240, 0.045);
}

.business-panel {
  box-shadow: inset 0 3px 0 rgba(56, 189, 248, 0.9);
}

.it-panel {
  box-shadow: inset 0 3px 0 rgba(34, 197, 94, 0.85);
}

.panel-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-primary);
  font-weight: 800;
  font-size: 0.84rem;
  margin-bottom: 1rem;
}

.it-panel .panel-kicker {
  color: var(--accent-green);
}

.audience-panel h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 1.35rem 0;
}

.check-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  color: var(--text-secondary);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 0.88rem;
  height: 0.88rem;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.16);
  border: 1px solid rgba(34, 197, 94, 0.34);
}

.check-list li::after {
  content: "";
  position: absolute;
  left: 0.29rem;
  top: 0.55rem;
  width: 0.34rem;
  height: 0.18rem;
  border-left: 2px solid #bbf7d0;
  border-bottom: 2px solid #bbf7d0;
  transform: rotate(-45deg);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: white;
  font-weight: 800;
}

.text-link i {
  transition: transform var(--transition-fast);
}

.text-link:hover i {
  transform: translateX(3px);
}

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

.question-grid div,
.control-card,
.feature-card {
  background: rgba(226, 232, 240, 0.035);
  border: 1px solid var(--glass-border);
}

.question-grid div {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 78px;
  padding: 1rem;
  border-radius: 10px;
  color: var(--text-primary);
  font-weight: 750;
}

.question-grid i {
  color: var(--accent-amber);
  width: 1.2rem;
  height: 1.2rem;
  flex-shrink: 0;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.step-item {
  display: flex;
  gap: 1.1rem;
  position: relative;
}

.step-item::after {
  content: "";
  position: absolute;
  left: 19px;
  top: 40px;
  bottom: -1.75rem;
  width: 2px;
  background: rgba(56, 189, 248, 0.16);
}

.step-item:last-child::after {
  display: none;
}

.step-num {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--bg-color);
  border: 2px solid var(--accent-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--accent-primary);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.step-text h3 {
  font-size: 1.18rem;
  margin-bottom: 0.35rem;
}

.step-text p {
  margin: 0;
  font-size: 0.96rem;
}

.architecture-map {
  display: grid;
  grid-template-columns: 1fr 34px 1fr 34px 1fr 34px 1fr 34px 1fr 34px 1fr;
  align-items: stretch;
  gap: 0.45rem;
}

.arch-node {
  min-height: 118px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  text-align: center;
  background: rgba(226, 232, 240, 0.035);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  padding: 1rem 0.75rem;
  color: white;
  font-weight: 800;
  font-size: 0.84rem;
}

.arch-node i {
  width: 1.45rem;
  height: 1.45rem;
  color: var(--accent-primary);
}

.arch-node.github i,
.arch-node.directory i {
  color: var(--accent-green);
}

.arch-arrow {
  position: relative;
  align-self: center;
  height: 2px;
  background: rgba(56, 189, 248, 0.3);
}

.arch-arrow::after {
  content: "";
  position: absolute;
  right: -1px;
  top: -4px;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid rgba(56, 189, 248, 0.68);
}

.control-card,
.feature-card {
  border-radius: 10px;
  padding: 1.35rem;
  transition: all var(--transition-normal);
}

.control-card i,
.feature-card i {
  width: 2.6rem;
  height: 2.6rem;
  padding: 0.62rem;
  margin-bottom: 1rem;
  border-radius: 10px;
  color: var(--accent-primary);
  background: rgba(56, 189, 248, 0.09);
}

.control-card h3,
.feature-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.55rem;
}

.control-card p,
.feature-card p {
  margin: 0;
  font-size: 0.9rem;
}

.architecture-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin-top: 2rem;
  border-radius: 12px;
  padding: 1.5rem;
}

.architecture-cta h3 {
  font-size: 1.35rem;
  margin-bottom: 0.25rem;
}

.architecture-cta p {
  margin: 0;
}

.use-case-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}

.use-case-grid span {
  display: flex;
  align-items: center;
  min-height: 74px;
  padding: 1rem;
  border-radius: 10px;
  color: var(--text-primary);
  font-weight: 750;
}

.faq-container {
  max-width: 790px;
}

.faq-item {
  margin-bottom: 0.5rem;
  border-radius: 10px !important;
  border: 1px solid var(--glass-border) !important;
  background: transparent !important;
  overflow: hidden;
}

.faq-item .accordion-button {
  padding: 1rem 1.25rem;
  font-weight: 800;
  font-family: var(--font-heading);
  font-size: 0.98rem;
  background: rgba(226, 232, 240, 0.025);
  color: var(--text-primary);
}

.faq-item .accordion-button:not(.collapsed) {
  background: rgba(56, 189, 248, 0.06);
  color: white;
  box-shadow: none;
}

.faq-item .accordion-button:focus {
  box-shadow: none;
}

.faq-item .accordion-button::after {
  filter: invert(1) grayscale(1);
}

.faq-item .accordion-body {
  padding: 0 1.25rem 1.25rem;
  color: var(--text-secondary);
  font-size: 0.92rem;
}

.cta-section {
  background:
    linear-gradient(180deg, rgba(56, 189, 248, 0.06), rgba(34, 197, 94, 0.04)),
    rgba(2, 6, 23, 0.3);
}

.cta-card {
  border-radius: 14px;
  padding: 2.5rem;
  box-shadow: var(--glass-shadow);
}

.partner-fit {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.partner-fit span {
  color: var(--text-secondary);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
}

.partner-form {
  background: rgba(2, 6, 23, 0.48);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 1.35rem;
}

.partner-form label {
  display: block;
  color: var(--text-primary);
  font-weight: 800;
  font-size: 0.82rem;
  margin-bottom: 0.38rem;
}

.partner-form input,
.partner-form textarea {
  width: 100%;
  color: var(--text-primary);
  background: rgba(226, 232, 240, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 0.72rem 0.82rem;
  margin-bottom: 0.9rem;
  outline: none;
}

.partner-form input:focus,
.partner-form textarea:focus {
  border-color: rgba(56, 189, 248, 0.48);
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.12);
}

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

.form-note {
  color: var(--text-muted);
  font-size: 0.78rem;
  margin: 0.75rem 0 0;
  text-align: center;
}

.site-footer {
  padding: 2rem 0;
  background: var(--bg-color);
  border-top: 1px solid var(--glass-border);
}

.footer-copy {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

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

@media (max-width: 1199.98px) {
  .ide-workspace {
    grid-template-columns: 46px 170px minmax(380px, 1fr) 190px;
  }

  .ide-tool-chip span:last-child {
    display: none;
  }

  .renewal-row {
    grid-template-columns: 0.8fr 0.95fr 0.45fr 1.15fr;
  }

  .architecture-map {
    grid-template-columns: repeat(3, 1fr);
  }

  .arch-arrow {
    display: none;
  }

  .use-case-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991.98px) {
  .section-padding {
    padding: 4.5rem 0;
  }

  .hero {
    min-height: auto;
    padding-top: 104px;
    padding-bottom: 3rem;
  }

  .hero .subhead {
    max-width: 100%;
  }

  .nav-actions {
    margin-top: 1rem;
  }

  .market-test-strip,
  .architecture-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .ide-workspace {
    grid-template-columns: 42px 130px minmax(300px, 1fr) 130px;
  }

  .ide-tool-chip span:last-child {
    display: inline;
  }

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

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

  .section-header h2,
  .display-5 {
    font-size: 1.85rem !important;
  }

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

  .hero-actions .btn,
  .nav-actions .btn,
  .architecture-cta .btn {
    width: 100%;
  }

  .ide-titlebar {
    grid-template-columns: auto minmax(120px, 1fr) auto auto;
  }

  .ide-nav {
    display: none;
  }

  .ide-workspace {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .ide-sidebar,
  .assistant-panel {
    display: none;
  }

  .renewal-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .app-actions {
    justify-content: flex-start;
  }

  .studio-layout {
    grid-template-columns: 1fr;
  }

  .studio-sidebar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.35rem;
    border-right: none;
    border-bottom: 1px solid var(--glass-border);
  }

  .sidebar-brand {
    grid-column: 1 / -1;
    margin-bottom: 0.35rem;
  }

  .sidebar-action {
    justify-content: center;
    padding: 0.5rem 0.25rem;
    font-size: 0.7rem;
  }

  .pipeline-grid,
  .preview-metrics,
  .renewal-metrics,
  .renewal-filters,
  .question-grid,
  .architecture-map,
  .use-case-grid {
    grid-template-columns: 1fr;
  }

  .preview-table div {
    grid-template-columns: 1fr;
    gap: 0.1rem;
  }

  .renewal-row {
    grid-template-columns: 1fr;
    gap: 0.18rem;
  }

  .audience-panel,
  .cta-card {
    padding: 1.4rem;
  }

  .market-test-strip a {
    white-space: normal;
  }
}

@media (max-width: 480px) {
  .studio-shell {
    margin-left: -0.25rem;
    margin-right: -0.25rem;
  }

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

  .ide-tool-chip.codex {
    display: none;
  }

  .ide-search {
    justify-content: flex-start;
    padding: 0 0.55rem;
  }

  .studio-main,
  .studio-sidebar,
  .governance-rail {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .sidebar-action {
    min-height: 58px;
    flex-direction: column;
  }
}
