@font-face {
  font-family: "IRANSans";
  src: url("./assets/fonts/IRANSans-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IRANSans";
  src: url("./assets/fonts/IRANSans-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IRANSans";
  src: url("./assets/fonts/IRANSans-Bold.woff2") format("woff2");
  font-weight: 700 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #08131f;
  --ink-2: #101f2f;
  --paper: #f7f7f4;
  --white: #ffffff;
  --text: #13202c;
  --muted: #65717d;
  --line: #dfe3e5;
  --accent: #ef5b2a;
  --accent-2: #ff7a45;
  --max: 1240px;
  --radius: 22px;
  --shadow: 0 24px 70px rgba(8, 19, 31, 0.13);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  color-scheme: light;
  font-family: "IRANSans", Tahoma, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: "IRANSans", Tahoma, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

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

a,
button {
  cursor: pointer;
}

.container {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: -80px;
  right: 20px;
  z-index: 2000;
  background: var(--white);
  color: var(--ink);
  padding: 10px 16px;
}

.skip-link:focus {
  top: 20px;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--white);
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  display: grid;
  gap: 18px;
  justify-items: center;
}

.loader-line {
  width: 140px;
  height: 2px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.loader-line::before {
  content: "";
  display: block;
  width: 46%;
  height: 100%;
  background: var(--accent);
  animation: loaderMove 1s ease-in-out infinite;
}

@keyframes loaderMove {
  0% {
    transform: translateX(140%);
  }
  100% {
    transform: translateX(-230%);
  }
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  color: var(--white);
  transition: background 0.32s ease, box-shadow 0.32s ease, backdrop-filter 0.32s ease;
}

.site-header.scrolled {
  background: rgba(8, 19, 31, 0.92);
  backdrop-filter: blur(18px);
  box-shadow: 0 1px rgba(255, 255, 255, 0.08);
}

.header-shell {
  width: min(calc(100% - 48px), var(--max));
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-inline: auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

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

.brand-mark svg {
  width: 100%;
  height: 100%;
  fill: var(--accent);
}

.brand-mark .brand-cut {
  fill: var(--ink);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.35;
}

.brand-copy strong {
  font-size: 1rem;
  font-weight: 800;
}

.brand-copy small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.56);
  direction: ltr;
  font-size: 0.63rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.78rem;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.24s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  color: var(--white);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-active::after {
  width: 100%;
}

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

.header-date {
  min-width: 142px;
  display: grid;
  gap: 1px;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.86);
  text-align: center;
  line-height: 1.35;
  backdrop-filter: blur(12px);
}

.header-date span {
  font-size: 0.68rem;
  font-weight: 800;
}

.header-date small {
  color: rgba(255, 255, 255, 0.54);
  direction: ltr;
  font-size: 0.56rem;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 11px 17px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  font-size: 0.75rem;
  transition: background 0.24s ease, color 0.24s ease;
}

.header-cta:hover {
  background: var(--white);
  color: var(--ink);
}

.header-cta span {
  color: var(--accent);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: var(--white);
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 1px;
  margin: 6px 0;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 820px;
  height: 100svh;
  max-height: 980px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.hero-media {
  position: absolute;
  inset: 0;
  background: url("./assets/images/hero.jpg") center / cover no-repeat;
  transform: scale(1.03);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 19, 31, 0.28), rgba(8, 19, 31, 0.92) 58%, rgba(8, 19, 31, 0.98)),
    linear-gradient(0deg, rgba(8, 19, 31, 0.72), transparent 45%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to left, #000, transparent 78%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(270px, 0.65fr);
  gap: 80px;
  align-items: end;
  padding-top: 110px;
}

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

.eyebrow {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  direction: ltr;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.eyebrow span {
  width: 38px;
  height: 1px;
  background: var(--accent);
}

.hero h1 {
  margin: 24px 0 22px;
  color: var(--white);
  font-size: clamp(2rem, 3.45vw, 3.45rem);
  font-weight: 800;
  line-height: 1.46;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.hero-content > p {
  max-width: 690px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
  line-height: 1.98;
}

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

.btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  font-size: 0.78rem;
  font-weight: 700;
  transition: transform 0.24s ease, background 0.24s ease, color 0.24s ease, box-shadow 0.24s ease;
}

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

.btn-primary {
  background: var(--accent);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--accent-2);
  box-shadow: 0 14px 34px rgba(239, 91, 42, 0.3);
}

.btn i {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  font-style: normal;
}

.btn-glass {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.btn-glass:hover {
  background: var(--white);
  color: var(--ink);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.5);
  direction: ltr;
  font-size: 0.68rem;
}

.hero-trust span::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.hero-panel {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: var(--radius);
  background: rgba(8, 19, 31, 0.44);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

.panel-number {
  color: rgba(255, 255, 255, 0.42);
  direction: ltr;
  font-size: 0.62rem;
}

.panel-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin: 42px 0 24px;
  border-radius: 16px;
  background: var(--accent);
}

.panel-icon svg {
  width: 34px;
  height: 34px;
  fill: var(--white);
}

.hero-panel h2 {
  margin: 0;
  color: var(--white);
  font-size: 1.34rem;
  line-height: 1.7;
}

.hero-panel p {
  margin: 14px 0 24px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.78rem;
}

.hero-panel a {
  display: flex;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.75rem;
}

.hero-panel a span {
  color: var(--accent);
}

.hero-bottom {
  position: absolute;
  z-index: 2;
  right: 50%;
  bottom: 28px;
  transform: translateX(50%);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  color: rgba(255, 255, 255, 0.4);
  direction: ltr;
  font-size: 0.6rem;
}

.hero-bottom div {
  height: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.section {
  padding: 108px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 14px;
  align-items: center;
  max-width: 870px;
  margin-bottom: 64px;
  margin-inline: auto;
  text-align: center;
}

.section-index {
  padding-top: 0;
  color: var(--accent);
  direction: ltr;
  font-size: 0.65rem;
}

.section-kicker {
  display: block;
  margin-bottom: 13px;
  color: var(--accent);
  direction: ltr;
  font-size: 0.78rem;
  font-weight: 700;
}

.section-kicker.light {
  color: rgba(255, 255, 255, 0.62);
}

h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.55rem, 2.25vw, 2.32rem);
  font-weight: 800;
  line-height: 1.58;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

h3 {
  margin: 0 0 10px;
  color: var(--text);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.62;
}

h3 span,
h3 small {
  display: block;
}

h3 small {
  margin-top: 4px;
  direction: ltr;
  color: rgba(30, 42, 56, 0.68);
  font-size: 0.8em;
  font-weight: 700;
  line-height: 1.35;
}

.section-heading > p,
.intro-copy p,
.value-card p,
.market-body p,
.market-body li,
.solution-card p,
.process-list p,
.contact-card p {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.9;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  max-width: 980px;
  text-align: center;
}

.intro-grid .section-heading {
  margin: 0;
}

.intro-copy {
  max-width: 820px;
  padding-top: 0;
  margin-inline: auto;
}

.intro-copy .lead {
  color: var(--text);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 2;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 74px;
}

.value-card {
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 270px;
  padding: 32px 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  text-align: center;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.value-card:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: var(--shadow);
}

.value-card > span {
  color: var(--accent);
  direction: ltr;
  font-size: 0.61rem;
  font-weight: 800;
}

.value-icon {
  position: relative;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin: 24px auto 18px;
  border-radius: 13px;
  background: #f1f3f3;
}

.icon-diamond::before {
  content: "";
  width: 18px;
  height: 18px;
  border: 2px solid var(--accent);
  transform: rotate(45deg);
}

.icon-flow::before,
.icon-flow::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 2px;
  background: var(--accent);
}

.icon-flow::after {
  transform: rotate(90deg);
}

.icon-grid::before {
  content: "";
  width: 22px;
  height: 22px;
  background:
    linear-gradient(var(--accent), var(--accent)) 0 0 / 9px 9px no-repeat,
    linear-gradient(var(--accent), var(--accent)) 100% 0 / 9px 9px no-repeat,
    linear-gradient(var(--accent), var(--accent)) 0 100% / 9px 9px no-repeat,
    linear-gradient(var(--accent), var(--accent)) 100% 100% / 9px 9px no-repeat;
}

.section-dark {
  background: var(--ink);
  color: var(--white);
}

.section-heading-light h2 {
  color: var(--white);
}

.section-heading-light > p {
  color: rgba(255, 255, 255, 0.55);
}

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

.market-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.2);
  transition: transform 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
}

