:root {
  --ink: #101722;
  --ink-2: #172130;
  --ink-3: #202c3c;
  --paper: #f5f0e6;
  --paper-2: #e5dccd;
  --white: #ffffff;
  --muted: #aeb9c8;
  --cyan: #00a7e8;
  --magenta: #eb0a7b;
  --yellow: #ffe100;
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 22px 80px rgba(0, 0, 0, 0.28);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  background: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 2000;
  transform: translateY(-160%);
  background: var(--yellow);
  color: #111;
  padding: 10px 14px;
  border-radius: 4px;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(16, 23, 34, 0.9);
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.ink-strip {
  height: 5px;
  background: linear-gradient(90deg, var(--cyan) 0 27%, var(--magenta) 27% 56%, var(--yellow) 56% 84%, #050608 84%);
}

.nav-shell {
  width: min(1180px, calc(100% - 36px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
  color: var(--yellow);
  font-weight: 800;
  border-radius: 4px;
}

.brand-copy {
  display: grid;
  gap: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.desktop-nav a {
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

.desktop-nav a:hover {
  color: var(--white);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-cta {
  color: #071018;
  background: var(--yellow);
  padding: 10px 16px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
}

.menu-toggle,
.mobile-menu-head button {
  border: 0;
  cursor: pointer;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  margin: 5px auto;
  display: block;
  background: var(--white);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1100;
  transform: translate3d(0, -100%, 0);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    transform 0.45s ease,
    opacity 0.25s ease,
    visibility 0s linear 0.45s;
  background: #101722;
  background-image:
    linear-gradient(180deg, #101722 0%, #0b1018 100%);
  padding: 34px;
  isolation: isolate;
}

.mobile-menu.is-open {
  transform: translate3d(0, 0, 0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition:
    transform 0.45s ease,
    opacity 0.25s ease,
    visibility 0s linear 0s;
}

.mobile-menu-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 800;
}

.mobile-menu-head button {
  color: var(--ink);
  background: var(--yellow);
  padding: 10px 14px;
  border-radius: 4px;
}

.mobile-links {
  display: grid;
  gap: 16px;
  margin-top: 52px;
}

.mobile-links a {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  line-height: 1.1;
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding-top: 96px;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(9, 14, 22, 0.96) 0%, rgba(9, 14, 22, 0.78) 44%, rgba(9, 14, 22, 0.34) 100%),
    linear-gradient(0deg, rgba(16, 23, 34, 1) 0%, rgba(16, 23, 34, 0) 38%);
}

.hero-content-shell,
.hero-stats,
.section,
.contact-grid {
  position: relative;
  z-index: 2;
}

.hero-content-shell {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 780px) 330px;
  gap: 48px;
  align-items: end;
  padding: 90px 0 52px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 860px;
  font-size: clamp(48px, 8vw, 104px);
}

h2 {
  font-size: clamp(34px, 5vw, 68px);
}

h3 {
  font-size: 20px;
  line-height: 1.15;
}

p {
  color: rgba(255, 255, 255, 0.72);
}

.hero-lede {
  max-width: 680px;
  margin: 26px 0 0;
  font-size: 18px;
}

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

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 13px 18px;
  text-decoration: none;
  font-weight: 900;
  cursor: pointer;
}

.btn svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn-primary {
  color: #071018;
  background: var(--yellow);
}

.btn-secondary {
  color: var(--white);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.08);
}

.hero-proof,
.founder-panel,
.media-frame,
.quote-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-proof {
  padding: 26px;
}

.proof-label,
.media-caption span,
.founder-panel span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.proof-line {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.proof-line:first-of-type {
  margin-top: 20px;
}

.proof-line span {
  color: var(--magenta);
  font-weight: 900;
}

.hero-stats {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  background: rgba(16, 23, 34, 0.78);
  backdrop-filter: blur(14px);
}

.stat-item {
  padding: 24px;
  border-left: 1px solid var(--line);
}

.stat-item:first-child {
  border-left: 0;
}

.stat-item strong {
  display: block;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1;
}

.stat-item span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.section {
  padding: 110px 0;
}

.section-grid,
.section-heading,
.offering-grid,
.machine-grid,
.process-track,
.export-inner,
.partner-grid,
.contact-grid {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.75fr);
  gap: 64px;
  align-items: center;
}

.section-grid.reverse {
  grid-template-columns: minmax(330px, 0.92fr) minmax(0, 1fr);
}

.section-copy p {
  max-width: 650px;
  font-size: 17px;
}

.founder-panel {
  overflow: hidden;
}

.founder-panel img {
  width: 100%;
  aspect-ratio: 0.92;
  object-fit: cover;
}

.founder-panel div {
  padding: 22px;
}

.founder-panel strong {
  display: block;
  margin-top: 8px;
  font-size: 18px;
}

.team-section {
  background:
    linear-gradient(90deg, rgba(16, 23, 34, 0.98), rgba(23, 33, 48, 0.96)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 18px);
}

.team-layout {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
  gap: 54px;
  align-items: center;
}

.team-photo {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
}

.team-photo img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.team-photo figcaption {
  color: var(--muted);
  padding: 14px 16px;
  font-size: 13px;
  font-weight: 800;
}

.paper-section {
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.56)),
    var(--paper);
}

.paper-section .eyebrow,
.paper-section p,
.paper-section h2,
.paper-section h3 {
  color: var(--ink);
}

.section-heading {
  margin-bottom: 42px;
}

.section-heading h2 {
  max-width: 860px;
}

.offering-grid,
.machine-grid,
.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.offering-card,
.machine-card,
.process-card,
.partner-card {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid rgba(16, 23, 34, 0.12);
  background: rgba(255, 255, 255, 0.72);
}

.offering-card::before,
.machine-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 5px;
  background: var(--cyan);
}

.accent-magenta::before {
  background: var(--magenta);
}

.accent-yellow::before {
  background: var(--yellow);
}

.accent-paper::before {
  background: var(--ink-3);
}

.card-index {
  color: rgba(16, 23, 34, 0.24);
  font-size: 56px;
  font-weight: 900;
  line-height: 1;
}

.offering-card h3 {
  margin-top: 28px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
}

.offering-card p {
  color: rgba(16, 23, 34, 0.68);
}

.capability-section,
.process-section,
.contact-section {
  background: var(--ink);
}

.media-frame {
  overflow: hidden;
}

.media-frame video {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.media-caption {
  display: grid;
  gap: 8px;
  padding: 22px;
}

.capability-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.capability-list article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.capability-list h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
}

.capability-list p {
  margin-bottom: 0;
}

.infrastructure {
  background:
    linear-gradient(rgba(23, 33, 48, 0.94), rgba(23, 33, 48, 0.94)),
    repeating-linear-gradient(90deg, transparent 0 35px, rgba(255, 255, 255, 0.035) 36px 37px);
}

.machine-card {
  min-height: 270px;
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.06);
}

