/*
Theme Name: InnoSwift Demo Coming Soon v7
Theme URI: https://demo.innoswiftsolutions.com
Author: InnoSwift Solutions
Description: Clean coming soon placeholder theme for the InnoSwift Solutions demo space.
Version: 7.0
License: GPLv2 or later
Text Domain: innoswift-demo-coming-soon
*/

:root{
  --ink:#071229;
  --muted:#667085;
  --line:rgba(7,18,41,.10);
  --card:rgba(255,255,255,.78);
  --blue:#2ea8ff;
  --violet:#6c3cff;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0;min-height:100%;}
body{
  font-family:-apple-system,BlinkMacSystemFont,"SF Pro Display","Inter","Segoe UI",Roboto,Arial,sans-serif;
  color:var(--ink);
  background:
    radial-gradient(circle at 8% 6%, rgba(46,168,255,.18), transparent 30%),
    radial-gradient(circle at 88% 18%, rgba(108,60,255,.10), transparent 28%),
    linear-gradient(135deg,#f7fbff 0%,#ffffff 45%,#f8f7ff 100%);
  overflow-x:hidden;
}

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

.page-wrap{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:56px 22px;
}

.shell{
  width:min(1080px,100%);
  text-align:center;
}

.logo-wrap{
  display:flex;
  width:fit-content;
  margin:0 auto;
  align-items:center;
  justify-content:center;
  padding:18px 22px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.72);
  border-radius:28px;
  box-shadow:0 18px 60px rgba(7,18,41,.07);
  backdrop-filter:blur(18px);
}

.logo-wrap img{
  display:block;
  width:min(420px,76vw);
  height:auto;
  max-height:132px;
  object-fit:contain;
}

.badge{
  display:flex;
  width:fit-content;
  align-items:center;
  gap:10px;
  margin:30px auto 0;
  padding:12px 18px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.74);
  border-radius:999px;
  color:#4b5870;
  font-size:15px;
  font-weight:700;
  letter-spacing:-.01em;
  box-shadow:0 10px 28px rgba(7,18,41,.05);
}
.badge-dot{
  width:26px;height:26px;border-radius:999px;
  display:grid;place-items:center;
  background:linear-gradient(135deg,rgba(46,168,255,.16),rgba(108,60,255,.16));
}
.badge-dot:after{
  content:"";width:10px;height:10px;border-radius:999px;
  background:linear-gradient(135deg,var(--blue),var(--violet));
}

h1{
  margin:34px auto 0;
  max-width:940px;
  font-size:clamp(48px,8vw,104px);
  line-height:.95;
  letter-spacing:-.075em;
  font-weight:850;
}

.lead{
  margin:28px auto 0;
  max-width:720px;
  color:var(--muted);
  font-size:clamp(18px,2vw,23px);
  line-height:1.55;
  letter-spacing:-.02em;
}

.actions{
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
  margin-top:34px;
}
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  min-height:52px;
  padding:0 22px;
  border-radius:999px;
  font-weight:750;
  font-size:15px;
  border:1px solid var(--line);
}
.btn.primary{
  color:white;
  border:0;
  background:linear-gradient(135deg,#0b1224,#25314b);
  box-shadow:0 14px 34px rgba(7,18,41,.18);
}
.btn.secondary{
  background:rgba(255,255,255,.72);
  color:#263248;
}

.cards{
  margin:42px auto 0;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  max-width:900px;
}
.card{
  text-align:left;
  padding:22px;
  border:1px solid var(--line);
  border-radius:26px;
  background:var(--card);
  box-shadow:0 12px 38px rgba(7,18,41,.055);
  backdrop-filter:blur(18px);
}
.card strong{
  display:block;
  font-size:17px;
  letter-spacing:-.02em;
  margin-bottom:8px;
}
.card span{
  color:var(--muted);
  font-size:14px;
  line-height:1.45;
}

.footer{
  margin-top:34px;
  color:#7b8496;
  font-size:14px;
}
.footer a{color:#3a63ff;font-weight:700}

@media (max-width:760px){
  .page-wrap{padding:34px 16px;align-items:flex-start;}
  .logo-wrap{padding:14px 16px;border-radius:22px;}
  .logo-wrap img{width:min(330px,82vw);max-height:100px;}
  h1{font-size:clamp(42px,13vw,64px);letter-spacing:-.065em;}
  .lead{font-size:17px;}
  .cards{grid-template-columns:1fr;}
  .card{text-align:center;}
}
