@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/fonts/inter.woff2") format("woff2");
}
@font-face {
  font-family: "JetBrains Mono";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("/fonts/jetbrains-mono.woff2") format("woff2");
}
:root {
  --bg: #09090E;
  --bg2: #0F0F17;
  --bg3: #14141F;
  --border: #1C1C2E;
  --border2: #252538;
  --accent: #00b2eb;
  --accent2: #33c4f0;
  --accent-glow: rgba(0, 178, 235, 0.18);
  --text: #E8E8F0;
  --text2: #9494B0;
  --text3: #5C5C78;
  --green: #34D399;
  --blue: #60A5FA;
  --purple: #A78BFA;
  --mono: "JetBrains Mono", monospace;
  --sans: "Inter", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-top: 40px;
}

h1 {
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 900;
  letter-spacing: -2.5px;
  line-height: 1;
  margin-bottom: 24px;
  position: relative;
}
h1 span {
  color: var(--accent);
}

h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.15;
  margin-bottom: 16px;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 2rem;
  height: 56px;
  background: rgba(9, 9, 14, 0.7);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-logo {
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.3px;
  text-decoration: none;
  color: var(--text);
}
.nav-logo-icon {
  width: 28px;
  height: 28px;
  background: var(--accent);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lang-switch {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 2px;
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: 8px;
  padding: 3px;
}
.lang-switch a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 3px 9px;
  border-radius: 6px;
  text-decoration: none;
  color: var(--text3);
  transition: color 0.15s, background 0.15s;
}
.lang-switch a:hover {
  color: var(--text);
}
.lang-switch a.active {
  background: var(--accent);
  color: white;
}

nav a.cta-btn {
  justify-self: end;
  background: var(--accent);
  color: white;
  font-weight: 600;
  font-size: 13px;
  padding: 6px 16px;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 0.1px;
  transition: opacity 0.15s;
}
nav a.cta-btn:hover {
  opacity: 0.85;
}

section {
  padding: 100px 2rem;
}

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

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

.section-sub {
  font-size: 17px;
  color: var(--text2);
  max-width: 520px;
  line-height: 1.6;
  margin-bottom: 56px;
}

footer {
  padding: 40px 2rem;
  border-top: 1px solid var(--border);
  text-align: center;
}
footer p {
  font-size: 13px;
  color: var(--text3);
}
footer a {
  color: var(--text3);
  text-decoration: none;
}
footer a:hover {
  color: var(--accent);
}

.hero-logo {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}
.hero-logo img {
  width: 96px;
  height: auto;
  border-radius: 18px;
  position: relative;
  z-index: 1;
}

.hero-logo-glow {
  position: absolute;
  inset: -16px;
  border-radius: 34px;
  background: radial-gradient(ellipse at center, rgba(0, 178, 235, 0.45) 0%, transparent 70%);
  animation: logo-glow 3s ease-in-out infinite;
  z-index: 0;
}

@keyframes logo-glow {
  0%, 100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.12);
  }
}
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 2rem 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0, 178, 235, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 25px 25px;
  z-index: -1;
}

.hero-sub {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--text2);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.6;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 72px;
}

.price-note {
  font-size: 13px;
  color: var(--text3);
  margin-top: -8px;
  margin-bottom: 72px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 178, 235, 0.1);
  border: 1px solid rgba(0, 178, 235, 0.25);
  color: var(--accent2);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: white;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 28px;
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 0 0 0 rgba(0, 178, 235, 0);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(0, 178, 235, 0.35);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text2);
  font-weight: 500;
  font-size: 15px;
  padding: 12px 20px;
  border-radius: 12px;
  text-decoration: none;
  border: 1px solid var(--border2);
  transition: color 0.15s, border-color 0.15s;
}
.btn-secondary:hover {
  color: var(--text);
  border-color: var(--text3);
}

.app-preview {
  position: relative;
  width: 100%;
  max-width: 482px;
  margin: 0 auto;
}

