/* ============================================================
   UNKWN Growth System — CSS
   Aesthetic: Editorial brutalism meets dark luxury
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Instrument+Serif:ital@0;1&display=swap');

:root {
  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-display: 'Instrument Serif', Georgia, serif;

  --bg: #0b0b0f;
  --bg-raised: #131318;
  --bg-card: #17171e;
  --bg-card-hover: #1d1d26;
  --border: #26262f;
  --border-light: #2f2f3a;

  --text-primary: #e8e6e1;
  --text-secondary: #9b978f;
  --text-muted: #6a675f;

  --accent: #c4a46c;
  --accent-bright: #dfc187;
  --accent-dim: #9a7e4e;
  --accent-glow: rgba(196, 164, 108, 0.12);

  --success: #5ec269;
  --error: #d95757;
  --info: #5ba0d9;

  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-card: 0 1px 3px rgba(0,0,0,.4), 0 8px 24px rgba(0,0,0,.25);
  --shadow-float: 0 4px 12px rgba(0,0,0,.5), 0 24px 64px rgba(0,0,0,.4);

  --container: 1200px;
  --gutter: 24px;
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-primary);
  background: var(--bg);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
input, textarea, button, select { font: inherit; color: inherit; }

::selection { background: var(--accent); color: var(--bg); }

/* ---- Utility ---- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.hidden { display: none !important; }

/* ---- Background orbs ---- */
.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: -1;
  opacity: .35;
}
.orb-1 { width: 600px; height: 600px; background: var(--accent-dim); top: -200px; left: -100px; }
.orb-2 { width: 500px; height: 500px; background: #3a2a5c; bottom: -150px; right: -100px; }

/* ---- Typography ---- */
h1, h2, h3 { font-family: var(--font-display); font-weight: 400; line-height: 1.15; letter-spacing: -.01em; }
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.25rem; }

.section-kicker {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--accent);
  margin-bottom: 8px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .01em;
  border: none;
  cursor: pointer;
  transition: all .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--bg);
}
.btn-primary:hover { background: var(--accent-bright); transform: translateY(-1px); box-shadow: 0 6px 20px var(--accent-glow); }
.btn-secondary {
  background: transparent;
  border: 1px solid var(--border-light);
  color: var(--text-primary);
}
.btn-secondary:hover { border-color: var(--accent-dim); color: var(--accent); }
.btn-small { padding: 8px 18px; font-size: 13px; }
.btn.full { width: 100%; }
.btn:disabled { opacity: .4; pointer-events: none; }

/* ---- Cards ---- */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.card:hover { border-color: var(--border-light); }

/* ---- Navigation ---- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(11, 11, 15, .82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-mark {
  width: 34px;
  height: 34px;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-display);
  font-size: 18px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
  font-weight: 700;
}
.brand-kicker { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--text-primary); }
.brand-name { font-size: 11px; color: var(--text-muted); }

.nav-links { display: flex; gap: 28px; }
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color .15s;
  position: relative;
}
.nav-links a:hover { color: var(--text-primary); }
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width .2s;
}
.nav-links a:hover::after { width: 100%; }

/* ---- Hero ---- */
.hero { padding: 120px 0 80px; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.hero-copy { padding-top: 24px; }

.pill {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  background: var(--accent-glow);
  color: var(--accent);
  border: 1px solid rgba(196,164,108,.18);
  margin-bottom: 20px;
}

.hero-text { color: var(--text-secondary); max-width: 520px; margin-top: 16px; font-size: 16px; }

.hero-actions { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }

.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 40px; }
.stat-card {
  padding: 18px 20px;
  text-align: left;
}
.stat-card strong { display: block; font-family: var(--font-display); font-size: 1.5rem; color: var(--accent); margin-bottom: 2px; }
.stat-card span { font-size: 12px; color: var(--text-muted); }

/* ---- Preview Card ---- */
.preview-card { box-shadow: var(--shadow-float); border-color: var(--border-light); }
.preview-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.preview-top h2 { font-size: 1.1rem; }
.status-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(94,194,105,.12);
  color: var(--success);
  border: 1px solid rgba(94,194,105,.2);
  animation: pulse-badge 2s ease-in-out infinite;
}
@keyframes pulse-badge {
  0%, 100% { opacity: 1; }
  50% { opacity: .6; }
}

.preview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.mini-panel {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
}
.mini-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.mini-list { display: flex; flex-direction: column; gap: 6px; }
.mini-list div { font-size: 12px; color: var(--text-secondary); padding-left: 12px; position: relative; }
.mini-list div::before { content: ''; position: absolute; left: 0; top: 7px; width: 4px; height: 4px; background: var(--accent-dim); border-radius: 50%; }

