/*
Theme Name: AI Marketing Theme
Description: An AI-powered marketing WordPress theme based on a visually striking dark design.
Author: Assistant
Version: 1.0
Test: .
*/

:root {
  --bg-dark: #000000;
  --bg-card: #32316b;
  --accent: #ff63cf;
  --text-main: #ffffff;
  --text-muted: #a2919d;
  --border-color: rgba(255, 255, 255, 0.1);
  --font-heading: 'MuseoModerno', sans-serif;
  --font-family: 'Garet', 'MuseoModerno', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-dark);
  color: var(--text-main);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s;
}

ul {
  list-style: none;
}

/* 1440px Wrapper */
.container-1440 {
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  width: 100%;
  padding-left: 140px;
  /* offset for sidebar */
  padding-right: 60px;
}

/* Base Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  font-size: 48px;
  margin-bottom: 20px;
}

.section-padding {
  padding: 100px 0;
}

.text-accent {
  color: var(--accent);
}

/* Vertical Sidebar */
.vertical-sidebar {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: 90px;
  border-right: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 50px 0;
  z-index: 100;
  background-color: transparent;
}

.vertical-text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 11px;
  letter-spacing: 2.5px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 15px;
  text-transform: uppercase;
  font-family: var(--font-heading);
}

.vertical-text .square-bullet {
  width: 6px;
  height: 6px;
  border: 1.5px solid var(--accent);
  display: inline-block;
  transform: rotate(180deg);
}

.vertical-pagination {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
  font-family: var(--font-heading);
}

.vertical-pagination .dot {
  width: 8px;
  height: 8px;
  border: 1px solid var(--text-muted);
  border-radius: 2px;
  opacity: 0.5;
}

/* Top Header */
.top-header {
  background-color: var(--bg-dark);
  z-index: 999;
  position: relative;
  width: 100%;
  border-bottom: 1px solid var(--border-color);
}

.top-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

/* Header */
.site-header {
  width: 100%;
  border-bottom: 1px solid var(--border-color);
}

.new-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
  width: 100%;
}

.new-nav ul {
  display: flex;
  gap: 35px;
}

.new-nav a {
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  color: #fff;
}

.new-nav .plus {
  color: var(--accent);
  font-weight: 700;
  font-size: 18px;
}

.site-logo-left {
  display: flex;
  align-items: center;
}

.site-logo-left .astra-logo {
  display: flex;
  align-items: center;
  color: #fff;
}

.header-right-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.social-links {
  display: flex;
  gap: 15px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-heading);
}

.social-links a:hover {
  color: var(--accent);
}

.contact-email {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-heading);
}

.menu-trigger {
  cursor: pointer;
  background: rgba(255, 255, 255, 0.03);
  padding: 12px 14px;
  border-radius: 4px;
  display: flex;
  transition: all 0.3s;
}

.menu-trigger:hover {
  background: rgba(255, 99, 207, 0.1);
}

/* NEW HERO AREA */
.new-hero {
  padding: 80px 0 120px;
  position: relative;
}


.bg-shape.right-waves {
  position: absolute;
  right: -50px;
  bottom: -20px;
  width: 500px;
  height: 500px;
  background-image: repeating-radial-gradient(circle at 100% 100%, transparent, transparent 18px, rgba(255, 99, 207, 0.4) 19px, rgba(255, 99, 207, 0.4) 20px);
  border-radius: 100% 0 0 0;
  z-index: 0;
}

.bg-shape.twisted-square {
  position: absolute;
  right: 150px;
  bottom: 80px;
  width: 140px;
  height: 140px;
  border: 1px solid var(--border-color);
  border-radius: 30px;
  transform: rotate(45deg);
  z-index: 0;
  box-shadow: inset 0 0 50px rgba(255, 255, 255, 0.01);
}

.hero-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
  margin-top: 50px;
}

.hero-left-content {
  flex: 1;
  position: relative;
}


