:root {
  --bg0: #141418;
  --bg1: #1c1c24;
  --card: rgba(255, 255, 255, 0.05);
  --card2: rgba(255, 255, 255, 0.08);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.68);
  --soft: rgba(255, 255, 255, 0.14);
  --line: rgba(255, 255, 255, 0.1);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.65);
  --radius: 18px;
  --radius2: 26px;
  --magenta: #c026d3;
  --orange: #f97316;
  --accent: #d946ef;
  --accent2: #f97316;
  --accent3: #fbbf24;
  --gradient-brand: linear-gradient(135deg, var(--magenta), var(--orange));
  --ok: #f97316;
  --danger: #fb7185;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background-color: var(--bg0);
  background:
    radial-gradient(900px 520px at 8% 8%, rgba(192, 38, 211, 0.09), transparent 62%),
    radial-gradient(900px 520px at 92% 18%, rgba(249, 115, 22, 0.07), transparent 62%),
    radial-gradient(700px 460px at 50% 100%, rgba(217, 70, 239, 0.05), transparent 58%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
  background-attachment: fixed;
  background-repeat: no-repeat;
  line-height: 1.45;
}

html {
  scroll-behavior: smooth;
}

::selection {
  background: rgba(192, 38, 211, 0.35);
  color: #fff;
}

a:focus-visible,
button:focus-visible,
label:focus-visible {
  outline: 2px solid rgba(249, 115, 22, 0.55);
  outline-offset: 2px;
}

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

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transform: translateY(-140%);
  transition: transform 160ms ease;
  z-index: 9999;
}
.skip-link:focus {
  transform: translateY(0);
  outline: none;
}

/* ---------- Language switching (CSS-only) ---------- */
.lang-radio {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.t-en,
.t-hi,
.t-gu {
  display: none;
}

#lang-en:checked ~ * .t-en {
  display: inline;
}
#lang-hi:checked ~ * .t-hi {
  display: inline;
}
#lang-gu:checked ~ * .t-gu {
  display: inline;
}

#lang-en:checked ~ * .lang-switch label[for="lang-en"],
#lang-hi:checked ~ * .lang-switch label[for="lang-hi"],
#lang-gu:checked ~ * .lang-switch label[for="lang-gu"] {
  background: rgba(192, 38, 211, 0.18);
  border-color: rgba(249, 115, 22, 0.35);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: linear-gradient(180deg, rgba(20, 20, 24, 0.82), rgba(20, 20, 24, 0.45));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 16px;
  align-items: center;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  text-decoration: none;
  color: inherit;
}

.brand-logo {
  display: block;
  height: 44px;
  width: auto;
  max-width: min(220px, 52vw);
  object-fit: contain;
}

.brand-text {
  min-width: 0;
  padding-left: 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}
.brand-subtitle {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav {
  display: flex;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

.nav-link {
  padding: 8px 10px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 600;
  font-size: 13px;
  transition: background 160ms ease, transform 160ms ease;
}
.nav-link:hover {
  background: rgba(192, 38, 211, 0.12);
  border-color: transparent;
}
.nav-link:active {
  transform: translateY(1px);
}

.lang-switch {
  display: inline-flex;
  gap: 6px;
  padding: 6px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

.lang-pill {
  cursor: pointer;
  user-select: none;
  padding: 8px 10px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}
.lang-pill:hover {
  background: rgba(255, 255, 255, 0.1);
}
.lang-pill:active {
  transform: translateY(1px);
}

/* ---------- Hero ---------- */
.hero {
  padding: 52px 0 18px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 26px;
  align-items: start;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 600;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.82);
}

.pulse {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.55);
  animation: pulse 1.7s ease-in-out infinite;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.5);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(192, 38, 211, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(249, 115, 22, 0);
  }
}

.hero-title {
  margin: 16px 0 10px;
  font-size: clamp(28px, 3.8vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.6px;
}

.hero-subtitle {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  max-width: 60ch;
}

.hero-cta {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}
.btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
}
.btn:active {
  transform: translateY(1px);
}
.btn.primary {
  color: #fff;
  background: var(--gradient-brand);
  border-color: rgba(249, 115, 22, 0.35);
  box-shadow: 0 8px 28px rgba(192, 38, 211, 0.25);
}
.btn.primary:hover {
  background: linear-gradient(135deg, #d946ef, #fb923c);
  border-color: rgba(251, 146, 60, 0.45);
  box-shadow: 0 10px 32px rgba(249, 115, 22, 0.28);
}
.btn.subtle {
  background: rgba(255, 255, 255, 0.04);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.metric {
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 14px 14px 12px;
}
.metric-top {
  font-weight: 800;
  letter-spacing: -0.2px;
  font-size: 16px;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.metric-label {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 600;
  font-size: 12px;
}

.hero-card {
  border-radius: var(--radius2);
  padding: 16px;
  background:
    radial-gradient(140% 120% at 10% 0%, rgba(192, 38, 211, 0.14), transparent 52%),
    radial-gradient(120% 120% at 100% 20%, rgba(249, 115, 22, 0.12), transparent 48%),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}

.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.card-title {
  font-weight: 800;
  letter-spacing: -0.2px;
}
.card-chip {
  font-size: 12px;
  font-weight: 700;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.8);
}

.featured-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.featured-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-radius: 16px;
  padding: 12px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.045);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}
