/* AI Social marketing site */

:root {
  --bg-deep: #03050a;
  --bg-card: rgba(12, 18, 32, 0.72);
  --border-subtle: rgba(148, 163, 184, 0.12);
  --text: #e8edf5;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --accent: #2dd4bf;
  --accent-soft: rgba(45, 212, 191, 0.15);
  --violet: #a78bfa;
  --violet-soft: rgba(167, 139, 250, 0.12);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-card: 0 24px 48px -12px rgba(0, 0, 0, 0.45);
  --font-sans: "Outfit", system-ui, sans-serif;
  --font-display: "Fraunces", Georgia, serif;
  --header-h: 72px;
  --max: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg-deep);
  -webkit-font-smoothing: antialiased;
}

.bg-mesh {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(45, 212, 191, 0.18), transparent),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(167, 139, 250, 0.14), transparent),
    radial-gradient(ellipse 50% 35% at 0% 30%, rgba(56, 189, 248, 0.08), transparent),
    linear-gradient(180deg, #050a14 0%, var(--bg-deep) 45%, #020408 100%);
  pointer-events: none;
}

.bg-noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  padding: 0.5rem 1rem;
  background: var(--accent);
  color: var(--bg-deep);
  font-weight: 600;
  border-radius: var(--radius-sm);
  z-index: 1000;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 1rem;
  outline: 2px solid var(--violet);
  outline-offset: 2px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(3, 5, 10, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--accent), var(--violet));
  color: var(--bg-deep);
  font-size: 0.75rem;
  font-weight: 800;
  font-family: var(--font-sans);
  box-shadow: 0 4px 20px rgba(45, 212, 191, 0.25);
}

.brand-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 1rem;
}

.nav-links a:not(.btn) {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.35rem 0;
  transition: color 0.15s;
}

.nav-links a:not(.btn):hover {
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.25rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s, border-color 0.15s;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: linear-gradient(135deg, #14b8a6, #0d9488);
  color: #021014;
  border-color: rgba(45, 212, 191, 0.5);
  box-shadow: 0 8px 28px -6px rgba(45, 212, 191, 0.45);
}

.btn-primary:hover {
  box-shadow: 0 12px 36px -6px rgba(45, 212, 191, 0.55);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-color: var(--border-subtle);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(148, 163, 184, 0.22);
}

.page-main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.5rem 1.25rem 4rem;
}

.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  padding: 1rem 0 3.5rem;
}

@media (min-width: 960px) {
  .hero {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    padding: 2rem 0 4rem;
  }
}

.hero-copy {
  max-width: 36rem;
}

.hero-badge {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  margin-bottom: 1.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid rgba(45, 212, 191, 0.28);
  border-radius: 999px;
}

.hero h1,
#hero-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.85rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 1.25rem;
  color: var(--text);
}

.hero-lead {
  margin: 0 0 1.75rem;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.hero-lead strong {
  color: var(--text);
  font-weight: 600;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
}

.metric b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.metric span {
  font-size: 0.78rem;
  color: var(--text-dim);
  line-height: 1.35;
}

@media (max-width: 520px) {
  .metric-strip {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.hero-visual {
  display: flex;
  justify-content: center;
  perspective: 1200px;
}

.phone-shell {
  width: min(100%, 300px);
  padding: 10px;
  border-radius: 36px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.12), rgba(30, 41, 59, 0.4));
  box-shadow: var(--shadow-card), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(148, 163, 184, 0.15);
  transform: rotateY(-6deg) rotateX(4deg);
}

@media (min-width: 960px) {
  .hero-visual {
    justify-content: flex-end;
  }
}

.phone-inner {
  border-radius: 28px;
  overflow: hidden;
  background: #060910;
  border: 1px solid rgba(0, 0, 0, 0.5);
}

.phone-notch {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 28px;
  background: #080d16;
  border-bottom: 1px solid var(--border-subtle);
}

.phone-notch span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(148, 163, 184, 0.25);
}

.phone-notch span:first-child {
  width: 72px;
  height: 22px;
  border-radius: 12px;
  background: #0f172a;
}

.phone-body {
  padding: 1rem 0.85rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-height: 340px;
}

