*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

.skip-link {
  position: fixed; top: 12px; left: 12px; z-index: 9999;
  padding: 10px 18px; border-radius: 8px;
  background: #e6a817; color: #0d0d0d;
  font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 500;
  text-decoration: none;
  transform: translateY(-120%);
  transition: transform 0.2s;
}
.skip-link:focus { transform: translateY(0); }

:root {
  --bg: #0d0d0d;
  --surface: #161616;
  --amber: #e6a817;
  --amber-dark: #c9910b;
  --amber-light: rgba(230,168,23,0.12);
  --border: rgba(255,255,255,0.07);
  --border-amber: rgba(230,168,23,0.25);
  --text: #ffffff;
  --text-secondary: rgba(255,255,255,0.55);
  --text-muted: rgba(255,255,255,0.4);
  --text-muted-2: rgba(255,255,255,0.3);
  --nav-h: 56px;
  --max-w: 1100px;
}

body {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  padding-inline: clamp(24px, 6vw, 80px);
}

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(24px, 6vw, 80px);
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  background: rgba(13,13,13,0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 0.5px solid var(--border);
}

.logo {
  font-family: 'DM Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.4px;
  color: var(--text);
}
.logo span { color: var(--amber); }

.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: #fff; }

.nav-right { display: flex; align-items: center; gap: 10px; }
.theme-toggle {
  width: 36px; height: 36px;
  border: none;
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: color 0.2s;
}
.theme-toggle:hover { color: var(--amber); }

.btn-nav {
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 800;
  background: var(--amber);
  color: #0d0d0d;
  border: none;
  transition: opacity 0.2s;
}
.btn-nav:hover { opacity: 0.85; }

/* ─── HAMBURGER ─── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  width: 36px; height: 36px;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 16px; height: 2px;
  border-radius: 2px;
  background: var(--text);
  transition: 0.25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ─── MOBILE MENU ─── */
.menu-overlay {
  position: fixed; inset: 0; z-index: 998;
  background: rgba(0,0,0,0.6);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.menu-overlay.open { opacity: 1; pointer-events: auto; }

.mobile-menu {
  position: fixed; top: 0; right: 0; z-index: 999;
  width: min(300px, 80vw); height: 100vh;
  background: var(--surface);
  border-left: 0.5px solid var(--border);
  padding: 6rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  transition: background 0.2s, color 0.2s;
}
.mobile-menu a:hover { background: var(--amber-light); color: var(--amber); }
.mobile-menu a.active { color: var(--text); font-weight: 600; background: var(--amber-light); }
.mobile-cta {
  margin-top: 12px;
  background: var(--amber) !important;
  color: #0d0d0d !important;
  text-align: center;
  font-weight: 800 !important;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.btn-primary {
  background: var(--amber);
  color: #0d0d0d;
}
.btn-primary:hover { background: var(--amber-dark); }
.btn-outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--text);
}
.btn-outline:hover { border-color: var(--amber); color: var(--amber); }
.btn-lg { padding: 13px 28px; font-size: 14px; }

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  will-change: transform;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,13,13,1) 20%, rgba(13,13,13,0.85) 50%, rgba(13,13,13,0.6) 100%);
}

.hero .container {
  position: relative;
  z-index: 1;
  padding: 140px 0 120px;
  padding-inline: clamp(24px, 6vw, 80px);
}

.hero-content {
  max-width: 620px;
}

/* ─── PAGE HERO (subpages) ─── */
.page-hero {
  min-height: auto;
  padding: 0;
}
.page-hero .container {
  padding: 160px 0 100px;
  padding-inline: clamp(24px, 6vw, 80px);
}
.page-hero-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}


.hero .label {
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 1.25rem;
}
.hero h1 span { color: var(--amber); }

.hero-sub {
  max-width: 480px;
  margin-bottom: 2.25rem;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ─── LABEL ─── */
.label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.75rem;
}

/* ─── SECTIONS ─── */
.section {
  padding: 6rem 0;
}

