@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("assets/fonts/manrope-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02ba, U+02bd-02c5, U+02c7-02cc, U+02ce-02d7, U+02dd-02ff,
    U+0304, U+0308, U+0329, U+1d00-1dbf, U+1e00-1e9f, U+1ef2-1eff, U+2020,
    U+20a0-20ab, U+20ad-20c0, U+2113, U+2c60-2c7f, U+a720-a7ff;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("assets/fonts/manrope-latin.woff2") format("woff2");
  unicode-range: U+0000-00ff, U+0131, U+0152-0153, U+02bb-02bc, U+02c6, U+02da,
    U+02dc, U+0304, U+0308, U+0329, U+2000-206f, U+20ac, U+2122, U+2191,
    U+2193, U+2212, U+2215, U+feff, U+fffd;
}

@font-face {
  font-family: "Newsreader";
  font-style: italic;
  font-weight: 400 500;
  font-display: swap;
  src: url("assets/fonts/newsreader-italic-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02ba, U+02bd-02c5, U+02c7-02cc, U+02ce-02d7, U+02dd-02ff,
    U+0304, U+0308, U+0329, U+1d00-1dbf, U+1e00-1e9f, U+1ef2-1eff, U+2020,
    U+20a0-20ab, U+20ad-20c0, U+2113, U+2c60-2c7f, U+a720-a7ff;
}

@font-face {
  font-family: "Newsreader";
  font-style: italic;
  font-weight: 400 500;
  font-display: swap;
  src: url("assets/fonts/newsreader-italic-latin.woff2") format("woff2");
  unicode-range: U+0000-00ff, U+0131, U+0152-0153, U+02bb-02bc, U+02c6, U+02da,
    U+02dc, U+0304, U+0308, U+0329, U+2000-206f, U+20ac, U+2122, U+2191,
    U+2193, U+2212, U+2215, U+feff, U+fffd;
}

:root {
  --ink: #171914;
  --ink-soft: #24271f;
  --paper: #f3f0e8;
  --paper-deep: #e8e3d8;
  --white: #fffdf8;
  --lime: #dfff3f;
  --lime-soft: #ebff8a;
  --orange: #f17f48;
  --blue: #5670ff;
  --muted: #64675f;
  --line: rgba(23, 25, 20, 0.16);
  --line-light: rgba(255, 255, 255, 0.15);
  --shadow: 0 24px 80px rgba(18, 20, 16, 0.12);
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --shell: min(1380px, calc(100vw - 64px));
  --header-height: 86px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
  background: var(--ink);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

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

::selection {
  background: var(--lime);
  color: var(--ink);
}

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

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

.section {
  position: relative;
  padding-block: 130px;
}

.kicker,
.eyebrow {
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-transform: uppercase;
}

.kicker--light {
  color: rgba(255, 255, 255, 0.58);
}

.kicker--dark {
  color: rgba(23, 25, 20, 0.58);
}

.section-heading {
  margin-bottom: 70px;
}

.section-heading h2,
.standard h2,
.pricing h2,
.area h2,
.faq h2,
.contact h2 {
  margin-bottom: 0;
  font-size: clamp(3.2rem, 6.3vw, 7.1rem);
  font-weight: 600;
  letter-spacing: -0.07em;
  line-height: 0.92;
}

h1 em,
h2 em {
  font-family: "Newsreader", Georgia, serif;
  font-weight: 400;
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  gap: 80px;
  align-items: end;
}

.section-heading--split > p {
  max-width: 500px;
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 1.04rem;
}

.section-heading--wide h2 {
  max-width: 1080px;
}

.reveal.reveal-pending {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 700ms var(--ease),
    transform 850ms var(--ease);
}

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

/* Email capture is deterministic: never let reveal timing hide the hero from the 1440x900 artifact. */
body[data-email-capture="true"] .reveal.reveal-pending {
  opacity: 1;
  transform: none;
}

.status-dot {
  position: relative;
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(223, 255, 63, 0.16);
}

.status-dot::after {
  position: absolute;
  inset: -5px;
  border: 1px solid var(--lime);
  border-radius: 50%;
  content: "";
  opacity: 0;
  animation: ping 2.3s ease-out infinite;
}

@keyframes ping {
  35% {
    opacity: 0.7;
  }
  100% {
    opacity: 0;
    transform: scale(1.8);
  }
}

/* Top bars */

.utility-bar {
  position: relative;
  z-index: 100;
  height: 38px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: #0d0e0b;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.utility-bar__inner,
.utility-bar__inner p,
.utility-bar__contact {
  display: flex;
  align-items: center;
}

.utility-bar__inner {
  height: 100%;
  justify-content: space-between;
}

.utility-bar__inner p {
  gap: 10px;
  margin: 0;
}

.utility-bar__contact {
  gap: 28px;
}

.utility-bar__contact a {
  color: var(--lime);
}

.site-header {
  position: sticky;
  z-index: 90;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(23, 25, 20, 0.88);
  color: var(--white);
  backdrop-filter: blur(18px);
  transition:
    background 250ms ease,
    box-shadow 250ms ease;
}

.site-header.is-scrolled {
  background: rgba(16, 17, 14, 0.96);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.22);
}

.site-header__inner {
  display: grid;
  grid-template-columns: 220px 1fr 220px;
  align-items: center;
  height: 100%;
}

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

.brand__mark {
  width: 43px;
  height: 43px;
  overflow: visible;
}

.brand__mark > circle:first-child {
  fill: none;
  stroke: var(--lime);
  stroke-width: 1.5;
}

.brand__mark path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.brand__pulse {
  fill: var(--lime);
  stroke: none;
}

.brand__word {
  display: flex;
  min-width: 0;
  flex-direction: column;
  font-size: 0.85rem;
  letter-spacing: -0.04em;
  line-height: 0.94;
}

.brand__word strong {
  overflow: hidden;
  font-size: 1.13rem;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(22px, 3.3vw, 52px);
  font-size: 0.78rem;
  font-weight: 650;
}

.desktop-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.76);
  transition: color 180ms ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--lime);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 300ms var(--ease);
}

