:root {
  --ink: #111827;
  --muted: #526071;
  --line: #dbe3ef;
  --panel: #ffffff;
  --soft: #f5f8fc;
  --blue: #536dff;
  --red: #ff3038;
  --green: #08bf66;
  --teal: #0b7c86;
  --gold: #f5b642;
  --shadow: 0 24px 60px rgba(17, 24, 39, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 10%, rgba(83, 109, 255, 0.08), transparent 28%),
    radial-gradient(circle at 88% 8%, rgba(8, 191, 102, 0.1), transparent 24%),
    var(--soft);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 5vw, 64px);
  background: rgba(245, 248, 252, 0.88);
  border-bottom: 1px solid rgba(219, 227, 239, 0.9);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 900;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(17, 24, 39, 0.12));
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 28px);
  color: var(--muted);
  font-weight: 800;
  font-size: 0.95rem;
}

nav a {
  position: relative;
  text-decoration: none;
}

nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 3px;
  background: var(--green);
  border-radius: 999px;
  content: "";
  opacity: 0;
  transform: scaleX(0.45);
  transition: opacity 180ms ease, transform 180ms ease;
}

nav a:hover,
nav a:focus-visible {
  color: var(--ink);
}

nav a:hover::after,
nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: clamp(52px, 8vw, 100px) clamp(18px, 5vw, 64px) clamp(46px, 8vw, 92px);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.78)),
    linear-gradient(135deg, rgba(83, 109, 255, 0.12), rgba(8, 191, 102, 0.09));
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: auto -12% -26% 48%;
  height: 360px;
  background: linear-gradient(90deg, rgba(255, 48, 56, 0.12), rgba(8, 191, 102, 0.16), rgba(83, 109, 255, 0.13));
  border-radius: 999px;
  content: "";
  filter: blur(18px);
  transform: rotate(-8deg);
}

.hero-copy,
.section,
footer {
  max-width: 1180px;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(2.65rem, 5.4vw, 5.45rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.lead {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

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

.button.primary {
  background: var(--ink);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(17, 24, 39, 0.18);
}

.button.secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
}

.hero-showcase {
  position: relative;
  z-index: 1;
  min-height: 500px;
  border: 1px solid rgba(219, 227, 239, 0.94);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.46)),
    linear-gradient(135deg, rgba(83, 109, 255, 0.16), rgba(8, 191, 102, 0.13));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-showcase::before {
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  content: "";
}

.showcase-orbit {
  position: absolute;
  width: 360px;
  height: 360px;
  top: 72px;
  left: 50%;
  border: 1px solid rgba(83, 109, 255, 0.22);
  border-radius: 50%;
  transform: translateX(-50%);
  animation: slowSpin 18s linear infinite;
}

.showcase-orbit::before,
.showcase-orbit::after {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  content: "";
}

.showcase-orbit::before {
  top: 48px;
  right: 22px;
  background: var(--green);
}

.showcase-orbit::after {
  bottom: 36px;
  left: 42px;
  background: var(--red);
}

.logo-lift {
  position: absolute;
  top: 132px;
  left: 50%;
  display: grid;
  place-items: center;
  width: 190px;
  height: 190px;
  padding: 24px;
  background: #ffffff;
  border: 1px solid rgba(219, 227, 239, 0.9);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(17, 24, 39, 0.14);
  transform: translateX(-50%);
}

.logo-lift img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.showcase-card {
  position: absolute;
  width: min(78%, 310px);
  padding: 18px;
  border: 1px solid rgba(219, 227, 239, 0.92);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 35px rgba(17, 24, 39, 0.1);
  backdrop-filter: blur(12px);
  animation: floatCard 5.5s ease-in-out infinite;
}

.showcase-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--teal);
  font-size: 0.73rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.showcase-card strong {
  display: block;
  font-size: 1rem;
  line-height: 1.35;
}

.card-one {
  top: 42px;
  left: 34px;
}

.card-two {
  right: 32px;
  bottom: 126px;
  animation-delay: -1.7s;
}

