:root {
  --bg: #000000;
  --panel: #0b0b0b;
  --panel-2: #101010;
  --text: #f5f7fb;
  --muted: #a1a7b3;
  --line: #1f1f23;
  --green: #56f06d;
  --green-2: #1db954;
  --shadow: 0 0 0 1px rgba(86, 240, 109, 0.08), 0 18px 60px rgba(0, 0, 0, 0.45);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(43, 255, 99, 0.08), transparent 22%),
    radial-gradient(circle at bottom left, rgba(43, 255, 99, 0.05), transparent 16%),
    #000;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }

.container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.88);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.nav-wrap {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand img {
  width: 180px;
  height: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #e8e8ea;
}

.nav-links a:not(.btn) {
  opacity: 0.88;
}

.nav-links a.active,
.nav-links a:hover:not(.btn) {
  color: white;
}

.menu-btn {
  display: none;
  border: 1px solid var(--line);
  background: #0d0d0d;
  color: white;
  border-radius: 12px;
  padding: 10px 12px;
}

.mobile-menu {
  display: none;
  padding: 0 16px 16px;
  border-top: 1px solid rgba(255,255,255,0.04);
  background: #050505;
}

.mobile-menu.open { display: grid; gap: 12px; }
.mobile-menu a { padding: 8px 4px; }

.hero {
  padding: 76px 0 32px;
}

.hero-grid,
.split-page,
.contact-layout,
.getapp-layout,
.dashboard-layout {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 34px;
  align-items: center;
}

.hero-copy h1,
.page-title {
  font-size: clamp(2.3rem, 5vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin: 0 0 18px;
}

.page-title.small { font-size: clamp(2rem, 4vw, 3rem); }
.hero-copy p,
.page-subtext,
.section-head p,
.prose p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.06rem;
}

.hero-actions,
.tabs-switcher,
.footer-links,
.dashboard-stats {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.eyebrow {
  display: inline-block;
  color: var(--green);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 14px;
  font-weight: 700;
  transition: 0.25s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-sm { min-height: 44px; padding: 0 18px; }
.btn-full { width: 100%; }

.btn-primary {
  background: linear-gradient(180deg, #69ff82 0%, #2fd85d 100%);
  color: #021006;
  box-shadow: 0 0 0 1px rgba(86, 240, 109, 0.16), 0 0 28px rgba(86, 240, 109, 0.18);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(86, 240, 109, 0.22), 0 8px 34px rgba(86, 240, 109, 0.24);
}

.btn-secondary {
  background: rgba(255,255,255,0.02);
  border-color: #2a2a2f;
  color: white;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.05);
  border-color: #3a3a42;
}

.hero-panel,
.about-panel {
  display: flex;
  justify-content: center;
}

.dashboard-card,
.card,
.tool-item {
  background: linear-gradient(180deg, rgba(18,18,18,0.96) 0%, rgba(10,10,10,0.98) 100%);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.dashboard-card {
  width: 100%;
  padding: 24px;
}

.dashboard-top {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid #29292d;
  color: #d4d7de;
  background: #101012;
  font-size: 0.9rem;
}

.pill-green {
  color: #08110b;
  background: linear-gradient(180deg, #6bff84 0%, #38da64 100%);
  border-color: transparent;
}

.dashboard-screen {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.mini-card {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(86, 240, 109, 0.08);
}

.mini-card h4,
.card h3 { margin: 0 0 8px; }
.mini-card p,
.card p,
.form-note { color: var(--muted); margin: 0; line-height: 1.65; }

.section {
  padding: 64px 0;
}

.section-tight { padding-top: 28px; }
.section-head { margin-bottom: 28px; }
.section-head.center { text-align: center; }
.section-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin: 0 0 10px;
  letter-spacing: -0.03em;
}

.cards {
  display: grid;
  gap: 22px;
}
.cards-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cards-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.card {
  padding: 28px;
}

.feature-card,
.step-card,
.detail-card,
.dashboard-box,
.pricing-card,
.contact-card,
.contact-side,
.story-card,
.tabs-card {
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.feature-card:hover,
.step-card:hover,
.tool-item:hover,
.detail-card:hover,
.dashboard-box:hover,
.contact-side:hover,
.story-card:hover,
.tabs-card:hover,
.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(86, 240, 109, 0.18);
}

.icon-chip,
.step-number {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: rgba(86, 240, 109, 0.1);
  border: 1px solid rgba(86, 240, 109, 0.16);
  color: var(--green);
  font-weight: 800;
}

.tool-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.tool-item {
  padding: 20px 18px;
  text-align: center;
  color: #e8eaef;
}

.promo-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(15,15,15,0.96) 0%, rgba(8,8,8,1) 100%);
}

.prose { max-width: 760px; }
.check-list,
.feature-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.check-list li,
.feature-list li {
  position: relative;
  padding-left: 28px;
  color: #dadddf;
  line-height: 1.6;
}

.check-list li::before,
.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green);
  font-weight: 800;
}

.form-stack {
  display: grid;
  gap: 16px;
}

.form-stack label {
  display: grid;
  gap: 8px;
}

.form-stack span {
  color: #d9dde5;
  font-size: 0.95rem;
}

input,
textarea,
select {
  width: 100%;
  border-radius: 14px;
  border: 1px solid #2a2a2f;
  background: #0b0b0d;
  color: white;
  padding: 15px 16px;
  outline: none;
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(86, 240, 109, 0.42);
  box-shadow: 0 0 0 4px rgba(86, 240, 109, 0.08);
}

.tabs-switcher {
  margin-bottom: 18px;
  background: #090909;
  border: 1px solid #202024;
  padding: 8px;
  border-radius: 16px;
}

.tab-btn {
  flex: 1;
  min-height: 46px;
  border-radius: 12px;
  border: none;
  background: transparent;
  color: #ccd0d9;
  font-weight: 700;
  cursor: pointer;
}

.tab-btn.active {
  background: linear-gradient(180deg, rgba(86, 240, 109, 0.18), rgba(86, 240, 109, 0.08));
  color: white;
}

.tab-panel { display: none; }
.tab-panel.active { display: block; }

.price-tag {
  font-size: 2.2rem;
  font-weight: 800;
  margin: 8px 0 18px;
}

.price-tag span {
  display: block;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
  margin-top: 6px;
}

.dashboard-layout {
  grid-template-columns: 1.2fr 0.8fr;
  align-items: start;
}

.dashboard-box.wide {
  grid-column: 1 / -1;
}

.stat-box {
  min-width: 180px;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.05);
  background: rgba(255,255,255,0.02);
}

