@font-face {
  font-family: "CodeVest Raleway";
  src: url("Raleway-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --gold: #d4af37;
  --gold-light: #e6c35c;
  --gold-dark: #b8962e;
  --gold-pale: #fbf6e5;
  --black: #080808;
  --ink: #171717;
  --muted: #6c6656;
  --white: #ffffff;
  --soft-white: #fffefa;
  --line: rgba(8, 8, 8, 0.11);
  --gradient: linear-gradient(135deg, #E6C35C 0%, #D4AF37 50%, #B8962E 100%);
  --shadow: 0 24px 70px rgba(212, 175, 55, 0.24);
}

* {
  box-sizing: border-box;
  font-weight: 300 !important;
  font-variation-settings: "wght" 300;
  font-synthesis: none;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "CodeVest Raleway", Arial, sans-serif;
  color: var(--ink);
  background: var(--soft-white);
}

body::before {
  content: none;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 0;
  background: transparent;
  backdrop-filter: none;
  isolation: isolate;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(255, 254, 250, 0.82);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
  transition: border-color 220ms ease, background 220ms ease;
}

.site-header.is-scrolled::before {
  background: rgba(255, 254, 250, 0.94);
  border-bottom-color: rgba(8, 8, 8, 0.08);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(220px, 22vw, 315px);
  min-width: 220px;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 32px);
  font-size: 1rem;
}

.nav-panel a {
  position: relative;
  color: var(--black);
}

.nav-panel a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--gradient);
  transition: width 220ms ease;
}

.nav-panel a:hover::after {
  width: 100%;
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 8px;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.nav-cta {
  padding: 0 18px;
  color: var(--black) !important;
  background: var(--gradient);
  box-shadow: none;
}

.btn {
  padding: 0 24px;
  border: 1px solid transparent;
}

.btn:hover,
.nav-cta:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--black);
  background: var(--gradient);
  box-shadow: none;
}

.btn-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(8, 8, 8, 0.16);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(8, 8, 8, 0.12);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.72);
}

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

.section {
  position: relative;
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(64px, 8vw, 104px) 0;
  background: var(--soft-white);
}

.products {
  background: var(--soft-white);
  box-shadow: 0 0 0 100vmax var(--soft-white);
  clip-path: inset(0 -100vmax);
}

.services {
  background: var(--soft-white);
  box-shadow: 0 0 0 100vmax var(--soft-white);
  clip-path: inset(0 -100vmax);
}

.contact {
  background: var(--white);
  box-shadow: 0 0 0 100vmax var(--white);
  clip-path: inset(0 -100vmax);
}

.hero {
  width: 100%;
  min-height: calc(100vh - 92px);
  display: grid;
  align-items: start;
  padding: clamp(32px, 4.5vw, 56px) max(16px, calc((100vw - 1240px) / 2)) clamp(64px, 7vw, 96px);
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 0 0 100vmax var(--white);
  clip-path: inset(0 -100vmax);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: clamp(40px, 7vw, 96px);
  width: 100%;
}

@media (max-width: 1180px) and (min-width: 981px) {
  .hero-grid {
    padding: 0 32px;
    gap: 48px;
  }

  .hero-copy {
    padding-left: 8px;
  }

  .hero-visual {
    padding-right: 8px;
  }
}

@media (min-width: 1181px) and (max-width: 1290px) {
  .hero-grid {
    padding: 0 40px;
    gap: 56px;
  }

  .hero-copy {
    padding-left: 8px;
  }

  .hero-visual {
    padding-right: 8px;
  }
}

.hero-copy {
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-dark);
  font-size: 0.78rem;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  color: var(--black);
  font-size: clamp(2.25rem, 4.7vw, 4.8rem);
  line-height: 1.03;
  letter-spacing: 0;
}

.hero-text {
  max-width: 480px;
  margin: 24px 0 0;
  color: rgba(8, 8, 8, 0.72);
  font-size: clamp(0.98rem, 1.15vw, 1.08rem);
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
}

.hero-visual {
  position: relative;
  min-height: clamp(360px, 45vw, 560px);
  display: grid;
  place-items: center;
  isolation: isolate;
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: min(94%, 540px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.96) 0 34%, rgba(255, 255, 255, 0.78) 35% 48%, transparent 49%),
    var(--gradient);
  box-shadow: var(--shadow);
  z-index: -2;
}

