:root {
  --bg: #f3ede1;
  --bg-deep: #e6dbc8;
  --surface: rgba(255, 252, 247, 0.72);
  --surface-strong: #fffaf2;
  --line: rgba(18, 23, 33, 0.11);
  --ink: #16181e;
  --muted: #5f6470;
  --accent: #ff6a3d;
  --accent-deep: #e35023;
  --accent-soft: rgba(255, 106, 61, 0.14);
  --teal: #0f8b8d;
  --teal-soft: rgba(15, 139, 141, 0.14);
  --gold: #ffbe3d;
  --shadow: 0 18px 50px rgba(28, 32, 42, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --shell: min(1180px, calc(100vw - 40px));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255, 190, 61, 0.24), transparent 28%),
    radial-gradient(circle at 85% 14%, rgba(15, 139, 141, 0.18), transparent 22%),
    linear-gradient(180deg, #f7f1e5 0%, #f3ede1 52%, #ece1cd 100%);
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(22, 24, 30, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 24, 30, 0.03) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.82), transparent 92%);
  pointer-events: none;
}

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

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

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

.shell {
  width: var(--shell);
  margin: 0 auto;
}

.page-glow {
  position: fixed;
  width: 32rem;
  height: 32rem;
  border-radius: 999px;
  filter: blur(80px);
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

.page-glow-left {
  background: rgba(255, 106, 61, 0.32);
  left: -10rem;
  top: 10rem;
}

.page-glow-right {
  background: rgba(15, 139, 141, 0.24);
  right: -12rem;
  top: 24rem;
}

.site-header,
.hero,
.section,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 18px 0;
  backdrop-filter: blur(18px);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.62);
  box-shadow: 0 10px 24px rgba(24, 29, 38, 0.07);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(255, 106, 61, 0.94), rgba(227, 80, 35, 0.88));
  color: #fff8f1;
  font-family: "Syne", sans-serif;
  font-weight: 800;
  letter-spacing: 0.06em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 10px 18px rgba(227, 80, 35, 0.24);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-text strong {
  font-size: 1rem;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.78rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-weight: 600;
}

.main-nav a {
  position: relative;
}

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

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

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.header-cta {
  padding: 12px 18px;
  background: var(--ink);
  color: #fff;
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: 42px;
  align-items: center;
  padding: 56px 0 34px;
}

.eyebrow,
.section-tag {
  display: inline-flex;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(22, 24, 30, 0.08);
  background: rgba(255, 255, 255, 0.6);
  color: var(--teal);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero h1,
.section-head h2,
.summary-card h3,
.site-footer h3 {
  font-family: "Syne", sans-serif;
  letter-spacing: -0.03em;
}

.hero h1 {
  margin: 18px 0 18px;
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 0.92;
}

.hero h1 span {
  color: var(--accent);
}

.hero-lead,
.section-head p {
  max-width: 62ch;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
}

.button-primary {
  background: var(--ink);
  color: #fffdf9;
  box-shadow: 0 14px 24px rgba(22, 24, 30, 0.14);
}

.button-secondary {
  border-color: rgba(22, 24, 30, 0.1);
  background: rgba(255, 255, 255, 0.6);
  color: var(--ink);
}

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

.metric-card,
.service-card,
.process-step,
.summary-card,
.quote-form,
.highlight-card,
.floating-panel {
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: var(--surface);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.metric-card {
  padding: 18px;
  border-radius: 22px;
}

.metric-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
}

.metric-card span {
  color: var(--muted);
  font-size: 0.96rem;
}

.hero-visual {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
}

.printer-stage {
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: 1 / 1.06;
  border-radius: 42px;
  padding: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 16%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.3) 45%),
    linear-gradient(160deg, rgba(255, 106, 61, 0.13), rgba(15, 139, 141, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.58);
  box-shadow: 0 30px 60px rgba(30, 35, 44, 0.18);
}

.printer-stage::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 32px;
  border: 1px solid rgba(22, 24, 30, 0.08);
  pointer-events: none;
}

.stage-grid {
  position: absolute;
  inset: auto 26px 42px 26px;
  height: 46%;
  border-radius: 28px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.26) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.2) 1px, transparent 1px),
    linear-gradient(180deg, rgba(22, 24, 30, 0.08), rgba(22, 24, 30, 0.03));
  background-size: 24px 24px, 24px 24px, 100% 100%;
  transform: perspective(500px) rotateX(68deg);
  transform-origin: top center;
}

.stage-platform {
  position: absolute;
  left: 54px;
  right: 54px;
  bottom: 76px;
  height: 28px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(17, 18, 20, 0.8), rgba(17, 18, 20, 0.24));
  filter: blur(0.2px);
}

.print-object {
  position: absolute;
  left: 50%;
  bottom: 148px;
  width: 184px;
  height: 220px;
  transform: translateX(-50%);
}

.print-layer {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  border-radius: 26px;
  box-shadow: 0 12px 24px rgba(24, 29, 38, 0.18);
}

