:root {
  --bg: #0b0b0b;
  --fg: #ffffff;
  --muted: #9aa0a6;
  --card: #121212;
  --line: #1e1e1e;
  --brand-1: #7c3aed;
  --brand-2: #06b6d4;
  --radius: 16px;
  --container: 1200px;
}
* {
  box-sizing: border-box;
}
html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, Apple Color Emoji, Segoe UI Emoji;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.seo-hidden {
  position: absolute;
  left: -9999px;
}
.container {
  width: 100%;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 11, 11, 0.6);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  column-gap: 24px;
  height: 64px;
}
.brand {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.4px;
}
.nav-links {
  display: flex;
  gap: 24px;
  justify-self: center;
}
.nav-links a {
  color: var(--fg);
  text-decoration: none;
  font-size: 14px;
  opacity: 0.88;
}
.nav-links a:hover {
  opacity: 1;
}
.nav-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}
.navbar {
  box-shadow: 0 1px 0 rgba(255,255,255,0.04);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 16px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: transform 200ms cubic-bezier(.2,.8,.2,1), opacity 200ms;
}
.btn.primary {
  background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
  color: #fff;
}
.btn.ghost {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--fg);
}
.btn.full {
  width: 100%;
}
.btn:hover {
  transform: translateY(-1px);
}
.hero {
  padding: 88px 0 40px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.hero h1 span {
  display: block;
}
.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: var(--muted);
  text-transform: uppercase;
}
h1 {
  margin: 12px 0 12px;
  font-size: 64px;
  line-height: 68px;
  font-weight: 800;
}
.sublead {
  font-size: 16px;
  line-height: 26px;
  color: #c9c9c9;
  max-width: 640px;
}
.social-proof {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 18px 24px;
  align-items: center;
  margin-top: 16px;
  color: #d3d3d3;
  font-size: 14px;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
 
.section {
  padding: 56px 0;
}
.section-header {
  text-align: center;
  margin-bottom: 28px;
}
h2 {
  font-size: 40px;
  line-height: 44px;
  margin: 8px 0;
}
.section-sub {
  color: #c9c9c9;
  font-size: 16px;
}
.section-actions,
.tools-footer-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 16px;
}
.ready-ppv {
  text-align: center;
  color: #d3d3d3;
  margin-top: 16px;
  font-size: 14px;
}
.grid {
  display: grid;
  gap: 16px;
}
.showcase-grid {
  grid-template-columns: repeat(4, 220px);
  justify-content: center;
  gap: 14px;
}
.showcase-title {
  font-size: 44px;
  line-height: 48px;
  margin: 8px 0;
}
.showcase-title span {
  background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.showcase .img-fill {
  object-fit: cover;
  object-position: center;
}
 
.showcase-grid .img-placeholder {
  border-radius: 20px;
}
.gallery-grid {
  grid-template-columns: repeat(6, 1fr);
  justify-items: stretch;
  align-items: stretch;
  grid-auto-flow: row dense;
}
.img-placeholder {
  width: 100%;
  background: #1a1a1a;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.04) inset, 0 8px 24px rgba(0,0,0,0.3);
}
.img-placeholder.has-img::after {
  content: none;
  animation: none;
}
.img-fill {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
  image-rendering: high-quality;
  image-rendering: -webkit-optimize-contrast;
}
.img-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,.04), rgba(255,255,255,0));
  transform: translateX(-100%);
  animation: shimmer 1.8s infinite;
}
@keyframes shimmer {
  100% {
    transform: translateX(100%);
  }
}
.ph-portrait {
  aspect-ratio: 3/4;
}
.ph-wide {
  aspect-ratio: 16/9;
}
.ph-square {
  aspect-ratio: 1/1;
}
.ph-tall {
  aspect-ratio: 9/16;
}
.ph-card {
  aspect-ratio: 3/4;
}
.influencer-card {
  display: grid;
  gap: 8px;
}
.influencer-card .caption {
  font-size: 12px;
  color: #c9c9c9;
  text-align: center;
}
 
 
.fine {
  color: #9aa0a6;
  font-size: 12px;
  margin-top: 8px;
}
 
 
.tools .tools-rail {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 16px;
  align-items: stretch;
  background: linear-gradient(135deg, rgba(124,58,237,0.12), rgba(6,182,212,0.12));
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
  overflow: hidden;
}
.tools .tools-left .tools-title {
  margin: 0 0 8px 0;
  font-size: 34px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}
