:root {
  --color-brand: #e07d5a;
  --color-brand-deep: #c96543;
  --color-ink: #1f2933;
  --color-muted: #5b6775;
  --color-surface: #fffaf6;
  --color-surface-strong: #fff;
  --color-line: rgba(31, 41, 51, 0.1);
  --color-line-strong: rgba(31, 41, 51, 0.16);
  --color-success: #1f8f63;
  --color-error: #c03d32;
  --shadow-soft: 0 20px 60px rgba(43, 35, 30, 0.08);
  --shadow-card: 0 24px 50px rgba(62, 45, 34, 0.12);
  --radius-large: 32px;
  --radius-medium: 20px;
  --radius-small: 14px;
  --container-width: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--color-ink);
  background:
    radial-gradient(circle at top left, rgba(224, 125, 90, 0.18), transparent 25%),
    linear-gradient(180deg, #fff8f4 0%, #fff 28%, #fffaf7 100%);
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(20px);
  background: rgba(255, 249, 244, 0.86);
  border-bottom: 1px solid rgba(31, 41, 51, 0.06);
}

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

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

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  width: clamp(176px, 19vw, 250px);
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  font-size: 0.97rem;
  color: var(--color-muted);
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  background: var(--color-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.95rem 1.5rem;
  font-weight: 700;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

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

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--color-brand), var(--color-brand-deep));
  box-shadow: 0 14px 28px rgba(224, 125, 90, 0.28);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 18px 36px rgba(224, 125, 90, 0.34);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.7);
  color: var(--color-ink);
  border-color: rgba(31, 41, 51, 0.08);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: #fff;
  border-color: rgba(31, 41, 51, 0.14);
}

.hero-section {
  padding: 4.5rem 0 3rem;
}

.hero-grid,
.section-grid,
.workflow-layout,
.contact-layout {
  display: grid;
  gap: 2rem;
}

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

.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-brand);
}

.hero-copy h1,
.section-heading h2,
.section-intro h2,
.workflow-panel h2,
.contact-copy h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.hero-copy h1 {
  max-width: 12ch;
  font-size: clamp(3rem, 7vw, 5.7rem);
}

.hero-text,
.section-body > p,
.workflow-panel p:not(.eyebrow),
.contact-copy p:not(.eyebrow),
.feature-card p,
.about-points p,
.workflow-step p,
.trust-inner p,
.footer-inner p,
.note-text,
.pipeline-meta,
.status-meta {
  color: var(--color-muted);
  line-height: 1.7;
}

.hero-text {
  max-width: 60ch;
  margin: 1.5rem 0 0;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-highlights li {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(31, 41, 51, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

.hero-highlights li::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: var(--color-brand);
  box-shadow: 0 0 0 6px rgba(224, 125, 90, 0.16);
}

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

.hero-card {
  border-radius: var(--radius-large);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(31, 41, 51, 0.08);
  box-shadow: var(--shadow-card);
}

.hero-card-main {
  position: relative;
  padding: 1.6rem;
  overflow: hidden;
}

.hero-card-main::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 160px;
  background: linear-gradient(180deg, rgba(224, 125, 90, 0.12), transparent);
  pointer-events: none;
}

.hero-card-note {
  position: absolute;
  right: -1rem;
  bottom: 1.5rem;
  width: min(280px, 74%);
  padding: 1.25rem 1.3rem;
}

.hero-card-header,
.pipeline-item,
.hero-metrics {
  position: relative;
  z-index: 1;
}

.hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.status-pill,
.pipeline-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(224, 125, 90, 0.14);
  color: var(--color-brand-deep);
  font-size: 0.84rem;
  font-weight: 700;
}

.pipeline-list {
  margin-top: 1.4rem;
  display: grid;
  gap: 0.95rem;
}

.pipeline-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.05rem;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(31, 41, 51, 0.06);
}

.pipeline-title,
.note-label {
  margin: 0;
  font-weight: 800;
}

