:root {
  --bg: #f7f7f4;
  --paper: #ffffff;
  --soft: #f0f0ed;
  --soft-2: #e8e8e4;
  --text: #171717;
  --muted: #777774;
  --faint: #aaa9a4;
  --green: #0f7a4f;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

button,
input {
  font: inherit;
}

button {
  border: 0;
}

.app-shell {
  display: grid;
  grid-template-columns: 216px minmax(0, 1fr);
  min-height: 100vh;
}

.sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 24px 14px;
  background: #efefec;
  display: flex;
  flex-direction: column;
}

.brand {
  padding: 0 10px 26px;
}

.brand h1,
.topbar h2,
.backlog-header h2 {
  margin: 0;
  font-size: 1rem;
  font-weight: 520;
  line-height: 1.08;
}

.topbar h2,
.backlog-header h2 {
  font-size: 1.45rem;
}

.eyebrow {
  margin: 0 0 5px;
  color: var(--faint);
  font-size: 0.68rem;
  font-weight: 520;
  text-transform: uppercase;
}

.nav-list {
  display: grid;
  gap: 3px;
}

.nav-item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  min-height: 34px;
  padding: 0 10px;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  text-align: left;
  cursor: pointer;
}

.nav-item.active {
  background: var(--paper);
  color: var(--text);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.nav-item.disabled {
  color: #adaca7;
  cursor: default;
}

.nav-item small {
  color: #bebdb8;
  font-size: 0.68rem;
  font-weight: 400;
}

.count {
  min-width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 5px;
  background: var(--soft);
  color: var(--muted);
  font-size: 0.72rem;
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.count.loading::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--muted);
  animation: count-pulse 1.2s infinite ease-in-out;
}

@keyframes count-pulse {
  0%, 100% { opacity: 0.3; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.2); }
}

.workspace {
  min-width: 0;
  padding: 34px clamp(24px, 4vw, 56px);
}

.topbar,
.backlog-header,
.toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.topbar {
  margin-bottom: 28px;
}

.top-note {
  margin: 0;
  color: var(--faint);
  font-size: 0.8rem;
}

.tab-panel {
  display: none;
}

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

.toolbar {
  margin-bottom: 14px;
}

.search-box {
  display: grid;
  gap: 6px;
  min-width: 330px;
}

.search-box label {
  color: var(--faint);
  font-size: 0.68rem;
  font-weight: 520;
  text-transform: uppercase;
}

.search-box input {
  width: 100%;
  height: 38px;
  border: 0;
  border-radius: 7px;
  padding: 0 12px;
  background: var(--paper);
  color: var(--text);
  outline: none;
}

.search-box input::placeholder {
  color: #b7b6b0;
}

.segmented {
  display: flex;
  gap: 3px;
  padding: 3px;
  border-radius: 8px;
  background: var(--soft);
}

.segment,
.primary-action,
.secondary-action {
  min-height: 32px;
  border-radius: 6px;
  padding: 0 11px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}

