/*
Theme Name: Liquid Glass
Description: A modern, responsive WordPress theme with glass morphism and neumorphism design elements
Author: Your Name
Version: 1.0.0
License: GPL v2 or later
Text Domain: liquid-glass
*/

/* Import Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap");

:root {
  --font-heading:
    "Syne", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body:
    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Brand colors (design tokens) */
  --color-brand-teal: #23f9dd;
  --color-button: #2f74fa;
  --color-header-text: #000000;
  --color-supporting-text: #656565;
  --color-alt-text: #ffffff;
  --color-accent: #ff70f1;
  --color-dark-bg: #1d1d1d;
  --color-stroke: #878787;

  /* Back-compat aliases (existing names used in CSS) */
  --accent-cyan: var(--color-brand-teal);
  --accent-pink: var(--color-accent);
  --accent-blue: var(--color-button);

  --color-blue: #aacaf9;
  --color-blue-text: #000000;
  --color-pink: #ffbcfc;
  --color-pink-text: #000000;
  --color-purple: #4e70ff;
  --color-purple-text: #ffffff;
  --color-yellow: #fada7b;
  --color-yellow-text: #000000;
  --color-green: #106c52;
  --color-green-text: #ffffff;
}

/* ========== RESET & BASE ========== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  background: #f8f7f7;
  color: var(--color-header-text);
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  color: var(--color-header-text);
  background: #f8f7f7;
}

h1,
h2,
h3,
h4,
h5,
h6,
.hero-title,
.feature-title,
.section-title,
.careers-title,
.post-title,
.blog-title,
.legal-title {
  font-family: var(--font-heading);
}

a {
  text-decoration: none;
}

/* ========== TYPOGRAPHY ========== */
.eyebrow {
  font-weight: 400;
  font-size: 14px;
  line-height: normal;
  text-transform: uppercase;
}

h1 {
  font-weight: 600;
  font-size: 88px;
  line-height: 92px;
  color: var(--color-header-text);
}

h2 {
  font-weight: 400;
  font-size: 64px;
  line-height: 68px;
  color: var(--color-header-text);
}

h3 {
  font-weight: 600;
  font-size: 21px;
  line-height: normal;
  color: var(--color-header-text);
}

p {
  font-weight: 400;
  font-size: 16px;
  line-height: 32px;
}

/* ========== HEADER ========== */

/* ========== PROOF OF CONCEPT HEADER (NEUMORPHISM + GLASS) ========== */
.neuglass-header-demo {
  position: fixed;
  top: 100px;
  left: 0;
  width: 100vw;
  z-index: 2000;
  margin: 0;
  max-width: none;
  padding: 0 24px;
  display: flex;
  justify-content: center;
  pointer-events: auto;
}

.neuglass-header-inner {
  position: relative;
  width: 100%;
  max-width: 900px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 2.5rem;
  padding: 1.2rem 2.5rem;
  background: rgba(255, 255, 255, 0.55);
  box-shadow:
    8px 8px 24px 0 rgba(163, 177, 198, 0.25),
    -8px -8px 24px 0 rgba(255, 255, 255, 0.7),
    0 4px 32px 0 rgba(80, 120, 200, 0.08);
  backdrop-filter: blur(12px) saturate(1.5);
  -webkit-backdrop-filter: blur(12px) saturate(1.5);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  box-sizing: border-box;
  overflow: hidden;
}

.neuglass-header-inner>*:not(.neuglass-effect) {
  position: relative;
  z-index: 1;
}

.neuglass-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--color-button);
  text-decoration: none;
  text-shadow:
    0 2px 12px rgba(47, 116, 250, 0.12),
    0 0 5px rgba(255, 255, 255, 0.7);
}

.neuglass-logo .logo-image {
  width: 40px;
  height: 40px;
  display: inline-block;
  vertical-align: middle;
}

.neuglass-logo .logo-text {
  font-family: var(--font-heading, "Syne", sans-serif);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: inherit;
}

.neuglass-nav {
  display: flex;
  gap: 2.2rem;
}

.neuglass-nav a {
  font-size: 1.1rem;
  font-weight: 600;
  color: #222;
  text-decoration: none;
  padding: 0.5rem 1.2rem;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.25);
  box-shadow:
    2px 2px 8px 0 rgba(163, 177, 198, 0.1),
    -2px -2px 8px 0 rgba(255, 255, 255, 0.25);
  transition:
    background 0.2s,
    box-shadow 0.2s,
    color 0.2s;
  backdrop-filter: blur(4px);
}

.neuglass-nav a:hover {
  background: rgba(47, 116, 250, 0.12);
  color: var(--color-button);
  box-shadow: 0 4px 16px 0 rgba(47, 116, 250, 0.1);
}

/* ========== HOMEPAGE ========== */
.homepage::after {
  content: "";
  display: block;
  height: 6rem;
  background: #fff;
}

.homepage section {
  width: 100%;
  padding: 6rem 0;
}

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

/* =====================
   HOMEPAGE HERO SECTION
   ===================== */

.hero-section {
  position: relative;
  min-height: 761px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 180px !important;
}

.hero-content {
  max-width: 1000px;
  padding: 0 4rem;
}

.hero-eyebrow {
  color: var(--color-supporting-text);
  margin-bottom: 1.5rem;
}

.hero-description {
  width: 60%;
  margin-top: 1.5rem;
  margin-bottom: 1.8rem;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
  pointer-events: none;
}

.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  background: #000;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 500;
  padding: 6px 6px 6px 24px;
  border-radius: 2em;
  transition: background 0.5s;
}

.hero-cta-btn:hover {
  background: #222;
}

.hero-cta-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #2ed3b7;
  color: #000;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-weight: 400;
  margin-left: 14px;
  font-size: 1.5em;
  transition:
    background 0.5s,
    color 0.5s;
}

.hero-cta-btn:hover .hero-cta-arrow {
  background: var(--color-accent);
  color: #fff;
}

@media (max-width: 700px) {
  /* .hero-title {
    font-size: 2.2rem;
  }
  .hero-content {
    padding: 40px 10px 40px 10px;
  } */
}

