:root {
  color-scheme: light;
  font-family: PostBridge, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #ffffff;
  color: #333c4d;
  --base: #ffffff;
  --base-2: #f4f4ef;
  --base-3: #e9e8df;
  --content: #333c4d;
  --muted: rgba(51, 60, 77, 0.66);
  --soft: rgba(51, 60, 77, 0.08);
  --primary: #66cc8a;
  --primary-dark: #184f2c;
  --line: #deded3;
  --shadow: 0 16px 42px rgba(51, 60, 77, 0.08);
}

@font-face {
  font-family: PostBridge;
  src: url("https://www.post-bridge.com/_next/static/media/636a5ac981f94f8b-s.p.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--base);
  color: var(--content);
}

a {
  color: inherit;
}

.site-header {
  position: relative;
  z-index: 20;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 80rem;
  margin: 0 auto;
  padding: 1.15rem 1.5rem 0;
  background: transparent;
}

.brand,
.nav-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 0.6rem;
  font-size: 1.05rem;
  font-weight: 900;
  text-decoration: none;
  letter-spacing: -0.045em;
}

.brand-mark {
  display: block;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 0.62rem;
}

.nav-links {
  gap: 1.35rem;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--content);
}

.shell {
  display: grid;
  gap: 0;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.25rem 5rem;
}

.hero {
  display: grid;
  justify-items: center;
  padding: clamp(1.75rem, 6vw, 4.5rem) 1rem 1.2rem;
  text-align: center;
}

.platform-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(0.35rem, 1.4vw, 0.75rem);
  margin-bottom: 1.9rem;
}

.platform-strip img {
  width: clamp(1.7rem, 4vw, 2.1rem);
  height: clamp(1.7rem, 4vw, 2.1rem);
  object-fit: contain;
  opacity: 0.72;
  transition: opacity 180ms ease, transform 180ms ease;
}

.platform-strip img:hover {
  opacity: 1;
  transform: translateY(-1px);
}

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

h1,
h2,
h3,
strong,
b {
  color: #333c4d;
}