.desktop-nav a:hover {
  color: var(--white);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  display: flex;
  height: 46px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  justify-self: end;
  padding-inline: 20px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 750;
  transition:
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.header-cta span {
  font-size: 1rem;
}

.header-cta:hover {
  border-color: var(--lime);
  background: var(--lime);
  color: var(--ink);
}

.menu-toggle,
.mobile-menu {
  display: none;
}

/* Hero */

.hero {
  position: relative;
  display: flex;
  overflow: hidden;
  min-height: calc(100svh - 38px - var(--header-height));
  flex-direction: column;
  padding: 46px 0 0;
  background: var(--ink);
  color: var(--white);
  isolation: isolate;
}

.hero__noise {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.24;
  background-image:
    radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.055) 0 0.7px, transparent 0.8px),
    radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.04) 0 0.7px, transparent 0.8px);
  background-position:
    0 0,
    7px 8px;
  background-size:
    12px 12px,
    15px 15px;
  pointer-events: none;
}

.hero__circuit {
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 44px;
  left: 0;
  width: 100%;
  height: calc(100% - 44px);
  opacity: 0.95;
  pointer-events: none;
}

.hero__circuit path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.hero__circuit-base {
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 1;
}

.hero__circuit-live {
  stroke: var(--lime);
  stroke-dasharray: 110 1420;
  stroke-width: 2;
  filter: drop-shadow(0 0 6px rgba(223, 255, 63, 0.7));
  animation: current 8s linear infinite;
}

@keyframes current {
  to {
    stroke-dashoffset: -1530;
  }
}

.hero__inner {
  display: grid;
  min-height: 700px;
  flex: 1;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  gap: clamp(32px, 5vw, 86px);
  align-items: stretch;
}

.hero__inner--copy-only {
  max-width: 980px;
  grid-template-columns: minmax(0, 820px);
}

.hero__copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 44px 0 92px;
}

.hero .eyebrow {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.65);
}

.hero .eyebrow span {
  padding: 7px 10px;
  border: 1px solid var(--lime);
  border-radius: 999px;
  color: var(--lime);
}

.hero h1 {
  position: relative;
  margin: 0 0 34px;
  font-size: clamp(4rem, 7.4vw, 8rem);
  font-weight: 600;
  letter-spacing: -0.077em;
  line-height: 0.85;
}

.hero h1 em {
  color: var(--lime);
}

.hero__lead {
  max-width: 620px;
  margin-bottom: 36px;
  color: rgba(255, 255, 255, 0.71);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.65;
}

.hero__lead strong {
  color: var(--white);
  font-weight: 650;
}

.hero__actions {
  display: flex;
  gap: 12px;
  align-items: stretch;
  margin-bottom: 38px;
}

.button {
  display: inline-flex;
  min-height: 68px;
  align-items: center;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 750;
}

.button--live {
  gap: 14px;
  padding: 8px 28px 8px 8px;
  background: var(--lime);
  color: var(--ink);
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.button--live:hover {
  background: var(--lime-soft);
  transform: translateY(-2px);
}

.button--live > span:last-child {
  display: flex;
  flex-direction: column;
  font-size: 0.93rem;
  line-height: 1.25;
}

.button--live small {
  font-size: 0.65rem;
  font-weight: 650;
  opacity: 0.63;
}

.button__icon {
  display: grid;
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--lime);
}

.button__icon svg {
  width: 22px;
}

.button__icon path,
.mobile-actions svg path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button--ghost {
  gap: 24px;
  justify-content: space-between;
  padding-inline: 26px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--white);
  transition:
    border-color 180ms ease,
    background 180ms ease;
}

.button--ghost:hover {
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.07);
}

.button--ghost span {
  font-size: 1.1rem;
}

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 13px 26px;
  padding: 0;
  margin: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.63);
  font-size: 0.7rem;
  font-weight: 650;
}

.hero__proof li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero__proof svg {
  width: 18px;
  height: 18px;
  border: 1px solid rgba(223, 255, 63, 0.55);
  border-radius: 50%;
  color: var(--lime);
}

.hero__proof path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.hero__visual {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  background: #d3cec1;
}

.hero-art,
.hero-art svg {
  width: 100%;
  height: 100%;
}

.hero-art {
  position: absolute;
  inset: 0;
}

.hero-art svg {
  display: block;
  transform: scale(1.015);
  transition: transform 1.6s var(--ease);
}

.hero__visual.is-visible .hero-art svg {
  transform: scale(1);
}

.hero__visual-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 16, 13, 0.06), transparent 55%, rgba(15, 16, 13, 0.4)),
    linear-gradient(90deg, rgba(15, 16, 13, 0.12), transparent 30%);
  pointer-events: none;
}

.hero__demo-label {
  z-index: 2;
}

.availability-card {
  position: absolute;
  top: 24px;
  right: 24px;
  width: min(300px, calc(100% - 48px));
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 16px;
  background: rgba(18, 19, 16, 0.73);
  color: var(--white);
  backdrop-filter: blur(18px);
}

.availability-card__top {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
  font-size: 0.72rem;
  font-weight: 750;
}

.availability-card p {
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.74rem;
  line-height: 1.55;
}

.availability-card a {
  display: flex;
  justify-content: space-between;
  color: var(--lime);
  font-size: 0.68rem;
  font-weight: 750;
}

.hero__caption {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  color: var(--white);
}

.hero__caption > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  font-size: 0.66rem;
}