/* =====================
   END HOMEPAGE HERO SECTION
   ===================== */

/* Chat Cards Section */
.chat-cards-section {
  padding-top: 10rem !important;
}

.chat-card {
  position: sticky;
  top: 150px;
  padding: 60px 30px 20px;
  display: grid;
  grid-template-columns: 1fr;
  background: white;
  color: black;
  height: 530px;
  max-width: 1000px;
  margin: 0 auto 100px;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
}

/* Top colored bar for each chat card */
.chat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 12px;
}

.chat-card-cyan::before {
  background: var(--accent-cyan);
}

.chat-card-pink::before {
  background: var(--accent-pink);
}

.chat-card-blue::before {
  background: var(--accent-blue);
}

.chat-card:nth-child(1) {
  z-index: 1;
}

.chat-card:nth-child(2) {
  z-index: 2;
}

.chat-card:nth-child(3) {
  z-index: 3;
}

.chat-card:nth-child(4) {
  z-index: 4;
}

.chat-card:nth-child(5) {
  z-index: 5;
}

.chat-card-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: cover;
  position: absolute;
  top: -30px;
  left: 30px;
}

.chat-card-text {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding-left: 450px;
}

.chat-card-text .chat-card-title {
  margin: 20px 0;
}

.chat-card-cyan .chat-card-text .eyebrow {
  color: var(--accent-cyan);
}

.chat-card-pink .chat-card-text .eyebrow {
  color: var(--accent-pink);
}

.chat-card-blue .chat-card-text .eyebrow {
  color: var(--accent-blue);
}

/* Client Logos Section */
.clients-section {
  background: white;
  padding: 3rem 0;
}

.client-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.client-logo {
  font-family: var(--font-body);
  padding: 1rem 2rem;
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  color: #666;
  font-weight: 500;
}

/* =====================
   HOMEPAGE: FEATURES GRID
   ===================== */
.features-grid-section {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 2rem !important;
  padding-right: 2rem !important;
  background: #fff;
}

.features-grid-eyebrow {
  text-align: center;
  color: var(--color-supporting-text);
  margin-bottom: 0.5rem;
}

.features-grid-title {
  text-align: center;
  margin-bottom: 4rem;
  color: #000;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 64px 72px;
  align-items: start;
}

/* Center the last row (5 items total) on desktop */
@media (min-width: 981px) {
  .features-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .features-grid>.feature-tile {
    grid-column: span 2;
  }

  /* Move the last two tiles into the middle columns */
  .features-grid>.feature-tile:nth-child(4) {
    grid-column: 2 / span 2;
  }

  .features-grid>.feature-tile:nth-child(5) {
    grid-column: 4 / span 2;
  }
}

.feature-tile {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-tile-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: #000;
  position: relative;
}

.feature-tile-icon::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 2px solid var(--accent-cyan);
  border-radius: 10px;
  opacity: 0.9;
}

.feature-tile-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 18px;
  line-height: 27px;
  color: #000;
}

.feature-tile-text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 29px;
  color: var(--color-supporting-text);
}

@media (max-width: 980px) {
  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .features-grid-title {
    margin-bottom: 2rem;
  }
}

/* =====================
   HOMEPAGE: VIDEO
   ===================== */
.video-section {
  padding: 6rem 0;
}

.video-eyebrow,
.video-title,
.video-description {
  text-align: center;
}

.video-eyebrow {
  color: var(--color-supporting-text);
  margin-bottom: 0.5rem;
}

.video-title {
  margin-bottom: 1rem;
  color: #000;
}

.video-description {
  color: #000;
  opacity: 0.9;
  margin-bottom: 3rem;
}

.video-card {
  width: 100%;
  height: min(566px, 60vw);
  min-height: 340px;
  border-radius: 22px;
  background: linear-gradient(107.88deg,
      rgba(255, 255, 255, 0.7) -1.51%,
      rgba(255, 255, 255, 0.4) 107.89%);
  box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.04);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.video-play {
  width: 106.96px;
  height: 106.96px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: #000;
  position: absolute;
  inset: 0;
  margin: auto;
  display: grid;
  place-items: center;
}

.video-play:focus-visible {
  outline: 3px solid rgba(35, 249, 222, 0.9);
  outline-offset: 4px;
}

.video-play-icon {
  width: 0;
  height: 0;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  border-left: 28px solid #fff;
  transform: translateX(2px);
}

/* =====================
   HOMEPAGE: TESTIMONIALS
   ===================== */
.testimonials-section {
  padding: 7rem 0;
  position: relative;
}

.testimonials-eyebrow {
  text-align: center;
  color: var(--color-supporting-text);
  margin-bottom: 0.5rem;
}

.testimonials-title {
  text-align: center;
  margin: 0 auto 3rem auto;
  max-width: 900px;
  color: #000;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
}

.testimonial-card {
  border-radius: 22px;
  padding: 40px;
  background: linear-gradient(107.88deg,
      rgba(255, 255, 255, 0.7) -1.51%,
      rgba(255, 255, 255, 0.4) 107.89%);
  box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.04);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.testimonial-text {
  color: #000;
  margin-bottom: 28px;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 47px;
  height: 47px;
  border-radius: 999px;
  background: #d9d9d9;
  border: 3px solid #fff;
  flex: none;
}

.testimonial-name {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #000;
}

.testimonial-role {
  font-family:
    ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
    "Courier New", monospace;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #000;
  opacity: 0.9;
}

@media (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================
   HOMEPAGE: FAQ
   ===================== */
.faq-section {
  padding: 6rem 0;
  background: #fff;
}

.faq-container {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 64px;
  align-items: start;
}

.faq-title {
  font-size: clamp(64px, 8vw, 110px);
  line-height: 0.9;
  font-weight: 600;
  color: #000;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--color-stroke);
  padding: 24px 0;
}

.faq-item:first-child {
  border-top: 1px solid var(--color-stroke);
}

.faq-question {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 22px;
  line-height: 32px;
  color: #000;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-pill {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 51px;
  height: 31px;
  border-radius: 20px;
  background: var(--accent-cyan);
  color: #000;
  font-family: var(--font-body);
  font-weight: 600;
}

.faq-item[open] .faq-pill {
  content: "-";
}

.faq-answer {
  margin-top: 16px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
  color: var(--color-supporting-text);
  max-width: 720px;
}

@media (max-width: 900px) {
  .faq-container {
    grid-template-columns: 1fr;
  }

  .faq-title {
    margin-bottom: 8px;
  }
}

/* =====================
   HOMEPAGE: TRIAL
   ===================== */
.trial-section {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #fff;
}

.trial-bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
  pointer-events: none;
  height: 100%;
}