.metric-list { display: flex; flex-direction: column; gap: 8px; }
.metric-list div { display: flex; justify-content: space-between; font-size: 12px; }
.metric-list span { color: var(--text-muted); }
.metric-list strong { color: var(--accent); font-size: 14px; }

.insight-box {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
}
.insight-box p { font-size: 13px; color: var(--text-secondary); font-style: italic; }

/* ---- Sections ---- */
.section { padding: 96px 0; }
.section-alt { background: var(--bg-raised); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head p { color: var(--text-secondary); margin-top: 12px; }

.split-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; max-width: 100%; }
.inline-badge {
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-muted);
  flex-shrink: 0;
}

/* ---- Features ---- */
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.feature-card { transition: transform .2s, border-color .2s; }
.feature-card:hover { transform: translateY(-3px); border-color: var(--accent-dim); box-shadow: var(--shadow-card); }
.feature-card h3 { margin-bottom: 8px; color: var(--accent-bright); }
.feature-card p { font-size: 14px; color: var(--text-secondary); }

/* ---- Process ---- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.two-col > div:first-child p { color: var(--text-secondary); margin-top: 12px; }

.tag-stack { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.tag-box {
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 100px;
  border: 1px solid var(--border-light);
  color: var(--text-muted);
}

.steps { display: flex; flex-direction: column; gap: 12px; }
.step-card { display: flex; gap: 20px; align-items: flex-start; }
.step-card > span {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--accent-dim);
  flex-shrink: 0;
  width: 48px;
  line-height: 1;
  padding-top: 4px;
}
.step-card h3 { margin-bottom: 4px; }
.step-card p { font-size: 13px; color: var(--text-secondary); }

/* ---- Industry ---- */
.industry-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.industry-card {
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 24px;
  transition: all .2s;
}
.industry-card:hover { color: var(--accent); border-color: var(--accent-dim); transform: translateY(-2px); }

/* ---- Pricing ---- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pricing-card { display: flex; flex-direction: column; }
.pricing-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.pricing-card .price {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--accent);
  margin-bottom: 12px;
}
.pricing-card .price span { font-size: 14px; color: var(--text-muted); font-family: var(--font-body); }
.pricing-card > p { font-size: 13px; color: var(--text-secondary); margin-bottom: 20px; }
.pricing-card ul { flex: 1; margin-bottom: 24px; }
.pricing-card li {
  font-size: 13px;
  color: var(--text-secondary);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  padding-left: 20px;
  position: relative;
}
.pricing-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 2px solid var(--accent-dim);
}
.pricing-card.featured {
  border-color: var(--accent-dim);
  box-shadow: 0 0 0 1px var(--accent-dim), var(--shadow-float);
  position: relative;
}
.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 4px 14px;
  border-radius: 100px;
  background: var(--accent);
  color: var(--bg);
}

/* ---- Contact ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-grid > div:first-child p { color: var(--text-secondary); margin-top: 12px; }

.info-stack { display: flex; flex-direction: column; gap: 12px; margin-top: 32px; }
.info-box { padding: 20px; }
.info-box small { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--text-muted); display: block; margin-bottom: 4px; }
.info-box strong { font-size: 14px; color: var(--text-primary); font-weight: 500; }

.form-card { box-shadow: var(--shadow-card); }
.lead-form { display: flex; flex-direction: column; gap: 14px; }
.grid-two { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

input, textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 14px;
  color: var(--text-primary);
  transition: border-color .2s;
  outline: none;
}
input::placeholder, textarea::placeholder { color: var(--text-muted); }
input:focus, textarea:focus { border-color: var(--accent-dim); }
textarea { min-height: 100px; resize: vertical; }

.form-note { font-size: 11px; color: var(--text-muted); text-align: center; }

.success-state { text-align: center; padding: 32px 0; }
.success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(94,194,105,.12);
  color: var(--success);
  font-size: 24px;
  font-weight: 700;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  border: 2px solid rgba(94,194,105,.25);
}
.success-state h3 { margin-bottom: 8px; }
.success-state p { font-size: 14px; color: var(--text-secondary); margin-bottom: 24px; }
.success-actions { display: flex; gap: 12px; justify-content: center; }

/* ---- FAQ ---- */
.faq-section { background: var(--bg); }
.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.faq-card h3 { font-size: 1rem; margin-bottom: 8px; color: var(--text-primary); }
.faq-card p { font-size: 13px; color: var(--text-secondary); }

/* ---- Footer ---- */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
}
.footer-wrap { display: flex; justify-content: space-between; align-items: center; }
.footer-text { font-size: 13px; color: var(--text-muted); margin-top: 2px; }