.new-title {
  font-size: clamp(46px, 6vw, 104px);
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -3px;
  margin-bottom: 60px;
  font-family: var(--font-heading);
  z-index: 10;
  color: rgb(255, 255, 255);
  position: relative;
  width: 100%; max-width: 1400px;
  text-align: left;
  white-space: nowrap;
}

.new-title .line1 {
  display: flex;
  align-items: center;
  gap: 20px;
}

.new-title .pill-image {
  width: clamp(140px, 12vw, 200px);
  height: clamp(50px, 4.5vw, 75px);
  border-radius: 100px;
  overflow: hidden;
  display: inline-block;
  vertical-align: middle;
  transform: translateY(-5px);
}

.new-title .pill-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.new-title .outline-text {
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.25);
}

/* Animations Reveal */
.reveal-text {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUpReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: var(--delay, 0s);
}

@keyframes fadeUpReveal {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal-left {
  opacity: 0;
  clip-path: inset(-40px 100% -40px -40px);
  transform: translateX(-80px);
  animation: popFromLeftHole 1.4s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  animation-delay: var(--delay, 0s);
}

@keyframes popFromLeftHole {
  0% {
    opacity: 0;
    clip-path: inset(-40px 100% -40px -40px);
    transform: translateX(-80px);
  }

  15% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    clip-path: inset(-40px -40px -40px -40px);
    transform: translateX(0);
  }
}

.reveal-flip-right {
  opacity: 0;
  animation: flipRightAnim 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
  animation-delay: var(--delay, 0s);
  transform-style: preserve-3d;
}

@keyframes flipRightAnim {
  0% {
    opacity: 0;
    transform: perspective(800px) rotateY(-90deg) scale(0.9);
  }

  100% {
    opacity: 1;
    transform: perspective(800px) rotateY(0deg) scale(1);
  }
}

/* Button */
.button-bracket {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 15px 35px 15px 25px;
  border: 1px solid var(--accent);
  position: relative;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  background: transparent;
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
}

.button-bracket:hover {
  background: rgba(255, 99, 207, 0.05);
}

.button-bracket .accent-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.button-bracket .accent-icon i,
.button-bracket .accent-icon svg {
  color: var(--accent);
  font-size: 18px;
}

.button-bracket span[class^="b-"] {
  position: absolute;
  box-sizing: border-box;
  width: 7px;
  height: 7px;
  border: 1px solid var(--accent);
  background: var(--bg-dark);
}

.b-tl {
  top: -4px;
  left: -4px;
}

.b-tr {
  top: -4px;
  right: -4px;
}

.b-bl {
  bottom: -4px;
  left: -4px;
}

.b-br {
  bottom: -4px;
  right: -4px;
}

.circular-badge-wrap {
  position: relative;
  width: 180px;
  height: 180px;
  margin-right: 150px;
  cursor: pointer;
}

