:root {
  --bg: #f9fafb;
  --text: #1f2937;
  --muted: #6b7280;
  --card: #ffffff;
  --violet: #9681fa;
  --violet-d: #7a65e9;
  --ring: 0 18px 40px rgba(18, 21, 31, 0.12);
}

@font-face {
  font-family: 'MoreSugar';
  src: url('Static/Font/MoreSugar-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

* { box-sizing: border-box; }
body, h1, h2, h3, p { margin:0; }
body {
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial;
  background: var(--bg);
  color: var(--text);
}

.t-page {
  min-height: 100vh;
}

.t-nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 6%;
  background: rgba(255,255,255,0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.t-nav-links {
  display: flex;
  align-items: center;
  gap: 14px;
}
.t-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--violet-d);
}
.t-brand span {
  font-family: 'MoreSugar', cursive;
  font-size: 1.22rem;
  letter-spacing: 0.025em;
}
.t-brand img { width: 42px; height: auto; }
.t-nav nav { display: flex; gap: 22px; align-items: center; }
.t-nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
}
.t-nav a.pill {
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  color: var(--text);
  border: 1px solid rgba(124,77,255,0.18);
  box-shadow: 0 6px 14px rgba(0,0,0,0.08);
}
.t-lang-switch {
  appearance: none;
  border: 1px solid rgba(124,77,255,0.18);
  border-radius: 12px;
  padding: 10px 12px;
  background: #fff;
  font-weight: 700;
  color: var(--text);
  box-shadow: 0 6px 14px rgba(0,0,0,0.08);
  cursor: pointer;
}

.t-hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
  padding: clamp(40px, 8vw, 96px) 6%;
}
.t-hero-visual{
  background:#fff;
  border-radius:20px;
  padding: 12px;
  box-shadow: var(--ring);
  border:1px solid rgba(124,77,255,0.12);
}
.t-hero-visual img{
  width:100%;
  height:auto;
  display:block;
  border-radius:14px;
}
.t-hero-visual figcaption{
  margin-top:10px;
  color: var(--muted);
  font-size: 0.95rem;
  text-align: center;
}
.t-hero-text h1 {
  font-size: clamp(2.4rem, 4vw, 3rem);
  margin: 8px 0 14px;
  line-height: 1.1;
}
.t-lead {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 18px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--violet-d);
}
.t-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn, .ghost, .t-hero-actions button {
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  border: none;
}
.btn {
  background: linear-gradient(90deg, var(--violet), var(--violet-d));
  color: #fff;
  box-shadow: 0 14px 30px rgba(124,77,255,0.25);
}
.ghost {
  background: #fff;
  color: var(--text);
  border: 1px solid rgba(124,77,255,0.18);
}

.t-hero-card {
  background: #f1ecff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: var(--ring);
  border: 1px solid rgba(124,77,255,0.14);
}
.t-chip {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 10px;
  background: #fff;
  color: var(--violet-d);
  font-weight: 700;
  margin-bottom: 10px;
}
.t-hero-title {
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.t-dropdown {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 12px;
  padding: 12px 14px;
  font-weight: 700;
  margin-bottom: 12px;
}
.t-hero-actions {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.t-hero-actions .solid {
  background: linear-gradient(90deg, #8b7bff, #4f46e5);
  color: #fff;
}
.t-hero-actions .outline {
  background: #fff;
  border: 1px solid #4f46e5;
  color: #4f46e5;
}
.t-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 8px;
}
.tile {
  background: rgba(124,77,255,0.14);
  color: #2f2f2f;
  font-weight: 700;
  padding: 12px 10px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(124,77,255,0.18);
}

.t-section {
  display: grid;
  gap: clamp(32px, 5vw, 48px);
  padding: 10px 6% 72px;
}

.t-panel-video {
  display: grid;
  gap: 12px;
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
}
.t-video {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.08);
  background: #0d0f1a;
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}
.t-video-link {
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
  background: #0d0f1a;
}
.t-video-link img {
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 16 / 9;
}
.t-play-badge {
  position: absolute;
  inset: auto 12px 12px auto;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(0,0,0,0.72);
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
  box-shadow: 0 12px 26px rgba(0,0,0,0.25);
}
.t-video-embed {
  padding: 0;
  border: none;
  box-shadow: none;
}
.t-video-embed iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  border: none;
  border-radius: 12px;
  display: block;
}
.t-row {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(24px, 5vw, 60px);
  align-items: center;
}
.t-copy h3 { font-size: 1.6rem; margin: 6px 0 10px; }
.t-copy p { color: var(--muted); line-height: 1.7; }
.icon { font-size: 24px; margin-bottom: 4px; }

.t-panel {
  background: #101012;
  color: #e5e7eb;
  border-radius: 18px;
  padding: clamp(18px, 3vw, 26px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.06);
}
.t-panel.dark {
  background: radial-gradient(120% 120% at 10% 10%, rgba(124,77,255,0.18), rgba(0,0,0,0.92));
}
.t-panel.glow {
  background: linear-gradient(145deg, #141625, #0c0f1b 40%, #1c1f33 80%);
}
.panel-label {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  opacity: 0.8;
}
.panel-title {
  font-size: 1.3rem;
  font-weight: 800;
  margin: 6px 0 10px;
}
.panel-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
}
.panel-list li {
  padding: 10px 12px;
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
}
.panel-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.panel-tabs span {
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  color: #cbd5e1;
  font-weight: 700;
}
.panel-tabs .active {
  background: linear-gradient(90deg, #8b7bff, #4f46e5);
  color: #fff;
}
.panel-card {
  position: relative;
  padding: 14px;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}
.badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #ffd166;
  color: #1f2937;
  padding: 8px 10px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 12px;
  box-shadow: 0 12px 24px rgba(0,0,0,0.14);
}
.panel-card-title {
  font-weight: 800;
  margin-bottom: 8px;
}
.panel-text { color: #cbd5e1; line-height: 1.6; }
.panel-text.small { font-size: 0.95rem; }
.panel-link { margin-top: 10px; color: #94a3b8; font-weight: 700; }

.w100 { width: 100%; }

.t-cta-block {
  padding: 64px 6% 84px;
  background: linear-gradient(135deg, rgba(124,77,255,0.08), rgba(74,222,128,0.08));
}
.cta-content {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.cta-content h2 { font-size: clamp(2rem, 3vw, 2.4rem); margin-bottom: 10px; }
.cta-content p { color: var(--muted); margin-bottom: 16px; }

@media (max-width: 960px) {
  .t-hero, .t-row {
    grid-template-columns: 1fr;
  }
  .t-nav { padding: 12px 4%; }
  .t-nav nav { gap: 14px; }
}
