:root {
  color-scheme: light;
  --page: #f6f8fc;
  --surface: #ffffff;
  --surface-soft: #f1f5fb;
  --ink: #071333;
  --muted: #5d6b82;
  --line: #dce3ee;
  --line-strong: #c7d2e2;
  --blue: #0b74ff;
  --blue-dark: #063b95;
  --navy: #020d36;
  --pink: #f62586;
  --green: #087f5b;
  --shadow-sm: 0 8px 24px rgba(7, 19, 51, 0.08);
  --shadow-md: 0 22px 70px rgba(7, 19, 51, 0.13);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.7rem;
  padding: 0.8rem clamp(1rem, 4vw, 3rem);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--navy);
  font-weight: 900;
  letter-spacing: 0;
}

.brand img {
  width: 2.35rem;
  height: 2.35rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 750;
}

.desktop-nav a:hover {
  color: var(--blue-dark);
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 2.7rem;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 850;
  letter-spacing: 0;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.header-cta {
  padding: 0 1rem;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}

.button {
  padding: 0 1.25rem;
}

.button:hover,
.header-cta:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--blue);
  color: white;
  box-shadow: 0 14px 34px rgba(11, 116, 255, 0.24);
}

.button.secondary {
  border: 1px solid var(--line-strong);
  background: var(--surface);
  color: var(--navy);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(28rem, 1.1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  min-height: 82vh;
  padding: 6.8rem clamp(1rem, 5vw, 5rem) 2.6rem;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 76% 28%, rgba(11, 116, 255, 0.13), transparent 26rem),
    linear-gradient(180deg, #ffffff 0%, #f6f8fc 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.72)),
    radial-gradient(circle at 90% 70%, rgba(246, 37, 134, 0.08), transparent 20rem);
}

.hero-content,
.product-demo {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 15ch;
  margin-bottom: 1.25rem;
  color: var(--navy);
  font-size: clamp(3.1rem, 5vw, 5rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 670px;
  color: #31415d;
  font-size: clamp(1.04rem, 1.35vw, 1.18rem);
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.6rem;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.5rem;
  max-width: 720px;
}

.hero-metrics span {
  min-height: 3.8rem;
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--muted);
  line-height: 1.35;
}

.hero-metrics strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--navy);
}

.product-demo {
  display: grid;
  grid-template-columns: 12.2rem minmax(0, 1fr);
  min-height: 27rem;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow-md);
}

.app-sidebar {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 1rem;
  border-right: 1px solid var(--line);
  background: #f8fafd;
}

.sidebar-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.2rem;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 900;
}

.sidebar-brand img {
  width: 2.3rem;
  height: 2.3rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
}

