/* Launchpad — Tech Startup */
@import url('../shared.css');

:root {
  --violet: #7c3aed;
  --light-violet: #f5f3ff;
  --green: #10b981;
  --text: #1e293b;
  --muted: #64748b;
  --white: #ffffff;
  --border: #e5e7eb;
}

body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

/* ──────────────── Shared ──────────────── */

.section-subtitle {
  text-align: center;
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 3rem;
}

/* ──────────────── Nav ──────────────── */

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 3rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-brand {
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--violet);
  letter-spacing: -0.02em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.badge {
  background: var(--green);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  animation: pulse-badge 2s infinite;
  flex-shrink: 0;
}
@keyframes pulse-badge {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.45); }
  50% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
}

/* ──────────────── Hero ──────────────── */

.hero {
  text-align: center;
  padding: 6rem 2rem 4rem;
  background: var(--light-violet);
  position: relative;
  overflow: hidden;
}
.hero-circles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-circles span {
  position: absolute;
  border-radius: 50%;
  border: 2px solid;
  opacity: 0.12;
}
.hero-circles span:nth-child(1) {
  width: 420px; height: 420px;
  top: -5%; left: 8%;
  border-color: var(--violet);
  animation: drift1 18s ease-in-out infinite;
}
.hero-circles span:nth-child(2) {
  width: 320px; height: 320px;
  top: 10%; right: 10%;
  border-color: var(--green);
  animation: drift2 22s ease-in-out infinite;
}
.hero-circles span:nth-child(3) {
  width: 260px; height: 260px;
  bottom: 5%; left: 25%;
  border-color: #f59e0b;
  animation: drift3 20s ease-in-out infinite;
}
.hero-circles span:nth-child(4) {
  width: 180px; height: 180px;
  top: 30%; right: 30%;
  border-color: #ec4899;
  animation: drift1 25s ease-in-out infinite reverse;
}
.hero-circles span:nth-child(5) {
  width: 140px; height: 140px;
  bottom: 15%; right: 15%;
  border-color: var(--violet);
  animation: drift2 16s ease-in-out infinite reverse;
}
@keyframes drift1 {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(30px, -20px); }
  66% { transform: translate(-20px, 15px); }
}
@keyframes drift2 {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(-25px, 25px); }
  66% { transform: translate(20px, -30px); }
}
@keyframes drift3 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(35px, 20px); }
}

