:root {
  --black: #061518;
  --ink: #123135;
  --muted: #4d676a;
  --teal: #047581;
  --mint: #73c0be;
  --gold: #f5c95b;
  --coral: #ef6f61;
  --paper: #f7fbfa;
  --white: #ffffff;
  --line: rgba(4, 117, 129, 0.16);
  --shadow: 0 24px 70px rgba(6, 21, 24, 0.14);
  --radius: 8px;
}

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

html {
  background: var(--paper);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(247, 251, 250, 0.96)),
    url("/assets/brand-refresh/background1u.jpg") center top / cover fixed;
  color: var(--black);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.15;
  background:
    linear-gradient(115deg, transparent 0 66%, rgba(239, 111, 97, 0.14) 66% 68%, transparent 68%),
    url("/assets/brand-refresh/background1u.jpg") center / cover;
  mix-blend-mode: multiply;
}

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

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

.shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.91);
  box-shadow: 0 10px 34px rgba(6, 21, 24, 0.08);
  backdrop-filter: blur(16px);
}

.nav-inner {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.brand img {
  width: 184px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  color: rgba(6, 21, 24, 0.68);
  font-size: 0.94rem;
  font-weight: 750;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--black);
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0 22px;
  font-weight: 900;
  line-height: 1;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.btn:hover,
.btn:focus-visible {
  outline: none;
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--mint), var(--teal) 70%);
  box-shadow: 0 15px 34px rgba(4, 117, 129, 0.2);
  color: var(--white);
}

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

.btn-light {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.78);
  color: var(--black);
}

