:root {
  --bg: #fffaf4;
  --bg-strong: #fff1df;
  --surface: rgba(255, 255, 255, 0.84);
  --surface-strong: #ffffff;
  --surface-dark: #1f2a37;
  --text: #1f2937;
  --text-muted: #5f6b7a;
  --text-soft: #7f8a98;
  --border: rgba(236, 202, 166, 0.9);
  --primary: #f4a525;
  --primary-strong: #eb7e18;
  --primary-deep: #c75a10;
  --primary-soft: #fff2dd;
  --success: #13795b;
  --shadow: 0 24px 60px rgba(205, 109, 18, 0.14);
  --shadow-soft: 0 18px 40px rgba(31, 41, 55, 0.08);
  --radius: 28px;
  --radius-sm: 18px;
  --container: 1160px;
  --anchor-offset: 96px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--anchor-offset);
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(244, 165, 37, 0.22), transparent 30%),
    radial-gradient(circle at 100% 10%, rgba(235, 126, 24, 0.14), transparent 26%),
    linear-gradient(180deg, #fffdf9 0%, var(--bg) 48%, #ffffff 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.2), transparent 80%);
  z-index: -1;
}

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

img {
  display: block;
  max-width: 100%;
}

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

p {
  color: var(--text-muted);
  line-height: 1.72;
}

ul {
  padding-left: 1.2rem;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

main[id],
section[id] {
  scroll-margin-top: var(--anchor-offset);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(255, 250, 244, 0.74);
  border-bottom: 1px solid rgba(236, 202, 166, 0.6);
}

.header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 80px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-mark,
.module-icon {
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-strong) 100%);
  box-shadow: 0 16px 30px rgba(235, 126, 24, 0.24);
}

.brand-mark {
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 0.95rem;
}

.brand-text {
  font-size: 1.25rem;
}

.main-nav,
.footer-links {
  display: inline-flex;
  align-items: center;
  gap: 1.4rem;
}

.main-nav {
  color: var(--text-muted);
  font-weight: 600;
}

.footer-links {
  flex-wrap: wrap;
  color: var(--text-muted);
}

.main-nav a:hover,
.main-nav a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible,
.button:hover,
.button:focus-visible {
  opacity: 0.92;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform 160ms ease,
    opacity 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary-strong) 0%, var(--primary) 100%);
  box-shadow: 0 16px 30px rgba(235, 126, 24, 0.3);
}

.button-secondary,
.button-ghost {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(236, 202, 166, 0.92);
}

.button-light {
  color: var(--primary-deep);
  background: #ffffff;
}

.button-outline-light {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  padding: 5.5rem 0 3rem;
}

.hero-grid,
.signal-grid,
.platform-grid,
.modules-grid,
.proof-layout,
.proof-grid,
.timeline,
.faq-layout,
.callout,
.dashboard-preview {
  display: grid;
  gap: 1.25rem;
}

.hero-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  align-items: center;
  gap: 2.5rem;
}

.eyebrow {
  margin-bottom: 1rem;
  color: var(--primary-strong);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.76);
}

h1 {
  margin-bottom: 1rem;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.1rem, 4vw, 3.25rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

h3 {
  margin-bottom: 0.8rem;
  font-size: 1.24rem;
  letter-spacing: -0.03em;
}

.hero-text,
.section-copy {
  max-width: 62ch;
  font-size: 1.07rem;
}

.hero-actions,
.callout-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero-actions {
  margin: 2rem 0 1rem;
}

.hero-copy {
  max-width: 34rem;
}

.proof-card,
.timeline-step,
.faq-item,
.feature-card,
.module-card,
.panel-card,
.signal-grid article {
  background: var(--surface);
  border: 1px solid rgba(236, 202, 166, 0.86);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.hero-note {
  max-width: 52ch;
  margin-bottom: 0;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.7;
}

.proof-card,
.timeline-step,
.faq-item,
.feature-card,
.module-card,
.panel-card,
.signal-grid article {
  padding: 1.35rem;
}

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

.hero-image-frame {
  margin: 0;
  height: 100%;
  min-height: 560px;
  overflow: hidden;
  border-radius: calc(var(--radius) + 8px);
  box-shadow: var(--shadow);
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  max-width: 34rem;
  padding: 1.3rem 1.35rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(236, 202, 166, 0.86);
  border-radius: var(--radius);
  box-shadow: 0 24px 40px rgba(31, 41, 55, 0.14);
  backdrop-filter: blur(16px);
}

.hero-overlay h2 {
  margin-bottom: 0.7rem;
  font-size: clamp(1.45rem, 2.8vw, 2.15rem);
  line-height: 1.06;
}

.hero-overlay p:last-child {
  margin-bottom: 0;
  max-width: 48ch;
  color: var(--text-muted);
  line-height: 1.65;
}

.panel-card {
  padding: 1.8rem;
  box-shadow: var(--shadow);
}

.panel-card-primary {
  background:
    radial-gradient(circle at top right, rgba(244, 165, 37, 0.22), transparent 32%),
    linear-gradient(180deg, rgba(255, 246, 233, 0.95) 0%, rgba(255, 255, 255, 0.96) 100%);
}

.panel-card-muted {
  background: rgba(255, 255, 255, 0.72);
  padding: 1.45rem 1.5rem;
}

.panel-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.panel-label,
.metric-label,
.card-kicker,
.timeline-step span {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.panel-label,
.card-kicker,
.metric-label {
  color: var(--primary-deep);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  color: var(--success);
  background: rgba(19, 121, 91, 0.08);
  font-size: 0.82rem;
  font-weight: 700;
}

.status-pill::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: currentColor;
}

.dashboard-preview {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.5rem;
}

.dashboard-preview article {
  padding: 1.2rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(236, 202, 166, 0.86);
  background: rgba(255, 255, 255, 0.76);
}

.dashboard-preview strong {
  display: block;
  margin: 0.4rem 0 0.6rem;
  font-size: 1.6rem;
  letter-spacing: -0.04em;
}

.dashboard-preview p,
.panel-list {
  margin-bottom: 0;
}

.panel-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem 1rem;
  padding-left: 0;
  list-style: none;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.5;
}

.panel-list li {
  position: relative;
  padding-left: 1rem;
}

.panel-list li::before {
  content: "";
  position: absolute;
  top: 0.58rem;
  left: 0;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 999px;
  background: var(--primary-strong);
}

.signal-bar {
  padding: 0.35rem 0 2.2rem;
}

.signal-bar .container {
  padding: 1.15rem 1.35rem;
  border: 1px solid rgba(236, 202, 166, 0.74);
  border-radius: calc(var(--radius) + 2px);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow-soft);
}

