:root {
  --bg: #f5f5f7;
  --ink: #111114;
  --muted: #62666d;
  --soft: #ffffff;
  --soft-2: #f0eee8;
  --line: rgba(17, 17, 20, 0.1);
  --accent: #0e6b5f;
  --accent-dark: #073f38;
  --accent-soft: #e2f2ef;
  --gold: #c99a3d;
  --dark: #071917;
  --shadow: 0 28px 90px rgba(7, 25, 23, 0.12);
  --shadow-soft: 0 16px 46px rgba(7, 25, 23, 0.08);
  --radius-lg: 34px;
  --radius-md: 24px;
  --max: 1180px;
  --header: 72px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + 20px);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, Arial, sans-serif;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
select {
  font: inherit;
}

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

p {
  line-height: 1.62;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  min-height: var(--header);
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(245, 245, 247, 0.78);
  backdrop-filter: blur(24px);
}

.nav-shell,
.section,
.site-footer {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.nav-shell {
  min-height: var(--header);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}

.brand,
.nav-links,
.button,
.nav-cta,
.trust-row span,
.side-item {
  display: inline-flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 850;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--dark);
  color: #fff;
  font-size: 13px;
}

.nav-links {
  justify-content: center;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-cta,
.button {
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
}

.nav-cta {
  min-height: 42px;
  padding: 0 18px;
  background: var(--ink);
  color: #fff;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.8);
  place-items: center;
  gap: 4px;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
}

.hero {
  min-height: calc(100svh - var(--header));
  display: grid;
  gap: 52px;
  align-items: center;
  padding: 82px 0 48px;
  text-align: center;
}

.hero-copy {
  max-width: 920px;
  margin: 0 auto;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(50px, 7.6vw, 104px);
  line-height: 0.94;
}

.hero-subtitle {
  max-width: 760px;
  margin: 0 auto 30px;
  color: var(--muted);
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.28;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  min-height: 52px;
  gap: 10px;
  padding: 0 22px;
  border: 0;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-2px);
}

.button svg {
  width: 18px;
  height: 18px;
}

.button-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 18px 42px rgba(14, 107, 95, 0.22);
}

.button-primary:hover {
  background: var(--accent-dark);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
}

.trust-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.trust-row span {
  gap: 7px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
}

.trust-row svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
}

.product-stage {
  max-width: 1040px;
  margin: 0 auto;
}

.dashboard-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 38px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  text-align: left;
}

.window-bar {
  height: 46px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 20px;
  border-bottom: 1px solid var(--line);
}

.window-bar span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #d9d9df;
}

.dashboard-body {
  display: grid;
  grid-template-columns: 230px 1fr;
  min-height: 460px;
  background: linear-gradient(135deg, #fff 0%, #eef7f4 100%);
}

.dashboard-sidebar {
  padding: 24px;
  border-right: 1px solid var(--line);
}

.mini-logo {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 15px;
  background: var(--accent);
  color: #fff;
  font-weight: 900;
}

.dashboard-sidebar p {
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.side-item {
  width: 100%;
  min-height: 42px;
  gap: 10px;
  margin-bottom: 8px;
  padding: 0 12px;
  border: 0;
  border-radius: 14px;
  background: transparent;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.side-item.active {
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow-soft);
}

.side-item svg {
  width: 17px;
  height: 17px;
}

.dashboard-workspace {
  display: grid;
  gap: 18px;
  padding: 28px;
}

.input-card,
.bundle-card,
.mini-output-grid article,
.asset-card,
.step,
.role-panel,
.comparison-col,
.roi-card,
.pilot-card,
.included-item,
.demo-card,
.final-card {
  border: 1px solid rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
}

.input-card,
.bundle-card,
.mini-output-grid article {
  border-radius: 24px;
}

.input-card {
  padding: 20px;
}

.field-label,
.sample-label,
.bundle-card span,
.mini-output-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.input-card strong {
  display: block;
  margin-bottom: 6px;
}

.input-card p,
.mini-output-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.bundle-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: end;
  padding: 30px;
  background: var(--dark);
  color: #fff;
}

.bundle-card h2 {
  max-width: 650px;
  margin-bottom: 0;
  font-size: clamp(32px, 4vw, 58px);
  line-height: 1;
}

.bundle-card ul,
.comparison-col ul,
.pilot-price ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.bundle-card li {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.mini-output-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.mini-output-grid article {
  padding: 20px;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.68);
}

.metric-strip div {
  padding: 16px;
  border-radius: 20px;
  background: var(--soft);
}

.metric-strip strong {
  display: block;
  font-size: 26px;
}

.metric-strip span {
  color: var(--muted);
  font-size: 13px;
}

.kit,
.role-section,
.workflow,
.showcase,
.photo-section,
.comparison,
.roi,
.pilot,
.demo,
.faq,
.final-cta {
  padding: 92px 0;
}

.section-heading {
  max-width: 850px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 16px;
  font-size: clamp(34px, 5vw, 72px);
  line-height: 1.02;
}

.section-heading p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 19px;
}

