/* ARTIST EDITOR COMMERCIAL STYLESHEET */
:root {
  --bg: #070709;
  --bg-subtle: #0c0d12;
  --surface: #12131a;
  --surface-card: #151722;
  --surface-card-hover: #1a1d2b;
  --surface-elevated: #1f2233;
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.18);
  --border-accent: rgba(0, 245, 155, 0.35);
  --text-primary: #ffffff;
  --text-secondary: #a1a1aa;
  --text-muted: #71717a;
  --white: #ffffff;
  --black: #050505;
  --accent: #00f59b;
  --accent-secondary: #10b981;
  --accent-glow: rgba(0, 245, 155, 0.22);
  --accent-dim: rgba(0, 245, 155, 0.1);
  --danger: #ef4444;
  --danger-dim: rgba(239, 68, 68, 0.15);
  --font-main: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", "Segoe UI", Roboto, sans-serif;
  --font-mono: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 9999px;
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.7);
  --shadow-glow: 0 0 40px rgba(0, 245, 155, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background-color: var(--bg);
  background-image: 
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(0, 245, 155, 0.09), transparent 70%),
    radial-gradient(ellipse 60% 40% at 85% 25%, rgba(16, 185, 129, 0.05), transparent 60%),
    radial-gradient(circle at 15% 55%, rgba(255, 255, 255, 0.02), transparent 45%),
    linear-gradient(180deg, #070709 0%, #0a0b10 50%, #060608 100%);
  background-attachment: fixed;
  color: var(--text-primary);
  font-family: var(--font-main);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

button, input {
  font: inherit;
}

/* TOPBAR */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 6vw;
  background: rgba(7, 7, 9, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: border-color 200ms ease;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.02em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, #ffffff 0%, #a1a1aa 100%);
  color: #050505;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 8px rgba(255, 255, 255, 0.15);
}

.brand-badge {
  display: inline-block;
  padding: 2px 7px;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  color: var(--accent);
  border-radius: 4px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
}

.nav a {
  transition: color 160ms ease;
}

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

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  transition: all 160ms ease;
}

.nav-cta:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

/* TYPOGRAPHY */
h1, h2, h3, h4, p {
  margin-top: 0;
}

h1 {
  font-size: clamp(40px, 5.6vw, 76px);
  font-weight: 850;
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(28px, 3.8vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}

h3 {
  font-size: 20px;
  font-weight: 750;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
}

.lead {
  font-size: clamp(17px, 1.9vw, 22px);
  color: #cfcfd6;
  line-height: 1.55;
  max-width: 640px;
  margin-bottom: 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}

.fine-print {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* HERO SECTION */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  min-height: calc(90vh - 72px);
  padding: 60px 6vw 60px;
}

.hero-copy {
  max-width: 720px;
}

.hero-proof-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 28px;
}

.proof-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 13px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  color: #e4e4e7;
}

.proof-pill svg {
  width: 14px;
  height: 14px;
  color: var(--accent);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin: 26px 0 16px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 24px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: all 180ms cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.button.primary {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15);
}

.button.primary:hover:not(:disabled) {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.25);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border-color: var(--border);
}

.button.secondary:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}

.button.accent {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-secondary) 100%);
  color: #041209;
  border-color: var(--accent);
  box-shadow: 0 4px 24px var(--accent-glow);
}

.button.accent:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 34px rgba(0, 245, 155, 0.35);
}

.button.quiet {
  background: transparent;
  border-color: transparent;
  color: var(--text-muted);
}

.button.quiet:hover:not(:disabled) {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.04);
}

.button.wide {
  width: 100%;
}

.button:disabled, .button.disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

.google-slot {
  display: flex;
  min-height: 48px;
  align-items: center;
}

.agreement {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  max-width: 600px;
  margin-top: 14px;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.45;
}

.agreement input {
  margin-top: 3px;
  accent-color: var(--accent);
  cursor: pointer;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-top: 16px;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
  animation: pulseDot 2.2s infinite ease-in-out;
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.3); opacity: 0.4; }
}

/* 3D HERO VISUAL SHOWCASE */
.hero-visual-wrapper {
  position: relative;
  perspective: 1200px;
}

