@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&family=Inter:wght@400;500;600&display=swap');

@font-face {
  font-family: 'Zenitha Classic';
  src: url('/Atlas/fonts/ZenithaClassic_PERSONAL_USE_ONLY.otf') format('opentype');
}

@font-face {
  font-family: 'Gothic Century';
  src: url('/Atlas/fonts/centurygothic.ttf') format('truetype');
}

:root {
  --bg: radial-gradient(circle at 30% 20%, rgba(30, 58, 138, 0.10), transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(30, 58, 138, 0.06), transparent 60%),
    radial-gradient(circle at 50% 80%, rgba(30, 58, 138, 0.04), transparent 65%), #0f1011;
  --bg-soft: #17181a;
  --surface: #1a1a1c;
  --text: #f5f3ee;
  --muted: rgba(245, 243, 238, 0.58);
  --line: rgba(255, 255, 255, 0.08);
  --line-soft: rgba(255, 255, 255, 0.05);
  --accent: #3b82ff;
  --accent-muted: rgba(92, 138, 254, 0.18);
  --glow-blue: rgba(59, 130, 246, 0.18);
  --glow-soft: rgba(59, 130, 246, 0.08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background:
    var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  min-height: 100vh;
  overflow-x: hidden;
}

  spline-viewer {
    width: 100%;
    height: 100vh;
    display: block;
  }

/* ── NAV ── */
.atlas-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
}

.atlas-nav a {
  position: relative;
  color: var(--muted);
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  font-family: 'Gothic Century', serif;
  transition: color 0.2s;
}

.atlas-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--text);
  transition: width 0.25s ease;
}

.atlas-nav a:hover {
  color: var(--text);
}

.atlas-nav a:hover::after {
  width: 100%;
}

/* ── BUTTONS ── */
.atlas-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

.btn {
  height: 42px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  font-family: 'space mono', monospace;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-outline {
  border: 1px solid var(--line);
  color: var(--muted);
  background: transparent;
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.btn-primary {
  background: var(--accent);
  border: 1px solid var(--accent);
  color: var(--text);
}

.btn-primary:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #131415;
  transform: translateY(-1px);
}

/* ── HERO WRAPPER ── */
.atlas-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 0 0 80px;
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(9, 13, 20, 0.58);
  z-index: 2;
}

.atlas-header,
.atlas-hero-content {
  position: relative;
  z-index: 3;
}


