:root {
  --ink: #0f172a;
  --muted: #5b6475;
  --soft: #eef3f8;
  --line: rgba(15, 23, 42, 0.1);
  --panel: rgba(255, 255, 255, 0.82);
  --white: #ffffff;
  --navy: #08111f;
  --blue: #1f5eff;
  --cyan: #09b6d8;
  --gold: #c59b45;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 10% 0%, rgba(31, 94, 255, 0.11), transparent 30rem),
    radial-gradient(circle at 88% 12%, rgba(9, 182, 216, 0.12), transparent 28rem),
    #f8fafc;
  line-height: 1.6;
  overflow-x: hidden;
}

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

.shell {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 104px 0;
  scroll-margin-top: 90px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(248, 250, 252, 0.78);
  backdrop-filter: blur(22px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
}

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

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 30px rgba(31, 94, 255, 0.22);
  overflow: hidden;
}

.brand-mark img {
  width: 31px;
  height: 31px;
  object-fit: contain;
}

.brand strong {
  display: block;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.2;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #334155;
  font-size: 0.93rem;
  font-weight: 600;
}

.nav-links a {
  transition: color 180ms ease;
}

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

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 78px);
  display: grid;
  align-items: center;
  padding-top: 82px;
}

.hero::after {
  position: absolute;
  right: -12rem;
  bottom: -18rem;
  width: 42rem;
  height: 42rem;
  content: "";
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(31, 94, 255, 0.12), rgba(9, 182, 216, 0.05));
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.8fr);
  gap: 68px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 7vw, 5.9rem);
  line-height: 0.94;
  letter-spacing: -0.07em;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.22rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.hero-lead {
  max-width: 760px;
  color: #263244;
  font-size: clamp(1.12rem, 2vw, 1.38rem);
  font-weight: 600;
}

.hero-text,
.section-body p,
.center-heading p,
.product-copy p,
.contact-panel p {
  color: var(--muted);
  font-size: 1.04rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  font-weight: 800;
  border-radius: 999px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.btn.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 18px 34px rgba(31, 94, 255, 0.23);
}

.btn.secondary {
  color: var(--ink);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
}

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

.btn.outline-light {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.dark-btn {
  background: var(--white);
}

.hero-panel {
  display: grid;
  gap: 18px;
}

.orbit-card,
.service-card,
.engagement-card,
.trust-card,
.brand-card {
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.main-card {
  min-height: 380px;
  padding: 34px;
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(8, 17, 31, 0.94), rgba(21, 38, 68, 0.92)),
    var(--navy);
  color: var(--white);
}

.card-label {
  display: inline-flex;
  margin-bottom: 84px;
  padding: 8px 12px;
  color: #dbeafe;
  font-size: 0.78rem;
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
}

.main-card h2 {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.main-card p {
  color: #cbd5e1;
}

.metric-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.metric-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.8);
}

.metric-card strong {
  display: block;
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: -0.05em;
}

.metric-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 600;
}

.about,
.brands,
.binary {
  background: rgba(255, 255, 255, 0.55);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 74px;
}

.section-body p:last-child,
.product-copy p:last-of-type {
  margin-bottom: 0;
}

.center-heading {
  max-width: 790px;
  margin: 0 auto 46px;
  text-align: center;
}

.service-grid,
.engagement-grid,
.brand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card,
.engagement-card,
.brand-card {
  padding: 30px;
  border-radius: 26px;
}

.service-card {
  min-height: 286px;
}

.service-card p,
.engagement-card p,
.trust-card p,
.brand-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.icon {
  display: inline-grid;
  width: 48px;
  height: 48px;
  margin-bottom: 34px;
  place-items: center;
  color: var(--blue);
  font-weight: 800;
  border-radius: 16px;
  background: rgba(31, 94, 255, 0.1);
}

.architect {
  color: var(--white);
  background:
    radial-gradient(circle at 15% 20%, rgba(31, 94, 255, 0.35), transparent 24rem),
    linear-gradient(135deg, #08111f, #111c31 62%, #0b2536);
}

.architect .eyebrow,
.contact .eyebrow {
  color: #8bdcff;
}

.architect-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.72fr);
  gap: 44px;
  padding: 46px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.22);
}

