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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  color: #12212b;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
}

a {
  color: #0097a7;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.16s ease, text-decoration-color 0.16s ease;
}
a:hover {
  color: #00bcd4;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.15em;
}

code,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 2.4rem;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(17, 24, 39, 0.06);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.brand-icon {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 0.4rem;
  background: radial-gradient(circle at 0 0, rgba(0, 0, 0, 0.07), transparent 70%), url("images/SearchLink-32.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 80% 80%;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.04), 0 6px 18px rgba(15, 23, 42, 0.18);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.brand-sub {
  font-size: 0.78rem;
  color: #5e6b76;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
}
.nav-links a {
  color: #5e6b76;
  position: relative;
  padding-bottom: 0.1rem;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #00bcd4, #0097a7);
  transition: width 0.16s ease-out;
}
.nav-links a:hover {
  color: #12212b;
}
.nav-links a:hover::after {
  width: 100%;
}

.hero {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 3.2rem 2.4rem 2.6rem;
  overflow: hidden;
  background: radial-gradient(circle at 0% 0%, rgba(0, 188, 212, 0.18), transparent 60%), radial-gradient(circle at 100% 0%, rgba(0, 188, 212, 0.08), transparent 55%), linear-gradient(to bottom, #f9fdff, #f5f7fb);
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}

.hero-inner {
  max-width: 980px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 3rem;
}

.hero-visual {
  flex: 0 0 260px;
  height: 180px;
  border-radius: 1.2rem;
  background: linear-gradient(135deg, #00bcd4, #0097a7);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.4);
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("images/SearchLink_9.jpg") center/cover no-repeat;
  opacity: 0.7;
}

.hero-copy {
  flex: 1 1 auto;
}

.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #0097a7;
  font-weight: 600;
  margin: 0 0 0.75rem;
}

.hero h1 {
  font-size: clamp(2.3rem, 4vw, 3rem);
  line-height: 1.1;
  margin: 0 0 0.7rem;
}

.tagline {
  margin: 0 0 1.4rem;
  max-width: 40rem;
  color: #5e6b76;
  font-size: 0.98rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.6rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease, transform 0.08s ease-out;
}

.btn.primary {
  background: linear-gradient(135deg, #00bcd4, #0097a7);
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.35), 0 0 0 1px rgba(0, 0, 0, 0.04);
}
.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.45), 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.btn.secondary {
  background: #ffffff;
  border-color: rgba(148, 163, 184, 0.55);
  color: #12212b;
}
.btn.secondary:hover {
  background: #f9fafb;
  border-color: rgba(15, 23, 42, 0.4);
}

.page {
  max-width: 900px;
  margin: 0 auto;
  padding: 2.4rem 2.4rem 3rem;
}

.page h2 {
  font-size: 1.4rem;
  margin-top: 2.2rem;
  margin-bottom: 0.9rem;
}

.page h3 {
  font-size: 1.05rem;
  margin-top: 1.4rem;
  margin-bottom: 0.4rem;
}

.page p {
  margin: 0 0 0.85rem;
  color: #5e6b76;
  font-size: 0.97rem;
}

.page ul,
.page ol {
  margin: 0.2rem 0 1rem 1.3rem;
  padding: 0;
  color: #5e6b76;
}

.page li + li {
  margin-top: 0.1rem;
}

pre {
  margin: 0 0 1rem;
  padding: 0.85rem 1rem;
  border-radius: 0.8rem;
  background: #f5f7fb;
  border: 1px solid #e1e6ee;
  overflow-x: auto;
  font-size: 0.86rem;
  line-height: 1.5;
}

code {
  padding: 0.08rem 0.35rem;
  border-radius: 0.35rem;
  background: rgba(0, 188, 212, 0.06);
  border: 1px solid rgba(0, 188, 212, 0.32);
  color: #0097a7;
  font-size: 0.85rem;
}

pre code {
  padding: 0;
  border: none;
  background: transparent;
  color: #12212b;
}

@media (max-width: 800px) {
  .site-nav {
    padding-inline: 1.2rem;
  }
  .nav-links {
    gap: 0.9rem;
    font-size: 0.82rem;
  }
  .hero {
    padding-inline: 1.4rem;
  }
  .hero-inner {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
  .hero-visual {
    width: 100%;
    max-width: 480px;
    height: 160px;
  }
  .page {
    padding-inline: 1.4rem;
  }
}

/*# sourceMappingURL=styles.css.map */
