@font-face {
  font-family: "Archivo";
  src: url("../fonts/archivo-latin-wght-normal.woff2") format("woff2-variations");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --black: #080a08;
  --black-soft: #0f120f;
  --surface: #151815;
  --surface-2: #1a1e1a;
  --line: rgba(255, 255, 255, .11);
  --white: #f7f8f5;
  --muted: #b6bcb2;
  --muted-dark: #62685f;
  --green: #c6ff00;
  --orange: #ff7717;
  --cyan: #3fd1ff;
  --pink: #ff4d72;
  --yellow: #ffd400;
  --radius: 20px;
  --radius-sm: 12px;
  --container: 1180px;
  --shadow: 0 28px 80px rgba(0, 0, 0, .28);
  --card-shadow: 0 18px 42px rgba(0, 0, 0, .16);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: "Archivo", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

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

::selection {
  background: var(--green);
  color: var(--black);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.screen-reader-text,
.skip-link:not(:focus),
.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link:focus {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--green);
  color: var(--black);
  font-weight: 800;
}

.section {
  padding: 112px 0;
  position: relative;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--green);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 28px;
  height: 2px;
  background: currentColor;
}

.eyebrow-dark {
  color: #2f3b10;
}

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

h1,
h2,
h3,
strong {
  text-wrap: balance;
}

h1 {
  max-width: 790px;
  margin-bottom: 28px;
  font-size: clamp(3.25rem, 6vw, 6.4rem);
  font-weight: 790;
  letter-spacing: -.045em;
  line-height: .96;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.35rem, 4.5vw, 4.75rem);
  font-weight: 760;
  letter-spacing: -.04em;
  line-height: 1.04;
}

h1 em,
h2 em {
  color: var(--green);
  font-style: normal;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 14px 22px;
  border: 1px solid var(--green);
  border-radius: 999px;
  background: var(--green);
  color: var(--black);
  cursor: pointer;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .04em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  background: #d7ff43;
  border-color: #d7ff43;
}

.button-outline {
  border-color: rgba(255, 255, 255, .28);
  background: transparent;
  color: var(--white);
}

.button-outline:hover,
.button-outline:focus-visible {
  border-color: var(--green);
  background: transparent;
  color: var(--green);
}

.button-dark {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}

.button-dark:hover,
.button-dark:focus-visible {
  border-color: #1c2417;
  background: #1c2417;
  color: var(--green);
}

.button-small {
  min-height: 42px;
  padding: 11px 18px;
  font-size: .68rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--green);
  color: var(--white);
  font-size: .83rem;
  font-weight: 850;
  letter-spacing: .03em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link span {
  color: var(--green);
  transition: transform .2s ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.text-link-dark {
  border-color: #2e3b0f;
  color: var(--black);
}

.text-link-dark span {
  color: #2e3b0f;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(8, 10, 8, .94);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  flex: 0 0 auto;
  color: var(--white);
  line-height: 1;
  text-decoration: none;
}

.brand-word {
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: -.055em;
}

.brand-word span {
  color: var(--green);
}

.brand small {
  margin-top: 5px;
  color: var(--orange);
  font-size: .45rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.brand-logo-image {
  width: 166px;
  height: auto;
}

.brand-logo-footer {
  width: 210px;
}

.custom-logo-link {
  display: block;
}

.custom-logo {
  width: auto;
  max-width: 155px;
  max-height: 48px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-list a {
  color: #d8dcd5;
  font-size: .72rem;
  font-weight: 750;
  letter-spacing: .025em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .2s ease;
}

.nav-list a:hover,
.nav-list a:focus-visible {
  color: var(--green);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.nav-toggle > span:not(.screen-reader-text) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

.hero {
  position: relative;
  min-height: 790px;
  padding: 140px 0 72px;
  overflow: hidden;
}

.hero::after {
  position: absolute;
  right: -12%;
  bottom: -40%;
  width: 700px;
  height: 700px;
  border: 1px solid rgba(198, 255, 0, .08);
  border-radius: 50%;
  content: "";
}

.hero-glow {
  position: absolute;
  top: -180px;
  left: 55%;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(198, 255, 0, .1);
  filter: blur(140px);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, .88fr);
  gap: 72px;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-lead {
  max-width: 660px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(1.06rem, 1.5vw, 1.28rem);
  line-height: 1.65;
}

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

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  padding: 0;
  margin: 30px 0 0;
  color: #d6dbd2;
  font-size: .77rem;
  font-weight: 700;
  list-style: none;
}

.hero-proof li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-proof li::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.hero-visual {
  position: relative;
  z-index: 2;
  width: min(100%, 460px);
  justify-self: end;
}

.hero-photo-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-photo-frame::after,
.concept-image::after,
.technology-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, .48));
  content: "";
  pointer-events: none;
}

