:root {
  --ink: #111315;
  --ink-soft: #2c3035;
  --paper: #f7f4ed;
  --white: #ffffff;
  --muted: #6c737d;
  --gold: #c99a3a;
  --green: #2f9b73;
  --cyan: #3f9fc2;
  --red: #c64a3f;
  --line: rgba(17, 19, 21, 0.14);
  --shadow: 0 22px 60px rgba(17, 19, 21, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
  letter-spacing: 0;
  overflow-x: hidden;
}

img,
video {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.05;
}

h1 {
  margin-bottom: 1rem;
  font-size: 4rem;
}

h2 {
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

h3 {
  margin-bottom: 0.7rem;
  font-size: 1.22rem;
}

p {
  margin-bottom: 1rem;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.85rem 5vw;
  color: var(--white);
  background: rgba(17, 19, 21, 0.28);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
  transition: background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 30px rgba(17, 19, 21, 0.1);
}

.brand {
  min-width: 230px;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  flex: 0 0 46px;
  color: var(--ink);
  background: var(--gold);
  border-radius: 8px;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: currentColor;
  opacity: 0.76;
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.35rem;
}

.site-nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  color: currentColor;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(201, 154, 58, 0.2);
  outline: none;
}

.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 19, 21, 0.88), rgba(17, 19, 21, 0.42) 54%, rgba(17, 19, 21, 0.24)),
    linear-gradient(0deg, rgba(17, 19, 21, 0.8), rgba(17, 19, 21, 0.08) 48%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 90vw);
  padding: 9rem 5vw 5rem;
}

.hero-copy {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.25rem;
}

.hero-actions,
.cta-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.82rem 1.05rem;
  border: 1px solid transparent;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
}

.button.primary {
  color: var(--ink);
  background: var(--gold);
}

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

.button.dark-text {
  color: var(--ink);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: 3px solid rgba(63, 159, 194, 0.35);
  outline-offset: 2px;
}

.section,
.band-light,
.band-dark,
.band-image,
.draft-hero {
  padding: 5.5rem 0;
}

.section-inner {
  width: min(1160px, 90vw);
  margin: 0 auto;
}

.band-light {
  background: var(--paper);
}

.band-dark {
  color: var(--white);
  background: var(--ink);
}

.eyebrow {
  margin-bottom: 0.7rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.intro-grid,
.market-grid,
.demo-layout,
.leader-grid,
.draft-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 3rem;
  align-items: center;
}

.intro-grid p,
.section-heading p,
.market-grid p,
.demo-layout p,
.leader-grid p,
.draft-hero p {
  color: var(--muted);
  font-size: 1.08rem;
}

.band-dark .demo-layout p {
  color: rgba(255, 255, 255, 0.72);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 2rem;
}

.section-heading.compact {
  max-width: 840px;
}

.feature-grid,
.audience-grid,
.draft-grid,
.ad-grid {
  display: grid;
   grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.feature-card,
.audience-grid article,
.draft-card {
  min-height: 230px;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.feature-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.feature-number {
  color: var(--green);
  font-weight: 900;
}

.feature-card p,
.audience-grid p,
.draft-card p,
.caption-box p,
.reel-script li {
  color: var(--muted);
}

.band-image {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.band-image > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 34%;
  opacity: 0.34;
}

.band-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17, 19, 21, 0.94), rgba(17, 19, 21, 0.62));
}

.proof-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 3rem;
  align-items: center;
}

.proof-copy p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.6rem 0 0;
}

.metric-strip div {
  min-height: 132px;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.metric-strip dt {
  color: var(--gold);
  font-size: 2rem;
  font-weight: 900;
}

.metric-strip dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
}

th,
td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

thead th {
  color: var(--white);
  background: var(--ink);
}

tbody th {
  font-weight: 800;
}

tbody td:first-of-type {
  color: var(--green);
  font-weight: 900;
}

tbody tr:last-child th,
tbody tr:last-child td {
  border-bottom: 0;
}

.market-media img,
.leader-photo img,
.post-media img,
.social-story-grid img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.market-media img {
  aspect-ratio: 1;
  object-fit: cover;
}

.pill-list,
.principles {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.4rem;
}

.pill-list span,
.principles span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.42rem 0.72rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  font-weight: 800;
}

.audience-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.audience-grid article {
  min-height: 180px;
  border-left: 6px solid var(--cyan);
}

.audience-grid article:nth-child(2) {
  border-left-color: var(--gold);
}

.audience-grid article:nth-child(3) {
  border-left-color: var(--green);
}

