﻿@charset "UTF-8";

:root {
  --bg: #f4efe7;
  --surface: #fffaf3;
  --surface-strong: #102a43;
  --text: #13212f;
  --muted: #51606f;
  --line: rgba(16, 42, 67, 0.12);
  --brand: #d97706;
  --brand-dark: #a95504;
  --accent: #0f766e;
  --white: #ffffff;
  --shadow: 0 18px 60px rgba(16, 42, 67, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
  --container-desktop: 1360px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(217, 119, 6, 0.16), transparent 28%),
    linear-gradient(180deg, #fcf7f0 0%, #f4efe7 55%, #f8f3eb 100%);
}

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

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

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

@media (min-width: 1200px) {
  .container {
    width: min(calc(100% - 3rem), var(--container-desktop));
  }
}

.section {
  padding: 5.5rem 0;
}

.section-surface {
  background: rgba(255, 250, 243, 0.7);
  backdrop-filter: blur(8px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(244, 239, 231, 0.8);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: 84px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.875rem;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand), #f2b35d);
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-weight: 800;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.brand-text strong {
  color: var(--text);
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 1.4rem;
  color: var(--muted);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--brand-dark);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 52px;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

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

.button:focus-visible,
.site-nav a:focus-visible,
.footer-links a:focus-visible,
.about-link:focus-visible {
  outline: 3px solid rgba(15, 118, 110, 0.25);
  outline-offset: 3px;
}

.button-primary {
  background: linear-gradient(135deg, var(--brand), #f0a33b);
  color: var(--white);
  box-shadow: 0 18px 30px rgba(217, 119, 6, 0.24);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 22px 36px rgba(217, 119, 6, 0.28);
}

.button-secondary {
  border-color: rgba(16, 42, 67, 0.18);
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}

.hero {
  position: relative;
  padding-top: 4.5rem;
  padding-bottom: 4rem;
  overflow: clip;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(252, 247, 240, 0.96) 0%, rgba(252, 247, 240, 0.9) 32%, rgba(252, 247, 240, 0.38) 58%, rgba(252, 247, 240, 0.16) 100%),
    url("assets/hero-tech-bg.svg") center / cover no-repeat;
  opacity: 0.92;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 8% 4% auto;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 118, 110, 0.12), transparent 68%);
  filter: blur(10px);
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(2rem, 3vw, 3.5rem);
  align-items: start;
}

.eyebrow,
.section-kicker,
.hero-card-label,
.card-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1rem;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy h1,
.section-heading h2,
.section-heading-left h2,
.cta-box h2,
.about-grid h2,
.hero-card h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hero-copy h1 {
  max-width: 9.2ch;
  font-size: clamp(3.15rem, 4.8vw, 4.85rem);
}

.hero-text {
  max-width: 52ch;
  margin: 1.4rem 0 0;
  color: var(--muted);
  font-size: clamp(1.12rem, 1.15vw, 1.24rem);
  line-height: 1.78;
}

.hero-copy {
  padding-right: clamp(0rem, 1.4vw, 1rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 2rem 0;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-points li {
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  line-height: 1.5;
}

.hero-card,
.cta-box {
  position: relative;
  overflow: hidden;
  padding: 2rem;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 250, 243, 0.9)),
    var(--surface);
  border: 1px solid rgba(16, 42, 67, 0.08);
  box-shadow: var(--shadow);
}

.hero-card {
  width: min(100%, 430px);
  justify-self: end;
}

.hero-card::after,
.cta-box::after {
  content: "";
  position: absolute;
  inset: auto -60px -60px auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 118, 110, 0.18), transparent 70%);
}

.hero-card h2 {
  font-size: clamp(2rem, 3.2vw, 2.8rem);
}

