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

:root {
  --bg-primary: #0D1117;
  --bg-secondary: #161B22;
  --bg-card: #1C2333;
  --accent: #FF6B35;
  --accent-hover: #FF8050;
  --accent-dim: rgba(255, 107, 53, 0.12);
  --text-primary: #F0F6FC;
  --text-secondary: #8B949E;
  --text-muted: #484F58;
  --border: rgba(240, 246, 252, 0.08);
  --border-accent: rgba(255, 107, 53, 0.3);
  --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ---- Navigation ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 clamp(24px, 5vw, 64px);
  background: rgba(13, 17, 23, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 64px;
  display: flex;
  align-items: center;
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.nav-logo-accent { color: var(--accent); }

.nav-pricing-link {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.15s;
}
.nav-pricing-link:hover { color: var(--text-primary); }

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px clamp(24px, 5vw, 64px) 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
}

.hero-glow-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.4) 0%, transparent 70%);
  top: -100px;
  right: -100px;
}

.hero-glow-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(99, 179, 237, 0.15) 0%, transparent 70%);
  bottom: 0;
  left: 10%;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  width: 100%;
}

/* Rotating mockup panel */
.hero-mockup-panel {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.hero-mockup-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-mockup-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2s ease-in-out infinite;
}

.hero-mockup-frame {
  background: #fff;
  border: 1.5px solid #e8e8f0;
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06);
  transition: box-shadow 0.3s, transform 0.3s;
}
.hero-mockup-frame:hover {
  box-shadow: 0 16px 56px rgba(0,0,0,0.16), 0 4px 12px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.hero-mockup-img {
  width: 280px;
  height: 240px;
  object-fit: contain;
  border-radius: 10px;
  display: block;
}

.hero-mockup-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 12px;
}

#heroMockupLabel {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-primary);
}

.hero-mockup-cta {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  white-space: nowrap;
}
.hero-mockup-cta:hover { text-decoration: underline; }

@media (max-width: 900px) {
  .hero-layout { flex-direction: column; gap: 32px; }
  .hero-mockup-panel { width: 100%; }
  .hero-mockup-frame { width: 100%; }
  .hero-mockup-img { width: 100%; }
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 10px;
  border-radius: 100px;
  border: 1px solid var(--border-accent);
  background: var(--accent-dim);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.01em;
  margin-bottom: 28px;
}

.hero-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 28px;
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 620px;
  margin-bottom: 40px;
}

.hero-cta {
  margin-bottom: 56px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  background: var(--accent);
  color: #fff;
  border-radius: 12px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .15s, transform .1s;
  box-shadow: 0 4px 20px rgba(255,107,53,.35);
}
.hero-cta-btn:hover { background: var(--accent-hover); transform: translateY(-1px); }
.hero-cta-btn:active { transform: scale(.98); }