.market-card:hover {
  transform: translateY(-7px);
  background: rgba(255, 255, 255, 0.065);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.28);
}

.market-card:focus-visible {
  outline: 3px solid rgba(239, 91, 42, 0.6);
  outline-offset: 4px;
}

.market-visual {
  position: relative;
  height: 236px;
  overflow: hidden;
  background: var(--ink);
}

.market-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 19, 31, 0.08), rgba(8, 19, 31, 0.48)),
    radial-gradient(circle at 18% 18%, rgba(239, 91, 42, 0.25), transparent 12rem);
}

.market-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.5s var(--ease), filter 0.5s var(--ease);
}

.market-card:hover .market-visual img {
  transform: scale(1.07);
  filter: saturate(1.08) contrast(1.04);
}

.line-shape {
  fill: rgba(255, 255, 255, 0.05);
  stroke: rgba(255, 255, 255, 0.52);
  stroke-width: 4;
}

.orange-path {
  fill: none;
  stroke: var(--accent);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 18 18;
  animation: dashMove 2.8s linear infinite;
}

.detail-line {
  fill: none;
  stroke: rgba(255, 255, 255, 0.28);
  stroke-width: 3;
}

.market-visual circle {
  fill: none;
  stroke: rgba(255, 255, 255, 0.42);
  stroke-width: 5;
}

