:root {
  --ink: #101418;
  --muted: #66727e;
  --soft: #f5f5f7;
  --paper: #ffffff;
  --line: rgba(16, 20, 24, 0.1);
  --blue: #0071e3;
  --teal: #18c6b0;
  --green: #17b26a;
  --dark: #050607;
  --shadow: 0 30px 80px rgba(20, 24, 28, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "Segoe UI", sans-serif;
  line-height: 1.45;
  text-rendering: optimizeLegibility;
}

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

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

.site-header {
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% 96%, rgba(0, 113, 227, 0.16), transparent 34%),
    linear-gradient(180deg, #fbfbfd 0%, #f5f5f7 64%, #ffffff 100%);
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 14px 0;
  color: rgba(16, 20, 24, 0.78);
}

.nav::before {
  position: fixed;
  inset: 0 0 auto;
  z-index: -1;
  height: 56px;
  content: "";
  border-bottom: 1px solid rgba(16, 20, 24, 0.08);
  background: rgba(251, 251, 253, 0.76);
  backdrop-filter: blur(22px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #fff;
  background: #111;
  border-radius: 9px;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.95rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.72rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
  font-size: 0.86rem;
  font-weight: 650;
}

.nav-links a:hover {
  color: var(--blue);
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 750;
}

.nav-cta {
  min-height: 36px;
  padding: 0 18px;
  color: #fff;
  background: var(--blue);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(16, 20, 24, 0.06);
}

.nav-toggle span {
  display: block;
  width: 17px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  min-height: calc(88vh - 64px);
  margin: 0 auto;
  padding: 50px 0 52px;
}

.eyebrow {
  margin: 0 0 14px;
  color: #6e6e73;
  font-size: 0.82rem;
  font-weight: 760;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(3.35rem, 6vw, 5.55rem);
  font-weight: 850;
  line-height: 0.96;
}

h2 {
  max-width: 830px;
  margin-bottom: 18px;
  font-size: clamp(2.4rem, 5vw, 5.2rem);
  font-weight: 850;
  line-height: 0.98;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
  line-height: 1.1;
}

.hero-lede,
.section-heading p:not(.eyebrow),
.split-band p:not(.eyebrow),
.contact p {
  color: var(--muted);
  font-size: 1.18rem;
}

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

.button {
  border: 0;
  padding: 0 22px;
  cursor: pointer;
}

.button.primary {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 12px 30px rgba(0, 113, 227, 0.2);
}

.button.secondary {
  color: var(--blue);
  background: rgba(0, 113, 227, 0.08);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 560px;
  margin: 0;
}

.hero-stats div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 34px rgba(20, 24, 28, 0.06);
}

.hero-stats dt {
  font-size: 1.9rem;
  font-weight: 850;
}

.hero-stats dd {
  margin: 0;
  color: var(--muted);
}

.hero-panel {
  position: relative;
  min-height: 560px;
}

.hero-panel::before {
  position: absolute;
  inset: 14% 2% 5%;
  content: "";
  border-radius: 48%;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.92), transparent 34%),
    linear-gradient(135deg, rgba(0, 113, 227, 0.18), rgba(24, 198, 176, 0.16));
  filter: blur(4px);
}

.product-stage {
  position: relative;
  min-height: 488px;
}