.signal-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem 1.5rem;
}

.signal-grid article {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.signal-grid strong {
  margin-bottom: 0.25rem;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.signal-grid span {
  display: block;
  font-size: 0.98rem;
  line-height: 1.55;
}

.section {
  padding: 2rem 0 5rem;
}

.section-muted {
  background:
    linear-gradient(180deg, rgba(255, 241, 221, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
}

.section-accent {
  color: #ffffff;
  background: linear-gradient(135deg, #e9831c 0%, #c55b10 100%);
}

.section-heading {
  max-width: 70ch;
  margin-bottom: 2rem;
}

.section-heading-light h2,
.section-heading-light p {
  color: #ffffff;
}

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

.feature-card,
.module-card,
.proof-card,
.timeline-step {
  padding: 1.65rem;
}

.feature-card {
  min-height: 100%;
}

.feature-card-accent {
  background:
    linear-gradient(180deg, rgba(255, 244, 229, 0.98) 0%, rgba(255, 255, 255, 0.86) 100%);
}

.card-kicker {
  display: inline-block;
  margin-bottom: 1rem;
}

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

.module-card {
  background: rgba(255, 255, 255, 0.9);
  overflow: hidden;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.module-card:hover,
.module-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(31, 41, 55, 0.12);
  border-color: rgba(235, 126, 24, 0.28);
}

.module-media {
  position: relative;
  display: grid;
  place-items: center;
  margin: 0 0 1.2rem;
  min-height: 11rem;
  padding: 1.1rem;
  overflow: hidden;
  border-radius: calc(var(--radius) - 4px);
  background:
    radial-gradient(circle at top right, rgba(244, 165, 37, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 247, 236, 0.96) 0%, rgba(255, 255, 255, 0.98) 100%);
  border: 1px solid rgba(236, 202, 166, 0.86);
}

.module-media img {
  width: min(100%, 16rem);
  height: auto;
}

.module-card ul {
  margin-bottom: 0;
  color: var(--text-muted);
  line-height: 1.7;
}

.proof-layout {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
  gap: 2rem;
}

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

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

.timeline-step {
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.timeline-step h3,
.timeline-step p,
.timeline-step span {
  color: inherit;
}

.faq-layout {
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  align-items: start;
  gap: 2rem;
}

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

.faq-item {
  padding: 1.3rem 1.4rem;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

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

.faq-item p {
  margin: 1rem 0 0;
}

.callout {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  padding: 2.3rem;
  border-radius: calc(var(--radius) + 4px);
  color: #ffffff;
  background: linear-gradient(135deg, #f08b1d 0%, #c65a11 100%);
  box-shadow: 0 28px 50px rgba(197, 91, 16, 0.22);
}

.callout h2,
.callout p {
  color: #ffffff;
}

.site-footer {
  border-top: 1px solid rgba(236, 202, 166, 0.82);
  background: rgba(255, 255, 255, 0.7);
}

.footer-brand,
.footer-copy {
  margin-bottom: 0;
}

.footer-brand {
  color: var(--text);
}

.footer-copy {
  color: var(--text-soft);
}

@media (max-width: 1080px) {
  .platform-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 980px) {
  .hero-grid,
  .proof-layout,
  .faq-layout,
  .callout,
  .modules-grid,
  .signal-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-visual,
  .hero-image-frame {
    min-height: 540px;
  }

  .panel-list {
    grid-template-columns: 1fr;
  }

  .main-nav {
    display: none;
  }

  .header-inner {
    min-height: 72px;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(var(--container), calc(100% - 1.25rem));
  }

  .hero {
    padding-top: 4rem;
  }

  .dashboard-preview,
  .proof-grid,
  .platform-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .hero-visual,
  .hero-image-frame {
    min-height: 460px;
  }

  .hero-overlay {
    position: static;
    margin-top: -5rem;
    margin-inline: 0.85rem;
    max-width: none;
  }

  .feature-card,
  .module-card,
  .proof-card,
  .timeline-step,
  .panel-card,
  .faq-item,
  .callout {
    padding: 1.35rem;
  }

  .module-media {
    min-height: 9.5rem;
    margin-bottom: 1rem;
  }

  .button-ghost {
    display: none;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 1rem 0;
  }
}