.hero__caption p {
  margin: 0;
  text-align: right;
  font-size: 0.74rem;
  font-weight: 650;
  line-height: 1.45;
}

.hero__marquee {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 48px;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.52);
}

.hero__marquee > div {
  display: flex;
  width: max-content;
  min-width: 200%;
  height: 100%;
  align-items: center;
  gap: 26px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  animation: marquee 24s linear infinite;
}

.hero__marquee b {
  color: var(--lime);
  font-size: 0.8rem;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

/* Diagnosis */

.diagnosis {
  overflow: hidden;
  background: var(--paper);
}

.diagnosis::before {
  position: absolute;
  top: -230px;
  right: -150px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(23, 25, 20, 0.08);
  border-radius: 50%;
  content: "";
  box-shadow:
    0 0 0 70px rgba(23, 25, 20, 0.025),
    0 0 0 140px rgba(23, 25, 20, 0.016);
}

.diagnosis__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
  gap: 20px;
  align-items: stretch;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.problem-card {
  position: relative;
  display: grid;
  min-height: 260px;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr auto auto;
  gap: 10px;
  align-items: start;
  padding: 28px;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  transition:
    background 300ms var(--ease),
    color 300ms var(--ease),
    transform 300ms var(--ease);
}

.problem-card::after {
  position: absolute;
  inset: 8px;
  border: 1px solid transparent;
  border-radius: 12px;
  content: "";
  pointer-events: none;
  transition: border-color 200ms ease;
}

.problem-card:hover,
.problem-card.is-active {
  z-index: 2;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-4px);
}

.problem-card.is-active::after {
  border-color: rgba(223, 255, 63, 0.5);
}

.problem-card__number {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 750;
}

.problem-card__icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition:
    border-color 200ms ease,
    background 200ms ease;
}

.problem-card:hover .problem-card__icon,
.problem-card.is-active .problem-card__icon {
  border-color: var(--lime);
  background: var(--lime);
  color: var(--ink);
}

.problem-card__icon svg {
  width: 30px;
}

.problem-card__icon path,
.problem-card__icon rect {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.problem-card__title {
  align-self: end;
  grid-column: 1 / -1;
  font-size: 1.42rem;
  font-weight: 720;
  letter-spacing: -0.035em;
}

.problem-card__hint {
  max-width: 340px;
  grid-column: 1;
  color: var(--muted);
  font-size: 0.77rem;
  line-height: 1.5;
}

.problem-card:hover .problem-card__hint,
.problem-card.is-active .problem-card__hint {
  color: rgba(255, 255, 255, 0.58);
}

.problem-card__arrow {
  align-self: end;
  font-size: 1.4rem;
}

.diagnosis-result {
  position: sticky;
  top: 110px;
  display: flex;
  min-height: 540px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 38px;
  border-radius: var(--radius-md);
  background: var(--lime);
}

.diagnosis-result::before {
  position: absolute;
  top: 16px;
  right: 16px;
  bottom: 16px;
  left: 16px;
  border: 1px solid rgba(23, 25, 20, 0.17);
  border-radius: 14px;
  content: "";
  pointer-events: none;
}

.diagnosis-result__eyebrow {
  position: absolute;
  top: 38px;
  left: 38px;
  margin: 0;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.diagnosis-result__glyph {
  position: absolute;
  top: 64px;
  right: 42px;
  font-family: "Newsreader", Georgia, serif;
  font-size: 6rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1;
}

.diagnosis-result h3 {
  position: relative;
  max-width: 360px;
  margin-bottom: 18px;
  font-size: clamp(2rem, 3vw, 3.25rem);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.diagnosis-result > p:not(.diagnosis-result__eyebrow) {
  position: relative;
  max-width: 420px;
  margin-bottom: 22px;
  font-size: 0.9rem;
}

.diagnosis-result__action {
  position: relative;
}

.diagnosis-result__action a {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 750;
}

/* Services */

.services {
  background: var(--white);
}

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

.service-card {
  position: relative;
  display: flex;
  min-height: 390px;
  grid-column: span 4;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
  transition:
    transform 350ms var(--ease),
    box-shadow 350ms var(--ease);
}

.service-card:hover {
  z-index: 2;
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.service-card--feature {
  min-height: 540px;
  grid-column: span 6;
  background: var(--ink);
  color: var(--white);
}

.service-card--feature + .service-card,
.service-card--feature + .service-card + .service-card {
  grid-column: span 3;
}

.service-card--lime {
  background: var(--lime);
}

.service-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.service-card__top > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.63rem;
  opacity: 0.55;
}

.service-card__top svg {
  width: 70px;
  height: 70px;
}

.service-card__top path,
.service-card__top rect,
.service-card__top circle {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.service-card--feature .service-card__top svg {
  width: 100px;
  height: 100px;
  color: var(--lime);
}

.service-card__label {
  width: fit-content;
  margin-bottom: 16px;
  padding: 6px 9px;
  border: 1px solid var(--lime);
  border-radius: 999px;
  color: var(--lime);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.service-card h3 {
  margin-bottom: 14px;
  font-size: clamp(1.6rem, 2.1vw, 2.45rem);
  font-weight: 650;
  letter-spacing: -0.052em;
  line-height: 1;
}

.service-card p {
  max-width: 490px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.service-card--feature p {
  color: rgba(255, 255, 255, 0.61);
}

.service-card--lime p {
  color: rgba(23, 25, 20, 0.67);
}

.service-card a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 0.7rem;
  font-weight: 750;
}

.service-card--feature a {
  border-color: var(--line-light);
  color: var(--lime);
}

.service-card a span {
  font-size: 1.15rem;
  transition: transform 220ms var(--ease);
}

.service-card a:hover span {
  transform: translate(4px, -2px);
}

.service-card__current {
  position: absolute;
  top: 50%;
  right: -40px;
  width: 170px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--lime));
  transform: rotate(-45deg);
  transform-origin: right;
  animation: live-card 3.4s ease-in-out infinite;
}

@keyframes live-card {
  0%,
  100% {
    opacity: 0.2;
    transform: rotate(-45deg) scaleX(0.25);
  }
  50% {
    opacity: 1;
    transform: rotate(-45deg) scaleX(1);
  }
}

/* Standard */

.standard {
  overflow: hidden;
  background:
    radial-gradient(circle at 0 100%, rgba(223, 255, 63, 0.13), transparent 32%),
    var(--ink);
  color: var(--white);
}

.standard::after {
  position: absolute;
  top: -240px;
  right: -120px;
  width: 760px;
  height: 760px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  box-shadow:
    0 0 0 90px rgba(255, 255, 255, 0.025),
    0 0 0 180px rgba(255, 255, 255, 0.016);
  content: "";
}

.standard__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(440px, 1.15fr);
  gap: 110px;
}

.standard__intro {
  position: sticky;
  top: 130px;
  align-self: start;
}

.standard__intro h2 {
  font-size: clamp(3.5rem, 5.6vw, 6.4rem);
}

.standard__intro h2 em {
  color: var(--lime);
}

.standard__intro > p:last-child {
  max-width: 550px;
  margin-top: 38px;
  color: rgba(255, 255, 255, 0.61);
}

.standard__list {
  border-top: 1px solid var(--line-light);
}

.standard-row {
  display: grid;
  min-height: 205px;
  grid-template-columns: 52px 1fr 46px;
  gap: 24px;
  align-items: center;
  border-bottom: 1px solid var(--line-light);
}

.standard-row > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--lime);
  font-size: 0.62rem;
}