@keyframes dashMove {
  to {
    stroke-dashoffset: -120;
  }
}

.market-body {
  position: relative;
  z-index: 1;
  padding: 28px 26px 30px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(8, 19, 31, 0.72), rgba(8, 19, 31, 0.94)),
    rgba(8, 19, 31, 0.8);
  backdrop-filter: blur(16px);
}

.market-body span,
.solution-tag {
  display: block;
  margin-bottom: 14px;
  color: var(--accent);
  direction: ltr;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.market-body h3 {
  color: var(--white);
}

.market-body ul {
  display: grid;
  gap: 7px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.market-body li {
  direction: rtl;
  text-align: center;
}

.market-body li::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-left: 8px;
  margin-right: 0;
  border-radius: 50%;
  background: var(--accent);
  vertical-align: middle;
}

.open-tab {
  display: inline-flex;
  margin-top: 22px;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
}

.products,
.solutions {
  background: var(--paper);
}

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

.product-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 30px 28px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.66), rgba(255, 255, 255, 0.28)),
    radial-gradient(circle at 12% 8%, rgba(255, 255, 255, 0.92), transparent 9rem),
    radial-gradient(circle at 88% 96%, rgba(239, 91, 42, 0.14), transparent 13rem);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    0 26px 70px rgba(8, 19, 31, 0.12);
  text-align: center;
  backdrop-filter: blur(28px) saturate(1.25);
  -webkit-backdrop-filter: blur(28px) saturate(1.25);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

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

.product-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: 0;
  border-radius: 23px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.46), transparent 38%);
  pointer-events: none;
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(239, 91, 42, 0.18);
  box-shadow: var(--shadow);
}

.product-card > span {
  display: block;
  margin-bottom: 22px;
  color: var(--accent);
  direction: ltr;
  font-size: 0.66rem;
  font-weight: 800;
}

.product-card p,
.product-card li {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.95;
}

.product-card ul {
  display: grid;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.product-card li {
  position: relative;
  padding-right: 0;
  padding-top: 12px;
}

.product-card li::before {
  content: "";
  position: absolute;
  top: 0;
  right: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateX(50%);
}

.detail-page {
  background: var(--paper);
}

.detail-page .brand-copy small {
  color: rgba(255, 255, 255, 0.56);
}

.detail-hero {
  position: relative;
  overflow: hidden;
  padding: 178px 0 92px;
  background: var(--ink);
  color: var(--white);
}

.detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
}

