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

body {
  font-family: Arial, sans-serif;
  background: #ffffff;
  color: #0f172a;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

#logo {
  font-size: 56px;
  font-weight: 500;
  letter-spacing: -2px;
}

.search-bar {
  display: flex;
  align-items: center;
  border: 1.5px solid #e2e8f0;
  border-radius: 999px;
  padding: 16px 24px;
  width: 680px;
  gap: 10px;
  transition: border-color 0.2s ease;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.search-bar:focus-within {
  border-color: #60a5fa;
}

.search-bar input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 15px;
  font-family: Arial, sans-serif;
  color: #0f172a;
  background: transparent;
}

.search-bar button {
  background: #60a5fa;
  color: white;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
 nav {
  position: fixed;
  top: 0;
  left: 240px;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  transition: left 0.2s ease;
  background: white;
  z-index: 50;
  gap: 16px;
}
body.sidebar-hidden nav {
  left: 0;
}

#sidebarToggle {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: #64748b;
  padding: 6px 10px;
  border-radius: 8px;
}

#sidebarToggle:hover {
  background: #f1f5f9;
}

.qr-btn {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 12px;
  color: #64748b;
  cursor: pointer;
}

.qr-btn:hover {
  background: #eff6ff;
  color: #3b82f6;
  border-color: #bfdbfe;
}

.dots-grid {
  display: grid;
  grid-template-columns: repeat(3, 4px);
  gap: 3px;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
}

.dots-grid span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #94a3b8;
  display: block;
}

.dots-grid:hover {
  background: #f1f5f9;
}

.greeting {
  font-size: 13px;
  color: #64748b;
  overflow: hidden;
  width: 0;
  white-space: nowrap;
  animation: writeIn 1.5s ease forwards;
  animation-delay: 1.5s;
}

@keyframes writeIn {
  to { width: 200px; }
}
.suggestions {
  display: flex;
  gap: 8px;
}

.chip {
  background: transparent;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13px;
  color: #64748b;
  cursor: pointer;
  font-family: Arial, sans-serif;
  transition: all 0.2s ease;
}

.chip:hover {
  background: #f8fafc;
  border-color: #60a5fa;
  color: #3b82f6;
}

.sidebar {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 240px;
  background: #f8fafc;
  border-right: 1px solid #e2e8f0;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: transform 0.2s ease;
}

.sidebar.hidden {
  transform: translateX(-240px);
}

body {
  padding-left: 240px;
}

body.sidebar-hidden {
  padding-left: 0;
}

.new-chat-btn {
  width: 100%;
  padding: 10px 14px;
  background: transparent;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  font-size: 13px;
  color: #0f172a;
  cursor: pointer;
  text-align: left;
  font-family: Arial, sans-serif;
  transition: all 0.2s ease;
}

.new-chat-btn:hover {
  background: #e2e8f0;
}

.sidebar-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sidebar-title {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94a3b8;
  padding: 0 8px;
}

.sidebar-empty {
  font-size: 12px;
  color: #e2e8f0;
  padding: 8px;
}

.settings-menu {
  position: fixed;
  top: 56px;
  right: 32px;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 6px;
  width: 180px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  z-index: 100;
}

.settings-menu.hidden {
  display: none;
}

.settings-item {
  padding: 10px 14px;
  font-size: 13px;
  color: #0f172a;
  border-radius: 8px;
  cursor: pointer;
  text-align: left;
  background: none;
  border: none;
  width: 100%;
  font-family: Arial, sans-serif;
}

.settings-item:hover {
  background: #f8fafc;
}

.settings-item.danger {
  color: #ef4444;
}

.settings-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  cursor: pointer;
  font-size: 13px;
  color: #0f172a;
  border-radius: 8px;
}

.settings-toggle:hover {
  background: #f8fafc;
}

.toggle-switch {
  width: 36px;
  height: 20px;
  background: #e2e8f0;
  border-radius: 999px;
  position: relative;
  transition: background 0.2s ease;
}

.toggle-switch.active {
  background: #60a5fa;
}

.toggle-knob {
  width: 16px;
  height: 16px;
  background: white;
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 2px;
  transition: transform 0.2s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.toggle-switch.active .toggle-knob {
  transform: translateX(16px);
}
.settings-menu {
  position: fixed;
  top: 56px;
  right: 32px;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 6px;
  width: 180px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  z-index: 100;
}

.settings-menu.hidden {
  display: none;
}

.settings-item {
  padding: 10px 14px;
  font-size: 13px;
  color: #0f172a;
  border-radius: 8px;
  cursor: pointer;
  text-align: left;
  background: none;
  border: none;
  width: 100%;
  font-family: Arial, sans-serif;
}

.settings-item:hover {
  background: #f8fafc;
}

.settings-item.danger {
  color: #ef4444;
}

.settings-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  cursor: pointer;
  font-size: 13px;
  color: #0f172a;
  border-radius: 8px;
}