.camera-product,
.dish-product,
.phone-preview {
  position: absolute;
  filter: drop-shadow(0 34px 48px rgba(16, 20, 24, 0.18));
  transform: translateY(18px);
  animation: floatIn 900ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.camera-product {
  left: 3%;
  bottom: 44px;
  width: 260px;
  height: 220px;
  border-radius: 54px;
  background:
    radial-gradient(circle at 50% 48%, #0b0d10 0 21%, #2b3035 22% 28%, transparent 29%),
    linear-gradient(145deg, #ffffff, #dfe3e8);
}

.camera-product::before {
  position: absolute;
  inset: 28px 32px auto;
  height: 64px;
  content: "";
  border-radius: 32px;
  background: linear-gradient(145deg, #f8fafc, #ccd3da);
}

.camera-lens {
  position: absolute;
  top: 76px;
  left: 50%;
  width: 98px;
  height: 98px;
  border: 12px solid #333940;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 32%, rgba(255, 255, 255, 0.7), transparent 12%),
    radial-gradient(circle, #111 0 38%, #1c2530 39% 100%);
  transform: translateX(-50%);
}

.camera-base {
  position: absolute;
  right: 42px;
  bottom: -42px;
  left: 42px;
  height: 54px;
  border-radius: 50%;
  background: rgba(16, 20, 24, 0.14);
  filter: blur(10px);
}

.dish-product {
  right: 2%;
  bottom: 12px;
  width: 300px;
  height: 300px;
  animation-delay: 120ms;
}

.dish-face {
  position: absolute;
  top: 20px;
  left: 22px;
  width: 240px;
  height: 150px;
  border: 1px solid rgba(16, 20, 24, 0.1);
  border-radius: 50%;
  background: linear-gradient(145deg, #ffffff, #d9dee4);
  transform: rotate(-16deg);
}

.dish-face::after {
  position: absolute;
  inset: 28px;
  content: "";
  border: 1px solid rgba(16, 20, 24, 0.08);
  border-radius: 50%;
}

.dish-arm {
  position: absolute;
  top: 142px;
  left: 136px;
  width: 96px;
  height: 14px;
  border-radius: 999px;
  background: #c8ced5;
  transform: rotate(32deg);
}

.dish-stand {
  position: absolute;
  top: 174px;
  left: 156px;
  width: 24px;
  height: 110px;
  border-radius: 999px;
  background: linear-gradient(90deg, #d8dde3, #aeb8c2);
}

.phone-preview {
  top: 10px;
  left: 34%;
  width: 210px;
  min-height: 394px;
  border: 8px solid #191c20;
  border-radius: 42px;
  background: #111;
  animation-delay: 220ms;
}

.phone-speaker {
  position: absolute;
  top: 16px;
  left: 50%;
  width: 58px;
  height: 5px;
  border-radius: 999px;
  background: #34383e;
  transform: translateX(-50%);
}

.phone-screen {
  display: grid;
  gap: 12px;
  margin: 34px 14px 14px;
  border-radius: 28px;
  padding: 22px 16px;
  color: #fff;
  background:
    radial-gradient(circle at 80% 18%, rgba(24, 198, 176, 0.34), transparent 26%),
    linear-gradient(180deg, #1c2128, #0b0d10);
}

.phone-screen small {
  color: rgba(255, 255, 255, 0.58);
  font-weight: 750;
}

.phone-screen strong {
  margin-bottom: 26px;
  font-size: 1.7rem;
  line-height: 1;
}

.phone-screen span {
  height: 54px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
}

.phone-screen span:nth-child(4) {
  background: rgba(0, 113, 227, 0.32);
}

.showcase-caption {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 5px;
  width: min(520px, 92%);
  margin: -18px auto 0;
  padding: 20px 24px;
  border: 1px solid rgba(16, 20, 24, 0.08);
  border-radius: 24px;
  text-align: center;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 22px 60px rgba(20, 24, 28, 0.1);
  backdrop-filter: blur(20px);
}

.showcase-caption strong {
  font-size: 1.08rem;
}

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

.logo-strip {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: -48px;
  padding: 18px 16px;
  color: #6e6e73;
  background: rgba(251, 251, 253, 0.88);
  backdrop-filter: blur(18px);
}

.logo-strip span {
  min-width: 118px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 760;
}

.section,
.process,
.contact,
.split-band,
.proof {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 110px 0;
}

.section.compact {
  padding-top: 66px;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 38px;
}

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

.service-card,
.price-card,
.timeline article,
.quote,
.faq details,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(20, 24, 28, 0.07);
}

.service-card {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  padding: 26px;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.service-card::after {
  position: absolute;
  right: -40px;
  bottom: -38px;
  width: 170px;
  height: 170px;
  z-index: 0;
  content: "";
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(0, 113, 227, 0.12), rgba(24, 198, 176, 0.1));
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.service-card.featured {
  color: #fff;
  background:
    radial-gradient(circle at 72% 70%, rgba(0, 113, 227, 0.26), transparent 34%),
    linear-gradient(145deg, #171a1f, #050607);
}

.service-card.featured::after {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04));
}

.service-card p,
.price-card p,
.price-card li,
.timeline p,
.quote strong,
.faq p,
.form-note {
  color: var(--muted);
}

.service-card.featured p {
  color: rgba(255, 255, 255, 0.68);
}

.service-card a,
.price-card a,
.contact-links a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--blue);
  font-weight: 800;
  line-height: 1.2;
}

.service-card.featured a {
  color: #70c4ff;
}

.icon {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 58px;
  place-items: center;
  border-radius: 14px;
  color: var(--blue);
  background: rgba(0, 113, 227, 0.1);
  font-size: 1.25rem;
  font-weight: 900;
}

.featured .icon {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.orbit {
  position: absolute;
  right: 62px;
  bottom: 54px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 18px rgba(255, 255, 255, 0.08);
}

.split-band {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 54px;
  align-items: center;
  margin-top: 18px;
  padding: 82px;
  color: #fff;
  background:
    radial-gradient(circle at 72% 42%, rgba(0, 113, 227, 0.34), transparent 36%),
    linear-gradient(145deg, #16181d, #050607);
  border-radius: 38px;
}

.split-band .eyebrow {
  color: rgba(255, 255, 255, 0.6);
}

.split-band p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.68);
}

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

.audit-device {
  width: min(470px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 34px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(20px);
}

.audit-window {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: 24px;
  background: #f5f5f7;
}

.audit-window span {
  display: block;
  height: 56px;
  border-radius: 16px;
  background: #fff;
}

.audit-window span:first-child {
  width: 72%;
  background: linear-gradient(90deg, #e9eef5, #fff);
}

.audit-progress {
  display: grid;
  place-items: center;
  width: 190px;
  height: 190px;
  margin: -42px auto 10px;
  border: 14px solid rgba(255, 255, 255, 0.16);
  border-top-color: #fff;
  border-right-color: var(--blue);
  border-radius: 50%;
  text-align: center;
}

.audit-progress strong {
  font-size: 4rem;
  line-height: 1;
}

.audit-progress small {
  width: 120px;
  color: rgba(255, 255, 255, 0.62);
  font-weight: 760;
}

.audit-checks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.audit-checks p {
  margin: 0;
  border-radius: 999px;
  padding: 10px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.78rem;
  font-weight: 760;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.price-card {
  padding: 30px;
}

.price-card.hot {
  border-color: rgba(0, 113, 227, 0.26);
  box-shadow: 0 28px 72px rgba(0, 113, 227, 0.14);
}

.tag {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #fff;
  background: var(--blue);
  font-size: 0.76rem;
  font-weight: 800;
}

.price-card ul {
  padding-left: 20px;
}

.process {
  padding: 70px 0 108px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.timeline article {
  padding: 30px;
}

.timeline span {
  display: block;
  margin-bottom: 38px;
  color: var(--blue);
  font-size: 3.2rem;
  font-weight: 850;
  line-height: 1;
}

.proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding-bottom: 48px;
}

.quote {
  padding: 32px;
}

.quote p {
  font-size: 1.2rem;
}

.faq {
  padding-top: 62px;
}

.faq details {
  padding: 22px 26px;
  margin-bottom: 12px;
}

.faq summary {
  cursor: pointer;
  font-weight: 800;
}

.faq p {
  margin: 12px 0 0;
}

.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
  padding: 92px 0;
}

.contact-links {
  display: grid;
  gap: 8px;
  margin-top: 22px;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 26px;
}

label {
  display: grid;
  gap: 8px;
  color: #35404a;
  font-weight: 760;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 15px;
  color: var(--ink);
  background: #fbfbfd;
  font: inherit;
}

textarea {
  resize: vertical;
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 28px max(16px, calc((100% - 1180px) / 2));
  color: rgba(255, 255, 255, 0.68);
  background: var(--dark);
}

footer strong {
  color: #fff;
}

.message-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 50% 100%, rgba(0, 113, 227, 0.16), transparent 34%),
    #fbfbfd;
}

.message-card {
  width: min(760px, 100%);
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: clamp(28px, 7vw, 64px);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  text-align: center;
}

.message-card .brand-mark {
  margin: 0 auto 26px;
}

.message-card h1 {
  max-width: none;
  margin-bottom: 18px;
  font-size: clamp(2.4rem, 7vw, 4.8rem);
}

.message-card p:not(.eyebrow) {
  max-width: 560px;
  margin: 0 auto 28px;
  color: var(--muted);
  font-size: 1.16rem;
}

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

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

@keyframes floatIn {
  to {
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 60px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(251, 251, 253, 0.94);
    box-shadow: var(--shadow);
    backdrop-filter: blur(20px);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 13px 16px;
  }

  .nav-cta {
    display: none;
  }

  .hero,
  .split-band,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 50px;
  }

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

@media (max-width: 680px) {
  .brand small {
    display: none;
  }

  h1 {
    font-size: clamp(2.75rem, 12vw, 4rem);
  }

  h2 {
    font-size: clamp(2.2rem, 11vw, 3.9rem);
  }

  .hero {
    min-height: auto;
    padding-bottom: 56px;
  }

  .service-grid,
  .pricing-grid,
  .timeline,
  .proof {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    display: none;
  }

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

  .product-stage {
    min-height: 440px;
  }

  .camera-product {
    left: 0;
    bottom: 62px;
    width: 190px;
    height: 162px;
  }

  .camera-lens {
    top: 55px;
    width: 72px;
    height: 72px;
  }

  .dish-product {
    right: -28px;
    bottom: 16px;
    transform: scale(0.76);
    transform-origin: bottom right;
  }

  .phone-preview {
    top: 0;
    left: 38%;
    width: 178px;
    min-height: 340px;
  }

  .showcase-caption {
    margin-top: -52px;
  }

  .section {
    padding: 76px 0;
  }

  .split-band {
    padding: 32px 22px;
    border-radius: 28px;
  }

  .audit-checks {
    grid-template-columns: 1fr;
  }

  .contact {
    padding: 76px 0;
  }
}