.hero-card p {
  position: relative;
  margin: 1rem 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.hero-stats {
  display: grid;
  gap: 1rem;
  margin: 2rem 0 0;
}

.hero-stats div {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.hero-stats dt {
  margin-bottom: 0.35rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-stats dd {
  margin: 0;
  font-weight: 700;
  font-family: "Manrope", sans-serif;
}

.about-grid,
.process-layout,
.cta-box,
.footer-layout {
  display: grid;
  gap: 2rem;
}

.about-panel {
  padding: 3.5rem 3rem 2.25rem;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
}

.about-grid {
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.96fr);
  align-items: center;
  gap: 2.5rem;
}

.about-visual {
  display: grid;
  justify-items: center;
  gap: 0.75rem;
}

.about-art {
  position: relative;
  width: min(100%, 520px);
  min-height: 430px;
  display: grid;
  align-items: end;
  justify-items: center;
}

.about-art::before {
  content: "";
  position: absolute;
  inset: 14% 2% 20% 10%;
  background:
    radial-gradient(circle at 30% 40%, rgba(95, 192, 255, 0.9), transparent 38%),
    radial-gradient(circle at 68% 35%, rgba(95, 224, 195, 0.72), transparent 34%),
    linear-gradient(90deg, rgba(70, 170, 238, 0.86), rgba(88, 218, 201, 0.72));
  clip-path: polygon(6% 41%, 23% 31%, 51% 25%, 76% 18%, 95% 24%, 100% 37%, 84% 46%, 100% 57%, 92% 73%, 67% 74%, 42% 80%, 14% 73%, 0 58%, 13% 49%);
  filter: blur(0.4px);
  opacity: 0.95;
}

.about-art::after {
  content: "";
  position: absolute;
  inset: 19% 7% 17% 0;
  background:
    linear-gradient(90deg, rgba(74, 170, 233, 0.16), rgba(88, 218, 201, 0.08));
  clip-path: polygon(0 44%, 38% 28%, 82% 24%, 100% 29%, 84% 44%, 100% 55%, 89% 69%, 48% 74%, 10% 66%);
}

.about-portrait {
  position: relative;
  z-index: 1;
  margin: 0;
  width: min(100%, 350px);
}

.about-portrait img {
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 12;
  object-fit: cover;
  object-position: center top;
  border-radius: 0 0 26px 26px;
  box-shadow: 0 18px 45px rgba(16, 42, 67, 0.18);
}

.about-caption {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.about-grid h2,
.section-heading h2,
.section-heading-left h2,
.cta-box h2 {
  font-size: clamp(2.35rem, 4.4vw, 4rem);
}

.section-heading h2,
.section-heading-left h2,
.cta-box h2,
.about-grid h2,
.hero-card h2 {
  max-width: 14ch;
}

.about-copy p,
.section-heading p,
.section-heading-left p,
.cta-box p,
.feature-card p,
.service-card p,
.process-list p,
.site-footer p {
  color: var(--muted);
  line-height: 1.75;
}

.about-copy {
  max-width: 50ch;
  padding-top: 0;
}

.about-copy p {
  margin: 0 0 1.15rem;
}

.about-lead {
  margin: 0 0 1.4rem;
  color: var(--text);
  font-size: clamp(1.2rem, 1.2vw, 1.4rem);
  line-height: 1.65;
  font-weight: 600;
}

.about-signature {
  margin-top: 1.5rem;
  font-weight: 600;
  color: var(--text);
}

.about-cta-row {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.about-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0.95rem 1.8rem;
  border: 2px solid rgba(16, 42, 67, 0.55);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--text);
  font-family: "Manrope", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.about-link:hover,
.about-link:focus-visible {
  transform: translateY(-1px);
  border-color: var(--brand-dark);
  box-shadow: 0 12px 28px rgba(16, 42, 67, 0.12);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 2.6rem;
}

.section-heading-compact {
  margin-bottom: 1.6rem;
}

.cards-grid,
.feature-grid {
  display: grid;
  gap: 1.4rem;
}

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

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

.service-card,
.feature-card {
  padding: 1.7rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
}

.service-card h3,
.feature-card h3 {
  margin: 0 0 0.8rem;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.45rem, 1.45vw, 1.8rem);
}

.service-problem,
.service-result {
  font-weight: 600;
}

.service-problem,
.service-result,
.service-card>p:not(.service-problem):not(.service-result),
.feature-card p {
  max-width: 34ch;
}

.service-card p,
.feature-card p {
  margin: 0;
}

.service-card>p+p,
.feature-card p {
  margin-top: 0.9rem;
}

.service-card>p:not(.service-problem):not(.service-result) {
  line-height: 1.68;
}

.process-layout {
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: start;
}

.process-list {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: process;
}

.process-list li {
  counter-increment: process;
  padding: 1.35rem 1.35rem 1.35rem 4.7rem;
  position: relative;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
}

.process-list li::before {
  content: counter(process);
  position: absolute;
  left: 1.2rem;
  top: 1.25rem;
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: var(--surface-strong);
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-weight: 800;
}

.process-list strong {
  display: block;
  margin-bottom: 0.4rem;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.2rem, 1.2vw, 1.45rem);
}

.cta-section {
  padding-top: 1rem;
  padding-bottom: 5.5rem;
}

.cta-box {
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  align-items: center;
  background:
    linear-gradient(135deg, rgba(16, 42, 67, 0.98), rgba(18, 55, 86, 0.94)),
    var(--surface-strong);
}

.cta-box h2,
.cta-box p,
.cta-box .section-kicker,
.cta-note {
  color: var(--white);
}

.cta-actions {
  display: grid;
  gap: 1rem;
  justify-items: start;
}

.cta-note {
  margin: 0;
  max-width: 30ch;
  opacity: 0.82;
}

.site-footer {
  padding: 1.2rem 0 2.4rem;
}

.footer-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1.2rem;
  color: var(--muted);
}