.atlas-hero-content {
  min-height: calc(100vh - 100px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 20px 40px;
}

.atlas-hero-content h1,
.atlas-hero-content .hero-text,
.atlas-cta {
  position: relative;
  z-index: 3;
}

.atlas-hero-content h1 {
  font-family: 'Zenitha Classic', serif;
  font-size: clamp(52px, 8vw, 82px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: 1px;
  margin-bottom: 0;
  background-image: linear-gradient(160deg, #ffffff 30%, #4a4a4a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.atlas-hero-content p {
  font-family: 'Gothic Century', serif;
  max-width: 520px;
  margin: 1.5rem auto 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.8;
}

.atlas-hero-content p strong {
  color: var(--text);
  font-weight: 400;
}

.hero-mini-chat {
  width: min(760px, 100%);
  margin: 34px auto 28px;
  padding: 14px;
  border-radius: 24px;
  background: rgba(19, 24, 33, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

.mini-chat-header {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.mini-chat-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(91, 124, 255, 0.14);
  color: #9cb3ff;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.mini-chat-conversation {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 14px;
}

.chat-row {
  display: flex;
}

.user-row {
  justify-content: flex-end;
}

.ai-row {
  justify-content: flex-start;
}

.chat-bubble {
  max-width: 78%;
  padding: 14px 16px;
  border-radius: 18px;
  text-align: left;
}

.chat-label {
  display: block;
  font-size: 0.72rem;
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  opacity: 0.8;
}

.user-bubble .chat-label {
  color: #fff;
}

.ai-bubble .chat-label {
  color: var(--text);
}

.chat-bubble p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.65;
}

.user-bubble {
  background: var(--accent);
  color: #ffffff;
  border-bottom-right-radius: 6px;
}

.ai-bubble {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom-left-radius: 6px;
}

.mini-chat-input-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 62px;
  padding: 10px 10px 10px 16px;
  border-radius: 18px;
  background: rgba(10, 14, 22, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.mini-chat-input-wrap i {
  color: var(--muted);
  font-size: 1rem;
  flex-shrink: 0;
}

.mini-chat-input-wrap input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  color: var(--text);
  font-size: 0.96rem;
  font-family: 'Space Mono', monospace;
}

.mini-chat-input-wrap input::placeholder {
  color: #6f7890;
}

.mini-chat-input-wrap button {
  border: none;
  padding: 12px 18px;
  border-radius: 14px;
  background: var(--accent);
  color: var(--text);
  font-size: 0.92rem;
  font-family: 'Space Mono', monospace;
  font-weight: 600;
  transition: 0.25s ease;
}

.mini-chat-input-wrap button:hover {
  background: var(--accent-muted);
}

/* ── HEADER ── */
.atlas-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  width: 100%;
  background: rgba(19, 20, 21, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  min-height: 80px;
  display: flex;
  align-items: center;
}

.atlas-header-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.atlas-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.atlas-logo img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: block;
  opacity: 0.9;
  transition: opacity 0.2s;
}

.atlas-logo img:hover {
  opacity: 1;
}

/* ── HERO CONTENT ── */
.atlas-hero-content {
  max-width: 980px;
  margin: 0 auto;
  padding: 9rem 24px 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Badge — adiciona <div class="atlas-badge"><span class="atlas-badge-dot"></span> Guia inteligente de viagem</div> no teu HTML antes do h1 */
.atlas-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 11.5px;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.02em;
  margin-bottom: 2rem;
  opacity: 0;
  animation: rise 0.6s ease 0.1s forwards;
}

.atlas-badge-dot {
  width: 5px;
  height: 5px;
  background: #4ade80;
  border-radius: 50%;
  display: inline-block;
}

/* ── CTA ── */
.atlas-cta {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── SECTION ── */
.atlas-about {
  font-family: 'Gothic Century', serif;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* ── LEFT ── */
.about-left {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 36px;
}

.section-label-icon {
  color: var(--accent);
  font-size: 13px;
  opacity: 0.85;
}

.section-label p {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0;
}

.section-label::after {
  content: '';
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(to right, rgba(47, 107, 255, 0.5), transparent);
}

.country-card-btn p {
  margin: 0;
}

.about-heading {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 32px;
}

.about-body {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.about-body p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
}

.about-body p strong {
  color: var(--text);
  font-weight: 500;
}

.btn-secondary {
  display: inline-block;
  width: 31%;
  margin-top: 32px;
  padding: 12px 24px;
  border: 1px solid rgba(59, 130, 246, 0.5);
  border-radius: 8px;
  color: #3b82f6;
  font-size: 16px;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s ease;
}

.btn-secondary:hover {
  background: rgba(59, 130, 246, 0.1);
}

/* ── RIGHT — CARDS ── */
.about-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 8px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  position: relative;
  padding: 24px 26px;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
  cursor: default;
}

.feature-card:hover {
  border-color: var(--text);
  transform: translateY(-2px);
}

.feature-card:hover::before {
  opacity: 1.4;
}

.card-inner {
  position: relative;
  z-index: 1;
}

.card-icon {
  background: rgba(59, 130, 246, 0.15);
  border-radius: 8px;
  padding: 8px;
  color: #3b82f6;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  margin-bottom: 14px;
}

.card-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.card-desc {
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--muted);
  font-weight: 300;
}

.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right,
      transparent,
      rgba(255, 255, 255, 0.08),
      transparent);
  margin: 0 auto;
}

.how-it-works {
  font-family: 'Gothic Century', serif;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 60px;
}

.step-card {
  padding-top: 20px;
}

.step-line {
  display: block;
  width: 42px;
  height: 1px;
  background: var(--accent);
  margin-bottom: 28px;
}

.step-number {
  display: block;
  font-family: 'Space Mono', monospace;
  color: var(--muted);
  font-size: clamp(4rem, 5vw, 5.3rem);
  line-height: 1;
  font-weight: 700;
  margin-bottom: 12px;
  cursor: default;
  transition: all 0.2s ease;
}

.step-number:hover {
  color: var(--accent-muted);
}

.step-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.step-card p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 320px;
}