.detail-auto {
  background:
    linear-gradient(90deg, rgba(8, 19, 31, 0.38), rgba(8, 19, 31, 0.9) 56%, rgba(8, 19, 31, 0.96)),
    url("./assets/generated/automotive-bonding.png") center / cover no-repeat;
}

.detail-transport {
  background:
    linear-gradient(90deg, rgba(8, 19, 31, 0.38), rgba(8, 19, 31, 0.9) 56%, rgba(8, 19, 31, 0.96)),
    url("./assets/generated/transportation-assembly.png") center / cover no-repeat;
}

.detail-facade {
  background:
    linear-gradient(90deg, rgba(8, 19, 31, 0.38), rgba(8, 19, 31, 0.9) 56%, rgba(8, 19, 31, 0.96)),
    url("./assets/generated/facade-glazing.png") center / cover no-repeat;
}

.detail-hero-grid {
  position: relative;
  z-index: 1;
  max-width: 840px;
  margin-inline: auto;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background: rgba(8, 19, 31, 0.38);
  text-align: center;
  backdrop-filter: blur(18px);
}

.detail-hero h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.45rem, 2.2vw, 2.28rem);
  line-height: 1.62;
  letter-spacing: -0.02em;
}

.detail-hero p {
  max-width: 760px;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.96rem;
  line-height: 2.05;
}

.solution-board {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 18px;
}

.solution-card {
  min-height: 255px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(8, 19, 31, 0.06);
}

.solution-card.wide {
  grid-row: span 2;
  min-height: 530px;
}

.solution-card h3 {
  font-size: 1.28rem;
}

.dark-card {
  background: var(--ink);
  color: var(--white);
}

.dark-card h3 {
  color: var(--white);
}

.dark-card a {
  display: flex;
  justify-content: space-between;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
}

.dark-card a span {
  color: var(--accent);
}

.callout-map {
  position: relative;
  min-height: 380px;
  margin-top: 28px;
  border-radius: 18px;
  background:
    linear-gradient(rgba(8, 19, 31, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 19, 31, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 45% 52%, rgba(239, 91, 42, 0.1), transparent 17rem);
  background-size: 42px 42px, 42px 42px, auto;
  overflow: hidden;
}

.callout-map::before {
  content: "";
  position: absolute;
  right: 8%;
  left: 8%;
  bottom: 76px;
  height: 150px;
  border: 4px solid rgba(8, 19, 31, 0.28);
  border-top-left-radius: 120px;
  border-top-right-radius: 120px;
  border-bottom: 0;
}

.callout-map::after {
  content: "";
  position: absolute;
  right: 21%;
  left: 21%;
  bottom: 72px;
  height: 6px;
  border-radius: 999px;
  background: repeating-linear-gradient(90deg, var(--accent) 0 22px, transparent 22px 36px);
  animation: dashBg 3s linear infinite;
}

@keyframes dashBg {
  to {
    background-position: -120px 0;
  }
}

.callout-map span {
  position: absolute;
  right: var(--x);
  top: var(--y);
  z-index: 2;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  direction: ltr;
  box-shadow: var(--shadow);
  font-size: 0.74rem;
  font-weight: 700;
}

.callout-map span::after {
  content: "";
  position: absolute;
  right: -9px;
  top: 50%;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateY(-50%);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  border-top: 0;
}

.process-list article {
  overflow: hidden;
  padding: 32px 28px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.3)),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.84), transparent 9rem),
    radial-gradient(circle at 50% 100%, rgba(239, 91, 42, 0.14), transparent 14rem);
  text-align: center;
  backdrop-filter: blur(28px) saturate(1.24);
  -webkit-backdrop-filter: blur(28px) saturate(1.24);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 22px 62px rgba(8, 19, 31, 0.11);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.process-list article:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.process-list span {
  display: block;
  margin-bottom: 24px;
  color: var(--accent);
  direction: ltr;
  font-size: 0.68rem;
  font-weight: 700;
}

.contact-section {
  padding: 48px 0 64px;
}