.hero-cta-note {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.hero-proof {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.hero-proof-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.hero-proof-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* ---- Showcase ---- */
.showcase {
  padding: 80px clamp(24px, 5vw, 64px) 100px;
  border-top: 1px solid var(--border);
}

.showcase-inner { max-width: 1200px; margin: 0 auto; }

.showcase-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 48px;
}

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

@media (max-width: 768px) {
  .showcase-grid { grid-template-columns: 1fr; }
}

.showcase-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.showcase-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.showcase-card-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.showcase-logo-wrap {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.showcase-logo {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.04em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.showcase-logo-1 {
  font-size: 2.8rem;
  color: #38BDF8;
  background: linear-gradient(135deg, #0A1628, #1E3A5F);
  width: 72px;
  height: 72px;
  border-radius: 16px;
  letter-spacing: -0.05em;
}

.showcase-logo-2 {
  font-size: 2.8rem;
  color: #8B5E3C;
  background: linear-gradient(135deg, #F5F0E8, #E8DDD0);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 3px solid #C8956C;
  letter-spacing: -0.05em;
}

.showcase-logo-3 {
  font-size: 2.8rem;
  font-weight: 900;
  color: #0D0D0D;
  background: #D4FF00;
  width: 72px;
  height: 72px;
  border-radius: 12px;
  letter-spacing: -0.05em;
}

.showcase-colors {
  display: flex;
  gap: 6px;
}

.sc {
  flex: 1;
  height: 22px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.06);
}

.showcase-fonts {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.showcase-fonts span {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.showcase-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid var(--border-accent);
  background: var(--accent-dim);
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 600;
  align-self: flex-start;
}

/* ---- Features ---- */
.features {
  padding: 100px clamp(24px, 5vw, 64px);
  border-top: 1px solid var(--border);
  background: var(--bg-secondary);
}

.features-inner { max-width: 1200px; margin: 0 auto; }

.features-header {
  text-align: center;
  margin-bottom: 72px;
}

.features-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 20px;
}

.features-sub {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

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

@media (max-width: 900px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 580px) {
  .features-grid { grid-template-columns: 1fr; }
}

.feature-card {
  padding: 28px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--bg-primary);
  transition: border-color 0.2s ease;
}

.feature-card:hover { border-color: var(--border-accent); }

.feature-icon { margin-bottom: 16px; }

.feature-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.feature-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ---- Pricing ---- */
.pricing {
  padding: 100px clamp(24px, 5vw, 64px);
  border-top: 1px solid var(--border);
}

.pricing-inner { max-width: 1200px; margin: 0 auto; }

.pricing-header {
  text-align: center;
  margin-bottom: 60px;
}

.pricing-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}

.pricing-sub {
  color: var(--text-secondary);
  font-size: 1rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 580px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

.pricing-card {
  padding: 28px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card-featured {
  border-color: var(--accent);
  background: linear-gradient(160deg, rgba(255,107,53,0.08) 0%, var(--bg-card) 60%);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 4px 12px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-tier {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.pricing-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.4rem;
  letter-spacing: -0.04em;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-period {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.pricing-feature {
  font-size: 0.85rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-secondary);
  line-height: 1.4;
}

.pricing-feature::before {
  content: '';
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 1px;
  border-radius: 50%;
  background-size: contain;
}

.pricing-feature-on::before {
  background: rgba(255,107,53,0.2);
  border: 1px solid rgba(255,107,53,0.4);
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='%23FF6B35' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.pricing-feature-off {
  opacity: 0.4;
}

.pricing-feature-off::before {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
}

.pricing-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ---- FAQ ---- */
.faq {
  padding: 100px clamp(24px, 5vw, 64px);
  border-top: 1px solid var(--border);
  background: var(--bg-secondary);
}

.faq-inner { max-width: 780px; margin: 0 auto; }

.faq-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 48px;
}

.faq-list { display: flex; flex-direction: column; gap: 0; }

.faq-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.faq-q {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.faq-a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ---- Closing ---- */
.closing {
  padding: 120px clamp(24px, 5vw, 64px);
  border-top: 1px solid var(--border);
  text-align: center;
}

.closing-inner { max-width: 800px; margin: 0 auto; }

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.closing-sub {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 48px;
}

.closing-logo {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3rem;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}

.closing-logo-brand { color: var(--text-primary); }

.closing-logo-ai {
  color: var(--accent);
  margin-left: 4px;
}

.closing-tagline {
  font-size: 1.1rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ---- Footer ---- */
.footer {
  padding: 48px clamp(24px, 5vw, 64px);
  border-top: 1px solid var(--border);
  background: var(--bg-secondary);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-brand { display: flex; flex-direction: column; gap: 4px; }

.footer-brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--text-primary);
}

.footer-brand-tagline {
  font-size: 0.8rem;
  color: var(--text-muted);
}

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

.footer-link {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.15s;
}

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

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

@media (max-width: 580px) {
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-links { flex-wrap: wrap; }
}

/* Footer industry links — programmatic SEO navigation */
.footer-industries {
  max-width: 1200px;
  margin: 24px auto 0;
  padding: 24px clamp(24px, 5vw, 64px) 0;
  border-top: 1px solid var(--border);
}

.footer-industries-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.footer-industries-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}

.footer-ind-link {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-ind-link:hover { color: var(--color-primary); }