@media (max-width: 1280px) {

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

@media (max-width: 1080px) {

  .hero-grid,
  .about-grid,
  .process-layout,
  .cta-box,
  .footer-layout {
    grid-template-columns: 1fr;
  }

  .hero-points {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-right: 0;
  }

  .hero-card {
    width: 100%;
    justify-self: stretch;
  }

  .about-copy {
    max-width: none;
    padding-top: 0;
  }

  .about-panel {
    padding: 2.5rem 1.6rem 1.8rem;
  }

  .about-art {
    min-height: 360px;
  }

  .section {
    padding: 4.5rem 0;
  }
}

@media (max-width: 820px) {

  .site-nav,
  .button-header {
    display: none;
  }

  .header-inner {
    min-height: 72px;
  }

  .hero {
    padding-top: 2.75rem;
  }

  .hero::before {
    inset: 0;
    background:
      linear-gradient(180deg, rgba(252, 247, 240, 0.9) 0%, rgba(252, 247, 240, 0.74) 30%, rgba(252, 247, 240, 0.4) 100%),
      url("assets/hero-tech-bg.svg") 64% center / cover no-repeat;
    opacity: 0.86;
  }

  .hero::after {
    width: 240px;
    height: 240px;
    inset: auto 5% 6% auto;
  }

  .hero-copy h1 {
    max-width: 12ch;
    font-size: clamp(2.7rem, 11vw, 4.6rem);
  }

  .hero-card,
  .cta-box,
  .service-card,
  .feature-card,
  .process-list li {
    padding: 1.25rem;
  }

  .about-art {
    min-height: 300px;
  }

  .about-portrait {
    width: min(100%, 280px);
  }

  .about-cta-row {
    justify-content: stretch;
  }

  .about-link {
    width: 100%;
  }

  .process-list li {
    padding-left: 4.3rem;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 1.25rem), var(--container));
  }

  .section {
    padding: 4rem 0;
  }

  .hero-actions,
  .footer-links {
    align-items: stretch;
  }

  .hero-actions .button,
  .cta-actions .button {
    width: 100%;
  }

  .cta-note {
    max-width: none;
  }
}