.standard-row h3 {
  margin-bottom: 10px;
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 650;
  letter-spacing: -0.04em;
}

.standard-row p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.82rem;
}

.standard-row > svg {
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.standard-row:hover > svg {
  background: var(--lime);
  color: var(--ink);
}

.standard-row > svg path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

/* Projects */

.projects {
  background: var(--paper);
}

.projects-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(380px, 0.72fr);
  gap: 18px;
  align-items: start;
}

.project {
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--white);
}

.project--wide {
  grid-row: span 2;
}

.project__image {
  position: relative;
  overflow: hidden;
  background: var(--paper-deep);
}

.project--wide .project__image {
  aspect-ratio: 1.45 / 1;
}

.project--tall .project__image {
  aspect-ratio: 0.8 / 1;
}

.project-art,
.project-art svg {
  width: 100%;
  height: 100%;
}

.project-art {
  position: absolute;
  inset: 0;
}

.project-art svg {
  display: block;
  transition: transform 900ms var(--ease);
}

.project:hover .project-art svg {
  transform: scale(1.035);
}

.demo-label {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 999px;
  background: rgba(18, 19, 16, 0.9);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  backdrop-filter: blur(10px);
}

.project__meta {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(220px, 0.85fr) auto;
  gap: 24px;
  align-items: end;
  padding: 26px 28px 30px;
}

.project--tall .project__meta {
  grid-template-columns: 1fr auto;
}

.project--tall .project__meta > p {
  grid-column: 1 / -1;
  grid-row: 2;
}

.project__meta p {
  margin: 0;
  color: var(--muted);
  font-size: 0.68rem;
}

.project__meta > div > p {
  margin-bottom: 8px;
  font-size: 0.58rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project__meta h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 2.1rem);
  font-weight: 650;
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.project__meta > span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 0.58rem;
}

.project-note {
  position: relative;
  display: flex;
  min-height: 410px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 34px;
  border-radius: var(--radius-md);
  background: var(--orange);
}

.project-note::before {
  position: absolute;
  top: -190px;
  right: -180px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(23, 25, 20, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(23, 25, 20, 0.045);
  content: "";
}

.project-note__icon {
  position: absolute;
  top: 22px;
  right: 28px;
  font-family: "Newsreader", Georgia, serif;
  font-size: 5rem;
  font-style: italic;
  line-height: 1;
}

.project-note .kicker {
  margin-bottom: 16px;
  color: rgba(23, 25, 20, 0.65);
}

.project-note h3 {
  max-width: 480px;
  margin-bottom: 18px;
  font-size: clamp(1.7rem, 2.3vw, 2.55rem);
  font-weight: 650;
  letter-spacing: -0.052em;
  line-height: 1;
}

.project-note > p:not(.kicker) {
  margin-bottom: 28px;
  font-size: 0.79rem;
}

.project-note a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid rgba(23, 25, 20, 0.22);
  font-size: 0.68rem;
  font-weight: 750;
}

/* Process */

.process {
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-step {
  position: relative;
  min-height: 410px;
  padding: 28px 38px 38px;
  border-top: 1px solid var(--ink);
  border-right: 1px solid var(--line);
}

.process-step:last-child {
  border-right: 0;
}

.process-step::before {
  position: absolute;
  top: -5px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--ink);
  content: "";
  transition:
    background 200ms ease,
    box-shadow 200ms ease;
}

.process-step:hover::before {
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(23, 25, 20, 0.1);
}

.process-step__number {
  margin-bottom: 120px;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 750;
}

.process-step__time {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.61rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.process-step h3 {
  margin-bottom: 15px;
  font-size: clamp(1.6rem, 2.2vw, 2.4rem);
  font-weight: 650;
  letter-spacing: -0.05em;
}

.process-step__body > p:last-child {
  max-width: 360px;
  margin: 0;
  color: var(--muted);
  font-size: 0.79rem;
}

/* Pricing */

.pricing {
  background: var(--white);
}

.pricing__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(520px, 1.22fr);
  gap: 110px;
  align-items: start;
}