/* ---- Drawer ---- */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(4px);
  display: flex;
  justify-content: flex-end;
  animation: fadeIn .2s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.drawer-panel {
  width: 480px;
  max-width: 100vw;
  background: var(--bg-card);
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  animation: slideIn .25s ease;
}
@keyframes slideIn { from { transform: translateX(100%); } to { transform: translateX(0); } }
.drawer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}
.drawer-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 24px;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  transition: background .15s;
}
.drawer-close:hover { background: var(--bg); color: var(--text-primary); }
.lead-list { flex: 1; overflow-y: auto; padding: 16px 24px; }
.lead-item {
  padding: 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
}
.lead-item h4 { font-size: 14px; margin-bottom: 4px; }
.lead-item p { font-size: 12px; color: var(--text-muted); margin-bottom: 2px; }
.lead-item .lead-meta { display: flex; gap: 12px; margin-top: 8px; flex-wrap: wrap; }
.lead-item .lead-tag {
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 100px;
  background: var(--accent-glow);
  color: var(--accent);
  border: 1px solid rgba(196,164,108,.15);
}
.drawer-actions { padding: 16px 24px; border-top: 1px solid var(--border); }
.empty-state { text-align: center; padding: 48px 24px; color: var(--text-muted); font-size: 13px; }

/* ---- Dashboard link in nav ---- */
.nav-links a.active { color: var(--accent); }

/* ---- Loading spinner ---- */
.spinner {
  width: 20px; height: 20px;
  border: 2px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin .6s linear infinite;
  display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---- AI Generation UI ---- */
.ai-output {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  min-height: 120px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
  white-space: pre-wrap;
  position: relative;
}
.ai-output.loading::after {
  content: 'Generating...';
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: var(--bg);
  color: var(--text-muted);
  font-size: 13px;
  border-radius: var(--radius);
}
.ai-output .ai-placeholder { color: var(--text-muted); font-style: italic; }

/* ---- Tabs ---- */
.tab-bar {
  display: flex;
  gap: 4px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 4px;
  margin-bottom: 24px;
}
.tab-btn {
  flex: 1;
  padding: 10px 16px;
  background: none;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all .15s;
}
.tab-btn:hover { color: var(--text-secondary); }
.tab-btn.active { background: var(--bg-card); color: var(--accent); box-shadow: 0 1px 3px rgba(0,0,0,.2); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ---- Dashboard specific ---- */
.dash-header {
  padding: 96px 0 32px;
  border-bottom: 1px solid var(--border);
}
.dash-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
}
.dash-header h1 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.dash-header p { color: var(--text-secondary); margin-top: 4px; font-size: 14px; }

.dash-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 24px; }
.dash-section { margin-top: 32px; }
.dash-section h2 { font-size: 1.3rem; margin-bottom: 16px; }

.metric-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 24px; }
.metric-tile {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}
.metric-tile .metric-val {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--accent);
  display: block;
}
.metric-tile .metric-lbl { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: .08em; margin-top: 4px; display: block; }

.gen-form { display: flex; flex-direction: column; gap: 12px; margin-bottom: 16px; }
.gen-form label { font-size: 12px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: .08em; }

select {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 14px;
  font-size: 14px;
  color: var(--text-primary);
  outline: none;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236a675f' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}
select:focus { border-color: var(--accent-dim); }

/* ---- Leads table ---- */
.leads-table { width: 100%; border-collapse: collapse; }
.leads-table th {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-muted);
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
}
.leads-table td {
  font-size: 13px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
}
.leads-table tr:hover td { background: var(--bg-raised); }
.leads-table .lead-name { color: var(--text-primary); font-weight: 500; }

.badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.badge-new { background: rgba(91,160,217,.12); color: var(--info); }
.badge-hot { background: rgba(217,87,87,.12); color: var(--error); }
.badge-warm { background: rgba(196,164,108,.12); color: var(--accent); }
.badge-converted { background: rgba(94,194,105,.12); color: var(--success); }

.empty-dash { text-align: center; padding: 48px; color: var(--text-muted); }
.empty-dash p { margin-bottom: 16px; }

