:root {
  --ink: #171310;
  --ink-2: #241f1a;
  --paper: #faf7f2;
  --paper-2: #f1ebe2;
  --line: #e3dccf;
  --muted: #6f665c;
  --accent: #e8501f;
  --accent-dk: #c73f14;
  --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.c { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

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

.eyebrow {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: inherit;
  font-weight: 900;
  text-decoration: none;
  border-radius: 999px;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn svg { width: 18px; height: 18px; stroke: currentColor; stroke-width: 2.5; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.btn-lg { padding: 16px 30px; font-size: 17px; }
.btn-sm { padding: 10px 20px; font-size: 14px; }
.bp { background: var(--accent); color: var(--white); }
.bp:hover { background: var(--accent-dk); }
.bh { background: rgba(255, 255, 255, 0.12); color: var(--white); border: 1px solid rgba(255, 255, 255, 0.35); backdrop-filter: blur(4px); }
.bh:hover { background: rgba(255, 255, 255, 0.22); }

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 18px 0;
  transition: background 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease;
  color: var(--white);
}
.nav.solid {
  background: rgba(23, 19, 16, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
  padding: 12px 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  font-weight: 900;
  font-size: 20px;
  letter-spacing: -0.01em;
}
.nav-logo svg { width: 30px; height: 30px; color: var(--accent); }
.nav-logo em { font-style: normal; color: var(--accent); }
.nav-links { display: flex; gap: 28px; }
.nav-links a {
  color: inherit;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  opacity: 0.85;
}
.nav-links a:hover { opacity: 1; }

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  background-color: var(--ink);
  background-image:
    url('/assets/img/hero-beagles.webp'),
    radial-gradient(1200px 600px at 70% 20%, #3a2c20 0%, var(--ink) 65%);
  background-size: cover, cover;
  background-position: center 42%, center;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23, 19, 16, 0.55) 0%, rgba(23, 19, 16, 0.15) 40%, rgba(23, 19, 16, 0.82) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 140px;
  padding-bottom: 96px;
}
.hero h1 {
  font-size: clamp(44px, 7.5vw, 92px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.02em;
  max-width: 13ch;
  margin: 18px 0 22px;
}
.hero h1 em { font-style: italic; color: var(--accent); }
.hsub {
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 400;
  max-width: 56ch;
  opacity: 0.92;
}
.hcta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.htrust { margin-top: 26px; font-size: 15px; font-weight: 700; opacity: 0.85; }

.feat { padding: 110px 0 40px; }
.feat-row {
  display: grid;
  grid-template-columns: 90px 1fr 200px;
  gap: 32px;
  padding: 56px 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.feat-row:first-child { border-top: 0; padding-top: 0; }
.feat-n {
  font-size: 15px;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: 0.1em;
  padding-top: 10px;
}
.feat-body h2 {
  font-size: clamp(28px, 3.6vw, 42px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin-bottom: 16px;
}
.feat-body p { font-size: 17px; color: var(--muted); max-width: 62ch; }
.feat-tag { display: flex; flex-wrap: wrap; gap: 8px; justify-content: flex-end; padding-top: 10px; }
.feat-tag span {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: var(--white);
}

.tech { background: var(--paper-2); }
.tech-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.tech-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--accent);
  border-radius: 16px;
  padding: 30px 28px;
}
.tech-card h3 {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.tech-card p { font-size: 15px; color: var(--muted); }

.quote {
  background: var(--ink);
  color: var(--paper);
  padding: 110px 0;
}
.quote blockquote p {
  font-size: clamp(26px, 3.8vw, 44px);
  font-weight: 900;
  font-style: italic;
  line-height: 1.25;
  letter-spacing: -0.01em;
  max-width: 26ch;
  margin-top: 26px;
}
.quote-sig { display: flex; align-items: center; gap: 16px; margin-top: 40px; }
.quote-sig img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; border: 2px solid var(--accent); }
.quote-sig strong { display: block; font-size: 17px; }
.quote-sig span { font-size: 14px; color: #b9ac9d; }

.sec { padding: 110px 0; }
.sh.ct { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.st {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 14px 0 16px;
}
.ss { font-size: 18px; color: var(--muted); }

.tbl-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
}
.tbl { width: 100%; border-collapse: collapse; min-width: 780px; }
.tbl th, .tbl td {
  padding: 16px 18px;
  text-align: left;
  font-size: 15px;
  border-top: 1px solid var(--line);
}
.tbl thead th {
  border-top: 0;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 20px;
}
.tbl tbody th { font-weight: 700; color: var(--muted); white-space: nowrap; }
.tbl .us { background: #fdf1eb; font-weight: 900; color: var(--ink); }
.tbl thead .us { color: var(--accent); border-top: 3px solid var(--accent); }
.tbl .y { color: #1d7a3e; font-weight: 700; }
.tbl .n { color: #a33; }
.tbl-note {
  margin-top: 18px;
  font-size: 13px;
  color: var(--muted);
  text-align: center;
}

.pricing { padding: 0 0 120px; }
.price-card {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  background: var(--ink);
  color: var(--paper);
  border-radius: 24px;
  overflow: hidden;
}
.price-main { padding: 56px; }
.price-main h3 {
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.price-v {
  font-size: clamp(64px, 8vw, 110px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 14px 0 18px;
}
.price-main p { color: #cfc4b6; max-width: 44ch; }
.price-side {
  background: var(--ink-2);
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}
.price-sub { font-size: 20px; font-weight: 700; color: #cfc4b6; }
.price-sub span { font-size: 44px; font-weight: 900; color: var(--paper); }
.price-side p { color: #cfc4b6; font-size: 15px; }
.price-side .btn { align-self: flex-start; margin-top: 8px; }

.foot { background: var(--paper-2); padding: 70px 0 36px; }
.foot-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: start;
}
.foot-logo { color: var(--ink); font-size: 18px; margin-bottom: 16px; }
.foot-grid p { font-size: 15px; color: var(--muted); max-width: 52ch; }
.foot-links { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.foot-links a {
  color: var(--ink);
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
}
.foot-links a:hover { color: var(--accent); }
.foot-legal {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
}

.rv { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.rv.in { opacity: 1; transform: none; }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .rv { opacity: 1; transform: none; transition: none; }
  .btn:hover { transform: none; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .feat-row { grid-template-columns: 1fr; gap: 14px; padding: 44px 0; }
  .feat-n { padding-top: 0; }
  .feat-tag { justify-content: flex-start; }
  .tech-grid { grid-template-columns: 1fr; }
  .price-card { grid-template-columns: 1fr; }
  .price-main, .price-side { padding: 40px 32px; }
  .price-side { border-left: 0; border-top: 1px solid rgba(255, 255, 255, 0.08); }
  .foot-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 560px) {
  .hero-inner { padding-top: 120px; padding-bottom: 72px; }
  .hcta .btn { width: 100%; justify-content: center; }
}
