:root {
  --ink: #14202b;
  --muted: #5a6a78;
  --paper: #f3f6f8;
  --fog: #e4ebf0;
  --line: #c5d2dc;
  --accent: #1f6f5b;
  --accent-deep: #145244;
  --accent-soft: rgba(31, 111, 91, 0.12);
  --steel: #2a4a66;
  --hero-scrim: linear-gradient(
    105deg,
    rgba(20, 32, 43, 0.82) 0%,
    rgba(20, 32, 43, 0.45) 48%,
    rgba(20, 32, 43, 0.18) 100%
  );
  --shadow: 0 20px 48px rgba(20, 32, 43, 0.1);
  --radius: 4px;
  --font-display: "Syne", "Avenir Next", sans-serif;
  --font-body: "Figtree", "Segoe UI", sans-serif;
  --wrap: 1120px;
  --header-h: 4.25rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(243, 246, 248, 0.92), rgba(228, 235, 240, 0.95)),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 47px,
      rgba(42, 74, 102, 0.04) 47px,
      rgba(42, 74, 102, 0.04) 48px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 47px,
      rgba(42, 74, 102, 0.04) 47px,
      rgba(42, 74, 102, 0.04) 48px
    ),
    var(--paper);
  font-family: var(--font-body);
  line-height: 1.65;
  font-size: 1.05rem;
}

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

a {
  color: var(--accent-deep);
}

a:hover {
  color: var(--steel);
}

h1,
h2,
h3,
.lede,
.hero__brand,
.site-footer__name {
  font-family: var(--font-display);
  letter-spacing: -0.03em;
  line-height: 1.12;
  font-weight: 700;
}

