:root {
  --paper: #090b0a;
  --paper-2: #111413;
  --paper-3: #181c1a;
  --ink: #eef3ea;
  --ink-soft: #d4ddd0;
  --muted: #8b958c;
  --line: #2a322e;
  --pine: #00e8c4;
  --pine-deep: #00c4a6;
  --void: #04110d;
  --shadow: 0 0 0 1px rgb(238 243 234 / 0.08);
  --shadow-hover: 0 0 0 1px rgb(0 232 196 / 0.45);
  --sans: "Manrope", "Segoe UI", system-ui, sans-serif;
  --display: "Unbounded", "Manrope", system-ui, sans-serif;
}

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

html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

#r2b {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
}

#r2b a { color: inherit; text-decoration: none; }
#r2b img { max-width: 100%; display: block; }
#r2b button { font-family: inherit; }

#r2b h1, #r2b h2, #r2b h3 {
  font-family: var(--display);
  text-wrap: balance;
  margin: 0;
}

#r2b p { text-wrap: pretty; margin: 0; }

#r2b ::selection { background: var(--pine); color: var(--void); }

#r2b .photo { outline: 1px solid rgb(238 243 234 / 0.12); outline-offset: -1px; }

#r2b .wrap {
  width: min(72rem, calc(100% - 2rem));
  margin-inline: auto;
}

@media (min-width: 640px) {
  #r2b .wrap { width: min(72rem, calc(100% - 3rem)); }
}

#r2b header.top {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

#r2b .top-inner {
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

#r2b .logo { display: flex; align-items: center; gap: 0.75rem; }
#r2b .logo-mark {
  display: flex;
  height: 2.25rem;
  min-width: 2.25rem;
  align-items: center;
  justify-content: center;
  padding: 0 0.35rem;
  border-radius: 0.25rem;
  background: var(--pine);
  color: var(--void);
  font-family: var(--display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
#r2b .logo-name {
  font-family: var(--display);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
#r2b .logo-sub {
  margin-top: 0.2rem;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

#r2b nav.desk { display: none; gap: 0.15rem; }
@media (min-width: 1024px) {
  #r2b nav.desk { display: flex; }
  #r2b .menu-btn { display: none !important; }
}
#r2b nav.desk a {
  border-radius: 0.25rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  color: var(--muted);
}
#r2b nav.desk a:hover { background: var(--paper-3); color: var(--ink); }
#r2b nav.desk a.active { background: var(--pine); color: var(--void); }

#r2b .header-cta { display: none; }
@media (min-width: 640px) {
  #r2b .header-cta { display: inline-flex; }
}

#r2b .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.75rem;
  padding: 0 1.25rem;
  border: 0;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  text-decoration: none;
}
#r2b .btn-lg { min-height: 3rem; padding: 0 1.5rem; }
#r2b .btn-pine { background: var(--pine); color: var(--void); }
#r2b .btn-pine:hover { background: var(--pine-deep); }
#r2b .btn-ink { background: var(--ink); color: var(--void); }
#r2b .btn-outline {
  background: transparent;
  color: var(--ink);
  box-shadow: var(--shadow);
}
#r2b .btn-outline:hover { background: var(--paper-3); }
#r2b .btn-icon { width: 2.75rem; padding: 0; }

#r2b .hero {
  position: relative;
  isolation: isolate;
  min-height: min(88svh, 44rem);
  overflow: hidden;
  background: var(--paper);
}
#r2b .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
#r2b .hero-dim {
  position: absolute;
  inset: 0;
  background:
    rgb(4 17 13 / 0.35),
    linear-gradient(to top, var(--paper) 0%, rgb(9 11 10 / 0.8) 45%, transparent 100%),
    linear-gradient(to right, var(--paper) 0%, rgb(9 11 10 / 0.55) 50%, transparent 100%);
}
#r2b .hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: min(88svh, 44rem);
  padding: 6rem 0 6rem;
}
@media (min-width: 640px) {
  #r2b .hero-content { padding-bottom: 3.5rem; }
}