.hero-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card {
  position: absolute;
  z-index: 2;
  display: flex;
  min-width: 200px;
  flex-direction: column;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 14px;
  background: rgba(13, 16, 13, .94);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .35);
  backdrop-filter: blur(12px);
}

.hero-card strong {
  font-size: .85rem;
  letter-spacing: .015em;
}

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

.hero-card-top {
  top: 12%;
  left: -62px;
}

.hero-card-bottom {
  right: -28px;
  bottom: 12%;
  min-width: 228px;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.status-dot {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(198, 255, 0, .12);
}

.vibeon-icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.card-icon,
.operation-icon {
  display: inline-grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(198, 255, 0, .28);
  border-radius: 13px;
  background: rgba(198, 255, 0, .08);
  color: var(--green);
}

.card-icon svg,
.operation-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-heading,
.vibe-meta,
.process-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.trust-strip {
  border-block: 1px solid var(--line);
  background: var(--black-soft);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trust-grid > div {
  display: flex;
  min-height: 108px;
  align-items: center;
  gap: 16px;
  padding: 20px 26px;
  border-right: 1px solid var(--line);
}

.trust-grid > div:first-child {
  border-left: 1px solid var(--line);
}

.trust-icon {
  display: inline-grid;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 12px;
  background: rgba(198, 255, 0, .08);
  color: var(--green);
}

.trust-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-grid p {
  margin: 0;
}

.trust-grid strong {
  display: block;
  font-size: .94rem;
}

.trust-grid small {
  display: block;
  color: var(--muted);
  font-size: .73rem;
}

.problem-section {
  padding-bottom: 0;
}

.split-heading {
  display: grid;
  align-items: end;
  grid-template-columns: 1.15fr .85fr;
  gap: 80px;
}

.split-heading p {
  max-width: 510px;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 1.03rem;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.problem-card {
  position: relative;
  min-height: 0;
  padding: 26px 28px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, .025), transparent 55%), var(--surface);
  box-shadow: var(--card-shadow);
  overflow: hidden;
}

.problem-card::before,
.benefit-card::before {
  position: absolute;
  top: 0;
  right: 26px;
  left: 26px;
  height: 2px;
  background: linear-gradient(90deg, var(--green), transparent);
  content: "";
  opacity: .6;
}

.card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: .66rem;
  font-weight: 850;
  letter-spacing: .12em;
}

.problem-card .card-heading {
  margin-bottom: 24px;
}

.problem-card h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

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

.problem-card-highlight {
  border-color: var(--green);
  background: var(--green);
  color: var(--black);
}

.problem-card-highlight::before {
  background: linear-gradient(90deg, var(--black), transparent);
}

.problem-card-highlight .card-number {
  color: var(--black);
  opacity: .62;
}

.problem-card-highlight .card-icon {
  border-color: rgba(8, 10, 8, .2);
  background: rgba(8, 10, 8, .08);
  color: var(--black);
}

.problem-card-highlight p {
  color: #28300d;
}

.concept-panel {
  display: grid;
  min-height: 620px;
  grid-template-columns: 1.1fr .9fr;
  margin-top: 88px;
  border-radius: 28px 28px 0 0;
  background: #eef2e8;
  color: var(--black);
  overflow: hidden;
}

.concept-copy {
  align-self: center;
  padding: 70px;
}

.concept-copy h2 {
  font-size: clamp(2.15rem, 4vw, 4rem);
}

