@font-face {
  font-family: 'Inter';
  src: url('./fonts/Inter-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('./fonts/Inter-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('./fonts/Inter-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Secondary Palette */
  --color-secondary-25: #f9f9f9;
  --color-secondary-50: #f2f2f2;
  --color-secondary-100: #e6e6e6;
  --color-secondary-200: #cccccc;
  --color-secondary-300: #b3b3b3;
  --color-secondary-400: #808080;
  --color-secondary-500: #2d2d2d;
  --color-secondary-600: #252525;
  --color-secondary-700: #1f1f1f;
  --color-secondary-800: #191919;
  --color-secondary-900: #121212;
  --color-secondary-950: #0a0a0a;

  /* Brand Palette */
  --color-brand-25: #fdfaf6;
  --color-brand-50: #fcf4ea;
  --color-brand-100: #f8ead7;
  --color-brand-200: #f4dbbc;
  --color-brand-300: #f2cfa4;
  --color-brand-400: #f0bc82;
  --color-brand-500: #f0d2b1;
  --color-brand-600: #d9b791;
  --color-brand-700: #b9976e;
  --color-brand-800: #977856;
  --color-brand-900: #7a5f44;
  --color-brand-950: #443422;

  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  background-color: var(--color-brand-200);
  /* Base background similar to inspiration but brand color */
  color: var(--color-secondary-950);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  transition: background-color 0.3s ease;
}

/* Typography */
h1 {
  font-size: clamp(5.5rem, 18vw, 12rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--color-secondary-950);
  margin-bottom: 1rem;
}

p {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--color-secondary-700);
}

a {
  color: var(--color-secondary-800);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

a:hover {
  opacity: 0.7;
}

/* Layout */
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
  /* Removed top/bottom padding to let header/footer control it */
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 100vh;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  padding-bottom: 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--color-brand-200);
}

.logo-image {
  height: 40px;
  width: auto;
  display: block;
}

/* Main Content */
.main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 4rem 0;
}

/* Page Content (Privacy/Terms) */
.page-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 2rem 8rem 2rem;
  /* Added bottom padding for footer clearance */
  color: var(--color-secondary-800);
  flex: 1;
  width: 100%;
}

.page-content h1 {
  font-size: 3rem;
  margin-bottom: 2rem;
  color: var(--color-secondary-950);
}

.page-content h2 {
  font-size: 2rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--color-secondary-900);
  border-bottom: 1px solid var(--color-secondary-200);
  padding-bottom: 0.5rem;
}

.page-content p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.page-content ul {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.page-content li {
  margin-bottom: 0.5rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-weight: 500;
  transition: transform 0.2s ease;
  font-size: 1.25rem;
}

.back-link:hover {
  transform: translateX(-5px);
  opacity: 1;
  /* Override default hover opacity */
  color: var(--color-brand-800);
}

.back-arrow {
  font-size: 1.5em;
  /* 1.5x the text size */
  line-height: 1;
}

.subtitle {
  font-size: 1.5rem;
  /* Increased from 1.25rem */
  font-weight: 500;
  margin-top: 1rem;
  opacity: 0.8;
}

.beta-text {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--color-secondary-800);
}

.login-text {
  margin-top: 0.5rem;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--color-secondary-800);
}

.header .login-text {
  margin-top: 0;
}

/* Vertical Text Elements (Inspired by image) */
.vertical-text-left {
  position: absolute;
  left: 2rem;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: left center;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  opacity: 0.6;
  display: none;
  /* Hidden on mobile */
}

@media (min-width: 768px) {
  .vertical-text-left {
    display: block;
  }
}

/* Footer */
.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1440px;
  background-color: var(--color-brand-200);
  z-index: 100;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer>.copyright {
  font-size: 0.875rem;
}

.legal-links a {
  text-transform: uppercase;
  font-size: 0.875rem;
  /* Standardized size */
  letter-spacing: 0.05em;
}

/* Decorative Circle (Inspired by image) */
.badge-circle {
  position: absolute;
  right: 10%;
  top: 15%;
  width: 120px;
  height: 120px;
  animation: rotate 20s linear infinite;
  pointer-events: none;
}

.badge-circle text {
  font-size: 12px;
  font-family: monospace;
  text-transform: uppercase;
  fill: var(--color-secondary-900);
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Utility Utilities */
.hidden {
  display: none;
}


.list-disc {
  list-style-position: inside;
  padding-left: 0;
}

.highlight-link {
  text-decoration: underline;
  font-weight: 700;
  color: var(--color-brand-800);
}