.segment.active {
  background: var(--paper);
  color: var(--text);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.primary-action {
  background: #171717;
  color: #fff;
}

.secondary-action {
  background: var(--soft);
  color: var(--text);
}

.table-wrap {
  overflow-x: auto;
  border-radius: 9px;
  background: var(--paper);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

table {
  width: 100%;
  min-width: 920px;
  border-collapse: collapse;
}

th,
td {
  height: 44px;
  padding: 0 14px;
  text-align: left;
  vertical-align: middle;
  white-space: nowrap;
}

th {
  color: var(--faint);
  font-size: 0.67rem;
  font-weight: 520;
  text-transform: uppercase;
}

.sort-button {
  padding: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-transform: inherit;
  cursor: pointer;
}

.sort-button.active {
  color: var(--text);
}

tbody tr {
  cursor: pointer;
}

tbody tr:nth-child(odd) {
  background: #fbfbfa;
}

tbody tr:hover,
tbody tr.selected {
  background: var(--soft);
}

.startup-title,
.backlog-title {
  max-width: 420px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.startup-title strong,
.backlog-title strong {
  font-weight: 520;
}

.muted,
.startup-title span {
  color: var(--muted);
}

.money,
.score {
  font-family: "SF Mono", "JetBrains Mono", ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.78rem;
}

.score {
  color: var(--green);
}

.badge-row {
  display: flex;
  gap: 5px;
  flex-wrap: nowrap;
}

.badge {
  display: inline-flex;
  align-items: center;
  height: 22px;
  border-radius: 5px;
  padding: 0 7px;
  background: var(--soft);
  color: var(--muted);
  font-size: 0.72rem;
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 20;
  background: rgba(23, 23, 23, 0.08);
}

.detail-rail {
  position: fixed;
  z-index: 30;
  top: 0;
  right: 0;
  width: min(520px, 100vw);
  height: 100vh;
  padding: 22px;
  overflow-y: auto;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(22px);
  box-shadow: var(--shadow);
  transform: translateX(105%);
  transition: transform 180ms ease;
}

.detail-rail.open {
  transform: translateX(0);
}

.drawer-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.close-button {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  background: var(--soft);
  color: var(--muted);
  cursor: pointer;
}

.detail-rail h3 {
  margin: 0;
  font-size: 1.18rem;
  font-weight: 520;
}

.definition {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.62;
}

.detail-stack {
  display: grid;
  gap: 18px;
}

.detail-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.stat,
.idea-group,
.candidate-card,
.key-modal {
  border-radius: 8px;
  background: #f5f5f2;
}

.stat {
  padding: 12px;
}

.stat span,
.detail-section h4 {
  display: block;
  margin: 0 0 7px;
  color: var(--faint);
  font-size: 0.68rem;
  font-weight: 520;
  text-transform: uppercase;
}

.stat strong {
  font-weight: 520;
}

.detail-section {
  display: grid;
  gap: 10px;
}

.idea-group {
  padding: 12px;
}

.idea-group strong {
  display: block;
  margin-bottom: 8px;
  font-weight: 520;
}

.idea-group ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 16px;
  color: var(--muted);
  line-height: 1.5;
}

.candidate-list {
  display: grid;
  gap: 8px;
}

.candidate-card {
  padding: 12px;
  display: grid;
  gap: 8px;
}

.candidate-card strong {
  font-weight: 520;
}

.candidate-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.backlog-header {
  margin-bottom: 24px;
}

.backlog-list .table-wrap {
  margin-top: 10px;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(23, 23, 23, 0.12);
  backdrop-filter: blur(8px);
}

.key-modal {
  position: relative;
  width: min(420px, 100%);
  padding: 24px;
  display: grid;
  gap: 16px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
  border: 1px solid var(--soft-2);
}

.close-modal {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--soft);
  color: var(--muted);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s;
}

.close-modal:hover {
  background: var(--soft-2);
  color: var(--text);
}

.key-modal h2 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 520;
}

.modal-copy {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.key-modal label {
  display: grid;
  gap: 8px;
  color: var(--faint);
  font-size: 0.68rem;
  font-weight: 520;
  text-transform: uppercase;
}

.key-modal input,
.key-modal select {
  width: 100%;
  min-height: 40px;
  border: 1px solid var(--soft-2);
  border-radius: 8px;
  padding: 0 12px;
  background: var(--paper);
  color: var(--text);
  outline: none;
  text-transform: none;
  font-size: 0.9rem;
  transition: border-color 0.2s;
}

.key-modal input:focus,
.key-modal select:focus {
  border-color: var(--muted);
}

.input-with-peek {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.input-with-peek input {
  width: 100% !important;
  padding-right: 40px !important;
}

.peek-toggle-btn {
  position: absolute;
  right: 4px;
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s, transform 0.1s;
}

.peek-toggle-btn:hover {
  color: var(--text);
  transform: scale(1.05);
}

.peek-toggle-btn:active {
  transform: scale(0.95);
}

.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 8px;
}

.login-overlay.hidden,
.modal-backdrop.hidden {
  display: none !important;
}

/* Login Overlay */
.login-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  background: var(--bg);
  padding: 24px;
}

.login-card {
  width: min(380px, 100%);
  padding: 40px 32px;
  background: var(--paper);
  border-radius: 12px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 32px;
  text-align: center;
}

.brand-centered h1 {
  margin: 8px 0 0;
  font-size: 1.5rem;
  font-weight: 550;
}

#loginForm {
  display: grid;
  gap: 20px;
  text-align: left;
}

#loginForm label {
  display: grid;
  gap: 8px;
  color: var(--faint);
  font-size: 0.68rem;
  font-weight: 520;
  text-transform: uppercase;
}

/* --- Premium Login Overlay (Glassmorphism) --- */
.login-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, rgba(23, 23, 23, 0.4) 0%, rgba(23, 23, 23, 0.8) 100%);
  backdrop-filter: blur(20px);
  padding: 20px;
}

.login-overlay.hidden {
  display: none;
}

.login-card {
  width: 100%;
  max-width: 400px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 32px 128px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.login-card .brand-centered h1 {
  font-size: 2rem;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.login-card form {
  display: grid;
  gap: 20px;
  text-align: left;
}

.login-card label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-weight: 520;
}

.login-card input {
  width: 100%;
  height: 52px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  padding: 0 16px;
  font-size: 1.1rem;
  transition: all 0.2s ease;
}

.login-card input:focus {
  background: #fff;
  border-color: var(--text);
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.03);
}

