:root {
  --bg: #03090c;
  --bg-deep: #010304;
  --panel: rgba(8, 27, 33, 0.72);
  --panel-solid: #08191f;
  --line: rgba(108, 227, 218, 0.16);
  --line-strong: rgba(108, 227, 218, 0.30);
  --text: #f4fbfb;
  --muted: #a8bec2;
  --brand: #6ce3da;
  --brand-2: #647de5;
  --brand-soft: #9aeee7;
  --aws: #ff9900;
  --shadow: 0 30px 80px rgba(0,0,0,.28);
  --radius: 26px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 4%, rgba(108, 227, 218, .11), transparent 27rem),
    radial-gradient(circle at 90% 22%, rgba(100, 125, 229, .09), transparent 25rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::selection { background: var(--brand); color: var(--bg-deep); }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
svg { display: block; }

.site-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .11;
  z-index: 99;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.container { width: min(var(--container), calc(100% - 48px)); margin-inline: auto; }
.section { padding: 120px 0; position: relative; }
.section-shell { position: relative; }
.glass-card { background: linear-gradient(155deg, rgba(13, 53, 63, .78), rgba(5, 25, 33, .72)); border: 1px solid var(--line); box-shadow: var(--shadow); backdrop-filter: blur(18px); }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  background: linear-gradient(to bottom, rgba(3,16,22,.88), rgba(3,16,22,.58));
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(108,227,218,.07);
}
.nav-wrap { min-height: 76px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; }
.brand-logo { display: block; width: 150px; height: auto; object-fit: contain; }
.site-footer .brand-logo { width: 164px; }
.nav-links { display: flex; align-items: center; gap: 30px; color: #c7d7d9; font-size: 14px; }
.nav-links > a:not(.nav-cta) { transition: color .25s ease; }
.nav-links > a:not(.nav-cta):hover { color: white; }
.nav-cta { border: 1px solid var(--line-strong); padding: 11px 17px; border-radius: 999px; background: rgba(108,227,218,.06); transition: .25s ease; }
.nav-cta:hover { background: rgba(108,227,218,.14); transform: translateY(-1px); }
.nav-toggle { display: none; border: 0; background: transparent; width: 44px; height: 44px; position: relative; }
.nav-toggle span { position: absolute; width: 21px; height: 1.5px; background: white; left: 12px; transition: .25s ease; }
.nav-toggle span:first-child { top: 17px; }
.nav-toggle span:last-child { top: 25px; }

.hero { min-height: 860px; padding: 160px 0 62px; overflow: hidden; }
.hero::before {
  content: "";
  position: absolute;
  width: 760px;
  height: 760px;
  border: 1px solid rgba(108,227,218,.08);
  border-radius: 50%;
  right: -340px;
  top: 70px;
  box-shadow: 0 0 0 120px rgba(108,227,218,.018), 0 0 0 250px rgba(108,227,218,.01);
}
.hero-grid { display: grid; grid-template-columns: 1.06fr .94fr; align-items: center; gap: 70px; }
.hero-copy { position: relative; z-index: 2; }
.eyebrow { text-transform: uppercase; letter-spacing: .14em; font-size: 11px; font-weight: 720; color: var(--brand-soft); display: flex; align-items: center; gap: 10px; margin-bottom: 22px; }
.pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 0 5px rgba(108,227,218,.12), 0 0 18px rgba(108,227,218,.9); }
.hero h1 { font-size: clamp(58px, 6.7vw, 96px); line-height: .94; letter-spacing: -.065em; margin: 0 0 28px; max-width: 790px; font-weight: 660; }
.aws-text { color: var(--aws); }
.gradient-text { background: linear-gradient(90deg, #f5ffff 0%, var(--brand) 45%, var(--brand-2) 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-lede { font-size: 19px; line-height: 1.65; max-width: 660px; color: var(--muted); margin: 0 0 34px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.button { display: inline-flex; justify-content: center; align-items: center; gap: 10px; min-height: 52px; padding: 0 22px; border-radius: 999px; font-size: 14px; font-weight: 720; border: 1px solid transparent; transition: transform .25s ease, box-shadow .25s ease, background .25s ease; cursor: pointer; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: linear-gradient(100deg, var(--brand-2), #5aa9dc 48%, var(--brand)); color: #031316; box-shadow: 0 10px 35px rgba(108,227,218,.17); }
.button-primary:hover { box-shadow: 0 14px 42px rgba(108,227,218,.29); }
.button-secondary { border-color: var(--line); background: rgba(255,255,255,.025); color: #d9e8e9; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 32px; }
.hero-proof span { border: 1px solid rgba(255,255,255,.08); background: rgba(255,255,255,.025); border-radius: 999px; padding: 8px 11px; color: #92aaae; font-size: 11px; }

.hero-visual { min-height: 510px; position: relative; display: grid; place-items: center; }
.orb { position: absolute; border-radius: 50%; filter: blur(6px); }
.orb-one { width: 330px; height: 330px; background: rgba(108,227,218,.11); right: 0; top: 20px; }
.orb-two { width: 210px; height: 210px; background: rgba(100,125,229,.13); left: 0; bottom: 0; }
.hero-panel { width: min(100%, 510px); min-height: 430px; border-radius: 34px; padding: 22px; position: relative; z-index: 2; overflow: hidden; }
.hero-panel::after { content:""; position:absolute; inset:auto -80px -130px auto; width:270px; height:270px; border-radius:50%; background:radial-gradient(circle, rgba(108,227,218,.2), transparent 65%); }
.panel-topline { display: flex; align-items: center; gap: 9px; color: #acc2c5; font-size: 12px; position: relative; z-index: 2; }
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 15px var(--brand); }
.panel-tag { margin-left: auto; border: 1px solid var(--line); padding: 6px 9px; border-radius: 999px; color: var(--brand-soft); font-size: 9px; letter-spacing: .08em; }
.architecture { height: 300px; position: relative; display: grid; place-items: center; }
.architecture::before, .architecture::after { content:""; position:absolute; border:1px solid rgba(108,227,218,.12); border-radius:50%; }
.architecture::before { width: 248px; height:248px; }
.architecture::after { width: 176px; height:176px; border-style:dashed; animation: spin 24s linear infinite; }
.arch-core { width: 130px; height: 130px; border-radius: 50%; display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; background: radial-gradient(circle at 40% 32%, rgba(108,227,218,.23), rgba(6,24,32,.92) 65%); border:1px solid rgba(108,227,218,.22); z-index:3; box-shadow: 0 0 50px rgba(108,227,218,.12); }
.cloud-icon { width:58px; height:44px; margin-bottom:5px; display:grid; place-items:center; }
.cloud-icon img { width:100%; height:100%; object-fit:contain; }
.arch-core strong { font-size:12px; }
.arch-core span { font-size:9px; color:#7f9ba0; margin-top:4px; }
.arch-node { position:absolute; z-index:4; display:flex; align-items:center; gap:7px; font-size:10px; color:#c9dcde; padding:7px 9px; border-radius:999px; border:1px solid rgba(255,255,255,.08); background:#08191f; box-shadow:0 8px 20px rgba(0,0,0,.22); }
.arch-node span { width:6px; height:6px; border-radius:50%; background:var(--brand); }
.node-one { top:47px; left:50%; transform:translateX(-50%); }
.node-two { right:32px; top:50%; transform:translateY(-50%); }
.node-three { bottom:48px; left:50%; transform:translateX(-50%); }
.node-four { left:35px; top:50%; transform:translateY(-50%); }
.panel-footer { border-top: 1px solid var(--line); padding-top: 17px; display:grid; grid-template-columns:1fr 1fr auto; gap:12px; align-items:end; position:relative; z-index:2; }
.panel-footer div:not(.aws-chip) { display:flex; flex-direction:column; gap:3px; }
.panel-footer strong { font-size:12px; }
.panel-footer span { color:#6f8f94; font-size:9px; }
.aws-chip { text-align:right; display:flex; flex-direction:column; align-items:flex-end; }
.aws-chip b { color:var(--aws); letter-spacing:.03em; font-size:21px; }

.metrics { margin-top: 78px; display:grid; grid-template-columns:repeat(4,1fr); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.metric { padding: 28px 24px; display:flex; flex-direction:column; gap:5px; border-right:1px solid var(--line); }
.metric:first-child { padding-left:0; }
.metric:last-child { border-right:0; }
.metric strong { font-size:25px; letter-spacing:-.04em; }
.metric span { color:#779399; font-size:11px; }

.section-heading { max-width: 770px; margin-bottom: 55px; }
.section-heading h2, .saudi-copy h2, .contact-copy h2, .proof-copy h2 { font-size: clamp(40px, 5vw, 66px); line-height: 1; letter-spacing: -.055em; margin: 0 0 18px; font-weight: 630; }
.section-heading p, .saudi-copy > p, .proof-copy > p, .contact-copy > p { color: var(--muted); font-size:17px; line-height:1.65; margin:0; }
.section-services { background: linear-gradient(180deg, rgba(3,16,22,.05), rgba(3,16,22,.52)); }
.bento-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap:14px; }
.service-card { min-height: 330px; border:1px solid var(--line); border-radius:var(--radius); background:rgba(255,255,255,.022); padding:28px; position:relative; overflow:hidden; transition:transform .3s ease, border-color .3s ease, background .3s ease; }
.service-card:hover { transform: translateY(-5px); border-color:var(--line-strong); background:rgba(108,227,218,.035); }
.service-large { grid-column: span 2; min-height: 430px; background: radial-gradient(circle at 90% 10%, rgba(108,227,218,.08), transparent 36%), rgba(255,255,255,.022); }
.service-accent { background: linear-gradient(150deg, rgba(108,227,218,.09), rgba(100,125,229,.04)); }
.service-icon { width:44px; height:44px; display:grid; place-items:center; border-radius:14px; border:1px solid var(--line); color:var(--brand-soft); background:rgba(108,227,218,.05); margin-bottom:46px; }
.service-icon svg { width:23px; }
.service-kicker { text-transform:uppercase; letter-spacing:.12em; color:#66878c; font-size:9px; }
.service-card h3 { font-size:25px; letter-spacing:-.035em; margin:10px 0 12px; }
.service-card p { color:#91aaae; line-height:1.62; font-size:14px; margin:0; max-width:620px; }
.mini-list { list-style:none; display:flex; flex-wrap:wrap; padding:0; margin:24px 0 0; gap:8px; }
.mini-list li { border:1px solid var(--line); border-radius:999px; padding:7px 10px; font-size:10px; color:#93aaae; }
.text-link { display:inline-flex; align-items:center; gap:8px; margin-top:30px; color:var(--brand-soft); font-size:13px; font-weight:650; }
.text-link span { transition:transform .2s ease; }
.text-link:hover span { transform:translate(3px,-3px); }

.saudi-section { overflow:hidden; background: radial-gradient(circle at 80% 48%, rgba(108,227,218,.07), transparent 28rem), #03090c; }
.saudi-grid { display:grid; grid-template-columns:1fr .92fr; gap:90px; align-items:center; }
.saudi-copy > p { max-width:650px; }
.check-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:12px 18px; margin:30px 0 34px; }
.check-grid div { display:flex; gap:9px; align-items:center; color:#b5c7c9; font-size:13px; }
.check-grid span { color:var(--brand); }
.saudi-visual { min-height:500px; display:grid; place-items:center; position:relative; }
.ksa-card { width:min(100%, 420px); border-radius:34px; padding:30px; position:relative; z-index:2; }
.ksa-top { display:flex; justify-content:space-between; align-items:center; gap:20px; font-size:10px; text-transform:uppercase; letter-spacing:.1em; color:#8ca5a9; }
.live-pill { padding:6px 8px; border-radius:999px; border:1px solid rgba(255,153,0,.25); color:#ffb440; background:rgba(255,153,0,.05); }
.ksa-number { font-size:100px; line-height:.8; letter-spacing:-.08em; font-weight:640; margin:60px 0 26px; background:linear-gradient(180deg,#f6ffff 0%,#6ce3da 100%); -webkit-background-clip:text; background-clip:text; color:transparent; }
.ksa-number span { display:block; font-size:44px; color:var(--brand-soft); margin-left:5px; letter-spacing:-.04em; }
.ksa-card p { color:#8fa8ac; line-height:1.65; font-size:13px; }
.ksa-divider { height:1px; background:var(--line); margin:24px 0 18px; }
.ksa-foot { display:flex; justify-content:space-between; align-items:flex-end; }
.ksa-foot > span { font-size:26px; letter-spacing:-.04em; }
.ksa-foot strong { color:var(--brand-soft); font-size:10px; max-width:140px; text-align:right; line-height:1.4; text-transform:uppercase; letter-spacing:.08em; }
.ring { position:absolute; border:1px solid rgba(108,227,218,.10); border-radius:50%; }
.ring-a { width:520px; height:520px; }
.ring-b { width:640px; height:640px; border-style:dashed; animation:spin 40s linear infinite reverse; }
.ring-c { width:760px; height:760px; opacity:.45; }

.ai-section { background:linear-gradient(180deg,#061820,#071b23); }
.split-heading { max-width:none; display:grid; grid-template-columns:1.1fr .9fr; gap:80px; align-items:end; }
.split-heading > p { padding-bottom:4px; }
.ai-stage { display:grid; grid-template-columns:280px 1fr; gap:18px; }
.ai-side-list { display:flex; flex-direction:column; gap:8px; }
.ai-tab { min-height:68px; border-radius:18px; border:1px solid transparent; background:transparent; display:flex; align-items:center; gap:18px; padding:0 18px; color:#78969b; cursor:pointer; text-align:left; transition:.25s ease; }
.ai-tab span { font-size:10px; color:#4f7379; }
.ai-tab.active, .ai-tab:hover { border-color:var(--line); background:rgba(255,255,255,.025); color:#d9e7e9; }
.ai-tab.active span { color:var(--brand); }
.ai-display { min-height:470px; border-radius:32px; padding:28px; position:relative; overflow:hidden; }
.ai-display::before { content:""; position:absolute; width:480px; height:480px; border-radius:50%; background:radial-gradient(circle,rgba(108,227,218,.12),transparent 64%); left:20px; top:-90px; }
.ai-display-top { display:flex; justify-content:space-between; position:relative; z-index:2; font-size:11px; color:#78969b; text-transform:uppercase; letter-spacing:.09em; }
.ai-content { display:none; grid-template-columns:1.1fr .9fr; min-height:380px; align-items:center; gap:30px; position:relative; z-index:2; }
.ai-content.active { display:grid; animation:fade .35s ease; }
.ai-content h3 { font-size:36px; letter-spacing:-.045em; margin:0 0 14px; }
.ai-content p { color:#91aaae; line-height:1.7; font-size:14px; margin:0; }
.ai-orbit { width:290px; height:290px; border-radius:50%; border:1px solid rgba(108,227,218,.14); position:relative; margin:auto; display:grid; place-items:center; box-shadow:inset 0 0 70px rgba(108,227,218,.035); }
.ai-orbit::after { content:""; position:absolute; inset:38px; border-radius:50%; border:1px dashed rgba(108,227,218,.14); animation:spin 30s linear infinite; }
.center-node { width:94px; height:94px; border-radius:50%; display:grid; place-items:center; background:radial-gradient(circle at 35% 30%,rgba(108,227,218,.26),#08252f 68%); border:1px solid rgba(108,227,218,.25); color:var(--brand-soft); font-size:12px; letter-spacing:.12em; z-index:3; box-shadow:0 0 40px rgba(108,227,218,.1); }
.sat { position:absolute; min-width:52px; text-align:center; padding:7px 9px; font-size:9px; border-radius:999px; border:1px solid var(--line); background:#08191f; color:#9cb3b6; z-index:3; }
.s1 { top:18px; left:50%; transform:translateX(-50%); }
.s2 { right:0; top:50%; transform:translateY(-50%); }
.s3 { bottom:18px; left:50%; transform:translateX(-50%); }
.s4 { left:0; top:50%; transform:translateY(-50%); }

.why-section { background:#04141b; }
.credential-grid { display:grid; grid-template-columns:repeat(3,1fr); border-top:1px solid var(--line); border-left:1px solid var(--line); }
.credential { min-height:230px; padding:28px; border-right:1px solid var(--line); border-bottom:1px solid var(--line); position:relative; }
.credential-index { font-size:10px; color:#55767c; }
.credential h3 { font-size:21px; letter-spacing:-.03em; margin:54px 0 10px; }
.credential p { margin:0; color:#829ea3; line-height:1.6; font-size:13px; }

.proof-section { background:radial-gradient(circle at 0% 50%,rgba(108,227,218,.06),transparent 28rem),#061820; }
.proof-grid { display:grid; grid-template-columns:.95fr 1.05fr; gap:70px; align-items:center; }
.proof-copy p { max-width:610px; }
.proof-card { border-radius:30px; padding:28px; min-height:420px; display:flex; flex-direction:column; }
.proof-label { color:#68878d; font-size:9px; letter-spacing:.13em; }
.proof-stack { display:grid; gap:8px; margin:45px 0 30px; }
.proof-stack div { min-height:58px; display:flex; align-items:center; gap:18px; border-bottom:1px solid var(--line); }
.proof-stack span { color:var(--brand); font-size:10px; }
.proof-stack b { font-size:16px; font-weight:560; }
.proof-result { margin-top:auto; display:flex; justify-content:space-between; align-items:end; gap:20px; }
.proof-result strong { font-size:23px; letter-spacing:-.03em; }
.proof-result span { color:#738f94; font-size:10px; }
.customer-strip { margin-top:90px; border-top:1px solid var(--line); border-bottom:1px solid var(--line); padding:24px 0; display:flex; align-items:center; justify-content:space-between; gap:28px; }
.customer-strip > span { color:#68868b; font-size:10px; text-transform:uppercase; letter-spacing:.12em; white-space:nowrap; }
.customer-names { display:flex; align-items:center; justify-content:flex-end; flex-wrap:wrap; gap:24px; color:#6f8b90; }
.customer-names b { font-size:12px; letter-spacing:.03em; }

.process-section { background:#04141b; }
.process-line { display:grid; grid-template-columns:repeat(4,1fr); border-top:1px solid var(--line); }
.process-step { padding:28px 28px 10px 0; min-height:250px; position:relative; }
.process-step:not(:last-child)::after { content:""; position:absolute; width:8px; height:8px; border-radius:50%; background:#0c3943; border:2px solid var(--brand); right:18px; top:-5px; box-shadow:0 0 18px rgba(108,227,218,.6); }
.process-step > span { color:var(--brand); font-size:10px; }
.process-step h3 { font-size:22px; margin:70px 0 12px; }
.process-step p { color:#809ca1; line-height:1.6; font-size:13px; margin:0; max-width:220px; }

.contact-section { padding-bottom:90px; background:radial-gradient(circle at 70% 50%,rgba(108,227,218,.08),transparent 24rem),#061820; }
.contact-shell { border:1px solid var(--line); border-radius:38px; padding:54px; display:grid; grid-template-columns:.92fr 1.08fr; gap:70px; background:linear-gradient(145deg,rgba(108,227,218,.035),rgba(255,255,255,.015)); }
.contact-details { display:flex; flex-direction:column; gap:9px; margin-top:36px; color:#b6c8ca; font-size:13px; }
.contact-details a { color:var(--brand-soft); }
.contact-form { border-radius:27px; padding:25px; box-shadow:none; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.contact-form label { display:flex; flex-direction:column; gap:8px; color:#8fa6aa; font-size:10px; text-transform:uppercase; letter-spacing:.07em; margin-bottom:12px; }
.contact-form input, .contact-form textarea, .contact-form select { width:100%; border:1px solid var(--line); border-radius:13px; background:rgba(1,12,16,.4); color:#e7f1f2; padding:13px 14px; outline:none; text-transform:none; letter-spacing:0; transition:border-color .2s ease, box-shadow .2s ease; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color:rgba(108,227,218,.48); box-shadow:0 0 0 3px rgba(108,227,218,.06); }
.contact-form textarea { resize:vertical; min-height:100px; }
.contact-form select { appearance:none; background-image:linear-gradient(45deg,transparent 50%,#809ba0 50%),linear-gradient(135deg,#809ba0 50%,transparent 50%); background-position:calc(100% - 18px) 20px,calc(100% - 13px) 20px; background-size:5px 5px,5px 5px; background-repeat:no-repeat; }
.form-submit { width:100%; border:0; margin-top:3px; }
.form-note { color:#55747a; font-size:10px; text-align:center; margin:10px 0 0; }

.site-footer { padding:30px 0 35px; border-top:1px solid rgba(108,227,218,.08); background:#030f14; }
.footer-grid { display:grid; grid-template-columns:1fr 1fr 1fr; align-items:center; gap:30px; }
.footer-grid p { text-align:center; color:#617f84; font-size:11px; }
.footer-links { display:flex; justify-content:flex-end; gap:18px; font-size:11px; color:#89a4a8; }
.footer-links a:hover { color:#dce9ea; }
.footer-bottom { border-top:1px solid rgba(108,227,218,.06); margin-top:24px; padding-top:18px; display:flex; justify-content:space-between; color:#4e6d73; font-size:9px; }

.reveal { opacity:0; transform:translateY(20px); transition:opacity .75s cubic-bezier(.2,.8,.2,1), transform .75s cubic-bezier(.2,.8,.2,1); }
.reveal.is-visible { opacity:1; transform:none; }
.delay-1 { transition-delay:.08s; }
.delay-2 { transition-delay:.16s; }
.delay-3 { transition-delay:.24s; }

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes fade { from { opacity:0; transform:translateY(8px); } to { opacity:1; transform:none; } }

@media (max-width: 1040px) {
  .hero-grid, .saudi-grid, .proof-grid, .contact-shell { grid-template-columns:1fr; }
  .hero { padding-top:140px; }
  .hero-copy { max-width:820px; }
  .hero-visual { min-height:480px; }
  .metrics { grid-template-columns:repeat(2,1fr); }
  .metric:nth-child(2) { border-right:0; }
  .metric:nth-child(-n+2) { border-bottom:1px solid var(--line); }
  .metric:nth-child(3) { padding-left:0; }
  .bento-grid { grid-template-columns:repeat(2,1fr); }
  .service-large { grid-column:span 2; }
  .credential-grid { grid-template-columns:repeat(2,1fr); }
  .split-heading { grid-template-columns:1fr; gap:18px; }
  .ai-stage { grid-template-columns:220px 1fr; }
  .contact-copy { max-width:680px; }
}

@media (max-width: 760px) {
  .container { width:min(100% - 30px, var(--container)); }
  .section { padding:86px 0; }
  .nav-toggle { display:block; }
  .nav-toggle[aria-expanded="true"] span:first-child { top:21px; transform:rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:last-child { top:21px; transform:rotate(-45deg); }
  .nav-links { position:absolute; top:76px; left:15px; right:15px; display:none; flex-direction:column; align-items:stretch; gap:0; padding:12px; border:1px solid var(--line); border-radius:20px; background:rgba(3,16,22,.97); box-shadow:var(--shadow); }
  .nav-links.open { display:flex; }
  .nav-links a { padding:13px 14px; }
  .nav-cta { text-align:center; margin-top:6px; }
  .hero { min-height:auto; padding:128px 0 48px; }
  .hero-grid { gap:30px; }
  .hero h1 { font-size:clamp(49px,16vw,72px); }
  .hero-lede { font-size:16px; }
  .hero-visual { min-height:430px; margin:0 -8px; }
  .hero-panel { min-height:400px; padding:18px; }
  .architecture { height:275px; }
  .panel-footer { grid-template-columns:1fr 1fr; }
  .aws-chip { display:none; }
  .metrics { margin-top:42px; }
  .metric { padding:22px 14px; }
  .metric strong { font-size:21px; }
  .section-heading { margin-bottom:38px; }
  .section-heading h2, .saudi-copy h2, .contact-copy h2, .proof-copy h2 { font-size:clamp(38px,12vw,54px); }
  .bento-grid { grid-template-columns:1fr; }
  .service-large { grid-column:auto; min-height:380px; }
  .service-card { min-height:300px; }
  .check-grid { grid-template-columns:1fr; }
  .saudi-grid { gap:40px; }
  .saudi-visual { min-height:440px; }
  .ksa-number { font-size:82px; }
  .ring-a { width:430px; height:430px; }
  .ring-b { width:520px; height:520px; }
  .ring-c { width:610px; height:610px; }
  .ai-stage { grid-template-columns:1fr; }
  .ai-side-list { flex-direction:row; overflow-x:auto; padding-bottom:6px; }
  .ai-tab { min-width:max-content; min-height:48px; padding:0 14px; }
  .ai-display { min-height:600px; }
  .ai-content { grid-template-columns:1fr; align-content:center; }
  .ai-orbit { width:240px; height:240px; }
  .credential-grid { grid-template-columns:1fr; }
  .proof-grid { gap:38px; }
  .customer-strip { align-items:flex-start; flex-direction:column; }
  .customer-names { justify-content:flex-start; }
  .process-line { grid-template-columns:1fr 1fr; border-left:1px solid var(--line); }
  .process-step { padding-left:20px; min-height:210px; border-bottom:1px solid var(--line); }
  .process-step:not(:last-child)::after { display:none; }
  .process-step h3 { margin-top:38px; }
  .contact-shell { padding:26px 18px; border-radius:26px; gap:38px; }
  .form-row { grid-template-columns:1fr; gap:0; }
  .footer-grid { grid-template-columns:1fr; justify-items:start; }
  .footer-grid p { text-align:left; margin:0; }
  .footer-links { justify-content:flex-start; flex-wrap:wrap; }
  .footer-bottom { flex-direction:column; gap:7px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior:auto; }
  *, *::before, *::after { animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; }
  .reveal { opacity:1; transform:none; }
}

/* Official Ghaim identity */
@media (max-width: 640px) {
  .brand-logo { width: 126px; }
  .site-footer .brand-logo { width: 142px; }
}


/* AWS credentials band - integrated full badge */
.aws-credentials-band {
  margin-top: 26px;
}
.aws-credentials-shell {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  padding: 26px 28px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 28px;
  background: linear-gradient(145deg, rgba(7, 28, 35, .88), rgba(6, 21, 28, .92));
}
.aws-credentials-shell::before {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  right: -70px;
  top: -130px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(108,227,218,.10), transparent 66%);
  pointer-events: none;
}
.aws-credentials-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(100,125,229,.04), transparent 40%, rgba(108,227,218,.03));
  pointer-events: none;
}
.aws-credentials-copy, .aws-credentials-media {
  position: relative;
  z-index: 1;
}
.aws-credentials-copy h3 {
  font-size: clamp(24px, 3.1vw, 36px);
  line-height: 1.06;
  letter-spacing: -.04em;
  margin: 0 0 12px;
  max-width: 450px;
}
.aws-credentials-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  max-width: 470px;
}
.aws-credentials-media {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.aws-credentials-media img {
  width: 100%;
  max-width: 820px;
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 24px rgba(255,153,0,.08));
}

@media (max-width: 1040px) {
  .aws-credentials-shell {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px;
  }
  .aws-credentials-copy h3,
  .aws-credentials-copy p {
    max-width: none;
  }
  .aws-credentials-media {
    justify-content: center;
  }
  .aws-credentials-media img {
    max-width: 760px;
  }
}

@media (max-width: 760px) {
  .aws-credentials-band {
    margin-top: 18px;
  }
  .aws-credentials-shell {
    border-radius: 24px;
    padding: 18px;
  }
  .aws-credentials-copy h3 {
    font-size: 24px;
  }
  .aws-credentials-copy p {
    font-size: 13px;
  }
  .aws-credentials-media img {
    max-width: 100%;
  }
}


/* Seamless AWS badge refinement */
.aws-credentials-shell { background: linear-gradient(145deg, rgba(7, 28, 35, .72), rgba(6, 21, 28, .78)); }
.aws-credentials-media img { background: transparent; mix-blend-mode: normal; }


/* Final AWS credentials sizing */
.aws-credentials-shell {
  grid-template-columns: .66fr 1.34fr;
}
.aws-credentials-media img {
  max-width: 940px;
}
@media (max-width: 1040px) {
  .aws-credentials-media img { max-width: 820px; }
}


/* Hero update: Official AWS Saudi Arabia Region Launch Partner */
.hero-visual {
  min-height: 530px;
  overflow: visible;
}
.launch-panel-wrap {
  position: relative;
  width: min(100%, 560px);
  z-index: 2;
}
.launch-backplate {
  position: absolute;
  inset: 18px -18px -18px 18px;
  border-radius: 34px;
  border: 1px solid rgba(108,227,218,.12);
  background: linear-gradient(155deg, rgba(100,125,229,.10), rgba(108,227,218,.06));
  transform: rotate(-3deg);
}
.launch-panel {
  position: relative;
  border-radius: 34px;
  padding: 22px 24px 24px;
  overflow: hidden;
  background: linear-gradient(155deg, rgba(8, 30, 38, .94), rgba(5, 21, 28, .92));
}
.launch-panel::before {
  content: "";
  position: absolute;
  width: 290px;
  height: 290px;
  right: -70px;
  top: -80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(108,227,218,.18), transparent 68%);
}
.launch-panel::after {
  content: "";
  position: absolute;
  inset: auto auto 20px -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(100,125,229,.14), transparent 70%);
}
.launch-topline, .launch-panel-body, .launch-meta { position: relative; z-index: 1; }
.launch-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 22px;
}
.launch-verified {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #d8f8f5;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.launch-tag {
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,153,0,.28);
  background: rgba(255,153,0,.08);
  color: #ffbc58;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.launch-mark-wrap {
  width: 74px;
  height: 74px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid rgba(108,227,218,.20);
  background: linear-gradient(145deg, rgba(100,125,229,.12), rgba(108,227,218,.08));
  box-shadow: inset 0 0 30px rgba(108,227,218,.05);
}
.launch-mark-wrap img { width: 56px; height: auto; display: block; }
.launch-kicker {
  color: var(--aws);
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.launch-panel h3 {
  margin: 0;
  font-size: clamp(38px, 4.5vw, 56px);
  line-height: .92;
  letter-spacing: -.06em;
  max-width: 420px;
}
.launch-panel p {
  margin: 16px 0 0;
  max-width: 430px;
  color: #9fb5b9;
  line-height: 1.7;
  font-size: 14px;
}
.launch-divider {
  position: relative;
  z-index: 1;
  height: 1px;
  background: var(--line);
  margin: 24px 0 18px;
}
.launch-meta {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 18px;
}
.launch-meta div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.launch-meta strong {
  font-size: 18px;
  letter-spacing: -.03em;
}
.launch-meta span {
  color: #7d999e;
  font-size: 11px;
  line-height: 1.5;
}

/* neutralize old hero panel specific pieces if present */
.hero-panel, .panel-topline, .architecture, .panel-footer, .arch-core, .arch-node { all: unset; }

@media (max-width: 1040px) {
  .hero-visual { min-height: 480px; }
  .launch-panel-wrap { width: min(100%, 620px); }
}

@media (max-width: 760px) {
  .hero-visual { min-height: 400px; margin: 0; }
  .launch-panel-wrap { width: 100%; }
  .launch-backplate { inset: 14px -8px -10px 12px; }
  .launch-panel { padding: 18px; border-radius: 26px; }
  .launch-panel h3 { font-size: clamp(32px, 10vw, 46px); max-width: none; }
  .launch-panel p { max-width: none; font-size: 13px; }
  .launch-meta { grid-template-columns: 1fr; gap: 14px; }
  .launch-mark-wrap { width: 66px; height: 66px; }
  .launch-mark-wrap img { width: 50px; }
}


/* Hero launch-partner refinement v2 */
.launch-topline { margin-bottom: 18px; }
.launch-tag {
  border-color: rgba(108,227,218,.20);
  background: rgba(108,227,218,.08);
  color: var(--brand-soft);
}
.launch-panel-body {
  position: relative;
  z-index: 1;
}
.launch-date-card {
  width: 168px;
  min-height: 148px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  padding: 20px 22px;
  margin-bottom: 18px;
  border-radius: 28px;
  border: 1px solid rgba(108,227,218,.18);
  background: linear-gradient(160deg, rgba(108,227,218,.10), rgba(100,125,229,.08) 42%, rgba(8,30,38,.92));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.02), 0 18px 50px rgba(0,0,0,.22);
}
.launch-date-card span {
  font-size: 16px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brand-soft);
}
.launch-date-card strong {
  font-size: 54px;
  line-height: .9;
  letter-spacing: -.07em;
  background: linear-gradient(180deg,#f7ffff 0%, #6ce3da 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.launch-kicker { margin-bottom: 8px; }
.launch-panel p { max-width: 440px; }

@media (max-width: 760px) {
  .launch-date-card {
    width: 144px;
    min-height: 128px;
    border-radius: 22px;
    padding: 16px 18px;
  }
  .launch-date-card span { font-size: 14px; }
  .launch-date-card strong { font-size: 46px; }
}


/* Final spacing and launch-card refinements */
.metrics {
  margin-bottom: 64px;
}
.aws-credentials-band {
  margin-top: 0 !important;
  margin-bottom: 74px;
}
.aws-credentials-shell {
  margin-top: 0;
}
.launch-panel-body {
  padding-top: 4px;
}
.launch-date-card {
  margin-top: 0;
}
@media (max-width: 760px) {
  .metrics { margin-bottom: 42px; }
  .aws-credentials-band { margin-bottom: 54px; }
}

/* Balanced spacing around the AWS credential badge */
.metrics { margin-bottom: 56px; }
.aws-credentials-band { margin-top: 0 !important; margin-bottom: 0; }
.hero { padding-bottom: 66px; }
@media (max-width: 760px) {
  .metrics { margin-bottom: 40px; }
  .aws-credentials-band { margin-bottom: 0; }
  .hero { padding-bottom: 50px; }
}


/* Launch-card refinement v4 */
.launch-date-card {
  gap: 2px;
}
.launch-date-overline {
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #9ecbc7;
  margin-bottom: 8px;
  font-weight: 700;
}
.launch-kicker {
  margin-bottom: 8px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .12em;
}
@media (max-width: 760px) {
  .launch-date-overline { font-size: 9px; margin-bottom: 7px; }
  .launch-kicker { font-size: 14px; }
}


/* Hero launch-card hierarchy v5 */
.site-header .brand-logo {
  width: 180px;
}

.launch-panel-body .launch-kicker {
  margin: 6px 0 9px;
  font-size: 16px;
  font-weight: 850;
  letter-spacing: .11em;
}
.launch-panel-body h3 {
  margin-bottom: 24px;
}
.launch-date-card {
  width: 100%;
  min-height: 98px;
  margin: 0 0 22px;
  padding: 17px 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border-radius: 22px;
  background: linear-gradient(112deg, rgba(108,227,218,.095), rgba(100,125,229,.075) 52%, rgba(8,30,38,.80));
}
.launch-date-overline {
  margin: 0;
  max-width: 100px;
  font-size: 10px;
  line-height: 1.45;
  letter-spacing: .16em;
}
.launch-date-value {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-left: auto;
  white-space: nowrap;
}
.launch-date-card .launch-date-value span {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: .15em;
  color: var(--brand-soft);
}
.launch-date-card .launch-date-value strong {
  font-size: 48px;
  line-height: .9;
  letter-spacing: -.065em;
}
.launch-panel p {
  margin-top: 0;
}

@media (max-width: 760px) {
  .site-header .brand-logo { width: 148px; }
  .launch-panel-body .launch-kicker { font-size: 14px; }
  .launch-panel-body h3 { margin-bottom: 20px; }
  .launch-date-card {
    min-height: 88px;
    padding: 15px 16px;
    gap: 14px;
  }
  .launch-date-overline { font-size: 9px; max-width: 86px; }
  .launch-date-card .launch-date-value span { font-size: 14px; }
  .launch-date-card .launch-date-value strong { font-size: 40px; }
}

/* Final sizing refinements v6 */
.launch-date-card {
  width: fit-content;
  min-width: 330px;
  max-width: 100%;
  justify-content: flex-start;
  gap: 24px;
  padding-right: 22px;
}
.launch-date-value {
  margin-left: 0;
}

@media (max-width: 760px) {
  .launch-date-card {
    width: fit-content;
    min-width: 292px;
    max-width: 100%;
    gap: 18px;
    padding: 14px 16px;
  }

  /* Let the full AWS credential artwork use almost the entire phone width. */
  .aws-credentials-band.container {
    width: calc(100% - 8px);
  }
  .aws-credentials-shell {
    padding-left: 8px;
    padding-right: 8px;
  }
  .aws-credentials-media {
    width: 100%;
  }
  .aws-credentials-media img {
    width: 100%;
    max-width: none;
  }
}

/* Final layout refinements v7 */
/* Tighter transition from AWS credentials into What We Do. */
.hero { padding-bottom: 30px; }
.section-services { padding-top: 78px; }

/* With the dedicated Saudi section removed, blend Services directly into AI. */
.ai-section {
  background: linear-gradient(180deg, #031016 0%, #061820 18%, #071b23 100%);
}

/* Picture wrapper should inherit the badge media sizing behavior. */
.aws-credentials-media picture {
  display: block;
  width: 100%;
}
.aws-credentials-media picture img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 760px) {
  .hero { padding-bottom: 22px; }
  .section-services { padding-top: 66px; }

  /* Force the credentials copy above the badge on phones. */
  .aws-credentials-shell {
    display: grid !important;
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "copy"
      "badge";
    gap: 16px !important;
    padding: 20px 12px 16px !important;
  }
  .aws-credentials-copy {
    grid-area: copy;
    width: 100%;
    padding: 0 8px;
  }
  .aws-credentials-media {
    grid-area: badge;
    width: 100%;
    justify-content: stretch !important;
  }
  .aws-credentials-media picture {
    width: 100%;
  }
  .aws-credentials-media picture img {
    width: 100% !important;
    max-width: none !important;
  }
}


/* v8 mobile AWS credentials: always show the original full badge intact. */
@media (max-width: 760px) {
  .aws-credentials-band.container {
    width: calc(100% - 6px) !important;
  }
  .aws-credentials-shell {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 14px !important;
    padding: 20px 8px 14px !important;
  }
  .aws-credentials-copy {
    width: 100% !important;
    padding: 0 10px !important;
  }
  .aws-credentials-media {
    display: block !important;
    width: 100% !important;
    overflow: visible !important;
  }
  .aws-credentials-media img {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    height: auto !important;
    object-fit: contain !important;
  }
}


/* v9: credentials visible immediately + seamless Why Ghaim -> Process transition */
.aws-credentials-band { opacity: 1 !important; transform: none !important; transition: none !important; }
.why-section { padding-bottom: 100px; }
.process-section { padding-top: 100px; background: #04141b; }
@media (max-width: 760px) {
  .why-section { padding-bottom: 72px; }
  .process-section { padding-top: 72px; }
}


/* Clickable AWS Partner badge */
.aws-badge-link {
  display: block;
  width: 100%;
  cursor: pointer;
  border-radius: 18px;
}
.aws-badge-link img {
  transition: transform .25s ease, filter .25s ease;
}
.aws-badge-link:hover img {
  transform: translateY(-2px);
  filter: drop-shadow(0 14px 30px rgba(255,153,0,.12));
}
.aws-badge-link:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 5px;
}


/* Free AJAX contact form (FormSubmit.co) */
.form-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.form-submit:disabled {
  opacity: .7;
  cursor: wait;
  transform: none;
}
.form-status {
  min-height: 18px;
  margin: 10px 0 0;
  text-align: center;
  color: #718f94;
  font-size: 11px;
  line-height: 1.5;
}
.form-status-error { color: #ffb4a8; }
.form-success {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px 20px;
}
.form-success-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 50%;
  border: 1px solid rgba(108,227,218,.32);
  background: rgba(108,227,218,.08);
  color: var(--brand);
  font-size: 24px;
  box-shadow: 0 0 34px rgba(108,227,218,.09);
}
.form-success h3 {
  margin: 0 0 10px;
  font-size: 32px;
  letter-spacing: -.04em;
}
.form-success p {
  max-width: 340px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}
@media (max-width: 760px) {
  .form-success { min-height: 330px; }
}


/* Contact scheduling CTA */
.contact-schedule {
  margin-top: 24px;
}
@media (max-width: 760px) {
  .contact-schedule {
    width: 100%;
  }
}