.asset-grid,
.steps,
.included-grid {
  display: grid;
  gap: 18px;
}

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

.asset-card,
.step,
.included-item {
  padding: 28px;
  border-radius: var(--radius-md);
}

.asset-card svg,
.included-item svg {
  width: 30px;
  height: 30px;
  margin-bottom: 28px;
  color: var(--accent);
}

.asset-card h3,
.step h3,
.included-item h3,
.comparison-col h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.asset-card p,
.step p,
.included-item p,
.comparison-col li,
.demo-card p,
.final-card p,
.role-panel p,
.roi-card p,
.faq-list p {
  color: var(--muted);
}

.role-tabs,
.tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.role-tab,
.tab {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--muted);
  font-weight: 800;
  cursor: pointer;
}

.role-tab.active,
.tab.active {
  background: var(--ink);
  color: #fff;
}

.role-panel,
.sample-panel {
  max-width: 960px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 58px);
  border-radius: var(--radius-lg);
}

.role-panel span {
  display: block;
  margin-bottom: 12px;
  color: var(--accent);
  font-weight: 850;
  text-transform: uppercase;
}

.role-panel h3 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 58px);
  line-height: 1.04;
}

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

.step span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 42px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-weight: 900;
}

.sample-panel {
  min-height: 330px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: end;
  background: #fff;
  box-shadow: var(--shadow);
}

.sample-panel h3 {
  max-width: 760px;
  margin-bottom: 16px;
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1;
}

.sample-panel p {
  max-width: 740px;
  color: var(--muted);
  font-size: 20px;
}

.sample-meta {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.sample-meta span {
  padding: 8px 10px;
  border-radius: 999px;
  background: var(--soft-2);
}

.photo-section {
  position: relative;
}

.photo-card {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  border-radius: 38px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 25%, rgba(0, 0, 0, 0.78) 100%),
    url("https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?auto=format&fit=crop&w=1800&q=86")
      center / cover;
  box-shadow: var(--shadow);
}

.photo-copy {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 28px 56px;
  position: absolute;
  left: 50%;
  right: auto;
  bottom: 0;
  width: 100%;
  transform: translateX(-50%);
  color: #fff;
  text-align: center;
  z-index: 2;
}

.photo-copy h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4.6vw, 62px);
  line-height: 1.02;
}

.photo-copy p,
.photo-copy .eyebrow {
  color: rgba(255, 255, 255, 0.86);
}

.photo-copy p {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.comparison-col {
  padding: clamp(28px, 5vw, 46px);
  border-radius: var(--radius-lg);
}

.comparison-col li,
.pilot-price li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 28px;
  line-height: 1.55;
}

.comparison-col li::before,
.pilot-price li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 900;
}

.muted-col li::before {
  content: "-";
  color: var(--muted);
}

.accent-col,
.pilot-card,
.final-card {
  background: var(--dark);
  color: #fff;
}

.accent-col li,
.accent-col p,
.pilot-card p,
.final-card p {
  color: rgba(255, 255, 255, 0.76);
}