.login-card .primary-action {
  height: 52px;
  font-size: 1.1rem;
  border-radius: 12px;
  margin-top: 8px;
  background: var(--text);
  color: #fff;
  cursor: pointer;
  transition: transform 0.1s active;
}

.login-card .primary-action:active {
  transform: scale(0.98);
}

.login-note {
  margin-top: 24px;
  font-size: 0.8rem;
  color: var(--muted);
}

.section-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.icon-button {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: var(--soft);
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 1.1rem;
}

.icon-button:hover {
  background: var(--soft-2);
  color: var(--text);
  transform: rotate(15deg);
}

.candidate-group {
  margin-bottom: 24px;
}

.group-header {
  margin: 0 0 10px;
  color: var(--faint);
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.drawer-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  margin-top: 24px;
  border-top: 1px solid var(--soft-2);
}

.drawer-nav .secondary-action {
  font-size: 11px;
}

.chat-container {
  display: grid;
  gap: 12px;
  margin-top: 14px;
  padding: 12px;
  background: var(--bg);
  border-radius: 12px;
  max-height: 400px;
  overflow-y: auto;
}

.chat-bubble {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 0.9rem;
  line-height: 1.4;
}

.chat-bubble.user {
  justify-self: end;
  background: var(--text);
  color: #fff;
  border-bottom-right-radius: 4px;
}

.chat-bubble.ai {
  justify-self: start;
  background: var(--soft-2);
  color: var(--text);
  border-bottom-left-radius: 4px;
}

.chat-input-row {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.chat-input-row input {
  flex: 1;
  height: 38px;
  border: 1px solid var(--soft-2);
  border-radius: 8px;
  padding: 0 12px;
  background: var(--paper);
}

.insight-block {
  padding: 16px 18px;
  background: var(--bg);
  border: none;
  border-radius: 12px;
  margin-top: 14px;
}

.insight-block h5 {
  margin: 0 0 8px;
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--faint);
}

.strategy-label {
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--faint);
  margin: 16px 0 4px !important;
  letter-spacing: 0.04em;
}
.insight-block div > .strategy-label:first-child {
  margin-top: 0 !important;
}

.insight-block p, .chat-bubble p, .definition p {
  margin: 0 0 10px;
  font-size: 0.95rem;
  color: inherit;
  line-height: 1.5;
}
.insight-block p:last-child, .chat-bubble p:last-child, .definition p:last-child {
  margin-bottom: 0;
}
.insight-block ul, .chat-bubble ul, .definition ul {
  padding-left: 20px;
  margin: 8px 0;
}
.insight-block li, .chat-bubble li, .definition li {
  margin-bottom: 4px;
}
.insight-block strong, .chat-bubble strong, .definition strong {
  font-weight: 700;
  color: var(--faint);
}

.loading-skeleton {
  height: 14px;
  background: linear-gradient(90deg, var(--soft) 25%, var(--soft-2) 50%, var(--soft) 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: 4px;
  margin-bottom: 8px;
}

@keyframes skeleton-loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}


.drawer-nav {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  border-top: 1px solid var(--soft-2);
  margin-top: auto;
  background: var(--paper);
}