.pipeline-meta,
.note-text {
  margin: 0.25rem 0 0;
  font-size: 0.95rem;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

.hero-metrics div {
  border-radius: 20px;
  background: rgba(255, 248, 244, 0.95);
  padding: 1rem;
  border: 1px solid rgba(31, 41, 51, 0.05);
}

.hero-metrics strong {
  display: block;
  font-size: 1.1rem;
  font-family: "Sora", sans-serif;
}

.hero-metrics span {
  display: block;
  margin-top: 0.35rem;
  color: var(--color-muted);
  font-size: 0.92rem;
}

.trust-strip {
  padding-bottom: 2rem;
}

.trust-inner {
  padding: 1.2rem 1.5rem;
  justify-content: center;
  text-align: center;
  border-radius: 20px;
  border: 1px solid rgba(31, 41, 51, 0.08);
  background: rgba(255, 255, 255, 0.72);
}

.trust-inner p {
  margin: 0;
  max-width: 72ch;
}

.section {
  padding: 5.5rem 0;
}

.section-grid {
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
  align-items: start;
}

.section-intro h2,
.section-heading h2,
.workflow-panel h2,
.contact-copy h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.section-body > p,
.contact-copy p:not(.eyebrow),
.workflow-panel p:not(.eyebrow) {
  margin: 0;
  font-size: 1.02rem;
}

.about-points {
  display: grid;
  gap: 1.2rem;
  margin-top: 1.75rem;
}

.about-points article,
.workflow-step,
.feature-card,
.contact-form {
  border-radius: var(--radius-medium);
  border: 1px solid rgba(31, 41, 51, 0.08);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.about-points article {
  padding: 1.35rem 1.4rem;
}

.about-points h3,
.feature-card h3,
.workflow-step h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.about-points p,
.feature-card p,
.workflow-step p {
  margin: 0;
}

.section-heading {
  max-width: 52rem;
}

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

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

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(224, 125, 90, 0.16), rgba(224, 125, 90, 0.28));
  color: var(--color-brand-deep);
  font-family: "Sora", sans-serif;
  font-size: 0.92rem;
  margin-bottom: 1.2rem;
}

.section-workflow {
  padding-top: 1rem;
}

.workflow-layout,
.contact-layout {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: start;
}

.workflow-panel,
.contact-copy {
  padding-right: 1.5rem;
}

.workflow-steps {
  display: grid;
  gap: 1rem;
}

.workflow-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.25rem 1.3rem;
}

.workflow-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: rgba(224, 125, 90, 0.12);
  color: var(--color-brand-deep);
  font-family: "Sora", sans-serif;
}

.contact-form {
  padding: 1.55rem;
}

.form-row + .form-row {
  margin-top: 1rem;
}

.form-row label {
  display: inline-block;
  margin-bottom: 0.45rem;
  font-weight: 700;
}

.form-row input,
.form-row textarea {
  width: 100%;
  border: 1px solid rgba(31, 41, 51, 0.12);
  border-radius: 16px;
  padding: 0.95rem 1rem;
  background: #fff;
  color: var(--color-ink);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: rgba(224, 125, 90, 0.64);
  box-shadow: 0 0 0 4px rgba(224, 125, 90, 0.14);
}

.field-error,
.form-status {
  min-height: 1.3rem;
  margin: 0.45rem 0 0;
  font-size: 0.92rem;
}

.field-error {
  color: var(--color-error);
}

.form-status {
  margin-top: 1rem;
  color: var(--color-muted);
}

.form-status.is-success {
  color: var(--color-success);
}

.form-status.is-error {
  color: var(--color-error);
}

.button-submit {
  width: 100%;
  margin-top: 0.4rem;
}

.button-submit[disabled] {
  cursor: wait;
  opacity: 0.78;
  transform: none;
}

.site-footer {
  padding: 1.8rem 0 2.4rem;
}

.footer-inner {
  padding-top: 1rem;
  border-top: 1px solid rgba(31, 41, 51, 0.08);
}

.footer-inner p {
  margin: 0;
  max-width: 48rem;
}

.footer-inner a {
  color: var(--color-brand-deep);
  font-weight: 700;
}

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

  .hero-grid,
  .section-grid,
  .workflow-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: 13ch;
  }

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

  .hero-card-note {
    position: static;
    width: 100%;
    margin-top: 1rem;
  }

  .workflow-panel,
  .contact-copy {
    padding-right: 0;
  }
}

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

  .header-inner,
  .footer-inner {
    flex-wrap: wrap;
  }

  .header-inner {
    padding: 0.9rem 0;
    justify-content: center;
  }

  .brand-logo {
    width: clamp(188px, 48vw, 240px);
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 1.2rem;
    font-size: 0.92rem;
  }

  .header-cta {
    display: none;
  }

  .hero-section {
    padding-top: 3rem;
  }

  .hero-copy h1 {
    max-width: none;
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .hero-actions,
  .hero-highlights {
    flex-direction: column;
  }

  .hero-actions .button,
  .hero-highlights li {
    width: 100%;
  }

  .hero-metrics,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 4.5rem 0;
  }

  .contact-form {
    padding: 1.15rem;
  }

  .footer-inner {
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