.hero-visual::after {
  content: "";
  position: absolute;
  width: min(108%, 610px);
  aspect-ratio: 1;
  border: 1px solid rgba(8, 8, 8, 0.1);
  border-radius: 50%;
  z-index: -3;
  animation: spin 18s linear infinite;
}

.logo-orbit {
  position: absolute;
  width: min(100%, 570px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.22) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.22) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(circle, transparent 0 42%, #000 43% 100%);
  opacity: 0.55;
  z-index: -1;
}

.hero-visual img {
  width: min(82%, 440px);
  border-radius: 0;
  filter: drop-shadow(0 24px 36px rgba(184, 150, 46, 0.28));
  transform: translateX(3%);
}

.section-head {
  position: absolute;
  top: 24px;
  left: 0;
  max-width: 720px;
  margin-bottom: 12px;
  text-align: left;
  transform: none;
}

.section-head h2 {
  margin: 0;
  color: var(--gold-dark);
  font-size: clamp(0.84rem, 0.95vw, 1rem);
  line-height: 1.2;
  letter-spacing: 0;
}

.section-subtitle {
  max-width: 760px;
  margin: 0 auto 56px;
  color: var(--black);
  font-size: clamp(1.55rem, 3vw, 2.55rem);
  line-height: 1.05;
  text-align: center;
  text-shadow: 0 0 0 var(--black);
  font-variation-settings: "wght" 520;
}

.product-coming-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.product-coming-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 32px;
  border: 1px dashed var(--gold);
  background: rgba(255, 255, 255, 0.58);
  text-align: center;
  box-shadow: 0 14px 34px rgba(212, 175, 55, 0.16), 0 5px 14px rgba(184, 150, 46, 0.1);
}

.product-status {
  margin-bottom: 24px;
  color: var(--gold-dark);
  font-size: 0.9rem;
}

.product-coming-card h3 {
  margin: 0;
  color: var(--black);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  line-height: 1;
  text-shadow: 0 0 0 var(--black);
}