.main {
  min-height: 55vh;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.js-error {
  margin: 0;
  padding: 0.75rem 1.25rem;
  background: #f2d9d4;
  color: #7a2e22;
  text-align: center;
}

.wrap {
  width: min(100% - 2.5rem, var(--wrap));
  margin-inline: auto;
}

.wrap--narrow {
  width: min(100% - 2.5rem, 740px);
}

.section-title {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  margin: 0 0 0.75rem;
}

.lede {
  font-size: 1.2rem;
  color: var(--muted);
  font-weight: 600;
  max-width: 40rem;
}

.meta {
  color: var(--muted);
  font-size: 0.95rem;
}

.page-hero {
  padding: 4.5rem 0 2.5rem;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin: 0 0 1rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(243, 246, 248, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  width: min(100% - 2rem, var(--wrap));
  margin: 0 auto;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-header__skip {
  position: absolute;
  left: -999px;
}

.site-header__skip:focus {
  left: 1rem;
  top: 1rem;
  z-index: 50;
  background: var(--paper);
  padding: 0.4rem 0.65rem;
  border: 1px solid var(--line);
}

.site-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.site-header__mark {
  width: 1.55rem;
  height: 1.55rem;
  background:
    linear-gradient(135deg, var(--accent) 0 45%, transparent 45% 55%, var(--steel) 55%);
  border-radius: 3px;
  flex-shrink: 0;
}

.site-header__toggle {
  margin-left: auto;
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--line);
  background: var(--paper);
  cursor: pointer;
  border-radius: var(--radius);
}

.site-header__toggle-bar {
  display: block;
  height: 2px;
  width: 1.1rem;
  margin-inline: auto;
  background: var(--ink);
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.site-nav__list {
  list-style: none;
  display: flex;
  gap: 0.35rem 1.1rem;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.site-nav__link {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
}

.site-nav__link:hover,
.site-nav__link.is-active {
  color: var(--ink);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.2rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font: inherit;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--accent);
  color: #fff;
}

.btn--primary:hover {
  background: var(--accent-deep);
  color: #fff;
}

.btn--ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}

.btn--ghost:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.btn--veve {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.btn--veve:hover {
  background: var(--steel);
  color: #fff;
}

.btn--veve-footer {
  margin-top: 0.85rem;
}

/* Home hero — full bleed */
.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: grid;
  align-items: end;
  color: #f5f8fa;
  overflow: hidden;
}

.hero__image {
  position: absolute;
  inset: 0;
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroDrift 28s ease-in-out infinite alternate;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background: var(--hero-scrim);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(100% - 2.5rem, var(--wrap));
  margin: 0 auto;
  padding: 5rem 0 4rem;
}

.hero__brand {
  font-size: clamp(2.8rem, 8vw, 5.4rem);
  margin: 0 0 1rem;
  max-width: 14ch;
  animation: riseIn 0.9s ease both;
}

.hero__line {
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  max-width: 32rem;
  margin: 0 0 0.75rem;
  font-weight: 600;
  animation: riseIn 0.9s ease 0.12s both;
}

.hero__support {
  max-width: 34rem;
  margin: 0 0 1.75rem;
  color: rgba(245, 248, 250, 0.88);
  animation: riseIn 0.9s ease 0.22s both;
}

.hero__actions {
  animation: riseIn 0.9s ease 0.32s both;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroDrift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.1) translate3d(-1.5%, -1%, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__image img,
  .hero__brand,
  .hero__line,
  .hero__support,
  .hero__actions,
  [data-reveal] {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.band {
  padding: 4.5rem 0;
}

.band--fog {
  background: rgba(228, 235, 240, 0.65);
  border-block: 1px solid var(--line);
}

.offer-list {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 760px) {
  .offer-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .offer-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.offer {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}

.offer__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: var(--radius);
}

.offer__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.offer:hover .offer__media img {
  transform: scale(1.04);
}

.offer h3 {
  margin: 0;
  font-size: 1.2rem;
}

.offer h3 a {
  text-decoration: none;
  color: var(--ink);
}

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

.split {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 880px) {
  .split {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
  }
}

.media-frame {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
}

.quote-strip {
  border-left: 3px solid var(--accent);
  padding-left: 1.25rem;
  margin: 0;
}

.quote-strip p {
  margin: 0 0 0.75rem;
  font-size: 1.15rem;
}

.note-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 800px) {
  .note-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.note {
  padding: 1.25rem 0;
  border-top: 1px solid var(--line);
}

.note h3 {
  margin: 0.35rem 0 0.5rem;
  font-size: 1.15rem;
}

.note h3 a {
  color: var(--ink);
  text-decoration: none;
}

/* Prose / legal */
.prose {
  padding-bottom: 4rem;
}

.prose h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.prose h2 {
  margin-top: 2.2rem;
  font-size: 1.45rem;
}

.prose table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.prose th,
.prose td {
  border: 1px solid var(--line);
  padding: 0.65rem 0.75rem;
  text-align: left;
  vertical-align: top;
}

.prose th {
  background: var(--fog);
}

.checklist {
  padding-left: 1.2rem;
}

.checklist li {
  margin-bottom: 0.45rem;
}

.figure-full {
  margin: 1.5rem 0;
  overflow: hidden;
  border-radius: var(--radius);
}

.figure-full img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

.notice {
  background: var(--accent-soft);
  border: 1px solid rgba(31, 111, 91, 0.25);
  padding: 1rem 1.15rem;
  border-radius: var(--radius);
}

/* Pricing */
.fee-list {
  display: grid;
  gap: 0;
  margin: 2rem 0;
}

.fee-row {
  display: grid;
  gap: 0.35rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
}

@media (min-width: 720px) {
  .fee-row {
    grid-template-columns: 1.4fr 1fr auto;
    align-items: baseline;
    gap: 1.5rem;
  }
}

.fee-row__price {
  font-weight: 700;
  color: var(--accent-deep);
}

/* Reviews */
.review-list {
  display: grid;
  gap: 1.75rem;
  margin: 2rem 0 3rem;
}

.review {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.review blockquote {
  margin: 0 0 1rem;
  font-size: 1.08rem;
}

.review__meta {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.case-block {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

/* Roadmap timeline */
.timeline {
  margin: 2.5rem 0 0;
  padding: 0;
  list-style: none;
  border-left: 2px solid var(--line);
}

.timeline__item {
  position: relative;
  padding: 0 0 2rem 1.5rem;
}

.timeline__item::before {
  content: "";
  position: absolute;
  left: -0.4rem;
  top: 0.35rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--paper);
}

.timeline__item h3 {
  margin: 0 0 0.4rem;
  font-size: 1.2rem;
}

.faq-list {
  margin: 2rem 0 0;
}

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

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  font-family: var(--font-display);
}

.contact-block {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 700px) {
  .contact-block {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-card {
  padding: 1.5rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.5);
  border-radius: var(--radius);
}

.contact-card h2 {
  margin: 0 0 0.75rem;
  font-size: 1.2rem;
}

.contact-card p {
  margin: 0 0 0.5rem;
}

/* Footer */
.site-footer {
  margin-top: 3rem;
  background: var(--ink);
  color: rgba(243, 246, 248, 0.88);
  padding: 3.5rem 0 2rem;
}

.site-footer a {
  color: #d7e6ef;
}

.site-footer a:hover {
  color: #fff;
}

.site-footer__inner {
  width: min(100% - 2.5rem, var(--wrap));
  margin: 0 auto;
}

.site-footer__grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .site-footer__grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }
}

.site-footer__name {
  margin: 0 0 0.5rem;
  font-size: 1.45rem;
  color: #fff;
}

.site-footer__tagline {
  margin: 0;
  color: rgba(243, 246, 248, 0.72);
}

.site-footer__label {
  margin: 0 0 0.65rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(243, 246, 248, 0.55);
}

.site-footer__address {
  margin: 0 0 0.75rem;
}

.site-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__links li {
  margin-bottom: 0.4rem;
}

.site-footer__disclaimers {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  gap: 1rem;
}

.site-footer__disclaimer {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.55;
  color: rgba(243, 246, 248, 0.62);
}

.site-footer__copy {
  margin: 1.5rem 0 0;
  font-size: 0.85rem;
  color: rgba(243, 246, 248, 0.45);
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  inset: auto 1rem 1rem 1rem;
  z-index: 60;
}

.cookie-banner__panel {
  max-width: 520px;
  margin-left: auto;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.cookie-banner__title {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.cookie-banner__text {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

/* 404 */
.error-page {
  padding: 6rem 0;
  text-align: center;
}

.error-page h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin: 0 0 1rem;
}

/* Mobile nav */
@media (max-width: 880px) {
  .site-header__toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    margin: 0;
    padding: 1rem 1.25rem 1.5rem;
    background: rgba(243, 246, 248, 0.98);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .site-nav--open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav__list {
    flex-direction: column;
    gap: 0.75rem;
  }

  .site-nav__cta {
    width: 100%;
  }
}