.app-preview-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5), 0 0 0 1px var(--border2);
}
.app-preview-frame img.app-shot {
  display: block;
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.35s ease;
  border-radius: 16px;
}
.app-preview-frame img.app-shot.active {
  opacity: 1;
  position: relative;
}

.app-preview-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.preview-toggle {
  display: inline-flex;
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: 10px;
  padding: 3px;
  gap: 2px;
}
.preview-toggle .toggle-btn {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  color: var(--text3);
  background: transparent;
  border: none;
  padding: 5px 14px;
  border-radius: 7px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  letter-spacing: 0.3px;
}
.preview-toggle .toggle-btn.active {
  background: var(--bg3);
  color: var(--text);
}
.preview-toggle .toggle-btn:hover:not(.active) {
  color: var(--text2);
}

.menubar-demo {
  position: relative;
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
}

.mac-menubar {
  background: rgba(20, 20, 31, 0.95);
  border: 1px solid var(--border2);
  border-radius: 12px 12px 0 0;
  height: 28px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  gap: 16px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.menubar-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menubar-item {
  font-size: 12px;
  font-weight: 500;
  color: var(--text2);
  opacity: 0.6;
}
.menubar-item.active {
  color: white;
  opacity: 1;
}

.menubar-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.unixtime-icon {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(0, 178, 235, 0.15);
  border: 1px solid rgba(0, 178, 235, 0.3);
  padding: 2px 8px;
  border-radius: 5px;
  cursor: pointer;
}
.unixtime-icon svg {
  width: 12px;
  height: 12px;
}
.unixtime-icon span {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: -0.5px;
}

.dropdown-panel {
  background: rgba(18, 18, 28, 0.98);
  border: 1px solid var(--border2);
  border-top: none;
  border-radius: 0 0 12px 12px;
  padding: 16px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.panel-title {
  font-size: 11px;
  font-weight: 600;
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.panel-time {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text3);
}

.format-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  border-radius: 8px;
  transition: background 0.1s;
  cursor: pointer;
  border: 1px solid transparent;
}
.format-row:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border);
}
.format-row.highlighted {
  background: rgba(0, 178, 235, 0.08);
  border-color: rgba(0, 178, 235, 0.2);
}
.format-row.highlighted .copy-badge {
  opacity: 1;
}

.format-label {
  font-size: 11px;
  color: var(--text3);
  font-weight: 500;
  width: 110px;
  flex-shrink: 0;
}

.format-value {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text);
  flex: 1;
  text-align: right;
  letter-spacing: -0.3px;
}
.format-value.accent {
  color: var(--accent);
  font-weight: 600;
}

.copy-badge {
  font-size: 9px;
  background: var(--accent);
  color: white;
  padding: 1px 5px;
  border-radius: 3px;
  font-weight: 700;
  margin-left: 8px;
  opacity: 0;
  transition: opacity 0.15s;
}

.panel-divider {
  height: 1px;
  background: var(--border);
  margin: 10px 0;
}

.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.how-card {
  background: var(--bg2);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
}
.how-card:first-child {
  border-radius: 16px 0 0 16px;
}
.how-card:last-child {
  border-radius: 0 16px 16px 0;
}

.how-num {
  font-family: var(--mono);
  font-size: 56px;
  font-weight: 700;
  color: var(--border2);
  line-height: 1;
  margin-bottom: 20px;
  position: absolute;
  top: 16px;
  right: 24px;
}

.how-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 20px;
}
.how-icon.orange {
  background: rgba(0, 178, 235, 0.12);
}
.how-icon.blue {
  background: rgba(96, 165, 250, 0.1);
}
.how-icon.green {
  background: rgba(52, 211, 153, 0.1);
}

.how-title {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.4px;
  margin-bottom: 8px;
}

.how-text {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.6;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: border-color 0.2s, transform 0.2s;
}
.feature-card:hover {
  border-color: var(--border2);
  transform: translateY(-2px);
}
.feature-card.wide {
  grid-column: span 2;
}

.feat-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 16px;
  background: var(--bg3);
}