.hero-visual-card {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: var(--surface-card);
  box-shadow: 
    0 30px 100px rgba(0, 0, 0, 0.85),
    0 0 50px rgba(0, 245, 155, 0.08);
  overflow: hidden;
  transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 300ms ease;
}

.hero-visual-card:hover {
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: 
    0 40px 120px rgba(0, 0, 0, 0.9),
    0 0 70px rgba(0, 245, 155, 0.14);
}

.hero-visual-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.floating-badge {
  position: absolute;
  padding: 10px 16px;
  background: rgba(18, 19, 26, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
  z-index: 5;
  animation: floatBadge 4s ease-in-out infinite alternate;
}

.floating-badge.badge-top-left {
  top: 18px;
  left: 18px;
  border-left: 3px solid var(--accent);
}

.floating-badge.badge-bottom-right {
  bottom: 18px;
  right: 18px;
  border-right: 3px solid #6366f1;
  animation-delay: -2s;
}

.badge-label {
  display: block;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.badge-value {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 800;
  color: var(--text-primary);
  margin-top: 2px;
}

.badge-indicator {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

@keyframes floatBadge {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}

/* SECTION COMMONS */
section {
  position: relative;
  padding: 96px 6vw;
  border-top: 1px solid var(--border);
}

.section-header {
  max-width: 680px;
  margin-bottom: 56px;
}

.section-header.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* PAIN SECTION */
.pain-section {
  background: linear-gradient(180deg, #070709 0%, #0a0b12 100%);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pain-card {
  position: relative;
  padding: 32px;
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all 220ms ease;
  overflow: hidden;
}

.pain-card:hover {
  border-color: var(--border-hover);
  background: var(--surface-card-hover);
  transform: translateY(-3px);
}

.pain-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(239, 68, 68, 0.4), transparent);
  opacity: 0;
  transition: opacity 220ms ease;
}

.pain-card:hover::before {
  opacity: 1;
}

.pain-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--danger-dim);
  color: var(--danger);
  margin-bottom: 20px;
}

.pain-card h3 {
  color: var(--text-primary);
}

.pain-card p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* WORKFLOW SECTION */
.workflow-section {
  background: #08090d;
}

.workflow-container {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: center;
}

.workflow-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.workflow-step {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all 220ms ease;
}

.workflow-step:hover {
  background: var(--surface-card);
  border-color: var(--border-hover);
  transform: translateX(4px);
}

.step-num {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--accent);
  font-weight: 800;
  font-size: 15px;
}

.step-content h3 {
  margin-bottom: 6px;
  font-size: 18px;
}

.step-content p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}

.workflow-visuals {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 18px;
  align-items: center;
}

.visual-preview-card {
  position: relative;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--surface-card);
  box-shadow: var(--shadow-md);
}

.visual-preview-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.visual-preview-card.reel-preview {
  aspect-ratio: 9 / 16;
}

.visual-preview-card.xml-preview {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* FEATURES GRID */
.features-section {
  background: linear-gradient(180deg, #08090d 0%, #070709 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.feature-card {
  padding: 30px;
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all 220ms ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.feature-card:hover {
  border-color: var(--border-accent);
  background: var(--surface-card-hover);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 245, 155, 0.07);
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  color: var(--accent);
  margin-bottom: 18px;
}

.feature-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}

.feature-tag {
  display: inline-block;
  margin-top: 18px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}

/* COMPARISON TABLE */
.comparison-section {
  background: #090a0f;
}

.comparison-table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--surface);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 14px;
}

.comparison-table th, 
.comparison-table td {
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
}

.comparison-table th {
  background: var(--surface-card);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
}

.comparison-table th.highlight,
.comparison-table td.highlight {
  background: rgba(0, 245, 155, 0.04);
  color: var(--text-primary);
  font-weight: 700;
}

.comparison-table th.highlight {
  color: var(--accent);
  border-left: 1px solid var(--border-accent);
  border-right: 1px solid var(--border-accent);
}

.comparison-table td.highlight {
  border-left: 1px solid var(--border-accent);
  border-right: 1px solid var(--border-accent);
}

.comparison-table tbody tr:last-child td {
  border-bottom: 0;
}

.status-bad {
  color: #f87171;
  font-weight: 600;
}