/* ---- Account Banner ---- */
.account-banner { margin-bottom: 24px; padding: 20px 28px; }
.account-banner-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.account-info { display: flex; align-items: center; gap: 14px; }
.account-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--accent-glow);
  border: 2px solid var(--accent-dim);
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 18px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.account-avatar.connected { background: rgba(94,194,105,.12); border-color: rgba(94,194,105,.3); color: var(--success); }
.account-handle { font-size: 15px; font-weight: 600; color: var(--text-primary); }
.account-meta { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

/* ---- Modal ---- */
.modal-overlay {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(6px);
  display: grid; place-items: center;
  animation: fadeIn .2s ease;
}
.modal-card {
  width: 520px; max-width: 92vw; max-height: 90vh; overflow-y: auto;
  box-shadow: var(--shadow-float);
}
.modal-top {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 20px;
}

/* ---- AI output tall ---- */
.ai-output-tall { min-height: 300px; max-height: 600px; overflow-y: auto; }

/* ---- Growth Engine ---- */
.grow-hero-card {
  border-color: var(--accent-dim);
  box-shadow: 0 0 0 1px var(--accent-dim), 0 0 40px rgba(196, 164, 108, 0.06);
  padding: 32px;
}
.grow-hero-inner {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 24px;
}
.grow-hero-left {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  flex: 1;
}
.grow-icon-ring {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent-glow);
  border: 2px solid var(--accent-dim);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  position: relative;
}
.grow-icon-pulse {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--accent-dim);
  opacity: 0;
  animation: growPulse 2.5s ease-out infinite;
}
@keyframes growPulse {
  0% { opacity: .5; transform: scale(.85); }
  100% { opacity: 0; transform: scale(1.2); }
}
.grow-icon-arrow {
  font-size: 22px;
  color: var(--accent);
  font-weight: 700;
  line-height: 1;
}
.grow-hero-title {
  font-size: 1.3rem;
  color: var(--accent-bright);
  margin-bottom: 6px;
}
.grow-hero-sub {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 560px;
}
.grow-form { margin-bottom: 0; }
.grow-input-row {
  display: flex;
  gap: 12px;
  align-items: stretch;
}
.grow-ig-field {
  flex: 1;
  display: flex;
  align-items: center;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s;
}
.grow-ig-field:focus-within { border-color: var(--accent-dim); }
.grow-at {
  padding: 0 2px 0 14px;
  font-size: 16px;
  font-weight: 600;
  color: var(--accent-dim);
  user-select: none;
}
.grow-ig-field input {
  border: none;
  background: none;
  padding: 14px 14px 14px 2px;
  font-size: 16px;
  flex: 1;
  min-width: 0;
}
.grow-ig-field input:focus { border-color: transparent; }
.btn-grow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 36px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .02em;
  border: none;
  cursor: pointer;
  transition: all .25s ease;
  white-space: nowrap;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-bright) 100%);
  color: var(--bg);
  box-shadow: 0 4px 16px rgba(196, 164, 108, 0.25);
}
.btn-grow:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(196, 164, 108, 0.35);
}
.btn-grow:disabled { opacity: .5; pointer-events: none; transform: none; box-shadow: none; }
.grow-btn-icon { font-size: 18px; line-height: 1; }
.grow-details-toggle { margin-top: 8px; }
.btn-link {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 12px;
  cursor: pointer;
  padding: 4px 0;
  transition: color .15s;
}
.btn-link:hover { color: var(--accent); }
.grow-details { margin-top: 12px; display: flex; flex-direction: column; gap: 12px; }

.grow-output-wrapper { margin-top: 20px; }
.grow-output-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
  gap: 12px;
}
.grow-output-header h3 { color: var(--accent-bright); }
.grow-output-sub { font-size: 12px; color: var(--text-muted); margin-top: 4px; }
.grow-output { min-height: 400px; max-height: 700px; }
.grow-actions { display: flex; gap: 8px; margin-top: 14px; flex-wrap: wrap; }

.status-ready { background: rgba(94,194,105,.12); color: var(--success); border-color: rgba(94,194,105,.2); }
.status-error { background: rgba(217,87,87,.12); color: var(--error); border-color: rgba(217,87,87,.2); }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .hero-grid, .two-col, .contact-grid, .dash-grid { grid-template-columns: 1fr; }
  .preview-grid { grid-template-columns: 1fr; }
  .feature-grid, .faq-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .metric-row { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .split-head { flex-direction: column; align-items: flex-start; }
  .nav-links { display: none; }
  .grid-two { grid-template-columns: 1fr; }
  .drawer-panel { width: 100%; }
  .account-banner-inner { flex-direction: column; text-align: center; }
  .account-info { flex-direction: column; }
  .tab-bar { flex-wrap: wrap; }
  .grow-input-row { flex-direction: column; }
  .grow-hero-left { flex-direction: column; align-items: center; text-align: center; }
  .grow-hero-sub { max-width: 100%; }
}

@media (max-width: 600px) {
  .industry-grid { grid-template-columns: 1fr; }
  .metric-row { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .footer-wrap { flex-direction: column; gap: 16px; text-align: center; }
}