.section-alt {
  background: var(--surface);
}

.section-title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 900;
  letter-spacing: -0.8px;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 3rem;
}

/* ─── FEATURES ─── */
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.feature-card {
  padding: 28px;
  border-radius: 16px;
  background: var(--surface);
  border: 0.5px solid var(--border);
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
}
.feature-card:hover {
  border-color: var(--border-amber);
  transform: translateY(-3px);
}

.feature-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.feature-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--amber-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
}

.badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
}
.badge-live {
  background: var(--amber);
  color: #0d0d0d;
}

.feature-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 0.6rem;
  letter-spacing: -0.3px;
}

.feature-card p {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  flex: 1;
}

.feature-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--amber);
  transition: gap 0.2s;
}
.feature-link:hover { gap: 10px; }

.feature-logo {
  width: 44px; height: 44px;
  border-radius: 12px;
  object-fit: contain;
}

/* ─── CTA SECTION ─── */
.cta-section {
  background: var(--surface);
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
  padding: 96px 0;
  text-align: center;
}

.cta-section .container {
  max-width: 680px;
}

.cta-section h2 {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 700;
  letter-spacing: -0.8px;
  line-height: 1.2;
  color: var(--amber);
  margin-bottom: 0.75rem;
}

.cta-section p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 2rem;
}

/* ─── FOOTER ─── */
.footer {
  border-top: 0.5px solid var(--border);
  padding: 60px 0 0;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  padding-bottom: 40px;
}
.footer-brand p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 12px 0 20px;
  max-width: 340px;
}
.footer-socials {
  display: flex;
  gap: 12px;
}
.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 0.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: 0.2s;
  text-decoration: none;
}
.footer-socials a:hover {
  border-color: var(--amber);
  color: var(--amber);
}
.footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.footer-col h4 {
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  color: var(--text-muted);
  font-size: 14px;
  padding: 4px 0;
  transition: color 0.2s;
  text-decoration: none;
}
.footer-col a:hover { color: var(--amber); }
.footer-bottom {
  border-top: 0.5px solid var(--border);
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
}
.footer-logo {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-logo-img {
  width: 24px;
  height: 24px;
  border-radius: 6px;
}
.footer-logo span { color: var(--amber); }

/* ─── PRODUCT SHOWCASE ─── */
.product-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 64px 0;
  border-bottom: 0.5px solid var(--border);
}
.product-showcase:last-of-type { border-bottom: none; }
.product-showcase.reverse { direction: rtl; }
.product-showcase.reverse > * { direction: ltr; }
.product-showcase-img {
  border-radius: 16px;
  overflow: hidden;
  border: 0.5px solid var(--border);
}
.product-showcase-img img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}
.product-showcase-content { direction: ltr; max-width: 480px; }
.product-logo { width: 44px; height: 44px; object-fit: contain; margin-bottom: 1rem; border-radius: 10px; }
.product-showcase-content .label { margin-bottom: 0.5rem; }
.product-showcase-content h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.5px;
  margin-bottom: 0.6rem;
}
.product-showcase-content p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

/* ─── ABOUT ─── */
.mission-block {
  max-width: 650px;
  margin: 0 auto 4rem;
}
.mission-block blockquote {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.55;
  color: rgba(255,255,255,0.8);
  border-left: 2px solid var(--amber);
  padding-left: 24px;
  margin-bottom: 1rem;
}
.mission-block cite {
  font-size: 13px;
  color: var(--text-secondary);
  font-style: normal;
  display: block;
  padding-left: 24px;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.team-card {
  border-radius: 16px;
  background: var(--surface);
  overflow: hidden;
  transition: border-color 0.2s;
}
.team-img {
  width: 100%; aspect-ratio: 1;
  overflow: hidden;
}
.team-img img { width: 100%; height: 100%; object-fit: cover; }
.team-card-content { padding: 20px; }
.team-role {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 4px;
}
.team-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: -0.3px;
  margin-bottom: 6px;
}
.team-bio {
  font-size: 12.5px;
  color: var(--text-secondary);
  line-height: 1.65;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.value-item {
  border-left: 2px solid rgba(230,168,23,0.3);
  padding-left: 16px;
}
.v-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--amber-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  margin-bottom: 0.75rem;
}
.value-item h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 4px;
}
.value-item p {
  font-size: 12.5px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ─── CONTACT ─── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: start; }
