: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 64%, rgba(239, 111, 97, 0.13) 64% 66%, transparent 66%),
    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;
}

.section {
  padding: clamp(70px, 8vw, 118px) 0;
}

.section-dark {
  background:
    radial-gradient(circle at 12% 16%, rgba(245, 201, 91, 0.14), transparent 26%),
    linear-gradient(135deg, rgba(6, 21, 24, 0.98), 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.62fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 34px;
}

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

h1, h2 {
  margin-bottom: 0;
  color: var(--black);
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 850px;
  font-size: clamp(3rem, 7vw, 6.2rem);
  line-height: 0.9;
}

h2 {
  font-size: clamp(2.1rem, 5vw, 4.65rem);
  line-height: 0.95;
}

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

.lead {
  color: var(--ink);
  font-size: clamp(1.05rem, 1.7vw, 1.24rem);
  font-weight: 740;
  line-height: 1.56;
}

.section-dark .lead,
.section-dark p {
  color: rgba(255, 255, 255, 0.76);
}

.hero {
  padding: clamp(54px, 8vw, 100px) 0 clamp(46px, 7vw, 86px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(350px, 0.68fr);
  gap: clamp(30px, 5vw, 68px);
  align-items: center;
}

.hero-copy p {
  max-width: 720px;
  margin: 24px 0 0;
}

.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.74);
  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: 560px;
  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%),
    radial-gradient(circle at 82% 18%, rgba(239, 111, 97, 0.15), transparent 26%),
    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: 3%;
  top: 4%;
  z-index: 2;
  transform: rotate(-7deg);
}

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

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

.floating-note {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 26px;
  z-index: 5;
  border: 1px solid rgba(4, 117, 129, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 46px rgba(6, 21, 24, 0.14);
  padding: 18px;
  backdrop-filter: blur(14px);
}

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

.floating-note span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 740;
  line-height: 1.4;
}

.value-grid,
.use-grid,
.page-link-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.value-card,
.use-card,
.page-link-card,
.faq-card,
.timeline-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  padding: 24px;
}

.value-card h3,
.use-card h3,
.page-link-card strong,
.faq-card h3,
.timeline-card h3 {
  margin: 0 0 10px;
  color: var(--black);
  font-size: 1.3rem;
  font-weight: 950;
  line-height: 1.06;
  text-transform: uppercase;
}

.value-card p,
.use-card p,
.page-link-card p,
.faq-card p,
.timeline-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 730;
  line-height: 1.5;
}

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

.timeline-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06));
  border-color: rgba(115, 192, 190, 0.24);
  box-shadow: none;
}

.timeline-card span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--mint);
  font-size: 2.2rem;
  font-weight: 950;
  line-height: 0.9;
}

.timeline-card h3 {
  color: var(--white);
}

.timeline-card p {
  color: rgba(255, 255, 255, 0.74);
}

.compare-band {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(300px, 0.54fr);
  gap: 24px;
  align-items: stretch;
}

.compare-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  padding: clamp(26px, 4vw, 42px);
}

.compare-panel h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
}

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

.compare-list li {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
  color: var(--ink);
  font-weight: 820;
  line-height: 1.45;
}

.compare-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 7px;
  border-radius: 999px;
  background: var(--teal);
}

.screenshot-panel {
  display: grid;
  align-items: end;
  justify-items: center;
  min-height: 470px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 18%, rgba(245, 201, 91, 0.16), transparent 32%),
    linear-gradient(180deg, rgba(227, 244, 243, 0.7), rgba(255, 255, 255, 0.95));
  box-shadow: var(--shadow);
  padding: 28px 28px 0;
}

.screenshot-panel img {
  width: min(100%, 300px);
  max-height: 520px;
  object-fit: contain;
  filter: drop-shadow(0 24px 24px rgba(6, 21, 24, 0.18));
}

.page-link-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.page-link-card {
  display: grid;
  min-height: 220px;
  align-content: start;
  gap: 10px;
  transition: border-color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

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

.page-link-card span {
  width: max-content;
  max-width: 100%;
  border: 1px solid rgba(4, 117, 129, 0.18);
  border-radius: 999px;
  background: rgba(115, 192, 190, 0.14);
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  padding: 8px 11px;
  text-transform: uppercase;
}

.cta-band {
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 86% 20%, rgba(245, 201, 91, 0.14), transparent 28%),
    linear-gradient(135deg, rgba(6, 21, 24, 0.97), rgba(4, 117, 129, 0.9)),
    url("/assets/brand-refresh/background1u.jpg") center / cover;
  box-shadow: var(--shadow);
  color: var(--white);
  padding: clamp(32px, 6vw, 64px);
}