.topics {
  font-family: 'Gothic Century', serif;
  max-width: 1200px;
  margin: 0 auto;
  padding: 150px 28px;
}

.country-card-btn {
  width: 195px;
  height: 90px;
  background: linear-gradient(135deg,
      rgba(15, 28, 37, 0.09) 0%,
      rgba(47, 107, 255, 0.04) 50%,
      transparent 100%);
  color: var(--text);
  border: 1px solid rgba(108, 126, 168, 0.18);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  transition: all 0.25s ease;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.country-card-btn i {
  font-size: 1.2rem;
  color: #4f7cff;
  line-height: 1;
}

.country-card-btn:hover {
  border-color: var(--accent-muted);
  transform: translateY(-2px);
}

.featured-countries {
  font-family: 'Gothic Century', serif;
  max-width: 1200px;
  margin: 0 auto;
  padding: 150px 28px;
}

.featured-title {
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  font-weight: 700;
  color: #f3f4f6;
  margin: 0;
}

.view-all-btn {
  font-family: 'Space Mono', monospace;
  min-width: 60px;
  height: 52px;
  padding: 0 22px;
  border-radius: 14px;
  border: 1px solid var(--muted);
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: transparent;
  transition: all 0.25s ease;
}

.view-all-btn:hover {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.country-card {
  overflow: hidden;
  border-radius: 22px;
  background: #171b22;
  border: 1px solid rgba(255, 255, 255, 0.05);
  cursor: pointer;
  transition: all 0.2s ease;
}

.country-flag {
  width: 100%;
  height: 130px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 22px 22px 0 0;
}


.country-card:hover {
  transform: translateY(-4px);
  border-color: rgba(93, 120, 255, 0.24);
}

.country-info {
  padding: 18px 20px 16px;
}

.country-info h3 {
  color: #f5f7fb;
  font-size: 1.35rem;
  font-family: 'Gothic Century', serif;
  font-weight: 700;
  margin-bottom: 8px;
}

.country-info p {
  margin-bottom: 4px;
  color: #8d95a8;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'space mono', monospace;
}

.country-info p i {
  font-size: 0.9rem;
  color: #727a8d;
}

.country-info p:last-child {
  margin-bottom: 0;
}

.atlas-footer {
  position: relative;
  padding: 120px 0 40px;
  margin-left: 90px;
  overflow: hidden;
}


.footer-eyebrow {
  font-size: 0.75rem;
  font-family: 'Gothic Century', serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #0d6efd;
}

.footer-heading {
  max-width: 700px;
  font-size: clamp(2.4rem, 5vw, 5rem);
  font-family: 'Gothic Century', serif;
  line-height: 0.95;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: #fff;
}

.footer-description {
  max-width: 320px;
  font-size: 1rem;
  font-family: 'Gothic Century', serif;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.68);
}

.footer-label {
  margin-bottom: 1rem;
  font-size: 0.78rem;
  font-family: 'Gothic Century', serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
}

.footer-link {
  display: inline-block;
  position: relative;
  font-family: 'Gothic Century', serif;
  font-size: 1rem;
  margin-bottom: 0.8rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.25s ease, transform 0.25s ease;
}

.footer-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.25s ease;
}

.footer-link:hover {
  color: var(--accent);
}

.footer-link:hover::after {
  width: 100%;
}

.footer-bottom {
  position: relative;
  z-index: 2;
  margin-top: 80px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  gap: 12px;
}

.footer-copy,
.footer-meta {
  font-size: 0.9rem;
  font-family: 'space mono', monospace;
  color: rgba(255, 255, 255, 0.45);
}

.login-page {
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  display: flex;
}

