:root {
  --ink: #071316;
  --ink-soft: #23363b;
  --paper: #f7f4ed;
  --white: #ffffff;
  --turf: #1f5fa9;
  --turf-deep: #123c72;
  --chalk: #d9e9ff;
  --gold: #f3b345;
  --orange: #e96d34;
  --line: rgba(7, 19, 22, 0.14);
  --shadow: 0 24px 70px rgba(4, 16, 20, 0.28);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-shell {
  min-height: 100vh;
}

#features,
#workflow,
#pricing,
#blog,
#demo {
  scroll-margin-top: 82px;
}

.site-header {
  align-items: center;
  background: rgba(247, 244, 237, 0.92);
  border-bottom: 1px solid rgba(7, 19, 22, 0.1);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  left: 0;
  padding: 14px clamp(18px, 4vw, 64px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
}

.brand {
  align-items: center;
  display: inline-flex;
  min-height: 44px;
}

.brand img {
  display: block;
  height: 42px;
  max-width: 240px;
  mix-blend-mode: multiply;
  object-fit: contain;
  opacity: 0.96;
  width: auto;
}

.nav {
  align-items: center;
  display: flex;
  gap: 8px;
}

.nav a {
  border-radius: 6px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 750;
  padding: 9px 12px;
}

.nav a:hover {
  background: rgba(15, 107, 75, 0.12);
  color: var(--ink);
}

.menu-toggle {
  background: var(--ink);
  border: 0;
  border-radius: 6px;
  color: var(--white);
  display: none;
  font-size: 14px;
  font-weight: 800;
  gap: 0;
  height: 44px;
  place-items: center;
  padding: 10px 14px;
  width: 44px;
}

.menu-icon {
  display: grid;
  gap: 5px;
  width: 18px;
}

.menu-icon span {
  background: var(--white);
  border-radius: 999px;
  display: block;
  height: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
  width: 100%;
}

.menu-icon.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-icon.open span:nth-child(2) {
  opacity: 0;
}

.menu-icon.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.hero {
  align-items: center;
  background-position: center;
  background-size: cover;
  color: var(--white);
  display: grid;
  gap: clamp(24px, 5vw, 56px);
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.78fr);
  min-height: 88vh;
  overflow: hidden;
  padding: 108px clamp(18px, 5vw, 72px) 56px;
  position: relative;
}

.hero::after {
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 38px 38px;
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0.26;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
}

.hero-content,
.product-mockup {
  position: relative;
  z-index: 2;
}

.eyebrow {
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--gold);
}

.hero h1 {
  font-size: clamp(52px, 8vw, 112px);
  line-height: 0.96;
  margin: 0;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(19px, 2.2vw, 28px);
  line-height: 1.35;
  margin: 24px 0 0;
  max-width: 760px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 7px;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
}

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

.button.primary:hover {
  background: #ffd078;
}

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

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