.feat-title {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin-bottom: 6px;
}

.feat-text {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.6;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}

.tag {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--text3);
  background: var(--bg3);
  border: 1px solid var(--border);
  padding: 3px 9px;
  border-radius: 6px;
}
.tag.highlight {
  color: var(--accent2);
  background: rgba(0, 178, 235, 0.06);
  border-color: rgba(0, 178, 235, 0.2);
}

.screens-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.screens-wrap .screenshot {
  width: 100%;
  height: auto;
  border-radius: 16px;
  border: 1px solid var(--border);
  display: block;
}

.screen-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.screen-titlebar {
  background: var(--bg3);
  height: 36px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  gap: 6px;
  border-bottom: 1px solid var(--border);
}

.traffic-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.screen-body {
  padding: 20px;
}

.dategen {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}

.dategen-field {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 10px;
}

.dategen-label {
  font-size: 9px;
  color: var(--text3);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 2px;
}

.dategen-val {
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.dategen-result {
  background: rgba(0, 178, 235, 0.08);
  border: 1px solid rgba(0, 178, 235, 0.2);
  border-radius: 10px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dategen-result-label {
  font-size: 11px;
  color: var(--text3);
}
.dategen-result-val {
  font-family: var(--mono);
  font-size: 16px;
  font-weight: 700;
  color: var(--accent);
}

.history-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
}
.history-row:last-child {
  border-bottom: none;
}

.history-in {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text2);
  flex: 1;
}

.arrow {
  color: var(--text3);
  font-size: 11px;
}

.history-out {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--accent2);
  text-align: right;
}

.stats-bar {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-inner {
  display: flex;
  justify-content: space-around;
  padding: 40px 2rem;
}

.stat {
  text-align: center;
}

.stat-num {
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -2px;
  color: var(--text);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-num span {
  color: var(--accent);
}

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

.pricing-card {
  max-width: 420px;
  margin: 0 auto;
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: 24px;
  padding: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pricing-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.pricing-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(0, 178, 235, 0.12);
  color: var(--accent);
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid rgba(0, 178, 235, 0.2);
  margin-bottom: 20px;
}

.price-big {
  font-size: 64px;
  font-weight: 900;
  letter-spacing: -3px;
  line-height: 1;
  color: var(--text);
  margin-bottom: 4px;
}
.price-big .price-currency {
  font-size: 28px;
  font-weight: 700;
  vertical-align: middle;
  margin-right: 2px;
  opacity: 0.7;
}

.price-sub {
  font-size: 13px;
  color: var(--text3);
  margin-bottom: 28px;
}

.perks {
  text-align: left;
  margin-bottom: 32px;
}

.perk {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  color: var(--text2);
  border-bottom: 1px solid var(--border);
}
.perk:last-child {
  border-bottom: none;
}

.perk-icon {
  color: var(--green);
  font-size: 13px;
  width: 16px;
}

.btn-buy {
  display: block;
  width: 100%;
  background: var(--accent);
  color: white;
  font-weight: 700;
  font-size: 16px;
  padding: 14px;
  border-radius: 14px;
  text-decoration: none;
  text-align: center;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 20px rgba(0, 178, 235, 0.25);
}
.btn-buy:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(0, 178, 235, 0.4);
}

.app-store-note {
  font-size: 12px;
  color: var(--text3);
  margin-top: 14px;
}

.price-launch-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 14px;
  margin-bottom: 4px;
}

.price-big-old {
  font-size: 28px;
  font-weight: 700;
  color: var(--text3);
  text-decoration: line-through;
  letter-spacing: -1px;
}
.price-big-old .price-currency {
  font-size: 14px;
}