.product-coming-card p {
  max-width: 360px;
  margin: 24px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

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

.service-card,
.contact-form,
.contact-card {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 34px rgba(212, 175, 55, 0.16), 0 5px 14px rgba(184, 150, 46, 0.1);
}

.service-card {
  min-height: 320px;
  padding: 40px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.service-card:hover {
  border-color: rgba(212, 175, 55, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(212, 175, 55, 0.18), 0 8px 20px rgba(184, 150, 46, 0.14);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.service-icon {
  width: auto;
  height: auto;
  display: grid;
  place-items: center;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  font-size: 2rem;
}

.service-card h3 {
  margin: 24px 0 16px;
  font-size: 1.3rem;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.service-tags {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 8px;
  width: 100%;
  max-width: 100%;
  margin-top: 32px;
}

.service-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 12px;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.34);
  border-radius: 999px;
  color: var(--gold-dark);
  background: rgba(212, 175, 55, 0.08);
  font-size: clamp(0.64rem, 0.68vw, 0.76rem);
  line-height: 1.1;
  text-align: center;
  white-space: nowrap;
}

.tech-stack {
  width: 100%;
  padding-right: max(16px, calc((100vw - 1240px) / 2));
  padding-left: max(16px, calc((100vw - 1240px) / 2));
  background: var(--white);
  box-shadow: 0 0 0 100vmax var(--white);
  clip-path: inset(0 -100vmax);
}

.tech-stack .section-head {
  left: max(16px, calc((100vw - 1240px) / 2));
}

.tech-stack .eyebrow {
  color: var(--gold-light);
}

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

.technology-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  padding: 32px;
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 34px rgba(212, 175, 55, 0.16), 0 5px 14px rgba(184, 150, 46, 0.1);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
  text-align: center;
}

.technology-card:hover {
  border-color: rgba(212, 175, 55, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(212, 175, 55, 0.18), 0 8px 20px rgba(184, 150, 46, 0.14);
}

.technology-icon {
  width: auto;
  height: auto;
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  font-size: 2rem;
}

.technology-card h3 {
  margin: 0 0 32px;
  color: var(--black);
  font-size: 1.45rem;
  line-height: 1.18;
}

.technology-card ul {
  display: grid;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.technology-card li {
  display: grid;
  gap: 8px;
  color: var(--muted);
  line-height: 1.6;
}

.technology-card li span {
  color: var(--black);
  font-size: 1.05rem;
}

.contact-card {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 40px);
  border: 0;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: none;
}

.contact-card .section-head {
  position: static;
  max-width: none;
  margin-bottom: 32px;
  text-align: center;
}

.contact-card .section-head h2 {
  color: var(--black);
  font-size: clamp(1.9rem, 3vw, 2.55rem);
  line-height: 1.05;
  text-shadow: 0 0 0 var(--black);
  font-variation-settings: "wght" 520;
}

.contact-form {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.contact-form .btn-primary {
  box-shadow: none;
}

.contact-form::after {
  content: none;
}

.contact-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 24px;
  color: var(--black);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px dashed var(--gold);
  border-radius: 0;
  padding: 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.form-status {
  min-height: 24px;
  margin: 16px 0 0;
  color: var(--gold-dark);
}

.footer {
  padding: 28px 16px;
  color: rgba(8, 8, 8, 0.68);
  background: var(--white);
  text-align: center;
  border-top: 1px solid var(--line);
}

.footer p {
  margin: 0;
}

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

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

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

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

  .nav-panel {
    position: absolute;
    top: 92px;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(8, 8, 8, 0.12);
    border-radius: 0;
    background: rgba(255, 253, 247, 0.98);
    box-shadow: none;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 200ms ease, transform 200ms ease;
  }

  .nav-panel.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-panel a {
    padding: 14px;
  }

  .nav-cta {
    margin-top: 8px;
    justify-self: start;
    width: fit-content;
  }

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

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

  .hero-visual {
    min-height: 300px;
    order: -1;
    margin-bottom: 40px;
  }

  .hero-visual img {
    width: min(70%, 320px);
  }

  .hero-visual::before {
    width: min(72%, 360px);
  }

  .hero-visual::after,
  .logo-orbit {
    width: min(82%, 410px);
  }

  .hero-copy {
    max-width: none;
    text-align: center;
    padding: 0 12px;
  }

  .hero-text {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-actions {
    justify-content: center;
  }

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

  .product-coming-grid {
    grid-template-columns: 1fr;
  }

  .technology-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .navbar {
    width: min(100% - 24px, 1240px);
    min-height: 78px;
  }

  .brand {
    width: 210px;
    min-width: 210px;
  }

  .nav-panel {
    top: 78px;
    left: 12px;
    right: 12px;
  }

  .section {
    width: min(100% - 24px, 1240px);
    padding: 56px 0;
  }

  .section-head {
    margin-bottom: 8px;
    top: 16px;
    transform: none;
  }

  .tech-stack .section-head {
    left: 12px;
  }

  .section-head h2 {
    font-size: clamp(0.8rem, 4vw, 0.95rem);
  }

  .contact-card .section-head h2 {
    font-size: clamp(1.55rem, 7vw, 2rem);
  }

  .section-subtitle {
    margin: 0 auto 40px;
    font-size: clamp(1.35rem, 7vw, 2rem);
  }

  .hero {
    padding: 64px 12px 64px;
  }

  .hero-visual {
    min-height: 230px;
    margin-bottom: 36px;
  }

  .hero-visual img {
    width: min(70%, 220px);
    border-radius: 0;
  }

  .hero-visual::before {
    width: min(82%, 280px);
  }

  .hero-visual::after,
  .logo-orbit {
    width: min(94%, 330px);
  }

  h1 {
    font-size: 3rem;
  }

  .hero-text {
    font-size: 0.92rem;
    line-height: 1.5;
  }

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

  .service-card {
    min-height: 250px;
    padding: 24px;
  }

  .service-tags {
    flex-wrap: wrap;
  }

  .technology-card {
    min-height: auto;
    padding: 24px;
  }
}

@media (min-width: 341px) and (max-width: 600px) {
  h1 {
    font-size: 2.55rem;
  }

  .hero-text {
    max-width: 320px;
    font-size: 0.86rem;
  }
}
