:root {
  color-scheme: light;
  --ink: #151827;
  --muted: #596071;
  --soft: #fbfaf8;
  --line: rgba(21, 24, 39, 0.1);
  --coral: #ff625d;
  --violet: #7357d9;
  --green: #27854c;
  --navy: #111525;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--soft);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  border-bottom: 1px solid var(--line);
  background: rgba(251, 250, 248, 0.9);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 16px 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-size: 28px;
  font-weight: 850;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 10px;
  background: var(--coral);
  color: white;
  box-shadow: 0 14px 34px -18px rgba(255, 98, 93, 0.95);
}

.nav-links,
.nav-actions,
.footer-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a,
.footer-links a,
.text-link {
  color: #383c4d;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.nav-links a:hover,
.footer-links a:hover,
.text-link:hover {
  color: var(--coral);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 10px;
  background: var(--coral);
  color: white;
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 18px 34px -20px rgba(255, 98, 93, 0.9);
}

.button.secondary {
  border: 1px solid var(--line);
  background: white;
  color: var(--ink);
  box-shadow: none;
}

.hero {
  max-width: 1440px;
  margin: 0 auto;
  padding: 64px 32px 70px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  align-items: center;
  gap: 56px;
}

.pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 9px 16px;
  background: #fff0ee;
  color: var(--coral);
  font-size: 14px;
  font-weight: 850;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-top: 28px;
  font-size: clamp(48px, 5.8vw, 88px);
  line-height: 0.98;
}

h1 span {
  color: var(--coral);
}

.hero-copy {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 760px;
  margin-top: 44px;
}

.feature-icon,
.trust-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 10px;
  background: #f4f1ee;
  color: var(--violet);
}

.feature h3,
.trust-card h3 {
  margin: 14px 0 6px;
  font-size: 15px;
}

.feature p,
.trust-card p,
.step p,
.legal p,
.legal li {
  color: var(--muted);
  line-height: 1.7;
}

.app-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
  box-shadow: 0 30px 80px -45px rgba(21, 24, 39, 0.45);
}

.app-shell {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
}

.rail {
  padding: 26px 0;
  background: var(--navy);
  color: white;
}

.rail span {
  display: grid;
  width: 40px;
  height: 40px;
  margin: 0 auto 20px;
  place-items: center;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.82);
}

.rail span:first-child {
  color: var(--coral);
}

.app-content {
  padding: 28px;
}

.app-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.eyebrow {
  margin: 0 0 6px;
  color: #7b8091;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.app-title {
  margin: 0;
  font-size: 21px;
  font-weight: 850;
}

.badge {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  border-radius: 8px;
  padding: 0 12px;
  background: #f4f1ee;
  color: #383c4d;
  font-size: 12px;
  font-weight: 800;
}

.badge.violet {
  background: var(--violet);
  color: white;
}

.dashboard {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.8fr);
  gap: 18px;
}

.calendar,
.panel {
  border: 1px solid #ebe8e4;
  border-radius: 10px;
  background: white;
}

.calendar {
  min-height: 360px;
  padding: 18px;
}

.days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  color: #7b8091;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  min-height: 286px;
  margin-top: 14px;
  border-top: 1px dashed #e3ded8;
}

.timeline div {
  border-left: 1px dashed #e3ded8;
}

.post-chip {
  position: absolute;
  width: 64px;
  border: 1px solid #e8e3dd;
  border-radius: 8px;
  padding: 5px;
  background: white;
  box-shadow: 0 8px 18px -14px rgba(21, 24, 39, 0.55);
}

.post-chip i {
  display: block;
  height: 52px;
  border-radius: 5px;
}

.post-chip small {
  display: block;
  margin-top: 4px;
  color: #383c4d;
  font-size: 10px;
}

.post-chip strong {
  display: block;
  color: var(--green);
  font-size: 9px;
}

.post-one {
  left: 8%;
  top: 8%;
}

.post-two {
  left: 32%;
  top: 28%;
}

.post-three {
  left: 54%;
  top: 48%;
}

.post-four {
  left: 78%;
  top: 66%;
}

.side-stack {
  display: grid;
  gap: 16px;
}

.panel {
  padding: 16px;
}

.panel-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  font-weight: 850;
}

.grid-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.grid-preview span,
.media-row span {
  display: block;
  aspect-ratio: 1;
  border-radius: 5px;
}

.media-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.workflow {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fffaf7;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 56px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 72px 32px;
}

.section-kicker {
  margin: 0 0 18px;
  color: var(--coral);
  font-size: 14px;
  font-weight: 850;
}

.section-grid h2,
.trust h2 {
  font-size: clamp(34px, 3.4vw, 48px);
  line-height: 1.08;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.step-number {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--violet);
  font-weight: 900;
}

.step h3 {
  margin: 20px 0 8px;
}

.trust {
  max-width: 1180px;
  margin: 0 auto;
  padding: 72px 32px;
}

.trust-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 56px;
}

.trust .pill {
  background: #eef9f1;
  color: var(--green);
}

.trust-copy {
  color: var(--muted);
  line-height: 1.8;
}

.policy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
}

.policy-links a {
  color: var(--violet);
  font-weight: 850;
  text-decoration: none;
}

.trust-list {
  display: grid;
  gap: 14px;
}

.trust-card {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
}

.assurance {
  background: var(--navy);
  color: white;
}

.assurance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 72px 32px;
}

.assurance svg {
  color: #79d69b;
}

.assurance h3 {
  margin: 18px 0 8px;
}

.assurance p {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.7;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--soft);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 24px 32px;
  color: #646a7c;
  font-size: 14px;
}

.legal-page {
  max-width: 920px;
  margin: 0 auto;
  padding: 64px 32px 80px;
}

.legal h1 {
  max-width: 860px;
  font-size: clamp(44px, 5vw, 68px);
}

.legal-intro {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.updated {
  margin: 12px 0 44px;
  color: #7b8091;
  font-size: 14px;
}

.legal section {
  margin-top: 36px;
}

.legal h2 {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 24px;
  font-weight: 850;
}

.legal a {
  color: var(--violet);
  font-weight: 800;
}

@media (max-width: 1080px) {
  .hero-grid,
  .section-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .app-frame {
    max-width: 780px;
  }
}

@media (max-width: 760px) {
  .nav {
    padding: 14px 20px;
  }

  .brand {
    font-size: 20px;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
  }

  .nav-links,
  .nav-actions .text-link {
    display: none;
  }

  .nav-actions {
    gap: 0;
  }

  .button {
    min-height: 42px;
    padding: 0 14px;
    font-size: 13px;
  }

  .hero,
  .section-grid,
  .trust,
  .assurance-grid,
  .legal-page {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero {
    padding-top: 48px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .feature-row,
  .steps,
  .assurance-grid,
  .dashboard {
    grid-template-columns: 1fr;
  }

  .app-shell {
    grid-template-columns: 1fr;
  }

  .rail {
    display: none;
  }

  .app-content {
    padding: 18px;
  }

  .calendar {
    min-height: 330px;
  }

  .post-chip {
    width: 55px;
  }

  .post-chip i {
    height: 45px;
  }

  .trust-card {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 22px 20px;
  }

  .footer-links {
    gap: 16px;
    flex-wrap: wrap;
  }
}
