:root {
  color-scheme: dark;
  --ink: #201722;
  --plum: #402c3d;
  --berry: #996167;
  --indigo: #5b4e6f;
  --lavender: #73698f;
  --cream: #f8f3f7;
  --gold: #f5c451;
  --gold-glow: rgba(245, 196, 81, 0.35);
  --pink-glow: rgba(230, 120, 160, 0.25);
  --card-bg: rgba(255, 255, 255, 0.06);
  --card-border: rgba(255, 255, 255, 0.12);
  --glass-bg: rgba(64, 44, 61, 0.85);
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", system-ui, -apple-system, sans-serif;
}

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

body {
  margin: 0;
  color: var(--cream);
  background: radial-gradient(circle at 80% 5%, rgba(115, 105, 143, 0.4), transparent 30%),
              radial-gradient(circle at 10% 40%, rgba(245, 196, 81, 0.15), transparent 40%),
              linear-gradient(150deg, #42293e, #1a121c 80%);
  min-height: 100vh;
  line-height: 1.6;
}

a {
  color: inherit;
}

.wrap {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
}

/* Header Nav */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  font-size: 22px;
  font-weight: 1000;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.brand img {
  width: 40px;
  height: 40px;
  margin-right: 12px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  font-weight: 800;
}

.nav-links a {
  text-decoration: none;
  color: #d9c9d1;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--gold);
}

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 16px;
  font-weight: 1000;
  font-size: 15px;
  text-decoration: none;
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s ease, filter 0.2s ease;
  cursor: pointer;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: #3d261b;
  background: linear-gradient(135deg, #ffe596, #f5c451);
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.6), 0 8px 24px var(--gold-glow), 0 4px 0 #9b5d32;
}

.button.primary:hover {
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.8), 0 12px 30px var(--gold-glow), 0 4px 0 #9b5d32;
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.35);
}

/* Hero Section */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 50px;
  padding: 60px 0 80px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(245, 196, 81, 0.15);
  border: 1px solid rgba(245, 196, 81, 0.3);
  color: #f7d279;
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero h1 {
  margin: 0 0 20px;
  font-size: clamp(46px, 6.5vw, 76px);
  line-height: 0.96;
  letter-spacing: -0.05em;
  text-shadow: 0 6px 0 #231624;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, #ffe596, #f5c451);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  max-width: 580px;
  color: #e2d4dc;
  font-size: 18px;
  line-height: 1.6;
}

.shortcut-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #e5d7df;
  font-size: 13px;
  font-weight: 800;
  margin-top: 18px;
}

.shortcut-badge kbd {
  background: rgba(255, 255, 255, 0.15);
  padding: 2px 7px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-family: monospace;
  color: var(--gold);
}

.visual {
  position: relative;
  min-height: 500px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 36px;
  background: radial-gradient(circle at 50% 70%, rgba(245, 196, 81, 0.25), transparent 50%),
              linear-gradient(145deg, rgba(115, 105, 143, 0.5), rgba(64, 44, 61, 0.8));
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.2), 0 25px 60px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.visual img {
  position: absolute;
  inset: 15px 10% 0;
  width: 80%;
  height: 95%;
  object-fit: contain;
  filter: drop-shadow(0 20px 25px rgba(0, 0, 0, 0.5));
}

.float-card {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  padding: 16px 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  background: rgba(40, 26, 38, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.float-card strong {
  color: var(--gold);
  font-size: 16px;
}

.float-card span {
  font-size: 13px;
  color: #d6c5ce;
}

/* Quick Highlights Strip */
.highlights-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 90px;
}

.highlight-box {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.highlight-icon {
  font-size: 24px;
  background: rgba(245, 196, 81, 0.15);
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.highlight-box h3 {
  font-size: 16px;
  color: var(--gold);
  margin-bottom: 4px;
}

.highlight-box p {
  font-size: 13px;
  color: #d1c0c9;
  line-height: 1.4;
}

/* Section Header */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
}

.section-header .kicker {
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}

.section-header p {
  color: #dfd0d8;
  font-size: 17px;
}

/* Features Section */
.features-section {
  padding-bottom: 90px;
}

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

.feature-card {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.08), 0 12px 36px rgba(0, 0, 0, 0.2);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 196, 81, 0.4);
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.15), 0 16px 40px rgba(0, 0, 0, 0.35);
}