.pricing__intro h2 {
  font-size: clamp(3.5rem, 5.6vw, 6.4rem);
}

.pricing__intro > p:not(.kicker) {
  max-width: 520px;
  margin: 34px 0;
  color: var(--muted);
}

.pricing__note {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--paper);
}

.pricing__note svg {
  width: 23px;
  flex: 0 0 23px;
}

.pricing__note svg circle,
.pricing__note svg path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.7;
}

.pricing__note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.73rem;
}

.price-list {
  border-top: 1px solid var(--ink);
}

.price-row {
  display: grid;
  min-height: 126px;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.price-row > div {
  display: flex;
  gap: 22px;
  align-items: center;
}

.price-row span {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--muted);
  font-size: 0.56rem;
}

.price-row p {
  margin: 0;
  font-size: clamp(1rem, 1.4vw, 1.28rem);
  font-weight: 590;
  letter-spacing: -0.025em;
}

.price-row strong {
  color: var(--ink);
  font-size: clamp(1.25rem, 1.8vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.045em;
}

.price-list__disclaimer {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.65rem;
}

/* Area */

.area {
  overflow: hidden;
  padding-block: 0;
  background: #27281f;
  color: var(--white);
}

.area__grid {
  display: grid;
  min-height: 780px;
  grid-template-columns: 1.15fr 0.85fr;
}

.area__map {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}

.map-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(223, 255, 63, 0.18);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.map-ring--one {
  width: 230px;
  height: 230px;
}

.map-ring--two {
  width: 440px;
  height: 440px;
}

.map-ring--three {
  width: 680px;
  height: 680px;
  border-style: dashed;
  animation: map-spin 70s linear infinite;
}

@keyframes map-spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.map-road {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 760px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.17), transparent);
}

.map-road--one {
  transform: translate(-50%, -50%) rotate(25deg);
}

.map-road--two {
  transform: translate(-50%, -50%) rotate(-38deg);
}

.map-city {
  position: absolute;
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.map-city b {
  width: 7px;
  height: 7px;
  border: 1px solid var(--lime);
  border-radius: 50%;
}

.map-city--center {
  top: 50%;
  left: 50%;
  padding: 12px 16px;
  border: 1px solid var(--lime);
  border-radius: 999px;
  background: var(--lime);
  color: var(--ink);
  font-size: 0.7rem;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 60px rgba(223, 255, 63, 0.22);
}

.map-city--center b {
  background: var(--ink);
  border-color: var(--ink);
}

.map-city--trzebnica {
  top: 18%;
  left: 48%;
}

.map-city--olesnica {
  top: 33%;
  right: 8%;
}

.map-city--olawa {
  right: 13%;
  bottom: 24%;
}

.map-city--sroda {
  top: 44%;
  left: 8%;
}

.map-city--sobotka {
  bottom: 18%;
  left: 20%;
}

.map-city--strzelin {
  right: 28%;
  bottom: 9%;
}

.map-distance {
  position: absolute;
  top: calc(50% - 340px);
  left: 50%;
  padding: 7px 10px;
  border-radius: 999px;
  background: #27281f;
  color: var(--lime);
  font-size: 0.57rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  transform: translate(-50%, -50%);
}

.area__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px clamp(40px, 6vw, 94px);
}

.area__copy h2 {
  font-size: clamp(3.4rem, 5.2vw, 6rem);
}

.area__copy h2 em {
  color: var(--lime);
}

.area__copy > p {
  max-width: 560px;
  margin: 34px 0 26px;
  color: rgba(255, 255, 255, 0.58);
}

.area__copy ul {
  padding: 0;
  margin: 0 0 34px;
  list-style: none;
}

.area__copy li {
  position: relative;
  padding: 10px 0 10px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.77);
  font-size: 0.78rem;
}

.area__copy li::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  content: "";
  transform: translateY(-50%);
}

.text-link {
  display: flex;
  width: fit-content;
  gap: 28px;
  align-items: center;
  padding-bottom: 8px;
  border-bottom: 1px solid currentColor;
  font-size: 0.72rem;
  font-weight: 750;
}

.text-link--light {
  color: var(--lime);
}

/* Promise */

.promise {
  background: var(--paper);
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.promise-card {
  position: relative;
  min-height: 390px;
  padding: 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.promise-card > span {
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 750;
}

.promise-card svg {
  width: 70px;
  height: 70px;
  margin: 74px 0 45px;
}

.promise-card svg path,
.promise-card svg circle {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.3;
}

.promise-card h3 {
  margin-bottom: 12px;
  font-size: clamp(1.5rem, 2vw, 2.05rem);
  font-weight: 650;
  letter-spacing: -0.05em;
}

.promise-card p {
  max-width: 360px;
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

/* FAQ */

.faq {
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.faq__grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.62fr) minmax(0, 1.38fr);
  gap: 130px;
}

.faq__intro {
  position: sticky;
  top: 130px;
  align-self: start;
}

.faq__intro h2 {
  font-size: clamp(3.5rem, 5.5vw, 6.5rem);
}

.faq__intro > p:last-child {
  max-width: 380px;
  margin-top: 32px;
  color: var(--muted);
}

.faq-list {
  border-top: 1px solid var(--ink);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: grid;
  min-height: 112px;
  grid-template-columns: 1fr 32px;
  gap: 24px;
  align-items: center;
  cursor: pointer;
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  font-weight: 620;
  letter-spacing: -0.025em;
  list-style: none;
}

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

.faq-list summary span {
  position: relative;
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  background: var(--ink);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 240ms var(--ease);
}

.faq-list summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-list details > div {
  overflow: hidden;
}

.faq-list details p {
  max-width: 780px;
  padding: 0 60px 35px 0;
  margin: 0;
  color: var(--muted);
  font-size: 0.87rem;
}

/* Contact */

.contact {
  overflow: hidden;
  background: var(--lime);
}

.contact::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 48%;
  background: rgba(255, 255, 255, 0.2);
  content: "";
}

.contact__glow {
  position: absolute;
  top: -350px;
  left: -250px;
  width: 700px;
  height: 700px;
  border: 1px solid rgba(23, 25, 20, 0.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 80px rgba(23, 25, 20, 0.03),
    0 0 0 160px rgba(23, 25, 20, 0.018);
}

.contact__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 0.72fr);
  gap: 120px;
  align-items: center;
}