.cta-band h2 {
  max-width: 840px;
  color: var(--white);
}

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

.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) !important;
  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 {
  outline: none;
  transform: translateY(-2px);
  border-color: rgba(115, 192, 190, 0.75);
  background: rgba(115, 192, 190, 0.16);
  color: #fff !important;
}

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

.disclaimer {
  color: rgba(18, 49, 53, 0.62);
  font-size: 0.86rem;
  font-weight: 720;
  line-height: 1.5;
}

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

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

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

@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;
  }

  h1 {
    font-size: clamp(2.55rem, 13vw, 4.2rem);
  }

  h2 {
    font-size: clamp(2rem, 12vw, 3.2rem);
  }

  .section-head,
  .value-grid,
  .use-grid,
  .faq-grid,
  .timeline,
  .page-link-grid {
    grid-template-columns: 1fr;
  }

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

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

  .floating-note {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .page-link-card,
  .value-card,
  .use-card,
  .faq-card {
    min-height: 0;
  }
}

/* SEO tools and press resources */
.tool-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px}.tool-panel{display:grid;align-content:start;gap:16px;border:1px solid var(--line);border-radius:var(--radius);background:rgba(255,255,255,.92);box-shadow:var(--shadow);padding:24px}.tool-panel h3{margin:0;color:var(--black);font-size:1.35rem;font-weight:950;line-height:1.06;text-transform:uppercase}.tool-panel p{margin:0;color:var(--muted);font-weight:730;line-height:1.5}.field-grid{display:grid;gap:12px}.field{display:grid;gap:7px}.field label{color:var(--ink);font-size:.78rem;font-weight:900;letter-spacing:.08em;text-transform:uppercase}.field input,.field select{width:100%;min-height:46px;border:1px solid rgba(4,117,129,.22);border-radius:var(--radius);background:rgba(255,255,255,.9);color:var(--black);font:inherit;font-weight:800;padding:0 12px}.field input:focus,.field select:focus{border-color:rgba(4,117,129,.62);box-shadow:0 0 0 4px rgba(115,192,190,.18);outline:none}.tool-result{min-height:88px;border:1px solid rgba(4,117,129,.18);border-radius:var(--radius);background:linear-gradient(180deg,rgba(227,244,243,.72),rgba(255,255,255,.96));color:var(--ink);font-weight:760;line-height:1.45;padding:16px}.tool-result strong{display:block;color:var(--teal);font-size:1.65rem;font-weight:950;line-height:1}.resource-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:16px}.resource-card{display:grid;min-height:220px;align-content:start;gap:12px;border:1px solid var(--line);border-radius:var(--radius);background:rgba(255,255,255,.9);box-shadow:var(--shadow);padding:22px}.resource-card img{width:100%;max-height:120px;object-fit:contain}.resource-card strong{color:var(--black);font-size:1.18rem;font-weight:950;line-height:1.08;text-transform:uppercase}.resource-card p{margin:0;color:var(--muted);font-weight:730;line-height:1.45}.fact-list{display:grid;gap:12px;margin:0;padding:0;list-style:none}.fact-list li{display:grid;grid-template-columns:160px minmax(0,1fr);gap:14px;border-bottom:1px solid var(--line);padding:0 0 12px;color:var(--muted);font-weight:730;line-height:1.45}.fact-list strong{color:var(--black);font-weight:950;text-transform:uppercase}.press-logo-card{display:grid;place-items:center;min-height:260px;border:1px solid var(--line);border-radius:var(--radius);background:rgba(255,255,255,.92);box-shadow:var(--shadow);padding:32px}.press-logo-card img{width:min(100%,360px)}@media(max-width:1120px){.tool-grid,.resource-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}@media(max-width:760px){.tool-grid,.resource-grid{grid-template-columns:1fr}.tool-panel,.resource-card{min-height:0}.fact-list li{grid-template-columns:1fr;gap:5px}}