#r2b .wound { max-width: 36rem; font-size: 0.875rem; color: var(--muted); }
#r2b .hero h1 {
  margin-top: 0.75rem;
  max-width: 56rem;
  font-size: 2.25rem;
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: -0.03em;
}
@media (min-width: 640px) { #r2b .hero h1 { font-size: 3.75rem; } }
@media (min-width: 1024px) { #r2b .hero h1 { font-size: 4.5rem; } }
#r2b .pine { color: var(--pine); }
#r2b .lead {
  margin-top: 1rem;
  max-width: 32rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink-soft);
}
#r2b .hero-actions { margin-top: 1.5rem; display: flex; flex-wrap: wrap; gap: 0.75rem; }
#r2b .hero-proof {
  margin-top: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  color: var(--pine);
}

#r2b .marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--void);
  padding: 0.75rem 0;
}
#r2b .marquee-track {
  display: flex;
  width: max-content;
  gap: 2.5rem;
  padding-right: 2.5rem;
  animation: r2b-marquee 28s linear infinite;
}
#r2b .marquee-track span {
  font-family: var(--display);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgb(238 243 234 / 0.55);
}
@keyframes r2b-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

#r2b .trust { border-bottom: 1px solid var(--line); }
#r2b .trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 640px) {
  #r2b .trust-grid { grid-template-columns: repeat(4, 1fr); }
}
#r2b .trust-item {
  border-right: 1px solid var(--line);
  padding: 1.75rem 1rem;
}
#r2b .trust-item:last-child { border-right: 0; }
#r2b .trust-item strong {
  display: block;
  font-family: var(--display);
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--pine);
}
#r2b .trust-item span { display: block; margin-top: 0.25rem; font-size: 0.875rem; color: var(--muted); }

#r2b .section { padding: 4rem 0; }
#r2b .bg-2 { background: var(--paper-2); border-block: 1px solid var(--line); }
#r2b .kicker {
  font-family: var(--display);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pine);
}
#r2b h2.display {
  margin-top: 0.5rem;
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}
@media (min-width: 640px) { #r2b h2.display { font-size: 2.25rem; } }

#r2b .split-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}
#r2b .muted { color: var(--muted); }
#r2b .note { max-width: 24rem; font-size: 0.875rem; line-height: 1.6; color: var(--muted); }

#r2b .price-grid {
  margin-top: 2rem;
  display: grid;
  gap: 0.75rem;
}
@media (min-width: 640px) { #r2b .price-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { #r2b .price-grid { grid-template-columns: 1fr 1fr 1fr; } }
#r2b .price-card {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-radius: 0.25rem;
  background: var(--paper-3);
  padding: 1.25rem;
  box-shadow: var(--shadow);
}
#r2b .price-card:hover { box-shadow: var(--shadow-hover); }
#r2b .price-card small { display: block; font-size: 0.875rem; color: var(--muted); }
#r2b .price-card b {
  display: block;
  margin-top: 0.5rem;
  font-family: var(--display);
  font-size: 1.875rem;
  font-weight: 700;
}

#r2b .svc-grid {
  margin-top: 2rem;
  display: grid;
  gap: 0.75rem;
}
@media (min-width: 768px) { #r2b .svc-grid { grid-template-columns: 1fr 1fr; } }
#r2b .svc-card {
  position: relative;
  isolation: isolate;
  min-height: 16rem;
  overflow: hidden;
  border-radius: 0.25rem;
}
#r2b .svc-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
#r2b .svc-card:hover img { transform: scale(1.05); }
#r2b .svc-card .shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--void), rgb(4 17 13 / 0.55), transparent);
}
#r2b .svc-card .txt {
  position: relative;
  display: flex;
  height: 100%;
  min-height: 16rem;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
}
#r2b .svc-card h3 { font-size: 1.875rem; font-weight: 700; }
#r2b .svc-card p {
  margin-top: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--ink-soft);
}

