@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&family=JetBrains+Mono:wght@500&display=swap');

:root {
  --bg: #0a0a0f;
  --bg-2: #0d1018;
  --panel: rgba(255, 255, 255, 0.04);
  --panel-border: rgba(255, 255, 255, 0.1);
  --txt: #e8eaf1;
  --txt-dim: #aab0c0;
  --muted: #8a91a5;
  --accent-lilac: #b043ff;
  --accent-green: #00ffa6;
  --accent-blue: #4fc3f7;
  --r-s: 10px;
  --r-m: 14px;
  --r-xl: 18px;
  --shadow-soft: 0 10px 26px rgba(0, 0, 0, 0.42);
  --focus-ring: 0 0 0 3px rgba(79, 195, 247, 0.25);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  color: var(--txt);
  background: radial-gradient(1200px 800px at 20% -10%, rgba(176, 67, 255, 0.09), transparent 60%),
    radial-gradient(900px 700px at 110% 10%, rgba(79, 195, 247, 0.1), transparent 55%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1080px, 100% - 28px);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(10, 10, 15, 0.86);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent-lilac), var(--accent-green));
  color: #080b11;
  font-weight: 800;
  font-size: 12px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-copy b {
  font-size: 14px;
  letter-spacing: 0.08em;
}

.brand-copy small {
  color: var(--muted);
  font-size: 11px;
}

.header-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.header-nav a {
  color: var(--txt-dim);
  font-size: 14px;
  font-weight: 600;
}

.header-nav a:hover {
  color: var(--txt);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--txt-dim);
  font-size: 13px;
}

.lang-switch a {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 2px 8px;
}

.lang-switch a.active {
  color: var(--txt);
  border-color: rgba(0, 255, 166, 0.3);
  background: rgba(0, 255, 166, 0.1);
}

.hero {
  padding: 30px 0 16px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
  align-items: stretch;
}

.hero-copy {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-soft);
  padding: 16px;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 8px;
  padding: 3px 10px;
  border-radius: 999px;
  border: 1px solid rgba(176, 67, 255, 0.35);
  background: rgba(176, 67, 255, 0.1);
  color: #dec0ff;
  letter-spacing: 0.07em;
  font-size: 11px;
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0;
}

h1 {
  font-size: clamp(1.9rem, 4.3vw, 2.85rem);
  line-height: 1.08;
  max-width: 18ch;
}

.hero-sub,
.hero-note,
.section p,
.section-sub,
.mini-note,
.faq-item p {
  color: var(--txt-dim);
}

.hero-sub {
  margin: 11px 0 8px;
  line-height: 1.58;
}

.hero-note {
  margin: 0 0 14px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn {
  min-height: 38px;
  border-radius: 12px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
  border-color: rgba(176, 67, 255, 0.5);
}

.btn:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.btn-primary {
  border: 0;
  color: #05060b;
  background: linear-gradient(135deg, var(--accent-lilac), var(--accent-green));
}

.btn-ghost {
  border-color: rgba(0, 255, 166, 0.35);
}

.btn-text {
  border-color: rgba(79, 195, 247, 0.3);
  color: #c7ecff;
}

.hero-media {
  display: grid;
  gap: 10px;
}

.hero-shot,
.shot-card,
.info-card,
.plan-card,
.security-card,
.faq-item,
.cta-box {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-soft);
}

.hero-shot {
  margin: 0;
  overflow: hidden;
}

.hero-shot img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  background: #090b12;
}

.hero-shot figcaption {
  padding: 10px 12px;
  color: var(--txt-dim);
  font-size: 13px;
}

.section {
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.section-alt {
  background: linear-gradient(180deg, rgba(12, 16, 26, 0.66), rgba(9, 12, 20, 0.22));
}

.section h2 {
  font-size: clamp(1.34rem, 3vw, 2rem);
  margin-bottom: 10px;
}

.section p,
.section-sub {
  line-height: 1.62;
}

.split-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 16px;
}

.feature-list,
.info-card ul,
.plan-card ul,
.security-card ul {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}

.feature-list li,
.info-card li,
.plan-card li,
.security-card li {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  padding: 9px 11px;
  line-height: 1.45;
}

.info-card,
.plan-card,
.security-card {
  padding: 14px;
}

.gallery-title {
  margin: 14px 0 10px;
  color: #dde3f2;
  font-size: 17px;
}

.shot-grid {
  display: grid;
  gap: 10px;
}

.shot-grid-owner {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.shot-grid-user {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.shot-card {
  margin: 0;
  overflow: hidden;
  position: relative;
}

.shot-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  background: #090b12;
}

.shot-card figcaption {
  padding: 10px 11px;
  font-size: 13px;
  color: var(--txt-dim);
}

.shot-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(8, 9, 13, 0.7);
  color: #eaf0ff;
  font-size: 11px;
  padding: 2px 8px;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.plan-label {
  display: inline-block;
  margin: 0;
  border: 1px solid rgba(79, 195, 247, 0.35);
  border-radius: 999px;
  padding: 2px 8px;
  color: #c7ecff;
  font-size: 12px;
}

.plan-card h3 {
  margin-top: 8px;
  font-size: 20px;
}

.plan-card.premium {
  border-color: rgba(176, 67, 255, 0.36);
  box-shadow: 0 0 0 1px rgba(176, 67, 255, 0.18) inset, var(--shadow-soft);
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.security-card h3 {
  margin-bottom: 8px;
  font-size: 17px;
}

.faq-grid {
  margin-top: 12px;
  display: grid;
  gap: 10px;
}

.faq-item {
  padding: 10px 12px;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
}

.faq-item p {
  margin: 8px 0 0;
}

.cta-section {
  padding-bottom: 36px;
}

.cta-box {
  padding: 14px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
}

.cta-box p {
  margin: 8px 0 0;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--txt-dim);
  padding: 14px 0 18px;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-links {
  display: inline-flex;
  gap: 12px;
}

.footer-links a:hover {
  color: var(--txt);
}

.reveal {
  opacity: 0;
  transform: translateY(8px);
  animation: reveal-in 0.35s ease forwards;
}

main .reveal:nth-of-type(2) {
  animation-delay: 0.06s;
}

main .reveal:nth-of-type(3) {
  animation-delay: 0.1s;
}

main .reveal:nth-of-type(4) {
  animation-delay: 0.14s;
}

main .reveal:nth-of-type(5) {
  animation-delay: 0.18s;
}

@keyframes reveal-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .header-row {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .header-nav {
    justify-content: flex-start;
  }

  .hero-grid,
  .split-grid,
  .plan-grid,
  .security-grid,
  .cta-box {
    grid-template-columns: 1fr;
  }

  .shot-grid-user {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .hero {
    padding-top: 22px;
  }

  .shot-grid-owner,
  .shot-grid-user {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