.architect-copy p,
.architect-list li {
  color: #d8e2ef;
}

.architect-list {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.07);
}

.architect-list ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 18px;
}

.engagement-grid {
  margin-top: 24px;
}

.engagement-card {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.engagement-card p {
  color: #cbd5e1;
}

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

.trust-card {
  padding: 28px;
  border-radius: 24px;
}

.trust-card span {
  display: block;
  width: 34px;
  height: 5px;
  margin-bottom: 28px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.brand-intro {
  margin-bottom: 34px;
}

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

.brand-card {
  min-height: 230px;
}

.brand-card h3 {
  font-size: 2rem;
}

.product-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1fr);
  gap: 56px;
}

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

.feature-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.feature-panel div {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  padding: 18px;
  color: var(--ink);
  font-weight: 800;
  border-radius: 20px;
  background: linear-gradient(135deg, #f8fafc, #eef4ff);
}

.feature-panel svg {
  align-self: flex-start;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  color: rgba(31, 94, 255, 0.82);
  filter: drop-shadow(0 10px 16px rgba(31, 94, 255, 0.12));
}

.feature-panel path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-panel span {
  display: block;
  align-self: flex-start;
}

.feature-panel.dark {
  border-color: rgba(255, 255, 255, 0.14);
  background: var(--navy);
}

.feature-panel.dark div {
  color: var(--white);
  background: linear-gradient(135deg, rgba(31, 94, 255, 0.36), rgba(9, 182, 216, 0.16));
}

.feature-panel.dark svg {
  color: rgba(139, 220, 255, 0.95);
  filter: drop-shadow(0 10px 16px rgba(9, 182, 216, 0.12));
}

.testimonials {
  background: rgba(255, 255, 255, 0.55);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: stretch;
}

.testimonial-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 56px 44px 36px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.testimonial-quote {
  position: absolute;
  top: 24px;
  left: 32px;
  width: 50px;
  height: 38px;
  fill: rgba(31, 94, 255, 0.14);
}

.testimonial-card blockquote {
  flex: 1;
  margin: 12px 0 30px;
  padding: 0;
  border: none;
}

.testimonial-card blockquote p {
  margin: 0 0 16px;
  color: #1f2a3d;
  font-size: 1.08rem;
  line-height: 1.7;
}

.testimonial-card blockquote p:last-child {
  margin-bottom: 0;
}

.testimonial-attribution {
  display: flex;
  align-items: center;
  margin: 0;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.testimonial-client {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  transition: transform 180ms ease;
}

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

.testimonial-logo {
  display: grid;
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  place-items: center;
  overflow: hidden;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.18);
}

.testimonial-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.testimonial-logo-pack-tamam {
  background: #3a2a1c;
  box-shadow: 0 14px 30px rgba(58, 42, 28, 0.28);
}

.testimonial-logo-shawarma {
  background: #3b3a8e;
  box-shadow: 0 14px 30px rgba(59, 58, 142, 0.28);
}

.testimonial-meta {
  display: grid;
  gap: 4px;
}

.testimonial-meta strong {
  font-size: 1.04rem;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.testimonial-meta small {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 600;
}

.contact {
  padding-top: 76px;
  color: var(--white);
  background:
    radial-gradient(circle at 20% 20%, rgba(9, 182, 216, 0.22), transparent 25rem),
    linear-gradient(135deg, #08111f, #101b2e);
}

.contact-panel {
  max-width: 930px;
  padding: 54px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.06);
  text-align: center;
}

.contact-panel p {
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
  color: #d8e2ef;
}

.contact-panel .hero-actions {
  justify-content: center;
}

.contact-methods {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 26px;
}

.contact-methods a {
  padding: 12px 16px;
  color: #eef6ff;
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
}

.contact-address {
  max-width: 640px;
  margin: 22px auto 0;
  color: #cbd5e1;
  font-size: 0.98rem;
  font-style: normal;
}

.footer {
  padding: 54px 0 28px;
  color: #cbd5e1;
  background: #060c16;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) 0.7fr 0.8fr;
  gap: 42px;
}

.footer-brand {
  color: var(--white);
}

.footer p {
  max-width: 420px;
  margin: 18px 0 0;
}

.footer-links,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-contact address {
  max-width: 300px;
  color: #94a3b8;
  font-style: normal;
  line-height: 1.6;
}

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

.copyright {
  margin-top: 40px;
  padding-top: 22px;
  color: #94a3b8;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@media (max-width: 980px) {
  .section {
    padding: 82px 0;
  }

  .hero-grid,
  .split,
  .architect-panel,
  .product-grid,
  .product-grid.reverse,
  .testimonial-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-grid {
    max-width: 880px;
    margin: 0 auto;
  }

  .service-grid,
  .engagement-grid,
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(100% - 28px, 1140px);
  }

  .section {
    padding: 68px 0;
    scroll-margin-top: 78px;
  }

  .nav {
    min-height: 70px;
  }

  .brand {
    gap: 10px;
  }

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

  .brand-mark img {
    width: 28px;
    height: 28px;
  }

  .brand strong {
    font-size: 0.95rem;
  }

  .brand small {
    font-size: 0.69rem;
  }

  .nav-toggle {
    display: block;
    width: 40px;
    height: 40px;
    flex: 0 0 auto;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: 14px;
    left: 14px;
    display: none;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: grid;
    gap: 14px;
  }

  h1 {
    font-size: clamp(2.45rem, 12.5vw, 3.55rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
  }

  h2 {
    font-size: clamp(1.85rem, 8vw, 2.55rem);
    line-height: 1.08;
  }

  .hero {
    padding-top: 54px;
  }

  .hero-grid {
    gap: 34px;
  }

  .hero-lead {
    font-size: 1.06rem;
  }

  .hero-text,
  .section-body p,
  .center-heading p,
  .product-copy p,
  .contact-panel p {
    font-size: 0.98rem;
  }

  .hero-actions,
  .contact-methods {
    flex-direction: column;
    margin-top: 26px;
  }

  .btn,
  .contact-methods a {
    width: 100%;
    min-height: 50px;
  }

  .service-grid,
  .engagement-grid,
  .trust-grid,
  .brand-grid {
    grid-template-columns: 1fr;
  }

  .main-card,
  .architect-panel,
  .contact-panel,
  .testimonial-card {
    padding: 28px;
  }

  .testimonial-card {
    padding-top: 64px;
  }

  .testimonial-quote {
    top: 22px;
    left: 24px;
    width: 44px;
    height: 34px;
  }

  .testimonial-card blockquote p {
    font-size: 1rem;
  }

  .testimonial-logo {
    width: 56px;
    height: 56px;
    border-radius: 16px;
  }

  .main-card {
    min-height: auto;
  }

  .card-label {
    margin-bottom: 46px;
  }

  .metric-row,
  .feature-panel {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .metric-card {
    padding: 20px 18px;
  }

  .metric-card strong {
    font-size: 2rem;
  }

  .metric-card span {
    font-size: 0.86rem;
  }

  .service-card,
  .engagement-card,
  .trust-card,
  .brand-card {
    padding: 24px;
  }

  .service-card,
  .brand-card {
    min-height: auto;
  }

  .architect-list {
    padding: 24px;
  }

  .product-copy {
    text-align: left;
  }

  .binary .product-copy {
    order: -1;
  }

  .feature-panel {
    padding: 14px;
    border-radius: 24px;
  }

  .feature-panel div {
    min-height: 104px;
    padding: 14px;
    font-size: 0.86rem;
    line-height: 1.25;
    border-radius: 16px;
  }

  .feature-panel svg {
    width: 32px;
    height: 32px;
    margin-bottom: 14px;
  }

  .product-grid,
  .product-grid.reverse {
    gap: 32px;
  }

  .footer {
    padding-top: 44px;
  }

  .footer-grid {
    gap: 28px;
  }
}

@media (max-width: 390px) {
  .shell {
    width: min(100% - 24px, 1140px);
  }

  .brand small {
    display: none;
  }

  h1 {
    font-size: clamp(2.25rem, 12vw, 2.9rem);
  }

  .metric-row,
  .feature-panel {
    grid-template-columns: 1fr;
  }

  .feature-panel div {
    min-height: 96px;
  }
}