.hero-proof {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.hero-proof span {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 800;
  padding: 8px 10px;
}

.product-mockup {
  background: rgba(247, 244, 237, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: var(--ink);
  justify-self: end;
  max-width: 520px;
  overflow: hidden;
  width: 100%;
}

.mockup-topbar {
  align-items: center;
  background: var(--ink);
  color: var(--white);
  display: flex;
  gap: 12px;
  justify-content: space-between;
  padding: 14px 16px;
}

.mockup-topbar span {
  background: var(--orange);
  border-radius: 50%;
  height: 11px;
  width: 11px;
}

.mockup-topbar em {
  background: rgba(223, 247, 234, 0.14);
  border-radius: 999px;
  color: var(--chalk);
  font-size: 12px;
  font-style: normal;
  font-weight: 850;
  padding: 5px 9px;
}

.mockup-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 14px;
}

.mockup-panel {
  background: var(--white);
  border: 1px solid rgba(7, 19, 22, 0.1);
  border-radius: 7px;
  min-height: 126px;
  padding: 16px;
}

.mockup-panel.wide {
  background: linear-gradient(135deg, #1d5da5, #123b70);
  color: var(--white);
  grid-column: 1 / -1;
  min-height: 158px;
  overflow: hidden;
  position: relative;
}

.mock-label {
  color: inherit;
  font-size: 12px;
  font-weight: 900;
  margin: 0 0 8px;
  opacity: 0.72;
  text-transform: uppercase;
}

.mockup-panel h3,
.mockup-panel strong {
  display: block;
  font-size: 44px;
  line-height: 1;
  margin: 0;
}

.mockup-panel small {
  color: var(--ink-soft);
  font-weight: 800;
}

.mockup-panel.list {
  display: grid;
  gap: 8px;
}

.mockup-panel.list span {
  background: #f0eee7;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 800;
  padding: 8px 10px;
}

.field-lines {
  bottom: 14px;
  display: grid;
  gap: 12px;
  left: 16px;
  position: absolute;
  right: 16px;
}

.field-lines span {
  background: rgba(255, 255, 255, 0.34);
  display: block;
  height: 2px;
}

.benefit-strip {
  background: var(--ink);
  color: var(--white);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.benefit-strip article {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  min-height: 190px;
  padding: clamp(24px, 4vw, 42px);
}

.benefit-strip h2 {
  font-size: clamp(22px, 3vw, 34px);
  margin: 0 0 16px;
}

.benefit-strip p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 16px;
  line-height: 1.55;
  margin: 0;
  max-width: 440px;
}

.section {
  padding: clamp(58px, 9vw, 118px) clamp(18px, 5vw, 72px);
}

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

.section-heading {
  margin: 0 auto clamp(34px, 5vw, 58px);
  max-width: 920px;
  text-align: center;
}

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

.section-heading h2,
.workflow-copy h2,
.season-content h2,
.demo-section h2 {
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.02;
  margin: 0;
}

.section-heading p:not(.eyebrow),
.workflow-copy p:not(.eyebrow),
.season-content p:not(.eyebrow),
.demo-section p:not(.eyebrow) {
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.62;
  margin: 18px auto 0;
  max-width: 760px;
}

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

.feature-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 250px;
  padding: 24px;
}

.feature-card p {
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.feature-card h3 {
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.08;
  margin: 0 0 14px;
}

.feature-card span {
  color: var(--ink-soft);
  display: block;
  font-size: 16px;
  line-height: 1.55;
}

.workflow-section {
  align-items: center;
  background: #eaf0fb;
  display: grid;
  gap: clamp(26px, 5vw, 70px);
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
}

.workflow-tabs {
  background: rgba(7, 19, 22, 0.08);
  border-radius: 8px;
  display: grid;
  gap: 6px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 32px;
  padding: 6px;
}

.workflow-tabs button {
  background: transparent;
  border: 0;
  border-radius: 6px;
  color: var(--ink-soft);
  font-weight: 900;
  min-height: 44px;
  padding: 10px;
}

.workflow-tabs button.active {
  background: var(--ink);
  color: var(--white);
}

.workflow-preview {
  background: var(--white);
  border: 1px solid rgba(7, 19, 22, 0.1);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(7, 19, 22, 0.16);
  min-height: 450px;
  overflow: hidden;
}

.preview-header {
  background: linear-gradient(135deg, var(--turf), var(--turf-deep));
  color: var(--white);
  display: grid;
  gap: 12px;
  padding: 26px;
}

.preview-header span {
  color: var(--gold);
  font-size: 15px;
  font-weight: 900;
}

.preview-header strong {
  font-size: clamp(26px, 3.5vw, 42px);
  line-height: 1.08;
}

.preview-board {
  display: grid;
  gap: 12px;
  padding: 16px;
}

.preview-row {
  align-items: center;
  background: #f6f5ef;
  border: 1px solid rgba(7, 19, 22, 0.08);
  border-radius: 7px;
  display: grid;
  gap: 14px;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  min-height: 72px;
  padding: 12px 14px;
}

.preview-row span {
  background: var(--ink);
  border-radius: 5px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  padding: 8px;
  text-align: center;
}

.preview-row p {
  font-size: 18px;
  font-weight: 850;
  margin: 0;
}

.preview-row em {
  background: rgba(31, 95, 169, 0.14);
  border-radius: 999px;
  color: var(--turf-deep);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  padding: 7px 10px;
}

.season-system {
  align-items: stretch;
  background: var(--ink);
  color: var(--white);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
}

.season-image {
  min-height: 620px;
  overflow: hidden;
}

.season-image img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.season-content {
  align-self: center;
  padding: clamp(42px, 6vw, 82px);
}

.season-content p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

.season-list {
  counter-reset: season;
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 34px 0 0;
  padding: 0;
}

.season-list li {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 7px;
  display: grid;
  gap: 12px;
  grid-template-columns: 42px minmax(0, 1fr);
  min-height: 62px;
  padding: 11px 14px;
}

.season-list li::before {
  align-items: center;
  background: var(--gold);
  border-radius: 5px;
  color: var(--ink);
  content: counter(season, decimal-leading-zero);
  counter-increment: season;
  display: flex;
  font-size: 12px;
  font-weight: 900;
  height: 34px;
  justify-content: center;
  width: 34px;
}

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

.pricing-layout {
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 0.7fr) minmax(320px, 1.2fr);
}

.price-panel,
.trial-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
}

