/* ===== FOUNDER PAGE CSS ===== */

/* Prevent horizontal overflow */
* {
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
}

body {
  position: relative;
  margin: 0;
  padding: 0;
}

/* Back Button Styles */
.back-button {
  position: fixed;
  top: 2rem;
  left: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  z-index: 1000;
}

.back-button:hover {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid transparent;
  background-image: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1)), 
                    linear-gradient(to right, #7D0066, #FF0003);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(125, 0, 102, 0.6),
              0 0 40px rgba(255, 0, 3, 0.4);
}

.back-button svg {
  transition: transform 0.3s ease;
}

.back-button:hover svg {
  transform: translateX(-3px);
}

/* Founder Name Styles */
.founder-name-container {
  text-align: center;
  width: 100%;
  padding: 2rem 2rem 2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.founder-name-svg {
  width: 100%;
  max-width: 400px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Preorder Button Styles */
.preorder-button {
  position: absolute;
  right: 4rem;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  background: linear-gradient(to right, #7D0066, #FF0003);
  border: none;
  border-radius: 40px;
  color: white;
  font-family: 'Griffith', serif;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  z-index: 100;
  opacity: 0;
  margin-top: 0;
  box-shadow: 0 0 20px rgba(125, 0, 102, 0.6), 
              0 0 40px rgba(255, 0, 3, 0.4),
              0 0 60px rgba(125, 0, 102, 0.2);
}

.preorder-button.fade-in {
  animation: fadeIn 0.8s ease-in forwards;
}

.preorder-button .button-text::before {
  content: attr(data-default);
}

/* Image Section Styles */
.founder-image-section {
  width: 100%;
  max-width: 100vw;
  position: relative;
  height: 600px;
  overflow: hidden;
  opacity: 0;
}

.founder-image-section.fade-in {
  animation: fadeIn 1s ease-in forwards;
}

.founder-image-section img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Responsive Styles */
@media (max-width: 768px) {
  .back-button {
    top: 1.5rem;
    left: 1.5rem;
    width: 45px;
    height: 45px;
  }

  .founder-name-container {
    padding: 2rem 1rem;
  }

  .founder-name-svg {
    max-width: 350px;
  }

  .preorder-button {
    right: 2rem;
    padding: 0.5rem 0.875rem;
    font-size: 0.875rem;
  }

  .founder-image-section {
    height: 400px;
  }
}

@media (max-width: 480px) {
  .back-button {
    top: 1rem;
    left: 1rem;
    width: 40px;
    height: 40px;
  }

  .founder-name-container {
    padding: 1.5rem 1rem;
  }

  .founder-name-svg {
    max-width: 280px;
  }

  .preorder-button {
    position: static;
    transform: none;
    margin: 2rem auto 0;
    display: flex;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }

  .founder-image-section {
    height: 300px;
    flex-direction: column;
  }
}

/* Founder Story Section Styles */
.founder-story-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 4rem;
}

.founder-story-title {
  font-family: 'Griffith', serif;
  font-size: 4rem;
  color: white;
  text-align: left;
  margin-bottom: 3rem;
  letter-spacing: 0.02em;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1;
  opacity: 0;
}

.founder-story-title.fade-in {
  animation: fadeIn 1s ease-in forwards;
}

.founder-story-content {
  color: rgba(255, 255, 255, 0.9);
  font-family: 'jetbrains', monospace;
  font-size: 0.800rem;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto;
  opacity: 0;
}

.founder-story-content.fade-in {
  animation: fadeIn 1s ease-in forwards;
}

.founder-story-content p {
  margin-bottom: 1.5rem;
  text-align: left;
}

.founder-story-content p:last-child {
  margin-bottom: 0;
}

/* Responsive styles for founder story */
@media (max-width: 768px) {
  .founder-story-section {
    padding: 4rem 2rem;
  }

  .founder-story-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .founder-story-content {
    font-size: 1rem;
    line-height: 1.7;
  }
}

@media (max-width: 480px) {
  .founder-story-section {
    padding: 3rem 1.5rem;
  }

  .founder-story-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .founder-story-content {
    font-size: 0.9375rem;
    line-height: 1.6;
  }

  .founder-story-content p {
    margin-bottom: 1.25rem;
  }
}

/* Research Section Styles */
.research-section {
  width: 100%;
  max-width: 100vw;
  padding: 6rem 0;
  overflow: hidden;
}

.research-title {
  font-family: 'Griffith', serif;
  font-size: 4rem;
  color: white;
  text-align: center;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
  opacity: 0;
}

.research-title.fade-in {
  animation: fadeIn 1s ease-in forwards;
}

.research-image-container {
  width: 100%;
  max-width: 100vw;
  position: relative;
  height: 600px;
  overflow: hidden;
  opacity: 0;
}

.research-image-container.fade-in {
  animation: fadeIn 1s ease-in forwards;
}

.research-image-container img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* Facts Section Styles */
.facts-container {
  max-width: 1100px;
  margin: 6rem auto 0;
  padding: 0 4rem;
  line-height: 0;
}

.facts-subtitle {
  font-family: 'Billion Monoline', cursive;
  font-size: 2.5rem;
  color: white;
  text-align: left;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
  opacity: 0;
}

.facts-subtitle.fade-in {
  animation: fadeIn 1s ease-in forwards;
}

.facts-main-title {
  font-family: 'Griffith', serif;
  font-size: 5.2rem;
  color: white;
  text-align: left;
  margin-bottom: 0;
  letter-spacing: 0.02em;
  line-height: 1.1;
  opacity: 0;
}

.facts-main-title.fade-in {
  animation: fadeIn 1s ease-in forwards;
}

/* Two Column Content Section */
.two-column-content {
  max-width: 1100px;
  margin: 4rem auto 0;
  padding: 0 4rem;
  display: flex;
  gap: 3rem;
  opacity: 0;
}

.two-column-content.fade-in {
  animation: fadeIn 1s ease-in forwards;
}

.two-column-content .column {
  flex: 1;
}

.two-column-content p {
  color: rgba(255, 255, 255, 0.9);
  font-family: 'jetbrains', monospace;
  font-size: 0.800rem;
  line-height: 1.8;
  text-align: left;
}

.two-column-content p + p {
  margin-top: 2rem;
}

/* Responsive styles for research section */
@media (max-width: 768px) {
  .research-section {
    padding: 4rem 0;
  }

  .research-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    padding: 0 2rem;
  }

  .research-image-container {
    height: 400px;
  }

  .facts-container {
    margin: 4rem auto 0;
    padding: 0 2rem;
  }

  .facts-subtitle {
    font-size: 1.8rem;
  }

  .facts-main-title {
    font-size: 3rem;
  }

  .two-column-content {
    margin: 3rem auto 0;
    padding: 0 2rem;
    flex-direction: column;
    gap: 2rem;
  }

  .two-column-content p {
    font-size: 0.875rem;
  }
}

@media (max-width: 480px) {
  .research-section {
    padding: 3rem 0;
  }

  .research-title {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    padding: 0 1.5rem;
  }

  .research-image-container {
    height: 300px;
  }

  .facts-container {
    margin: 3rem auto 0;
    padding: 0 1.5rem;
  }

  .facts-subtitle {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }

  .facts-main-title {
    font-size: 2rem;
  }

  .two-column-content {
    margin: 2rem auto 0;
    padding: 0 1.5rem;
    flex-direction: column;
    gap: 1.5rem;
  }

  .two-column-content p {
    font-size: 0.8125rem;
  }
}

/* On Medium Section */
.on-medium-section {
  width: 100%;
  max-width: 1200px;
  padding: 8rem 4rem;
  margin: 0 auto;
  overflow: hidden;
}

.on-medium-title {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
  opacity: 0;
}

.on-medium-title.fade-in {
  animation: fadeIn 1s ease-in forwards;
}

.on-text {
  font-family: 'Griffith', serif;
  font-size: 5rem;
  color: white;
  letter-spacing: -0.02em;
  line-height: 1;
}

.medium-logo {
  height: 3.5rem;
  width: auto;
  display: block;
  opacity: 0.9;
}

.on-medium-text {
  color: rgba(255, 255, 255, 0.8);
  font-family: 'jetbrains', monospace;
  font-size: 0.875rem;
  line-height: 1.8;
  text-align: left;
  max-width: 650px;
  margin: 0 0 5rem 0;
  padding-left: 1.5rem;
  border-left: 2px solid rgba(255, 255, 255, 0.2);
  opacity: 0;
}

.on-medium-text.fade-in {
  animation: fadeIn 1s ease-in forwards;
}

.medium-articles {
  margin-top: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  opacity: 0;
}

.medium-articles.fade-in {
  animation: fadeIn 1s ease-in forwards;
}

.medium-article-link {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-decoration: none;
  transition: all 0.4s ease;
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

.medium-article-link:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.article-title {
  font-family: 'Griffith', serif;
  font-size: 2.75rem;
  color: white;
  margin: 0;
  text-decoration: none;
  transition: color 0.3s ease;
  letter-spacing: -0.01em;
  line-height: 1.15;
  width: fit-content;
  position: relative;
}

/* Animated underline on hover */
.article-title::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #7D0066 0%, #FF0003 100%);
  transition: width 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.medium-article-link:hover .article-title::after {
  width: 100%;
}

.medium-article-link:hover .article-title {
  color: white;
}

.article-date {
  font-family: 'jetbrains', monospace;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  order: -1;
  transition: color 0.3s ease;
}

.medium-article-link:hover .article-date {
  color: #FF0003;
}

.article-preview {
  font-family: 'jetbrains', monospace;
  font-size: 0.875rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
  margin-top: 0;
  max-height: 0;
  max-width: 700px;
  opacity: 0;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform: translateY(-10px);
}

.medium-article-link:hover .article-preview {
  max-height: 200px;
  opacity: 1;
  margin-top: 1.5rem;
  transform: translateY(0);
}

/* Responsive styles for On Medium section */
@media (max-width: 900px) {
  .on-medium-section {
    padding: 6rem 3rem;
  }
  
  .on-text {
    font-size: 4rem;
  }
  
  .medium-logo {
    height: 3rem;
  }
  
  .article-title {
    font-size: 2.25rem;
  }
}

@media (max-width: 768px) {
  .on-medium-section {
    padding: 5rem 2rem;
  }

  .on-medium-title {
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .on-text {
    font-size: 3.5rem;
  }

  .medium-logo {
    height: 2.5rem;
  }

  .on-medium-text {
    font-size: 0.875rem;
    padding-left: 1rem;
    margin-bottom: 3rem;
    max-width: 100%;
  }

  .medium-article-link {
    padding: 2rem 0;
  }

  .article-title {
    font-size: 1.75rem;
  }

  .article-date {
    font-size: 0.7rem;
  }

  .article-preview {
    font-size: 0.8125rem;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .on-medium-section {
    padding: 4rem 1.5rem;
  }

  .on-text {
    font-size: 2.5rem;
  }

  .medium-logo {
    height: 2rem;
  }

  .on-medium-text {
    font-size: 0.8125rem;
    line-height: 1.7;
    border-left-width: 2px;
  }

  .medium-article-link {
    padding: 1.75rem 0;
  }

  .article-title {
    font-size: 1.5rem;
  }

  .article-date {
    font-size: 0.65rem;
  }

  .article-preview {
    font-size: 0.75rem;
    line-height: 1.7;
  }
  
  .medium-article-link:hover .article-preview {
    margin-top: 1rem;
  }
}

/* Date Announcement Section */
.date-announcement-section {
  width: 100%;
  max-width: 1100px;
  padding: 6rem 4rem;
  margin: 0 auto;
  overflow: hidden;
}

.announcement-title {
  font-family: 'Griffith', serif;
  font-size: 9rem;
  color: white;
  text-align: left;
  margin-bottom: 0rem;
  letter-spacing: 0.02em;
  opacity: 0;
}

.announcement-title.fade-in {
  animation: fadeIn 1s ease-in forwards;
}

.title-underline-container {
  position: relative;
  width: 100%;
  margin-bottom: 2rem;
}

.title-underline {
  width: 0%;
  height: 2px;
  background: white;
  margin: 0;
  transition: width 0.8s ease-out;
}

.title-underline.animate-line {
  width: 45%;
}

.manuscript-text {
  position: absolute;
  left: 45%;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Griffith', serif;
  font-size: 3rem;
  color: white;
  font-style: italic;
  white-space: nowrap;
  text-align: right;
  opacity: 0;
  margin: 0;
  padding: 0;
}

.manuscript-text.fade-in {
  animation: fadeIn 1s ease-in forwards;
}

.announcement-text {
  color: rgba(255, 255, 255, 0.9);
  font-family: 'jetbrains', monospace;
  font-size: 0.800rem;
  line-height: 1.8;
  text-align: left;
  max-width: 45%;
  margin: 0;
  opacity: 0;
}

.announcement-text.fade-in {
  animation: fadeIn 1s ease-in forwards;
}

/* Responsive styles for date announcement */
@media (max-width: 1200px) {
  .title-underline.animate-line {
    width: 45%;
  }

  .manuscript-text {
    font-size: 3rem;
    left: 45%;
  }

  .announcement-text {
    max-width: 45%;
  }
}

@media (max-width: 1040px) {
  .announcement-title {
    font-size: 6rem;
  }
}

@media (max-width: 768px) {
  .date-announcement-section {
    padding: 4rem 2rem;
  }

  .announcement-title {
    font-size: 4.5rem;
  }

  .title-underline {
    width: 0%;
  }

  .title-underline.animate-line {
    width: 60%;
  }

  .manuscript-text {
    font-size: 2rem;
    left: 60%;
  }

  .announcement-text {
    max-width: 60%;
    font-size: 0.875rem;
  }
}

@media (max-width: 650px) {
  .date-announcement-section {
    padding: 3rem 2rem;
  }

  .announcement-title {
    font-size: 3rem;
    line-height: 1.1;
  }

  .title-underline-container {
    margin-bottom: 2.5rem;
  }

  .title-underline {
    width: 0%;
    height: 2px;
  }

  .title-underline.animate-line {
    width: 100%;
  }

  .manuscript-text {
    position: static;
    transform: none;
    font-size: 2.5rem;
    text-align: left;
    display: block;
    margin-top: 1rem;
  }

  .announcement-text {
    max-width: 100%;
    font-size: 0.875rem;
  }

  .highlighted-announcement {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .date-announcement-section {
    padding: 2.5rem 1.5rem;
  }

  .announcement-title {
    font-size: 2.2rem;
  }

  .title-underline-container {
    margin-bottom: 2rem;
  }

  .manuscript-text {
    font-size: 1.8rem;
    margin-top: 0.75rem;
  }

  .announcement-text {
    font-size: 0.75rem;
    line-height: 1.7;
  }

  .highlighted-announcement p {
    font-size: 0.75rem;
    line-height: 1.9;
    padding: 0.25rem 0.4rem;
  }
}

/* Highlighted Announcement */
.highlighted-announcement {
  margin-top: 3rem;
  max-width: 45%;
  opacity: 0;
}

.highlighted-announcement.fade-in {
  animation: fadeIn 1s ease-in forwards;
}

.highlighted-announcement p {
  color: white;
  font-family: 'jetbrains', monospace;
  font-size: 0.800rem;
  line-height: 2.2;
  text-align: left;
  margin: 0;
  background: linear-gradient(to right, #7D0066, #FF0003);
  padding: 0.3rem 0.5rem;
  width: fit-content;
  display: inline;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.highlighted-announcement p + p {
  margin-top: 0.8rem;
}

/* Responsive styles for highlighted announcement */
@media (max-width: 768px) {
  .highlighted-announcement {
    max-width: 70%;
    margin-top: 2rem;
  }

  .highlighted-announcement p {
    font-size: 0.875rem;
  }
}

@media (max-width: 480px) {
  .highlighted-announcement {
    max-width: 80%;
    margin-top: 1.5rem;
  }

  .highlighted-announcement p {
    font-size: 0.75rem;
    line-height: 1.9;
    padding: 0.25rem 0.4rem;
  }
}

/* Mobile Preorder Section */
.mobile-preorder-section {
  display: none;
  position: static !important;
  width: 100%;
  background: linear-gradient(to right, #7D0066, #FF0003);
  padding: 0.75rem 1.5rem;
  text-align: center;
  box-shadow: 0 0 20px rgba(125, 0, 102, 0.6),
              0 0 40px rgba(255, 0, 3, 0.4),
              0 0 60px rgba(125, 0, 102, 0.2);
  cursor: pointer;
  transition: transform 0.2s ease;
  transform: none !important;
  margin: 0 !important;
  border-radius: 0 !important;
}

.mobile-preorder-section:active {
  transform: scale(0.98) !important;
}

.mobile-preorder-content {
  max-width: 100%;
}

.mobile-preorder-title {
  font-family: 'Griffith', serif;
  font-size: 1.5rem;
  color: white;
  margin: 0;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.mobile-preorder-subtitle {
  font-family: 'jetbrains', monospace;
  font-size: 0.625rem;
  color: white;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: normal;
}

@media (max-width: 550px) {
  .preorder-button {
    display: none;
  }

  .mobile-preorder-section {
    display: block;
    opacity: 1 !important;
  }

  .mobile-preorder-title {
    font-size: 1.6rem;
  }

  .mobile-preorder-subtitle {
    font-size: 0.875rem;
  }
}

/* ===== PRE-ORDER MODAL STYLES ===== */

/* Modal Overlay */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 10000;
  overflow-y: auto;
}

.modal.active {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 2rem;
  padding-top: 5rem;
}

/* Modal Content Container */
.modal-content {
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  max-width: 600px;
  width: 100%;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Close Button */
.close-modal {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.close-modal:hover {
  background: rgba(255, 0, 0, 0.1);
  border-color: rgba(255, 0, 0, 0.3);
}

.close-modal svg {
  color: white;
}

/* Form Content */
.form-content {
  padding: 4rem 3rem 2.5rem;
}

/* Pre-order Counter */
.preorder-counter {
  text-align: center;
  margin-bottom: 1.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(to right, rgba(125, 0, 102, 0.15), rgba(255, 0, 3, 0.15));
  border-radius: 8px;
  border: 1px solid rgba(125, 0, 102, 0.3);
}

.counter-label {
  font-family: 'jetbrains', monospace;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin-right: 0.5rem;
}

.counter-number {
  font-family: 'jetbrains', monospace;
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(to right, #7D0066, #FF0003);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.form-title {
  font-family: 'Griffith', serif;
  font-size: 2.5rem;
  color: white;
  margin: 0 0 0.5rem 0;
  letter-spacing: 0.02em;
}

.form-subtitle {
  font-family: 'jetbrains', monospace;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 2rem 0;
  line-height: 1.6;
}

/* Form Styles */
#preorder-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Form Group */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.form-group:last-child {
  margin-bottom: 0;
}

.form-group label {
  font-family: 'jetbrains', monospace;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.required {
  color: #ff4444;
}

.optional {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
}

/* Input Fields */
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: white;
  font-family: 'jetbrains', monospace;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus,
.form-group textarea:focus {
  outline: none;
  border-color: white;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

/* Error State */
.form-group input.error,
.form-group textarea.error {
  border-color: #ff4444;
  background: rgba(255, 68, 68, 0.05);
}

.error-message {
  display: none;
  font-family: 'jetbrains', monospace;
  font-size: 0.75rem;
  color: #ff4444;
  margin-top: -0.25rem;
}

/* Checkbox Group */
.checkbox-group {
  margin-top: 0.5rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-family: 'jetbrains', monospace;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  user-select: none;
}

.checkbox-label input[type="checkbox"] {
  margin-top: 0.25rem;
  width: 18px;
  height: 18px;
  min-width: 18px;
  cursor: pointer;
  accent-color: #2DFF00;
  flex-shrink: 0;
  appearance: auto;
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
}

.checkbox-label span {
  cursor: pointer;
}

/* Submit Button */
.submit-btn {
  width: 100%;
  padding: 1rem;
  background: white;
  border: none;
  border-radius: 8px;
  color: black;
  font-family: 'Griffith', serif;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.submit-btn:hover {
  background: linear-gradient(to right, #7D0066, #FF0003);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(125, 0, 102, 0.6), 0 0 40px rgba(255, 0, 3, 0.4);
}

.submit-btn:active {
  transform: translateY(0);
}

.submit-btn:disabled {
  background: rgba(255, 255, 255, 0.3);
  cursor: not-allowed;
  transform: none;
}

.submit-btn.loading {
  position: relative;
  color: transparent;
}

.submit-btn.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-top-color: black;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Form Note */
.form-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'jetbrains', monospace;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.5rem;
  line-height: 1.5;
}

.form-note svg {
  flex-shrink: 0;
  opacity: 0.5;
}

/* Success/Error Messages */
.form-message {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 8px;
  font-family: 'jetbrains', monospace;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-10px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.success-message {
  text-align: center;
  padding: 3rem 2rem;
}

.success-message .success-name {
  font-family: 'jetbrains', monospace;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.success-message h3 {
  font-family: 'Griffith', serif;
  font-size: 2rem;
  color: white;
  margin-bottom: 1rem;
  font-weight: 400;
}

.success-message p {
  font-family: 'jetbrains', monospace;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.error-message-box {
  background: rgba(255, 68, 68, 0.1);
  border: 1px solid rgba(255, 68, 68, 0.3);
  color: #ff4444;
}

.form-message svg {
  flex-shrink: 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .modal.active {
    padding: 1rem;
    padding-bottom: 2rem;
  }

  .form-content {
    padding: 2.5rem 2rem 2rem;
  }

  .form-title {
    font-size: 2rem;
  }

  .form-subtitle {
    font-size: 0.8125rem;
  }

  .close-modal {
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 480px) {
  .modal.active {
    padding: 0.5rem;
    padding-bottom: 2rem;
    align-items: flex-start;
  }

  .modal-content {
    margin-top: 1rem;
    margin-bottom: 1rem;
    border-radius: 12px;
  }

  .form-content {
    padding: 2rem 1.5rem 1.5rem;
  }

  .form-title {
    font-size: 1.75rem;
  }

  .form-subtitle {
    font-size: 0.75rem;
    margin-bottom: 1.5rem;
  }

  #preorder-form {
    gap: 1.25rem;
  }

  .form-group label {
    font-size: 0.8125rem;
  }

  .form-group input[type="text"],
  .form-group input[type="email"],
  .form-group input[type="tel"],
  .form-group textarea {
    padding: 0.75rem 0.875rem;
    font-size: 0.8125rem;
  }

  .checkbox-label {
    font-size: 0.75rem;
  }

  .submit-btn {
    padding: 0.875rem;
    font-size: 1rem;
  }

  .form-note {
    font-size: 0.6875rem;
  }

  .close-modal {
    top: 0.75rem;
    right: 0.75rem;
    width: 32px;
    height: 32px;
  }
}

/* Hidden honeypot field */
.hidden {
  display: none !important;
}

/* ===== MULTI-STEP FORM STYLES ===== */

/* Progress Indicator */
.progress-indicator {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 2rem 0 2.5rem;
  padding: 0 1rem;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'jetbrains', monospace;
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}

.progress-step.active .step-number {
  background: linear-gradient(to right, #7D0066, #FF0003);
  border: none;
  color: white;
  box-shadow: 0 0 20px rgba(125, 0, 102, 0.6), 0 0 40px rgba(255, 0, 3, 0.4);
}

.progress-step.completed .step-number {
  background: linear-gradient(to right, rgba(125, 0, 102, 0.2), rgba(255, 0, 3, 0.2));
  border: 1px solid rgba(125, 0, 102, 0.5);
  color: rgba(255, 255, 255, 0.8);
}

.step-label {
  font-family: 'jetbrains', monospace;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s ease;
}

.progress-step.active .step-label {
  background: linear-gradient(to right, #7D0066, #FF0003);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.progress-step.completed .step-label {
  color: rgba(255, 255, 255, 0.7);
}

.progress-line {
  flex: 1;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 0.5rem;
  position: relative;
  top: -15px;
}

/* Form Steps */
.form-step {
  display: none;
  animation: slideInUp 0.4s ease;
}

.form-step.active {
  display: block;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Button Group */
.button-group {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

/* Navigation Buttons */
.next-btn,
.prev-btn {
  flex: 1;
  padding: 1rem;
  border: none;
  border-radius: 8px;
  font-family: 'Griffith', serif;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.next-btn {
  background: white;
  color: black;
  width: 100%;
}

.next-btn:hover {
  background: linear-gradient(to right, #7D0066, #FF0003);
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(125, 0, 102, 0.6), 0 0 40px rgba(255, 0, 3, 0.4);
}

.prev-btn {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.prev-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.next-btn:disabled,
.prev-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .progress-indicator {
    padding: 0 0.5rem;
  }

  .step-number {
    width: 32px;
    height: 32px;
    font-size: 0.875rem;
  }

  .step-label {
    font-size: 0.625rem;
  }

  .progress-line {
    margin: 0 0.25rem;
  }

  .button-group {
    flex-direction: column;
  }

  .next-btn,
  .prev-btn {
    width: 100%;
  }
}

/* Payment Summary Styles */
.payment-summary {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.summary-title {
  font-family: 'Griffith', serif;
  font-size: 1.5rem;
  color: white;
  margin: 0 0 1.5rem 0;
  letter-spacing: 0.02em;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  font-family: 'jetbrains', monospace;
  font-size: 0.875rem;
}

.summary-item .item-label {
  color: rgba(255, 255, 255, 0.7);
}

.summary-item .item-value {
  color: white;
  font-weight: 500;
}

.summary-item.discount .item-value {
  color: #2DFF00;
}

.summary-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0.5rem 0;
}

.summary-item.total {
  padding: 1rem 0 0 0;
  font-size: 1.125rem;
  font-weight: 600;
}

.summary-item.total .item-label {
  color: white;
}

.summary-item.total .item-value {
  background: linear-gradient(to right, #7D0066, #FF0003);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.5rem;
}

.delivery-info {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.delivery-info .info-label {
  font-family: 'jetbrains', monospace;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 0.5rem 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.delivery-info .info-value {
  font-family: 'jetbrains', monospace;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.6;
}

/* Responsive payment summary */
@media (max-width: 480px) {
  .payment-summary {
    padding: 1.5rem;
  }

  .summary-title {
    font-size: 1.25rem;
  }

  .summary-item {
    font-size: 0.8125rem;
  }

  .summary-item.total {
    font-size: 1rem;
  }

  .summary-item.total .item-value {
    font-size: 1.25rem;
  }
}

/* ===== PRE-ORDER PAUSED MESSAGE STYLES ===== */

.preorder-paused-message {
  text-align: center;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.paused-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.paused-icon svg {
  color: rgba(255, 255, 255, 0.7);
}

.preorder-paused-message h3 {
  font-family: 'Griffith', serif;
  font-size: 2rem;
  color: white;
  margin: 0;
  letter-spacing: 0.02em;
}

.preorder-paused-message p {
  font-family: 'jetbrains', monospace;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  max-width: 450px;
  margin: 0;
}

.paused-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'jetbrains', monospace;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.paused-note svg {
  flex-shrink: 0;
  opacity: 0.7;
}

/* Notification Form Styles */
.notify-form {
  width: 100%;
  max-width: 450px;
  margin: 0.5rem 0;
}

.notify-input-group {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.notify-form input[type="email"] {
  flex: 1;
  padding: 0.875rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  font-family: 'jetbrains', monospace;
  font-size: 0.875rem;
  color: white;
  transition: all 0.3s ease;
}

.notify-form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.notify-form input[type="email"]:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
}

.notify-form input[type="email"].error {
  border-color: #ff4444;
}

.notify-btn {
  padding: 0.875rem 1.5rem;
  background: white;
  border: none;
  border-radius: 8px;
  font-family: 'jetbrains', monospace;
  font-size: 0.875rem;
  font-weight: 600;
  color: black;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.notify-btn:hover:not(:disabled) {
  background: linear-gradient(to right, #7D0066, #FF0003);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(125, 0, 102, 0.6), 0 0 40px rgba(255, 0, 3, 0.4);
}

.notify-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.notify-btn.loading {
  opacity: 0.8;
}

.notify-btn svg {
  width: 16px;
  height: 16px;
}

.notify-error {
  display: none;
  font-family: 'jetbrains', monospace;
  font-size: 0.75rem;
  color: #ff4444;
  margin-top: 0.5rem;
  text-align: left;
}

.notify-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(45, 255, 0, 0.1);
  border: 1px solid rgba(45, 255, 0, 0.3);
  border-radius: 12px;
  animation: slideInUp 0.4s ease;
}

.notify-success svg {
  color: #2DFF00;
}

.notify-success p {
  font-family: 'jetbrains', monospace;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  text-align: center;
}

/* Responsive styles for paused message */
@media (max-width: 768px) {
  .preorder-paused-message {
    padding: 2.5rem 1.5rem;
  }

  .paused-icon {
    width: 64px;
    height: 64px;
  }

  .paused-icon svg {
    width: 48px;
    height: 48px;
  }

  .preorder-paused-message h3 {
    font-size: 1.75rem;
  }

  .preorder-paused-message p {
    font-size: 0.8125rem;
  }

  .notify-input-group {
    flex-direction: column;
    gap: 0.5rem;
  }

  .notify-form input[type="email"] {
    width: 100%;
  }

  .notify-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .preorder-paused-message {
    padding: 2rem 1rem;
  }

  .paused-icon {
    width: 56px;
    height: 56px;
  }

  .paused-icon svg {
    width: 40px;
    height: 40px;
  }

  .preorder-paused-message h3 {
    font-size: 1.5rem;
  }

  .preorder-paused-message p {
    font-size: 0.75rem;
    line-height: 1.7;
  }

  .paused-note {
    font-size: 0.6875rem;
    padding: 0.625rem 1rem;
  }
}

/* ===== END: FOUNDER PAGE CSS ===== */