.feature-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 8px;
  background: rgba(245, 196, 81, 0.15);
  color: var(--gold);
  font-size: 11px;
  font-weight: 1000;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.feature-card h3 {
  font-size: 20px;
  color: var(--cream);
  margin-bottom: 10px;
}

.feature-card p {
  color: #d6c5ce;
  font-size: 15px;
  line-height: 1.6;
}

/* Screenshots Showcase Gallery */
.gallery-section {
  padding-bottom: 90px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.gallery-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background: rgba(40, 26, 38, 0.8);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.gallery-card:hover {
  transform: translateY(-5px);
  border-color: rgba(245, 196, 81, 0.4);
}

.gallery-card.full-width {
  grid-column: span 2;
}

.gallery-card img {
  width: 100%;
  height: auto;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.gallery-info {
  padding: 22px 26px;
}

.gallery-info h3 {
  font-size: 20px;
  color: var(--gold);
  margin-bottom: 6px;
}

.gallery-info p {
  color: #dfd0d8;
  font-size: 14px;
}

/* How It Works & Shortcuts */
.workflow-section {
  padding-bottom: 90px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.step-card {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  text-align: center;
  position: relative;
}

.step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffe596, #f5c451);
  color: #3d261b;
  font-size: 20px;
  font-weight: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 14px var(--gold-glow);
}

.step-card h3 {
  font-size: 18px;
  color: var(--cream);
  margin-bottom: 8px;
}

.step-card p {
  color: #d6c5ce;
  font-size: 14px;
}

.shortcut-box {
  padding: 30px;
  border: 1px dashed rgba(245, 196, 81, 0.4);
  border-radius: 24px;
  background: rgba(245, 196, 81, 0.06);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.shortcut-box h3 {
  font-size: 22px;
  color: var(--gold);
}

.shortcut-keys {
  display: flex;
  gap: 8px;
  align-items: center;
}

.shortcut-keys kbd {
  padding: 8px 16px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-family: monospace;
  font-size: 16px;
  font-weight: 900;
  color: var(--gold);
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.4);
}

/* PRO Comparison Table */
.pro-section {
  padding-bottom: 90px;
}

.pro-card {
  border: 1px solid rgba(245, 196, 81, 0.3);
  border-radius: 32px;
  background: radial-gradient(circle at 50% 0, rgba(245, 196, 81, 0.15), transparent 60%),
              linear-gradient(150deg, rgba(91, 78, 111, 0.6), rgba(40, 26, 38, 0.9));
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.pro-header {
  text-align: center;
  margin-bottom: 35px;
}

.pro-header h2 {
  font-size: 36px;
  margin-top: 8px;
}

.pro-header p {
  color: #dfd0d8;
  font-size: 16px;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.comp-box {
  padding: 28px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.comp-box.pro {
  border-color: rgba(245, 196, 81, 0.4);
  background: rgba(245, 196, 81, 0.08);
}

.comp-box h3 {
  font-size: 22px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.comp-box ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.comp-box li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #e2d4dc;
}

.comp-box li span.icon {
  font-weight: bold;
}

.comp-box li span.check {
  color: #6edb8e;
}

.comp-box li span.star {
  color: var(--gold);
}

/* Privacy Callout */
.privacy-banner {
  padding: 36px 40px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 80px;
}

.privacy-banner h3 {
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 6px;
}

.privacy-banner p {
  color: #dfd0d8;
  font-size: 15px;
  max-width: 650px;
}

/* Footer */
footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0 45px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #bfaeb8;
  font-size: 13px;
}

footer a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

footer a:hover {
  color: var(--gold);
}

/* Media Queries */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 30px;
  }
  .visual {
    min-height: 420px;
  }
  .highlights-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-card.full-width {
    grid-column: span 1;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .comparison-grid {
    grid-template-columns: 1fr;
  }
  .privacy-banner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .highlights-strip {
    grid-template-columns: 1fr;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  nav {
    flex-direction: column;
    gap: 16px;
  }
}

