:root {
  color-scheme: light;
  --bg: #f6f8f7;
  --panel: #ffffff;
  --ink: #142024;
  --muted: #64727a;
  --line: #dce4e1;
  --brand: #0f766e;
  --brand-dark: #115e59;
  --amber: #b45309;
  --red: #b91c1c;
  --blue: #1d4ed8;
  --green: #15803d;
  --soft: #e7f6f4;
  --shadow: 0 18px 50px rgba(25, 42, 46, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.app-flow-transition {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 22%, rgba(20, 184, 132, 0.34), transparent 18rem),
    linear-gradient(135deg, #f7fbf9 0%, #e7f6f4 48%, #111827 100%);
  opacity: 0;
  pointer-events: none;
  transform: scale(1.03);
  transition: opacity 220ms ease, transform 780ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.app-flow-transition.is-active {
  opacity: 1;
  transform: scale(1);
}

.app-flow-transition strong {
  position: relative;
  z-index: 2;
  color: #111827;
  font-size: clamp(3rem, 12vw, 8rem);
  font-weight: 950;
  line-height: 1;
}

.app-flow-transition strong span {
  color: var(--brand);
}

.flow-tool {
  position: absolute;
  display: block;
  width: 6.5rem;
  height: 6.5rem;
  opacity: 0.45;
  animation: flowTool 900ms ease-in forwards;
}

.flow-tool:nth-of-type(1) {
  left: -8rem;
  top: 18%;
}

.flow-tool:nth-of-type(2) {
  right: -7rem;
  top: 28%;
  animation-name: flowToolReverse;
}

.flow-tool:nth-of-type(3) {
  left: -7rem;
  bottom: 18%;
  animation-delay: 90ms;
}

.flow-tool:nth-of-type(4) {
  right: -8rem;
  bottom: 14%;
  animation-name: flowToolReverse;
  animation-delay: 130ms;
}

.small-flow {
  width: 4rem;
  height: 4rem;
}

.flow-wrench::before,
.flow-wrench::after {
  content: "";
  position: absolute;
  background: linear-gradient(135deg, var(--brand), #111827);
}

.flow-wrench::before {
  left: 46%;
  top: 10%;
  width: 0.78rem;
  height: 78%;
  border-radius: 999px;
  transform: rotate(42deg);
}

.flow-wrench::after {
  left: 54%;
  top: 0;
  width: 2rem;
  height: 2rem;
  border: 0.52rem solid var(--brand);
  border-right-color: transparent;
  border-radius: 50%;
  background: transparent;
  transform: rotate(34deg);
}

.flow-nut {
  clip-path: polygon(25% 4%, 75% 4%, 100% 50%, 75% 96%, 25% 96%, 0 50%);
  background: linear-gradient(135deg, #111827, var(--brand));
}

.flow-nut::after {
  content: "";
  position: absolute;
  inset: 31%;
  border-radius: 50%;
  background: #e7f6f4;
}

@keyframes flowTool {
  to {
    transform: translate3d(calc(100vw + 16rem), -2rem, 0) rotate(540deg);
  }
}

@keyframes flowToolReverse {
  to {
    transform: translate3d(calc(-100vw - 16rem), 2rem, 0) rotate(-540deg);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem clamp(1rem, 4vw, 3rem);
  border-bottom: 1px solid rgba(220, 228, 225, 0.85);
  background: rgba(246, 248, 247, 0.88);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-width: max-content;
  color: #111827;
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
}

.brand img {
  width: 2rem;
  height: 2rem;
}

.brand strong {
  color: var(--brand);
}

.site-header nav {
  display: flex;
  justify-content: center;
  gap: clamp(0.75rem, 3vw, 2rem);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.site-header nav a,
.header-cta,
.primary-button,
.secondary-button {
  text-decoration: none;
}

.site-header nav a:hover {
  color: var(--brand-dark);
}

.header-cta,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 0 1rem;
  font-weight: 900;
}

.header-cta,
.primary-button {
  border-color: var(--brand);
  background: var(--brand);
  color: #fff;
}

.primary-button:hover,
.header-cta:hover {
  background: var(--brand-dark);
}

.secondary-button {
  background: #fff;
  color: var(--brand-dark);
}

.secondary-button:hover {
  border-color: var(--brand);
  background: var(--soft);
}

.hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(420px, 1.15fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  min-height: calc(100vh - 4.4rem);
  padding: clamp(2rem, 6vw, 5rem) clamp(1rem, 4vw, 3rem) clamp(1rem, 3vw, 2.25rem);
}

.hero-copy {
  display: grid;
  gap: 1.25rem;
  max-width: 640px;
}

.eyebrow {
  margin: 0;
  color: var(--brand-dark);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  font-size: clamp(3rem, 6vw, 5.85rem);
  line-height: 0.94;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
}

h3 {
  font-size: 1.12rem;
  line-height: 1.2;
}

.lede {
  max-width: 580px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.55;
}

.hero-actions,
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-stats {
  margin-top: 0.45rem;
}

.hero-stats article {
  display: grid;
  gap: 0.15rem;
  min-width: 8.6rem;
  border-left: 4px solid var(--brand);
  background: #fff;
  padding: 0.85rem 1rem;
  box-shadow: 0 8px 28px rgba(25, 42, 46, 0.07);
}

.hero-stats strong {
  font-size: 1.35rem;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.hero-media {
  margin: 0;
  align-self: stretch;
  min-height: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-block: 1px solid var(--line);
  background: #fff;
}

.strip span {
  min-height: 4.5rem;
  display: grid;
  place-items: center;
  padding: 0.75rem;
  border-right: 1px solid var(--line);
  color: var(--brand-dark);
  font-weight: 950;
  text-align: center;
}

.strip span:last-child {
  border-right: 0;
}

.section,
.workflow-section,
.pricing,
.access,
.site-footer {
  padding: clamp(3rem, 7vw, 6rem) clamp(1rem, 4vw, 3rem);
}

.section-heading {
  display: grid;
  gap: 0.9rem;
  max-width: 790px;
  margin: 0 auto clamp(1.5rem, 4vw, 3rem);
  text-align: center;
}

.section-heading p:not(.eyebrow),
.pricing p,
.access p,
.proof p,
.feature-grid p,
.workflow-list span,
.ticket-preview dd {
  color: var(--muted);
  line-height: 1.55;
}

.align-left {
  margin-inline: 0;
  text-align: left;
}

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

.feature-grid article,
.proof-grid article,
.pricing-card,
.access-form,
.ticket-preview {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 12px 35px rgba(25, 42, 46, 0.08);
}

.feature-grid article {
  display: grid;
  gap: 0.7rem;
  min-height: 14rem;
  padding: 1.25rem;
}

.icon {
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 7px;
  background: var(--soft);
  color: var(--brand-dark);
  font-weight: 950;
}

.workflow-section {
  background: #ffffff;
}

.workflow {
  display: grid;
  grid-template-columns: minmax(230px, 0.45fr) minmax(320px, 0.8fr) minmax(300px, 0.75fr);
  gap: 1rem;
  align-items: stretch;
}

.workflow-tabs {
  display: grid;
  gap: 0.6rem;
}

.workflow-tabs button {
  min-height: 3.5rem;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #f8faf9;
  color: var(--ink);
  cursor: pointer;
  font-weight: 950;
}

.workflow-tabs button.is-active {
  border-color: var(--brand);
  background: var(--brand);
  color: #fff;
}

.ticket-preview {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
}

.ticket-kicker {
  margin-bottom: 0.35rem;
  color: var(--brand-dark);
  font-size: 0.8rem;
  font-weight: 950;
  text-transform: uppercase;
}

.ticket-preview dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin: 0;
}

.ticket-preview dl div {
  min-height: 4.3rem;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #f8faf9;
  padding: 0.7rem;
}

.ticket-preview dt {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.ticket-preview dd {
  margin: 0.2rem 0 0;
  font-weight: 850;
}

.workflow-list {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.workflow-list li {
  display: grid;
  gap: 0.25rem;
  border-left: 5px solid var(--brand);
  background: #f8faf9;
  padding: 1rem;
}

.proof {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(380px, 1.2fr);
  gap: 2rem;
  align-items: start;
}

.proof-grid {
  display: grid;
  gap: 1rem;
}

.proof-grid article {
  display: grid;
  gap: 0.35rem;
  padding: 1.15rem;
}

.proof-grid strong {
  font-size: 1.05rem;
}

.pricing {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
  align-items: center;
  background:
    radial-gradient(circle at 12% 0%, rgba(34, 197, 94, 0.2), transparent 24rem),
    linear-gradient(135deg, #071110 0%, #0d2f2a 58%, #111827 100%);
  color: #fff;
}

.pricing .eyebrow {
  color: #7dd3c7;
}

.pricing p {
  max-width: 660px;
  margin-top: 1rem;
  color: #c8d2d0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
  align-items: stretch;
}

.pricing-card {
  display: grid;
  align-content: start;
  gap: 0.9rem;
  min-height: 100%;
  border: 1px solid rgba(167, 243, 208, 0.16);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  padding: 1.15rem;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.14);
}

.pricing-card.featured-price {
  border-color: #22c55e;
  background: linear-gradient(180deg, #ffffff 0%, #ecfdf5 100%);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2), 0 24px 54px rgba(0, 0, 0, 0.18);
}

.pricing-card span {
  color: var(--brand-dark);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.pricing-card strong {
  font-size: 2rem;
  line-height: 1;
}

.pricing-card p {
  margin: 0;
  color: var(--muted);
}

.pricing-card ul {
  display: grid;
  gap: 0.48rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-card li {
  position: relative;
  padding-left: 1.1rem;
  color: #334155;
  font-size: 0.9rem;
  font-weight: 750;
  line-height: 1.35;
}

.pricing-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--brand);
}

.pricing-extras {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.pricing-extras article {
  display: grid;
  gap: 0.35rem;
  border: 1px solid rgba(167, 243, 208, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  padding: 1rem;
}

.pricing-extras span {
  color: #9ff3c2;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.pricing-extras strong {
  color: #fff;
  font-size: 1.45rem;
}

.pricing-extras p {
  margin: 0;
  color: #c8d2d0;
  font-size: 0.9rem;
}

.access {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(320px, 520px);
  gap: 2rem;
  align-items: start;
}

.access p {
  max-width: 650px;
  margin-top: 1rem;
}

.access-form {
  display: grid;
  gap: 0.85rem;
  padding: 1.25rem;
}

.app-link-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.45rem;
}

.app-link-grid a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.45rem;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #f8faf9;
  color: var(--brand-dark);
  font-size: 0.82rem;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
}

.app-link-grid a:hover {
  border-color: var(--brand);
  background: var(--soft);
}

label {
  display: grid;
  gap: 0.35rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
}

input,
select {
  width: 100%;
  min-height: 2.8rem;
  border: 1px solid #cbd5d1;
  border-radius: 7px;
  background: #fff;
  color: var(--ink);
  outline: none;
  padding: 0.7rem 0.78rem;
}

input:focus,
select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.14);
}

.form-note {
  min-height: 1.2rem;
  margin: 0;
  color: var(--brand-dark);
  font-size: 0.86rem;
  font-weight: 850;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--line);
  padding-block: 1.4rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
}

@media (max-width: 980px) {
  .hero,
  .workflow,
  .proof,
  .pricing,
  .access {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media img {
    min-height: 360px;
  }

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

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

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

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

  .strip span {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 720px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-header nav {
    display: none;
  }

  .header-cta {
    min-height: 2.45rem;
    padding-inline: 0.75rem;
    font-size: 0.82rem;
  }

  .hero {
    padding-top: 2rem;
  }

  h1 {
    font-size: clamp(2.5rem, 14vw, 4.3rem);
  }

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

  .hero-stats {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-media img {
    min-height: 290px;
  }

  .strip,
  .feature-grid,
  .pricing-grid,
  .app-link-grid,
  .ticket-preview dl {
    grid-template-columns: 1fr;
  }

  .strip span {
    min-height: 3.4rem;
    border-right: 0;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