.price-panel {
  min-height: 255px;
}

.price-panel.featured {
  background: var(--turf-deep);
  color: var(--white);
}

.price-panel p {
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  margin: 0;
  text-transform: uppercase;
}

.price-panel.featured p {
  color: var(--gold);
}

.price-panel h3 {
  font-size: clamp(54px, 6vw, 84px);
  line-height: 1;
  margin: 38px 0 8px;
}

.price-panel span {
  color: var(--ink-soft);
  font-weight: 800;
}

.price-panel.featured span {
  color: rgba(255, 255, 255, 0.78);
}

.trial-panel {
  align-content: center;
  display: grid;
  gap: 16px;
}

.trial-panel strong {
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.08;
}

.trial-panel p {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.6;
  margin: 0;
}

.faq-section {
  background: #ffffff;
}

.blog-section {
  background: #f8fbff;
}

.blog-list {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.blog-card button {
  background: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  display: grid;
  gap: 12px;
  min-height: 100%;
  padding: 18px;
  text-align: left;
  width: 100%;
}

.blog-card h3 {
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.08;
  margin: 0;
}

.blog-card p {
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
}

.blog-meta {
  align-items: center;
  display: flex;
  gap: 8px;
  line-height: 1;
  margin: 0;
}

.blog-meta span {
  align-items: center;
  background: #e8f1ff;
  border-radius: 999px;
  color: #0f2f59;
  display: inline-flex;
  font-size: 12px;
  font-weight: 850;
  line-height: 1.2;
  padding: 4px 10px;
}

.blog-read-more {
  color: #0f4e8a;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-modal-overlay {
  align-items: center;
  background: rgba(7, 19, 22, 0.65);
  display: grid;
  inset: 0;
  justify-items: center;
  padding: 20px;
  position: fixed;
  z-index: 70;
}

.blog-modal {
  background: var(--white);
  border-radius: 8px;
  display: grid;
  gap: 14px;
  max-height: min(84vh, 920px);
  max-width: min(860px, 100%);
  overflow: auto;
  padding: clamp(20px, 3vw, 30px);
  width: 100%;
}

.blog-modal h3 {
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.1;
  margin: 2px 0 0;
}

.blog-modal p {
  color: var(--ink-soft);
  line-height: 1.7;
  margin: 0;
}

.blog-modal-body {
  display: grid;
  gap: 12px;
}

.blog-content-block {
  color: var(--ink-soft);
  line-height: 1.7;
}

.blog-content-block > :first-child {
  margin-top: 0;
}

.blog-content-block > :last-child {
  margin-bottom: 0;
}

.blog-content-block ul,
.blog-content-block ol {
  margin: 0;
  padding-left: 24px;
}

.blog-content-block a {
  color: #0f4e8a;
  text-decoration: underline;
}

.blog-modal-close {
  background: rgba(7, 19, 22, 0.08);
  border: 0;
  border-radius: 6px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  justify-self: end;
  min-height: 38px;
  padding: 8px 12px;
  text-transform: uppercase;
}

.blog-modal-close:hover {
  background: rgba(7, 19, 22, 0.16);
}

.faq-list {
  display: grid;
  gap: 10px;
  margin: 0 auto;
  max-width: 960px;
}

.faq-list details {
  background: #f6f5ef;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0;
}

.faq-list summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 850;
  list-style: none;
  padding: 21px 24px;
}

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