.featured-item:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(255, 255, 255, 0.16);
}

.fi-left {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.fi-icon {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.4px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

.fi-meta {
  min-width: 0;
}
.fi-name {
  font-weight: 800;
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.fi-sub {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  font-size: 12px;
}
.fi-arrow {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 900;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.mini-link {
  font-weight: 800;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.82);
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  transition: background 160ms ease, border-color 160ms ease;
}
.mini-link:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

/* ---------- Sections ---------- */
.section {
  padding: 42px 0;
}

.section-head {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.section-title {
  margin: 0;
  font-size: 22px;
  letter-spacing: -0.25px;
}
.section-subtitle {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 600;
  font-size: 14px;
}

.grid {
  display: grid;
  gap: 12px;
}
.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.subsection {
  margin-top: 22px;
}
.subhead {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
}
.subhead-title {
  margin: 0;
  font-size: 18px;
  letter-spacing: -0.2px;
}
.subhead-subtitle {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 600;
  font-size: 13px;
}

.card {
  position: relative;
  border-radius: var(--radius);
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  overflow: hidden;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}
.card:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.16);
}

.card-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.82);
}
.card-badge.wp {
  border-color: rgba(192, 38, 211, 0.32);
  background: rgba(192, 38, 211, 0.1);
}
.card-badge.web {
  border-color: rgba(249, 115, 22, 0.32);
  background: rgba(249, 115, 22, 0.1);
}
.card-badge.figma {
  border-color: rgba(255, 207, 90, 0.34);
  background: rgba(255, 207, 90, 0.11);
}
.card-badge.progress {
  border-color: rgba(251, 113, 133, 0.3);
  background: rgba(251, 113, 133, 0.1);
}

.card-heading {
  margin: 12px 0 6px;
  font-size: 16px;
  letter-spacing: -0.2px;
}
.card-text {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 600;
  font-size: 13px;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.86);
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}
.card-link:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.card-link.disabled {
  opacity: 0.72;
  cursor: not-allowed;
  user-select: none;
}
.card-link.disabled:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
}

.link-stack {
  display: grid;
  gap: 10px;
}

/* ---------- App cards ---------- */
.app-card {
  border-radius: var(--radius2);
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(120% 120% at 10% 0%, rgba(192, 38, 211, 0.14), transparent 55%),
    rgba(255, 255, 255, 0.05);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}
.app-card:hover {
  transform: translateY(-1px);
  background:
    radial-gradient(120% 120% at 10% 0%, rgba(249, 115, 22, 0.12), transparent 55%),
    rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.16);
}

.app-top {
  display: flex;
  align-items: center;
  gap: 12px;
}
.app-icon {
  width: 48px;
  height: 48px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-weight: 900;
  letter-spacing: 0.4px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(120% 120% at 0% 0%, rgba(192, 38, 211, 0.35), rgba(249, 115, 22, 0.25)),
    rgba(255, 255, 255, 0.05);
}
.app-name {
  margin: 0;
  font-size: 16px;
  letter-spacing: -0.2px;
}
.app-sub {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
  font-size: 12px;
}

.btn-row {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  font-weight: 900;
  font-size: 13px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}
.store-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.store-btn.disabled {
  opacity: 0.6;
  cursor: not-allowed;
  user-select: none;
}
.store-btn.disabled:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
}

.store-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
}
.store-dot.g {
  background: #34d399;
}
.store-dot.a {
  background: #e5e7eb;
}
.store-dot.f {
  background: #f59e0b;
}

/* ---------- Stack ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.contact-card {
  border-radius: var(--radius2);
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(120% 120% at 10% 0%, rgba(192, 38, 211, 0.12), transparent 55%),
    rgba(255, 255, 255, 0.05);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}
.contact-card:hover {
  transform: translateY(-1px);
  background:
    radial-gradient(120% 120% at 10% 0%, rgba(249, 115, 22, 0.14), transparent 55%),
    rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.16);
}

.contact-label {
  font-weight: 900;
  letter-spacing: -0.2px;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.82);
}

.contact-stack {
  display: grid;
  gap: 10px;
}

.contact-value {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  font-weight: 900;
  font-size: 13px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.86);
}
.contact-value:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

/* ---------- Footer ---------- */
.footer {
  padding: 26px 0 34px;
  background: transparent;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 16px;
}

.footer-right {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.footer-link {
  padding: 9px 11px;
  border-radius: 14px;
  font-weight: 900;
  font-size: 13px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}
.footer-link:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}
.footer-link:active {
  transform: translateY(1px);
}


/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .header-inner {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "brand lang"
      "nav nav";
  }
  .brand {
    grid-area: brand;
  }
  .lang-switch {
    grid-area: lang;
    justify-self: end;
  }
  .nav {
    grid-area: nav;
    justify-self: start;
    width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .nav::-webkit-scrollbar {
    display: none;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-card {
    order: 2;
  }

  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .hero {
    padding-top: 36px;
  }
  .brand-text {
    display: none;
  }
  .brand-logo {
    height: 38px;
    max-width: min(190px, 70vw);
  }
  .hero-metrics {
    grid-template-columns: 1fr;
  }
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    flex-direction: column;
  }
  .footer-right {
    justify-content: flex-start;
  }
}