.concept-copy h2 em {
  color: #3b4a12;
}

.concept-copy > p {
  color: #52594e;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  font-size: .9rem;
  font-weight: 750;
}

.check-list li::before {
  position: absolute;
  top: .5em;
  left: 0;
  width: 14px;
  height: 8px;
  border-bottom: 2px solid #4b6206;
  border-left: 2px solid #4b6206;
  content: "";
  transform: rotate(-45deg);
}

.concept-image {
  position: relative;
  min-height: 560px;
}

.concept-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process-section {
  background: var(--black-soft);
}

.section-heading {
  max-width: 790px;
  margin-bottom: 56px;
}

.section-heading > p {
  max-width: 610px;
  color: var(--muted);
  font-size: 1.03rem;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.process-step {
  position: relative;
  min-height: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(155deg, rgba(255, 255, 255, .035), transparent 58%), var(--surface);
  box-shadow: var(--card-shadow);
  transition: border-color .2s ease, transform .2s ease;
}

.process-step:hover {
  border-color: rgba(198, 255, 0, .4);
  transform: translateY(-3px);
}

.process-step:not(:last-child)::after {
  position: absolute;
  z-index: 2;
  top: 40px;
  right: -10px;
  width: 7px;
  height: 7px;
  border-top: 1px solid var(--green);
  border-right: 1px solid var(--green);
  background: var(--black-soft);
  content: "";
  transform: rotate(45deg);
}

.process-meta {
  margin-bottom: 22px;
}

.step-number {
  color: var(--green);
  font-size: .66rem;
  font-weight: 850;
  letter-spacing: .12em;
}

.process-step strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.08rem;
  letter-spacing: -.015em;
}

.process-step p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: .83rem;
}

.vibes-section {
  overflow: hidden;
}

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

.vibe-card {
  position: relative;
  min-height: 0;
  padding: 28px 30px 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, .035), transparent 55%), var(--surface);
  box-shadow: var(--card-shadow);
  overflow: hidden;
}

.vibe-card::after {
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 190px;
  height: 190px;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "";
  opacity: .12;
}

.vibe-meta {
  margin-bottom: 28px;
}

.vibe-meta .card-icon {
  border-color: currentColor;
  background: transparent;
  color: currentColor;
  opacity: .92;
}

.vibe-index {
  color: currentColor;
  font-size: .66rem;
  font-weight: 850;
  letter-spacing: .12em;
}

.vibe-card h3 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: clamp(1.55rem, 2.5vw, 2.35rem);
  letter-spacing: -.04em;
}

.vibe-card h3 strong {
  color: currentColor;
}

.vibe-card p {
  max-width: 510px;
  color: var(--muted);
}

.vibe-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.vibe-card li {
  padding: 7px 11px;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: currentColor;
  font-size: .66rem;
  font-weight: 750;
}

.vibe-performance { color: var(--green); }
.vibe-health { color: var(--pink); }
.vibe-office { color: var(--cyan); }
.vibe-convenience { color: var(--yellow); }

.benefit-section {
  border-block: 1px solid var(--line);
  background: var(--black-soft);
}

.benefit-layout {
  display: grid;
  align-items: start;
  grid-template-columns: .85fr 1.15fr;
  gap: 80px;
}

.benefit-copy {
  position: sticky;
  top: 120px;
}

.benefit-copy p {
  max-width: 500px;
  margin-bottom: 30px;
  color: var(--muted);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.benefit-card {
  position: relative;
  min-height: 0;
  padding: 24px 26px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, .025), transparent 55%), var(--surface);
  box-shadow: var(--card-shadow);
}

.benefit-card .card-heading {
  margin-bottom: 22px;
}

.benefit-card h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
}

.benefit-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: .88rem;
}

.operation-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.operation-track article {
  position: relative;
  display: grid;
  min-height: 0;
  grid-template-columns: 48px 1fr;
  align-content: start;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .025), transparent 55%), var(--surface);
  box-shadow: var(--card-shadow);
  transition: border-color .2s ease, transform .2s ease;
}