.drawer-nav button {
  font-size: 0.85rem;
  max-width: 45%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@keyframes pulseHighlight {
  0% { transform: scale(1); filter: brightness(1); }
  30% { transform: scale(1.3); filter: brightness(1.5); }
  100% { transform: scale(1); filter: brightness(1); }
}
.pulse-highlight {
  animation: pulseHighlight 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Market Signal (Research) — teal tint */
.market-signal {
  color: #4ecdc4;
  background: rgba(78, 205, 196, 0.1);
  padding: 2px 8px;
  border-radius: 6px;
  font-weight: 700;
}

/* ICE cells in backlog table */
.ice-cell {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted, #999);
}

/* Priority color coding */
.priority-high {
  color: #4ecdc4;
  background: rgba(78, 205, 196, 0.15);
  padding: 2px 8px;
  border-radius: 6px;
  font-weight: 700;
}
.priority-mid {
  color: #ffa726;
  background: rgba(255, 167, 38, 0.15);
  padding: 2px 8px;
  border-radius: 6px;
  font-weight: 700;
}
.priority-low {
  color: #ef5350;
  background: rgba(239, 83, 80, 0.15);
  padding: 2px 8px;
  border-radius: 6px;
  font-weight: 700;
}

.insight-btn-wrapper {
  position: relative;
  width: 100%;
  margin-top: 12px;
}

#btnGenInsights {
  width: 100%;
  padding: 14px 16px;
  padding-right: 48px; /* space for globe */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
}

.btn-search-toggle {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
  color: rgba(255,255,255,0.3);
}

.btn-search-toggle:hover {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
}

.btn-search-toggle input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

/* Active state for search grounding */
.btn-search-toggle:has(input:checked) {
  color: #4ecdc4;
  background: rgba(78, 205, 196, 0.15);
}

.btn-search-toggle:has(input:checked) .icon-globe {
  filter: drop-shadow(0 0 4px rgba(78, 205, 196, 0.5));
}


.subdomain-tag {
  background: var(--soft);
  color: var(--text);
  padding: 4px 8px;
  border-radius: 6px;
  font-family: var(--font-mono, monospace);
  font-size: 0.8rem;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: all 0.2s;
}

.subdomain-tag:hover {
  background: var(--soft-2);
  color: var(--primary);
}

.btn-subdomain-edit {
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  color: #a3a3a3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.15s ease, transform 0.15s ease;
  border-radius: 4px;
}

.btn-subdomain-edit:hover {
  color: var(--primary) !important;
  transform: scale(1.1);
  background: var(--soft);
}

/* --- Landing Simulator Browser Frame --- */
.simulator-frame {
  width: min(1000px, 95%);
  height: min(800px, 90vh);
  background: var(--paper);
  border-radius: 12px;
  border: 1px solid var(--soft-2);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: modalScaleUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.simulator-header {
  height: 48px;
  background: var(--soft);
  border-bottom: 1px solid var(--soft-2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  user-select: none;
}

.simulator-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.simulator-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  cursor: pointer;
}

.simulator-dots .dot.red { background: #ff5f56; }
.simulator-dots .dot.yellow { background: #ffbd2e; cursor: default; }
.simulator-dots .dot.green { background: #27c93f; cursor: default; }

.simulator-address-bar {
  background: var(--paper);
  border: 1px solid var(--soft-2);
  border-radius: 6px;
  padding: 4px 16px;
  font-family: var(--font-mono, monospace);
  font-size: 0.8rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
  width: 60%;
  max-width: 500px;
  justify-content: center;
}

.address-lock {
  font-size: 0.75rem;
}

.simulator-viewport {
  flex: 1;
  overflow-y: auto;
  background: #090b0d; /* Dark elegant pitch-black space theme */
  color: #f3f4f6;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  padding: 0;
}

/* Simulated Landing Styles inside viewport */
.simulated-landing-container {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.simulated-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.simulated-logo {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #4ecdc4, #7c4dff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.simulated-nav-links {
  display: flex;
  gap: 24px;
  font-size: 0.85rem;
  color: #9ca3af;
}

.simulated-hero {
  padding: 80px 40px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.simulated-hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
  background: linear-gradient(to right, #ffffff, #9ca3af);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.03em;
}

.simulated-hero p.tagline {
  font-size: 1.15rem;
  color: #9ca3af;
  margin-bottom: 36px;
  line-height: 1.6;
}

.simulated-form {
  display: flex;
  gap: 12px;
  width: 100%;
  max-width: 480px;
  margin-bottom: 12px;
}

.simulated-form input {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 18px;
  border-radius: 8px;
  color: #ffffff;
  font-size: 0.95rem;
  outline: none;
  transition: all 0.2s;
}

.simulated-form input:focus {
  border-color: #4ecdc4;
  background: rgba(255, 255, 255, 0.08);
}

.simulated-form button {
  background: #ffffff;
  color: #090b0d;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.simulated-form button:hover {
  background: #e5e7eb;
  transform: translateY(-1px);
}

.simulated-free-hook {
  font-size: 0.85rem;
  color: #4ecdc4;
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}

.simulated-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  padding: 40px;
  max-width: 900px;
  margin: 0 auto 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.simulated-feature-card {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 24px;
  transition: all 0.2s;
}

.simulated-feature-card:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.simulated-feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 8px 0;
  color: #ffffff;
}

.simulated-feature-card p {
  font-size: 0.85rem;
  color: #9ca3af;
  margin: 0;
  line-height: 1.5;
}

.simulated-success-msg {
  background: rgba(78, 205, 196, 0.1);
  border: 1px solid rgba(78, 205, 196, 0.2);
  border-radius: 8px;
  padding: 16px 24px;
  color: #4ecdc4;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
  max-width: 480px;
  width: 100%;
  animation: pulseHighlight 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.loading-spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-left-color: #4ecdc4;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  vertical-align: middle;
  margin-right: 8px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}


