@font-face {
  font-family: "IranYekan";
  src: url("assets/fonts/IRANYekan[@mimvid]-Regular.ttf") format("truetype");
  font-display: swap;
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "IranYekan";
  src: url("assets/fonts/IRANYekan[@mimvid]-Medium.ttf") format("truetype");
  font-display: swap;
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "IranYekan";
  src: url("assets/fonts/IRANYekan[@mimvid]-Bold.ttf") format("truetype");
  font-display: swap;
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "IranYekan";
  src: url("assets/fonts/IRANYekan[@mimvid]-ExtraBold.ttf") format("truetype");
  font-display: swap;
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: "IranYekan";
  src: url("assets/fonts/IRANYekan[@mimvid]-Black.ttf") format("truetype");
  font-display: swap;
  font-weight: 900;
  font-style: normal;
}

:root {
  color-scheme: dark;
  --font: "IranYekan", "Segoe UI", Tahoma, Arial, sans-serif;
  --bg: #050505;
  --panel: #10100f;
  --panel-soft: #191816;
  --text: #f8f6ef;
  --muted: #beb8ac;
  --line: rgba(255, 255, 255, 0.13);
  --silver: #e8e5dc;
  --silver-soft: #908c83;
  --warm: #d8b46a;
  --warm-soft: rgba(216, 180, 106, 0.16);
  --shadow: rgba(0, 0, 0, 0.55);
  --glass: rgba(255, 255, 255, 0.06);
  font-family: var(--font);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
  overflow-x: clip;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.13), transparent 17rem),
    radial-gradient(circle at 82% 14%, rgba(216, 180, 106, 0.13), transparent 23rem),
    radial-gradient(circle at 54% 94%, rgba(255, 255, 255, 0.09), transparent 24rem),
    linear-gradient(135deg, #030303 0%, #11100e 46%, #060606 100%);
  color: var(--text);
  font-family: var(--font);
  overflow-x: clip;
}

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

.site-shell {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: clamp(18px, 3vw, 36px);
  isolation: isolate;
  overflow: hidden;
}

.site-shell::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 43%, rgba(255, 255, 255, 0.075) 43.15%, transparent 43.35%),
    linear-gradient(62deg, transparent 0 59%, rgba(216, 180, 106, 0.08) 59.1%, transparent 59.32%);
  opacity: 0.75;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, #000, transparent 86%);
}

.ambient {
  position: fixed;
  z-index: -2;
  width: 34vw;
  min-width: 280px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: 0 0 80px rgba(255, 255, 255, 0.04);
  filter: blur(0.1px);
  opacity: 0.5;
  transform: rotate(18deg);
}

.ambient-one {
  top: -14%;
  inset-inline-start: -8%;
  animation: floatOne 16s ease-in-out infinite;
}

.ambient-two {
  right: -12%;
  bottom: 0;
  animation: floatTwo 19s ease-in-out infinite;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.028));
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(22px);
}

.brand-lockup,
.header-actions,
.contact-strip {
  display: flex;
  align-items: center;
}

.brand-lockup {
  gap: 14px;
}

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 48px;
  aspect-ratio: 1;
  border: 2px solid rgba(232, 229, 220, 0.92);
  color: var(--silver);
  font-weight: 800;
  letter-spacing: 0;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.015));
  box-shadow:
    inset 0 0 18px rgba(255, 255, 255, 0.12),
    0 14px 34px var(--shadow),
    0 0 32px rgba(232, 229, 220, 0.09);
}

.brand-logo {
  position: relative;
  z-index: 1;
  width: 82%;
  height: 82%;
  overflow: visible;
}