.contact__copy h2 {
  font-size: clamp(4rem, 6.5vw, 7.5rem);
}

.contact__copy > p:not(.kicker) {
  max-width: 560px;
  margin: 35px 0;
}

.contact__phone {
  display: grid;
  width: min(520px, 100%);
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 20px 0;
  border-top: 1px solid rgba(23, 25, 20, 0.35);
  border-bottom: 1px solid rgba(23, 25, 20, 0.35);
}

.contact__phone small {
  grid-column: 1;
  font-size: 0.62rem;
  font-weight: 700;
  opacity: 0.62;
}

.contact__phone span {
  grid-column: 1;
  font-size: clamp(1.65rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.05em;
}

.contact__phone b {
  grid-column: 2;
  grid-row: 1 / span 2;
  font-size: 2rem;
  transition: transform 200ms var(--ease);
}

.contact__phone:hover b {
  transform: translate(5px, -5px);
}

.quote-form {
  padding: clamp(28px, 4vw, 52px);
  border-radius: var(--radius-md);
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 30px 80px rgba(23, 25, 20, 0.16);
}

.quote-form--phone-only {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  justify-content: center;
}

.quote-form--phone-only h3 {
  margin-top: 14px;
  font-size: clamp(2rem, 4vw, 4rem);
  letter-spacing: -0.055em;
}

.form-field {
  margin-bottom: 24px;
}

.form-field label {
  display: block;
  margin-bottom: 9px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.64rem;
  font-weight: 750;
  letter-spacing: 0.05em;
}

.form-field input,
.form-field select {
  width: 100%;
  height: 60px;
  padding: 0 4px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 0;
  background: transparent;
  color: var(--white);
  font-size: 1rem;
  transition: border-color 180ms ease;
}

.form-field input::placeholder {
  color: rgba(255, 255, 255, 0.34);
}

.form-field input:focus,
.form-field select:focus {
  border-color: var(--lime);
}

.form-field input:focus-visible,
.form-field select:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 4px;
}

.form-field input[aria-invalid="true"],
.form-field select[aria-invalid="true"] {
  border-color: #ff856f;
}

.select-wrap {
  position: relative;
}

.select-wrap select {
  padding-right: 35px;
  appearance: none;
}

.select-wrap select option {
  background: var(--ink);
  color: var(--white);
}

.select-wrap > span {
  position: absolute;
  top: 50%;
  right: 4px;
  pointer-events: none;
  transform: translateY(-50%);
}

.form-submit {
  display: flex;
  width: 100%;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  margin-top: 36px;
  padding: 8px 10px 8px 24px;
  border: 0;
  border-radius: 999px;
  background: var(--lime);
  color: var(--ink);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 800;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.form-submit:hover {
  background: var(--lime-soft);
  transform: translateY(-2px);
}

.form-submit b {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--lime);
  font-size: 1.25rem;
}

.form-legal {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.64rem;
  line-height: 1.55;
}

.form-legal a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-status {
  display: none;
  margin: 18px 0 0;
  padding: 13px 15px;
  border: 1px solid rgba(223, 255, 63, 0.34);
  border-radius: 10px;
  color: var(--lime);
  font-size: 0.69rem;
}

.form-status.is-visible {
  display: block;
}

.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

/* Footer */

.site-footer {
  padding: 80px 0 20px;
  background: #0d0e0b;
  color: var(--white);
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 70px;
  align-items: end;
  padding-bottom: 65px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.brand--footer {
  align-self: start;
}

.site-footer__top > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  line-height: 1.4;
}

.footer-call {
  display: flex;
  gap: 28px;
  align-items: center;
  color: var(--lime);
  font-size: clamp(1.4rem, 2.4vw, 2.15rem);
  font-weight: 700;
  letter-spacing: -0.05em;
}

.footer-call span {
  font-size: 1.4rem;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr 0.9fr 1.2fr;
  gap: 70px;
  padding-block: 64px;
}

.site-footer__grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.site-footer__grid p,
.site-footer__grid a {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
}

.site-footer__grid a:hover {
  color: var(--lime);
}

.site-footer__grid .footer-label {
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.59rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-footer__bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.58rem;
}

.site-footer__bottom p {
  margin: 0;
}

.site-footer__bottom a {
  justify-self: end;
  color: rgba(255, 255, 255, 0.62);
}

.mobile-actions {
  display: none;
}

/* Privacy page */

.legal-page {
  min-height: 100vh;
  padding: 72px 0 120px;
  background: var(--paper);
}

.legal-page__back {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 70px;
  font-size: 0.75rem;
  font-weight: 750;
}

.legal-page__header {
  max-width: 920px;
  margin-bottom: 80px;
}

.legal-page__header .kicker {
  margin-bottom: 20px;
}