.trial-title {
  text-align: center;
  font-weight: 700;
  color: #000;
}

.trial-subtitle {
  text-align: center;
  color: var(--color-supporting-text);
  font-size: 18px;
  line-height: 32px;
  margin-top: 16px;
}

.trial-actions {
  margin-top: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 42px;
  flex-wrap: wrap;
}

.trial-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 56px;
  padding: 0 32px;
  border-radius: 38px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  text-decoration: none;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
}

.trial-btn:hover {
  transform: translateY(-1px);
}

.trial-btn-primary {
  background: var(--accent-cyan);
  color: #000;
}

.trial-btn-primary .trial-btn-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #000;
  position: relative;
}

.trial-btn-primary .trial-btn-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid var(--accent-cyan);
  transform: rotate(-45deg) translateX(1px);
}

.trial-btn-secondary {
  background: transparent;
  color: #000;
  border: 1px solid #000;
}

.trial-points {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
  color: #000;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 21px;
}

.trial-point {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trial-check {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  border: 2px solid var(--accent-cyan);
  position: relative;
}

.trial-check::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 4px;
  border-left: 2px solid var(--accent-cyan);
  border-bottom: 2px solid var(--accent-cyan);
  transform: rotate(-45deg);
  left: 5px;
  top: 6px;
}

/* Button Styles */
.btn {
  font-family: var(--font-body);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background: #2563eb;
  color: white;
}

.btn-primary:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: #2563eb;
  border-color: #2563eb;
}

.btn-secondary:hover {
  background: #2563eb;
  color: white;
}

/* Single Post Styles */
.single-post {
  padding-top: 4rem;
  min-height: 100vh;
}

.single-post .site-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.single-post .main-content {
  padding: 0;
  margin: 0;
  border: none;
  box-shadow: none;
}

/* Post Header */
.post-header {
  padding: 3rem 0 2rem 0;
  text-align: left;
}

.post-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: #111;
  margin-bottom: 1.5rem;
}

.post-meta {
  font-family: var(--font-body);
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  color: #666;
}

.post-date,
.post-reading-time {
  color: #666;
}

.post-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.post-tags a {
  font-family: var(--font-body);
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
}

/* Post Hero Image */
.post-hero {
  margin-bottom: 2rem;
}

.post-hero img {
  width: 100%;
  height: auto;
  display: block;
}

/* Post Content */
.post-content {
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
}

.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4,
.post-content h5,
.post-content h6 {
  font-family: var(--font-heading);
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: #111;
}

.post-content h1 {
  font-size: 2rem;
}

.post-content h2 {
  font-size: 1.75rem;
}

.post-content h3 {
  font-size: 1.5rem;
}

.post-content h4 {
  font-size: 1.25rem;
}

.post-content h5 {
  font-size: 1.1rem;
}

.post-content h6 {
  font-size: 1rem;
}

.post-content p {
  margin-bottom: 1.5rem;
}

.post-content ul,
.post-content ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.post-content li {
  margin-bottom: 0.5rem;
}

.post-content blockquote {
  border-left: 4px solid #e0e0e0;
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: #666;
}

.post-content img {
  max-width: 100%;
  height: auto;
  margin: 2rem 0;
}

.post-content a {
  color: #2563eb;
  text-decoration: underline;
}

.post-content a:hover {
  color: #1d4ed8;
}

.post-content hr {
  border: none;
  height: 1px;
  background: linear-gradient(to right, transparent, #e0e0e0, transparent);
  margin: 3rem 0;
  opacity: 0.6;
}

.post-content hr::before {
  content: "";
  display: block;
  height: 1px;
  background: linear-gradient(to right, transparent, #e0e0e0, transparent);
  margin: 0 auto;
  width: 100%;
}

/* Subscribe Section */
.subscribe-section {
  margin: 4rem 0;
  padding: 3rem 0;
  background: #f8f9fa;
  border-radius: 12px;
}

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

.subscribe-content {
  text-align: center;
}

.subscribe-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 1rem;
}

.subscribe-description {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
  margin-bottom: 2rem;
}

.subscribe-form {
  max-width: 400px;
  margin: 0 auto;
}

.subscribe-input-group {
  display: flex;
  gap: 0.5rem;
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 2rem;
  padding: 0.5rem;
  transition: all 0.3s ease;
}

.subscribe-input-group:focus-within {
  border-color: var(--color-blue);
  box-shadow: 0 0 0 3px rgba(170, 202, 249, 0.1);
}

.subscribe-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: transparent;
  color: #333;
}

.subscribe-input::placeholder {
  color: #9ca3af;
}

.subscribe-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-blue);
  color: white;
  border: none;
  border-radius: 1.5rem;
  padding: 0.75rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.subscribe-button:hover {
  background: #8bb8f8;
  transform: translateY(-1px);
}

/* Post Navigation */
.post-footer {
  margin-top: 4rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
  border-top: 1px solid #e9ecef;
}

.post-navigation-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: white;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.nav-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: var(--color-blue);
  text-decoration: none;
  color: inherit;
}

.nav-prev {
  text-align: left;
}

.nav-next {
  text-align: right;
}

.nav-next .nav-content {
  text-align: right;
}

.nav-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #f8f9fa;
  border-radius: 50%;
  color: #666;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.nav-link:hover .nav-arrow {
  background: var(--color-blue);
  color: white;
  transform: scale(1.1);
}

.nav-content {
  flex: 1;
  min-width: 0;
}

.nav-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.25rem;
}