.login-title {
  font-family: 'Gothic Century', serif;
  font-size: clamp(28px, 6vw, 38px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 2px;
  color: var(--text);
  margin-bottom: 0;
}

.login-form-side {
  font-family: 'Space Mono', monospace;
  height: auto;
  width: 100%;
  max-width: 440px;
  padding: 36px 34px;
  background: linear-gradient(135deg,
      rgba(15, 28, 37, 0.09) 0%,
      rgba(47, 107, 255, 0.04) 50%,
      transparent 100%);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
}

.back-home {
  font-family: 'Space Mono', monospace;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.95rem;
  transition: color 0.25s ease;
}

.back-home:hover {
  color: var(--text);
}

.login-subtext {
  color: var(--muted);
  margin-bottom: 32px;
  font-size: 1rem;
}

.form-label {
  color: var(--text);
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.form-control {
  font-family: 'Inter', sans-serif;
}

.form-check-input {
  transition: all 0.2s ease;
}

.form-check-label,
.forgot-link {
  color: var(--text);
  font-size: 0.92rem;
}

.password-toggle {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: var(--muted);
  transition: color 0.2s ease;
  z-index: 10;
}

.password-toggle:hover {
  color: var(--text);
}

#password {
  padding-right: 44px;
}

.atlas-login-btn {
  height: 54px;
  border: none;
  border-radius: 14px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  transition: all 0.25s ease;
}

.atlas-login-btn:hover {
  background: var(--accent-muted);
}

.atlas-social-btn {
  height: 54px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
  color: #d5d9e4;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.25s ease;
}

.atlas-social-btn:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.16);
}

.signup-text {
  text-align: center;
  margin-top: 26px;
  color: var(--muted);
  font-size: 0.95rem;
}

.signup-text a {
  color: var(--accent);
  text-decoration: none;
}

.signup-text a:hover {
  color: var(--accent-muted);
}

/* ── PRICING ── */

/* HEADER */
.pricing-header {
  text-align: center;
  padding: 80px 24px 60px;
}

.pricing-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-family: 'Gothic Century', serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 70px;
  margin-bottom: 24px;
}

.pricing-eyebrow::before,
.pricing-eyebrow::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--accent);
  opacity: 0.5;
}

.pricing-title {
  font-family: 'Gothic Century', serif;
  font-size: clamp(36px, 6vw, 58px);
  font-weight: 500;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 16px;
}

.pricing-subtitle {
  color: var(--muted);
  font-size: 15px;
  font-family: 'Gothic Century', serif;
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* TOGGLE */
.billing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 100px;
  padding: 6px 20px;
  font-size: 13px;
  font-family: 'Space Mono', monospace;
  color: var(--muted);
}

.toggle-switch {
  position: relative;
  width: 44px;
  height: 24px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  cursor: pointer;
  transition: 0.3s;
}

.billing-label-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.billing-label,
.price-currency,
.price-amount {
  margin: 0;
}

.billing-label {
  font-size: 13px;
  font-family: 'Space Mono', monospace;
  color: var(--muted);
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.price-currency {
  display: inline-block;
  font-size: 20px;
  font-family: 'Gothic Century', Serif;
  vertical-align: super;
  margin-right: 2px;
  color: var(--muted);
}

.price-amount {
  display: inline-block;
  font-family: 'space mono', monospace;
  font-size: 48px;
  font-weight: 500;
  color: var(--text);
  line-height: 1;
}

.toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  background: white;
  border-radius: 50%;
  transition: 0.3s;
}

input:checked+.toggle-slider {
  background: var(--accent);
}

input:checked+.toggle-slider::before {
  transform: translateX(20px);
}

.save-badge {
  background: rgba(59, 130, 246, 0.15);
  color: var(--accent);
  font-size: 10px;
  padding: 2px 8px;
  margin-top: 14px;
  border-radius: 100px;
  letter-spacing: 1px;
}

/* CARDS */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px 100px;
  align-items: start;
}

.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--muted);
  border-radius: 20px;
  padding: 36px 32px;
  position: relative;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.pricing-card:hover {
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateY(-4px);
}