.settings-toggle:hover {
  background: #f8fafc;
}

.toggle-switch {
  width: 36px;
  height: 20px;
  background: #e2e8f0;
  border-radius: 999px;
  position: relative;
  transition: background 0.2s ease;
}

.toggle-switch.active {
  background: #60a5fa;
}

.toggle-knob {
  width: 16px;
  height: 16px;
  background: white;
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 2px;
  transition: transform 0.2s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.toggle-switch.active .toggle-knob {
  transform: translateX(16px);
}

body.dark {
  background: #0f172a;
  color: #e2e8f0;
}

body.dark nav {
  background: #0f172a;
}

body.dark .sidebar {
  background: #1e293b;
  border-color: #334155;
}

body.dark .new-chat-btn {
  border-color: #334155;
  color: #e2e8f0;
}

body.dark .new-chat-btn:hover {
  background: #334155;
}

body.dark .settings-menu {
  background: #1e293b;
  border-color: #334155;
}

body.dark .settings-item {
  color: #e2e8f0;
}

body.dark .settings-item:hover {
  background: #334155;
}

body.dark .settings-toggle {
  color: #e2e8f0;
}

body.dark .search-bar {
  border-color: #334155;
  background: #1e293b;
}

body.dark .search-bar input {
  color: #e2e8f0;
}

body.dark .chip {
  border-color: #334155;
  color: #94a3b8;
}

body.dark .sidebar-empty {
  color: #475569;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
}

.modal.hidden {
  display: none;
}

.modal-box {
  background: white;
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 240px;
}

.modal-title {
  font-size: 15px;
  font-weight: 500;
}

.qr-placeholder {
  width: 120px;
  height: 120px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
}

.modal-sub {
  font-size: 12px;
  color: #64748b;
  text-align: center;
}

#closeModal {
  font-size: 12px;
  color: #94a3b8;
  background: none;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  padding: 6px 16px;
  cursor: pointer;
}
.auth-main {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding-left: 0;
}

.auth-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 380px;
  padding: 0 20px;
}

.auth-logo {
  font-size: 40px;
  font-weight: 500;
  letter-spacing: -2px;
  color: #0f172a;
}

.auth-logo span {
  color: #60a5fa;
}

.auth-sub {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 8px;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.auth-form input {
  width: 100%;
  padding: 18px 20px;
  border: 1.5px solid #e2e8f0;
  border-radius: 14px;
  font-size: 15px;
  outline: none;
  background: transparent;
  font-family: Arial, sans-serif;
  color: #0f172a;
  transition: border-color 0.2s ease;
}

.auth-form input:focus {
  border-color: #60a5fa;
}

.auth-form button {
  width: 100%;
  padding: 18px;
  background: #60a5fa;
  color: white;
  border: none;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease;
}

.auth-form button:hover {
  background: #3b82f6;
}

.auth-switch {
  font-size: 13px;
  color: #64748b;
}

.auth-switch a {
  color: #60a5fa;
  text-decoration: none;
  font-weight: 500;
}

.password-wrapper {
  position: relative;
  width: 100%;
}

.password-wrapper input {
  width: 100%;
  padding-right: 44px;
}

#togglePassword {
  position: absolute;
  right: 16px;
  top: 30%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 16px;
  opacity: 0.5;
}

#togglePassword:hover {
  opacity: 1;
}

.password-checklist {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: -8px;
}

.check-item {
  font-size: 12px;
  color: #94a3b8;
  transition: color 0.2s ease;
}

.check-item.passed {
  color: #22c55e;
}

.onboarding-box {
  width: 100%;
  max-width: 480px;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.progress-bar {
  width: 100%;
  height: 3px;
  background: #e2e8f0;
  border-radius: 999px;
  margin-bottom: 32px;
}

.progress-fill {
  height: 100%;
  background: #60a5fa;
  border-radius: 999px;
  transition: width 0.3s ease;
}

.onboarding-step {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.onboarding-step h2 {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -1px;
  color: #0f172a;
}

textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1.5px solid #e2e8f0;
  border-radius: 14px;
  font-size: 14px;
  font-family: Arial, sans-serif;
  color: #0f172a;
  outline: none;
  resize: none;
  transition: border-color 0.2s ease;
  line-height: 1.6;
}

textarea:focus {
  border-color: #60a5fa;
}

.option-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: 100%;
}

