:root {
  --primary: #FAC487;
  --primary-dark: #673101;
  --secondary: #8D3D01;
  --text: #2D1300;
  --background: #fdfcfb;
  --glass: rgba(255, 255, 255, 0.4);
  --glass-border: rgba(103, 49, 1, 0.1);
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background-color: var(--background);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* Glassmorphism Background Blobs */
.bg-blobs {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  overflow: hidden;
  filter: blur(80px);
}

.blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.4;
  animation: float 20s infinite alternate;
}

.blob-1 {
  width: 500px;
  height: 500px;
  background: #FAC487;
  top: -100px;
  right: -100px;
}

.blob-2 {
  width: 400px;
  height: 400px;
  background: #F7AA21;
  bottom: -50px;
  left: -100px;
  animation-duration: 25s;
}

.blob-3 {
  width: 300px;
  height: 300px;
  background: #8D3D01;
  top: 40%;
  left: 20%;
  opacity: 0.2;
  animation-duration: 30s;
}

@keyframes float {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(50px, 100px) scale(1.1); }
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}

header {
  height: 80px;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary-dark);
  text-decoration: none;
  letter-spacing: -0.8px;
}

nav a {
  margin-left: 32px;
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  opacity: 0.7;
}

nav a:hover {
  color: var(--primary-dark);
  opacity: 1;
}

main {
  padding: 80px 0;
}

h1 {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 24px;
  color: var(--primary-dark);
  letter-spacing: -1.5px;
  line-height: 1.1;
}

.hero {
  text-align: center;
  margin-bottom: 100px;
}

.hero p {
  font-size: 1.4rem;
  color: #5D4037;
  max-width: 700px;
  margin: 0 auto 40px;
  opacity: 0.9;
}

.btn {
  display: inline-block;
  background: var(--primary-dark);
  color: white;
  padding: 16px 36px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 10px 20px rgba(103, 49, 1, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(103, 49, 1, 0.3);
  background: #502601;
}

.card {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 48px;
  border-radius: 32px;
  border: 1px solid var(--glass-border);
  box-shadow: 0 8px 32px rgba(103, 49, 1, 0.03);
  margin-bottom: 40px;
}

.card h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--primary-dark);
  letter-spacing: -0.5px;
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 80px;
}

.workflow {
  margin-bottom: 120px;
}

.workflow h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: var(--primary-dark);
}

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

.step-card {
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 40px;
  border-radius: 24px;
  border: 1px solid var(--glass-border);
  text-align: center;
  position: relative;
  transition: transform 0.3s ease;
}

.step-card:hover {
  transform: translateY(-8px);
}

.step-number {
  width: 48px;
  height: 48px;
  background: var(--primary-dark);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  margin: 0 auto 24px;
}

.step-card h3 {
  margin-bottom: 16px;
  color: var(--primary-dark);
}

.feature-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 120px;
}

.feature-content h2 {
  font-size: 2.8rem;
  margin-bottom: 24px;
  color: var(--primary-dark);
  line-height: 1.1;
}

.feature-content p {
  font-size: 1.2rem;
  margin-bottom: 32px;
  opacity: 0.9;
}

.privacy-highlight {
  background: rgba(103, 49, 1, 0.05);
  padding: 40px;
  border-radius: 32px;
  border: 2px dashed var(--primary-dark);
  text-align: center;
  margin-top: 80px;
}

.privacy-highlight h2 {
  color: var(--primary-dark);
  margin-bottom: 16px;
}

.privacy-highlight p {
  font-size: 1.3rem;
  font-weight: 600;
  max-width: 800px;
  margin: 0 auto;
}

footer {
  text-align: center;
  padding: 60px 0;
  color: #8D6E63;
  font-size: 1rem;
  opacity: 0.8;
}

.prose h3 { margin-top: 32px; margin-bottom: 16px; font-size: 1.4rem; color: var(--primary-dark); }
.prose p { margin-bottom: 20px; font-size: 1.1rem; }
.prose ul { margin-bottom: 24px; padding-left: 24px; }
.prose li { margin-bottom: 12px; font-size: 1.1rem; }
.prose strong { color: var(--primary-dark); }

@media (max-width: 900px) {
  .workflow-grid { grid-template-columns: 1fr; }
  .feature-section { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  h1 { font-size: 2.8rem; }
  .grid { grid-template-columns: 1fr; }
  header { height: 70px; }
  nav a { margin-left: 20px; font-size: 0.9rem; }
  .hero p { font-size: 1.2rem; }
}

@media (max-width: 480px) {
  header { height: auto; padding: 16px 0; }
  .header-container { flex-direction: column; justify-content: center; gap: 12px; }
  nav { display: flex; gap: 16px; justify-content: center; width: 100%; }
  nav a { margin-left: 0; }
}