#r2b .spec-grid {
  margin-top: 0.75rem;
  display: grid;
  gap: 0.75rem;
}
@media (min-width: 768px) { #r2b .spec-grid { grid-template-columns: 1fr 1fr 1fr; } }
#r2b .card {
  border-radius: 0.25rem;
  background: var(--paper-3);
  padding: 1.25rem;
  box-shadow: var(--shadow);
}
#r2b .card b {
  display: block;
  margin-top: 0.75rem;
  font-family: var(--display);
  font-size: 1.875rem;
  font-weight: 700;
}

#r2b .steps { margin: 2rem 0 0; padding: 0; list-style: none; }
#r2b .steps li {
  display: grid;
  gap: 0.5rem;
  border-top: 1px solid var(--line);
  padding: 1.5rem 0;
}
@media (min-width: 640px) {
  #r2b .steps li {
    grid-template-columns: 6rem 1fr 1.5fr;
    align-items: baseline;
  }
}
#r2b .steps .n { font-family: var(--display); font-size: 1.875rem; font-weight: 700; color: var(--pine); }

#r2b .rev-grid {
  margin-top: 2rem;
  display: grid;
  gap: 0.75rem;
}
@media (min-width: 768px) { #r2b .rev-grid { grid-template-columns: 1fr 1fr; } }
#r2b blockquote.rev {
  margin: 0;
  border-left: 2px solid var(--pine);
  background: var(--paper-3);
  padding: 1.5rem;
}
#r2b .stars { color: var(--pine); letter-spacing: 0.1em; }

#r2b .faq { margin-top: 1.5rem; }
#r2b .faq-item { border-bottom: 1px solid var(--line); }
#r2b .faq-item button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 0;
  background: none;
  border: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}
#r2b .faq-item .a {
  display: none;
  padding: 0 0 1.1rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--muted);
}
#r2b .faq-item.open .a { display: block; }

#r2b .visit { position: relative; overflow: hidden; }
#r2b .visit img.bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#r2b .visit .dim { position: absolute; inset: 0; background: rgb(4 17 13 / 0.8); }
#r2b .visit .inner {
  position: relative;
  display: grid;
  gap: 2.5rem;
  padding: 4rem 0;
}
@media (min-width: 1024px) { #r2b .visit .inner { grid-template-columns: 1fr 1fr; } }
#r2b .visit ul { margin: 2rem 0 0; padding: 0; list-style: none; }
#r2b .visit li { display: flex; gap: 0.75rem; margin-top: 1rem; font-size: 0.875rem; }
#r2b .visit .dot { color: var(--pine); }

#r2b footer.site {
  border-top: 1px solid var(--line);
  background: var(--paper-2);
}
#r2b .foot-grid {
  display: grid;
  gap: 2.5rem;
  padding: 3.5rem 0;
}
@media (min-width: 768px) { #r2b .foot-grid { grid-template-columns: 2fr 1fr 1fr; } }
#r2b .foot-grid .muted { margin-top: 1rem; max-width: 24rem; font-size: 0.875rem; line-height: 1.6; }
#r2b .foot-grid ul { margin: 0.75rem 0 0; padding: 0; list-style: none; }
#r2b .foot-grid li { margin-top: 0.5rem; font-size: 0.875rem; }
#r2b .foot-grid a:hover { color: var(--pine); }
#r2b .legal {
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1.25rem 0;
  font-size: 0.75rem;
  color: var(--muted);
}
@media (min-width: 640px) {
  #r2b .legal { flex-direction: row; justify-content: space-between; }
}

#r2b .page-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  padding: 3rem 0;
}
#r2b .page-hero::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--pine);
}
#r2b .badge {
  display: inline-flex;
  border-radius: 0.25rem;
  background: #0b2f28;
  padding: 0.25rem 0.65rem;
  font-family: var(--display);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pine);
}
#r2b .page-hero h1 {
  margin-top: 1rem;
  max-width: 48rem;
  font-size: 2.25rem;
  line-height: 1.05;
  font-weight: 700;
}
@media (min-width: 640px) { #r2b .page-hero h1 { font-size: 3rem; } }

#r2b table { width: 100%; border-collapse: collapse; font-size: 0.875rem; text-align: left; }
#r2b th {
  padding: 0.75rem 1.25rem;
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}
#r2b td { padding: 1rem 1.25rem; border-bottom: 1px solid var(--line); }
#r2b tr:last-child td { border-bottom: 0; }
#r2b .table-wrap {
  overflow-x: auto;
  border-radius: 0.25rem;
  background: var(--paper-3);
  box-shadow: var(--shadow);
}
#r2b .tabular { font-variant-numeric: tabular-nums; }

