@import url('https://fonts.googleapis.com/css2?family=Geist+Mono&family=Nunito:wght@200..1000&display=swap');

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

:root {
  color-scheme: dark;
  --bg: black;
  --bg-soft: #0d0f12;
  --text: #f2f2f2;
  --muted: rgba(255, 255, 255, 0.7);
  --line: #1a1d22;
  --accent: #9aa5b1;
  --button: #1a1c20;
}

html {
  scroll-behavior: smooth;
}

@property --btn-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 165deg;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

img {
  max-width: 100%;
}

h2 {
  font-size: 48px;
  font-weight: normal;
}

.container {
  width: min(1280px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(12px);
  z-index: 10;
}

.has-border {
  position: relative;
}

.has-border::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.15),
    rgba(255, 255, 255, 0)
  );
  pointer-events: none;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-mark svg {
  width: 28px;
  height: 28px;
}

.brand-text span {
  display: block;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-text small {
  display: block;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.3em;
}

.menu {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
}

.menu a:hover {
  color: var(--text);
}

.btn {
  --btn-angle: 165deg;
  background: linear-gradient(var(--button), var(--button)) padding-box,
    linear-gradient(
      var(--btn-angle),
      rgba(154, 154, 154, 1),
      rgba(26, 26, 26, 1),
      rgba(106, 106, 106, 1)
    ) border-box;
  border: 1px solid transparent;
  padding: 4px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: --btn-angle 0.25s ease, transform 0.2s ease;
}

.btn::after {
  content: "";
  width: 10px;
  height: 10px;
  background: url('img/arrow.svg') center / contain no-repeat;
  display: inline-block;
}

.btn:hover {
  --btn-angle: 10deg;
}

.btn-outline {
  background: transparent;
  color: var(--text);
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.1;
  margin: 12px 0 16px;
  font-weight: normal;
}

.lead {
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 24px;
  font-size: 20px;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 1px;
  font-family: "Geist Mono", monospace;
  margin-bottom: 15px;
}

.centered {
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.hero-visual {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
}

.spotlight {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.22), transparent 55%);
  filter: blur(6px);
}

.section {
  padding: 90px 0;
}

.subheading {
  margin: 2px auto 80px;
  max-width: 640px;
  font-size: 20px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

.card {
  border-radius: 16px;
}

.icon-wrap {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background-color: rgb(255, 255, 255, 0.09);
  background-position: center center;
  background-repeat: no-repeat;
  border: 1px solid  rgb(255, 255, 255, 0.1);
  margin-bottom: 25px;
  font-size: 16px;
}

.icon-wrap.check {
  background-image: url('img/check.svg');
}

.icon-wrap.ico1 {
  background-image: url('img/ico1.svg');
}

.icon-wrap.ico2 {
  background-image: url('img/ico2.svg');
}

.icon-wrap.ico3 {
  background-image: url('img/ico3.svg');
}

.card h3 {
  margin-bottom: 15px;
  font-size: 24px;
  font-weight: normal;
}

.card p {
  color: var(--muted);
  font-size: 16px;
  max-width: 260px;
}

.card-type-2 .card {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
}

.card-type-2 .icon-wrap {
  margin-bottom: 0;
}

.card-type-2 .card-body h3 {
  margin-bottom: 8px;
}

.card-type-2 .card-body p {
  margin-top: 0;
  max-width: 260px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 50px;
  align-items: center;
}

.list {
  display: grid;
  gap: 25px;
  margin-top: 28px;
  list-style: none;
}

.list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
}

.dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--muted);
  margin-top: 12px;
  background: url('img/check.svg') center center no-repeat rgb(255, 255, 255, 0.09);
  border: 1px solid  rgb(255, 255, 255, 0.1);
  background-size: cover;
}

.list h4 {
  font-size: 24px;
  font-weight: normal;
}

.list p {
  color: var(--muted);
  font-size: 16px;
  max-width: 400px;
}

.team-visual {
  display: grid;
  place-items: center;
}

.team {
  width: min(360px, 70vw);
  height: 320px;
  border-radius: 24px;
  background: linear-gradient(150deg, #0f1218 0%, #1e232c 55%, #0b0c10 100%);
  border: 1px solid #22262f;
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.45);
}

.team::before,
.team::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 200px;
  background: linear-gradient(180deg, #1a1e24, #0b0d12);
  border-radius: 60px 60px 20px 20px;
  bottom: -20px;
}

.team::before {
  left: 40px;
}

.team::after {
  right: 40px;
}

.cta {
  padding: 110px 0;
  text-align: center;
}

.cta-title {
  font-size: 86px;
  line-height: 89px;
  margin: 0 auto 50px;
  color: var(--muted);
}

.text-white {
  color: white;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 28px;
  align-items: start;
  margin-bottom: 40px;
  color: rgba(163, 163, 163, 1);
}

.site-footer h4 {
  margin-bottom: 20px;
  font-weight: normal;
  text-transform: uppercase;
  font-size: 13px;
}

.site-footer ul {
  list-style: none;
  display: grid;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
}

.site-footer ul li a:hover {
  color: white
}

.socials {
  display: flex;
  gap: 12px;
}

.contact-us-footer li {
  display: flex;
  align-items: center;
}

.contact-us-footer li img {
  margin-right: 10px;
}

.copyright {
  text-align: center;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 30px;
}

@media (max-width: 900px) {
  .menu {
    display: none;
  }
}

@media (max-width: 600px) {
  .nav {
    flex-wrap: wrap;
  }

  .hero {
    padding: 80px 0 100px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