.contact-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  max-width: 1200px;
  padding: 52px 56px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 255, 255, 0.26), transparent 18rem),
    linear-gradient(135deg, #ff7a1f 0%, var(--accent) 48%, #dc4a19 100%);
  color: var(--white);
  box-shadow: 0 28px 90px rgba(239, 91, 42, 0.22);
}

.contact-card::before,
.contact-card::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.contact-card::before {
  left: -170px;
  top: -220px;
  width: 420px;
  height: 420px;
  background: rgba(255, 255, 255, 0.13);
  filter: blur(8px);
}

.contact-card::after {
  right: -150px;
  bottom: -210px;
  width: 360px;
  height: 360px;
  background: rgba(6, 16, 26, 0.12);
  filter: blur(12px);
}

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

.contact-card h2 {
  max-width: 660px;
  color: var(--white);
  font-size: clamp(1.42rem, 2.1vw, 2.1rem);
  line-height: 1.58;
}

.contact-card p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
}

.contact-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "title cta"
    "text cta";
  gap: 16px;
  align-items: center;
}

.contact-copy h2 {
  grid-area: title;
}

.contact-copy p {
  grid-area: text;
}

.contact-toggle {
  grid-area: cta;
  justify-self: end;
  min-width: 174px;
  border-color: rgba(255, 255, 255, 0.3);
  background: #071523;
  color: var(--white);
  box-shadow: 0 18px 42px rgba(6, 16, 26, 0.18);
}

.contact-toggle:hover {
  border-color: rgba(255, 255, 255, 0.48);
  background: var(--white);
  color: var(--ink);
}

.contact-form-panel {
  display: block;
  width: min(100%, 560px);
  justify-self: end;
  overflow: hidden;
}

.js .contact-form-panel {
  max-height: 0;
  opacity: 0;
  transform: translateY(18px);
  visibility: hidden;
  transition:
    max-height 0.4s ease,
    opacity 0.34s ease,
    transform 0.34s ease,
    visibility 0s linear 0.4s;
}

.contact-card.is-open {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 560px);
}

.contact-card.is-open .contact-copy {
  grid-template-columns: 1fr;
  grid-template-areas:
    "title"
    "text"
    "cta";
}

.contact-card.is-open .contact-toggle {
  justify-self: start;
}

.js .contact-card.is-open .contact-form-panel {
  max-height: 620px;
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  transition:
    max-height 0.42s ease,
    opacity 0.34s ease 0.05s,
    transform 0.34s ease 0.05s,
    visibility 0s linear 0s;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(255, 248, 239, 0.58));
  color: var(--ink);
  backdrop-filter: blur(22px) saturate(1.18);
  -webkit-backdrop-filter: blur(22px) saturate(1.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 22px 58px rgba(70, 27, 8, 0.2);
}

.contact-success {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  line-height: 1.9;
  text-align: center;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 20px 48px rgba(70, 27, 8, 0.16);
}

label {
  display: grid;
  gap: 7px;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
}

.contact-form label {
  color: var(--ink);
}

input,
textarea {
  width: 100%;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  padding: 13px 15px;
  font-size: 0.86rem;
}

textarea {
  min-height: 104px;
  resize: vertical;
}

.contact-form textarea {
  min-height: 92px;
  max-height: 150px;
}

.btn-light {
  background: var(--white);
  color: var(--ink);
}

.btn-light:hover {
  background: var(--ink);
  color: var(--white);
}

.site-footer {
  padding: 58px 0 26px;
  background: #06101a;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1.25fr) repeat(2, minmax(170px, 0.55fr));
  align-items: start;
  gap: 52px;
}

.brand-light .brand-copy small {
  color: rgba(255, 255, 255, 0.48);
}

.brand-light .brand-mark .brand-cut {
  fill: #06101a;
}

.site-footer p {
  max-width: 520px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.8rem;
  line-height: 1.95;
}

.footer-col h3 {
  margin: 0 0 18px;
  color: var(--white);
  font-size: 0.92rem;
}

.site-footer nav {
  display: grid;
  gap: 12px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.76rem;
}

.site-footer nav a {
  transition: color 0.22s ease, transform 0.22s ease;
}

