/* Reset & base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    font-family: system-ui, -apple-system, “Segoe UI”, Roboto, sans-serif;
}

body {
    color: #111;
    background: #fff;
    overflow-x: hidden;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem;
    background: #000;
    color: #fff;

    ul {
        list-style: none;
        display: flex;
        gap: 3rem;
        justify-content: flex-end;
        width: 100%;
    }

    a {
        color: #fff;
        text-decoration: none;
        font-weight: medium;
        font-size: 18px;
    }
}

footer {
    text-align: center;
    padding: 2rem;
    font-size: 0.9rem;
    color: #666;

    a {
        color: #000;
    }
}

/* Hero section */
.hero-section {
    position: relative;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #000;
    color: #fff;
}

.hero-section.integrity-page {
  padding-bottom: 100px;

    div {
        margin-top: 30px;
        display: flex;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

.hero-section h1 {
    font-size: 3rem;
    line-height: 1.2;
    max-width: 90%;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2rem;
}

.green {
    color: #4CAF50;
}

.hero-section p {
    font-size: 1.2rem;
    opacity: 0.8;
}

/* Features section */
section.features {
    padding: 4rem 2rem;
    background: #f7f7f7;
}

section.features .feature-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    max-width: 1200px;
    margin: 0 auto;
}

section.features .feature {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    text-align: left;
    opacity: 0;
}

section.features .feature.visible {
  opacity: 1;
  transition: 0.6s ease-in;
  transform: translateY(0);
}

section.features .feature h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

section.features .feature p {
    font-size: 1rem;
    line-height: 1.5;
    opacity: 0.8;
}


ul {
    list-style-type: none;
}

.bg-white {
    background-color: #fff;
    width: 100%;
    color: #000;
}

.pv-50 {
    padding-top: 50px;
    padding-bottom: 50px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 30px 0;
    color: #000;
}


#animated-title {
  font-size: 4rem;
  font-weight: bold;
  display: flex;
  justify-content: center;
  gap: 0.05em;
  cursor: default;
  perspective: 1000px; /* adds depth to 3D rotation */
}

#animated-title span {
  display: inline-block;
  transition: transform 0.2s ease, color 0.2s ease;
  font-family: 'Segoe UI', system-ui, sans-serif;
  color: #000;
}

#start-demo {
  margin: 2rem auto;
  display: block;
  padding: 0.8rem 1.5rem;
  font-size: 1.2rem;
  background-color: #2563eb;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

#start-demo:hover {
  background-color: #1e40af;
}


.demo-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.4);
}

.demo-btn {
  margin: 2rem auto;
  display: block;
  padding: 0.8rem 1.5rem;
  font-size: 1.2rem;
  background: linear-gradient(90deg, #2563eb, #34d399);
  color: #fff;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}

#demo-area {
  max-width: 750px;
  margin: 0 auto;
  padding: 2rem;
  background: linear-gradient(145deg, #1e293b, #111827);
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  color: #fff;
   opacity: 0;
}

#demo-area.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

#demo-area h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #34d399;
}

#demo-area h3 {
  font-size: 1.3rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: #2563eb;
  text-align: left;
}

#commands-section {
  position: relative;
  margin-top: 2.5rem;
  padding: 2rem;
  background: linear-gradient(145deg, #1e293b, #111827);
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  transition: all 0.3s ease-in-out;
}

#commands-section:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

#commands-section h3 {
  font-size: 1.6rem;
  color: #34d399;
  margin-bottom: 1.5rem;
  text-align: center;
  letter-spacing: 0.5px;
}

.commands-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.command {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.75rem 1rem;
  border-radius: 10px;
  transition: background 0.2s ease-in-out;
}

.command:hover {
  background: rgba(255, 255, 255, 0.1);
}

.cmd {
  flex: 1;
  color: #93c5fd;
  font-family: system-ui, -apple-system, “Segoe UI”, Roboto, sans-serif;
  text-shadow: 0 0 10px rgba(52, 211, 153, 0.3);
}

.desc {
  flex: 1.2;
  text-align: right;
  color: #e5e7eb;
  font-size: 0.95rem;
  font-weight: 400;
}

#demo-section {
  background:#000;
  position: relative;
  display: none;
  padding-bottom: 130px;
  transition: all 0.5s ease;
}

#demo-section.active {
  display: block;
}

#support-page {
background: #0f172a;
  color: #fff;
  font-family: 'Segoe UI', system-ui, sans-serif;
  margin: 0;
  line-height: 1.6;
  min-height: 100vh;
  padding-top: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#support-page section {
  max-width: 800px;
  padding: 1rem 1rem;
  width: 100%;
}

#support-page .hero {
  padding: 4rem 2rem;
  max-width: 700px;
}

#support-page .hero h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #34d399; /* accent lime */
  margin-bottom: 1rem;
}

#support-page .hero p {
  font-size: 1.2rem;
  color: #cbd5e1;
}

#support-page section h2 {
  font-size: 2rem;
  color: #2563eb; /* accent blue */
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #34d399;
  display: inline-block;
  padding-bottom: 0.3rem;
}

#support-page .faq-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem 1.5rem;
  margin-bottom: 1rem;
  border-radius: 12px;
  transition: background 0.2s ease;
}

#support-page .faq-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

#support-page .faq-item h3 {
  margin: 0 0 0.5rem 0;
  color: #93c5fd;
}

#support-page .contact p a {
  color: #34d399;
  color: #fff;
}

#support-page .contact p a:hover {
  text-decoration: underline;
}

#support-page .contact {
}