.contact-left h2 {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 900;
  letter-spacing: -0.6px;
  margin-bottom: 0.75rem;
}
.contact-left > p { font-size: 15px; color: var(--text-secondary); margin-bottom: 2rem; line-height: 1.75; }
.contact-items { display: flex; flex-direction: column; gap: 12px; }

.c-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-radius: 12px;
  background: var(--surface);
  border: 0.5px solid var(--border);
  text-decoration: none;
  transition: border-color 0.2s;
}
.c-item:hover { border-color: var(--border-amber); }
.c-icon {
  padding: 8px;
  border-radius: 8px;
  background: var(--amber-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--amber);
}
.c-icon svg { width: 16px; height: 16px; }
.c-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1px;
}
.c-value { font-size: 14px; color: var(--text); font-weight: 500; }

.cta-card {
  padding: 32px;
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid rgba(230,168,23,0.2);
  text-align: center;
}
.cta-card .label { margin-bottom: 0.5rem; }
.cta-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 0.6rem;
}
.cta-card p {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* ─── REVEAL ─── */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.5s cubic-bezier(0.16,1,0.3,1), transform 0.5s cubic-bezier(0.16,1,0.3,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }
.reveal-d5 { transition-delay: 0.5s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1000px) {
  .features-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .product-showcase { gap: 48px; }
}

@media (max-width: 800px) {
  .nav-links { display: none; }
  .nav-right .btn-nav { display: none; }
  .hamburger { display: flex; }
  .hero { min-height: auto; }
  .hero .container { padding: 100px 0 80px; padding-inline: clamp(24px, 6vw, 80px); }
  .page-hero .container { padding: 130px 0 70px; }

  .section { padding: 4rem 0; }
  .product-showcase { grid-template-columns: 1fr; gap: 32px; padding: 48px 0; }
  .product-showcase.reverse { direction: ltr; }
  .product-showcase-img img { height: 220px; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .cta-section { padding: 64px 0; }
  .values-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .hero .container { padding: 80px 0 60px; padding-inline: clamp(24px, 6vw, 80px); }
  .hero h1 { font-size: clamp(36px, 10vw, 44px); }
  .page-hero .container { padding: 110px 0 50px; }
  .section { padding: 3rem 0; }
  .team-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .feature-card { padding: 20px; }
  .feature-card h3 { font-size: 16px; }
  .features-grid { gap: 16px; }
  .product-showcase { padding: 32px 0; gap: 24px; }
  .cta-section { padding: 48px 0; }
  .footer-main { grid-template-columns: 1fr; gap: 40px; }
  .footer-cols { gap: 30px; }
}

@media (max-width: 375px) {
  .hero .container { padding: 70px 0 50px; padding-inline: 20px; }
  .hero h1 { font-size: clamp(30px, 9vw, 36px); }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { justify-content: center; }
  .page-hero .container { padding: 120px 0 60px; }
  .section { padding: 2.5rem 0; }
  .section-title { font-size: 22px; }
  .feature-card { padding: 16px; }
  .btn { padding: 11px 22px; font-size: 13px; }
  .cta-section { padding: 40px 0; }
  .cta-section h2 { font-size: 22px; }
  .product-showcase { padding: 24px 0; }
  .team-card-content { padding: 16px; }
  .c-item { padding: 14px 16px; }
  .cta-card { padding: 24px; }
  .mobile-menu { width: 260px; padding: 6rem 1.5rem 2rem; }
}