.hero-content {
  position: relative;
  z-index: 1;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
}
.hero-subtitle {
  color: var(--muted);
  font-size: 1.15rem;
  max-width: 580px;
  margin: 0 auto 2.5rem;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: var(--violet);
  color: var(--white);
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.25);
}
.btn-outline {
  display: inline-block;
  padding: 0.75rem 2rem;
  border: 2px solid var(--violet);
  color: var(--violet);
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover {
  background: var(--violet);
  color: var(--white);
}

/* Hero: Code Editor Mockup */
.hero-screenshot {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 3.5rem auto 0;
}
.code-editor {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(124, 58, 237, 0.15), 0 4px 16px rgba(0,0,0,0.08);
}
.code-editor-bar {
  background: #1e1e2e;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  display: inline-block;
}
.dot-red { background: #ff5f57; }
.dot-yellow { background: #febc2e; }
.dot-green { background: #28c840; }
.code-editor-title {
  margin-left: 0.75rem;
  font-size: 0.78rem;
  color: #6c7086;
  font-family: 'SF Mono', 'Fira Code', monospace;
}
.code-editor-body {
  background: #1e1e2e;
  padding: 1rem 0;
  font-family: 'SF Mono', 'Fira Code', 'Cascadia Code', monospace;
  font-size: 0.82rem;
  line-height: 1.7;
}
.code-line {
  padding: 0 1.25rem;
  white-space: pre;
}
.line-num {
  display: inline-block;
  width: 28px;
  color: #45475a;
  text-align: right;
  margin-right: 1rem;
  user-select: none;
}
.code-selector { color: #cba6f7; }
.code-pseudo { color: #f38ba8; }
.code-prop { color: #89b4fa; }
.code-value { color: #a6e3a1; }
.code-number { color: #fab387; }
.code-color { color: #f5c2e7; }
.code-function { color: #89dceb; }
.code-editor-body .code-line:not(:has(.code-selector)):not(:has(.code-prop)) {
  color: #cdd6f4;
}

/* ──────────────── Metrics Bar ──────────────── */

.metrics {
  background: var(--violet);
  padding: 3rem 2rem;
}
.metrics-inner {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}
.metric {
  text-align: center;
}
.metric-number {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}
.metric-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ──────────────── Product Features ──────────────── */

.features {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 2rem;
}
.features h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.feature-row {
  display: flex;
  align-items: center;
  gap: 4rem;
  margin-bottom: 4rem;
}
.feature-row:nth-child(even) {
  flex-direction: row-reverse;
}
.feature-text {
  flex: 1;
}
.feature-text h3 {
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: 0.75rem;
  font-weight: 700;
}
.feature-text p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}
.feature-mockup {
  flex: 1;
}

/* Search Mockup */
.search-mockup {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  border: 1px solid var(--border);
  background: var(--white);
}
.search-input {
  display: flex;
  align-items: center;
  padding: 0.9rem 1.25rem;
  gap: 0.75rem;
  border-bottom: 1px solid var(--border);
}
.search-icon {
  color: var(--muted);
  font-size: 1.1rem;
}
.search-text {
  flex: 1;
  font-size: 0.9rem;
  color: var(--text);
}
.search-shortcut {
  font-size: 0.7rem;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.15rem 0.5rem;
  font-family: monospace;
}
.search-dropdown {
  padding: 0.5rem;
}
.search-result {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.75rem;
  border-radius: 8px;
  transition: background 0.15s;
}
.search-result-active {
  background: var(--light-violet);
}
.result-icon {
  width: 30px; height: 30px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.result-icon-file { background: var(--violet); }
.result-icon-fn { background: #0ea5e9; }
.result-icon-var { background: #f59e0b; }
.result-text { display: flex; flex-direction: column; }
.result-name { font-size: 0.88rem; font-weight: 600; color: var(--text); }
.result-path { font-size: 0.75rem; color: var(--muted); font-family: monospace; }

/* Collaboration Mockup */
.collab-mockup {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  border: 1px solid var(--border);
  background: var(--white);
}
.collab-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.25rem;
  border-bottom: 1px solid var(--border);
  background: #fafafa;
}
.collab-filename {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  font-family: monospace;
}
.collab-presence {
  display: flex;
  gap: -4px;
}
.presence-dot {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--white);
  border: 2px solid var(--white);
  margin-left: -6px;
}
.presence-dot:first-child { margin-left: 0; }
.collab-body {
  font-family: 'SF Mono', 'Fira Code', monospace;
  font-size: 0.8rem;
  padding: 0.5rem 0;
}
.collab-line {
  display: flex;
  align-items: center;
  padding: 0.25rem 1.25rem;
  position: relative;
}
.collab-ln {
  width: 28px;
  text-align: right;
  color: #94a3b8;
  margin-right: 1rem;
  user-select: none;
}
.collab-code { color: var(--text); }
.collab-line-active {
  background: rgba(124, 58, 237, 0.06);
}
.collab-cursor-violet { border-left: 2px solid #7c3aed; }
.collab-cursor-green { border-left: 2px solid #10b981; }
.collab-user-label {
  font-size: 0.6rem;
  color: var(--white);
  padding: 0.1rem 0.4rem;
  border-radius: 3px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  margin-left: auto;
  white-space: nowrap;
}

/* Terminal Mockup */
.terminal-mockup {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}
.terminal-bar {
  background: #1e1e2e;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.terminal-title {
  margin-left: 0.75rem;
  font-size: 0.78rem;
  color: #6c7086;
  font-family: monospace;
}
.terminal-body {
  background: #0d1117;
  padding: 1.25rem;
  font-family: 'SF Mono', 'Fira Code', monospace;
  font-size: 0.82rem;
  line-height: 1.8;
}
.terminal-line { color: #8b949e; }
.terminal-prompt { color: var(--green); font-weight: 700; margin-right: 0.5rem; }
.terminal-line:first-child { color: #c9d1d9; }
.terminal-muted { color: #6e7681; }
.terminal-success { color: var(--green); font-weight: 600; }
.terminal-blank { height: 0.5rem; }
.terminal-success-line {
  color: var(--green);
  font-weight: 700;
  font-size: 0.9rem;
}
.terminal-url {
  color: #58a6ff;
}
.terminal-cursor {
  display: inline-block;
  width: 8px;
  height: 16px;
  background: var(--green);
  animation: blink-cursor 1s step-end infinite;
  vertical-align: text-bottom;
}
@keyframes blink-cursor {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* ──────────────── Values ──────────────── */

.values {
  max-width: 960px;
  margin: 0 auto;
  padding: 5rem 2rem;
}
.values h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.value-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  border-left: 4px solid var(--violet);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}
.value-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.1);
}
.value-card:nth-child(2) { border-left-color: var(--green); }
.value-card:nth-child(3) { border-left-color: #f59e0b; }
.value-card:nth-child(4) { border-left-color: #0ea5e9; }
.value-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--light-violet);
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}
.value-card:nth-child(2) .value-number { color: #ecfdf5; }
.value-card:nth-child(3) .value-number { color: #fffbeb; }
.value-card:nth-child(4) .value-number { color: #f0f9ff; }
.value-card h3 {
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.value-card p {
  color: var(--muted);
  font-size: 0.92rem;
}

/* ──────────────── Team ──────────────── */

.team {
  background: var(--light-violet);
  padding: 5rem 2rem;
}
.team h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.team-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(124, 58, 237, 0.12);
}
.avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
}
.team-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.15rem;
}
.team-role {
  font-size: 0.83rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
}
.team-fun {
  font-size: 0.75rem;
  color: var(--violet);
  background: var(--light-violet);
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  display: inline-block;
  font-weight: 500;
}
.team-social {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
}
.social-link {
  width: 30px; height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--muted);
  border: 1px solid var(--border);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.social-link:hover {
  background: var(--violet);
  color: var(--white);
  border-color: var(--violet);
}

/* ──────────────── Culture ──────────────── */

.culture {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 2rem;
}
.culture h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  text-align: center;
}
.culture-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.culture-perks {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.perk {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 1rem;
  background: var(--light-violet);
  border-radius: 8px;
  font-size: 0.92rem;
  transition: transform 0.15s;
}
.perk:hover { transform: translateX(4px); }
.perk-check {
  width: 24px;
  height: 24px;
  background: var(--green);
  border-radius: 50%;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* Chat / Slack Mockup */
.culture-chat {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  background: var(--white);
}
.chat-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-bottom: 1px solid var(--border);
  background: #fafafa;
}
.chat-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
}
.chat-channel {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
}
.chat-members {
  font-size: 0.75rem;
  color: var(--muted);
  margin-left: auto;
}
.chat-body {
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.chat-message {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.chat-avatar {
  width: 34px; height: 34px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.chat-bubble {
  flex: 1;
  position: relative;
}
.chat-bubble::after {
  content: '';
  position: absolute;
  left: -6px;
  top: 10px;
  width: 0; height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 6px solid #f1f5f9;
}
.chat-bubble p {
  background: #f1f5f9;
  padding: 0.6rem 0.9rem;
  border-radius: 8px;
  font-size: 0.85rem;
  color: var(--text);
  line-height: 1.5;
}
.chat-meta {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.2rem;
}
.chat-name {
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--text);
}
.chat-time {
  font-size: 0.7rem;
  color: var(--muted);
}

/* ──────────────── Blog Preview ──────────────── */

.blog {
  background: var(--light-violet);
  padding: 5rem 2rem;
}
.blog h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.blog-card {
  background: var(--white);
  border-radius: 14px;
  padding: 2rem;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(124, 58, 237, 0.1);
}
.blog-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.3rem 0.7rem;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  width: fit-content;
}
.tag-engineering { background: #ede9fe; color: var(--violet); }
.tag-design { background: #fef3c7; color: #92400e; }
.tag-culture { background: #d1fae5; color: #065f46; }
.tag-marketing { background: #fce7f3; color: #9d174d; }
.blog-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  line-height: 1.35;
  color: var(--text);
}
.blog-card p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
  flex: 1;
}
.blog-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.blog-author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.blog-author-avatar {
  width: 26px; height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--white);
}
.blog-author-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
}
.blog-read-time {
  font-size: 0.75rem;
  color: var(--muted);
}

/* ──────────────── Jobs ──────────────── */

.jobs {
  padding: 5rem 2rem;
}
.jobs h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.jobs-list {
  max-width: 750px;
  margin: 0 auto;
}
.jobs-department {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--violet);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  padding-left: 0.25rem;
}
.jobs-department:first-child { margin-top: 0; }
.job {
  background: var(--light-violet);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  margin-bottom: 0.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: box-shadow 0.3s, transform 0.2s;
}
.job:hover {
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.08);
  transform: translateY(-2px);
}
.job h3 { font-size: 1rem; margin-bottom: 0.3rem; }
.job-tags {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.job-tag {
  font-size: 0.65rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.job-meta { font-size: 0.8rem; color: var(--muted); }
.job-btn {
  padding: 0.55rem 1.5rem;
  background: var(--violet);
  color: var(--white);
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.2s;
}
.job-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(124, 58, 237, 0.2);
}

/* ──────────────── Newsletter ──────────────── */

.newsletter {
  background: linear-gradient(135deg, var(--violet), #6d28d9, #5b21b6);
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.newsletter-dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.newsletter-dots span {
  position: absolute;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}
.newsletter-dots span:nth-child(1) { top: 12%; left: 8%; animation: float-dot 6s ease-in-out infinite; }
.newsletter-dots span:nth-child(2) { top: 25%; right: 15%; animation: float-dot 8s ease-in-out infinite 1s; width: 8px; height: 8px; }
.newsletter-dots span:nth-child(3) { bottom: 20%; left: 20%; animation: float-dot 7s ease-in-out infinite 0.5s; }
.newsletter-dots span:nth-child(4) { top: 40%; left: 35%; animation: float-dot 9s ease-in-out infinite 2s; width: 10px; height: 10px; }
.newsletter-dots span:nth-child(5) { bottom: 30%; right: 25%; animation: float-dot 6.5s ease-in-out infinite 1.5s; }
.newsletter-dots span:nth-child(6) { top: 15%; right: 35%; animation: float-dot 8.5s ease-in-out infinite 0.8s; width: 5px; height: 5px; }
.newsletter-dots span:nth-child(7) { bottom: 15%; left: 45%; animation: float-dot 7.5s ease-in-out infinite 2.5s; width: 7px; height: 7px; }
.newsletter-dots span:nth-child(8) { top: 55%; right: 8%; animation: float-dot 6s ease-in-out infinite 1.2s; }
@keyframes float-dot {
  0%, 100% { transform: translateY(0); opacity: 0.15; }
  50% { transform: translateY(-20px); opacity: 0.35; }
}
.newsletter-content {
  position: relative;
  z-index: 1;
}
.newsletter h2 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 0.75rem;
}
.newsletter p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  max-width: 460px;
  margin: 0 auto 2rem;
}
.newsletter-form {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  max-width: 440px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.newsletter-input {
  flex: 1;
  min-width: 200px;
  padding: 0.8rem 1.25rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.newsletter-input:focus {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.15);
}
.newsletter-btn {
  padding: 0.8rem 2rem;
  background: var(--green);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
}
.newsletter-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
}

/* ──────────────── Site Footer ──────────────── */

.site-footer {
  background: var(--light-violet);
  padding: 4rem 2rem 2rem;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto 3rem;
}
.footer-col h4 {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
  margin-bottom: 1rem;
}
.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--violet); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.footer-copy {
  font-size: 0.8rem;
  color: var(--muted);
}

.murikual-footer {
  background: var(--light-violet);
  border-top: 1px solid var(--border);
}

/* ──────────────── Responsive ──────────────── */

@media (max-width: 1024px) {
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .feature-row { gap: 2.5rem; }
}
@media (max-width: 768px) {
  .nav { padding: 1rem 1.5rem; flex-wrap: wrap; gap: 0.5rem; }
  .nav-links { gap: 1rem; font-size: 0.82rem; flex-wrap: wrap; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-row,
  .feature-row:nth-child(even) {
    flex-direction: column;
    gap: 2rem;
  }
  .culture-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .metrics-inner { gap: 2rem; }
  .job { flex-direction: column; gap: 1rem; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
}
@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hero h1 { font-size: 1.8rem; }
  .code-editor-body { overflow-x: auto; }
  .code-line { font-size: 0.7rem; }
  .collab-body { overflow-x: auto; }
  .collab-line { font-size: 0.7rem; }
  .terminal-body { overflow-x: auto; font-size: 0.72rem; }
  .features h2,
  .values h2,
  .team h2,
  .culture h2,
  .blog h2,
  .jobs h2,
  .newsletter h2 {
    font-size: 1.6rem;
  }
  .metric-number { font-size: 1.8rem; }
  .metrics-inner { gap: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; }
}