#r2b .tabs { display: flex; flex-wrap: nowrap; gap: 0.25rem; overflow-x: auto; border-radius: 0.25rem; background: var(--paper-2); padding: 0.25rem; }
#r2b .tabs button {
  flex: 0 0 auto;
  min-height: 2.5rem;
  border: 0;
  border-radius: 0.25rem;
  padding: 0 0.9rem;
  background: transparent;
  color: var(--muted);
  font-size: 0.875rem;
  white-space: nowrap;
  cursor: pointer;
}
#r2b .tabs button.active { background: var(--pine); color: var(--void); }
#r2b .tab-panel { display: none; margin-top: 1.5rem; }
#r2b .tab-panel.active { display: block; }

#r2b .two { display: grid; gap: 1rem; margin-top: 2.5rem; }
@media (min-width: 768px) { #r2b .two { grid-template-columns: 1fr 1fr; } }
#r2b .brand-grid { display: grid; gap: 0.75rem; }
@media (min-width: 768px) { #r2b .brand-grid { grid-template-columns: 1fr 1fr; } }

#r2b .pine-box {
  border-radius: 0.25rem;
  background: var(--pine);
  color: var(--void);
  padding: 1.5rem;
}
#r2b .pine-box p { margin-top: 0.25rem; font-size: 0.875rem; color: rgb(4 17 13 / 0.7); }
#r2b .pine-box a { font-weight: 600; text-decoration: underline; text-underline-offset: 4px; }

#r2b .sticky {
  display: none;
}
@media (max-width: 639px) {
  #r2b .sticky {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.5rem;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    border-top: 1px solid var(--line);
    background: rgb(9 11 10 / 0.95);
    padding: 0.5rem 0.5rem max(0.5rem, env(safe-area-inset-bottom));
  }
  #r2b main { padding-bottom: 5rem; }
}
#r2b .sticky a, #r2b .sticky button {
  display: flex;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
}
#r2b .sticky .call { background: var(--ink); color: var(--void); }
#r2b .sticky .wa { background: var(--pine); color: var(--void); }
#r2b .sticky .book { background: var(--paper-3); color: var(--ink); box-shadow: var(--shadow); }

#r2b .sheet, #r2b .modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 50;
}
#r2b .sheet.open, #r2b .modal.open { display: block; }
#r2b .backdrop { position: absolute; inset: 0; background: rgb(4 17 13 / 0.8); }
#r2b .sheet-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(100%, 20rem);
  background: var(--paper-2);
  padding: 1.5rem;
}
#r2b .sheet-panel nav { display: flex; flex-direction: column; gap: 0.25rem; margin-top: 2rem; }
#r2b .sheet-panel nav a { padding: 0.75rem; border-radius: 0.25rem; }
#r2b .modal-panel {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% - 2rem);
  max-width: 28rem;
  transform: translate(-50%, -50%);
  background: var(--paper-3);
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-hover);
}
#r2b .modal-panel h2 { font-size: 1.5rem; }
#r2b label { display: block; margin-bottom: 0.35rem; font-size: 0.8rem; }
#r2b input, #r2b textarea {
  width: 100%;
  border: 0;
  border-radius: 0.25rem;
  background: var(--paper);
  color: var(--ink);
  padding: 0.7rem 0.75rem;
  font: inherit;
  box-shadow: var(--shadow);
  margin-bottom: 0.9rem;
}
#r2b textarea { min-height: 6rem; resize: vertical; }
#r2b .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: 0;
  color: var(--muted);
  font-size: 1.4rem;
  cursor: pointer;
}

@media (prefers-reduced-motion: reduce) {
  #r2b .marquee-track { animation: none; }
}