.eyebrow {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero {
  padding: clamp(54px, 8vw, 100px) 0 clamp(42px, 6vw, 76px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(330px, 0.62fr);
  gap: clamp(30px, 5vw, 64px);
  align-items: center;
}

.hero-copy h1 {
  max-width: 820px;
  margin: 16px 0 0;
  color: var(--black);
  font-size: clamp(2.65rem, 7vw, 5.7rem);
  font-weight: 950;
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy p {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--ink);
  font-size: clamp(1.05rem, 1.8vw, 1.24rem);
  font-weight: 720;
  line-height: 1.58;
}

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

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.chip {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: rgba(6, 21, 24, 0.72);
  font-size: 0.8rem;
  font-weight: 900;
  padding: 0 13px;
  white-space: nowrap;
}

.hero-visual {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 24% 14%, rgba(245, 201, 91, 0.22), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(227, 244, 243, 0.86));
  box-shadow: var(--shadow);
}

.phone-stack {
  position: absolute;
  inset: 34px 20px 28px;
}

.phone-shot {
  position: absolute;
  width: 48%;
  min-width: 150px;
  overflow: hidden;
  border: 8px solid #071316;
  border-radius: 28px;
  background: #071316;
  box-shadow: 0 26px 52px rgba(6, 21, 24, 0.22);
}

.phone-shot img {
  width: 100%;
  aspect-ratio: 9 / 19;
  object-fit: cover;
  object-position: top center;
}

.phone-shot.one {
  left: 5%;
  top: 6%;
  z-index: 2;
  transform: rotate(-7deg);
}

.phone-shot.two {
  right: 3%;
  top: 18%;
  z-index: 3;
  transform: rotate(5deg);
}

.phone-shot.three {
  left: 28%;
  bottom: 4%;
  z-index: 4;
  transform: rotate(-1deg);
}

.floating-note {
  position: absolute;
  right: 22px;
  bottom: 24px;
  z-index: 6;
  width: min(78%, 300px);
  border: 1px solid rgba(4, 117, 129, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 42px rgba(6, 21, 24, 0.14);
  padding: 16px;
}

.floating-note strong {
  display: block;
  color: var(--black);
  font-size: 1rem;
  font-weight: 950;
  line-height: 1.1;
  text-transform: uppercase;
}

.floating-note span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 730;
  line-height: 1.38;
}

.section {
  padding: clamp(52px, 7vw, 94px) 0;
}

.section-dark {
  background:
    linear-gradient(135deg, rgba(6, 21, 24, 0.97), rgba(4, 117, 129, 0.9)),
    url("/assets/brand-refresh/background1u.jpg") center / cover;
  color: var(--white);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.56fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 30px;
}

.section-head h2 {
  margin: 12px 0 0;
  color: var(--black);
  font-size: clamp(2rem, 4.5vw, 4rem);
  font-weight: 950;
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-dark .section-head h2 {
  color: var(--white);
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-weight: 730;
  line-height: 1.6;
}

.section-dark .section-head p {
  color: rgba(255, 255, 255, 0.75);
}

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

.compare-card,
.verdict-card,
.faq-item,
.source-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.compare-card {
  display: grid;
  min-height: 280px;
  align-content: start;
  gap: 14px;
  padding: 22px;
  transition: transform 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
}

.compare-card:hover,
.compare-card:focus-visible {
  border-color: rgba(4, 117, 129, 0.42);
  outline: none;
  transform: translateY(-3px);
  box-shadow: 0 24px 64px rgba(6, 21, 24, 0.16);
}

.compare-card h3,
.verdict-card h3,
.faq-item h3,
.source-card h3 {
  margin: 0;
  color: var(--black);
  font-size: 1.28rem;
  font-weight: 950;
  line-height: 1.08;
  text-transform: uppercase;
}

.compare-card p,
.verdict-card p,
.faq-item p,
.source-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 720;
  line-height: 1.52;
}

.compare-card .read-more {
  margin-top: auto;
  color: var(--teal);
  font-weight: 950;
}

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

.verdict-card {
  padding: clamp(22px, 3vw, 30px);
}

.verdict-card.trackfull {
  background:
    linear-gradient(135deg, rgba(115, 192, 190, 0.22), rgba(255, 255, 255, 0.96)),
    var(--white);
}

.verdict-card.competitor {
  background:
    linear-gradient(135deg, rgba(245, 201, 91, 0.2), rgba(255, 255, 255, 0.96)),
    var(--white);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

th,
td {
  border-bottom: 1px solid rgba(4, 117, 129, 0.13);
  padding: 18px;
  text-align: left;
  vertical-align: top;
}

th {
  background: rgba(227, 244, 243, 0.72);
  color: var(--black);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

td {
  color: var(--muted);
  font-weight: 710;
  line-height: 1.5;
}

td strong {
  color: var(--black);
  font-weight: 950;
}

tr:last-child td {
  border-bottom: 0;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(300px, 0.28fr);
  gap: 22px;
  align-items: start;
}

.main-copy {
  display: grid;
  gap: 16px;
}

.copy-block,
.side-panel,
.disclaimer {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  padding: clamp(22px, 3vw, 30px);
}

.copy-block h2,
.copy-block h3,
.side-panel h2,
.disclaimer h2 {
  margin: 0;
  color: var(--black);
  font-size: clamp(1.45rem, 3vw, 2.25rem);
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.copy-block p,
.copy-block li,
.side-panel p,
.side-panel li,
.disclaimer p {
  color: var(--muted);
  font-weight: 720;
  line-height: 1.62;
}

.copy-block p,
.side-panel p,
.disclaimer p {
  margin: 14px 0 0;
}

.copy-block ul,
.side-panel ul {
  display: grid;
  gap: 9px;
  margin: 16px 0 0;
  padding-left: 19px;
}

.copy-block li::marker,
.side-panel li::marker {
  color: var(--teal);
}

.side-panel {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 18px;
}

.side-panel .btn {
  width: 100%;
}

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

.faq-item {
  padding: 22px;
}

.cta-band {
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(6, 21, 24, 0.97), rgba(4, 117, 129, 0.9)),
    url("/assets/brand-refresh/background1u.jpg") center / cover;
  color: var(--white);
  padding: clamp(30px, 5vw, 56px);
  box-shadow: var(--shadow);
}

.cta-band h2 {
  max-width: 760px;
  margin: 0;
  color: var(--white);
  font-size: clamp(2rem, 5vw, 4.25rem);
  font-weight: 950;
  line-height: 0.98;
  text-transform: uppercase;
}

.cta-band p {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 730;
  line-height: 1.55;
}

.disclaimer {
  box-shadow: none;
}

.disclaimer p {
  font-size: 0.9rem;
}

.footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.68);
  padding: 42px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
}

.footer img {
  width: 170px;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.92rem;
  font-weight: 800;
}

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

.footer-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.footer-social a {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(115, 192, 190, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.82);
  transition: transform 0.16s ease, border-color 0.16s ease, background 0.16s ease, color 0.16s ease;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  border-color: rgba(115, 192, 190, 0.75);
  background: rgba(115, 192, 190, 0.16);
  color: #fff;
  outline: none;
  transform: translateY(-2px);
}

.footer-social svg {
  width: 17px;
  height: 17px;
  display: block;
  fill: currentColor;
}

@media (max-width: 1040px) {
  .hero-grid,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 420px;
  }

  .card-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .side-panel {
    position: static;
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(100% - 28px, 1180px);
  }

  .nav-inner {
    min-height: 66px;
  }

  .brand img {
    width: 144px;
  }

  .nav-links {
    display: none;
  }

  .nav-inner .btn {
    min-height: 42px;
    padding-inline: 14px;
    font-size: 0.84rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.55rem, 13vw, 4.1rem);
  }

  .hero-visual {
    min-height: 360px;
  }

  .phone-stack {
    inset: 24px 12px 20px;
  }

  .phone-shot {
    width: 54%;
    min-width: 132px;
    border-width: 6px;
    border-radius: 24px;
  }

  .phone-shot.three {
    left: 20%;
  }

  .floating-note {
    left: 12px;
    right: 12px;
    bottom: 14px;
    width: auto;
  }

  .section-head,
  .card-grid,
  .verdict-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .compare-card {
    min-height: 0;
  }

  .footer-social {
    width: 100%;
  }
}
