:root {
  color-scheme: light;
  --paper: #f8f8f2;
  --ink: #111111;
  --muted: #5f625b;
  --line: #111111;
  --grid: rgba(17, 17, 17, 0.1);
  --green: #c8f35d;
  --sky: #a7d8ff;
  --coral: #ff7b63;
  --violet: #bca8ff;
  --yellow: #ffe36e;
  --white: #ffffff;
  --radius: 8px;
  --shadow: 5px 5px 0 #111111;
  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: #202020;
  color: var(--ink);
  letter-spacing: 0;
}

body,
button,
input,
select {
  font: inherit;
}

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

.page-shell {
  width: min(1440px, 100%);
  margin: 0 auto;
  overflow: hidden;
  background: var(--paper);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 76px;
  padding: 0 46px;
  border-bottom: 2px solid var(--line);
  background: rgba(248, 248, 242, 0.94);
  backdrop-filter: blur(16px);
}

.brand-mark {
  display: inline-flex;
  width: max-content;
  font-weight: 950;
  line-height: 1;
}

.brand-mark span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  background: var(--green);
  box-shadow: 2px 2px 0 var(--line);
}

.main-nav,
.site-footer nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  font-size: 0.8rem;
  font-weight: 850;
  text-transform: uppercase;
}

.main-nav a,
.site-footer nav a {
  border-bottom: 2px solid transparent;
}

.main-nav a:hover,
.site-footer nav a:hover {
  border-bottom-color: var(--line);
}

.header-cta,
.primary-button,
.secondary-button,
.plan-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  transition:
    transform 150ms ease,
    box-shadow 150ms ease,
    background 150ms ease;
}

.header-cta {
  justify-self: end;
  background: var(--ink);
  color: var(--paper);
}

.primary-button,
.plan-button {
  background: var(--green);
  box-shadow: 3px 3px 0 var(--line);
}

.secondary-button {
  background: var(--white);
}

.header-cta:hover,
.primary-button:hover,
.secondary-button:hover,
.plan-button:hover {
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 var(--line);
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
  gap: 54px;
  min-height: calc(100vh - 76px);
  padding: 64px 46px 84px;
  border-bottom: 2px solid var(--line);
  background:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px),
    var(--paper);
  background-size: 62px 62px;
}

.hero-media {
  position: relative;
  min-height: 560px;
}