.logo-j,
.logo-boom,
.logo-mast,
.logo-truss,
.logo-cable {
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.logo-j,
.logo-mast {
  stroke-width: 8.5;
}

.logo-boom {
  stroke-width: 7.5;
}

.logo-truss {
  opacity: 0.72;
  stroke-width: 3.2;
}

.logo-cable {
  color: var(--warm);
  opacity: 0.9;
  stroke-width: 3.2;
}

.logo-cargo {
  fill: none;
  stroke: var(--warm);
  stroke-width: 3.5;
  opacity: 0.86;
}

.brand-copy {
  display: grid;
  gap: 4px;
}

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

.brand-copy small {
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.header-actions {
  gap: 10px;
}

.ghost-link,
.language-toggle {
  min-height: 40px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  backdrop-filter: blur(16px);
}

.ghost-link {
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  color: var(--silver);
  font-size: 0.86rem;
}

.language-toggle {
  width: 48px;
  cursor: pointer;
  font: 700 0.82rem/1 var(--font, "Segoe UI", Tahoma, Arial, sans-serif);
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.language-toggle:hover,
.ghost-link:hover {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.09);
}

.language-toggle:active {
  transform: translateY(1px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.86fr);
  align-items: center;
  gap: clamp(34px, 7vw, 92px);
  width: min(1180px, 100%);
  margin: auto;
  padding: clamp(32px, 7vh, 72px) 0 clamp(22px, 4vh, 42px);
}

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

.hero-status {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding: 8px 12px;
  border: 1px solid rgba(216, 180, 106, 0.24);
  background: rgba(216, 180, 106, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.status-dot {
  width: 8px;
  aspect-ratio: 1;
  border-radius: 999px;
  background: var(--warm);
  box-shadow: 0 0 0 6px rgba(216, 180, 106, 0.12), 0 0 22px rgba(216, 180, 106, 0.78);
  animation: dotPulse 2.4s ease-in-out infinite;
}

.eyebrow,
.section-heading p {
  margin: 0;
  color: var(--warm);
  font-size: clamp(0.78rem, 1.5vw, 0.92rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

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

h1 {
  margin: 0;
  font-size: clamp(2rem, 4.8vw, 3.45rem);
  line-height: 1.25;
  font-weight: 900;
  max-width: 560px;
  background: linear-gradient(180deg, #fff 0%, #ddd8cc 48%, #8f8a80 100%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-wrap: balance;
  filter: drop-shadow(0 16px 34px rgba(255, 255, 255, 0.1));
}

.subtitle {
  max-width: 660px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  line-height: 1.9;
}

.contact-strip {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
  direction: ltr;
  justify-content: flex-start;
}

.contact-strip a {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  min-height: 50px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
  color: var(--silver);
  font-size: 0.95rem;
  direction: ltr;
  text-align: left;
  backdrop-filter: blur(18px);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.contact-strip a:hover {
  transform: translateY(-3px);
  border-color: rgba(216, 180, 106, 0.42);
  background:
    linear-gradient(145deg, rgba(216, 180, 106, 0.12), rgba(255, 255, 255, 0.045));
}

.legal-info {
  display: grid;
  grid-template-columns: minmax(180px, 0.46fr) minmax(260px, 1fr);
  gap: 10px;
  max-width: 720px;
  margin: 14px 0 0;
}

.legal-item {
  min-height: 70px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    rgba(9, 9, 9, 0.52);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px);
}

.legal-item dt,
.legal-item dd {
  margin: 0;
}

.legal-item dt {
  color: var(--warm);
  font-size: 0.75rem;
  font-weight: 800;
}

.legal-item dd {
  margin-top: 7px;
  color: var(--silver);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.7;
}

.contact-icon {
  display: grid;
  place-items: center;
  width: 24px;
  aspect-ratio: 1;
}

.contact-icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.hero-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 480px;
  perspective: 1200px;
}

.stage-halo {
  position: absolute;
  width: min(480px, 84vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(232, 229, 220, 0.18), transparent 58%),
    conic-gradient(from 180deg, transparent, rgba(216, 180, 106, 0.16), transparent, rgba(255, 255, 255, 0.12), transparent);
  filter: blur(0.4px);
  opacity: 0.88;
  animation: breathe 6s ease-in-out infinite;
}

.monogram-card {
  position: relative;
  display: grid;
  place-items: center;
  gap: 30px;
  width: min(430px, 88vw);
  aspect-ratio: 0.82;
  padding: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.18), transparent 25%),
    radial-gradient(circle at 50% 0%, rgba(216, 180, 106, 0.14), transparent 36%),
    linear-gradient(180deg, #242321 0%, #0b0b0a 72%);
  box-shadow:
    0 48px 100px rgba(0, 0, 0, 0.68),
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 -40px 90px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  transform: rotateX(8deg) rotateY(-12deg);
  animation: cardPulse 6s ease-in-out infinite;
}

.monogram-card::before {
  position: absolute;
  inset: 14px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: inset 0 0 44px rgba(255, 255, 255, 0.035);
}

.monogram-card::after {
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(216, 180, 106, 0.08));
  pointer-events: none;
}

.card-shine {
  position: absolute;
  inset: -45% auto auto -40%;
  width: 42%;
  height: 150%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transform: rotate(28deg);
  animation: shine 5.5s ease-in-out infinite;
}

.brand-mark.large {
  width: min(170px, 42vw);
  z-index: 1;
}

.brand-mark.large .brand-logo {
  width: 78%;
  height: 78%;
}

.stage-title {
  display: grid;
  gap: 10px;
  text-align: center;
  z-index: 1;
}

.stage-title span {
  font-size: clamp(1.25rem, 4vw, 2rem);
  font-weight: 800;
  letter-spacing: 0.24em;
}

.stage-title small {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  pointer-events: none;
}

.orbit-one {
  width: min(520px, 90vw);
  aspect-ratio: 1;
  animation: spin 24s linear infinite;
}

.orbit-two {
  width: min(360px, 66vw);
  aspect-ratio: 1;
  border-color: rgba(201, 164, 93, 0.2);
  transform: rotate(64deg);
  animation: spin 18s linear infinite reverse;
}

.orbit-three {
  width: min(610px, 98vw);
  aspect-ratio: 1;
  border-color: rgba(255, 255, 255, 0.07);
  transform: rotate(-24deg);
  animation: spin 34s linear infinite;
}

.countdown-section {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 18px 0 26px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
}

.section-heading p,
.section-heading h2 {
  margin: 0;
}

.section-heading h2 {
  font-size: clamp(1.32rem, 2.8vw, 2.2rem);
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  direction: ltr;
}

.time-tile {
  position: relative;
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 154px;
  padding: 28px 20px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.028)),
    radial-gradient(circle at 50% 0%, rgba(216, 180, 106, 0.1), transparent 58%),
    rgba(12, 12, 12, 0.84);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  overflow: hidden;
  direction: rtl;
  text-align: center;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.time-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(216, 180, 106, 0.4);
}

.time-tile::after {
  position: absolute;
  inset-inline: 18px;
  bottom: 0;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--silver), transparent);
}