.pricing-card.featured {
  box-shadow: 0px 0px 60px rgba(0, 204, 255, 0.218);
  border-color: rgb(59, 131, 246);
  background: linear-gradient(135deg,
      rgba(59, 130, 246, 0.08) 0%,
      rgba(255, 255, 255, 0.03) 100%);
  transform: scale(1.03);
}

.pricing-card.featured:hover {
  transform: scale(1.03) translateY(-4px);
}

.pricing-card.premium {
  background:
    radial-gradient(circle at top,
      var(--accent-muted) 0%,
      transparent 111%),
    linear-gradient(to bottom,
      rgba(255, 255, 255, 0),
      rgba(255, 255, 255, 0.008));
}

.featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-family: 'Gothic Century', Serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.plan-name {
  font-family: 'space mono', monospace;
  font-size: 22px;
  font-weight: 500;
  color: var(--text);
  margin-top: -20px;
  margin-bottom: 6px;
}

.plan-tagline {
  font-size: 13px;
  font-family: 'Gothic Century', serif;
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.5;
}

.plan-price {
  margin-bottom: 28px;
}

.price-period {
  font-size: 14px;
  font-family: 'Gothic Century', serif;
  color: var(--muted);
  margin-top: 4px;
}

.card-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--card-border), transparent);
  margin: 24px 0;
}

.features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 0;
  margin-bottom: 32px;
  padding-left: 0;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  font-family: 'Gothic Century', serif;
  color: var(--muted);
  line-height: 1.5;
}

.features-list li i {
  color: var(--accent);
  font-size: 15px;
  margin-top: 1px;
  flex-shrink: 0;
}

.features-list li.muted-feature i {
  color: rgba(255, 255, 255, 0.2);
}

.features-list li.muted-feature {
  color: rgba(255, 255, 255, 0.2);
}

.btn-plan-free {
  display: block;
  width: 100%;
  padding: 14px;
  border: 1px solid var(--text);
  border-radius: 12px;
  background: transparent;
  color: var(--text);
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-plan-free:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.btn-plan-pro {
  display: block;
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 12px;
  background: var(--accent);
  color: #fff;
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn-plan-pro:hover {
  background: var(--accent-muted);
  color: #fff;
}

.btn-plan-elite {
  display: block;
  width: 100%;
  padding: 14px;
  border: 1px solid rgba(59, 130, 246, 0.4);
  border-radius: 12px;
  background: transparent;
  color: var(--accent);
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-plan-elite:hover {
  background: rgba(59, 130, 246, 0.08);
  color: var(--accent);
}

/* FAQ */
.faq-section {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px 50px;
}

.faq-title {
  font-family: 'Gothic Century', serif;
  font-size: 50px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 40px;
  color: var(--text);
}

.faq-item {
  background: linear-gradient(135deg,
      rgba(15, 28, 37, 0.09) 0%,
      rgba(47, 107, 255, 0.04) 50%,
      transparent 100%);
  padding: 20px 0;
}

.faq-item:last-child {
  border-bottom: 1px solid var(--card-border);
}

.faq-question {
  font-size: 18px;
  font-family: 'Gothic Century', serif;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
}

.faq-question i {
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-answer {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding-top: 14px;
}

.faq-item.open .faq-question i {
  transform: rotate(45deg);
}

.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.08), transparent);
  margin: 0 0 80px;
}

/* FOOTER */
.pricing-footer {
  border-top: 1px solid var(--card-border);
  padding: 24px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pricing-footer span {
  font-size: 12px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 12px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--text);
}

/* ── CHATBOT PAGE ── */
.app {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 60px;
  background: linear-gradient(180deg, #1d2127 0%, #1b1f25 100%);
  border-right: 1px solid rgba(255, 255, 255, 0.03);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0 18px;
  box-shadow: inset -1px 0 0 rgba(255, 255, 255, 0.02);
}

.sidebar-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}


.icon-btn-gear {
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 20px;
  font-weight: 700;
}

.icon-btn-user {
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 20px;
  font-weight: 700;
}

.icon-btn.small {
  width: 25px;
  height: 25px;
  background: var(--text);
  color: var(--bg-soft);
  border: 0px solid var(--surface);
  border-radius: 15px;
  font-size: 12px;
  font-weight: 700;
  transition: all 0.2s ease;
}

.icon-btn.small:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform:scale(1.4)
}