.tools .tools-left .tools-title span {
  background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.tools .tools-left .tools-sub {
  color: #c9c9c9;
  margin: 4px 0 0 0;
}
.tools .tools-left .btn.with-icon {
  margin-top: 12px;
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.tools .tools-left .btn {
  margin-top: 12px;
  width: max-content;
  display: inline-flex;
  align-items: center;
}
.tools .tools-left .btn.with-icon .plus {
  font-weight: 800;
}
.tools .tools-tiles {
  display: grid;
  grid-template-columns: repeat(6, minmax(120px, 1fr));
  gap: 12px;
  overflow-x: visible;
  padding-bottom: 6px;
}
.tools .tools-tiles .img-placeholder {
  aspect-ratio: 4 / 5;
}
.tools-tiles .tool-card h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.tools-tiles .tool-card h3 .arrow {
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  opacity: .9;
}
.tool-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
  display: grid;
  gap: 8px;
  text-align: left;
}
.tool-card h3 {
  font-size: 14px;
  font-weight: 700;
  margin: 0;
}
.tool-card p {
  font-size: 12px;
  color: #c9c9c9;
  margin: 0;
}
.tools .tools-tiles { gap: 10px; }
.tools .tools-left .tools-sub { font-size: 14px; line-height: 1.35; }
.tools .tools-tiles .img-placeholder { border-radius: 14px; }
.features-list {
  padding: 50px 0;
  margin-bottom: 15px;
}
.features-list .section-header {
  margin-bottom: 20px;
  text-align: center;
}
.features-list .feature-title {
  margin: 0;
  font-size: 48px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--fg);
}
.features-list .eyebrow {
  font-size: 8px;
  letter-spacing: 2.2px;
  margin-bottom: 6px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--muted);
}
.features-list .feature-tags {
  list-style: none;
  padding: 0 20px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px 14px;
  max-width: 1100px;
}
.features-list .feature-tags li {
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.05);
  color: #cfe1ff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2px;
  white-space: nowrap;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.04) inset;
}
.features-list .feature-tags li:hover {
  border-color: rgba(124,58,237,0.5);
  box-shadow: 0 0 0 1px rgba(124,58,237,0.3) inset;
}
.footer {
  border-top: 1px solid var(--line);
  padding: 28px 0;
  margin-top: 28px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.foot-links {
  display: flex;
  gap: 24px;
  justify-content: center;
}
.foot-links a {
  color: var(--fg);
  font-size: 14px;
  text-decoration: none;
  opacity: .9;
}
.foot-links a:hover {
  opacity: 1;
}
.copy {
  text-align: center;
  color: #9aa0a6;
  font-size: 12px;
}
.auth-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  place-items: center;
  z-index: 100;
}
.auth-modal.show {
  display: grid;
}
.auth-dialog {
  width: 360px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}
.auth-close {
  position: absolute;
  width: 32px;
  height: 32px;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: #0f0f0f;
  color: var(--fg);
  border-radius: 8px;
  cursor: pointer;
}
.auth-steps {
  display: grid;
  gap: 16px;
}
.auth-step {
  display: none;
  text-align: center;
  display: none;
}
.auth-step.active {
  display: grid;
  gap: 12px;
}
.auth-title {
  margin: 0;
  font-size: 20px;
  line-height: 26px;
  font-weight: 800;
}
.auth-sub {
  margin: 0;
  color: #c9c9c9;
  font-size: 14px;
}
.auth-actions {
  display: grid;
  gap: 10px;
  margin-top: 8px;
}
.spinner {
  width: 28px;
  height: 28px;
  border: 3px solid #2a2a2a;
  border-top-color: var(--brand-2);
  border-radius: 999px;
  margin: 0 auto;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
@media (max-width: 1200px) {
  :root { --container: 1040px; }
}
@media (max-width: 1040px) {
  :root { --container: 920px; }
  .hero-inner { grid-template-columns: 1fr; }
  
}
@media (max-width: 920px) {
  :root { --container: 760px; }
  h1 { font-size: 52px; line-height: 58px; }
  .showcase-grid { grid-template-columns: repeat(3, 200px); justify-content: center; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .cards.two-col { grid-template-columns: 1fr; }
  
  .footer-inner { grid-template-columns: 1fr; gap: 12px; text-align: center; }
  .copy { text-align: center; }
  .tools .tools-rail { grid-template-columns: 1fr; }
  .tools .tools-tiles { grid-template-columns: repeat(3, minmax(120px, 1fr)); }
}
@media (max-width: 760px) {
  :root { --container: 560px; }
  .nav-links { display: none; }
  .hero { padding-top: 64px; }
  h1 { font-size: 44px; line-height: 50px; }
  h2 { font-size: 32px; line-height: 36px; }
  .showcase-grid { grid-template-columns: repeat(2, 180px); justify-content: center; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .features-list .feature-tags { padding: 0 16px; gap: 10px 12px; }
  .tools .tools-tiles { grid-template-columns: repeat(2, minmax(120px, 1fr)); }
}
@media (max-width: 560px) {
  :root { --container: 100%; }
  .hero-ctas { flex-direction: column; }
  .showcase-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  
}
