:root {
  --ink: #131313;
  --charcoal: #202020;
  --paper: #f3f1eb;
  --muted: #aaa8a2;
  --coral: #ff7380;
  --cyan: #24c5ed;
  --orange: #ff4f12;
  --line: rgba(255, 255, 255, 0.13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: #fff;
  font-family: "Avenir Next", "Helvetica Neue", "Noto Kufi Arabic", Tahoma, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }

main { overflow: hidden; }

.site-header {
  width: min(1220px, calc(100% - 48px));
  min-height: 94px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 20;
}
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand-mark {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  background: var(--coral);
  color: var(--ink);
  font: 900 23px/1 Arial, sans-serif;
  transform: skew(-7deg);
}
.brand-copy { display: grid; line-height: 1.1; }
.brand-copy strong { font-size: 19px; }
.brand-copy small { margin-top: 4px; color: var(--muted); font-size: 10px; letter-spacing: .02em; }
.site-header nav { display: flex; align-items: center; gap: 34px; color: #d7d6d1; font-size: 14px; }
.site-header nav a { transition: color .2s ease; }
.site-header nav a:hover, .site-header nav a:focus-visible { color: #fff; }
.site-header nav .nav-contact { color: var(--coral); direction: ltr; font-weight: 700; }

.hero {
  width: min(1220px, calc(100% - 48px));
  min-height: 700px;
  margin: 0 auto;
  padding: 80px 0 86px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 54px;
  align-items: center;
}
.hero-copy { position: relative; z-index: 3; }
.eyebrow, .section-kicker {
  margin: 0 0 24px;
  color: #cac8c2;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .03em;
}
.eyebrow { display: flex; align-items: center; gap: 10px; }
.eyebrow span { width: 32px; height: 2px; background: var(--coral); }
.hero h1, .section-heading h2, .process-intro h2, .cta-section h2 {
  margin: 0;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.055em;
}
.hero h1 { max-width: 690px; font-size: clamp(54px, 6.3vw, 94px); }
.hero h1 span { display: block; color: var(--coral); }
.hero-description {
  max-width: 575px;
  margin: 30px 0 0;
  color: #c7c5c0;
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.9;
}
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 38px; }
.primary-button {
  min-height: 58px;
  padding: 0 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: var(--coral);
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
  transition: transform .2s ease, background .2s ease;
}
.primary-button:hover, .primary-button:focus-visible { transform: translateY(-3px); background: #ff8e98; }
.button-arrow { font-size: 22px; line-height: 1; }
.text-link { padding-bottom: 6px; border-bottom: 1px solid #676767; color: #dfddd7; font-size: 14px; }
.text-link span { margin-right: 6px; color: var(--cyan); }
.direct-note { margin: 24px 0 0; color: #85837f; font-size: 12px; }
.direct-note span { color: #bcead2; }
.direct-note span::before { content: ''; display: inline-block; width: 7px; height: 7px; margin-left: 7px; border-radius: 50%; background: #69dfab; box-shadow: 0 0 0 4px rgba(105, 223, 171, .11); }

.hero-art { min-height: 545px; position: relative; direction: ltr; }
.hero-art::before {
  content: '';
  position: absolute;
  width: 460px;
  height: 460px;
  left: 48%;
  top: 48%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 90px -70px 0 -45px var(--cyan);
}
.art-orbit { position: absolute; z-index: 1; border: 1px solid rgba(255,255,255,.32); border-radius: 50%; }
.orbit-one { width: 530px; height: 220px; left: 23px; top: 165px; transform: rotate(-18deg); }
.orbit-two { width: 420px; height: 500px; left: 105px; top: 24px; transform: rotate(24deg); }
.browser-frame {
  position: absolute;
  z-index: 4;
  width: min(480px, 83%);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-3deg);
  background: #f5f2e9;
  color: var(--ink);
  border: 1px solid rgba(0,0,0,.18);
  box-shadow: 0 28px 70px rgba(0,0,0,.35);
}
.browser-bar { height: 42px; padding: 0 16px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid #d7d2c7; color: #777268; font-size: 8px; text-transform: uppercase; letter-spacing: .12em; }
.browser-dots { display: flex; gap: 5px; }
.browser-dots i { width: 7px; height: 7px; border-radius: 50%; background: #c3beb2; }
.browser-dots i:first-child { background: var(--coral); }
.browser-body { min-height: 325px; padding: 48px 36px; position: relative; overflow: hidden; }
.browser-body::after { content: 'R'; position: absolute; right: -20px; bottom: -58px; color: rgba(19,19,19,.06); font: 900 230px/1 Arial,sans-serif; }
.mock-label { font-size: 10px; color: #747067; }
.browser-body strong { display: block; margin-top: 20px; font-size: clamp(35px, 4.6vw, 61px); line-height: .98; letter-spacing: -.06em; }
.mock-lines { display: grid; gap: 6px; width: 43%; margin-top: 24px; }
.mock-lines i { height: 5px; background: #dad6cc; }
.mock-lines i:nth-child(2) { width: 80%; }
.mock-lines i:nth-child(3) { width: 58%; }
.mock-button { display: inline-block; margin-top: 27px; padding: 12px 18px; background: var(--ink); color: #fff; font-size: 10px; font-weight: 700; }
.floating-card { position: absolute; z-index: 6; box-shadow: 0 18px 40px rgba(0,0,0,.25); }
.identity-card { width: 180px; left: -6px; bottom: 33px; padding: 20px; background: var(--cyan); color: #09232b; transform: rotate(4deg); }
.identity-card > span { font-size: 10px; }
.identity-card strong { display: block; margin-top: 5px; font-size: 20px; }
.swatches { display: flex; gap: 5px; margin-top: 22px; }
.swatches i { width: 22px; height: 22px; background: #101010; }
.swatches i:nth-child(2) { background: #ff7380; }
.swatches i:nth-child(3) { background: #f2efe6; }
.swatches i:nth-child(4) { background: #ff4f12; }
.quality-card { width: 184px; right: 0; top: 58px; padding: 18px; background: var(--ink); border: 1px solid #555; transform: rotate(5deg); }
.quality-card strong { display: block; font-size: 14px; }
.quality-card span { display: block; margin-top: 6px; color: #9b9994; font-size: 9px; line-height: 1.6; }
.art-word { position: absolute; z-index: 2; right: -32px; bottom: 2px; color: rgba(255,255,255,.12); font: 900 76px/1 Arial,sans-serif; letter-spacing: -.08em; }

.logo-strip {
  min-height: 135px;
  padding: 24px max(24px, calc((100vw - 1220px)/2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  background: var(--paper);
  color: var(--ink);
}
.logo-strip p { max-width: 330px; margin: 0; font-size: 18px; font-weight: 800; line-height: 1.6; }
.logo-strip img { width: min(570px, 55vw); max-height: 86px; display: block; object-fit: contain; object-position: center; }

.section { width: min(1220px, calc(100% - 48px)); margin: 0 auto; padding: 126px 0; }
.section-heading { display: grid; grid-template-columns: .65fr 1.3fr .75fr; gap: 55px; align-items: end; margin-bottom: 58px; }
.section-heading .section-kicker, .process-intro .section-kicker, .cta-section .section-kicker { color: var(--coral); }
.section-heading h2, .process-intro h2 { font-size: clamp(42px, 5vw, 68px); }
.section-heading > p:last-child, .process-intro > p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.9; }
.service-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.service-card { min-height: 405px; padding: 34px; color: var(--ink); display: flex; flex-direction: column; position: relative; overflow: hidden; }
.service-card::after { content: ''; position: absolute; width: 220px; height: 220px; left: -95px; bottom: -112px; border: 28px solid rgba(0,0,0,.08); border-radius: 50%; }
.service-card.cyan { background: var(--cyan); }
.service-card.coral { background: var(--coral); }
.service-topline { display: flex; justify-content: space-between; align-items: center; padding-bottom: 24px; border-bottom: 1px solid rgba(0,0,0,.25); font: 800 13px/1 Arial,sans-serif; }
.service-topline i { font-size: 25px; font-style: normal; }
.service-card h3 { margin: auto 0 16px; font-size: clamp(33px, 4vw, 51px); letter-spacing: -.05em; }
.service-card > p { max-width: 520px; margin: 0; font-size: 15px; line-height: 1.8; }
.tag-list { display: flex; flex-wrap: wrap; gap: 10px 18px; margin-top: 27px; font-size: 11px; font-weight: 800; }
.tag-list span::before { content: '•'; margin-left: 7px; }

.process { display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; align-items: start; border-top: 1px solid var(--line); }
.process-intro { position: sticky; top: 40px; }
.process-intro > p { max-width: 450px; margin-top: 26px; }
.inline-instagram { display: inline-flex; align-items: center; gap: 15px; margin-top: 32px; padding-bottom: 8px; border-bottom: 1px solid var(--coral); color: var(--coral); font-size: 14px; font-weight: 800; direction: rtl; }
.steps-list { border-top: 1px solid var(--line); }
.step { display: grid; grid-template-columns: 48px 1fr; gap: 26px; padding: 37px 0; border-bottom: 1px solid var(--line); }
.step > span { width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid #4a4a4a; color: var(--cyan); font-size: 13px; }
.step h3 { margin: 0; font-size: 28px; letter-spacing: -.03em; }
.step p { max-width: 520px; margin: 12px 0 0; color: var(--muted); font-size: 14px; line-height: 1.9; }

.cta-section {
  width: min(1220px, calc(100% - 48px));
  min-height: 540px;
  margin: 0 auto 80px;
  padding: 84px 8%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--orange);
  color: #fff;
}
.cta-section .section-kicker { color: #fff; opacity: .72; }
.cta-section h2 { font-size: clamp(54px, 7vw, 94px); }
.cta-section > p:not(.section-kicker) { margin: 22px 0 30px; font-size: 16px; }
.primary-button.light { background: #fff; }
.primary-button.light:hover { background: var(--paper); }
.cta-accent { position: absolute; left: -30px; bottom: -138px; color: rgba(255,255,255,.13); font: 900 500px/1 Arial,sans-serif; transform: rotate(6deg); }
.cta-handle { position: absolute; left: 40px; top: 38px; font: 800 13px/1 Arial,sans-serif; direction: ltr; }

footer {
  width: min(1220px, calc(100% - 48px));
  min-height: 120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid var(--line);
  color: #8e8c87;
  font-size: 12px;
}
.footer-brand { color: #fff; }
footer > a:last-child { direction: ltr; color: var(--coral); font-weight: 800; }

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; padding-top: 66px; }
  .hero-copy { text-align: center; }
  .eyebrow, .hero-actions { justify-content: center; }
  .hero-description { margin-inline: auto; }
  .hero-art { width: min(620px, 100%); margin: 0 auto; }
  .section-heading { grid-template-columns: 1fr; gap: 20px; }
  .section-heading > p:last-child { max-width: 550px; }
  .process { grid-template-columns: 1fr; gap: 58px; }
  .process-intro { position: static; }
}

@media (max-width: 720px) {
  .site-header { width: min(100% - 32px, 1220px); min-height: 78px; }
  .site-header nav > a:not(.nav-contact) { display: none; }
  .site-header nav { gap: 0; }
  .brand-mark { width: 38px; height: 38px; }
  .hero, .section, .cta-section, footer { width: min(100% - 32px, 1220px); }
  .hero { padding: 58px 0 64px; gap: 26px; }
  .hero h1 { font-size: clamp(48px, 15vw, 70px); }
  .hero-description { font-size: 16px; line-height: 1.8; }
  .hero-actions { flex-direction: column; gap: 20px; }
  .primary-button { width: 100%; }
  .hero-art { min-height: 420px; transform: scale(.92); }
  .hero-art::before { width: 330px; height: 330px; }
  .browser-frame { width: 90%; }
  .browser-body { min-height: 260px; padding: 38px 25px; }
  .quality-card { right: -12px; top: 10px; }
  .identity-card { left: -10px; bottom: 4px; }
  .orbit-one { width: 380px; left: -30px; }
  .orbit-two { width: 330px; height: 390px; left: 20px; }
  .logo-strip { padding: 30px 24px; flex-direction: column; text-align: center; }
  .logo-strip img { width: 100%; max-height: 72px; }
  .section { padding: 88px 0; }
  .section-heading h2, .process-intro h2 { font-size: 43px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 370px; padding: 28px; }
  .process { gap: 42px; }
  .cta-section { min-height: 520px; margin-bottom: 40px; padding: 64px 28px; }
  .cta-section h2 { font-size: 54px; }
  .cta-accent { font-size: 350px; left: -80px; }
  footer { padding: 34px 0; flex-direction: column; text-align: center; }
}

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