.circular-badge {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: spin 15s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.badge-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  pointer-events: none;
  width: 55px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.badge-icon {
  position: absolute;
}

.badge-icon-base {
  color: rgba(255, 255, 255, 0.08);
  transition: all 0.4s ease;
  transform: scale(1);
}

.badge-icon-ripple {
  color: rgba(255, 255, 255, 0.08);
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.5s ease-out, color 0.2s ease;
  transform: scale(1);
  opacity: 1;
}

.circular-badge-wrap:hover .badge-center .badge-icon-base {
  color: var(--accent);
  filter: drop-shadow(0 0 15px rgba(255, 99, 207, 0.5));
}

.circular-badge-wrap:hover .badge-center .badge-icon-ripple {
  transform: scale(2.5);
  opacity: 0;
  color: var(--accent);
}

/* Sponsors */
.sponsors {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.brand-logo {
  display: block;
  font-size: 28px;
  color: var(--text-muted);
  opacity: 0.6;
  cursor: pointer;
  height: 60px;
  overflow: hidden;
  transition: opacity 0.3s ease;
}

.brand-logo[title="GoHighLevel"] {
  font-family: "Poppins", "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 700;
}

.brand-logo[title="Microsoft"] {
  font-family: "Segoe UI", Arial, sans-serif;
  font-weight: 600;
}

.brand-logo[title="Google"] {
  font-family: "Product Sans", "Google Sans", Arial, sans-serif;
  font-weight: 500;
  letter-spacing: -0.5px;
}

.brand-logo[title="Claude"] {
  font-family: "Signifier", "Playfair Display", "Times New Roman", serif;
  font-weight: 400;
  font-size: 30px;
}

.brand-logo[title="ChatGPT"] {
  font-family: "Söhne", "Inter", "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
  letter-spacing: -0.3px;
}

.brand-logo:hover {
  opacity: 1;
}

.logo-flipper {
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.brand-logo:hover .logo-flipper {
  transform: translateY(-60px);
}

.logo-face {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 60px;
}

.logo-face.back {
  color: var(--accent);
}

.logo-face svg,
.logo-face i {
  font-size: 34px;
  width: 34px;
  height: 34px;
}

/* About Section */
.about-section {
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin-top: 40px;
}

.about-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.about-top-left {
  max-width: 800px;
}

.about-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
  font-family: var(--font-heading);
}

.about-heading {
  font-size: 56px;
  line-height: 1.1;
  color: var(--text-main);
  font-family: var(--font-heading);
  font-weight: 700;
}

.about-bottom {
  display: flex;
  align-items: stretch;
  gap: 60px;
}

.about-bottom-left.images-grid {
  flex: 1;
  position: relative;
}

.images-grid .image-box {
  border-radius: 10px;
  overflow: hidden;
  position: absolute;
}

.images-grid .image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.images-grid .img-small {
  width: 45%;
  height: 80%;
  left: 0;
  bottom: 80px;
  z-index: 2;
  box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.4);
}

.images-grid .img-large {
  width: 50%;
  height: 100%;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.about-bottom-right.content-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.content-text p {
  color: var(--text-main);
  font-size: 17px;
  line-height: 1.6;
}

.systems-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin: 10px 0;
  list-style: none;
  padding: 0;
}

.systems-list li {
  position: relative;
  overflow: hidden;
  color: var(--text-main);
  font-size: 15px;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.05);
  cursor: default;
  transition: color 0.7s ease;
  z-index: 1;
}

.systems-list li::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: var(--accent);
  transform: translateX(-100%) skewX(-30deg);
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.systems-list li:hover {
  color: #000000;
}

.systems-list li:hover::before {
  transform: translateX(0) skewX(-30deg);
}

.about-action {
  margin-top: 20px;
}

/* Footer Section */
.footer {
  border-top: 1px solid var(--border-color);
  padding: 80px 0 30px;
  margin-top: 100px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}

.footer-subscribe {
  display: flex;
  gap: 10px;
}

.footer-subscribe input {
  padding: 15px 20px;
  border-radius: 30px;
  border: 1px solid var(--border-color);
  background-color: transparent;
  color: white;
  width: 300px;
  outline: none;
}

