:root {
  --amber: #FF9500;
  --amber-light: #FFB830;
  --amber-dim: #CC7800;
  --amber-glow: rgba(255, 149, 0, 0.18);
  --amber-border: rgba(255, 149, 0, 0.12);
  --dark: #050313;
  --dark-2: #0B0820;
  --cream: #F0EEFF;
  --cream-70: rgba(240, 238, 255, 0.7);
  --cream-40: rgba(240, 238, 255, 0.4);
  --cream-15: rgba(240, 238, 255, 0.15);
  --cream-08: rgba(240, 238, 255, 0.08);
  --sep: rgba(240, 238, 255, 0.07);
  --card-bg: rgba(139, 92, 246, 0.05);
  --radius: 20px;
  --radius-sm: 12px;
  --font: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', Arial, sans-serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; background-color: #120D2E; overscroll-behavior-y: none; }

body {
  font-family: var(--font);
  color: var(--cream);
  background: linear-gradient(180deg,
    #120D2E 0%,
    #0A0720 30%,
    #060412 65%,
    #030209 100%
  );
  background-attachment: fixed;
  min-height: 100vh;
  overflow-x: hidden;
  overscroll-behavior-y: none;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font-family: var(--font); cursor: pointer; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(255,149,0,0.25); border-radius: 3px; }

/* ════════════════════════════════
   NAV
════════════════════════════════ */

.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  background: rgba(8, 5, 22, 0.75);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--sep);
  transition: background 0.3s;
}

.nav-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: var(--cream);
}

.nav-logo-mark {
  width: 32px; height: 32px;
  border-radius: 9px;
  flex-shrink: 0;
  object-fit: cover;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 7px 16px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  color: var(--cream-70);
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover { color: var(--cream); background: var(--cream-08); }
.nav-link.active { color: var(--amber); }

.nav-cta {
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  color: #1A0600;
  background: var(--amber);
  border: none;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}
.nav-cta:hover { background: var(--amber-light); transform: translateY(-1px); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  border-radius: 8px;
  transition: background 0.2s;
}
.nav-hamburger:hover { background: var(--cream-08); }
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav-drawer-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 300;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.nav-drawer-overlay.open { opacity: 1; pointer-events: all; }

.nav-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 280px;
  background: linear-gradient(180deg, #1A0E3D, #0C0820);
  border-left: 1px solid var(--sep);
  z-index: 301;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  display: flex; flex-direction: column;
  padding: 80px 0 40px;
}
.nav-drawer.open { transform: translateX(0); }

.nav-drawer-close {
  position: absolute; top: 18px; right: 20px;
  background: var(--cream-08); border: none;
  color: var(--cream); width: 36px; height: 36px;
  border-radius: 50%; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.nav-drawer-close:hover { background: var(--cream-15); }

.nav-drawer-links { display: flex; flex-direction: column; padding: 0 24px; gap: 4px; }

.nav-drawer-link {
  display: flex; align-items: center;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: 16px; font-weight: 500;
  color: var(--cream-70);
  transition: color 0.2s, background 0.2s;
}
.nav-drawer-link:hover { color: var(--cream); background: var(--cream-08); }
.nav-drawer-link.active { color: var(--amber); }

.nav-drawer-cta {
  margin: 24px 24px 0;
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: var(--radius-sm);
  font-size: 15px; font-weight: 600;
  color: #1A0600;
  background: var(--amber);
}

/* ════════════════════════════════
   HERO
════════════════════════════════ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-glow-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,149,0,0.12) 0%, transparent 70%);
  top: -100px; left: 50%; transform: translateX(-50%);
}
.hero-glow-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,184,48,0.08) 0%, transparent 70%);
  top: 40%; left: 10%;
  animation: floatGlow 8s ease-in-out infinite;
}
.hero-glow-3 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(255,100,0,0.07) 0%, transparent 70%);
  top: 30%; right: 5%;
  animation: floatGlow 10s ease-in-out infinite reverse;
}

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

.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,149,0,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,149,0,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 30%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--amber);
  background: rgba(255,149,0,0.1);
  border: 1px solid rgba(255,149,0,0.2);
  margin-bottom: 28px;
}

.hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--amber);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.0;
  margin-bottom: 24px;
  color: var(--cream);
}

.hero-title-accent {
  background: linear-gradient(135deg, var(--amber-light) 0%, var(--amber) 50%, #FF6500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--cream-70);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 40px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  color: #1A0600;
  background: var(--amber);
  border: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(255,149,0,0.3);
}
.btn-primary:hover {
  background: var(--amber-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,149,0,0.4);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  color: var(--cream-70);
  background: var(--cream-08);
  border: 1px solid var(--sep);
  transition: color 0.2s, background 0.2s, transform 0.2s;
}
.btn-ghost:hover {
  color: var(--cream);
  background: var(--cream-15);
  transform: translateY(-2px);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--cream-40);
  font-size: 12px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase;
}
.hero-scroll-arrow {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--cream-40), transparent);
  animation: scrollArrow 2s ease-in-out infinite;
}
@keyframes scrollArrow {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ════════════════════════════════
   SECTION COMMON
════════════════════════════════ */

.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  color: var(--cream);
}

.section-sub {
  font-size: 1.05rem;
  color: var(--cream-70);
  line-height: 1.7;
  max-width: 520px;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ════════════════════════════════
   FEATURED APPS (HOME)
════════════════════════════════ */

.apps-preview {
  padding: 100px 0;
  position: relative;
}

.apps-preview-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  gap: 24px;
}

.apps-preview-head-text {}

.view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  color: var(--amber);
  background: rgba(255,149,0,0.08);
  border: 1px solid rgba(255,149,0,0.15);
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.2s;
}
.view-all-btn:hover { background: rgba(255,149,0,0.15); transform: translateX(3px); }