.option-btn {
  padding: 14px 16px;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  background: transparent;
  font-size: 13px;
  color: #0f172a;
  cursor: pointer;
  font-family: Arial, sans-serif;
  transition: all 0.2s ease;
  text-align: center;
}

.option-btn:hover {
  border-color: #60a5fa;
  color: #3b82f6;
}

.option-btn.selected {
  background: #eff6ff;
  border-color: #60a5fa;
  color: #3b82f6;
  font-weight: 500;
}

.onboarding-next {
  width: 100%;
  padding: 16px;
  background: #60a5fa;
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  font-family: Arial, sans-serif;
  transition: background 0.2s ease;
}

.onboarding-next:hover {
  background: #3b82f6;
}

.conversation-area {
  width: 100%;
  max-width: 680px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 120px;
  overflow-y: auto;
  max-height: calc(100vh - 200px);
}
.conversation-area.hidden {
  display: none;
}

.user-message {
  background: #f1f5f9;
  border-radius: 16px;
  padding: 14px 18px;
  font-size: 15px;
  color: #0f172a;
  align-self: flex-end;
  max-width: 80%;
}

.pathio-message {
  font-size: 15px;
  color: #0f172a;
  line-height: 1.8;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  border-bottom-left-radius: 4px;
  padding: 14px 18px;
  max-width: 80%;
  align-self: flex-start;
}

.pathio-message h1,
.pathio-message h2,
.pathio-message h3 {
  margin: 16px 0 8px;
}

.pathio-message ul,
.pathio-message ol {
  padding-left: 20px;
}

.thinking {
  color: #94a3b8;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.thinking::after {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #60a5fa;
  animation: pulse 1s infinite;
}

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

.active-state main {
  justify-content: flex-start;
  padding-top: 100px;
  padding-bottom: 100px;
}

.active-state .logo {
  display: none;
}

.active-state .suggestions {
  display: none;
}

.active-state .search-bar {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 680px;
  background: white;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  z-index: 100;
}

.chat-item {
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 13px;
  color: #0f172a;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.chat-item:hover {
  background: #e2e8f0;
}

.active-state main {
  padding-top: 80px;
}

.chat-item.active {
  background: #e2e8f0;
  font-weight: 500;
}

.chat-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.delete-chat {
  background: none;
  border: none;
  color: #94a3b8;
  font-size: 11px;
  cursor: pointer;
  padding: 2px 4px;
  border-radius: 4px;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.chat-item:hover .delete-chat {
  opacity: 1;
}

.delete-chat:hover {
  color: #ef4444;
  background: #fee2e2;
}

.search-bar:focus-within {
  border-color: #60a5fa;
  box-shadow: 0 2px 12px rgba(96, 165, 250, 0.15);
}

.search-bar button:hover {
  background: #3b82f6;
  transition: background 0.2s ease;
}

.sidebar-title {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #cbd5e1;
  padding: 0 8px;
}
body.landing {
  padding-left: 0;
  overflow-x: hidden;
}

.landing-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  background: white;
  z-index: 100;
  border-bottom: 1px solid #f1f5f9;
}

.landing-logo {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -1px;
  color: #0f172a;
}

.landing-logo span {
  color: #60a5fa;
}

.landing-nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.landing-login {
  font-size: 14px;
  color: #64748b;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 999px;
  transition: all 0.2s ease;
}

.landing-login:hover {
  color: #0f172a;
  background: #f8fafc;
}

.landing-cta {
  font-size: 14px;
  color: white;
  text-decoration: none;
  padding: 8px 20px;
  background: #0f172a;
  border-radius: 999px;
  transition: all 0.2s ease;
}

.landing-cta:hover {
  background: #1e293b;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 120px 48px 80px;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-title {
  font-size: 64px;
  font-weight: 500;
  letter-spacing: -3px;
  line-height: 1.1;
  color: #0f172a;
}

.hero-sub {
  font-size: 18px;
  color: #64748b;
  line-height: 1.7;
  max-width: 480px;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.btn-primary {
  background: #60a5fa;
  color: white;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: background 0.2s ease;
}

.btn-primary:hover {
  background: #3b82f6;
}

.btn-secondary {
  color: #64748b;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 15px;
  border: 1px solid #e2e8f0;
  transition: all 0.2s ease;
}

.btn-secondary:hover {
  border-color: #60a5fa;
  color: #3b82f6;
}

.hero-note {
  font-size: 13px;
  color: #94a3b8;
}

.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
}