.price-launch-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  background: rgba(52, 211, 153, 0.12);
  color: var(--green);
  border: 1px solid rgba(52, 211, 153, 0.25);
  padding: 3px 9px;
  border-radius: 6px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.countdown-box {
  background: rgba(0, 178, 235, 0.06);
  border: 1px solid rgba(0, 178, 235, 0.15);
  border-radius: 12px;
  padding: 14px 20px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.countdown-label {
  font-size: 12px;
  color: var(--text3);
}

.countdown-timer {
  font-family: var(--mono);
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 1px;
}

.countdown-date {
  font-size: 11px;
  color: var(--text3);
  margin-top: 2px;
}

.screen-tabs {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.screen-tabs-nav {
  display: flex;
  justify-content: center;
  gap: 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
  overflow-x: auto;
  scrollbar-width: none;
  width: 100%;
}
.screen-tabs-nav::-webkit-scrollbar {
  display: none;
}

.screen-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  color: var(--text3);
  transition: color 0.15s;
  font-family: var(--sans);
  white-space: nowrap;
  flex-shrink: 0;
}
.screen-tab::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  opacity: 0;
  transition: opacity 0.2s;
}
.screen-tab.active {
  color: var(--text);
}
.screen-tab.active::after {
  opacity: 1;
}
.screen-tab.active .screen-tab-num {
  opacity: 1;
}
.screen-tab:hover:not(.active) {
  color: var(--text2);
}

.screen-tab-num {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.45;
  transition: opacity 0.15s;
  letter-spacing: 0.5px;
}

.screen-tab-label {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.2px;
}

.screen-tabs-viewport {
  display: flex;
  align-items: center;
  gap: 20px;
}

.screen-arrow {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 178, 235, 0.12);
  border: 1px solid rgba(0, 178, 235, 0.3);
  color: var(--accent);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, transform 0.15s;
  line-height: 1;
}
.screen-arrow:hover {
  background: rgba(0, 178, 235, 0.22);
  border-color: rgba(0, 178, 235, 0.6);
  transform: scale(1.08);
}
.screen-arrow:disabled {
  opacity: 0.25;
  cursor: default;
  transform: none;
}

.screen-tabs-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45), 0 0 0 1px var(--border2);
  max-width: 482px;
  width: 100%;
}
.screen-tabs-frame img.screen-tab-img {
  display: block;
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 16px;
}
.screen-tabs-frame img.screen-tab-img.active {
  opacity: 1;
  position: relative;
}

.nobs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.nobs-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  text-align: center;
}

.nobs-icon {
  font-size: 28px;
  margin-bottom: 10px;
}

.nobs-title {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 4px;
}

.nobs-text {
  font-size: 12px;
  color: var(--text3);
  line-height: 1.5;
}

.launch-banner {
  background: linear-gradient(90deg, rgba(0, 178, 235, 0.12), rgba(0, 178, 235, 0.06));
  border-bottom: 1px solid rgba(0, 178, 235, 0.2);
  padding: 10px 2rem;
  text-align: center;
  position: fixed;
  top: 56px;
  left: 0;
  right: 0;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 13px;
}
.launch-banner strong {
  color: var(--accent);
  font-weight: 700;
}
.launch-banner .countdown {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  background: rgba(0, 178, 235, 0.15);
  border: 1px solid rgba(0, 178, 235, 0.3);
  color: var(--accent2);
  padding: 2px 10px;
  border-radius: 6px;
}
.launch-banner .sep {
  color: var(--text3);
}

@media (max-width: 900px) {
  .how-grid {
    grid-template-columns: 1fr;
  }
  .how-grid .how-card {
    border-radius: 0 !important;
  }
  .how-grid .how-card:first-child {
    border-radius: 14px 14px 0 0 !important;
  }
  .how-grid .how-card:last-child {
    border-radius: 0 0 14px 14px !important;
  }
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
  .features-grid .feature-card.wide {
    grid-column: span 1;
  }
  .screens-wrap {
    grid-template-columns: 1fr;
  }
  .nobs-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stats-inner {
    flex-wrap: wrap;
    gap: 32px;
  }
}
@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  .nobs-grid {
    grid-template-columns: 1fr 1fr;
  }
  h1 {
    letter-spacing: -1.5px;
  }
}

/*# sourceMappingURL=main.css.map */
