:root {
  --orange: #ff6a00;
  --orange-deep: #e45700;
  --ink: #111111;
  --muted: #5a5a5a;
  --paper: #fffaf6;
  --paper-2: #fff3ea;
  --line: rgba(17, 17, 17, 0.1);
  --radius: 18px;
  --font-ar: "Tajawal", "Segoe UI", Tahoma, sans-serif;
  --font-lat: "Outfit", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 85% -10%, rgba(255, 106, 0, 0.16), transparent 55%),
    radial-gradient(900px 500px at 10% 20%, rgba(255, 160, 80, 0.12), transparent 50%),
    linear-gradient(180deg, #ffffff 0%, var(--paper) 42%, var(--paper-2) 100%);
  font-family: var(--font-ar);
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

.atmosphere {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(50px);
  opacity: 0.45;
}

.glow-a {
  width: 42vw;
  height: 42vw;
  top: -12vw;
  left: -8vw;
  background: rgba(255, 106, 0, 0.22);
  animation: drift 14s ease-in-out infinite alternate;
}

.glow-b {
  width: 36vw;
  height: 36vw;
  bottom: 5vh;
  right: -10vw;
  background: rgba(17, 17, 17, 0.06);
  animation: drift 18s ease-in-out infinite alternate-reverse;
}

.signal-art {
  position: absolute;
  inset: 8% 0 auto;
  width: 100%;
  height: min(70vh, 700px);
  opacity: 0.35;
}

.sig {
  fill: none;
  stroke: var(--orange);
  stroke-linecap: round;
  stroke-width: 2.2;
  opacity: 0.55;
}

.s1 { animation: pulse 5.5s ease-in-out infinite; }
.s2 { stroke-width: 1.6; opacity: 0.35; animation: pulse 7s ease-in-out infinite 0.4s; }
.s3 { stroke-width: 1.1; opacity: 0.22; animation: pulse 8.5s ease-in-out infinite 0.8s; }

@keyframes drift {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(3%, 4%, 0); }
}

@keyframes pulse {
  0%, 100% { opacity: 0.2; transform: translateY(0); }
  50% { opacity: 0.55; transform: translateY(-6px); }
}

@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.top,
main,
.foot {
  position: relative;
  z-index: 1;
}

.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem clamp(1rem, 4vw, 3rem);
}

.brand img {
  width: min(160px, 42vw);
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-weight: 700;
}

.nav a {
  padding: 0.45rem 0.7rem;
  color: var(--muted);
  transition: color 0.2s ease;
}

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

.nav-cta {
  color: #fff !important;
  background: var(--orange);
  border-radius: 999px;
  padding: 0.55rem 1rem !important;
}

.nav-cta:hover {
  background: var(--orange-deep);
}

.hero {
  min-height: calc(100vh - 5.5rem);
  display: grid;
  align-items: center;
  padding: clamp(1.5rem, 5vh, 3rem) clamp(1rem, 4vw, 3rem) clamp(2rem, 6vh, 4rem);
}

.hero-copy {
  max-width: 760px;
  animation: rise 0.9s ease both;
}

.hero-logo {
  width: min(460px, 88vw);
  margin-bottom: 1.4rem;
  filter: drop-shadow(0 18px 40px rgba(255, 106, 0, 0.18));
  animation: rise 1s ease both 0.1s;
}

.hero h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.85rem, 4.6vw, 3.35rem);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.02em;
  max-width: 14ch;
}

.lede {
  margin: 0 0 1.5rem;
  color: var(--muted);
  font-size: clamp(1.02rem, 2vw, 1.2rem);
  max-width: 36rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.7rem 1.25rem;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

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

.btn.primary {
  background: var(--orange);
  color: #fff;
}

.btn.primary:hover {
  background: var(--orange-deep);
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.55);
  border-color: var(--line);
  color: var(--ink);
  backdrop-filter: blur(8px);
}

.section {
  padding: clamp(3.5rem, 9vh, 6rem) clamp(1rem, 4vw, 3rem);
}

.section-head {
  max-width: 42rem;
  margin-bottom: 2rem;
  animation: rise 0.8s ease both;
}