.operation-track article:hover {
  border-color: rgba(198, 255, 0, .45);
  transform: translateY(-3px);
}

.operation-track .operation-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
}

.operation-track small {
  display: block;
  margin-bottom: 2px;
  color: var(--green);
  font-size: .62rem;
  font-weight: 850;
  letter-spacing: .12em;
}

.operation-track strong {
  display: block;
  margin: 0 0 8px;
  font-size: 1.03rem;
  letter-spacing: -.015em;
}

.operation-track p {
  margin: 0;
  color: var(--muted);
  font-size: .84rem;
  line-height: 1.55;
}

.operation-track article:last-child {
  border-color: rgba(198, 255, 0, .34);
  background: #161b11;
}

.technology-section {
  background: var(--black-soft);
}

.technology-layout {
  display: grid;
  align-items: center;
  grid-template-columns: .82fr 1.18fr;
  gap: 86px;
}

.technology-image {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  overflow: hidden;
}

.technology-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.technology-copy > p {
  max-width: 610px;
  color: var(--muted);
}

.technology-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 36px;
}

.technology-list div {
  display: flex;
  min-height: 0;
  align-items: flex-start;
  gap: 15px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
}

.technology-list .card-icon {
  width: 40px;
  height: 40px;
  border-radius: 11px;
}

.technology-list p {
  margin: 0;
}

.technology-list strong {
  display: block;
  margin-bottom: 5px;
  font-size: .9rem;
}

.technology-list p > span {
  display: block;
  color: var(--muted);
  font-size: .78rem;
}

.technology-list .card-icon {
  color: var(--green);
}

.coverage-section {
  padding-bottom: 0;
}

.coverage-panel {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 72px;
  padding: 70px;
  border-radius: 28px 28px 0 0;
  background: var(--green);
  color: var(--black);
}

.coverage-panel h2 em {
  color: #3b4a12;
}

.coverage-panel p {
  max-width: 620px;
  margin-bottom: 0;
  color: #36400f;
}