.main {
  flex: 1;
  display: grid;
  place-items: center;
  padding: 24px;
}

.hero {
  width: min(560px, 82vw);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  transform: translateY(-42px);
}

.brand {
  text-align: center;
  line-height: 0.9;
}

.brand h1 {
  font-family: 'Zenitha Classic', serif;
  font-size: clamp(64px, 8vw, 82px);
  font-weight: 500;
  letter-spacing: -0.05em;
  color: #f6f4ef;
}

.brand p {
  margin-top: 20px;
  font-family: 'Gothic Century', serif;
  font-size: 16px;
  color: #e8e1d6;
  opacity: 0.95;
}

.prompt-box {
  width: 100%;
  height: 150px;
  border-radius: 24px;
  background: rgba(19, 24, 33, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
  padding: 18px 16px 14px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
}

.prompt-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}


.left-tools {
  height: 30px;
  width: 50px;
  align-items: center;
  display: flex; 
  justify-content: center;
  border: 1px solid transparent;
  background: var(--surface);
  border-radius: 10px;
}

.search-ring {
  width: 22px;
  height: 22px;
  border-radius: 7px;
  background: var(--accent-muted);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #f4f4f4;
  font-size: 13px;
}

.mini {
  width: 22px;
  height: 22px;
  border-radius: 7px;
  background: transparent;
  border: transparent;
  color: #d8dce3;
  font-size: 15px;
  transition: all 0.2s ease;
}

.mini:hover {
  color: var(--muted);
}

.mini.blue {
  width: 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 9px;
  font-size: 15px;
  background: var(--accent-muted);
  color: var(--text);
  transition: all 0.2s ease;
}

.mini.blue:hover {
  color: var(--muted);
}

.mic {
  background: transparent;
  border: none;
  font-size: 15px;
  opacity: 0.8;
  color: var(--text);
  transition: color 0.2s ease;;
}

.mic:hover {
  color: var(--muted);
}

