/* Iradai Studio — simple landing page */

:root {
  --bg: #0f1724;
  --bg-deep: #090e17;
  --panel: rgba(255, 255, 255, 0.065);
  --panel-border: rgba(210, 231, 255, 0.18);
  --text: #eef6ff;
  --muted: #a9b8ca;
  --soft: #d8e8f7;
  --accent: #9ad7df;
  --accent-2: #b9a7ff;
  --shadow: rgba(0, 0, 0, 0.35);
  --max-width: 980px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 50% 10%, rgba(154, 215, 223, 0.17), transparent 32rem),
    radial-gradient(circle at 78% 22%, rgba(185, 167, 255, 0.13), transparent 24rem),
    radial-gradient(circle at 20% 78%, rgba(70, 116, 138, 0.18), transparent 28rem),
    linear-gradient(160deg, var(--bg), var(--bg-deep));
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.22) 0 1px, transparent 1px),
    radial-gradient(circle, rgba(154, 215, 223, 0.16) 0 1px, transparent 1px);
  background-size: 140px 140px, 220px 220px;
  background-position: 0 0, 60px 80px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.65), transparent 75%);
}

a {
  color: inherit;
}

.page-shell {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
  padding: 76px 0 40px;
}

.hero {
  min-height: calc(100vh - 140px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 0;
}

.emblem {
  position: relative;
  width: 92px;
  height: 92px;
  margin-bottom: 26px;
  filter: drop-shadow(0 0 34px rgba(154, 215, 223, 0.22));
}

.emblem-ring {
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(216, 232, 247, 0.64);
  border-radius: 999px;
}

.emblem-ring::before,
.emblem-ring::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 999px;
  border: 1px solid rgba(185, 167, 255, 0.23);
  transform: rotate(-22deg) scaleX(1.22);
}

.emblem-ring::after {
  border-color: rgba(154, 215, 223, 0.25);
  transform: rotate(28deg) scaleX(1.14);
}

.emblem-star {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 14px;
  transform: translate(-50%, -50%) rotate(45deg);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 26px rgba(154, 215, 223, 0.75);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(3.25rem, 8vw, 7.75rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: 0.035em;
  text-shadow: 0 16px 60px var(--shadow);
}

.tagline {
  margin: 24px 0 0;
  color: var(--soft);
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(1.1rem, 2.2vw, 1.65rem);
  letter-spacing: 0.12em;
}

.intro {
  max-width: 720px;
  margin: 30px auto 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.75;
}

.project-card {
  width: min(700px, 100%);
  margin-top: 42px;
  padding: 28px;
  border: 1px solid var(--panel-border);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255,255,255,0.09), rgba(255,255,255,0.035));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.project-label {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.project-card h2 {
  margin: 0;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: 0.04em;
}

.project-card p:last-child {
  max-width: 560px;
  margin: 14px auto 0;
  color: var(--muted);
  line-height: 1.7;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button.primary {
  color: #071018;
  background: linear-gradient(135deg, #c9f7ff, #c9bdff);
  box-shadow: 0 14px 44px rgba(154, 215, 223, 0.2);
}

.button.secondary {
  color: var(--soft);
  border: 1px solid var(--panel-border);
  background: rgba(255, 255, 255, 0.04);
}

.about {
  width: min(720px, 100%);
  margin: 0 auto;
  padding: 34px 0 64px;
  text-align: center;
}

.about h2 {
  margin: 0 0 14px;
  font-family: "Cinzel", Georgia, serif;
  font-size: 2rem;
}

.about p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.footer {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 36px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  color: rgba(238, 246, 255, 0.62);
  font-size: 0.94rem;
}

.footer a {
  color: rgba(238, 246, 255, 0.78);
  text-decoration: none;
}

.footer a:hover {
  color: var(--text);
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 22px, var(--max-width));
    padding-top: 42px;
  }

  .hero {
    min-height: auto;
    padding: 42px 0 28px;
  }

  .project-card {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .button {
    width: 100%;
  }

  .dot {
    display: none;
  }
}