.print-layer-a {
  bottom: 0;
  width: 184px;
  height: 92px;
  background: linear-gradient(180deg, rgba(255, 190, 61, 0.88), rgba(255, 106, 61, 0.96));
}

.print-layer-b {
  bottom: 58px;
  width: 146px;
  height: 78px;
  background: linear-gradient(180deg, rgba(255, 214, 131, 0.92), rgba(255, 131, 76, 0.88));
}

.print-layer-c {
  bottom: 110px;
  width: 104px;
  height: 66px;
  background: linear-gradient(180deg, rgba(15, 139, 141, 0.94), rgba(10, 76, 88, 0.92));
}

.printer-head {
  position: absolute;
  left: 50%;
  top: 84px;
  width: 184px;
  height: 80px;
  transform: translateX(-50%);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(21, 25, 34, 0.94), rgba(21, 25, 34, 0.72));
  box-shadow: 0 16px 22px rgba(20, 24, 34, 0.2);
  animation: printer-head 4.4s ease-in-out infinite;
}

.printer-head::before,
.printer-head::after {
  content: "";
  position: absolute;
  top: -56px;
  width: 6px;
  height: 56px;
  border-radius: 999px;
  background: rgba(20, 24, 34, 0.54);
}

.printer-head::before {
  left: 26px;
}

.printer-head::after {
  right: 26px;
}

.printer-head-light {
  position: absolute;
  left: 50%;
  bottom: -82px;
  width: 18px;
  height: 98px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 190, 61, 0.92), rgba(255, 106, 61, 0));
  filter: blur(1px);
}

.floating-panel {
  position: absolute;
  max-width: 240px;
  padding: 18px 20px;
  border-radius: 24px;
}

.floating-panel small {
  display: block;
  color: var(--muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.72rem;
  font-weight: 800;
}

.floating-panel strong {
  display: block;
  font-size: 1.04rem;
  line-height: 1.25;
}

.floating-panel-top {
  top: 40px;
  left: 0;
  animation: float-card 5.2s ease-in-out infinite;
}

.floating-panel-bottom {
  right: 0;
  bottom: 38px;
  animation: float-card 6.1s ease-in-out infinite reverse;
}

.ticker-wrap {
  overflow: hidden;
  border-block: 1px solid rgba(22, 24, 30, 0.08);
  background: rgba(255, 255, 255, 0.42);
}

.ticker-track {
  display: flex;
  gap: 42px;
  width: max-content;
  padding: 16px 0;
  color: var(--ink);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  animation: ticker 20s linear infinite;
}

.ticker-track span::before {
  content: "•";
  margin-right: 16px;
  color: var(--accent);
}

.section {
  padding: 92px 0 0;
}

.compact-top {
  padding-top: 26px;
}

.section-head {
  margin-bottom: 34px;
}

.section-head h2 {
  max-width: 12ch;
  margin: 14px 0 12px;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 0.94;
}

.section-head.narrow h2 {
  max-width: 16ch;
}

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

.service-card,
.highlight-card {
  position: relative;
  padding: 28px;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.service-card::before,
.highlight-card::before {
  content: "";
  position: absolute;
  inset: auto auto 0 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, rgba(255, 106, 61, 0.82), rgba(15, 139, 141, 0.72));
}

.service-index {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(22, 24, 30, 0.06);
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
}

.service-card h3,
.process-step h3,
.highlight-card h3 {
  margin: 16px 0 10px;
  font-size: 1.5rem;
  line-height: 1.08;
}

.service-card p,
.process-step p,
.highlight-card span {
  color: var(--muted);
}

.service-card ul,
.summary-tips ul {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--ink);
}

.service-card li,
.summary-tips li {
  margin-bottom: 10px;
}

.service-link {
  margin-top: 16px;
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: rgba(22, 24, 30, 0.08);
  color: var(--ink);
  font-weight: 700;
  cursor: pointer;
}

.accent-card {
  background:
    linear-gradient(150deg, rgba(255, 106, 61, 0.14), rgba(255, 106, 61, 0.04)),
    var(--surface);
}

.process-panel {
  padding: 34px;
  border-radius: 38px;
  background: rgba(255, 255, 255, 0.46);
  border: 1px solid rgba(255, 255, 255, 0.52);
  box-shadow: var(--shadow);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.process-step {
  padding: 26px;
  border-radius: 28px;
}

.process-step strong {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(255, 106, 61, 0.12);
  color: var(--accent-deep);
}

.highlight-card {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.highlight-card span {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(15, 139, 141, 0.11);
  color: var(--teal);
  font-weight: 800;
}

.form-section {
  padding-bottom: 92px;
}

.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.52fr);
  gap: 20px;
  align-items: start;
}

.quote-form,
.summary-card {
  border-radius: 34px;
}