.audience-grid article:nth-child(4) {
  border-left-color: var(--red);
}

.video-frame {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: #000000;
  box-shadow: var(--shadow);
}

.video-frame video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #000000;
}

.leader-photo img {
  aspect-ratio: 1;
  object-fit: cover;
}

.contact {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 2rem;
  align-items: center;
}

.contact-grid p {
  color: var(--muted);
  font-size: 1.08rem;
}

.contact-link {
  display: inline-flex;
  max-width: 100%;
  color: var(--ink);
  font-size: 1.25rem;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.app-panel {
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.store-tags {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.store-tag {
  min-height: 76px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.8rem 0.9rem;
  color: var(--white);
  border-radius: 8px;
  background: var(--ink);
}

.store-tag small {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.store-tag strong {
  font-size: 1.15rem;
}

.cta-layout {
  justify-content: space-between;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.5rem 5vw;
  color: var(--white);
  background: var(--ink);
}

.site-footer p {
  margin-bottom: 0;
}

.site-footer a {
  color: var(--gold);
  font-weight: 800;
}

.draft-page {
  background: var(--paper);
}

.draft-hero {
  padding-top: 9.5rem;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(17, 19, 21, 0.92), rgba(17, 19, 21, 0.62)),
    url("assets/image1.png") center / cover;
}

.draft-hero h1 {
  max-width: 740px;
}

.draft-hero p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.78);
}

.approval-box {
  width: min(360px, 100%);
  justify-self: end;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.approval-box strong,
.approval-box span {
  display: block;
}

.approval-box strong {
  margin-bottom: 0.6rem;
  color: var(--gold);
  text-transform: uppercase;
}

.approval-box span {
  margin-top: 0.35rem;
  font-size: 1.1rem;
  font-weight: 800;
}

.draft-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.draft-card {
  min-height: 170px;
}

.draft-card.wide {
  grid-column: span 3;
}

.post-preview {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 1.25rem;
  align-items: stretch;
  margin-top: 1.25rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.post-media img {
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.post-copy {
  align-self: center;
}

.platform-label,
.hashtags {
  color: var(--green);
  font-weight: 900;
}

.social-story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.social-story-grid article,
.caption-box,
.reel-script {
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.social-story-grid img {
  aspect-ratio: 4 / 5;
  margin-bottom: 1rem;
  object-fit: cover;
}

.caption-box,
.reel-script {
  margin-top: 1.25rem;
}

.ad-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.reel-script ol {
  margin: 0;
  padding-left: 1.2rem;
}

.reel-script li + li {
  margin-top: 0.65rem;
}

@media (max-width: 980px) {
  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2rem;
  }

  .site-header {
    position: absolute;
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .hero {
    min-height: 84vh;
  }

  .hero-content {
    padding-top: 12rem;
  }

  .intro-grid,
  .market-grid,
  .demo-layout,
  .leader-grid,
  .contact-grid,
  .proof-layout,
  .draft-hero-grid,
  .post-preview {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .draft-grid,
  .ad-grid,
  .social-story-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .approval-box {
    justify-self: start;
  }

  .draft-card.wide {
    grid-column: span 2;
  }
}

@media (max-width: 680px) {
  h1 {
    font-size: 2.45rem;
  }

  h2 {
    font-size: 1.65rem;
  }

  .site-header {
    gap: 0.8rem;
    padding: 0.8rem 4vw;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .site-nav {
    gap: 0.15rem;
  }

  .site-nav a {
    min-height: 34px;
    padding: 0.35rem 0.45rem;
    font-size: 0.78rem;
  }

  .hero {
    min-height: 82vh;
  }

  .hero > img {
    object-position: 54% center;
  }

  .hero-content {
    width: 100%;
    padding: 12.2rem 4vw 3.8rem;
  }

  .hero-copy {
    font-size: 1.06rem;
  }

  .button {
    width: 100%;
  }

  .section,
  .band-light,
  .band-dark,
  .band-image,
  .draft-hero {
    padding: 4rem 0;
  }

  .draft-hero {
    padding-top: 12.5rem;
  }

  .feature-grid,
  .audience-grid,
  .draft-grid,
  .ad-grid,
  .social-story-grid,
  .store-tags,
  .metric-strip {
    grid-template-columns: 1fr;
  }

  .draft-card.wide {
    grid-column: span 1;
  }

  .feature-card,
  .audience-grid article,
  .draft-card {
    min-height: auto;
  }

  .post-media img {
    min-height: 260px;
  }

  .site-footer {
    flex-direction: column;
  }
}