.footer-subscribe button {
  padding: 15px 30px;
  border-radius: 30px;
  background-color: var(--accent);
  color: var(--bg-dark);
  border: none;
  font-weight: 600;
  font-family: var(--font-heading);
  cursor: pointer;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul a {
  color: var(--text-muted);
  font-size: 14px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
  color: var(--text-muted);
  font-size: 14px;
}

/* Astra Effect Section */
.astra-effect-section {
  padding-top: 100px;
  padding-bottom: 60px;
}

.effect-header {
  text-align: center;
  margin-bottom: 60px;
}

.effect-title {
  font-size: 56px;
  font-family: var(--font-heading);
  font-weight: 700;
  margin-top: 10px;
}

.comparison-wrapper {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

.after-glow {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
  background: var(--accent);
  filter: blur(150px);
  opacity: 0.15;
  z-index: 0;
  pointer-events: none;
}

.comparison-container {
  display: flex;
  position: relative;
  z-index: 1;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(20px);
  overflow: hidden;
}

.comparison-col {
  flex: 1;
  padding: 50px 40px;
}

.before-col {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(0, 0, 0, 0) 100%);
  border-right: 1px solid var(--border-color);
}

.after-col {
  background: linear-gradient(180deg, rgba(255, 99, 207, 0.05) 0%, rgba(0, 0, 0, 0) 100%);
  box-shadow: inset 0 200px 200px -200px rgba(255, 99, 207, 0.15);
}

.col-header {
  text-align: center;
  margin-bottom: 40px;
}

.before-col .col-header h3 {
  font-size: 32px;
  color: var(--text-main);
  font-family: var(--font-heading);
}

.after-col .col-header h3 {
  font-size: 32px;
  color: var(--accent);
  font-family: var(--font-heading);
}

.col-header p {
  font-size: 16px;
  color: var(--text-main);
  margin-top: 5px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.comparison-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.comparison-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-muted);
  transition: transform 0.3s ease, color 0.3s ease;
  min-height: 50px;
}

.after-col .comparison-list li {
  color: var(--text-main);
}

.comparison-list li:hover {
  transform: translateX(5px);
}

.icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  border-radius: 50%;
  margin-top: 2px;
}

.cross-icon {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
}

.check-icon {
  background: rgba(255, 99, 207, 0.15);
  color: var(--accent);
}

.vs-badge {
  position: absolute;
  left: 50%;
  top: 60px;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: var(--bg-dark);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--text-main);
  z-index: 10;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.effect-footer {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}

.punchline-box {
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  padding: 50px 80px;
  border-radius: 10px;
  max-width: 800px;
  position: relative;
  overflow: hidden;
}

.punchline-box p {
  font-size: 24px;
  font-weight: 500;
  color: var(--text-main);
  margin: 10px 0;
}

.highlight-bar {
  width: 60px;
  height: 4px;
  background: var(--accent);
  margin: 25px auto;
  border-radius: 2px;
}

.punchline-box .final-punch {
  font-size: 32px;
  color: var(--accent);
  text-shadow: 0 0 20px rgba(255, 99, 207, 0.4);
  font-family: var(--font-heading);
}

/* Hospitality AI Section */
.hospitality-section {
  padding: 120px 0;
  background: rgba(255, 255, 255, 0.01);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  margin-top: 80px;
}

.hosp-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 80px;
  padding: 0 40px;
}

.hosp-left {
  flex: 1.2;
}

.hosp-title {
  font-size: 64px;
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.1;
  margin: 15px 0 20px;
}

.hosp-title .wave-word {
  background: linear-gradient(135deg, #fff 0%, #a2919d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hosp-subtitle {
  font-size: 22px;
  color: var(--text-muted);
  font-weight: 400;
  margin-bottom: 50px;
}

.hosp-built-for h3 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-main);
  margin-bottom: 25px;
  font-weight: 700;
  opacity: 0.8;
}

.hosp-built-for {
  margin-bottom: 30px;
}

.hosp-punch-text {
  font-size: 26px;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--accent);
  margin-top: 40px;
  padding: 25px 35px;
  background: rgba(255, 99, 207, 0.03);
  border-left: 4px solid var(--accent);
  border-radius: 0 15px 15px 0;
  box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.2);
}

.hosp-right {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.hosp-img-wrap {
  width: 100%;
  max-width: 550px;
  height: 600px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  z-index: 2;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border-color);
}

.hosp-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hosp-glow {
  position: absolute;
  right: -50px;
  bottom: -50px;
  width: 300px;
  height: 300px;
  background: var(--accent);
  filter: blur(100px);
  opacity: 0.15;
  z-index: 1;
  pointer-events: none;
}

