:root{
  --bg1:#f7fbfb;
  --bg2:#eef7f6;
  --teal:#2aa8a4;
  --text:#0f172a;
  --muted:#475569;
  --card:#ffffff;
  --border:rgba(15, 23, 42, 0.10);
  --shadow: 0 20px 60px rgba(2, 6, 23, 0.10);
}

*{ box-sizing:border-box; }

html,body{
  height:100%;
}

body{
  margin:0;
  font-family: "Cairo", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(900px 500px at 20% 10%, rgba(42,168,164,0.16), transparent 60%),
    radial-gradient(900px 500px at 90% 90%, rgba(42,168,164,0.12), transparent 60%),
    linear-gradient(180deg, var(--bg1), var(--bg2));
}

.page{
  min-height:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  padding:28px 16px;
  gap:18px;
}

.card{
  width:min(860px, 100%);
  background:var(--card);
  border:1px solid var(--border);
  border-radius:22px;
  box-shadow:var(--shadow);
  padding:34px 22px;
  text-align:center;
}

.brand-logo{
  width: 240px;   /* change to 200px / 280px / etc */
  max-width: 80%;
  height: 300px;
  display:block;
  margin:0 auto 14px;
}


.title{
  margin:8px 0 4px;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: 0.5px;
}

.subtitle{
  margin:0;
  color:var(--muted);
  font-size: clamp(14px, 2.2vw, 18px);
}

.divider{
  width:min(220px, 70%);
  height:3px;
  margin:18px auto 14px;
  border-radius:99px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
  opacity:0.9;
}

.note{
  margin:0 auto;
  max-width: 560px;
  color: var(--muted);
  font-size: clamp(14px, 2.2vw, 18px);
  line-height:1.7;
}

.contact{
  margin-top:18px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:center;
}

.chip{
  text-decoration:none;
  color:var(--text);
  border:1px solid var(--border);
  padding:10px 14px;
  border-radius:999px;
  font-weight:600;
  background: rgba(42,168,164,0.06);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.chip:hover{
  transform: translateY(-1px);
  border-color: rgba(42,168,164,0.45);
  background: rgba(42,168,164,0.10);
}

.footer{
  width:min(860px, 100%);
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  color: var(--muted);
  font-size:14px;
  padding: 8px 6px;
}

.powered{
  opacity:0.9;
}

.powered-brand{
  display:inline-flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  color: inherit;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255,255,255,0.6);
}

.powered-logo{
  width:34px;
  height:34px;
  object-fit:contain;
  border-radius:8px;
}

.powered-text{
  font-weight:700;
  letter-spacing:0.3px;
}