.feed-card {
  padding: 0.75rem;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid var(--border-subtle);
}

.feed-card--accent {
  border-color: rgba(45, 212, 191, 0.35);
  background: linear-gradient(145deg, rgba(45, 212, 191, 0.08), rgba(15, 23, 42, 0.9));
  box-shadow: 0 0 0 1px rgba(45, 212, 191, 0.08);
}

.feed-head {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.65rem;
}

.feed-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--violet));
  flex-shrink: 0;
}

.feed-meta {
  flex: 1;
  min-width: 0;
}

.feed-name {
  height: 8px;
  width: 45%;
  border-radius: 4px;
  background: rgba(148, 163, 184, 0.35);
  margin-bottom: 6px;
}

.feed-handle {
  height: 6px;
  width: 28%;
  border-radius: 3px;
  background: rgba(100, 116, 139, 0.4);
}

.feed-line {
  height: 6px;
  border-radius: 3px;
  background: rgba(148, 163, 184, 0.22);
  margin-bottom: 6px;
}

.feed-line.short {
  width: 55%;
}

.feed-line.accent {
  background: linear-gradient(90deg, rgba(45, 212, 191, 0.5), rgba(167, 139, 250, 0.35));
}

.feed-actions {
  margin-top: 0.5rem;
  font-size: 0.65rem;
  color: var(--text-dim);
  letter-spacing: 0.02em;
}

.feed-card--accent .feed-actions {
  color: rgba(45, 212, 191, 0.85);
}

.section {
  padding: 3rem 0;
  border-top: 1px solid var(--border-subtle);
}

.section > h2 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.5vw, 2.1rem);
  font-weight: 600;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.section-intro {
  margin: 0 0 2rem;
  max-width: 52ch;
  color: var(--text-muted);
  font-size: 1rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  padding: 1.35rem 1.35rem 1.5rem;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(8px);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.feature-card:hover {
  border-color: rgba(45, 212, 191, 0.22);
  box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.35);
  transform: translateY(-2px);
}

.feature-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 12px;
  background: var(--violet-soft);
  color: var(--violet);
  border: 1px solid rgba(167, 139, 250, 0.2);
}

.feature-icon svg {
  width: 22px;
  height: 22px;
}

.feature-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.feature-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.steps {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.step {
  padding: 1.35rem;
  border-radius: var(--radius-md);
  background: rgba(8, 13, 24, 0.6);
  border: 1px solid var(--border-subtle);
  border-left: 3px solid var(--accent);
}

.step h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 600;
}

.step p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.faq details {
  margin-bottom: 0.65rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
  background: rgba(8, 13, 24, 0.5);
  overflow: hidden;
}

.faq summary {
  padding: 1rem 1.15rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  color: var(--text);
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  float: right;
  color: var(--accent);
  font-weight: 700;
}

.faq details[open] summary::after {
  content: "\2212";
}

.faq details p {
  margin: 0;
  padding: 0 1.15rem 1.15rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.faq details a {
  color: var(--accent);
}

.cta-band {
  margin-top: 2rem;
  padding: 2.75rem 2rem;
  text-align: center;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(45, 212, 191, 0.12), rgba(167, 139, 250, 0.1));
  border: 1px solid rgba(45, 212, 191, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  margin: 0 0 0.5rem;
}

.cta-band > p {
  margin: 0 auto 1.5rem;
  color: var(--text-muted);
  max-width: 42ch;
}

.site-footer {
  border-top: 1px solid var(--border-subtle);
  padding: 2rem 1.25rem;
  background: rgba(2, 4, 8, 0.6);
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-footer p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-dim);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a,
.site-footer a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
}

.footer-links a:hover,
.site-footer a:hover {
  color: var(--accent);
}

main.legal {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 1.25rem 4rem;
}

main.legal h1 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.35rem);
  font-weight: 600;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

main.legal .meta {
  font-size: 0.9rem;
  color: var(--text-dim);
  margin: 0 0 2rem;
}

main.legal h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 2.25rem 0 0.75rem;
  font-weight: 600;
}

