/*!*************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[13].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[13].oneOf[12].use[3]!./app/globals.css ***!
  \*************************************************************************************************************************************************************************************************************************************************************/
:root {
  --bg-color: #050505; /* Deep Black */
  --text-primary: #ffffff; /* White */
  --text-secondary: #999999; /* Gray */
  --accent-color: #ffffff; /* White buttons */
  --accent-hover: #d4d4d4; /* Off-white */
  --card-bg: rgba(20, 20, 20, 0.8); /* Dark Gray / Glass */
  --card-border: rgba(255, 255, 255, 0.2);
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-family);
  background-color: var(--bg-color);
  color: var(--text-primary);
  min-height: 100vh;
  line-height: 1.6;
  background-image: 
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 100px 100px;
}

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

/* Typography */
h1, h2, h3 {
  margin-top: 0;
  font-weight: 800;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

h1 {
  font-size: 4rem;
  color: #fff;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 3rem;
  text-align: center;
}

/* Badge Layout */
.badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border: 1px solid var(--text-secondary);
  border-radius: 9999px;
  font-size: 0.9rem;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 2rem;
  color: var(--text-secondary);
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 5rem 0;
  animation: fadeIn 1s ease-out forwards;
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto 3rem auto;
}

.actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: 0; /* Boxy modern shape */
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: 2px solid transparent;
  font-size: 0.9rem;
}

.btn-primary {
  background-color: var(--accent-color);
  color: #000;
  box-shadow: 0 4px 14px 0 rgba(255, 255, 255, 0.15);
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.25);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-primary);
  border-color: var(--text-secondary);
}

.btn-secondary:hover {
  background-color: #fff;
  color: #000;
}

/* Cards / Glassmorphism */
.architecture-section {
  padding: 4rem 0;
}

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

.card {
  background: var(--card-bg);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid var(--card-border);
  padding: 2.5rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-5px);
  border-color: #fff;
}

.card-icon {
  font-size: 4rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.05);
  position: absolute;
  top: -10px;
  right: 15px;
  pointer-events: none;
}

.card h3 {
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.card p {
  color: var(--text-secondary);
  font-size: 1rem;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Flowchart Styles */
.flowchart {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-top: 3rem;
}

.flow-step {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  padding: 2rem;
  width: 100%;
  max-width: 600px;
  text-align: center;
  border-radius: 1rem;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  position: relative;
  transition: all 0.3s;
}

.flow-step:hover {
  transform: scale(1.02);
  border-color: rgba(255, 255, 255, 0.4);
}

.flow-step .icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.flow-arrow {
  font-size: 2rem;
  opacity: 0.5;
  animation: bounce 2s infinite;
}

.highlight-step {
  border-color: #10b981;
  background: rgba(16, 185, 129, 0.1);
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
}

.highlight-step:hover {
  border-color: #10b981;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

/* Glass Footer */
.glass-footer {
  margin-top: 5rem;
  padding: 3rem 2rem;
  background: rgba(20, 20, 20, 0.6);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  border-top: 1px solid var(--card-border);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

.footer-brand {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 1px;
}

.footer-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  max-width: 500px;
}

.footer-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 9999px;
  transition: all 0.2s;
  font-size: 0.9rem;
}

.footer-link:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.85rem;
  color: #666;
}