/* ── MOBILE GERAL ── */
@media (max-width: 768px) {

  body {
    font-size: 15px;
  }

  /* HEADER / NAV */
  .atlas-header {
    min-height: 64px;
  }

  .atlas-header-container {
    padding: 0 18px;
    grid-template-columns: 1fr;
    row-gap: 10px;
    justify-items: center;
    text-align: center;
  }

  .atlas-logo {
    justify-content: center;
  }

  .atlas-nav {
    gap: 22px;
    flex-wrap: wrap;
  }

  .atlas-nav a {
    font-size: 13px;
  }

  .atlas-actions {
    justify-content: center;
    margin-top: 8px;
  }

  .btn {
    height: 38px;
    padding: 0 14px;
    font-size: 13px;
  }

  /* HERO */
  .atlas-hero {
    padding-bottom: 40px;
  }

  .atlas-hero-content {
    padding: 7rem 18px 3.5rem;
  }

  .atlas-badge {
    margin-bottom: 1.4rem;
    font-size: 10px;
    padding: 4px 10px;
  }

  .atlas-hero-content h1 {
    font-size: clamp(32px, 9vw, 44px);
  }

  .atlas-hero-content p {
    font-size: 16px;
    max-width: 100%;
    line-height: 1.6;
  }

  .hero-mini-chat {
    margin: 26px auto 22px;
    padding: 12px;
    border-radius: 18px;
  }

  .mini-chat-badge {
    font-size: 0.72rem;
    padding: 6px 10px;
  }

  .chat-bubble {
    max-width: 90%;
    padding: 10px 12px;
    border-radius: 14px;
  }

  .chat-bubble p {
    font-size: 0.9rem;
  }

  .mini-chat-input-wrap {
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px 12px;
  }

  .mini-chat-input-wrap button {
    padding: 10px 16px;
    font-size: 0.86rem;
  }

  .atlas-cta {
    margin-top: 22px;
    gap: 10px;
  }

  /* ABOUT */
  .atlas-about {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 56px 20px;
  }

  .about-heading {
    font-size: clamp(26px, 6vw, 34px);
  }

  .about-body p {
    font-size: 14px;
  }

  .btn-secondary {
    width: 100%;
    margin-top: 24px;
    font-size: 14px;
  }

  .about-cards {
    gap: 12px;
  }

  .feature-card {
    padding: 18px 18px;
  }

  .card-title {
    font-size: 14px;
  }

  .card-desc {
    font-size: 13px;
  }

  /* HOW IT WORKS */
  .how-it-works {
    padding: 40px 20px;
  }

  .step-number {
    font-size: clamp(2.8rem, 9vw, 3.2rem);
  }

  .step-card p {
    max-width: 100%;
    font-size: 0.95rem;
  }

  /* TOPICS / COUNTRIES */
  .topics,
  .featured-countries {
    padding: 80px 20px;
  }

  .country-card-btn {
    width: 100%;
    height: auto;
    padding: 16px 10px;
    flex-direction: row;
    justify-content: flex-start;
  }

  .country-card-btn i {
    margin-right: 8px;
  }

  .featured-title {
    font-size: clamp(2rem, 7vw, 3rem);
  }

  .view-all-btn {
    width: 100%;
    justify-content: center;
    margin-top: 18px;
  }

  .country-card {
    border-radius: 18px;
  }

  .country-flag {
    height: 110px;
    border-radius: 18px 18px 0 0;
  }

  .country-info {
    padding: 14px 16px 12px;
  }

  .country-info h3 {
    font-size: 1.1rem;
  }

  .country-info p {
    font-size: 0.83rem;
  }

  /* FOOTER ATLAS */
  .atlas-footer {
    margin-left: 0;
    padding: 70px 20px 30px;
  }

  .footer-heading {
    font-size: clamp(1.8rem, 7vw, 2.6rem);
  }

  .footer-description {
    max-width: 100%;
    font-size: 0.95rem;
  }

  .footer-bottom {
    margin-top: 40px;
  }

  /* LOGIN */
  .login-page {
    padding: 30px 18px;
  }

  .login-form-side {
    max-width: 100%;
    padding: 26px 22px;
  }

  .login-title {
    font-size: clamp(24px, 7vw, 30px);
  }

  .atlas-login-btn,
  .atlas-social-btn {
    height: 50px;
  }

  /* PRICING */
  .pricing-header {
    padding: 60px 18px 40px;
  }

  .pricing-eyebrow {
    margin-top: 40px;
  }

  .pricing-title {
    font-size: clamp(28px, 7vw, 36px);
  }

  .pricing-subtitle {
    font-size: 14px;
    max-width: 100%;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    padding: 0 18px 70px;
  }

  .pricing-card {
    padding: 26px 22px;
  }

  .plan-name {
    font-size: 18px;
  }

  .price-amount {
    font-size: 36px;
  }

  .features-list li {
    font-size: 14px;
  }

  .pricing-footer {
    padding: 18px 20px;
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
  }

  /* FAQ */
  .faq-section {
    padding: 0 18px 40px;
  }

  .faq-title {
    font-size: 32px;
  }

  .faq-question {
    font-size: 16px;
  }

  .faq-answer {
    font-size: 13px;
  }

  /* CHATBOT PAGE */
  .app {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    height: 52px;
    flex-direction: row;
    justify-content: space-between;
    padding: 10px 18px;
  }

  .sidebar-group {
    flex-direction: row;
    gap: 10px;
  }

  .main {
    padding: 18px;
  }

  .hero {
    width: 100%;
    transform: translateY(-12px);
    gap: 18px;
  }

  .brand h1 {
    font-size: clamp(32px, 9vw, 40px);
  }

  .brand p {
    font-size: 14px;
    margin-top: 14px;
  }

  .prompt-box {
    height: auto;
    min-height: 120px;
    border-radius: 18px;
    padding: 14px 12px;
  }

  .prompt-inner {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .left-tools {
    width: auto;
    padding: 0 8px;
    gap: 6px;
  }

  .search-ring,
  .mini,
  .mini.blue {
    width: 22px;
    height: 22px;
  }
}