/* Hospitality Stack Section */
.hosp-stack-section {
  padding: 80px 0 120px;
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
}

.stack-header {
  margin-bottom: 60px;
  text-align: center;
}

.stack-main-title {
  font-size: 48px;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-main);
}

.stack-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 0 40px;
}

.stack-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.stack-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 99, 207, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.stack-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.stack-card:hover::after {
  transform: scaleX(1);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 99, 207, 0.1);
  color: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.stack-card h3 {
  font-size: 24px;
  font-family: var(--font-heading);
  color: var(--text-main);
  margin-bottom: 25px;
  font-weight: 700;
}

.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 25px;
}

.f-tag {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 13px;
  border: 1px solid var(--border-color);
}

.stack-card p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.6;
}

.stack-card .section-label {
  font-size: 14px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-top: 5px;
  margin-bottom: 12px;
}

.mt-20 {
  margin-top: 20px !important;
}

.clean-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.clean-list li {
  position: relative;
  padding-left: 20px;
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 12px;
}

.clean-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-size: 15px;
}

.punch-p {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
  font-weight: 500;
  color: var(--text-main) !important;
}

.stack-card .systems-list {
  grid-template-columns: 1fr;
  gap: 10px;
}

/* Architecture Layers Section */
.layers-section {
  padding: 100px 0;
  max-width: 1200px;
  margin: 0 auto;
}

.layers-container {
  display: block;
}

.layers-header-wrapper {
  max-width: 800px;
  margin: 0 auto 60px;
  text-align: center;
}

.layers-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  margin: 20px auto 0;
  line-height: 1.6;
}

.layer-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.layer-item {
  position: relative;
  display: flex;
  padding: 40px;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  gap: 30px;
  transition: all 0.3s ease;
  align-items: flex-start;
}

.layer-item::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  border: 2px solid var(--accent);
  pointer-events: none;
  clip-path: inset(100% 0 0 0);
  transition: clip-path 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10;
}

.layer-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: transparent;
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.layer-item:hover::after {
  clip-path: inset(0 0 0 0);
}

.layer-icon {
  flex: 0 0 45px;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.layer-content {
  flex: 1;
}

.layer-content h3 {
  font-size: 24px;
  font-family: var(--font-heading);
  color: var(--text-main);
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.layer-sub {
  font-size: 13px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  display: block;
  margin-bottom: 20px;
}

.layer-content p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.layer-item .clean-list {
  margin-bottom: 25px;
}

.layer-content .punch-p-small {
  margin-top: 25px;
  margin-bottom: 0;
  font-weight: 500;
  color: var(--text-main);
}

.layer-number {
  flex: 0 0 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  font-weight: 700;
  font-size: 14px;
  color: var(--text-muted);
  transition: all 0.3s ease;
}

/* Hover Effects matching screenshot active states */
.layer-item:hover .layer-icon {
  color: var(--accent);
}

.layer-item:hover .layer-content h3 {
  color: var(--accent);
}

.layer-item:hover .layer-number {
  background: var(--accent);
  color: var(--bg-dark);
  border-color: var(--accent);
  transform: scale(1.1);
}

/* System Audit Section */
.audit-section {
  padding: 40px 0 80px;
}

.audit-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}

.audit-box {
  background: var(--bg-dark);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 80px;
}

.audit-left {
  flex: 0 0 auto;
  max-width: 45%;
}

.audit-tag {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.audit-tag svg {
  margin-right: 8px;
  color: var(--accent);
  fill: var(--accent);
}

.audit-title {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 40px;
  line-height: 1.25;
  color: #fff;
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.audit-subtitle {
  font-size: 16px;
  color: var(--accent);
  line-height: 1.6;
}

.audit-middle {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  padding-top: 10px;
}

.audit-label {
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
  font-size: 16px;
}

.audit-middle .clean-list li {
  font-size: 15px;
  margin-bottom: 8px;
  color: var(--text-muted);
}

.audit-desc {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  color: var(--text-main);
  line-height: 1.6;
}

.audit-right {
  flex: 0 0 auto;
  margin-left: auto;
  display: flex;
  justify-content: flex-end;
  padding-top: 10px;
}

.circle-huge-btn {
  width: 180px;
  height: 180px;
  min-width: 180px;
  min-height: 180px;
  flex-shrink: 0;
  background-color: var(--accent);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #000;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  transition: transform 0.3s ease, background 0.3s ease;
}

.circle-huge-btn svg {
  stroke-width: 1.5;
  width: 18px;
  height: 18px;
}

.circle-huge-btn:hover {
  transform: scale(1.05) rotate(5deg);
  color: #000;
  background-color: #ff85d9;
}

.circle-huge-btn-top {
  display: flex;
  align-items: center;
  gap: 5px;
}

.circle-huge-btn-bottom {
  margin-top: 2px;
}

/* Footer Styles */
.site-footer {
  background-color: var(--bg-dark);
  padding: 100px 0 40px;
  border-top: 1px solid var(--border-color);
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
}

.footer-heading {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 40px;
  letter-spacing: 1px;
}

/* Service Menu Column */
.footer-menu-list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 30px;
}

.footer-menu-list li a {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.3s ease;
}

.footer-menu-list li a:hover {
  color: var(--accent);
}

/* Working Hours Column */
.hours-group {
  display: flex;
  flex-direction: column;
}

.hours-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 8px;
}

.hours-day {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
}

.hours-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.05);
  margin: 20px 0;
  width: 100%;
}