.nav-title {
  display: block;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: #111;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Mobile Responsive for Post Navigation and Subscribe */
@media (max-width: 768px) {
  .subscribe-container {
    padding: 0 1rem;
  }

  .subscribe-title {
    font-size: 1.5rem;
  }

  .subscribe-input-group {
    flex-direction: column;
    gap: 0;
    border-radius: 1rem;
  }

  .subscribe-input {
    border-radius: 0.5rem;
    margin-bottom: 0.5rem;
  }

  .subscribe-button {
    border-radius: 0.5rem;
    justify-content: center;
  }

  .post-navigation-links {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .nav-link {
    padding: 1rem;
  }

  .nav-arrow {
    width: 32px;
    height: 32px;
  }

  .nav-title {
    font-size: 0.9rem;
  }
}

/* Subscription Messages */
.subscription-message {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  z-index: 10000;
  max-width: 400px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  animation: slideIn 0.3s ease-out;
}

.subscription-success {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.subscription-info {
  background: #dbeafe;
  color: #1e40af;
  border: 1px solid #93c5fd;
}

.subscription-error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .homepage .container {
    padding: 0 1rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.25rem;
  }

  .feature-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .feature-text {
    text-align: center;
    order: 2;
  }

  .feature-image {
    order: 1;
  }

  .chat-card {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .chat-card-text {
    text-align: center;
    order: 2;
  }

  .chat-card-image {
    order: 1;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .logo-image {
    width: 30px;
    height: 30px;
  }

  .logo-text {
    font-size: 1.2rem;
  }

  .site-branding {
    align-items: center;
  }

  .nav-menu {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-menu a {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }

  .single-post .site-content {
    padding: 0 1rem;
  }

  .post-title {
    font-size: 2rem;
  }

  .post-content {
    font-size: 1rem;
  }

  /* Blog Page Mobile Styles */
  .blog-title {
    font-size: 2rem;
  }

  .blog-description {
    font-size: 1rem;
  }

  .search-form {
    max-width: 100%;
  }

  .posts-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .blog-card-content {
    padding: 1rem;
  }

  .blog-card-title {
    font-size: 1.1rem;
  }

  .blog-excerpt {
    font-size: 0.9rem;
  }
}

/* Blog Page Styles */
.blog-page {
  min-height: 100vh;
  padding: 2rem 0;
  padding-top: 8rem;
}

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

/* Blog Intro Section */
.blog-intro {
  text-align: center;
  margin-bottom: 4rem;
  padding: 2rem 0;
}

.blog-title {
  font-size: 3rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.blog-description {
  font-family: var(--font-body);
  font-size: 1.2rem;
  line-height: 1.6;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* Search Section */
.search-section {
  margin-bottom: 4rem;
  display: flex;
  justify-content: center;
}

.search-form {
  width: 100%;
  max-width: 500px;
}

.search-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 2rem;
  padding: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.search-wrapper:focus-within {
  border-color: var(--color-blue);
  box-shadow: 0 0 0 3px rgba(170, 202, 249, 0.1);
}

.search-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  background: transparent;
  color: #333;
}

.search-input::placeholder {
  color: #9ca3af;
}

.search-button {
  background: var(--color-blue);
  color: white;
  border: none;
  border-radius: 1.5rem;
  padding: 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-button:hover {
  background: #8bb8f8;
  transform: translateY(-1px);
}

/* Search Results Header */
.search-results-header {
  text-align: center;
  margin-bottom: 3rem;
  padding: 2rem 0;
}

.search-results-title {
  font-size: 2rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 0.5rem;
}

.search-results-count {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #666;
  margin: 0;
}

/* Blog Posts Grid */
.blog-posts {
  margin-bottom: 4rem;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

/* Blog Card Styles */
.blog-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.blog-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.blog-card-link:hover {
  text-decoration: none;
  color: inherit;
}

.blog-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.blog-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-thumbnail {
  transform: scale(1.05);
}

.blog-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  color: #6c757d;
}

.blog-card-content {
  padding: 1.5rem;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: #6b7280;
}

.blog-date {
  color: #6b7280;
}

.blog-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.75rem;
  color: #111;
}

.blog-excerpt {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.5;
  color: #666;
  margin-bottom: 0;
}

/* Load More Section */
.loading-spinner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #6b7280;
  font-family: var(--font-body);
  padding: 2rem 0;
  margin-top: 2rem;
}

.spinner {
  width: 20px;
  height: 20px;
  border: 2px solid #e5e7eb;
  border-top: 2px solid var(--color-blue);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* No Posts Message */
.no-posts {
  text-align: center;
  padding: 4rem 2rem;
  color: #6b7280;
}

.no-posts h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #111;
}

.no-posts p {
  font-family: var(--font-body);
  font-size: 1rem;
}

/* Footer Styles */
.site-footer {
  background: #000000;
  color: #ffffff;
  padding: 5rem 0;
  border-top: none;
}

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

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 4rem;
}

.footer-left {
  max-width: 420px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.footer-logo-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
}

.footer-logo-text {
  font-family: var(--font-heading, 'Inter', sans-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.footer-description {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.95rem;
  line-height: 1.6;
  color: #a1a1aa;
  margin: 0 0 2.5rem 0;
  font-weight: 400;
}

.footer-left .copyright {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.875rem;
  color: #a1a1aa;
  margin: 0;
  font-weight: 400;
}

.footer-right {
  min-width: 240px;
}

.footer-heading {
  font-family: var(--font-heading, 'Inter', sans-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 1.25rem 0;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-links li,
.footer-contact-item {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.95rem;
  color: #a1a1aa;
  line-height: 1.5;
}

.footer-links a {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.95rem;
  color: #a1a1aa;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-email-link {
  color: #00E5C0 !important;
  text-decoration: underline !important;
  transition: opacity 0.2s ease;
}

.footer-email-link:hover {
  opacity: 0.85;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .site-footer {
    padding: 3.5rem 0;
  }

  .footer-grid {
    flex-direction: column;
    gap: 3rem;
  }

  .footer-left {
    max-width: 100%;
  }

  .footer-description {
    margin-bottom: 2rem;
  }
}

/* 404 Error Page Styles */
.error-page {
  background: white;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
}

.error-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.error-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.error-number {
  font-family: var(--font-heading);
  font-size: 8rem;
  font-weight: 800;
  color: var(--color-blue);
  line-height: 1;
  margin-bottom: 1rem;
  text-shadow: 0 4px 8px rgba(170, 202, 249, 0.3);
}

.error-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.error-description {
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.6;
  color: #666;
  max-width: 500px;
  margin: 0 auto 2rem auto;
}

.error-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.error-actions .btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
}

.search-section {
  width: 100%;
  max-width: 500px;
  margin: 0 auto 3rem auto;
}

.search-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 1rem;
}

.search-section .search-form {
  width: 100%;
}

.search-section .search-wrapper {
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 2rem;
  padding: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.search-section .search-wrapper:focus-within {
  border-color: var(--color-blue);
  box-shadow: 0 0 0 3px rgba(170, 202, 249, 0.1);
}

.search-section .search-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  background: transparent;
  color: #333;
}

.search-section .search-input::placeholder {
  color: #9ca3af;
}

.search-section .search-button {
  background: var(--color-blue);
  color: white;
  border: none;
  border-radius: 1.5rem;
  padding: 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-section .search-button:hover {
  background: #8bb8f8;
  transform: translateY(-1px);
}

.recent-posts {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.recent-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 1.5rem;
}

.no-posts-message {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #666;
  text-align: center;
  grid-column: 1 / -1;
}

/* Mobile Responsive for 404 Page */
@media (max-width: 768px) {
  .error-container {
    padding: 0 1rem;
  }

  .error-number {
    font-size: 6rem;
  }

  .error-title {
    font-size: 2rem;
  }

  .error-description {
    font-size: 1rem;
  }

  .error-actions {
    flex-direction: column;
    align-items: center;
  }

  .error-actions .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

/* Careers Page Styles */
.careers-page {
  background: white;
  min-height: 100vh;
}

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

/* Hero Section */
.careers-hero {
  padding: 6rem 0 4rem 0;
  text-align: center;
}

.careers-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.careers-subtitle {
  font-family: var(--font-body);
  font-size: 1.25rem;
  line-height: 1.6;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

/* Section Styles */
.section-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 1rem;
  text-align: center;
}

.section-description {
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.6;
  color: #666;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem auto;
}

/* Culture Section */
.culture-section {
  padding: 4rem 0;
  background: #f8f9fa;
}

.culture-content {
  text-align: center;
  padding: 0 2rem;
}

.culture-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.culture-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.culture-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.culture-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--color-blue);
  color: white;
  border-radius: 50%;
  margin: 0 auto 1.5rem auto;
}

.culture-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 1rem;
}

.culture-card p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
}

/* Looking For Section */
.looking-for-section {
  padding: 4rem 0;
}

.looking-for-content {
  text-align: center;
  padding: 0 2rem;
}

.qualities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.quality-item {
  background: white;
  padding: 2rem;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  text-align: left;
  transition: all 0.3s ease;
}

.quality-item:hover {
  border-color: var(--color-blue);
  box-shadow: 0 4px 12px rgba(170, 202, 249, 0.2);
}

.quality-item h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 1rem;
}

.quality-item p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
}

/* Backgrounds Section */
.backgrounds-section {
  padding: 4rem 0;
  background: #f8f9fa;
}

.backgrounds-content {
  text-align: center;
  padding: 0 2rem;
}

.backgrounds-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.background-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: left;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.background-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.background-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 1rem;
}

.background-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.background-card li {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
  padding: 0.5rem 0;
  border-bottom: 1px solid #f1f3f4;
}

.background-card li:last-child {
  border-bottom: none;
}

.background-card li::before {
  content: "•";
  color: var(--color-blue);
  font-weight: bold;
  margin-right: 0.5rem;
}

/* Contact Section */
.careers-contact {
  padding: 4rem 0;
}

.contact-content {
  text-align: center;
  padding: 0 2rem;
}

.contact-description {
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.6;
  color: #666;
  max-width: 600px;
  margin: 0 auto 3rem auto;
}

.contact-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.contact-card {
  background: white;
  padding: 2.5rem;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-card:hover {
  border-color: var(--color-blue);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--color-blue);
  color: white;
  border-radius: 50%;
  margin: 0 auto 1.5rem auto;
}

.contact-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 1rem;
}