.quote-form {
  padding: 28px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-grid-secondary {
  margin-top: 18px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.field span,
.picker legend,
.summary-block small {
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(22, 24, 30, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.64);
  padding: 15px 18px;
  color: var(--ink);
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus,
.dropzone:focus-visible {
  border-color: rgba(255, 106, 61, 0.55);
  box-shadow: 0 0 0 4px rgba(255, 106, 61, 0.14);
  background: rgba(255, 255, 255, 0.82);
}

.field-textarea {
  margin-top: 18px;
}

.picker {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  border: 0;
}

.picker legend {
  margin-bottom: 12px;
}

.chip-option {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.chip-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.chip-option span {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(22, 24, 30, 0.12);
  background: rgba(255, 255, 255, 0.56);
  font-weight: 700;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
  cursor: pointer;
}

.chip-option input:checked + span {
  transform: translateY(-2px);
  border-color: rgba(255, 106, 61, 0.42);
  background: rgba(255, 106, 61, 0.12);
  color: var(--accent-deep);
}

.upload-panel {
  margin-top: 20px;
}

.dropzone {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 192px;
  padding: 28px;
  border: 2px dashed rgba(22, 24, 30, 0.18);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 106, 61, 0.08), rgba(15, 139, 141, 0.08));
  cursor: pointer;
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}

.dropzone.is-dragover {
  border-color: rgba(255, 106, 61, 0.62);
  transform: translateY(-2px);
  background:
    linear-gradient(135deg, rgba(255, 106, 61, 0.12), rgba(15, 139, 141, 0.12));
}

.file-input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.dropzone-copy {
  text-align: center;
  max-width: 40ch;
}

.dropzone-copy strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.dropzone-copy span {
  color: var(--muted);
}

.file-list {
  margin-top: 14px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(22, 24, 30, 0.08);
  background: rgba(255, 255, 255, 0.54);
  color: var(--muted);
}

.file-list ul {
  margin: 0;
  padding-left: 18px;
}

.file-list li + li {
  margin-top: 8px;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 20px;
  color: var(--muted);
}

.consent input {
  margin-top: 4px;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 24px;
}

.micro-note {
  max-width: 38ch;
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.summary-card {
  position: sticky;
  top: 112px;
  padding: 26px;
}

.summary-label {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 106, 61, 0.1);
  color: var(--accent-deep);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.summary-card h3 {
  margin: 16px 0 22px;
  font-size: 2rem;
  line-height: 0.98;
}

.summary-block + .summary-block {
  margin-top: 18px;
}

.summary-block p {
  margin: 7px 0 0;
  font-size: 1.05rem;
  line-height: 1.35;
}

.summary-tips {
  margin-top: 24px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(22, 24, 30, 0.05);
}

.summary-tips span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.success-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding: 18px 22px;
  border-radius: 22px;
  border: 1px solid rgba(15, 139, 141, 0.18);
  background: rgba(15, 139, 141, 0.1);
  color: #0b5254;
}

.site-footer {
  padding: 0 0 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 0.8fr;
  gap: 18px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 34px;
  background: rgba(255, 250, 242, 0.72);
  box-shadow: var(--shadow);
}

.site-footer h3 {
  margin-top: 0;
  margin-bottom: 14px;
  font-size: 1.2rem;
}

.site-footer p,
.site-footer a {
  margin: 0 0 10px;
  color: var(--muted);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 600ms ease,
    transform 600ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes printer-head {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(14px);
  }
}

@keyframes float-card {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 1080px) {
  .hero,
  .quote-layout,
  .footer-grid,
  .process-grid,
  .service-grid,
  .highlight-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 32px;
  }

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

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

  .summary-card {
    position: static;
  }

  .section-head h2 {
    max-width: 16ch;
  }
}

@media (max-width: 820px) {
  .site-header {
    padding-top: 12px;
  }

  .header-row {
    border-radius: 28px;
    padding: 16px;
    flex-wrap: wrap;
  }

  .main-nav {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
    font-size: 0.94rem;
  }

  .header-cta {
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 14vw, 4.2rem);
  }

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

  .floating-panel {
    max-width: 210px;
  }

  .form-grid,
  .form-actions {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }

  .quote-form,
  .summary-card,
  .process-panel,
  .service-card,
  .highlight-card {
    padding: 22px;
  }
}

@media (max-width: 560px) {
  :root {
    --shell: min(100vw - 24px, 100%);
  }

  .site-header {
    position: static;
  }

  .brand {
    width: 100%;
  }

  .brand-text small {
    display: none;
  }

  .main-nav {
    flex-wrap: wrap;
  }

  .hero {
    gap: 26px;
  }

  .hero-visual {
    min-height: 390px;
  }

  .printer-stage {
    border-radius: 28px;
    padding: 18px;
  }

  .floating-panel {
    position: relative;
    max-width: none;
    inset: auto;
  }

  .hero-visual {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .metric-card,
  .process-step,
  .field input,
  .field select,
  .field textarea,
  .dropzone {
    border-radius: 18px;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0ms !important;
  }
}