.status-good {
  color: var(--accent);
  font-weight: 700;
}

/* PRICING SECTION (3 TIERS) */
.pricing-section {
  background: linear-gradient(180deg, #090a0f 0%, #060608 100%);
}

.pricing-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1160px;
  margin: 0 auto;
  align-items: stretch;
}

.pricing-card {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.pricing-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.pricing-card.featured {
  background: linear-gradient(180deg, #181b28 0%, #12141f 100%);
  border-color: var(--border-accent);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 40px rgba(0, 245, 155, 0.12);
  transform: scale(1.02);
}

.pricing-card.featured:hover {
  transform: scale(1.02) translateY(-4px);
}

.pricing-card.featured::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-secondary) 100%);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.pricing-tier-tag {
  display: inline-block;
  align-self: flex-start;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 14px;
}

.pricing-card.featured .pricing-tier-tag {
  background: var(--accent-dim);
  border-color: var(--border-accent);
  color: var(--accent);
}

.pricing-plan-title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 6px;
}

.pricing-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 14px 0 6px;
}

.pricing-price-wrap .currency {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-primary);
}

.pricing-price-wrap .amount {
  font-size: 46px;
  font-weight: 900;
  line-height: 1;
  color: var(--white);
  letter-spacing: -0.03em;
}

.pricing-price-wrap .period {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
}

.pricing-card-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 22px;
  min-height: 38px;
}

.pricing-card-perks {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.pricing-card-perks li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #d1d1d8;
  line-height: 1.45;
}

.pricing-card-perks li svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ROADMAP & COMING SOON */
.roadmap-section {
  background: #08090e;
}

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.roadmap-card {
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  position: relative;
  transition: all 200ms ease;
}

.roadmap-card:hover {
  border-color: var(--border-hover);
  background: var(--surface-card);
}

.roadmap-badge {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  color: #a1a1aa;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.roadmap-card h4 {
  font-size: 16px;
  font-weight: 750;
  margin-bottom: 6px;
}

.roadmap-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

/* ACCOUNT PAGE LAYOUT */
.account-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
  align-items: start;
  min-height: calc(85vh - 72px);
  padding: 64px 6vw;
}

.account-card, .account-side {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px;
}

.account-card {
  box-shadow: var(--shadow-md);
}

.account-list {
  display: grid;
  gap: 12px;
  margin: 28px 0;
}

.account-list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.account-list-item dt {
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
}

.account-list-item dd {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
  color: var(--text-primary);
}

.sub-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 800;
}

.sub-pill.active {
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  color: var(--accent);
}

.sub-pill.inactive {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  color: var(--text-muted);
}

.account-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}

/* LEGAL PAGES */
.legal-container {
  max-width: 860px;
  margin: 64px auto;
  padding: 0 5vw;
}

.legal-content {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
}

.legal-content h1 {
  font-size: 38px;
  margin-bottom: 12px;
}

.legal-content h2 {
  font-size: 22px;
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.legal-content p, .legal-content li {
  color: #b0b0b8;
  font-size: 15px;
  line-height: 1.7;
}

.legal-content ul {
  padding-left: 20px;
}

/* FOOTER */
.footer {
  padding: 48px 6vw;
  border-top: 1px solid var(--border);
  background: var(--bg);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 13px;
  color: var(--text-muted);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--text-primary);
}

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

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

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 1080px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 40px;
  }
  .pain-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .workflow-container {
    grid-template-columns: 1fr;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-grid-3, .roadmap-grid {
    grid-template-columns: 1fr;
  }
  .account-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .topbar {
    padding: 0 16px;
    height: 64px;
  }
  .nav {
    display: none;
  }
  .hero, section {
    padding: 48px 18px;
  }
  .pain-grid, .features-grid {
    grid-template-columns: 1fr;
  }
  .actions {
    flex-direction: column;
    align-items: stretch;
  }
  .actions .button, .google-slot {
    width: 100%;
  }
  .account-actions {
    grid-template-columns: 1fr;
  }
  .legal-content {
    padding: 24px;
  }
  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

.credit-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 12px;
  background: rgba(0, 245, 155, 0.09);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 800;
  color: var(--accent);
  margin: 6px 0 16px;
}