.apps-cards-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.app-card {
  position: relative;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--sep);
  border-radius: 24px;
  padding: 28px;
  cursor: pointer;
  transition: transform 0.35s var(--ease), border-color 0.3s, background 0.3s, box-shadow 0.35s;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
}

.app-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  opacity: 0;
  transition: opacity 0.3s;
}

.app-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,149,0,0.25);
  background: rgba(255,255,255,0.04);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,149,0,0.1);
}

.app-card-glow {
  position: absolute;
  width: 150px; height: 150px;
  border-radius: 50%;
  filter: blur(40px);
  top: -30px; right: -30px;
  opacity: 0.15;
  pointer-events: none;
  transition: opacity 0.3s;
}
.app-card:hover .app-card-glow { opacity: 0.3; }

.app-card-icon {
  width: 72px; height: 72px;
  border-radius: 18px;
  object-fit: cover;
  margin-bottom: 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.app-card-icon-placeholder {
  width: 72px; height: 72px;
  border-radius: 18px;
  margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px;
  flex-shrink: 0;
}

.app-card-category {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.app-card-name {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--cream);
  margin-bottom: 10px;
}

.app-card-desc {
  font-size: 14px;
  color: var(--cream-40);
  line-height: 1.6;
  margin-bottom: 24px;
}

.app-card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  transition: gap 0.2s;
}
.app-card:hover .app-card-arrow { gap: 10px; }

/* ════════════════════════════════
   ABOUT TEASER (HOME)
════════════════════════════════ */

.about-teaser {
  padding: 100px 0;
  position: relative;
}

.about-teaser-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-teaser-label {}

.about-teaser-quote {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.2;
  color: var(--cream);
  margin: 16px 0 0;
}

.about-teaser-quote em {
  font-style: normal;
  background: linear-gradient(135deg, var(--amber-light), var(--amber));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-teaser-right {}

.about-teaser-body {
  font-size: 1rem;
  color: var(--cream-70);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-teaser-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--amber);
  margin-top: 8px;
  transition: gap 0.2s;
}
.about-teaser-link:hover { gap: 14px; }

.about-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--sep), var(--sep), transparent);
  margin: 0 40px;
}

/* ════════════════════════════════
   STATS BAR
════════════════════════════════ */

.stats-bar {
  padding: 60px 0;
}

.stats-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--sep);
  border: 1px solid var(--sep);
  border-radius: var(--radius);
  overflow: hidden;
}

.stat-item {
  padding: 32px 24px;
  text-align: center;
  background: var(--card-bg);
}

.stat-num {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 13px;
  color: var(--cream-40);
  font-weight: 500;
}

/* ════════════════════════════════
   PAGE HERO (inner pages)
════════════════════════════════ */

.page-hero {
  padding: 140px 0 80px;
  text-align: center;
}

.page-hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.05;
  margin-bottom: 20px;
}

.page-hero-sub {
  font-size: 1.1rem;
  color: var(--cream-70);
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto;
}

/* ════════════════════════════════
   APPS GRID (apps.html)
════════════════════════════════ */

.apps-grid-section {
  padding: 60px 0 100px;
}

.apps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

/* ════════════════════════════════
   ABOUT PAGE
════════════════════════════════ */

.about-section {
  padding: 60px 0 100px;
}

.about-manifesto {
  max-width: 720px;
  margin: 0 auto 80px;
}

.about-manifesto-text {
  font-size: 1.15rem;
  color: var(--cream-70);
  line-height: 1.9;
  margin-bottom: 20px;
}