.stat-box span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.license-box {
  margin: 12px 0 16px;
  padding: 16px;
  border-radius: 16px;
  background: #0b0b0d;
  border: 1px dashed rgba(86, 240, 109, 0.25);
  color: var(--green);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
}

.site-footer {
  border-top: 1px solid rgba(255,255,255,0.05);
  margin-top: 42px;
  background: rgba(0, 0, 0, 0.82);
}

.footer-wrap {
  padding: 28px 0 38px;
  display: grid;
  justify-items: center;
  gap: 14px;
  text-align: center;
}

.footer-brand img { width: 160px; }
.footer-links { color: #d8dbe2; }
.footer-wrap p { color: #8e96a4; margin: 0; }

@media (max-width: 980px) {
  .hero-grid,
  .split-page,
  .contact-layout,
  .getapp-layout,
  .dashboard-layout,
  .cards-3,
  .cards-2,
  .tool-grid {
    grid-template-columns: 1fr;
  }

  .promo-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links { display: none; }
  .menu-btn { display: inline-flex; }
  .hero { padding-top: 46px; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 24px, 1160px); }
  .brand img { width: 146px; }
  .hero-copy h1,
  .page-title { font-size: 2.25rem; }
  .card,
  .dashboard-card { padding: 20px; }
  .dashboard-screen { grid-template-columns: 1fr; }
  .tool-grid { gap: 12px; }
}
/* FUTURISTIC HERO */

.futuristic-hero{
background:
radial-gradient(circle at 80% 20%,rgba(34,197,94,.2),transparent 30%),
radial-gradient(circle at 20% 10%,rgba(59,130,246,.1),transparent 30%),
#000;
padding:120px 0;
}

.futuristic-title{
font-size:56px;
line-height:1.1;
font-weight:700;
}

.futuristic-title span{
color:#22c55e;
text-shadow:0 0 20px rgba(34,197,94,.6);
}

.hero-text{
color:#aaa;
font-size:18px;
margin-top:20px;
max-width:520px;
}

.glow-chip{
border:1px solid rgba(34,197,94,.3);
background:rgba(34,197,94,.1);
padding:6px 12px;
border-radius:999px;
}

.glow-btn:hover{
box-shadow:0 0 25px rgba(34,197,94,.7);
}

.futuristic-panel{
position:relative;
}

.futuristic-panel::before{
content:"";
position:absolute;
width:320px;
height:320px;
background:rgba(34,197,94,.25);
filter:blur(120px);
top:-80px;
right:-40px;
z-index:-1;
}


.dashboard-screen{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:12px;
margin-top:20px;
}

.glow-card{
background:#0a0a0a;
border:1px solid rgba(255,255,255,.08);
border-radius:14px;
padding:16px;
transition:.3s;
}

.glow-card:hover{
transform:translateY(-4px);
box-shadow:0 0 25px rgba(34,197,94,.4);
border-color:#22c55e;
}
.futuristic-hero{
position:relative;
overflow:hidden;
background:
radial-gradient(circle at 70% 20%,rgba(86,240,109,.25),transparent 35%),
radial-gradient(circle at 20% 80%,rgba(86,240,109,.15),transparent 40%),
#000;
}
.glow-chip{
position:relative;
z-index:2;
}

.glow-chip::before{
content:"";
position:absolute;
inset:-8px -14px;
background:rgba(86,240,109,.15);
filter:blur(16px);
z-index:-1;
border-radius:999px;
}
.hero-icons{
display:flex;
gap:16px;
margin-top:26px;
}

.icon-float{
width:48px;
height:48px;
border-radius:14px;
display:flex;
align-items:center;
justify-content:center;
background:rgba(255,255,255,.02);
border:1px solid rgba(86,240,109,.18);
color:var(--green);
animation:floatIcon 5s ease-in-out infinite;
}

.icon-float:nth-child(2){animation-delay:.5s}
.icon-float:nth-child(3){animation-delay:1s}
.icon-float:nth-child(4){animation-delay:1.5s}

.icon-float i{
width:22px;
height:22px;
}

.icon-float:hover{
transform:translateY(-4px);
box-shadow:0 0 18px rgba(86,240,109,.45);
}

@keyframes floatIcon{
0%{transform:translateY(0)}
50%{transform:translateY(-8px)}
100%{transform:translateY(0)}
}