:root {
  --ink: #183041;
  --muted: #687986;
  --peach: #ff7a32;
  --peach-soft: #fff0e6;
  --leaf: #2f8d54;
  --aqua: #dff7f2;
  --sky: #eaf5ff;
  --cream: #fffaf4;
  --white: #ffffff;
  --line: rgba(24, 48, 65, 0.12);
  --shadow: 0 24px 70px rgba(35, 58, 73, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 122, 50, 0.18), transparent 26rem),
    radial-gradient(circle at 84% 12%, rgba(47, 141, 84, 0.13), transparent 22rem),
    linear-gradient(180deg, #ffffff 0%, #fffaf4 54%, #f4fbff 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  /*border-bottom: 1px solid rgba(255, 255, 255, 0.72);*/
  /*background: rgba(255, 255, 255, 0.76);*/
  backdrop-filter: blur(20px);
}

.nav {
  width: min(1160px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  object-position: 50% 34%;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 999px;
  white-space: nowrap;
  transition: color 180ms ease, background 180ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--ink);
  background: rgba(255, 122, 50, 0.1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(255, 122, 50, 0.38);
  border-radius: 999px;
  background: var(--peach);
  color: #fff;
  box-shadow: 0 14px 30px rgba(255, 122, 50, 0.24);
  font-weight: 750;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: #ff6a1a;
  box-shadow: 0 18px 36px rgba(255, 122, 50, 0.28);
}

.button.secondary {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
  box-shadow: none;
}

.button.secondary:hover {
  background: var(--sky);
  box-shadow: 0 14px 30px rgba(24, 48, 65, 0.08);
}

.hero {
  position: relative;
  width: min(1160px, calc(100% - 32px));
  min-height: calc(100vh - 76px);
  margin: 0 auto;
  padding: 70px 0 54px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  align-items: center;
  gap: 52px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 8px 12px;
  border: 1px solid rgba(47, 141, 84, 0.2);
  border-radius: 999px;
  background: rgba(223, 247, 242, 0.74);
  color: #226842;
  font-size: 0.9rem;
  font-weight: 720;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--leaf);
  box-shadow: 0 0 0 0 rgba(47, 141, 84, 0.42);
  animation: pulse 2.4s ease-out infinite;
}

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

h1 {
  margin-bottom: 18px;
  max-width: 760px;
  font-size: clamp(3.1rem, 7vw, 6.35rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h1 span,
.accent {
  color: var(--peach);
}

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

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

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

.logo-orbit {
  position: relative;
  width: min(430px, 80vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 42px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 246, 239, 0.72)),
    radial-gradient(circle at 35% 30%, rgba(255, 122, 50, 0.18), transparent 46%);
  box-shadow: var(--shadow);
  animation: float 6.5s ease-in-out infinite;
}

.logo-orbit::before,
.logo-orbit::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(24, 48, 65, 0.1);
  inset: 26px;
  animation: rotate 16s linear infinite;
}

.logo-orbit::after {
  inset: 62px;
  border-color: rgba(255, 122, 50, 0.22);
  animation-duration: 22s;
  animation-direction: reverse;
}

.logo-orbit img {
  width: 64%;
  filter: drop-shadow(0 18px 30px rgba(24, 48, 65, 0.16));
  z-index: 1;
}

.chip {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 35px rgba(24, 48, 65, 0.1);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 760;
  backdrop-filter: blur(12px);
}

.chip.one {
  top: 44px;
  right: 12px;
}

.chip.two {
  left: 2px;
  bottom: 92px;
}

.chip.three {
  right: 40px;
  bottom: 24px;
}

.section {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 76px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1;
  letter-spacing: 0;
}

.section-heading p,
.page-lead {
  color: var(--muted);
  font-size: 1.08rem;
}

.grid {
  display: grid;
  gap: 18px;
}

.services-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  min-height: 220px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 12px 35px rgba(24, 48, 65, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 122, 50, 0.32);
  box-shadow: 0 20px 42px rgba(24, 48, 65, 0.1);
}

.icon {
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--peach), #ffb16f);
  font-weight: 900;
}

.card h3 {
  margin-bottom: 10px;
  font-size: 1.28rem;
}

.card p {
  color: var(--muted);
}

.process {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: start;
}

.steps {
  counter-reset: step;
  display: grid;
  gap: 12px;
}

.step {
  position: relative;
  padding: 22px 22px 22px 70px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 20px;
  top: 22px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--aqua);
  color: #1f7147;
  font-weight: 850;
}

.work-band {
  padding: 76px 0;
  background:
    linear-gradient(90deg, rgba(255, 122, 50, 0.12), transparent 38%),
    linear-gradient(135deg, #ffffff, #eef9ff);
}

.work-inner {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 44px;
  align-items: center;
}

.metrics {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.metric {
  padding: 20px;
  border-left: 3px solid var(--peach);
  background: rgba(255, 255, 255, 0.68);
}

.metric strong {
  display: block;
  margin-bottom: 4px;
  font-size: 2rem;
}

.metric span {
  color: var(--muted);
}

.cta {
  text-align: center;
}

.cta p {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  color: var(--muted);
  font-size: 1.1rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.footer-inner {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 36px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: start;
  color: var(--muted);
}

.footer-inner strong {
  color: var(--ink);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.footer-links a {
  color: var(--ink);
  font-weight: 680;
}

.page-shell {
  width: min(940px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0 86px;
}

.page-title {
  margin-bottom: 16px;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 0.96;
}

.content {
  margin-top: 34px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 42px rgba(24, 48, 65, 0.07);
  overflow-wrap: anywhere;
}

.content h2 {
  margin-top: 30px;
  margin-bottom: 10px;
}

.content h2:first-child {
  margin-top: 0;
}

.content p,
.content li {
  color: var(--muted);
}

.content a {
  color: #d95d18;
  font-weight: 720;
}

.project-list {
  display: grid;
  gap: 14px;
  margin: 18px 0 8px;
}

.project-item {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 244, 0.68);
}

.project-item h3 {
  margin: 0 0 10px;
  font-size: 1.22rem;
}

.project-item p:last-child {
  margin-bottom: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 680ms ease, transform 680ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-16px);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(47, 141, 84, 0.42);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(47, 141, 84, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(47, 141, 84, 0);
  }
}

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

@media (max-width: 900px) {
  .nav {
    min-height: auto;
    padding: 14px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero,
  .process,
  .work-inner {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 46px;
  }

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

  .services-grid,
  .metrics,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .brand img {
    width: 38px;
    height: 38px;
  }

  .nav-links {
    gap: 4px;
    font-size: 0.82rem;
  }

  .nav-links a {
    padding: 8px 6px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .chip {
    font-size: 0.78rem;
    min-height: 36px;
  }

  .chip.one {
    top: 10px;
    right: 0;
  }

  .chip.two {
    left: 0;
    bottom: 64px;
  }

  .chip.three {
    right: 8px;
    bottom: 8px;
  }

  .logo-orbit {
    border-radius: 28px;
  }

  .content {
    padding: 22px;
  }
}