.contact-card p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
  margin-bottom: 1.5rem;
}

.contact-card .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

/* Mobile Responsive for Careers Page */
@media (max-width: 768px) {
  .careers-page .container {
    padding: 0 1rem;
  }

  .careers-title {
    font-size: 2.5rem;
  }

  .careers-subtitle {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-description {
    font-size: 1rem;
  }

  .culture-grid,
  .qualities-grid,
  .backgrounds-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-options {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-card {
    padding: 2rem;
  }

  .quality-item,
  .background-card,
  .culture-card {
    padding: 1.5rem;
  }
}

/* Legal Pages Styles (Privacy Policy & Terms & Conditions) */
.legal-page {
  background: white;
  min-height: 100vh;
  font-family: var(--font-body);
  line-height: 1.6;
  color: #333;
}

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

/* Legal Header */
.legal-header {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e9ecef;
}

.legal-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: #111;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
}

.legal-logo:hover {
  color: var(--color-blue);
  text-decoration: none;
}

.logo-image {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  color: inherit;
}

/* Legal Content */
.legal-content {
  margin-bottom: 3rem;
}

.legal-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.legal-date {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 2rem;
  font-style: italic;
}

.legal-text {
  font-size: 1rem;
  line-height: 1.7;
}

.legal-text h1 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.legal-text h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 600;
  color: #111;
  margin: 2.5rem 0 1rem 0;
  line-height: 1.3;
}

.legal-text h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: #111;
  margin: 2rem 0 0.75rem 0;
  line-height: 1.4;
}

.legal-text h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: #111;
  margin: 1.5rem 0 0.5rem 0;
  line-height: 1.4;
}

.legal-text p {
  margin-bottom: 1.25rem;
  color: #444;
}