.city-list {
  display: grid;
  align-content: center;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.city-list li {
  position: relative;
  padding: 13px 14px 13px 34px;
  border: 1px solid rgba(8, 10, 8, .18);
  border-radius: 10px;
  font-size: .82rem;
  font-weight: 780;
}

.city-list li::before {
  position: absolute;
  top: 50%;
  left: 14px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
  transform: translateY(-50%);
}

.faq-section {
  background: #eef2e8;
  color: var(--black);
}

.faq-layout {
  display: grid;
  align-items: start;
  grid-template-columns: .78fr 1.22fr;
  gap: 92px;
}

.faq-heading {
  position: sticky;
  top: 120px;
}

.faq-heading .eyebrow {
  color: #40510d;
}

.faq-heading h2 em {
  color: #40510d;
}

.faq-heading p {
  color: var(--muted-dark);
}

.faq-list {
  border-top: 1px solid rgba(8, 10, 8, .18);
}

.faq-list details {
  border-bottom: 1px solid rgba(8, 10, 8, .18);
}

.faq-list summary {
  position: relative;
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 4px;
  cursor: pointer;
  font-size: 1.04rem;
  font-weight: 780;
  list-style: none;
}

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

.faq-list summary span {
  position: relative;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  border: 1px solid rgba(8, 10, 8, .25);
  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(--black);
  content: "";
  transform: translate(-50%, -50%);
}

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

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

.faq-list details p {
  max-width: 700px;
  padding: 0 48px 26px 4px;
  margin-bottom: 0;
  color: var(--muted-dark);
}

.contact-section {
  background: var(--black);
}

.contact-panel {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 72px;
  padding: 72px;
  border-radius: 28px;
  background: var(--green);
  color: var(--black);
}

.contact-copy h2 em {
  color: #39470d;
}

.contact-copy > p {
  color: #35400e;
  font-size: 1.02rem;
}

.contact-expectation {
  padding: 20px 0;
  margin: 30px 0;
  border-block: 1px solid rgba(8, 10, 8, .18);
}

.contact-expectation strong {
  display: block;
  margin-bottom: 12px;
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.contact-expectation ol {
  display: grid;
  gap: 8px;
  padding-left: 20px;
  margin: 0;
  color: #36400f;
  font-size: .85rem;
}

.contact-form-wrap {
  padding: 34px;
  border-radius: 20px;
  background: #f9faf6;
  box-shadow: 0 25px 70px rgba(46, 61, 0, .18);
}

.contact-form {
  display: grid;
  gap: 16px;
}

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

.contact-form label {
  display: grid;
  gap: 7px;
}

.contact-form label > span {
  color: #30352e;
  font-size: .72rem;
  font-weight: 780;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 49px;
  padding: 12px 13px;
  border: 1px solid #d7dbd2;
  border-radius: 9px;
  outline: 0;
  background: #fff;
  color: var(--black);
  transition: border-color .2s ease, box-shadow .2s ease;
}

.contact-form textarea {
  min-height: 110px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #758f20;
  box-shadow: 0 0 0 3px rgba(117, 143, 32, .14);
}

.consent-field {
  display: flex !important;
  align-items: flex-start;
  grid-template-columns: 18px 1fr;
  gap: 10px !important;
}

.consent-field input {
  width: 17px;
  min-height: 17px;
  margin-top: 3px;
  accent-color: #4e650c;
}

.consent-field span {
  color: #555b52 !important;
  font-weight: 500 !important;
  line-height: 1.5;
}

.consent-field a {
  color: #34460a;
  font-weight: 750;
}

.contact-form .button {
  width: 100%;
  margin-top: 2px;
}

.form-microcopy {
  display: block;
  color: #6b7168;
  font-size: .66rem;
  text-align: center;
}

.form-notice {
  padding: 12px 14px;
  margin-bottom: 16px;
  border-radius: 9px;
  font-size: .8rem;
  font-weight: 700;
}

.form-notice-success {
  background: #e6f3c2;
  color: #304207;
}

.form-notice-error {
  background: #ffe5e8;
  color: #7a1825;
}

.site-footer {
  padding: 72px 0 24px;
  border-top: 1px solid var(--line);
  background: var(--black-soft);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr .7fr .7fr;
  gap: 64px;
  padding-bottom: 58px;
}

.brand-footer {
  margin-bottom: 18px;
}

.footer-main > div:first-child p {
  max-width: 390px;
  color: var(--muted);
  font-size: .86rem;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-links strong {
  margin-bottom: 8px;
  color: var(--green);
  font-size: .7rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-links a,
.footer-links span {
  color: var(--muted);
  font-size: .8rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: #7f857c;
  font-size: .68rem;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 900;
  display: flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 12px 35px rgba(0, 0, 0, .32);
  transition: transform .2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
}

.whatsapp-float svg {
  width: 28px;
  fill: #fff;
}

.is-observed .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}

.is-observed .reveal.is-visible {
  opacity: 1;
  transform: none;
}

.content-area {
  min-height: 70vh;
  padding: 140px 0 100px;
}

.content-narrow {
  width: min(calc(100% - 40px), 820px);
  margin-inline: auto;
}

.entry-title {
  font-size: clamp(2.4rem, 6vw, 4.8rem);
}

.entry-content {
  color: #d1d5ce;
}

.entry-content a {
  color: var(--green);
}

.entry-content > * + * {
  margin-top: 1.35em;
}

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

.post-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.post-card a {
  text-decoration: none;
}

.post-card h2 {
  font-size: 1.5rem;
  letter-spacing: -.035em;
}

.post-card p {
  color: var(--muted);
}

@media (max-width: 1080px) {
  .site-nav { gap: 18px; }
  .nav-list { gap: 16px; }
  .hero-grid { gap: 42px; }
  .hero-card-top { left: -20px; }
  .hero-card-bottom { right: -12px; }
  .concept-copy { padding: 48px; }
  .process-step { padding: 22px 18px; }
  .benefit-layout,
  .technology-layout,
  .faq-layout { gap: 52px; }
  .coverage-panel,
  .contact-panel { padding: 52px; }
}

@media (max-width: 940px) {
  .section { padding: 88px 0; }
  .nav-toggle { display: block; }
  .site-nav {
    position: fixed;
    top: 78px;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    align-items: stretch;
    padding: 34px 20px;
    background: rgba(8, 10, 8, .98);
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  }
  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: none;
  }
  .nav-list {
    display: grid;
    gap: 0;
  }
  .nav-list li { border-bottom: 1px solid var(--line); }
  .nav-list a {
    display: block;
    padding: 18px 4px;
    font-size: 1rem;
  }
  .site-nav .button { margin-top: 12px; }
  .nav-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .hero { min-height: auto; padding-top: 126px; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 58px;
  }
  .hero-visual { width: min(86%, 520px); justify-self: center; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid > div,
  .trust-grid > div:first-child {
    min-height: 104px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }
  .trust-grid > div:last-child { border-bottom: 0; }
  .split-heading,
  .benefit-layout,
  .technology-layout,
  .faq-layout,
  .contact-panel { grid-template-columns: 1fr; }
  .benefit-copy,
  .faq-heading { position: static; }
  .problem-grid { grid-template-columns: 1fr 1fr; }
  .problem-card-highlight { grid-column: 1 / -1; }
  .concept-panel { grid-template-columns: 1fr; }
  .concept-image { min-height: 440px; }
  .process-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-step:last-child { grid-column: 1 / -1; }
  .process-step::after { display: none; }
  .operation-track { grid-template-columns: repeat(2, 1fr); }
  .coverage-panel { grid-template-columns: 1fr; }
  .contact-panel { gap: 48px; }
  .footer-main { grid-template-columns: 1.2fr .8fr .8fr; gap: 32px; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 72px 0; }
  h1 { font-size: clamp(3rem, 14vw, 4.5rem); }
  h2 { font-size: clamp(2.15rem, 10vw, 3.35rem); }
  .eyebrow { margin-bottom: 17px; font-size: .64rem; }
  .header-inner { min-height: 70px; }
  .site-nav { top: 70px; }
  .hero { padding: 112px 0 54px; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .hero-proof { display: grid; }
  .hero-visual { width: 92%; }
  .hero-card { min-width: 175px; padding: 13px 14px; }
  .hero-card-top { top: 8%; left: -10px; }
  .hero-card-bottom { right: -10px; bottom: 8%; min-width: 205px; }
  .trust-grid > div { padding: 20px 18px; }
  .split-heading { grid-template-columns: 1fr; gap: 14px; }
  .problem-grid { grid-template-columns: 1fr; }
  .problem-card-highlight { grid-column: auto; }
  .problem-card { padding: 23px; }
  .concept-panel { width: 100%; margin-top: 64px; border-radius: 0; }
  .concept-copy { padding: 52px 22px; }
  .concept-image { min-height: 380px; }
  .section-heading { margin-bottom: 40px; }
  .process-list { grid-template-columns: 1fr; }
  .process-step,
  .process-step:last-child { grid-column: auto; padding: 22px; }
  .process-meta { margin-bottom: 18px; }
  .vibes-grid,
  .benefit-grid,
  .technology-list { grid-template-columns: 1fr; }
  .vibe-card { padding: 24px; }
  .vibe-meta { margin-bottom: 24px; }
  .benefit-layout { gap: 44px; }
  .benefit-card { padding: 23px; }
  .operation-track { grid-template-columns: 1fr; }
  .operation-track article {
    min-height: auto;
    padding: 24px;
  }
  .technology-layout { gap: 42px; }
  .technology-image { max-height: 540px; }
  .coverage-section { padding-bottom: 0; }
  .coverage-panel { width: 100%; gap: 34px; padding: 52px 22px; border-radius: 0; }
  .city-list { grid-template-columns: 1fr; }
  .faq-list summary { font-size: .94rem; }
  .faq-list details p { padding-right: 10px; }
  .contact-panel { width: 100%; padding: 52px 18px; border-radius: 0; }
  .contact-form-wrap { padding: 24px 18px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-main > div:first-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
  .posts-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
  .is-observed .reveal { opacity: 1; transform: none; }
}