.feed-card {
  position: absolute;
  width: min(420px, 92%);
  min-height: 196px;
  padding: 24px;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feed-card-a {
  top: 16px;
  left: 0;
  background: var(--sky);
  transform: rotate(-4deg);
}

.feed-card-b {
  top: 190px;
  right: 0;
  background: var(--yellow);
  transform: rotate(3deg);
}

.feed-card-c {
  left: 48px;
  bottom: 0;
  background: var(--coral);
  transform: rotate(-1deg);
}

.card-label,
.eyebrow,
.plan-kicker {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  border: 2px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.feed-card h2 {
  margin: 34px 0 16px;
  font-size: clamp(1.6rem, 2.2vw, 2.35rem);
  line-height: 1;
}

.feed-card p,
.hero-subtitle,
.benefit-grid p,
.step-list p,
.comparison-copy p,
.plan-card p,
.faq-list p {
  color: var(--muted);
  line-height: 1.55;
}

.feed-card p {
  margin: 0;
  max-width: 280px;
  color: #1e1e1e;
  font-weight: 750;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 8px;
}

.hero-copy .eyebrow {
  background: var(--violet);
}

.hero-copy h1 {
  max-width: 760px;
  margin: 28px 0 18px;
  font-size: clamp(4rem, 8vw, 7.9rem);
  font-weight: 950;
  line-height: 0.86;
  text-transform: uppercase;
}

.hero-subtitle {
  max-width: 590px;
  margin: 0 0 30px;
  color: #242424;
  font-size: 1.08rem;
  font-weight: 720;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.why-section,
.how-section,
.comparison-section,
.pricing-section,
.faq-section,
.site-footer {
  padding: 92px 46px;
  border-bottom: 2px solid var(--line);
}

.section-title {
  display: grid;
  gap: 18px;
  max-width: 780px;
}

.section-title.center {
  justify-items: center;
  max-width: none;
  text-align: center;
}

.section-title h2,
.comparison-copy h2 {
  margin: 0;
  font-size: clamp(2.8rem, 5.4vw, 5.9rem);
  font-weight: 950;
  line-height: 0.92;
  text-transform: uppercase;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 48px;
}

.benefit-grid article,
.step-list article,
.plan-card,
.faq-list details,
.comparison-table {
  border: 2px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.benefit-grid article {
  min-height: 280px;
  padding: 22px;
}

.benefit-grid article:nth-child(1) {
  background: var(--green);
}

.benefit-grid article:nth-child(2) {
  background: var(--sky);
}

.benefit-grid article:nth-child(3) {
  background: var(--violet);
}

.benefit-grid span,
.step-list span {
  display: block;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.benefit-grid h3 {
  max-width: 260px;
  margin: 76px 0 12px;
  font-size: clamp(1.7rem, 2.5vw, 2.45rem);
  line-height: 0.96;
  text-transform: uppercase;
}

.benefit-grid p {
  margin: 0;
  color: #202020;
  font-weight: 700;
}

.how-section {
  background: var(--ink);
  color: var(--paper);
}

.how-section .eyebrow {
  color: var(--ink);
}

.step-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 48px;
}

.step-list article {
  display: grid;
  min-height: 340px;
  padding: 24px;
  color: var(--ink);
}

.step-list article:nth-child(1) {
  background: var(--yellow);
}

.step-list article:nth-child(2) {
  background: var(--coral);
}

.step-list article:nth-child(3) {
  background: var(--green);
}

.step-list h3 {
  align-self: end;
  max-width: 310px;
  margin: 0 0 16px;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.step-list p {
  margin: 0;
  color: #202020;
  font-weight: 700;
}

.comparison-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
  background: var(--sky);
}

.comparison-copy .eyebrow {
  margin-bottom: 22px;
  background: var(--paper);
}

.comparison-copy p {
  max-width: 460px;
  margin: 22px 0 0;
  color: #202020;
  font-weight: 750;
}

.comparison-table {
  overflow: hidden;
  background: var(--line);
}

.table-row {
  display: grid;
  grid-template-columns: 0.7fr 1fr 1fr;
  gap: 2px;
  background: var(--line);
}

.table-row span {
  display: flex;
  align-items: center;
  min-height: 76px;
  padding: 18px;
  background: var(--paper);
  font-weight: 850;
}

.table-head span {
  min-height: 54px;
  background: var(--ink);
  color: var(--paper);
  font-size: 0.76rem;
  text-transform: uppercase;
}

.pricing-section {
  background: var(--yellow);
}

.pricing-layout {
  display: grid;
  grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
  justify-content: space-between;
  max-width: 1360px;
  margin: 0 auto;
}

.pricing-copy {
  position: sticky;
  top: 102px;
  display: grid;
  gap: 18px;
  min-width: 0;
}

.pricing-copy .eyebrow {
  background: var(--paper);
}

.pricing-copy h2 {
  max-width: 390px;
  margin: 0;
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 950;
  line-height: 0.88;
  text-transform: uppercase;
}

.pricing-copy p:not(.eyebrow) {
  max-width: 420px;
  margin: 0;
  color: #202020;
  font-weight: 760;
  line-height: 1.55;
}

.pricing-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  min-width: 0;
  max-width: 960px;
  justify-self: end;
}

.plan-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 22px;
  min-width: 0;
  min-height: 540px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.plan-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  align-items: start;
  gap: 14px;
  min-width: 0;
}

.plan-head > div {
  min-width: 0;
}

.featured-plan {
  background: var(--green);
}

.popular-ribbon {
  position: absolute;
  top: -17px;
  right: 22px;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 2px solid var(--line);
  border-radius: 999px;
  background: var(--coral);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.plan-kicker {
  margin: 0 0 22px;
  min-height: 38px;
  padding: 0 14px 0 10px;
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  box-shadow: 2px 2px 0 var(--line);
  gap: 9px;
}

.plan-kicker::before {
  content: "";
  width: 11px;
  height: 11px;
  border: 2px solid var(--line);
  border-radius: 50%;
  background: var(--violet);
}

.featured-plan .plan-kicker::before {
  background: var(--coral);
}

.plan-badge {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  min-height: 34px;
  padding: 0 10px;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  font-size: 0.72rem;
  font-weight: 950;
  white-space: nowrap;
  text-transform: uppercase;
}

.plan-card h3 {
  margin: 0;
  font-size: clamp(2.3rem, 3.2vw, 3.6rem);
  line-height: 0.9;
}

.plan-card h3 span {
  display: block;
  margin-top: 12px;
  font-size: 1rem;
  line-height: 1;
  text-transform: uppercase;
}

.plan-copy {
  max-width: 360px;
  margin: 0;
  color: #202020;
  font-weight: 720;
  line-height: 1.5;
}

.plan-features {
  display: grid;
  align-self: stretch;
  gap: 0;
  min-width: 0;
  padding: 0;
  margin: 0;
  border-top: 2px solid var(--line);
  list-style: none;
}

.plan-features li {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 16px;
  align-items: center;
  min-width: 0;
  min-height: 66px;
  padding: 14px 0;
  border-bottom: 2px solid var(--line);
}

.plan-features span {
  color: rgba(17, 17, 17, 0.62);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.plan-features strong {
  min-width: 0;
  font-size: 0.98rem;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.plan-button {
  width: 100%;
}

.featured-plan .plan-button {
  background: var(--ink);
  color: var(--paper);
}

.pricing-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2px;
  width: min(1000px, 100%);
  margin: 30px auto 0;
  overflow: hidden;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.pricing-strip span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 14px;
  background: var(--paper);
  font-size: 0.78rem;
  font-weight: 950;
  text-align: center;
  text-transform: uppercase;
}

.faq-section {
  background: var(--violet);
}

.faq-list {
  display: grid;
  gap: 12px;
  width: min(900px, 100%);
  margin: 48px auto 0;
}

.faq-list details {
  overflow: hidden;
  background: var(--paper);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 74px;
  padding: 0 22px;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 900;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  flex: 0 0 auto;
  font-size: 1.6rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  max-width: 700px;
  margin: 0;
  padding: 0 22px 22px;
  color: #202020;
  font-weight: 700;
}

.site-footer {
  border-bottom: 0;
  background: var(--ink);
  color: var(--paper);
}

.footer-title {
  max-width: 1100px;
  margin: 0;
  font-size: clamp(3.4rem, 8vw, 8.7rem);
  font-weight: 950;
  line-height: 0.82;
}

.footer-title + .footer-title {
  color: var(--green);
}

.footer-bottom {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: end;
  margin-top: 76px;
}

.site-footer .brand-mark span {
  color: var(--ink);
}

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

.site-footer small {
  color: rgba(248, 248, 242, 0.7);
  font-size: 0.72rem;
  text-align: right;
}

.dashboard-shell {
  min-height: 100vh;
  padding: 24px;
  background:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px),
    var(--paper);
  background-size: 54px 54px;
}

.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto 42px;
}

.dashboard-auth,
.dashboard-app {
  max-width: 1180px;
  margin: 0 auto;
}

.dashboard-auth {
  display: grid;
  gap: 20px;
  max-width: 720px;
  min-height: 58vh;
  align-content: center;
}

.dashboard-auth h1,
.dashboard-topline h1 {
  margin: 0;
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.dashboard-auth p:not(.eyebrow) {
  margin: 0;
  max-width: 560px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.55;
}

.dashboard-topline {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.subscription-panel,
.lane-panel {
  border: 2px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.subscription-panel {
  display: grid;
  gap: 8px;
  min-width: 260px;
  padding: 18px;
  font-weight: 850;
}

.subscription-panel span {
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
}

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

.lane-panel {
  padding: 22px;
}

.panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.panel-title h2 {
  margin: 0;
  font-size: 1.35rem;
  text-transform: uppercase;
}

.panel-title span {
  color: var(--muted);
  font-weight: 780;
}

.lane-panel form {
  display: grid;
  gap: 16px;
}

.lane-panel label {
  display: grid;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.lane-panel input,
.lane-panel textarea {
  width: 100%;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  font-weight: 650;
}

.lane-panel textarea {
  min-height: 260px;
  resize: vertical;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.86rem;
  line-height: 1.5;
  text-transform: none;
}

.lane-list,
.delivery-list {
  display: grid;
  gap: 12px;
}

.lane-item,
.delivery-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-top: 2px solid var(--line);
}

.lane-item h3,
.delivery-item h3 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.lane-item p,
.delivery-item p {
  margin: 0;
  color: var(--muted);
  font-weight: 740;
}

.lane-item button {
  min-height: 40px;
  padding: 0 12px;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  background: var(--coral);
  color: var(--ink);
  font: inherit;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.delivery-panel {
  margin-top: 22px;
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    padding-right: 28px;
    padding-left: 28px;
  }

  .main-nav {
    gap: 18px;
  }

  .hero-section,
  .why-section,
  .how-section,
  .comparison-section,
  .pricing-section,
  .faq-section,
  .site-footer {
    padding-right: 28px;
    padding-left: 28px;
  }

  .hero-section,
  .comparison-section {
    grid-template-columns: 1fr;
  }

  .pricing-layout {
    grid-template-columns: 1fr;
  }

  .pricing-copy {
    position: static;
  }

  .pricing-copy p:not(.eyebrow) {
    max-width: 640px;
  }

  .pricing-copy h2 {
    max-width: 720px;
  }

  .pricing-board {
    max-width: none;
    justify-self: stretch;
  }

  .hero-section {
    min-height: auto;
  }

  .hero-copy {
    order: -1;
  }

  .hero-media {
    min-height: 500px;
  }
}

@media (max-width: 800px) {
  .site-header {
    min-height: 66px;
  }

  .main-nav {
    display: none;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 12px;
  }

  .hero-section,
  .why-section,
  .how-section,
  .comparison-section,
  .pricing-section,
  .faq-section,
  .site-footer {
    padding: 56px 18px;
  }

  .hero-section {
    padding-top: 42px;
  }

  .hero-copy h1 {
    font-size: clamp(3.2rem, 16vw, 5.6rem);
  }

  .hero-media {
    min-height: 620px;
  }

  .feed-card {
    position: relative;
    width: 100%;
    min-height: 178px;
    margin-bottom: 18px;
    transform: none;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
  }

  .benefit-grid,
  .step-list,
  .pricing-board {
    grid-template-columns: 1fr;
  }

  .pricing-strip {
    grid-template-columns: 1fr;
    margin-left: 0;
  }

  .comparison-table {
    overflow-x: auto;
  }

  .table-row {
    min-width: 620px;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .site-footer small {
    text-align: left;
  }

  .dashboard-shell {
    padding: 18px;
  }

  .dashboard-topline {
    display: grid;
    align-items: start;
  }

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

@media (max-width: 520px) {
  .hero-actions {
    display: grid;
    width: 100%;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .hero-media {
    min-height: auto;
  }

  .benefit-grid article,
  .step-list article,
  .plan-card {
    min-height: auto;
  }

  .plan-head {
    display: grid;
    grid-template-columns: 1fr;
  }

  .plan-badge {
    justify-self: start;
    width: max-content;
  }

  .plan-features li {
    grid-template-columns: 1fr;
    gap: 6px;
    align-items: start;
  }

  .benefit-grid h3 {
    margin-top: 54px;
  }

  .faq-list summary {
    min-height: 66px;
    align-items: flex-start;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .dashboard-header,
  .panel-title,
  .lane-item,
  .delivery-item {
    display: grid;
    align-items: start;
  }

  .subscription-panel {
    min-width: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