.legal-text ul,
.legal-text ol {
  margin: 1.25rem 0;
  padding-left: 2rem;
}

.legal-text li {
  margin-bottom: 0.5rem;
  color: #444;
}

.legal-text blockquote {
  border-left: 4px solid var(--color-blue);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: #666;
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 0 8px 8px 0;
}

.legal-text a {
  color: var(--color-blue);
  text-decoration: underline;
}

.legal-text a:hover {
  color: #1d4ed8;
}

.legal-text strong {
  font-weight: 600;
  color: #111;
}

.legal-text em {
  font-style: italic;
  color: #555;
}

/* Legal Footer */
.legal-footer {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #e9ecef;
}

.legal-footer-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.legal-footer-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  border: 1px solid;
}

.website-btn {
  color: var(--color-blue);
  border-color: var(--color-blue);
  background: transparent;
}

.website-btn:hover {
  background: var(--color-blue);
  color: white;
  text-decoration: none;
}

.app-btn {
  color: white;
  border-color: var(--color-blue);
  background: var(--color-blue);
}

.app-btn:hover {
  background: #1d4ed8;
  border-color: #1d4ed8;
  color: white;
  text-decoration: none;
}

/* Mobile Responsive for Legal Pages */
@media (max-width: 768px) {
  .legal-container {
    padding: 1rem;
  }

  .legal-title {
    font-size: 2rem;
  }

  .legal-text h1 {
    font-size: 2rem;
  }

  .legal-text h2 {
    font-size: 1.5rem;
  }

  .legal-text h3 {
    font-size: 1.25rem;
  }

  .legal-text {
    font-size: 0.95rem;
  }

  .legal-text ul,
  .legal-text ol {
    padding-left: 1.5rem;
  }

  .legal-footer-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }

  .legal-footer-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ========== SPLIT HEADER BAR ========== */
.header-bar.header-bar--split {
  position: fixed;
  top: 30px;
  left: 0;
  width: 100vw;
  height: 46px;
  z-index: 3000;
  pointer-events: none;
  background: none;
  box-shadow: none;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.7);
}

.header-bar__section {
  position: absolute;
  top: 0;
  height: 46px;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  /* border: 1px solid #e5e7eb; */
  box-shadow: 0 2px 8px 0 rgba(80, 120, 200, 0.06);
  border-radius: 2rem;
  padding: 0 1.5rem;
  pointer-events: auto;
  justify-content: flex-start;
}

.header-bar__section--left {
  left: 30px;
  justify-content: flex-start;
}

.header-bar__section--center {
  left: 50%;
  transform: translateX(-50%);
  justify-content: center;
}

.header-bar__section--right {
  right: 30px;
  justify-content: flex-end;
  overflow: visible;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 2.2);
}

.header-bar__section::before,
.header-bar__section::after {
  content: " ";
  pointer-events: none;
  overflow: hidden;
  isolation: isolate;
  width: 100%;
  position: absolute;
  height: 100%;
  border-radius: inherit;
  padding: 0 24px;
}

.header-bar__section--left::before,
.header-bar__section--left::after {
  margin-left: -1.5rem;
}

.header-bar__section>* {
  z-index: 2;
}

.header-bar__section::after {
  z-index: 1;
  background: rgba(255, 255, 255);
  opacity: 0.6;
}

.header-bar__section::before {
  z-index: 0;
  backdrop-filter: blur(3px);
  filter: url(#glass-distortion);
}

.header-bar__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header-bar__logo {
  color: #111;
  /* Makes both text and SVG black if SVG uses currentColor */
  text-decoration: none;
  /* Remove underline from the link */
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header-bar__logo:visited,
.header-bar__logo:active,
.header-bar__logo:hover,
.header-bar__logo:focus {
  color: #111;
  text-decoration: none;
}

.logo-image {
  color: inherit;
  /* Ensures SVG uses the parent's color if fill='currentColor' */
}

.logo-image {
  width: 28px;
  height: 28px;
  display: inline-block;
  vertical-align: middle;
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.7));
}