.accent-col li::before {
  color: var(--gold);
}

.roi-card,
.pilot-card,
.demo-card {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 40px;
  align-items: center;
  padding: clamp(28px, 5vw, 58px);
  border-radius: var(--radius-lg);
}

.roi-card h2,
.pilot-card h2,
.demo-card h2,
.final-card h2 {
  margin-bottom: 16px;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1.02;
}

.roi-tool,
.lead-form,
.pilot-price {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.72);
}

.roi-tool label,
.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.roi-tool input,
.lead-form input,
.lead-form select {
  min-height: 48px;
  width: 100%;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
  color: var(--ink);
  outline: 0;
}

.roi-result {
  display: block;
  padding: 18px;
  border-radius: 18px;
  background: var(--dark);
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  text-align: center;
}

.pilot-price {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
}

.pilot-price span {
  color: var(--gold);
  font-weight: 900;
}

.pilot-price strong {
  display: block;
  font-size: 50px;
  line-height: 1;
}

.pilot-price small {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.72);
}

.included-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 18px;
}

.demo-card {
  background: #fff;
}

.form-note {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 12px;
}

.faq-list {
  max-width: 860px;
  margin: 0 auto;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.55);
}

details {
  border-top: 1px solid var(--line);
}

details:first-child {
  border-top: 0;
}

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

summary::-webkit-details-marker {
  display: none;
}

details p {
  margin: -8px 24px 0;
  padding-bottom: 24px;
}

.final-card {
  padding: clamp(34px, 6vw, 74px);
  border-radius: 40px;
  text-align: center;
}

.site-footer {
  padding: 34px 0;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
}

.site-footer p {
  color: var(--muted);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.sticky-mobile-cta {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.72s ease, transform 0.72s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid rgba(14, 107, 95, 0.38);
  outline-offset: 3px;
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1020px) {
  .asset-grid,
  .metric-strip,
  .steps,
  .included-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .roi-card,
  .pilot-card,
  .demo-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .nav-shell {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .menu-toggle {
    display: grid;
  }

  .nav-cta {
    display: none;
  }

  .nav-links {
    position: fixed;
    inset: var(--header) 16px auto 16px;
    display: grid;
    gap: 6px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    padding: 14px;
    border-radius: 14px;
  }

  .dashboard-body,
  .bundle-card,
  .mini-output-grid,
  .sample-panel,
  .comparison-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-sidebar {
    display: none;
  }
}

@media (max-width: 560px) {
  :root {
    --header: 64px;
  }

  .nav-shell,
  .section,
  .site-footer {
    width: min(100% - 22px, var(--max));
  }

  .brand-text {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 44px 0 28px;
  }

  h1 {
    font-size: 44px;
  }

  .hero-subtitle,
  .section-heading p {
    font-size: 18px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .trust-row,
  .asset-grid,
  .metric-strip,
  .steps,
  .included-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .dashboard-workspace {
    padding: 14px;
  }

  .kit,
  .role-section,
  .workflow,
  .showcase,
  .photo-section,
  .comparison,
  .roi,
  .pilot,
  .demo,
  .faq,
  .final-cta {
    padding: 66px 0;
  }

  .section-heading h2,
  .roi-card h2,
  .pilot-card h2,
  .demo-card h2,
  .final-card h2 {
    font-size: 36px;
  }

  .photo-card {
    min-height: 460px;
  }
  @media (max-width: 700px) {
  .photo-card {
    min-height: 620px;
    border-radius: 28px;
  }

  .photo-copy {
    padding: 0 20px 34px;
  }

  .photo-copy h2 {
    font-size: clamp(30px, 9vw, 42px);
  }
}

  .site-footer,
  .footer-links {
    display: grid;
  }

  .sticky-mobile-cta {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 70;
    display: grid;
    min-height: 50px;
    place-items: center;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    font-weight: 900;
    box-shadow: 0 18px 42px rgba(14, 107, 95, 0.28);
  }
}
.brand-mark-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: inherit;
}
