* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: #0b1014;
  color: #f5f5f5;
}

/* TOP BAR */
.top-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 48px;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: rgba(8, 14, 18, 0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 179, 71, 0.35);
  padding: 0 20px;
}
.top-bar-text {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.03em;
}
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 6px 18px;
  border-radius: 10px;
  text-decoration: none;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.2;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.09);
  transition: all 0.2s;
  letter-spacing: 0.01em;
}
.store-btn small {
  display: block;
  font-size: 0.60rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.store-btn:hover {
  background: rgba(255, 179, 71, 0.18);
  border-color: rgba(255, 179, 71, 0.6);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 179, 71, 0.15);
}
.store-btn svg { flex-shrink: 0; }
.store-android svg { color: #34e06a; }
.store-ios svg { color: #d0d0d0; }
@media (max-width: 600px) {
  .top-bar-text { display: none; }
  .store-btn { padding: 5px 10px; }
}
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image: url('data/hero-orignal.jpg');
  background-size: cover;
  background-position: 22% 35%;
  z-index: -2;
}
@media (max-width: 768px) and (orientation: portrait) {
  body::before {
    background-image: url('data/hero-portrait.jpg');
    background-size: 180% auto;
    background-position: center 20%;
  }
}
body::after {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.58);
  z-index: -1;
}
a { text-decoration: none; }

