:root {
  --primary: #ffb300;
  --primary-dark: #ff8f00;
  --bg: #050505;
  --bg-card: #111111;
  --text: #f9fafb;
  --muted: #d1d5db;
  --border: #27272a;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
header {
  border-bottom: 1px solid var(--border);
  background: #000000;
}
.nav {
  max-width: 1120px;
  margin: 0 auto;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.9rem;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s ease;
}
.nav-links a:hover {
  color: var(--text);
}
.nav-cta {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(249, 250, 251, 0.15);
  color: var(--text);
  font-size: 0.8rem;
}
main {
  flex: 1;
}
.hero {
  max-width: 1120px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 3rem;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}
@media (max-width: 900px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
    padding-top: 2rem;
  }
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.9rem 0.3rem;
  border-radius: 999px;
  border: 1px solid rgba(249, 250, 251, 0.18);
  background: radial-gradient(circle at 0 0, rgba(248, 250, 252, 0.12), transparent 55%);
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 1rem;
}
.hero-tag span {
  display: inline-flex;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.35);
}
.hero-title {
  font-size: clamp(2.1rem, 4vw, 2.75rem);
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.hero-title span {
  background: linear-gradient(120deg, #fed7aa, #ffedd5, #fee2e2);
  -webkit-background-clip: text;
  color: transparent;
}
.hero-subtitle {
  font-size: 0.98rem;
  color: var(--muted);
  max-width: 34rem;
  line-height: 1.6;
  margin-bottom: 1.75rem;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.3rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #0b1120;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: default;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.55);
  text-decoration: none;
}
.btn-primary span.icon {
  font-size: 1.15rem;
}
.btn-secondary {
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(15, 23, 42, 0.9);
  color: var(--muted);
  font-size: 0.85rem;
  text-decoration: none;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.78rem;
  color: var(--muted);
}
.hero-meta strong {
  display: block;
  color: var(--text);
  font-size: 0.9rem;
}
.hero-right {
  position: relative;
}
.app-card {
  background: var(--bg-card);
  border-radius: 18px;
  border: 1px solid var(--border);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.6);
  max-width: 420px;
  margin-left: auto;
}
.app-card-icon {
  width: 84px;
  height: 84px;
  border-radius: 16px;
  margin-bottom: 1rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.45);
}
.app-card-banner {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  margin-bottom: 0.75rem;
}
.app-card-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}
.app-card-subtitle {
  font-size: 0.9rem;
  color: var(--muted);
}
.phone-frame {
  position: relative;
  max-width: 320px;
  margin: 0 auto;
  border-radius: 32px;
  padding: 10px;
  background: radial-gradient(circle at 0 0, rgba(248, 250, 252, 0.2), transparent 55%);
  border: 1px solid rgba(148, 163, 184, 0.3);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.75),
    0 0 0 1px rgba(15, 23, 42, 0.9);
}
.phone-inner {
  border-radius: 26px;
  background: radial-gradient(circle at top left, #111827 0, #020617 55%, #000 100%);
  padding: 1rem;
  border: 1px solid rgba(15, 23, 42, 0.9);
  position: relative;
  overflow: hidden;
}
.phone-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.65rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
}
.phone-pill {
  height: 18px;
  width: 110px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  margin: 0 auto 0.75rem;
}
.phone-card {
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(55, 65, 81, 0.9);
  padding: 0.85rem;
  margin-bottom: 0.75rem;
}
.phone-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.4rem;
}
.phone-card-title {
  font-size: 0.85rem;
  font-weight: 600;
}
.phone-chip {
  padding: 0.1rem 0.6rem;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.12);
  color: #bbf7d0;
  font-size: 0.65rem;
}
.phone-card-body {
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 0.6rem;
}
.phone-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
}
.phone-price {
  font-weight: 600;
  color: #fed7aa;
}
.phone-cta {
  font-size: 0.7rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: rgba(251, 191, 36, 0.12);
  color: #f59e0b;
  border: 1px solid rgba(251, 191, 36, 0.35);
}
.phone-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.68rem;
  color: var(--muted);
  margin-top: 0.5rem;
}
.dot-row {
  display: flex;
  gap: 0.18rem;
}
.dot-row span {
  width: 3px;
  height: 3px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.7);
}
.highlight-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  font-size: 0.7rem;
}
.highlight-item {
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(31, 41, 55, 0.9);
  padding: 0.5rem;
}
.highlight-item strong {
  display: block;
  font-size: 0.8rem;
  margin-bottom: 0.2rem;
}
section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem 2.5rem;
}
.section-title {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.section-subtitle {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
@media (max-width: 900px) {
  .features {
    grid-template-columns: minmax(0, 1fr);
  }
}
.feature-card {
  background: rgba(15, 23, 42, 0.9);
  border-radius: 16px;
  padding: 1rem;
  border: 1px solid rgba(31, 41, 55, 0.9);
}
.feature-icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(248, 250, 252, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}
.feature-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.feature-body {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
}
.download {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem 2.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}
@media (max-width: 900px) {
  .download {
    grid-template-columns: minmax(0, 1fr);
  }
}
.download-copy {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
}
.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.store-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: rgba(15, 23, 42, 0.95);
  color: var(--text);
  text-decoration: none;
  font-size: 0.85rem;
}
.store-badge span.icon {
  font-size: 1.1rem;
}
.two-column-section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem 2.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: flex-start;
}
@media (max-width: 900px) {
  .two-column-section {
    grid-template-columns: minmax(0, 1fr);
  }
}
.content-card {
  background: var(--bg-card);
  border-radius: 18px;
  border: 1px solid var(--border);
  padding: 1.25rem;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.6);
}
.small-card-row {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
@media (max-width: 900px) {
  .small-card-row {
    grid-template-columns: minmax(0, 1fr);
  }
}
.small-card {
  background: var(--bg-card);
  border-radius: 18px;
  border: 1px solid var(--border);
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  color: var(--muted);
}
.small-card-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
  font-weight: 600;
  color: var(--text);
}
.small-card-icon {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  background: rgba(250, 250, 250, 0.08);
}
.delete-card {
  max-width: 1120px;
  margin: 0 auto 2.5rem;
  padding: 0 1.25rem;
}
.delete-card-inner {
  background: var(--bg-card);
  border-radius: 18px;
  border: 1px solid var(--border);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
@media (max-width: 700px) {
  .delete-card-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
.btn-yellow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  background: #ffb300;
  color: #111827;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}
footer {
  border-top: 1px solid var(--border);
  background: rgba(15, 23, 42, 0.96);
}
.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.85rem 1.25rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.78rem;
  color: var(--muted);
}
.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-links a {
  color: var(--muted);
  text-decoration: none;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.18rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(55, 65, 81, 0.9);
  font-size: 0.68rem;
  color: var(--muted);
}
.badge span {
  font-size: 0.8rem;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
@media (max-width: 900px) {
  .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 550px) {
  .gallery { grid-template-columns: minmax(0, 1fr); }
}
.shot {
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(31, 41, 55, 0.9);
  border-radius: 16px;
  overflow: hidden;
}
.shot img {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: contain;
  background: #0b1120;
}
.shot figcaption {
  padding: 0.6rem 0.75rem;
  font-size: 0.82rem;
  color: #9ca3af;
  border-top: 1px solid rgba(31, 41, 55, 0.9);
}

.legal-main {
  flex: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1.25rem 2.5rem;
}
.legal-main h1 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}
.legal-main h2 {
  font-size: 1.1rem;
  margin: 1.75rem 0 0.5rem;
}
.legal-main p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 0.8rem;
}
.legal-main ul {
  font-size: 0.9rem;
  color: var(--muted);
  padding-left: 1.25rem;
  margin-bottom: 0.8rem;
}
.legal-main li {
  margin-bottom: 0.25rem;
}
.legal-main .meta {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
}
.legal-main .highlight {
  border-left: 3px solid var(--primary);
  padding-left: 0.75rem;
  margin-bottom: 1.25rem;
}
a.inline {
  color: var(--text);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