h1 {
  max-width: 16ch;
  margin-bottom: 1.3rem;
  font-size: clamp(2.5rem, 7vw, 4.75rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.06em;
  text-wrap: balance;
  word-spacing: 0.08em;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(1.85rem, 4.4vw, 3.45rem);
  font-weight: 850;
  line-height: 1.02;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

h3 {
  margin-bottom: 0.4rem;
  letter-spacing: -0.035em;
}

.intro {
  max-width: 48rem;
  margin-bottom: 1.35rem;
  color: rgba(51, 60, 77, 0.82);
  font-size: clamp(1.12rem, 2.2vw, 1.7rem);
  font-weight: 650;
  line-height: 1.35;
  text-wrap: balance;
  word-spacing: 0.07em;
}

.support-line {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin-bottom: 1.85rem;
  color: rgba(51, 60, 77, 0.72);
  font-size: clamp(1.05rem, 2.2vw, 1.55rem);
  font-weight: 600;
  line-height: 1.52;
  text-wrap: balance;
}

.frank-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #333c4d;
  font-weight: 850;
  text-decoration: none;
}

.frank-link img {
  width: clamp(2rem, 4vw, 2.55rem);
  height: clamp(2rem, 4vw, 2.55rem);
  border: 3px solid rgba(51, 60, 77, 0.14);
  border-radius: 999px;
  object-fit: cover;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.frank-link:hover img {
  border-color: var(--primary);
  box-shadow: 0 0 0 5px rgba(102, 204, 138, 0.18);
  transform: translateY(-1px) scale(1.04);
}

.frank-link:hover span {
  text-decoration: underline;
  text-decoration-color: var(--primary);
  text-decoration-thickness: 0.16em;
  text-underline-offset: 0.18em;
}

.eyebrow {
  margin: 0 0 0.95rem;
  color: var(--primary-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-actions,
.secondary-actions,
.demo-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  border: 0;
  border-radius: 999px;
  padding: 0.9rem 1.3rem;
  color: inherit;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, filter 180ms ease, background-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px) scale(1.015);
  filter: brightness(1.02);
}

.primary {
  background: var(--primary);
  color: #333c4d;
  box-shadow: 0 14px 32px rgba(102, 204, 138, 0.28);
}

.button.primary::after {
  content: "→";
  margin-left: 0.45rem;
}

.button.instagram {
  background: linear-gradient(135deg, #f58529, #dd2a7b 48%, #8134af);
  color: #ffffff;
}

.button.tiktok {
  background: linear-gradient(135deg, #25f4ee, #111111 48%, #fe2c55);
  color: #ffffff;
}

.secondary,
.mini {
  background: #25251f;
  color: #ffffff;
}

.ghost {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--content);
}

.hero-ghost {
  background: var(--base);
}

.mini {
  min-height: 2.55rem;
  padding: 0.65rem 1rem;
}

.agent-link {
  margin: 0.85rem 0 0;
  color: rgba(51, 60, 77, 0.48);
  font-size: 0.92rem;
}

.agent-link a {
  font-weight: 850;
  text-decoration: none;
}

.hero-secondary {
  margin-top: 1rem;
}

.customer-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.1rem;
  color: rgba(51, 60, 77, 0.75);
}

.customer-proof p {
  margin-bottom: 0;
}

.customer-proof strong {
  color: #333c4d;
}

.avatar-group {
  display: flex;
  padding-left: 0.8rem;
}

.avatar-group img {
  display: block;
  width: 3rem;
  height: 3rem;
  margin-left: -0.8rem;
  border: 3px solid #ffffff;
  border-radius: 999px;
  object-fit: cover;
}

.demo-frame {
  overflow: hidden;
  max-width: 68rem;
  width: 100%;
  margin: 1.15rem auto 2rem;
  border: 4px solid #050505;
  border-radius: 0.65rem;
  background: #050505;
  box-shadow: 0 28px 80px rgba(51, 60, 77, 0.2);
}

.browser-bar {
  display: flex;
  gap: 0.45rem;
  padding: 0.7rem 0.8rem;
}

.browser-bar span {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 999px;
  background: #ffffff;
  opacity: 0.55;
}

.demo-dashboard {
  display: grid;
  grid-template-columns: 13rem 1fr;
  min-height: 28rem;
  border-radius: 0.4rem;
  background: #f6f6f0;
}

.demo-dashboard aside {
  display: grid;
  align-content: start;
  gap: 0.8rem;
  border-right: 1px solid var(--line);
  padding: 1.25rem;
}

.demo-dashboard aside strong {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  letter-spacing: -0.04em;
}

.demo-dashboard aside span {
  border-radius: 999px;
  padding: 0.7rem 0.85rem;
  color: var(--muted);
  font-weight: 800;
}

.demo-dashboard aside .active {
  background: var(--primary);
  color: var(--primary-dark);
}

.demo-main {
  display: grid;
  align-content: center;
  gap: 1rem;
  padding: clamp(1.2rem, 4vw, 2.4rem);
}

.demo-composer,
.demo-stats article,
.account-card,
.panel,
.note-card,
.feature-visual {
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  background: var(--base);
}

.demo-composer {
  padding: clamp(1.2rem, 4vw, 2rem);
}

.demo-composer p {
  margin-bottom: 0.7rem;
  color: var(--muted);
  font-weight: 850;
}

.demo-buttons {
  justify-content: flex-start;
  margin-top: 1.5rem;
}

.demo-buttons span {
  border-radius: 999px;
  padding: 0.5rem 0.75rem;
  background: var(--base-2);
  font-size: 0.82rem;
  font-weight: 850;
}

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

.demo-stats article {
  padding: 1rem;
}

.demo-stats strong {
  display: block;
  font-size: clamp(1.55rem, 4vw, 2.35rem);
  letter-spacing: -0.055em;
}

.demo-stats span {
  color: var(--muted);
  font-weight: 760;
}

.featured-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 4vw, 3rem);
  margin: 0 -1.25rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.7rem 1.25rem;
  color: rgba(51, 60, 77, 0.42);
}