.logo-text {
  font-family: var(--font-heading, "Syne", sans-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: inherit;
  line-height: 1;
}

.header-bar__nav a {
  margin-left: 1.2rem;
  color: #222;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5;
  padding: 0.2rem 0.5rem;
  border-radius: 0.5rem;
  transition:
    background 0.2s,
    color 0.2s;
}

.header-bar__nav a:first-child {
  margin-left: 0;
}

.header-bar__nav a:hover {
  background: #f3f4f6;
  color: var(--color-button);
}

.header-bar__section--right {
  height: fit-content;
  padding: 0;
  min-height: 46px;
}

.header-bar__menu-wrapper {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: right;
  height: 100%;
}

.header-bar__menu-panel .header-bar__nav-link,
.header-bar__menu-panel .header-bar__nav-link:link,
.header-bar__menu-panel .header-bar__nav-link:visited,
.header-bar__menu-panel .header-bar__nav-link:active {
  display: block;
  white-space: nowrap;
  color: #222;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.3rem 0.6rem;
  border-radius: 0.5rem;
  transition:
    background 0.2s,
    color 0.2s;
}

.header-bar__menu-panel .header-bar__nav-link:hover {
  background: #f3f4f6;
  color: var(--color-button);
}

.header-bar__nav.menu {
  height: 100%;
  padding: 15px 20px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  line-height: 1;
}

.header-bar__menu-panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
  padding: 16px 24px;
  min-width: max-content;
  white-space: nowrap;
  border-radius: 2rem;
  box-shadow: 0 2px 8px 0 rgba(80, 120, 200, 0.06);
  opacity: 0;
  transform: translateY(-10px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
  pointer-events: none;
  isolation: isolate;
}

.header-bar__menu-panel::before,
.header-bar__menu-panel::after {
  content: " ";
  pointer-events: none;
  overflow: hidden;
  isolation: isolate;
  width: 100%;
  position: absolute;
  height: 100%;
  border-radius: inherit;
  top: 0;
  left: 0;
}

.header-bar__menu-panel::after {
  z-index: 1;
  background: rgba(255, 255, 255);
  opacity: 0.6;
}

.header-bar__menu-panel::before {
  z-index: 0;
  backdrop-filter: blur(3px);
  filter: url(#glass-distortion);
}

.header-bar__menu-panel>* {
  z-index: 2;
  position: relative;
}

.header-bar__section--right.is-open .header-bar__menu-panel {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* menu panel default styles */
/* height: 0;
opacity: 0;
width: 0; */

.menu-icon3 {
  width: 20px;
  height: 14px;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  transform: scale(0.8);
  margin-top: 0;
}

.menu-icon3 span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: currentColor;
  border-radius: 2px;
  opacity: 1;
  left: 0;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: 0s;
}

.menu-icon3 span:nth-child(1),
.menu-icon3 span:nth-child(4) {
  transition-duration: 0.08s;
  transition-delay: 0.12s;
}

.menu-icon3 span:nth-child(1) {
  top: 0px;
}

.menu-icon3 span:nth-child(2),
.menu-icon3 span:nth-child(3) {
  top: 6px;
}

.menu-icon3 span:nth-child(4) {
  top: 12px;
}

.header-bar__section--right.is-open .menu-icon3 span:nth-child(1),
.header-bar__section--right.is-open .menu-icon3 span:nth-child(4) {
  opacity: 0;
  transition-delay: 0s;
}

.header-bar__section--right.is-open .menu-icon3 span:nth-child(2) {
  transform: rotate(45deg);
}

.header-bar__section--right.is-open .menu-icon3 span:nth-child(3) {
  transform: rotate(-45deg);
}

/* =====================================================================
   PRICING PAGE
   ===================================================================== */

.pricing-page {
  background: #f8f7f7;
}

/* ---- Hero ---- */
.pricing-hero {
  padding: 120px 2rem 60px;
  text-align: center;
  background: #f8f7f7;
}

.pricing-hero__inner {
  max-width: 780px;
  margin: 0 auto;
}

.pricing-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.12;
  color: #000;
  margin-bottom: 1.5rem;
}

.pricing-hero__subtitle {
  font-size: 16px;
  line-height: 1.75;
  color: var(--color-supporting-text);
  margin-bottom: 2.5rem;
}

/* ---- Billing toggle ---- */
.pricing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #e8e8e8;
  border-radius: 999px;
  padding: 5px;
}

.pricing-toggle__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  background: transparent;
  color: #555;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.pricing-toggle__btn--active {
  background: #fff;
  color: #000;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.pricing-toggle__save {
  display: inline-block;
  background: var(--color-brand-teal);
  color: #000;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 999px;
}

/* ---- Pricing Cards ---- */
.pricing-cards-section {
  padding: 48px 2rem 80px;
}

.pricing-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-card {
  background: #fff;
  border: 1.5px solid #e5e5e5;
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: box-shadow 0.2s;
}

.pricing-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.pricing-card--featured {
  border-color: #000;
}

.pricing-card__name-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.pricing-card__name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.2;
  color: #000;
  margin: 0;
}

.pricing-card__badge {
  display: inline-block;
  background: var(--color-brand-teal);
  color: #000;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 999px;
}

.pricing-card__desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--color-supporting-text);
  margin-top: 10px;
  margin-bottom: 0;
}

.pricing-card__price-wrap {
  margin-top: 24px;
  margin-bottom: 20px;
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.pricing-card__currency {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: #000;
  align-self: flex-start;
  margin-top: 6px;
}

.pricing-card__amount {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: #000;
  line-height: 1;
}

.pricing-card__period {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-supporting-text);
  margin-left: 2px;
}

.pricing-card__price--custom {
  align-items: center;
}

.pricing-card__custom-label {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 600;
  color: #000;
}

.pricing-card__billing-note {
  font-size: 13px;
  color: var(--color-supporting-text);
  margin-top: 4px;
}

/* CTA buttons */
.pricing-card__cta {
  display: block;
  text-align: center;
  padding: 14px 20px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
}

.pricing-card__cta:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.pricing-card__cta--dark {
  background: #000;
  color: #fff;
}

.pricing-card__cta--teal {
  background: var(--color-brand-teal);
  color: #000;
}

.pricing-card__divider {
  border: none;
  border-top: 1.5px dashed #d8d8d8;
  margin: 28px 0 20px;
}

.pricing-card__features-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}

.pricing-card__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-card__features li {
  font-size: 14px;
  line-height: 1.5;
  color: #333;
  padding-left: 22px;
  position: relative;
}

.pricing-card__feature-note {
  color: var(--color-supporting-text);
  font-size: 12px;
  margin-left: 2px;
}

.pricing-card__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 12px;
  height: 7px;
  border-left: 2px solid #1a1a1a;
  border-bottom: 2px solid #1a1a1a;
  transform: rotate(-45deg);
}

/* ---- Comparison Table ---- */
.pricing-compare-section {
  background: #fff;
  padding: 80px 2rem 100px;
}

.pricing-compare-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-compare__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: #000;
  margin-bottom: 56px;
  line-height: 1.15;
}

.pricing-compare-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-body);
}

.pricing-compare-table thead th {
  padding: 0 16px 28px;
  text-align: center;
  vertical-align: bottom;
}

.pricing-compare-table thead th:first-child {
  text-align: left;
  width: 38%;
}

.pricing-compare-table__plan-name {
  font-size: 15px;
  font-weight: 700;
  color: #000;
  margin-bottom: 6px;
}

.pricing-compare-table__plan-price {
  font-size: 13px;
  color: var(--color-supporting-text);
  line-height: 1.5;
}

.pricing-compare-table__plan-price--custom {
  max-width: 160px;
  margin: 0 auto;
}

/* Section header rows */
.pricing-compare-table__section-row td {
  padding: 0;
  background: #f8f7f7;
  border-top: 2px solid var(--color-brand-teal);
}

.pricing-compare-table__section-row--pink td {
  border-top-color: var(--color-accent);
}

.pricing-compare-table__section-row td span {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #000;
  padding: 14px 16px;
}