main.legal p,
main.legal li {
  color: var(--text-muted);
  font-size: 0.98rem;
}

main.legal p {
  margin: 0 0 1rem;
}

main.legal ul {
  margin: 0 0 1rem;
  padding-left: 1.35rem;
}

main.legal li {
  margin-bottom: 0.45rem;
}

main.legal a {
  color: var(--accent);
}

main.legal strong {
  color: var(--text);
}

@media (max-width: 720px) {
  .nav-links a[href^="#"],
  .nav-links a[href="privacy-policy.html"] {
    display: none;
  }
}

/* ---- additions: real screenshots, video, download, BMC, play listing ---- */

.brand-icon {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: none;
  box-shadow: 0 4px 20px rgba(45, 212, 191, 0.25);
  object-fit: cover;
  display: block;
}

.phone-shell--photo {
  width: min(100%, 280px);
  padding: 8px;
}

.phone-shell--photo .phone-inner {
  border-radius: 24px;
  overflow: hidden;
  background: transparent;
  border: none;
  aspect-ratio: 9 / 19.5;
  display: flex;
}

.phone-shell--photo .phone-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-cta--centered {
  justify-content: center;
  margin-top: 1.5rem;
}

.shots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
}

.shot {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}

.shot img {
  width: 100%;
  max-width: 240px;
  aspect-ratio: 9 / 19.5;
  object-fit: cover;
  border-radius: 22px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: var(--shadow-card);
  background: #060910;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.shot:hover img,
.shot:focus-within img {
  transform: translateY(-4px);
  border-color: rgba(45, 212, 191, 0.35);
  box-shadow: 0 28px 56px -16px rgba(45, 212, 191, 0.2);
}

.shot figcaption {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.video-frame {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background: #060910;
  box-shadow: var(--shadow-card);
}

.video-frame video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  background: #060910;
}

.section--download {
  padding-bottom: 2rem;
}

.download-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

@media (min-width: 760px) {
  .download-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.download-card {
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
  backdrop-filter: blur(8px);
}

.download-card--primary {
  background: linear-gradient(150deg, rgba(45, 212, 191, 0.12), rgba(167, 139, 250, 0.08));
  border-color: rgba(45, 212, 191, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 28px 60px -28px rgba(45, 212, 191, 0.4);
}

.download-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid rgba(45, 212, 191, 0.25);
  margin-bottom: 0.5rem;
}

.download-card__icon svg {
  width: 26px;
  height: 26px;
}

.download-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.download-card > p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.download-card .btn {
  margin-top: 0.5rem;
}

.download-card__sub {
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-top: 0.25rem !important;
}

.play-listing-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 1.25rem;
  align-items: center;
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: rgba(8, 13, 24, 0.55);
  backdrop-filter: blur(8px);
}

.play-listing-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  object-fit: cover;
  border: 1px solid rgba(148, 163, 184, 0.2);
}

.play-listing-card__body {
  min-width: 0;
}

.play-listing-card__body h3 {
  margin: 0 0 0.25rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
}

.play-listing-card__short {
  margin: 0 0 0.4rem;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.play-listing-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-dim);
}

.play-listing-card__feature {
  grid-column: 1 / -1;
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  margin-top: 0.5rem;
}

@media (min-width: 760px) {
  .play-listing-card {
    grid-template-columns: auto 1fr 320px;
  }
  .play-listing-card__feature {
    grid-column: auto;
    margin-top: 0;
  }
}

.support-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255, 221, 89, 0.12), rgba(167, 139, 250, 0.08));
  border: 1px solid rgba(255, 221, 89, 0.25);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

@media (min-width: 760px) {
  .support-card {
    grid-template-columns: 1fr auto;
  }
}

.support-card__copy h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
}

.support-card__copy p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.bmc-button {
  display: inline-block;
  transition: transform 0.15s ease;
  align-self: center;
  justify-self: start;
}

@media (min-width: 760px) {
  .bmc-button {
    justify-self: end;
  }
}

.bmc-button:hover {
  transform: translateY(-2px);
}

.bmc-button img {
  height: 56px;
  width: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 8px 22px -6px rgba(255, 221, 89, 0.4);
}