.app-preview {
  width: 100%;
  max-width: 480px;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.08);
  overflow: hidden;
}

.preview-bar {
  background: #f8fafc;
  padding: 12px 16px;
  display: flex;
  gap: 6px;
  border-bottom: 1px solid #e2e8f0;
}

.preview-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e2e8f0;
  display: block;
}

.preview-content {
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.preview-logo {
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -1.5px;
  color: #0f172a;
}

.preview-logo span {
  color: #60a5fa;
}

.preview-search {
  width: 100%;
  border: 1.5px solid #e2e8f0;
  border-radius: 999px;
  padding: 14px 20px;
  font-size: 14px;
  color: #94a3b8;
  font-family: Arial, sans-serif;
}

.preview-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.preview-chips span {
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 12px;
  color: #64748b;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding: 80px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 32px;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  transition: all 0.2s ease;
}

.feature-card:hover {
  border-color: #60a5fa;
  box-shadow: 0 8px 24px rgba(96,165,250,0.1);
}

.feature-icon {
  font-size: 13px;
  font-weight: 600;
  color: #60a5fa;
  letter-spacing: 0.05em;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 500;
  color: #0f172a;
}

.feature-card p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.7;
}

.cta-section {
  text-align: center;
  padding: 80px 48px;
  background: #f8fafc;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.cta-section h2 {
  font-size: 40px;
  font-weight: 500;
  letter-spacing: -1.5px;
  color: #0f172a;
}

.cta-section p {
  font-size: 16px;
  color: #64748b;
}

.landing-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 48px;
  border-top: 1px solid #e2e8f0;
}

.landing-footer p {
  font-size: 14px;
  font-weight: 500;
  color: #0f172a;
}

.landing-footer span {
  color: #60a5fa;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 13px;
  color: #64748b;
  text-decoration: none;
}

.footer-links a:hover {
  color: #0f172a;
}

body.landing {
  padding-left: 0;
  overflow-x: hidden;
  max-width: 100vw;
}

.hero-title {
  font-size: 52px;
  font-weight: 500;
  letter-spacing: -2px;
  line-height: 1.1;
  color: #0f172a;
}

body.ads-page {
  padding-left: 0;
  overflow-x: hidden;
}

.ads-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  padding-top: 72px;
}

.ads-left {
  padding: 48px;
  border-right: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ads-title {
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -1px;
  color: #0f172a;
}

.ads-sub {
  font-size: 14px;
  color: #64748b;
  line-height: 1.7;
  margin-top: -12px;
}

.ads-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 13px;
  font-weight: 500;
  color: #0f172a;
}

.form-group input {
  padding: 12px 16px;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-size: 14px;
  font-family: Arial, sans-serif;
  color: #0f172a;
  outline: none;
  transition: border-color 0.2s ease;
}

.form-group input:focus {
  border-color: #60a5fa;
}

.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-size: 14px;
  font-family: Arial, sans-serif;
  color: #0f172a;
  outline: none;
  resize: none;
  transition: border-color 0.2s ease;
}

.form-group textarea:focus {
  border-color: #60a5fa;
}

.ads-right {
  padding: 48px;
  background: #f8fafc;
  overflow-y: auto;
}

.ads-output {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ads-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 300px;
  gap: 8px;
  color: #94a3b8;
  font-size: 15px;
}

.ads-placeholder-sub {
  font-size: 13px;
  color: #cbd5e1;
}

.ad-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ad-number {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #60a5fa;
}

.ad-hook {
  font-size: 16px;
  font-weight: 500;
  color: #0f172a;
  line-height: 1.4;
}

.ad-body {
  font-size: 14px;
  color: #64748b;
  line-height: 1.7;
}

.ad-cta {
  font-size: 13px;
  font-weight: 500;
  color: #3b82f6;
}

.ad-copy-btn {
  background: none;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 12px;
  color: #64748b;
  cursor: pointer;
  font-family: Arial, sans-serif;
  align-self: flex-start;
  transition: all 0.2s ease;
}

.ad-copy-btn:hover {
  border-color: #60a5fa;
  color: #3b82f6;
}

.generating {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #94a3b8;
  font-size: 14px;
  padding: 20px 0;
}