.site-footer nav a:hover {
  color: var(--white);
  transform: translateX(-3px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 42px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.68rem;
  text-align: center;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.72s ease, transform 0.72s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1060px) {
  .site-nav,
  .header-cta {
    display: none;
  }

  .header-date {
    margin-right: auto;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 86px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 20px 24px 28px;
    background: rgba(8, 19, 31, 0.98);
  }

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

  .site-nav a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
  }

  .hero {
    height: auto;
    min-height: 840px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 44px;
    padding-top: 140px;
    padding-bottom: 100px;
  }

  .hero-panel {
    display: none;
  }

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

  .contact-card,
  .contact-card.is-open {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .contact-toggle,
  .contact-form-panel {
    justify-self: stretch;
  }

  .section-heading {
    grid-template-columns: 1fr;
  }

  .section-heading > p {
    grid-column: auto;
  }

  .market-grid,
  .product-grid,
  .values-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .process-list article {
    border: 1px solid rgba(255, 255, 255, 0.68);
  }

  .solution-board {
    grid-template-columns: 1fr;
  }

  .solution-card.wide {
    grid-row: auto;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 14px;
  }

  .container,
  .header-shell {
    width: min(calc(100% - 28px), var(--max));
  }

  .header-shell {
    height: 72px;
    gap: 10px;
  }

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

  .brand-copy strong {
    font-size: 0.88rem;
  }

  .brand-copy small {
    display: none;
  }

  .header-date {
    min-width: auto;
    padding: 7px 10px;
  }

  .header-date span {
    font-size: 0.6rem;
  }

  .header-date small {
    display: none;
  }

  .site-nav {
    top: 72px;
  }

  .hero {
    min-height: 790px;
  }

  .hero-grid {
    padding-top: 118px;
    padding-bottom: 88px;
  }

  .eyebrow {
    font-size: 0.56rem;
  }

  .hero h1 {
    font-size: 1.78rem;
    line-height: 1.62;
  }

  .hero-content > p {
    font-size: 0.83rem;
    line-height: 1.9;
  }

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
    min-height: 51px;
  }

  .hero-trust {
    display: grid;
    gap: 6px;
  }

  .hero-bottom {
    bottom: 20px;
  }

  .section {
    padding: 70px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 38px;
  }

  h2 {
    font-size: 1.46rem;
    line-height: 1.68;
  }

  h3 {
    font-size: 0.96rem;
  }

  .intro-grid {
    gap: 34px;
  }

  .intro-copy {
    padding-top: 0;
  }

  .values-grid {
    margin-top: 48px;
  }

  .market-visual {
    height: 180px;
  }

  .product-grid {
    gap: 14px;
  }

  .product-card {
    padding: 24px 20px;
  }

  .detail-hero {
    padding: 132px 0 70px;
  }

  .detail-hero h1 {
    font-size: 1.36rem;
    line-height: 1.74;
  }

  .detail-hero p {
    font-size: 0.84rem;
    line-height: 1.95;
  }

  .solution-card,
  .contact-card {
    padding: 26px 22px;
  }

  .contact-section {
    padding: 34px 0 40px;
  }

  .contact-card {
    gap: 22px;
    border-radius: 24px;
  }

  .contact-card h2 {
    font-size: 1.32rem;
    line-height: 1.68;
  }

  .contact-copy {
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "text"
      "cta";
    text-align: center;
  }

  .contact-card p {
    margin-inline: auto;
  }

  .contact-form {
    padding: 18px;
    border-radius: 20px;
  }

  .contact-form input,
  .contact-form textarea,
  .contact-form button,
  .contact-toggle {
    width: 100%;
  }

  .solution-card.wide {
    min-height: auto;
  }

  .callout-map {
    min-height: 320px;
  }

  .callout-map span {
    font-size: 0.66rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-about p {
    margin-inline: auto;
  }

  .site-footer .brand {
    justify-content: center;
  }

  .footer-bottom {
    text-align: center;
  }
}

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

  .js .contact-form-panel,
  .js .contact-card.is-open .contact-form-panel {
    transition-duration: 0.01ms;
    transition-delay: 0s;
  }

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