.about-manifesto-text strong {
  color: var(--cream);
  font-weight: 600;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 80px;
}

.value-card {
  background: var(--card-bg);
  border: 1px solid var(--amber-border);
  border-radius: var(--radius);
  padding: 28px 24px;
}

.value-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.value-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 10px;
}

.value-desc {
  font-size: 14px;
  color: var(--cream-40);
  line-height: 1.7;
}

/* ════════════════════════════════
   CONTACT PAGE
════════════════════════════════ */

.contact-section {
  padding: 60px 0 100px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--sep);
  background: var(--card-bg);
  margin-bottom: 16px;
}

.contact-info-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,149,0,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-info-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--cream-40);
  margin-bottom: 4px;
  text-transform: uppercase;
}

.contact-info-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--cream);
}

.contact-form-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--sep);
  border-radius: 24px;
  padding: 40px;
}

.form-group { margin-bottom: 20px; }

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--cream-70);
  margin-bottom: 8px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  background: var(--cream-08);
  border: 1px solid var(--sep);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: var(--font);
  font-size: 15px;
  color: var(--cream);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  appearance: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: rgba(255,149,0,0.4);
  background: rgba(255,149,0,0.04);
}

.form-input::placeholder,
.form-textarea::placeholder { color: var(--cream-40); }

.form-textarea {
  resize: vertical;
  min-height: 130px;
}

.form-btn {
  width: 100%;
  padding: 14px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  color: #1A0600;
  background: var(--amber);
  border: none;
  transition: background 0.2s, transform 0.15s;
}
.form-btn:hover { background: var(--amber-light); transform: translateY(-1px); }

.form-success-msg {
  display: none;
  text-align: center;
  padding: 20px;
  color: var(--amber);
  font-weight: 600;
}

/* ════════════════════════════════
   CAREERS PAGE
════════════════════════════════ */

.careers-empty {
  padding: 60px 0 100px;
  text-align: center;
}

.careers-empty-icon {
  font-size: 4rem;
  margin-bottom: 24px;
  opacity: 0.6;
}

.careers-empty-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 12px;
}

.careers-empty-desc {
  font-size: 1rem;
  color: var(--cream-40);
  line-height: 1.7;
  max-width: 400px;
  margin: 0 auto 32px;
}

/* ════════════════════════════════
   FOOTER
════════════════════════════════ */

.site-footer {
  padding: 60px 0 40px;
  border-top: 1px solid var(--sep);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 700;
  color: var(--cream);
}

.footer-logo-mark {
  width: 28px; height: 28px;
  border-radius: 8px;
  flex-shrink: 0;
  object-fit: cover;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 24px;
  justify-content: center;
}

.footer-link {
  font-size: 13px;
  color: var(--cream-40);
  transition: color 0.2s;
}
.footer-link:hover { color: var(--cream); }

.footer-copy {
  font-size: 12px;
  color: var(--cream-40);
  text-align: right;
}

/* ════════════════════════════════
   ANIMATIONS
════════════════════════════════ */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ════════════════════════════════
   RESPONSIVE
════════════════════════════════ */

@media (max-width: 900px) {
  .site-nav { padding: 0 24px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .hero { padding: 100px 24px 80px; }

  .apps-preview-head { flex-direction: column; align-items: flex-start; gap: 16px; }
  .apps-cards-track { grid-template-columns: 1fr; }

  .about-teaser-inner { grid-template-columns: 1fr; gap: 40px; }

  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }

  .footer-inner { grid-template-columns: 1fr; text-align: center; gap: 16px; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .footer-copy { text-align: center; }
  .footer-logo { justify-content: center; }

  .about-values { grid-template-columns: 1fr; }

  .contact-grid { grid-template-columns: 1fr; gap: 40px; }

  .container { padding: 0 20px; }
}

@media (max-width: 600px) {
  .hero-title { letter-spacing: -1.5px; }
  .hero-badge { font-size: 11px; }
  .hero-actions { flex-direction: column; align-items: stretch; text-align: center; }

  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }

  .about-values { grid-template-columns: 1fr; }

  .contact-form-card { padding: 24px; }

  .apps-grid { grid-template-columns: 1fr; }

  .app-card-full { flex-direction: column; }
  .app-card-icon-lg { width: 56px; height: 56px; border-radius: 14px; }
  .app-card-title { font-size: 20px; }
  .app-card-pills { flex-wrap: wrap; }
}

@media (max-width: 390px) {
  .site-nav { padding: 0 16px; }
  .hero-title { font-size: clamp(32px, 10vw, 56px); }
  .hero { padding: 90px 16px 60px; }
  .container { padding: 0 16px; }
  .app-card-full { padding: 20px; }
}