.time-tile strong {
  display: block;
  width: 100%;
  font-size: clamp(2.55rem, 6vw, 4.85rem);
  line-height: 1;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  text-align: center;
  background: linear-gradient(180deg, #fff, #d5d0c4);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.time-tile span {
  display: block;
  width: 100%;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
  text-align: center;
}

.footer {
  width: min(1180px, 100%);
  margin: 22px auto 0;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.02)),
    rgba(9, 9, 9, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 20px 60px rgba(0, 0, 0, 0.22);
  color: var(--silver-soft);
  font-size: 0.82rem;
  text-align: center;
  backdrop-filter: blur(18px);
}

.footer-copy {
  color: rgba(232, 229, 220, 0.74);
  font-weight: 500;
  line-height: 1.7;
}

.footer-line {
  width: min(120px, 18vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216, 180, 106, 0.72), transparent);
}

html[dir="ltr"] .hero {
  direction: ltr;
}

html[dir="ltr"] .brand-copy small,
html[dir="ltr"] .eyebrow,
html[dir="ltr"] .section-heading p,
html[dir="ltr"] .stage-title span,
html[dir="ltr"] .stage-title small {
  letter-spacing: 0.18em;
}

@keyframes floatOne {
  50% {
    transform: translate3d(18px, 28px, 0) rotate(28deg);
  }
}

@keyframes floatTwo {
  50% {
    transform: translate3d(-22px, -16px, 0) rotate(4deg);
  }
}

@keyframes dotPulse {
  50% {
    transform: scale(0.72);
    box-shadow: 0 0 0 11px rgba(216, 180, 106, 0.04), 0 0 28px rgba(216, 180, 106, 0.95);
  }
}

@keyframes breathe {
  50% {
    transform: scale(1.08) rotate(9deg);
    opacity: 0.68;
  }
}

@keyframes cardPulse {
  50% {
    transform: rotateX(3deg) rotateY(-7deg) translateY(-12px);
  }
}

@keyframes shine {
  0%,
  35% {
    transform: translateX(-80%) rotate(28deg);
  }
  70%,
  100% {
    transform: translateX(420%) rotate(28deg);
  }
}

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

@media (max-width: 920px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 24px;
  }

  .hero-stage {
    min-height: 360px;
    order: -1;
  }

  .monogram-card {
    width: min(340px, 82vw);
    padding: 32px;
  }
}

@media (max-width: 680px) {
  .site-shell {
    padding: 14px;
  }

  .ambient {
    width: 260px;
    min-width: 0;
    opacity: 0.28;
  }

  .ambient-one {
    inset-inline-start: -120px;
  }

  .ambient-two {
    right: -130px;
  }

  .hero-stage {
    overflow: hidden;
  }

  .stage-halo {
    width: min(360px, 82vw);
  }

  .orbit-three {
    width: min(420px, 92vw);
  }

  .topbar {
    align-items: flex-start;
  }

  .brand-copy strong {
    max-width: 170px;
  }

  .ghost-link {
    display: none;
  }

  h1 {
    font-size: clamp(2rem, 9vw, 2.75rem);
    max-width: 100%;
  }

  .subtitle {
    line-height: 1.75;
  }

  .contact-strip {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-strip a {
    justify-content: flex-start;
    width: 100%;
  }

  .legal-info {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .legal-item {
    min-height: auto;
    text-align: center;
  }

  .section-heading {
    display: grid;
  }

  .countdown {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    direction: ltr;
  }

  .time-tile {
    min-height: 120px;
    padding: 20px 14px;
  }

  .footer {
    gap: 10px;
    margin-top: 18px;
    padding: 16px 12px;
  }

  .footer-line {
    width: 36px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}
