/* Secle Solutions — Coming Soon (static, lightweight)
   - No external dependencies
   - Subtle animated background + gentle logo glow
*/

:root{
  --bg: #05070a;
  --fg: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.66);
  --muted2: rgba(255,255,255,0.48);

  /* Accent is intentionally subtle. Adjust if you have a brand palette. */
  --accent: 125, 210, 255; /* rgb() tuple */
}

*{ box-sizing: border-box; }
html, body { height: 100%; }
body{
  margin: 0;
  color: var(--fg);
  background: var(--bg);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  overflow: hidden;
}

/* Animated "spotlight" background */
body::before{
  content: "";
  position: fixed;
  inset: -25%;
  pointer-events: none;

  background:
    radial-gradient(closest-side at 20% 35%, rgba(var(--accent), 0.14), transparent 55%),
    radial-gradient(closest-side at 80% 70%, rgba(var(--accent), 0.10), transparent 60%),
    radial-gradient(closest-side at 55% 20%, rgba(255,255,255,0.05), transparent 55%);

  filter: blur(10px);
  transform: translateZ(0);
  animation: drift 14s ease-in-out infinite alternate;
}

/* Very subtle scanlines (optional aesthetic) */
body::after{
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      to bottom,
      rgba(255,255,255,0.028) 0px,
      rgba(255,255,255,0.028) 1px,
      transparent 2px,
      transparent 6px
    );
  opacity: 0.16;
  mix-blend-mode: overlay;
}

@keyframes drift{
  from { transform: translate3d(-1.6%, -1.2%, 0) scale(1.02); }
  to   { transform: translate3d( 1.2%,  1.6%, 0) scale(1.03); }
}

.wrap{
  min-height: 100%;
  display: grid;
  place-content: center;
  text-align: center;
  padding: 28px;
  gap: 10px;
  isolation: isolate; /* ensures glow doesn't blend strangely */
}

/* Fade-in for the block (no JS) */
.wrap{
  animation: appear 680ms ease-out both;
}
@keyframes appear{
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.logo{
  width: clamp(240px, 44vw, 640px);
  height: auto;
  margin-inline: auto;

  /* Gentle glow */
  filter:
    drop-shadow(0 0 18px rgba(var(--accent), 0.14))
    drop-shadow(0 0 42px rgba(var(--accent), 0.10));

  animation: breathe 3.6s ease-in-out infinite;
}

@keyframes breathe{
  0%, 100% { filter: drop-shadow(0 0 18px rgba(var(--accent), 0.12)) drop-shadow(0 0 42px rgba(var(--accent), 0.09)); }
  50%      { filter: drop-shadow(0 0 22px rgba(var(--accent), 0.16)) drop-shadow(0 0 52px rgba(var(--accent), 0.12)); }
}

.tagline{
  margin: 0;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
}

/* Subtle “sheen” for supported browsers (kept intentionally understated) */
@supports (-webkit-background-clip: text) or (background-clip: text){
  .tagline{
    background: linear-gradient(90deg,
      rgba(255,255,255,0.62) 0%,
      rgba(var(--accent),0.92) 45%,
      rgba(255,255,255,0.62) 100%);
    background-size: 220% 100%;
    background-position: 0% 50%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    animation: sheen 10s ease-in-out infinite;
  }
}

@keyframes sheen{
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}


.status{
  margin: 0;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.07em;
  color: var(--muted2);
  animation: statusPulse 12s ease-in-out infinite;
}

@keyframes statusPulse{
  0%, 100% { opacity: 0.72; }
  50%      { opacity: 0.98; }
}




.social{
  margin-top: 14px;
  display: inline-flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
}

.icon{
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  text-decoration: none;

  position: relative;
  overflow: hidden;
  isolation: isolate;

  color: rgba(255,255,255,0.74);
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.035);

  transition:
    transform 160ms ease,
    color 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 180ms ease;
}

.icon::before{
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: inherit;
  background: radial-gradient(closest-side, rgba(var(--accent), 0.18), transparent 70%);
  opacity: 0;
  transition: opacity 180ms ease;
  z-index: 0;
}

.icon::after{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(var(--accent), 0.00);
  opacity: 0;
  transition: opacity 180ms ease;
  z-index: 0;
}

.icon svg{
  width: 18px;
  height: 18px;
  fill: currentColor;
  position: relative;
  z-index: 1;
}

/* Optical centering tweak (LinkedIn glyph can look slightly left-heavy) */
.icon[aria-label="LinkedIn"] svg{
  transform: translateX(0.6px);
}

.icon:hover{
  transform: translateY(-1px);
  color: rgba(var(--accent), 0.95);
  border-color: rgba(var(--accent), 0.28);
  background: rgba(var(--accent), 0.075);
  box-shadow:
    0 10px 24px rgba(0,0,0,0.45),
    0 0 18px rgba(var(--accent), 0.14);
}

.icon:hover::before{
  opacity: 1;
}

.icon:hover::after{
  opacity: 1;
}

.icon:active{
  transform: translateY(0px);
}

.icon:focus-visible{
  outline: none;
  box-shadow:
    0 0 0 3px rgba(var(--accent), 0.26),
    0 10px 24px rgba(0,0,0,0.45),
    0 0 18px rgba(var(--accent), 0.14);
}

.icon:focus-visible::before,
.icon:focus-visible::after{
  opacity: 1;
}/* Optional contact link style */
.contact{
  margin-top: 12px;
  font-size: 13px;
  color: rgba(var(--accent), 0.92);
  text-decoration: none;
}
.contact:hover{ text-decoration: underline; }

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce){
  body::before, .logo, .wrap, .tagline, .status { animation: none !important; }
}
