/* Taska corporate site — token set mirrors site/styles.css (elep-mode.com) for brand consistency. */
:root {
  --bg: #f6f0e6;
  --surface: rgba(255, 255, 255, 0.72);
  --ink: #15110c;
  --muted: #62594d;
  --line: rgba(21, 17, 12, 0.08);
  --line-strong: rgba(21, 17, 12, 0.14);
  --blue: #356dff;
  --radius-md: 22px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 10% 10%, rgba(53, 109, 255, 0.08), transparent 30%),
    radial-gradient(circle at 92% 12%, rgba(255, 183, 3, 0.16), transparent 24%),
    linear-gradient(180deg, #fbf7ef 0%, var(--bg) 36%, #fff9f2 100%);
  color: var(--ink);
  font-family: "IBM Plex Sans KR", sans-serif;
}

::selection { background: rgba(53, 109, 255, 0.18); }

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

a:focus-visible {
  outline: 3px solid rgba(53, 109, 255, 0.28);
  outline-offset: 4px;
}

.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.ambient-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(90px);
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

.lang-switch { position: fixed; top: 16px; right: 16px; z-index: 100; }

.lang-switch select {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--muted);
  background: var(--surface);
  border: 1.5px solid var(--line-strong);
  border-radius: 8px;
  padding: 5px 8px;
  cursor: pointer;
  outline: none;
  backdrop-filter: blur(8px);
}

.lang-switch select:hover { border-color: var(--blue); }

.shell {
  flex: 1;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  padding: 96px 24px 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-icon {
  width: 88px;
  height: 88px;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(27, 58, 107, 0.18);
  margin-bottom: 26px;
  animation: fade-up 0.6s ease both, float 5s ease-in-out 1.2s infinite;
}

.hero-name {
  font-family: "Space Grotesk", "IBM Plex Sans KR", sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
  animation: fade-up 0.6s ease 0.15s both;
}

.hero-tagline {
  font-size: 1.125rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0 0 20px;
  max-width: 420px;
  animation: fade-up 0.6s ease 0.3s both;
}

.hero-about {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.75;
  margin: 0 0 56px;
  max-width: 460px;
  animation: fade-up 0.6s ease 0.4s both;
}

.section-label {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 16px;
  animation: fade-up 0.6s ease 0.5s both;
}

.product-card {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 18px;
  text-align: left;
  background: var(--surface);
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  backdrop-filter: blur(8px);
  transition: transform 0.15s, box-shadow 0.15s;
  animation: fade-up 0.6s ease 0.6s both;
}

.product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 44px rgba(41, 26, 12, 0.1);
}

.product-card img {
  width: 56px;
  height: 56px;
  border-radius: 13px;
  flex-shrink: 0;
}

.product-card-body { flex: 1; min-width: 0; }

.product-card-name {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  margin: 0 0 3px;
}

.product-card-desc {
  display: block;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

.product-card-arrow {
  color: var(--muted);
  flex-shrink: 0;
  font-size: 1.1rem;
}

.product-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 20px 0 0;
  animation: fade-up 0.6s ease 0.7s both;
}

.product-links a,
.footer-links a {
  font-size: 0.8125rem;
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: transparent;
  transition: color 0.15s, text-decoration-color 0.15s;
}

.product-links a:hover,
.footer-links a:hover {
  color: var(--ink);
  text-decoration-color: var(--muted);
}

.site-footer {
  padding: 24px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
  position: relative;
  z-index: 1;
}

.footer-links {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.site-footer p { margin: 0; }

@media (max-width: 480px) {
  .shell { padding-top: 80px; }
  .hero-name { font-size: 2rem; }
}