/* HERO PARALLAX */
.hero-parallax {
  min-height: 55vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-top: none;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroEntry {
  0%   { opacity: 0; transform: translateY(55px) scale(0.96); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
.hero-parallax-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 30px 8vw 16px;
  width: 100%;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeUp 0.75s ease both;
}
.hero-badge {
  display: inline-block;
  background: rgba(255, 179, 71, 0.12);
  border: 1px solid rgba(255, 179, 71, 0.45);
  color: #ffb347;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.hero-parallax-content h1 {
  font-size: 2.8rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin: 0 auto 22px;
  text-shadow: 0 2px 32px rgba(0,0,0,0.55);
  letter-spacing: -0.01em;
  hyphens: none;
  text-align: center;
  white-space: pre-line;
  animation: heroEntry 1s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both,
             heroFloat 5s ease-in-out 1.4s infinite;
}
@media (max-width: 768px) {
  .hero-parallax { min-height: 0; }
  .hero-parallax-content { padding: 14px 5vw 8px; }
  .hero-parallax-content h1 { font-size: 1.5rem; margin-bottom: 12px; }
  .hero-cta { margin-top: 0; }
}
@media (min-width: 769px) {
  .logo img { height: 58px; }
  .hero-parallax { min-height: 28vh; }
  .hero-parallax-content { padding: 20px 8vw 12px; }
}
.hero-accent {
  color: #ffb347;
  text-shadow: 0 0 40px rgba(255, 179, 71, 0.45);
}
.hero-intro {
  font-size: 1.15rem;
  color: #ffb347;
  line-height: 1.65;
  margin: 0 auto 36px;
  max-width: 620px;
}
.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-features {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}
.hero-features span {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 6px 15px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(4px);
}
.btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 8px;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.2s;
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
}

/* HEADER */
header {
  background: rgba(10, 18, 24, 0.20);
  backdrop-filter: blur(4px);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: sticky;
  top: 0;
  z-index: 10;
}
.logo-img {
  flex: 1;
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo-img img { height: 48px; width: auto; }
@media (min-width: 769px) { .logo-img img { height: 68px; } }
.header-brand {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
}
.logo-word {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f5f5f5;
  white-space: nowrap;
}
.logo-scan { color: #ffb347; }
.header-spacer { display: none; }
nav a {
  color: #d0d7de;
  text-decoration: none;
  margin-left: 20px;
  font-size: 0.95rem;
  transition: color 0.2s;
}
nav a:hover { color: #ffb347; }
nav a.active { color: #ffb347; font-weight: 600; }

/* HAMBURGER */
.hamburger {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  z-index: 1;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #f5f5f5;
  border-radius: 2px;
  transition: all 0.3s;
}
/* Spacer to balance hamburger on the right */
.header-spacer {
  width: 36px;
}

/* SCREENSHOTS TOP */
.screenshots-top {
  padding: 10px 8vw 20px;
  background: transparent;
  border-top: none;
}
.screenshots-label {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: #f5f5f5;
  text-align: center;
  margin-bottom: 20px;
  width: 100%;
}
.screenshots-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
}
.screenshots-row .screen-thumb {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 160px;
}
.screenshots-row .screen-thumb img {
  width: 160px;
  border-radius: 12px;
  border: 2px solid rgba(255, 179, 71, 0.5);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.35s cubic-bezier(0.22,1,0.36,1);
  display: block;
}
.screenshots-row .screen-thumb:hover img {
  border-color: #ffb347;
  box-shadow: 0 8px 28px rgba(255, 179, 71, 0.4);
  transform: scale(1.13);
}
.screenshots-row .screen-thumb span {
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
}

/* MODAL */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}
.modal-overlay.open {
  display: flex;
}
.modal-box {
  background: #1b2833;
  border: 1px solid #2b3a46;
  border-radius: 20px;
  padding: 32px 28px;
  max-width: 380px;
  width: 90%;
  position: relative;
}
.modal-box h3 {
  font-size: 1.1rem;
  color: #ffb347;
  margin-bottom: 14px;
}
.modal-box p {
  font-size: 0.95rem;
  color: #c5ced8;
  line-height: 1.6;
}
.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  color: #8b949e;
  font-size: 1.1rem;
  cursor: pointer;
  line-height: 1;
}
.modal-close:hover { color: #ffb347; }
.modal-close-btn {
  display: block;
  margin: 18px auto 0;
  padding: 10px 32px;
  background: none;
  border: 1px solid rgba(255,179,71,0.5);
  border-radius: 20px;
  color: #ffb347;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s;
}
.modal-close-btn:hover { background: rgba(255,179,71,0.12); }
#modal-img { max-height: 260px; object-fit: cover; width: 100%; }
@media (max-width: 768px) {
  #modal-img { max-height: 180px; }
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 40px;
  padding: 60px 8vw;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: transparent;
  
}
.hero::before {
  display: none;
}
.hero-text, .hero-visual { position: relative; z-index: 1; }
.hero-text h1 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  margin-bottom: 10px;
}
.hero-text h1 span { color: #ffb347; }
.hero-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #c5ced8;
  max-width: 540px;
}
.badges {
  margin: 20px 0 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.badge {
  border-radius: 999px;
  border: 1px solid #2b3a46;
  padding: 6px 14px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #c5ced8;
  background: transparent;
}
.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.btn-primary, .btn-secondary {
  border-radius: 999px;
  padding: 10px 22px;
  font-size: clamp(0.72rem, 3.5vw, 0.95rem);
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
  white-space: nowrap;
}
.btn-primary {
  background: #ffb347;
  color: #1b2833;
  font-weight: 600;
}
.btn-primary:hover {
  background: #ff9f1c;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 179, 71, 0.3);
}
.btn-secondary {
  background: transparent;
  color: #f5f5f5;
  border: 1px solid #2b3a46;
}
.btn-secondary:hover {
  border-color: #ffb347;
  color: #ffb347;
}
.hero-visual {
  background: radial-gradient(circle at top, #243b4a 0, #0b1014 55%);
  border-radius: 24px;
  border: 1px solid #1f2a33;
  padding: 24px;
  position: relative;
  min-height: 260px;
  overflow: hidden;
}
.hero-visual h2 { font-size: 1.1rem; margin-bottom: 10px; }
.hero-visual p { font-size: 0.9rem; color: #c5ced8; max-width: 320px; }
.tag {
  position: absolute;
  top: 18px; right: 18px;
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid #2b3a46;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffb347;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}
.mini-card {
  background: transparent;
  border-radius: 14px;
  border: 1px solid #1f2a33;
  padding: 10px 12px;
  font-size: 0.8rem;
  color: #c5ced8;
}
.mini-card strong {
  display: block;
  font-size: 0.8rem;
  margin-bottom: 4px;
  color: #ffb347;
}

/* GALERIE */
.photo-gallery {
  padding: 60px 8vw;
  background: transparent;
  
  border-top: 1px solid rgba(255,255,255,0.08);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  margin-top: 30px;
}
.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  border: 2px solid rgba(255, 179, 71, 0.5);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.gallery-item:hover {
  border-color: #ffb347;
  box-shadow: 0 8px 30px rgba(255, 179, 71, 0.25);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 220px;
}
.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(255, 179, 71, 0.15);
}
.gallery-item-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(11, 16, 20, 0.95), transparent);
  padding: 20px;
  transform: translateY(100%);
  transition: transform 0.3s;
}
.gallery-item:hover .gallery-item-overlay { transform: translateY(0); }
.gallery-item-overlay h3 { font-size: 1rem; color: #ffb347; margin-bottom: 4px; }
.gallery-item-overlay p { font-size: 0.85rem; color: #c5ced8; }

/* SCREENSHOTS */
.screen-thumb {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  cursor: default;
  transition: transform 0.25s;
}
.screen-thumb:hover { transform: translateY(-4px); }
.screen-thumb img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #2b3a46;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.screen-thumb:hover img {
  border-color: #ffb347;
  box-shadow: 0 6px 20px rgba(255, 179, 71, 0.25);
}
.screen-thumb span { font-size: 0.65rem; color: #c5ced8; text-align: center; }

/* SECTIONS */
section {
  padding: 40px 8vw 60px;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: transparent;
  
}
.section-title { font-size: 1.4rem; margin-bottom: 10px; }
.section-subtitle {
  font-size: 0.95rem;
  color: #c5ced8;
  max-width: 640px;
  margin-bottom: 30px;
}
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.feature {
  background: rgba(20, 30, 40, 0.75);
  border-radius: 16px;
  border: 1px solid #1f2a33;
  padding: 18px;
  transition: transform 0.3s, border-color 0.3s;
}
.feature:hover { transform: translateY(-4px); border-color: #2b3a46; }
.feature h3 { font-size: 1rem; margin-bottom: 8px; color: #ffb347; }
.feature p { font-size: 0.9rem; color: #c5ced8; line-height: 1.5; }

/* FAQ */
.faq-section {
  padding: 60px 8vw;
  background: transparent;
  
}
.faq-list { max-width: 760px; margin: 32px auto 0; }
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 4px 0;
}
.faq-item summary {
  padding: 16px 0;
  font-size: 1rem;
  font-weight: 600;
  color: #f5f5f5;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: #FF6B35;
  transition: transform 0.2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  padding: 0 0 16px;
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* CONTACT */
.contact-section {
  padding: 60px 8vw;
  background: transparent;
  
  text-align: center;
}
.contact-form {
  max-width: 560px;
  margin: 32px auto 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
}
.contact-form input,
.contact-form textarea {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 12px 16px;
  color: #f5f5f5;
  font-size: 0.95rem;
  font-family: inherit;
  width: 100%;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #FF6B35;
}
.contact-form textarea { resize: vertical; }
.contact-form .btn-primary { align-self: flex-start; }

/* FOOTER */
footer {
  padding: 20px 0 30px;
  font-size: 0.85rem;
  color: #fff;
  background: transparent;
  text-align: center;
}
footer a { color: #c5ced8; text-decoration: none; }
footer a:hover { color: #ffb347; }

/* NAV always hidden, opens via hamburger */
nav {
  display: none;
  position: absolute;
  top: 73px;
  left: 0; right: 0;
  background: #1b2833;
  flex-direction: column;
  padding: 16px 20px;
  gap: 4px;
  border-bottom: 1px solid #1f2a33;
  z-index: 100;
}
nav.open { display: flex; }
nav a {
  margin-left: 0;
  padding: 10px 0;
  font-size: 1rem;
  border-bottom: 1px solid #ffffff10;
}
nav a:last-child { border-bottom: none; }

@media (max-width: 800px) {
  .screenshots-row .screen-thumb {
    flex: 1;
    width: auto;
  }
  .screenshots-row .screen-thumb img {
    width: 100%;
  }
  .hero {
    grid-template-columns: minmax(0, 1fr);
    padding-top: 40px;
  }
  .hero-visual { order: -1; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item img { min-height: 180px; }
  .card-grid { grid-template-columns: 1fr; }
}

/* BLOG INDEX */
.blog-index {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-bottom: 50px;
}
.blog-card {
  display: block;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,179,71,0.25);
  border-radius: 12px;
  padding: 20px 22px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.blog-card:hover {
  background: rgba(255,179,71,0.1);
  border-color: #ffb347;
  transform: translateY(-3px);
}
.blog-card-meta {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #ffb347;
  margin-bottom: 8px;
}
.blog-card-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
}
.blog-back {
  display: inline-flex;
  align-items: center;
  background: none;
  border: 1px solid rgba(255,179,71,0.4);
  color: #ffb347;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 999px;
  padding: 8px 18px;
  cursor: pointer;
  margin-bottom: 32px;
  transition: background 0.2s, border-color 0.2s;
}
.blog-back:hover {
  background: rgba(255,179,71,0.1);
  border-color: #ffb347;
}

/* BLOG */
.blog-article {
  margin-bottom: 60px;
  color: #d0d7de;
  line-height: 1.8;
}
.blog-meta {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #ffb347;
  margin-bottom: 10px;
}
.blog-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.3;
}
.blog-article h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffb347;
  margin: 28px 0 10px;
}
.blog-article p { margin-bottom: 14px; }
.blog-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin: 0 0 50px;
}