/* Address Column */
.address-text {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

.address-text .text-accent {
  font-weight: 700;
  color: var(--accent);
  /* Mint green from the image if they prefer that, or var(--accent) */
}

/* Bottom Bar */
.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: var(--text-main);
}

.site-name-copyright {
  color: #fff;
  font-weight: 600;
}

.accent-link {
  color: var(--accent);
  font-weight: 600;
  /* Using the green from design for this link */
  text-decoration: none;
}

.footer-social-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-social-links a:hover {
  color: var(--accent);
}

/* Responsive */
@media (max-width: 991px) {

  .stack-grid,
  .layer-items {
    grid-template-columns: 1fr;
  }

  .audit-box {
    flex-direction: column;
    padding: 40px 0;
  }

  .audit-right {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .intro-section {
    flex-direction: column;
  }

  .new-title {
    font-size: 80px;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom-bar {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}

/* Wave Text Animation for H2 Elements */
.wave-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
}

h2.animate-wave .wave-word {
  animation: waveUpAnim 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
  animation-delay: calc(var(--word-index) * 0.08s);
}

/* About Page Styles */
.about-hero-inner {
  max-width: 900px;
  margin: 0 auto 40px;
  text-align: center;
}

.about-title-large {
  font-size: 80px;
  line-height: 1.1;
  margin: 20px 0;
  font-weight: 800;
  letter-spacing: -2px;
}

.about-hero-lead {
  font-size: 22px;
  color: var(--text-muted);
}

.section-padding-bottom {
  padding-bottom: 100px;
}

/* Modern Comparison Table */
.modern-comparison-table {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  overflow: hidden;
}

.comp-header-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid var(--border-color);
}

.comp-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.comp-cell {
  padding: 30px 40px;
  display: flex;
  align-items: center;
  font-size: 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.comp-cell:last-child {
  border-right: none;
}

.comp-title-cell {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
}

.header-astra.highlight-accent {
  background: var(--accent);
  color: #000;
  justify-content: center;
}

.header-traditional {
  justify-content: center;
}

.traditional-val {
  color: var(--text-muted);
  justify-content: center;
}

.astra-val {
  color: #fff;
  font-weight: 600;
  justify-content: center;
}

.astra-val.highlight-glow {
  color: var(--accent);
  text-shadow: 0 0 10px rgba(255, 99, 207, 0.3);
}

.row-label {
  color: var(--text-muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Philosophy Glass Card */
.phil-glass-card {
  max-width: 800px;
  margin: 50px auto 0;
  background: rgba(255, 255, 255, 0.03);
  padding: 40px 50px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-align: left;
  border-left: 4px solid var(--accent);
}

.phil-glass-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.pulse-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.phil-glass-desc {
  font-size: 20px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Spaceman Origin Bento Grid */
.spaceman-bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.bento-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 60px 40px;
  border-radius: 0;
  transition: background 0.4s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.bento-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px solid var(--accent);
  clip-path: inset(100% 0 0 0);
  transition: clip-path 0.4s ease-out;
  pointer-events: none;
  z-index: 3;
}

.bento-box:hover::after {
  clip-path: inset(0 0 0 0);
}

.bento-box:hover {
  background: rgba(255, 255, 255, 0.05);
}

.bento-icon {
  margin-bottom: 30px;
  color: var(--text-muted);
  transition: color 0.4s ease, transform 0.4s ease;
  transform: scale(1);
}

.bento-box:hover .bento-icon {
  color: var(--accent);
  transform: scale(1.15);
}

.bento-box h3 {
  font-size: 24px;
  font-family: var(--font-heading);
  margin-bottom: 20px;
  color: #fff;
  position: relative;
  z-index: 2;
}

.bento-box p {
  color: var(--text-muted);
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

/* Wide Bento Box (Bottom Focus) */
.bento-wide-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 60px 40px;
  border-radius: 0;
  transition: background 0.4s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 50px;
}

.bento-wide-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px solid var(--accent);
  clip-path: inset(100% 0 0 0);
  transition: clip-path 0.4s ease-out;
  pointer-events: none;
  z-index: 3;
}

.bento-wide-box:hover::after {
  clip-path: inset(0 0 0 0);
}

.bento-wide-box:hover {
  background: rgba(255, 255, 255, 0.05);
}

.bento-wide-box:hover .bento-icon {
  color: var(--accent);
  transform: scale(1.15);
}

.bento-wide-box .bento-icon {
  margin-bottom: 0;
  flex-shrink: 0;
}

.bento-wide-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 99, 207, 0.08), transparent 60%);
  pointer-events: none;
}