.section-head h2 {
  margin: 0 0 0.55rem;
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  font-weight: 800;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.solutions {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.solutions li {
  padding: 1.25rem 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 1rem;
  row-gap: 0.35rem;
  align-items: baseline;
  animation: rise 0.7s ease both;
}

.solutions li:last-child {
  border-bottom: 1px solid var(--line);
}

.sol-kicker {
  grid-row: span 2;
  font-family: var(--font-lat);
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.04em;
}

.solutions h3 {
  margin: 0;
  font-size: 1.2rem;
}

.solutions p {
  margin: 0;
  color: var(--muted);
  grid-column: 2;
}

.about-band {
  display: flex;
  align-items: end;
  gap: 0.55rem;
  height: 88px;
  margin-top: 1.5rem;
}

.about-band span {
  flex: 1;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, var(--orange), rgba(255, 106, 0, 0.25));
  transform-origin: bottom;
  animation: bars 2.8s ease-in-out infinite;
}

.about-band span:nth-child(1) { height: 35%; animation-delay: 0s; }
.about-band span:nth-child(2) { height: 62%; animation-delay: 0.12s; }
.about-band span:nth-child(3) { height: 48%; animation-delay: 0.24s; }
.about-band span:nth-child(4) { height: 88%; animation-delay: 0.08s; }
.about-band span:nth-child(5) { height: 55%; animation-delay: 0.3s; }
.about-band span:nth-child(6) { height: 72%; animation-delay: 0.18s; }
.about-band span:nth-child(7) { height: 40%; animation-delay: 0.36s; }

@keyframes bars {
  0%, 100% { transform: scaleY(0.72); opacity: 0.7; }
  50% { transform: scaleY(1); opacity: 1; }
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem clamp(1rem, 4vw, 3rem) 2rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.foot img {
  width: 110px;
  opacity: 0.9;
}

@media (min-width: 860px) {
  .solutions {
    grid-template-columns: 1fr 1fr;
    gap: 0 2.5rem;
  }

  .solutions li:nth-child(odd) {
    border-left: 1px solid transparent;
  }
}

@media (max-width: 700px) {
  .nav a:not(.nav-cta) {
    display: none;
  }

  .hero h1 {
    max-width: none;
  }
}

.page {
  position: relative;
  z-index: 1;
  padding: 2rem clamp(1rem, 4vw, 3rem) 3rem;
  max-width: 1100px;
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 0.35rem;
  color: var(--orange-deep);
  font-weight: 700;
  font-size: 0.92rem;
}

.price-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.5rem;
}

.price-card {
  padding: 1.25rem 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.price-card.is-featured {
  border-color: rgba(255, 106, 0, 0.45);
  background: rgba(255, 247, 240, 0.95);
}

.price-card h2 {
  margin: 0.35rem 0 0.25rem;
  font-size: 1.45rem;
}

.price-tag {
  margin: 0 0 0.85rem;
  color: var(--muted);
  font-weight: 600;
}

.price-card ul {
  margin: 0 0 1.1rem;
  padding: 0 1.1rem 0 0;
  color: var(--muted);
}

.price-card .badge {
  display: inline-block;
  margin: 0;
  color: var(--orange-deep);
  font-size: 0.8rem;
  font-weight: 800;
}

.download-panel {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1.4fr 1fr;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.75);
  margin: 1.25rem 0;
}

.download-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  justify-content: center;
}

ul.plain {
  margin: 0.75rem 0 0;
  padding: 0 1.1rem 0 0;
  color: var(--muted);
}

.steps {
  margin: 1.25rem 0;
  padding: 0 1.25rem 0 0;
  color: var(--muted);
}

.legal-note {
  color: var(--muted);
  font-size: 0.92rem;
}

.legal h1 {
  margin-top: 0;
}

.legal h2 {
  margin-top: 1.5rem;
  font-size: 1.15rem;
}

.legal .muted {
  color: var(--muted);
}

@media (max-width: 900px) {
  .price-grid,
  .download-panel {
    grid-template-columns: 1fr;
  }
}