.card-three {
  bottom: 36px;
  left: 52px;
  animation-delay: -3.1s;
}

.section {
  margin: 0 auto;
  padding: clamp(52px, 8vw, 92px) clamp(18px, 5vw, 64px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 30px;
}

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

.service-grid article,
.project-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.05);
}

.service-grid article {
  position: relative;
  min-height: 250px;
  padding: 24px;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-grid article::after {
  position: absolute;
  right: -36px;
  bottom: -42px;
  width: 132px;
  height: 132px;
  background: linear-gradient(135deg, rgba(83, 109, 255, 0.13), rgba(8, 191, 102, 0.16));
  border-radius: 50%;
  content: "";
}

.service-grid article:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.service-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 42px;
  background: #f0f6ff;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 950;
}

.service-grid p,
.project-card p,
.trust p,
.contact p {
  color: var(--muted);
}

.projects {
  max-width: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(245, 248, 252, 0)),
    #eef4fb;
}

.project-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.project-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 420px;
  padding: 0;
  overflow: hidden;
}

.project-card > div:not(.project-visual),
.project-card > a,
.project-card > .muted-link {
  margin-right: 28px;
  margin-left: 28px;
}

.project-card > div:not(.project-visual) {
  margin-top: 28px;
}

.project-visual {
  position: relative;
  min-height: 170px;
  padding: 24px;
  color: #ffffff;
  overflow: hidden;
}

.project-visual::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(17, 24, 39, 0.48), rgba(17, 24, 39, 0.16)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.11) 0 1px, transparent 1px 58px);
  content: "";
}

.daily-hoots-visual {
  background: linear-gradient(135deg, #344a5a, #0b7c86 58%, #08bf66);
}

.girmit-visual {
  background: linear-gradient(135deg, #3c302b, #0b7c86 62%, #f5b642);
}

.project-visual span,
.project-visual strong,
.project-visual em {
  position: relative;
  z-index: 1;
  display: block;
}

.project-visual span {
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-visual strong {
  margin-top: 34px;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1;
}

.project-visual em {
  margin-top: 12px;
  font-style: normal;
  font-weight: 800;
  opacity: 0.88;
}

.project-type {
  margin-bottom: 12px;
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.project-card a,
.muted-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 28px;
  margin-bottom: 28px;
  color: var(--ink);
  font-weight: 900;
  text-decoration-color: var(--green);
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
}

.muted-link {
  color: var(--muted);
}

.trust {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(0, 1.25fr);
  gap: 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust > p {
  align-self: end;
  margin-bottom: 0;
  font-size: 1.1rem;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  gap: 24px;
  align-items: center;
}

.email-card {
  display: flex;
  align-items: center;
  min-height: 76px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--teal);
  font-weight: 900;
  text-decoration: none;
  overflow-wrap: anywhere;
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.07);
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: 0 auto;
  padding: 28px clamp(18px, 5vw, 64px) 40px;
  color: var(--muted);
  font-size: 0.95rem;
}

footer a {
  text-decoration: none;
}

@keyframes slowSpin {
  from {
    transform: translateX(-50%) rotate(0deg);
  }

  to {
    transform: translateX(-50%) rotate(360deg);
  }
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}

@media (max-width: 980px) {
  .hero,
  .section-heading,
  .trust,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

  .service-grid,
  .project-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    justify-content: space-between;
  }

  .service-grid,
  .project-list {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 2.55rem;
  }

  .hero-showcase {
    min-height: 520px;
  }

  .logo-lift {
    top: 150px;
    width: 160px;
    height: 160px;
  }

  .showcase-card {
    width: calc(100% - 48px);
  }

  .card-one,
  .card-two,
  .card-three {
    left: 24px;
    right: 24px;
  }

  .card-one {
    top: 28px;
  }

  .card-two {
    top: 332px;
    bottom: auto;
  }

  .card-three {
    bottom: 28px;
  }

  footer {
    flex-direction: column;
  }
}