@media (max-width: 991px) {
  .about-title-large { font-size: 50px; }
  .comp-header-row, .comp-row { grid-template-columns: 1fr 1fr; }
  .row-label { display: none; }
  .spaceman-bento-grid { grid-template-columns: 1fr; gap: 20px; }
  .bento-wide-box { padding: 40px 20px; }
}

@keyframes waveUpAnim {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* About Page Specific Styles Added to remove inline CSS */
#about-astra-page { overflow-x: hidden; }
.about-top { display: flex; justify-content: space-between; align-items: center; text-align: left; gap: 40px; }
.about-top-left { width: 100%; max-width: 800px; }
.about-tag { font-family: var(--font-heading); display: inline-flex; margin: 0 0 20px 0; }
.about-title-main, .about-title-vision, .origin-title { 
  font-family: var(--font-heading); 
  font-size: 64px; 
  line-height: 1.1; 
  margin-bottom: 20px; 
}
.about-title-vision { 
  max-width: 900px; 
  margin: 0 auto 20px auto; 
  text-align: center; 
}
.about-desc-main { font-family: var(--font-family); font-size: 22px; color: var(--text-muted); }
.about-desc-main span { color: #fff; }
.pt-0 { padding-top: 0 !important; }
.font-bold { font-weight: 700 !important; }
.about-section-vision { border-top: 1px solid rgba(255,255,255,0.05); position: relative; }
.about-subtitle-vision { font-family: var(--font-heading); border: 1px solid var(--accent); display: inline-block; padding: 8px 20px; border-radius: 40px; font-weight: 700; font-size: 12px; letter-spacing: 1px; margin-bottom: 20px; }
.phil-glass-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 0;
  padding: 40px;
  max-width: 900px;
  margin: 60px auto 0;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: background 0.4s ease;
}

.phil-glass-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px solid var(--accent);
  clip-path: inset(100% 0 0 0);
  transition: clip-path 0.4s ease-out;
  pointer-events: none;
  z-index: 3;
}