.legal-page__header h1 {
  margin-bottom: 30px;
  font-size: clamp(3.5rem, 7vw, 7rem);
  font-weight: 600;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.legal-page__header p {
  max-width: 760px;
  color: var(--muted);
}

.legal-page__content {
  display: grid;
  grid-template-columns: 280px minmax(0, 760px);
  gap: 90px;
  align-items: start;
}

.legal-page__aside {
  position: sticky;
  top: 30px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
}

.legal-page__aside p {
  margin: 0;
  color: var(--muted);
  font-size: 0.7rem;
}

.legal-page__body section {
  padding: 0 0 38px;
  margin-bottom: 38px;
  border-bottom: 1px solid var(--line);
}

.legal-page__body h2 {
  margin-bottom: 16px;
  font-size: 1.55rem;
  font-weight: 650;
  letter-spacing: -0.04em;
}

.legal-page__body p,
.legal-page__body li {
  color: var(--muted);
  font-size: 0.88rem;
}

/* Responsive */

@media (max-width: 1180px) {
  :root {
    --shell: min(100% - 44px, 1120px);
  }

  .site-header__inner {
    grid-template-columns: 180px 1fr 190px;
  }

  .desktop-nav {
    gap: 22px;
  }

  .hero__inner {
    grid-template-columns: minmax(0, 0.95fr) minmax(450px, 1.05fr);
    gap: 34px;
  }

  .hero h1 {
    font-size: clamp(4.1rem, 7.6vw, 6.5rem);
  }

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

  .button--ghost {
    min-height: 52px;
  }

  .standard__grid,
  .pricing__grid,
  .contact__grid {
    gap: 68px;
  }

  .projects-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(330px, 0.72fr);
  }

  .faq__grid {
    gap: 72px;
  }
}

@media (max-width: 960px) {
  :root {
    --header-height: 76px;
    --shell: min(100% - 36px, 840px);
  }

  html {
    scroll-padding-top: 90px;
  }

  .section {
    padding-block: 96px;
  }

  .utility-bar__contact span,
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .site-header__inner {
    display: flex;
    justify-content: space-between;
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    display: flex;
    width: 48px;
    height: 48px;
    flex-direction: column;
    gap: 7px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    background: transparent;
    color: var(--white);
    cursor: pointer;
  }

  .menu-toggle span {
    width: 18px;
    height: 1px;
    background: currentColor;
    transition: transform 280ms var(--ease);
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    z-index: 80;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    visibility: hidden;
    overflow-y: auto;
    flex-direction: column;
    padding:
      calc(var(--header-height) + 36px)
      max(18px, calc((100vw - var(--shell)) / 2))
      36px;
    background: var(--ink);
    color: var(--white);
    opacity: 0;
    overscroll-behavior: contain;
    transform: translateY(-12px);
    transition:
      opacity 240ms ease,
      transform 300ms var(--ease),
      visibility 0s linear 300ms;
  }

  .mobile-menu.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0s;
  }

  .mobile-menu > a {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    font-size: clamp(1.6rem, 7vw, 2.5rem);
    font-weight: 620;
    letter-spacing: -0.05em;
  }

  .mobile-menu > a span {
    color: var(--lime);
    font-size: 0.6rem;
    font-weight: 750;
    letter-spacing: 0;
  }

  .mobile-menu__phone {
    margin-top: auto;
    padding-top: 30px;
  }

  .mobile-menu__phone small {
    display: block;
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.66rem;
  }

  .mobile-menu__phone a {
    color: var(--lime);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.05em;
  }

  .hero {
    padding-top: 0;
  }

  .hero__circuit {
    display: none;
  }

  .hero__inner {
    display: flex;
    min-height: 0;
    flex-direction: column;
    gap: 0;
  }

  .hero__copy {
    min-height: 690px;
    padding: 75px 0 80px;
  }

  .hero h1 {
    font-size: clamp(4.3rem, 14.2vw, 7rem);
  }

  .hero__actions {
    flex-direction: row;
  }

  .button--ghost {
    min-height: 68px;
  }

  .hero__visual {
    min-height: 640px;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
  }

  .section-heading--split,
  .standard__grid,
  .pricing__grid,
  .faq__grid,
  .contact__grid,
  .legal-page__content {
    grid-template-columns: 1fr;
  }

  .section-heading--split {
    gap: 28px;
  }

  .section-heading--split > p {
    max-width: 640px;
  }

  .diagnosis__layout {
    grid-template-columns: 1fr;
  }

  .diagnosis-result {
    position: relative;
    top: auto;
    min-height: 390px;
  }

  .service-card {
    grid-column: span 6;
  }

  .service-card--feature {
    grid-column: span 12;
  }

  .service-card--feature + .service-card,
  .service-card--feature + .service-card + .service-card {
    grid-column: span 6;
  }

  .standard__grid {
    gap: 70px;
  }

  .standard__intro,
  .faq__intro,
  .legal-page__aside {
    position: relative;
    top: auto;
  }

  .standard__intro > p:last-child {
    max-width: 640px;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .project--wide {
    grid-row: auto;
  }

  .project--tall .project__image {
    aspect-ratio: 1.4 / 1;
  }

  .process-step {
    min-height: 370px;
    padding-inline: 24px;
  }

  .pricing__grid {
    gap: 65px;
  }

  .area__grid {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .area__map {
    min-height: 690px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .area__copy {
    padding: 90px 0;
  }

  .promise-card {
    min-height: 350px;
    padding: 24px;
  }

  .promise-card svg {
    margin-top: 58px;
  }

  .faq__grid {
    gap: 64px;
  }

  .contact::before {
    display: none;
  }

  .contact__grid {
    gap: 70px;
  }

  .quote-form {
    max-width: 700px;
  }

  .site-footer {
    padding-bottom: 94px;
  }

  .site-footer__top {
    grid-template-columns: 1fr auto;
  }

  .site-footer__top > p {
    display: none;
  }

  .site-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-footer__bottom {
    grid-template-columns: 1fr auto;
  }

  .site-footer__bottom p:nth-child(2) {
    display: none;
  }

  .mobile-actions {
    position: fixed;
    z-index: 85;
    right: 10px;
    bottom: max(10px, env(safe-area-inset-bottom));
    left: 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    padding: 5px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(13, 14, 11, 0.92);
    color: var(--white);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(16px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(100% + 20px));
    visibility: hidden;
    transition:
      opacity 220ms ease,
      transform 320ms var(--ease),
      visibility 0s linear 320ms;
  }

  .mobile-actions.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
    transition-delay: 0s;
  }

  body.menu-open .mobile-actions {
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(100% + 20px));
    visibility: hidden;
  }

  .mobile-actions a {
    display: flex;
    min-height: 52px;
    gap: 10px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-size: 0.73rem;
    font-weight: 780;
  }

  .mobile-actions a:first-child {
    background: var(--lime);
    color: var(--ink);
  }

  .mobile-actions a:last-child span {
    font-size: 1rem;
  }

  .mobile-actions svg {
    width: 19px;
  }

  .legal-page__content {
    gap: 38px;
  }
}