.machine-card:nth-child(2n)::before {
  background: var(--magenta);
}

.machine-card:nth-child(3n)::before {
  background: var(--yellow);
}

.machine-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
}

.machine-card ul {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.machine-card li {
  position: relative;
  color: rgba(255, 255, 255, 0.72);
  padding-left: 18px;
  margin-top: 10px;
}

.machine-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 6px;
  height: 6px;
  background: var(--yellow);
}

.process-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
}

.process-card {
  min-height: 300px;
  border: 0;
  border-left: 1px solid var(--line);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.06);
}

.process-card:first-child {
  border-left: 0;
}

.process-card span {
  color: var(--magenta);
  font-size: 48px;
  font-weight: 900;
}

.process-card h3 {
  margin-top: 52px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
}

.export-section {
  color: var(--ink);
  background: var(--yellow);
}

.export-section .eyebrow,
.export-section h2,
.export-section p {
  color: var(--ink);
}

.export-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 48px;
  align-items: start;
}

.export-inner p {
  max-width: 780px;
  color: rgba(16, 23, 34, 0.72);
}

.strength-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.strength-list li {
  color: var(--white);
  background: var(--ink);
  padding: 14px 16px;
  border-radius: 4px;
  font-weight: 900;
}

.partners-section {
  background: var(--ink-2);
}

.clients-layout {
  align-items: end;
  margin-bottom: 42px;
}

.clients-layout .section-heading {
  width: auto;
  margin: 0;
}

.team-proof {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.team-proof img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.team-proof figcaption {
  color: var(--muted);
  padding: 14px 16px;
  font-size: 13px;
  font-weight: 800;
}

.partner-card {
  min-height: 150px;
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.06);
}

.partner-card strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
}

.partner-card span {
  display: inline-flex;
  margin-top: 20px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-section {
  padding-bottom: 80px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1fr);
  gap: 54px;
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

.contact-details a,
.contact-details span {
  color: var(--white);
  text-decoration: none;
  border-left: 4px solid var(--cyan);
  padding-left: 14px;
}

.quote-form {
  padding: 26px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

input,
textarea {
  width: 100%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 13px 12px;
  outline: none;
}

textarea {
  resize: vertical;
  margin: 14px 0 18px;
}

input:focus,
textarea:focus {
  border-color: var(--yellow);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.site-footer {
  color: var(--muted);
  background: #0b1018;
  border-top: 1px solid var(--line);
  padding: 28px 0;
}

.footer-inner {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 13px;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1200;
  min-width: 58px;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: #ffffff;
  background: #25d366;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.32);
  padding: 14px 17px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.38);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
  flex: 0 0 auto;
}

@media (max-width: 980px) {
  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero-content-shell,
  .section-grid,
  .section-grid.reverse,
  .team-layout,
  .export-inner,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-proof {
    max-width: 480px;
  }

  .hero-stats,
  .offering-grid,
  .machine-grid,
  .partner-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-track {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-card:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .process-card:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .contact-grid {
    gap: 34px;
  }
}

@media (max-width: 640px) {
  .nav-shell {
    min-height: 70px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-copy {
    font-size: 15px;
  }

  .mobile-links a {
    font-size: 34px;
  }

  .hero-content-shell {
    padding-top: 54px;
  }

  .hero-stats,
  .offering-grid,
  .machine-grid,
  .process-track,
  .partner-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .stat-item,
  .stat-item:first-child {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .process-card,
  .process-card:nth-child(4) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .section {
    padding: 74px 0;
  }

  .offering-card,
  .machine-card,
  .process-card {
    min-height: auto;
  }

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

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 58px;
    height: 58px;
    padding: 0;
  }

  .whatsapp-float span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