.faq-list p {
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0;
  padding: 18px 24px 24px;
}

.demo-section {
  align-items: start;
  background: linear-gradient(135deg, #0f2f59, #071a31);
  color: var(--white);
  display: grid;
  gap: clamp(28px, 5vw, 76px);
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.78fr);
  padding: clamp(58px, 9vw, 118px) clamp(18px, 5vw, 72px);
}

.demo-section p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

.demo-form {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  display: grid;
  gap: 14px;
  padding: clamp(18px, 3vw, 28px);
}

.demo-form label {
  color: rgba(255, 255, 255, 0.78);
  display: grid;
  font-size: 13px;
  font-weight: 850;
  gap: 7px;
  text-transform: uppercase;
}

.demo-form input,
.demo-form textarea {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid transparent;
  border-radius: 6px;
  color: var(--ink);
  min-height: 46px;
  padding: 12px;
  text-transform: none;
}

.demo-form textarea {
  min-height: 116px;
  resize: vertical;
}

.demo-form input:focus,
.demo-form textarea:focus {
  border-color: var(--gold);
  outline: 3px solid rgba(243, 179, 69, 0.25);
}

.demo-status {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.5;
  margin: 4px 0 0;
}

.demo-status.error {
  color: #ffd4d4;
}

.demo-status.sent {
  color: #d7ffe3;
}

.demo-response {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.92);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  line-height: 1.5;
  margin: 0;
  max-height: 220px;
  overflow: auto;
  padding: 10px 12px;
  white-space: pre-wrap;
  word-break: break-word;
}

.connect-section {
  background: #f0f5fc;
}

.connect-section .section-heading p a {
  color: #0f4e8a;
  font-weight: 800;
  text-decoration: none;
}

.connect-section .section-heading p a:hover {
  text-decoration: underline;
}

.connect-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 26px auto 0;
  max-width: 960px;
}

.social-link {
  align-items: center;
  background: #ffffff;
  border: 1px solid rgba(15, 78, 138, 0.22);
  border-radius: 8px;
  color: #0f2f59;
  display: inline-flex;
  gap: 8px;
  font-weight: 800;
  justify-content: center;
  min-height: 46px;
  min-width: 190px;
  padding: 10px 18px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.social-icon {
  flex: 0 0 auto;
  height: 18px;
  width: 18px;
}

.social-link:hover {
  background: #e7f0fb;
  transform: translateY(-1px);
}

@media (max-width: 1020px) {
  .hero,
  .workflow-section,
  .season-system,
  .demo-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .product-mockup {
    justify-self: start;
  }

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

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

  .trial-panel {
    grid-column: 1 / -1;
  }

  .season-image {
    min-height: 420px;
  }
}

@media (max-width: 720px) {
  .site-header {
    align-items: center;
    flex-wrap: nowrap;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav {
    background: rgba(247, 244, 237, 0.98);
    border: 1px solid rgba(7, 19, 22, 0.12);
    border-radius: 8px;
    box-shadow: 0 18px 36px rgba(7, 19, 22, 0.2);
    display: none;
    gap: 6px;
    padding: 10px;
    position: absolute;
    right: 18px;
    top: calc(100% + 8px);
    flex-direction: column;
    align-items: stretch;
    width: min(300px, calc(100vw - 36px));
    z-index: 40;
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    background: rgba(7, 19, 22, 0.05);
    padding: 12px;
  }

  .hero {
    min-height: 86vh;
    padding-top: 100px;
  }

  .hero h1 {
    font-size: 54px;
  }

  .brand img {
    height: 34px;
    max-width: 180px;
  }

  .benefit-strip,
  .feature-grid,
  .pricing-layout,
  .blog-list {
    grid-template-columns: 1fr;
  }

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

  .preview-row {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .preview-row em {
    grid-column: 2;
    justify-self: start;
  }

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

  .mockup-panel.wide {
    grid-column: auto;
  }

  .season-image {
    min-height: 300px;
  }
}
