
@font-face {
    font-family: 'CollaxBold';
    src: url('Chillax-Bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

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

:root {
  --kool-bean: 'KoolBean', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --chillax-bold: 'CollaxBold', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --primary: #2563eb;
  --primary-dark: #1e40af;
  --primary-text: white;
  --secondary: #0ea5e9;
  --accent: #06b6d4;
  --success: #10b981;
  --background: #ffffff;
  --surface: #f8fafc;
  --nav-text:white;
  --nav-cta:#2b6eabeb;
  --nav-cta-hover:#2b6dab;
  --text: #060607;
  --text-muted: #64748b;
  --border: #e2e8f0;
  --shadow: rgba(0, 0, 0, 0.1);
  --gradient: linear-gradient(53deg, #7dc1ec, #2b6eabeb, #2e0063c9);
}

genuine-form {
    display: flex;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--background);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container{
    top: 0;
    position: relative;
    transition: all .3s ease-out;
    height: 100%;
  }

  .container.hidden{
    top: 100dvh;
    opacity: 0;
    
    
  }


/* Header */
header {
  position: relative;
  top: 0;
  backdrop-filter: blur(10px);
  z-index: 100;
  padding: 1rem 0;
  height: 4rem;
      width: 100dvw;
    overflow: hidden;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: var(--nav-text);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  display: flex;
  align-items: center;
}

.nav-links a.github-repo img {
    width: 30px;
}

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

.navbar-brand {
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--chillax-bold);
    color: var(--nav-text);
    text-decoration: none;
    padding: 0rem 1rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
}

.navbar-brand svg {
    width: 70px;
    height: auto;
}

@media screen and (max-width:690px) {
  .container {
    padding: 0 1rem;
  }
  .navbar-brand svg {
    display: none;
  }
}

@media screen and (max-width:600px) {
  nav .nav-cta {
    display: none;
  }
}

@media screen and (max-width:435px) {
  
  .navbar-brand {
    padding: 0 1rem 0 0;
    font-size: 1.7rem;
  }
}

.credits-display {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #5298ca 0%, #764ba2 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
  }
  
  .credits-icon {
    font-size: 1.2rem;
  }

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.nav-cta, a.nav-cta {
      background: var(--nav-text);
    color: var(--nav-cta);
    box-shadow: 0 4px 6px var(--shadow);
    padding: 0.3rem 1rem;
    border-radius: 1rem;
}

.nav-cta:hover, a.nav-cta:hover {
  color: var(--nav-cta-hover);
  opacity: 0.9;
}

.btn-primary, a.btn-primary {
    background: var(--gradient);
    color: var(--primary-text);
    box-shadow: 0 4px 6px var(--shadow);
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px var(--shadow);
}

.btn-secondary {
  background: white;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: white;
}

/* Hero Section */
.hero {
  background: var(--gradient);
  color: white;
  padding: 8rem 0 8rem;
  position: relative;
  overflow: hidden;
  top: -4rem;
}

@media screen and (orientation: landscape) {
  .hero {
    padding: 25dvh 0 8rem;
  }
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><rect width="60" height="60" fill="none"/><circle cx="30" cy="30" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  line-height: 1.8;
}

.cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.trust-signals {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  opacity: 0.9;
}

.trust-item svg {
  width: 20px;
  height: 20px;
}

/* Features Section */
.features {
  padding: 6rem 0;
  background: var(--surface);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text);
}

.section-header p {
  font-size: 1.125rem;
  color: var(--text-muted);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 2px 8px var(--shadow);
  transition: all 0.3s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px var(--shadow);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-dark);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  color: white;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.feature-card p {
  color: var(--text-muted);
  line-height: 1.7;
}

/* How It Works */
.how-it-works {
  padding: 6rem 0;
  background: white;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.step h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.step p {
  color: var(--text-muted);
  line-height: 1.7;
}

/* Pricing Section */
.pricing {
  padding: 6rem 0;
  background: var(--surface);
}

.pricing-card {
  max-width: 500px;
  margin: 3rem auto 0;
  background: white;
  border-radius: 1.5rem;
  padding: 3rem;
  box-shadow: 0 8px 24px var(--shadow);
  border: 3px solid var(--primary);
  position: relative;
}

.popular-badge {
  position: absolute;
    top: -2.5rem;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border: 3px solid var(--primary);
    color: var(--primary);
    line-height: 4rem;
    padding: 0rem 1.5rem;
    border-radius: 2rem;
    font-weight: 500;
    font-size: 1.5rem;
}

.pricing-header {
  text-align: center;
  margin-bottom: 2rem;
}

.pricing-header h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.price-subtext {
  color: var(--text-muted);
  font-size: 1rem;
}

.pricing-features {
  list-style: none;
  margin: 2rem 0;
}

.pricing-features li {
  padding: 0.75rem 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
}

.pricing-features svg {
  width: 20px;
  height: 20px;
  color: var(--success);
  flex-shrink: 0;
}

.pricing-cta {
  text-align: center;
  margin-top: 2rem;
}

.pricing-note {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Community Section */
.community {
  padding: 6rem 0;
  background: white;
  text-align: center;
}

.community-content {
  max-width: 700px;
  margin: 0 auto;
}

.community h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.community p {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.community-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.community-benefit {
  padding: 1.5rem;
}

.community-benefit h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.community-benefit p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Use Cases */
.use-cases {
  padding: 6rem 0;
  background: var(--surface);
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.use-case {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 2px 8px var(--shadow);
}

.use-case h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.use-case p {
  color: var(--text-muted);
  line-height: 1.7;
}

/* CTA Section */
.cta-section {
  padding: 6rem 0;
  background: var(--gradient);
  color: white;
  text-align: center;
}

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.btn-white {
  background: white;
  color: var(--primary);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
  background: var(--text);
  color: white;
  padding: 3rem 0 1.5rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: white;
  border-radius: 1rem;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  padding: 2rem;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-muted);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  transition: all 0.3s;
}

.modal-close:hover {
  background: var(--surface);
  color: var(--text);
}

.modal-content h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.modal-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.modal-content p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* Register Page Styles */
.register-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1000px;
  margin: 0 auto;
  align-items: start;
}

.register-card {
  background: white;
  padding: 3rem;
  border-radius: 1.5rem;
  border: 2px solid var(--border);
}

.register-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}

.form-group label {
  font-weight: 600;
  color: var(--text);
  font-size: 0.875rem;
}

.form-group input,.form-group textarea {
  padding: 0.875rem 1rem;
  border: 2px solid var(--border);
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: all 0.3s;
  font-family: inherit;
  width: 100%;
}

.form-group input:required:invalid,.form-group textarea:required:invalid{
      border-bottom: 3px solid red;
}

.form-group input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group button[type="submit"] {
    padding: 0.5rem 2rem;
    border-radius: 0.5rem;
    border: 1px solid #3b82f6;
    color: white;
    background: #3b82f6;
    margin: 0.5rem;
    font-size: medium;
    cursor: pointer;
}

.form-group button[type="submit"]:hover {
  background: #2768d2;
}

.register-note {
  text-align: center;
  margin-top: 1.5rem;
  color: var(--text-muted);
  font-size: 0.875rem;
}

.register-note a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.register-note a:hover {
  text-decoration: underline;
}

.register-benefits h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.benefits-list li {
  display: flex;
  gap: 1rem;
  align-items: start;
}

.benefits-list svg {
  width: 24px;
  height: 24px;
  color: var(--success);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.benefits-list strong {
  display: block;
  color: var(--text);
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.benefits-list p {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
}

/* Responsive */
@media (max-width: 968px) {
  .register-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .register-card {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.125rem;
  }

  .nav-links {
    gap: 1rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .cta-group {
    flex-direction: column;
  }

  .trust-signals {
    flex-direction: column;
    gap: 1rem;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

.flip-card {
  position: relative;
  perspective: 500px;
}

.flip-card .content {
  position: relative;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);

  transition: transform 1.5s;
  transform-style: preserve-3d;
  padding: 1rem;
    border-radius: 1rem;
}

.flip-card.flipped .content {
  transform: rotateY( 180deg ) ;
  transition: transform 0.5s;
}

.flip-card .front,
.flip-card .back {
  position: relative;
  background: white;
  border-radius: 1rem;
  backface-visibility: hidden;
  padding: 1rem;
  margin: 1rem;
  height: calc(100% - 4rem);
}

.flip-card .back {
  transform: rotateY( 180deg );
  display: flex;
  align-items: center;
  flex-direction: column;
  top: 1rem;
  position: absolute;
  gap: 1rem;
  width: calc(100% - 4rem);
  justify-content: center;
}

/* App Dashboard Styles */

.app section {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .app section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
  }

  .app .section-title .api-key {
    font-size: medium;
    padding: 0.5rem 4rem 0.5rem 1rem;
    line-height: 1rem;
    background-color: aliceblue;
    width: 100%;
    display: inline-block;
    position: relative;
    border: 1px solid #cad7e3;
    border-radius: 0.5rem;
    color: #0067c2;
    vertical-align: middle;
    overflow-wrap: anywhere;
    line-height: 1.2rem;
  }
  
  .app .section-title .api-key .copy {
    position: absolute;
    right: 1rem;
    color: white;
    background-color: black;
    padding: 0.3rem;
    top: 0.2rem;
    border-radius: 0.5rem;
    font-size: small;
    cursor: pointer;
    box-shadow: 2px 2px 4px #8080806b;
}

.app section p {
  color: #6b7280;
  margin-bottom: 1.5rem;
}

pre{
  position: relative;
}

pre .copy
{
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  color: white;
  background-color: black;
  padding: 0.3rem;
  border-radius: 0.5rem;
  font-size: small;
  cursor: pointer;
  box-shadow: 2px 2px 4px #8080806b;
}