.phil-glass-card:hover::after {
  clip-path: inset(0 0 0 0);
}

.phil-glass-card:hover {
  background: rgba(255, 255, 255, 0.05);
}

.phil-glass-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 25px; border-bottom: none; }
.phil-glass-title { font-weight: 800; font-size: 14px; color: #fff; text-transform: uppercase; letter-spacing: 1px; font-family: var(--font-heading); display: inline-block; position: relative; z-index: 4; }
.phil-glass-desc { font-family: var(--font-family); font-size: 20px; color: var(--text-muted); line-height: 1.6; position: relative; z-index: 4; }
.phil-glass-desc span { color: #fff; }
.origin-header { text-align: center; margin-bottom: 60px; }
.origin-desc { font-family: var(--font-family); font-size: 22px; color: var(--text-muted); margin-top: 20px; }
.origin-obs { font-family: var(--font-heading); font-size: 20px; color: #fff; font-weight: 700; margin-bottom: 40px; text-transform: uppercase; letter-spacing: 2px; text-align: center; }
.bento-wide-mt { margin-top: 40px; }
.bento-wide-title { font-family: var(--font-heading); font-size: 36px; margin-bottom: 20px; font-weight: 700; letter-spacing: -1px; }
.bento-wide-desc { font-family: var(--font-family); font-size: 24px; color: var(--text-muted); line-height: 1.6; }
.bento-wide-desc span { color: #fff; }
.text-center-force { text-align: center; }

/* Rotating Hero Badge */
.hero-rotating-badge {
  position: absolute;
  top: -20px;
  right: 50px;
  width: 150px;
  height: 150px;
  z-index: 20;
  border-radius: 50%;
  pointer-events: none;
}
.hero-rotating-badge svg {
  animation: badgeSpin 12s linear infinite;
  transform-origin: center;
}
@keyframes badgeSpin {
  100% { transform: rotate(360deg); }
}

/* Upgraded Punchline Grid Design */
.punchline-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.punchline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}
.punchline-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 40px 30px;
  border-radius: 0;
  transition: background 0.4s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.punchline-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px solid var(--accent);
  clip-path: inset(100% 0 0 0);
  transition: clip-path 0.4s ease-out;
  pointer-events: none;
  z-index: 3;
}
.punchline-card:hover::after {
  clip-path: inset(0 0 0 0);
}
.punchline-card:hover {
  background: rgba(255, 255, 255, 0.05);
}
.punchline-card svg {
  color: rgba(255,255,255,0.2);
  width: 44px;
  height: 44px;
  transition: color 0.4s ease, transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.punchline-card:hover svg {
  color: var(--accent);
  transform: scale(1.15);
}
.punchline-card p {
  font-family: var(--font-family);
  font-size: 20px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  margin: 0;
  transition: color 0.4s ease;
}
.punchline-card:hover p {
  color: #fff;
}
.final-punch-container {
  position: relative;
  padding-top: 50px;
}
.final-punch-container .highlight-line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.final-punch-container .final-punch-text {
  font-size: 42px;
  font-family: var(--font-heading);
  color: var(--text-muted);
  font-weight: 400;
  line-height: 1.3;
}
.final-punch-container .final-punch-text span {
  font-weight: 700;
  color: #fff;
  text-shadow: 0 0 30px rgba(255, 99, 207, 0.4);
}

@media (max-width: 900px) {
  .punchline-grid { grid-template-columns: 1fr; }
  .final-punch-container .final-punch-text { font-size: 28px; }
}