.sidebar-pill {
  display: block;
  padding: 0.72rem 0.75rem;
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.sidebar-pill.active {
  background: #e9f2ff;
  color: var(--blue-dark);
}

.app-main {
  min-width: 0;
  padding: 1rem;
  background: linear-gradient(180deg, #ffffff, #f7faff);
}

.app-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.app-toolbar span,
.insight-row span,
.post-card small {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 760;
}

.app-toolbar strong {
  display: block;
  margin-top: 0.18rem;
  color: var(--navy);
  font-size: 1.05rem;
}

.app-toolbar button {
  min-height: 2.35rem;
  padding: 0 0.8rem;
  border: 0;
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 850;
}

.calendar-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
}

.calendar-board article {
  min-height: 11.8rem;
  padding: 0.7rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcff;
}

.calendar-board article > span {
  display: block;
  margin-bottom: 0.7rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.post-card {
  min-height: 5.8rem;
  padding: 0.65rem;
  border-radius: 8px;
  color: white;
}

.post-card strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.86rem;
}

.post-card small {
  font-size: 0.72rem;
  line-height: 1.25;
}

.post-card small {
  color: rgba(255, 255, 255, 0.86);
}

.post-card.instagram {
  background: linear-gradient(135deg, var(--blue), #51a7ff);
}

.post-card.linkedin {
  background: linear-gradient(135deg, var(--navy), #25428a);
}

.post-card.facebook {
  background: linear-gradient(135deg, #2b65df, #073a98);
}

.post-card.tiktok {
  background: linear-gradient(135deg, var(--pink), #ff77b8);
}

.insight-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 0.9rem;
}

.insight-row div {
  min-height: 5rem;
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.insight-row strong {
  display: block;
  margin-top: 0.3rem;
  color: var(--navy);
  font-size: 1.25rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 0 clamp(1rem, 5vw, 5rem);
  background: var(--line);
}

.trust-strip span {
  display: grid;
  min-height: 4.6rem;
  place-items: center;
  background: var(--surface);
  color: var(--navy);
  font-weight: 850;
  text-align: center;
}

.section {
  padding: clamp(4rem, 7vw, 7rem) clamp(1rem, 5vw, 5rem);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 2.2rem;
}

.section-heading h2,
.cta-band h2 {
  margin-bottom: 0;
  color: var(--navy);
  font-size: clamp(2rem, 4.6vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0;
}

.timeline,
.feature-grid,
.pricing-grid {
  display: grid;
  gap: 1rem;
}

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

.timeline article,
.feature-grid article,
.price-card,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.timeline article {
  min-height: 13rem;
  padding: 1.2rem;
}

.timeline span {
  display: block;
  margin-bottom: 2.2rem;
  color: var(--blue);
  font-weight: 950;
}

.timeline h3,
.feature-grid h3,
.price-card h3 {
  margin-bottom: 0.65rem;
  color: var(--navy);
  font-size: 1.25rem;
}

.timeline p,
.feature-grid p,
.price-card p,
.cta-band p,
.faq-list p {
  color: var(--muted);
  line-height: 1.62;
}

.features {
  background: #ffffff;
  border-block: 1px solid var(--line);
}

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

.feature-grid article {
  min-height: 15rem;
  padding: 1.2rem;
}

.icon {
  display: grid;
  width: 2.45rem;
  height: 2.45rem;
  place-items: center;
  margin-bottom: 1.15rem;
  border: 1px solid #b9d6ff;
  border-radius: 8px;
  background: #eaf3ff;
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 950;
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.price-card {
  padding: 1.35rem;
}

.price-card.featured {
  border-color: #83b8ff;
  box-shadow: 0 24px 70px rgba(11, 116, 255, 0.16);
}

.plan {
  margin-bottom: 1rem;
  color: var(--green);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.price-card h3 {
  font-size: clamp(2.1rem, 3.6vw, 3.3rem);
  line-height: 1;
}

.price-card h3 span {
  color: var(--muted);
  font-size: 1rem;
}

ul {
  display: grid;
  gap: 0.65rem;
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}

li {
  position: relative;
  padding-left: 1.35rem;
  color: #31415d;
}

li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: var(--blue);
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 2rem;
  background:
    linear-gradient(135deg, rgba(11, 116, 255, 0.1), rgba(246, 37, 134, 0.06)),
    var(--surface);
  border-block: 1px solid var(--line);
}

.cta-band p {
  max-width: 760px;
  margin: 1rem 0 0;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-list details {
  padding: 1.1rem 1.2rem;
}

.faq-list summary {
  cursor: pointer;
  color: var(--navy);
  font-weight: 850;
}

.faq-list p {
  margin: 0.9rem 0 0;
}

.legal-page {
  min-height: 100vh;
  padding-top: 4.7rem;
}

.legal-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 9vw, 8rem) clamp(1rem, 5vw, 5rem) clamp(3rem, 5vw, 5rem);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 78% 18%, rgba(246, 37, 134, 0.08), transparent 24rem),
    radial-gradient(circle at 18% 18%, rgba(11, 116, 255, 0.12), transparent 28rem),
    #ffffff;
}

.legal-hero h1 {
  max-width: 900px;
  margin-bottom: 1rem;
  color: var(--navy);
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.9;
}

.legal-hero p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(13rem, 0.28fr) minmax(0, 0.72fr);
  gap: clamp(1.2rem, 4vw, 3rem);
  align-items: start;
  padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 5vw, 5rem);
}

.legal-nav {
  position: sticky;
  top: 6rem;
  display: grid;
  gap: 0.45rem;
  padding: 0.8rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.legal-nav a {
  display: block;
  padding: 0.75rem 0.85rem;
  border-radius: 8px;
  color: var(--muted);
  font-weight: 800;
}

.legal-nav a:hover,
.legal-nav a[aria-current="page"] {
  color: var(--blue-dark);
  background: #e9f2ff;
}

.legal-content {
  max-width: 860px;
  padding: clamp(1.2rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.legal-content h2 {
  margin: 2.2rem 0 0.75rem;
  color: var(--navy);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.12;
}

.legal-content h2:first-child,
.legal-note + h2 {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  color: #31415d;
  line-height: 1.72;
}

.legal-content a {
  color: #075fd3;
  text-decoration: underline;
  text-decoration-color: rgba(7, 95, 211, 0.35);
  text-underline-offset: 0.18em;
}

.legal-note {
  margin-bottom: 2rem;
  padding: 1rem;
  border: 1px solid rgba(8, 127, 91, 0.22);
  border-radius: 8px;
  background: rgba(8, 127, 91, 0.08);
}

.site-footer {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem clamp(1rem, 5vw, 5rem);
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.site-footer span {
  color: var(--navy);
  font-weight: 900;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.site-footer a:hover {
  color: var(--blue-dark);
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .product-demo {
    max-width: 920px;
  }

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

@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }

  .hero {
    padding-top: 7rem;
  }

  .hero-metrics,
  .feature-grid,
  .pricing-grid,
  .cta-band,
  .legal-layout {
    grid-template-columns: 1fr;
  }

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

  .app-sidebar {
    display: none;
  }

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

  .legal-nav {
    position: static;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .legal-nav a {
    text-align: center;
  }

  .feature-grid article,
  .timeline article {
    min-height: auto;
  }

  .cta-band .button {
    width: min(100%, 18rem);
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 4rem;
    padding: 0.7rem 1rem;
  }

  .brand span {
    display: none;
  }

  .header-cta {
    min-height: 2.35rem;
    padding-inline: 0.75rem;
    font-size: 0.9rem;
  }

  .hero {
    padding: 6rem 1rem 3rem;
  }

  h1 {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }

  .hero-actions .button {
    width: 100%;
  }

  .product-demo {
    display: none;
  }

  .trust-strip,
  .timeline {
    grid-template-columns: 1fr;
  }

  .section {
    padding-inline: 1rem;
  }

  .legal-page {
    padding-top: 4rem;
  }

  .legal-hero,
  .legal-layout {
    padding-inline: 1rem;
  }

  .legal-nav {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