/* Data rows */
.pricing-compare-table tbody tr:not(.pricing-compare-table__section-row) td {
  padding: 14px 16px;
  font-size: 14px;
  color: #333;
  text-align: center;
  border-bottom: 1px solid #ebebeb;
  vertical-align: middle;
}

.pricing-compare-table tbody tr:not(.pricing-compare-table__section-row) td:first-child {
  text-align: left;
}

.pricing-compare-table__feature {
  font-weight: 500;
  color: #111;
}

.pricing-compare-table__feature-note {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: var(--color-supporting-text);
  margin-top: 3px;
  line-height: 1.5;
}

.pricing-check-icon {
  display: inline-block;
  vertical-align: middle;
}

.pricing-dash {
  font-size: 1.1rem;
  color: #aaa;
}

/* ---- Pricing FAQ ---- */
.pricing-faq-section {
  background: #f8f7f7;
}

/* ---- Responsive ---- */
@media (max-width: 960px) {
  .pricing-cards-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .pricing-compare-table thead th,
  .pricing-compare-table tbody tr:not(.pricing-compare-table__section-row) td {
    padding: 10px 8px;
    font-size: 13px;
  }

  .pricing-compare-table thead th:first-child {
    width: 30%;
  }
}

@media (max-width: 640px) {
  .pricing-hero {
    padding: 100px 1.5rem 48px;
  }

  .pricing-compare-table__plan-name {
    font-size: 12px;
  }

  .pricing-compare-table__plan-price {
    font-size: 11px;
  }
}

/* =====================
   REGISTER / WAITLIST PAGE
   ===================== */
.register-page {
  padding: 140px 24px 100px;
  min-height: 85vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f8f7f7;
}

.register-container {
  width: 100%;
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.register-status-wrap {
  margin-bottom: 2rem;
}

.register-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  font-size: 0.9rem;
  color: var(--color-header-text);
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #f59e0b;
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.6);
  position: relative;
  display: inline-block;
}

.status-dot::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.4);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.8);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

.register-hero-card {
  width: 100%;
  background: #ffffff;
  border-radius: 28px;
  padding: 3.5rem 3rem;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.06),
    0 2px 6px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.06);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.register-hero-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--color-brand-teal), var(--color-button), var(--color-accent));
}

.register-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  font-weight: 700;
  color: #000;
  margin-bottom: 1.2rem;
  letter-spacing: -0.02em;
}

.register-subtitle {
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.65;
  color: #222;
  margin-bottom: 1rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.register-description {
  font-family: var(--font-body);
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--color-supporting-text);
  margin-bottom: 2.5rem;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

/* Alert Boxes */
.register-alert {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  text-align: left;
  padding: 16px 20px;
  border-radius: 16px;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.register-alert--success {
  background: rgba(35, 249, 221, 0.12);
  border: 1px solid rgba(35, 249, 221, 0.4);
  color: #045243;
}

.register-alert--success .register-alert__icon {
  color: #058c73;
}

.register-alert--info {
  background: rgba(47, 116, 250, 0.08);
  border: 1px solid rgba(47, 116, 250, 0.3);
  color: #164096;
}

.register-alert--info .register-alert__icon {
  color: #2f74fa;
}

.register-alert--error {
  background: rgba(255, 112, 241, 0.12);
  border: 1px solid rgba(255, 112, 241, 0.4);
  color: #8c1075;
}

.register-alert--error .register-alert__icon {
  color: #d61baf;
}

.register-alert__icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.register-alert__content strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.register-alert__content p {
  font-size: 0.88rem;
  line-height: 1.45;
  margin: 0;
}

/* Form */
.register-form {
  max-width: 580px;
  margin: 0 auto;
}

.register-input-group {
  display: flex;
  align-items: center;
  background: #f4f5f7;
  border: 2px solid #e2e5eb;
  border-radius: 999px;
  padding: 6px 6px 6px 20px;
  transition: all 0.25s ease;
}

.register-input-group:focus-within {
  background: #ffffff;
  border-color: var(--color-button);
  box-shadow: 0 0 0 4px rgba(47, 116, 250, 0.15);
}

.register-input-icon {
  display: flex;
  align-items: center;
  color: #888;
  margin-right: 10px;
  flex-shrink: 0;
}

.register-input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  font-family: var(--font-body);
  font-size: 1rem;
  color: #111;
  padding: 10px 0;
}

.register-input::placeholder {
  color: #999;
}

.register-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #000000;
  color: #ffffff;
  border: none;
  border-radius: 999px;
  padding: 14px 26px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.register-button:hover {
  background: var(--color-button);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(47, 116, 250, 0.3);
}

.register-form-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--color-supporting-text);
  margin-top: 1rem;
  line-height: 1.4;
}

/* Features section */
.register-features-section {
  width: 100%;
  margin-top: 4rem;
  text-align: center;
}

.register-features-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 2rem;
}

.register-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.register-feature-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: left;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.register-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.07);
}

.register-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.04);
  color: var(--color-button);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.register-feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 0.6rem;
}

.register-feature-card p {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--color-supporting-text);
}

/* Nav CTAs */
.register-nav-ctas {
  margin-top: 3.5rem;
  text-align: center;
}

.register-nav-label {
  font-size: 0.9rem;
  color: var(--color-supporting-text);
  margin-bottom: 1rem;
}

.register-btn-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.register-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.register-link-btn--secondary {
  background: #ffffff;
  color: #000;
  border: 1px solid #e0e0e0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.register-link-btn--secondary:hover {
  border-color: #000;
  color: #000;
}

.register-link-btn--ghost {
  background: transparent;
  color: var(--color-supporting-text);
}

.register-link-btn--ghost:hover {
  color: #000;
}

@media (max-width: 820px) {
  .register-features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .register-hero-card {
    padding: 2.5rem 1.5rem;
  }

  .register-input-group {
    flex-direction: column;
    padding: 10px;
    border-radius: 20px;
    gap: 10px;
  }

  .register-input-icon {
    display: none;
  }

  .register-input {
    width: 100%;
    text-align: center;
  }

  .register-button {
    width: 100%;
    justify-content: center;
  }
}