@media (max-width: 640px) {
  :root {
    --shell: calc(100% - 28px);
    --radius-md: 18px;
  }

  .section {
    padding-block: 78px;
  }

  .utility-bar {
    height: 34px;
  }

  .utility-bar__inner {
    font-size: 0.58rem;
  }

  .utility-bar__contact {
    gap: 0;
  }

  .brand__mark {
    width: 38px;
    height: 38px;
  }

  .brand__word {
    font-size: 0.76rem;
  }

  .brand__word strong {
    font-size: 1rem;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .section-heading {
    margin-bottom: 50px;
  }

  .section-heading h2,
  .standard h2,
  .pricing h2,
  .area h2,
  .faq h2,
  .contact h2 {
    font-size: clamp(2.85rem, 13.8vw, 4.8rem);
  }

  .kicker,
  .eyebrow {
    margin-bottom: 20px;
    font-size: 0.61rem;
  }

  .hero__copy {
    min-height: auto;
    padding: 66px 0 70px;
  }

  .hero .eyebrow {
    margin-bottom: 30px;
  }

  .hero h1 {
    margin-bottom: 27px;
    font-size: clamp(3.8rem, 17vw, 5.7rem);
    line-height: 0.86;
  }

  .hero__lead {
    margin-bottom: 30px;
    font-size: 0.93rem;
  }

  .hero__actions {
    width: 100%;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .button--live,
  .button--ghost {
    justify-content: space-between;
  }

  .hero__proof {
    display: grid;
    gap: 10px;
  }

  .hero__visual {
    min-height: 510px;
  }

  .availability-card {
    top: 14px;
    right: 14px;
    width: calc(100% - 28px);
  }

  .hero__caption {
    right: 15px;
    bottom: 15px;
    left: 15px;
  }

  .problem-grid {
    grid-template-columns: 1fr;
  }

  .problem-card {
    min-height: 220px;
    padding: 23px;
  }

  .diagnosis-result {
    min-height: 400px;
    padding: 28px;
  }

  .diagnosis-result__eyebrow {
    top: 28px;
    left: 28px;
  }

  .diagnosis-result__glyph {
    top: 54px;
    right: 30px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card--feature,
  .service-card--feature + .service-card,
  .service-card--feature + .service-card + .service-card {
    min-height: 370px;
    grid-column: 1;
    padding: 26px;
  }

  .service-card--feature {
    min-height: 500px;
  }

  .standard__grid {
    gap: 50px;
  }

  .standard-row {
    min-height: 190px;
    grid-template-columns: 35px 1fr;
    gap: 14px;
  }

  .standard-row > svg {
    display: none;
  }

  .project--wide .project__image,
  .project--tall .project__image {
    aspect-ratio: 0.95 / 1;
  }

  .project__meta,
  .project--tall .project__meta {
    grid-template-columns: 1fr auto;
    padding: 22px;
  }

  .project__meta > p,
  .project--tall .project__meta > p {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .project-note {
    min-height: 450px;
    padding: 26px;
  }

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

  .process-step {
    min-height: 300px;
    padding: 24px 0 35px 18px;
    border-right: 0;
  }

  .process-step__number {
    margin-bottom: 65px;
  }

  .price-row {
    min-height: 112px;
    grid-template-columns: 1fr;
    gap: 8px;
    align-content: center;
  }

  .price-row > div {
    gap: 12px;
  }

  .price-row strong {
    padding-left: 44px;
  }

  .area__map {
    min-height: 520px;
    margin-inline: -14px;
  }

  .map-ring--one {
    width: 150px;
    height: 150px;
  }

  .map-ring--two {
    width: 290px;
    height: 290px;
  }

  .map-ring--three {
    width: 440px;
    height: 440px;
  }

  .map-distance {
    top: calc(50% - 220px);
  }

  .map-city--olesnica {
    right: 2%;
  }

  .map-city--sroda {
    left: 2%;
  }

  .map-city--strzelin {
    right: 18%;
  }

  .area__copy {
    padding: 74px 0;
  }

  .promise-grid {
    grid-template-columns: 1fr;
  }

  .promise-card {
    min-height: 320px;
  }

  .promise-card svg {
    margin: 52px 0 36px;
  }

  .faq-list summary {
    min-height: 96px;
    font-size: 1rem;
  }

  .faq-list details p {
    padding-right: 0;
  }

  .contact__grid {
    gap: 55px;
  }

  .quote-form {
    margin-inline: -4px;
    padding: 26px 22px;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-call {
    font-size: 1.8rem;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .site-footer__bottom {
    grid-template-columns: 1fr auto;
  }

  .legal-page {
    padding-top: 42px;
  }

  .legal-page__back {
    margin-bottom: 50px;
  }

  .legal-page__header {
    margin-bottom: 55px;
  }

  .legal-page__header h1 {
    font-size: clamp(3rem, 15vw, 5rem);
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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