.featured-strip span {
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.featured-strip strong {
  color: #333c4d;
  filter: grayscale(1);
  opacity: 0.45;
}

.feature-stack {
  display: grid;
  gap: 2rem;
  padding: 3.2rem 0 2.4rem;
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.9fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
}

.feature-row.reverse {
  direction: rtl;
}

.feature-row.reverse > * {
  direction: ltr;
}

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

.feature-copy h2 {
  margin-bottom: 1rem;
}

.feature-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.feature-copy .button {
  margin-top: 0.5rem;
}

.feature-visual {
  min-height: 24rem;
  padding: 1.4rem;
  background: linear-gradient(135deg, #fbfbf7, #f0f4ed);
}

.network-visual {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.network-visual::before,
.network-visual::after {
  content: "";
  position: absolute;
  inset: 18%;
  border: 1px dashed rgba(51, 60, 77, 0.18);
  border-radius: 999px;
}

.network-visual::after {
  inset: 31%;
}

.hub,
.node {
  position: absolute;
  display: grid;
  place-items: center;
  border-radius: 999px;
  font-weight: 950;
}

.hub {
  width: 7.5rem;
  height: 7.5rem;
  background: var(--primary);
  color: var(--primary-dark);
  box-shadow: 0 20px 50px rgba(102, 204, 138, 0.28);
}

.node {
  width: 4rem;
  height: 4rem;
  background: var(--content);
  color: #ffffff;
}

.node-a {
  top: 15%;
  left: 18%;
  background: #ff0033;
}

.node-b {
  top: 20%;
  right: 16%;
  background: linear-gradient(135deg, #f58529, #dd2a7b 52%, #8134af);
}

.node-c {
  right: 32%;
  bottom: 14%;
}

.cards-visual {
  display: grid;
  align-content: center;
  gap: 0.9rem;
}

.cards-visual article {
  display: grid;
  grid-template-columns: 4rem minmax(0, 1fr);
  gap: 0.85rem;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 0.85rem;
  background: #ffffff;
}

.cards-visual article:nth-child(2) {
  transform: translateX(1.25rem);
}

.cards-visual article:nth-child(3) {
  transform: translateX(2.5rem);
}

.cards-visual article span {
  grid-row: span 2;
  width: 4rem;
  aspect-ratio: 1;
  border-radius: 0.85rem;
  background: linear-gradient(135deg, #111111, var(--primary));
}

.cards-visual article strong,
.cards-visual article small {
  display: block;
}

.cards-visual article small {
  color: var(--muted);
  font-weight: 760;
}

.founder-story {
  display: grid;
  grid-template-columns: minmax(12rem, 0.36fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  margin: 0 0 2rem;
  border: 1px solid var(--line);
  border-radius: 1.4rem;
  padding: clamp(1.4rem, 4vw, 2.4rem);
  background: linear-gradient(135deg, #ffffff, #f4f8f0);
  box-shadow: var(--shadow);
  scroll-margin-top: 2rem;
}

.founder-story h2 {
  margin-bottom: 1rem;
}

.founder-story p:not(.eyebrow) {
  max-width: 46rem;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.founder-photo-wrap {
  justify-self: center;
}

.founder-photo-wrap img {
  display: block;
  width: clamp(8rem, 22vw, 14rem);
  height: clamp(8rem, 22vw, 14rem);
  border: 5px solid var(--primary);
  border-radius: 999px;
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(102, 204, 138, 0.24);
}

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

.account-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  align-content: start;
  gap: 1rem;
  min-height: 16rem;
  padding: 1.4rem;
  box-shadow: var(--shadow);
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.account-card:hover {
  border-color: rgba(51, 60, 77, 0.2);
  background: var(--base-2);
  box-shadow: 0 18px 48px rgba(51, 60, 77, 0.12);
}

.account-card-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.account-card-header h2 {
  margin: 0;
  font-size: 2rem;
}

.account-icon {
  flex: 0 0 auto;
  display: block;
  width: 2.9rem;
  height: 2.9rem;
  object-fit: contain;
  transition: transform 220ms ease;
}

.account-card:hover .account-icon {
  transform: scale(1.1);
}

.account-button {
  width: fit-content;
  min-height: 3rem;
  padding-inline: 1.35rem;
  font-weight: 700;
}

.account-card p,
.section-heading p,
.note-card,
.profile p,
.videos {
  color: var(--muted);
  line-height: 1.6;
}

.note-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 1.25rem;
}

.note-card span {
  font-weight: 850;
}

code {
  border-radius: 0.6rem;
  padding: 0.2rem 0.45rem;
  background: var(--base-2);
  color: var(--primary-dark);
  word-break: break-word;
}

.section-heading {
  max-width: 48rem;
  padding: 4rem 0 1.2rem;
}

.section-heading h2 {
  margin-bottom: 0.75rem;
  font-size: clamp(2.5rem, 6vw, 4.8rem);
}

.panel {
  margin-bottom: 1rem;
  padding: clamp(1.1rem, 3vw, 1.8rem);
  box-shadow: var(--shadow);
}

.panel-header,
.profile {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
}

.pill {
  flex: 0 0 auto;
  border-radius: 999px;
  padding: 0.5rem 0.75rem;
  background: #ecf9ef;
  color: #277a42;
  font-size: 0.78rem;
  font-weight: 900;
}

.profile {
  justify-content: flex-start;
  margin-top: 1.4rem;
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  padding: 1rem;
  background: #fffdf7;
}

.profile img {
  width: 5rem;
  height: 5rem;
  flex: 0 0 auto;
  border-radius: 1rem;
  object-fit: cover;
  background: var(--base-2);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin: 1.4rem 0;
}

.stat {
  min-height: 7.4rem;
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  padding: 1rem;
  background: linear-gradient(180deg, #ffffff, #fbfbf7);
}

.stat strong {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--content);
  font-size: clamp(1.65rem, 4vw, 2.55rem);
  letter-spacing: -0.055em;
}

.stat span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 750;
}

.videos {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.15rem;
}

.video {
  display: grid;
  grid-template-columns: 11rem minmax(0, 1fr);
  gap: 1rem;
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  padding: 0.85rem;
  background: #fffdf7;
}

.video img {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 0.85rem;
  object-fit: cover;
  background: var(--base-2);
}

.video h3 {
  color: var(--content);
}

.video p {
  color: var(--muted);
}

.video-meta,
.video-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.video-meta span,
.video-stats span {
  border-radius: 999px;
  padding: 0.38rem 0.6rem;
  background: var(--base-2);
  color: rgba(51, 60, 77, 0.78);
  font-size: 0.78rem;
  font-weight: 800;
}

.video a {
  color: var(--primary-dark);
  text-decoration: none;
}

.raw {
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

summary {
  cursor: pointer;
  font-weight: 900;
}

pre {
  overflow: auto;
  max-height: 22rem;
  border: 1px solid #1f1f1d;
  border-radius: 1rem;
  padding: 1rem;
  background: #11110f;
  color: #c9f7d7;
}

.hidden {
  display: none;
}

@media (max-width: 920px) {
  .site-header {
    position: static;
  }

  .nav-links {
    display: none;
  }

  .demo-dashboard,
  .feature-row,
  .founder-story,
  .account-grid,
  .stats {
    grid-template-columns: 1fr;
  }

  .founder-story {
    text-align: center;
  }

  .demo-dashboard aside {
    display: none;
  }

  .feature-row.reverse {
    direction: ltr;
  }

  .feature-visual {
    min-height: 19rem;
  }

  .account-card {
    min-height: auto;
  }

  .panel-header,
  .profile {
    align-items: flex-start;
  }

  .panel-header {
    flex-direction: column;
  }

  .video {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .shell {
    padding-inline: 1rem;
  }

  .hero {
    padding-inline: 0;
  }

  .hero-actions,
  .secondary-actions {
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .customer-proof {
    flex-direction: column;
  }

  .demo-frame {
    border-width: 3px;
  }

  .demo-stats {
    grid-template-columns: 1fr;
  }

  .cards-visual article:nth-child(2),
  .cards-visual article:nth-child(3) {
    transform: none;
  }

  .note-card {
    width: 100%;
  }

  .profile {
    flex-direction: column;
  }
}
