* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body,
html {
  overflow-x: hidden;
}

:root {
  --starwoven-dark-navy: #091933;
  --starwoven-solar-amber: #ffb01f;
  --starwoven-sand-cream: #fff3d9;
  --starwoven-azure-blue: #35c3ff;
  --starwoven-graphite: #2c3541;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: var(--starwoven-dark-navy);
  color: var(--starwoven-sand-cream);
  line-height: 1.6;
  overflow-x: hidden;
}

.starwoven-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.starwoven-navigation-constellation {
  background: linear-gradient(
    135deg,
    var(--starwoven-dark-navy) 0%,
    var(--starwoven-graphite) 100%
  );
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--starwoven-azure-blue);
  position: relative;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.starwoven-nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.starwoven-logo-sector {
  display: flex;
  align-items: center;
  gap: 10px;
}

.starwoven-logo-image {
  width: 85px;
  height: 85px;
}

.starwoven-logo-text {
  font-size: 24px;
  font-weight: bold;
  color: var(--starwoven-solar-amber);
  text-shadow: 0 0 10px rgba(255, 176, 31, 0.3);
}

.starwoven-nav-galaxy {
  display: flex;
  gap: 30px;
}

.starwoven-nav-star {
  color: var(--starwoven-sand-cream);
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 5px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.starwoven-nav-star::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    var(--starwoven-azure-blue),
    transparent
  );
  transition: left 0.5s;
}

.starwoven-nav-star:hover::before {
  left: 100%;
}

.starwoven-nav-star:hover {
  color: var(--starwoven-solar-amber);
  box-shadow: 0 0 20px rgba(53, 195, 255, 0.3);
  transform: translateY(-2px);
}

.starwoven-mobile-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.starwoven-burger-line {
  width: 25px;
  height: 3px;
  background: var(--starwoven-solar-amber);
  transition: 0.3s;
}

.starwoven-hero-constellation {
  min-height: 85vh;
  background: linear-gradient(
    135deg,
    var(--starwoven-dark-navy) 0%,
    var(--starwoven-graphite) 50%,
    var(--starwoven-dark-navy) 100%
  );
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.starwoven-cosmic-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 30%,
      var(--starwoven-azure-blue) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      var(--starwoven-solar-amber) 0%,
      transparent 50%
    );
  opacity: 0.1;
  animation: starwoven-cosmic-drift 20s infinite linear;
}

@keyframes starwoven-cosmic-drift {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.1);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}

.starwoven-hero-grid {
  position: relative;
  z-index: 2;
  padding: 80px 20px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.starwoven-content-nebula {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.starwoven-stellar-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 30px;
  background: linear-gradient(
    135deg,
    var(--starwoven-solar-amber),
    var(--starwoven-azure-blue)
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(255, 176, 31, 0.3);
  line-height: normal;
}

.starwoven-hero-description {
  font-size: 1.2rem;
  margin-bottom: 50px;
  opacity: 0.9;
  line-height: 1.8;
}

.starwoven-hero-constellation-points {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.starwoven-point-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding: 20px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid var(--starwoven-azure-blue);
  transition: all 0.3s ease;
  cursor: pointer;
}

.starwoven-point-marker:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(53, 195, 255, 0.3);
}

.starwoven-point-icon {
  width: 50px;
  height: 50px;
}

.starwoven-galaxy-discovery {
  padding: 100px 0;
  background: linear-gradient(
    180deg,
    var(--starwoven-dark-navy) 0%,
    var(--starwoven-graphite) 100%
  );
}

.starwoven-section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 60px;
  color: var(--starwoven-solar-amber);
  position: relative;
}

.starwoven-section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--starwoven-azure-blue),
    var(--starwoven-solar-amber)
  );
}

.starwoven-discovery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.starwoven-discovery-card {
  background: rgba(44, 53, 65, 0.6);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  border: 1px solid var(--starwoven-azure-blue);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.starwoven-discovery-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg,
    transparent,
    var(--starwoven-azure-blue),
    transparent
  );
  opacity: 0;
  transition: opacity 0.3s;
  animation: starwoven-rotate 4s linear infinite;
}

.starwoven-discovery-card:hover::before {
  opacity: 0.1;
}

.starwoven-discovery-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(53, 195, 255, 0.2);
}

.starwoven-discovery-image {
  width: 100%;

  margin-bottom: 25px;
}

.starwoven-discovery-card h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--starwoven-solar-amber);
}

.starwoven-astral-features {
  padding: 100px 0;
  background: var(--starwoven-dark-navy);
}

.starwoven-features-constellation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.starwoven-feature-orbit {
  position: relative;
  width: 400px;
  height: 400px;
  margin: 0 auto;
}

.starwoven-orbit-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--starwoven-solar-amber),
    var(--starwoven-azure-blue)
  );
  padding: 3px;
}

.starwoven-orbit-points {
  position: relative;
  width: 100%;
  height: 100%;
}

.starwoven-orbit-point {
  position: absolute;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(44, 53, 65, 0.8);
  border-radius: 50%;
  border: 2px solid var(--starwoven-azure-blue);
  animation: starwoven-orbit 15s linear infinite;
  cursor: pointer;
  transition: all 0.3s ease;
}

.starwoven-orbit-point:nth-child(1) {
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 0s;
}

.starwoven-orbit-point:nth-child(2) {
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  animation-delay: -5s;
}

.starwoven-orbit-point:nth-child(3) {
  bottom: 10%;
  left: 10%;
  animation-delay: -10s;
}

.starwoven-orbit-point:hover {
  background: rgba(255, 176, 31, 0.2);
  transform: scale(1.1);
}

.starwoven-orbit-icon {
  width: 150px;
  height: 150px;
  margin-bottom: 5px;
  border-radius: 50%;
  border: 2px solid wheat;
}

.starwoven-orbit-point span {
  font-size: 0.8rem;
  text-align: center;
}

@keyframes starwoven-orbit {
  0% {
    transform: rotate(0deg) translateX(150px) rotate(0deg);
  }
  100% {
    transform: rotate(360deg) translateX(150px) rotate(-360deg);
  }
}

@keyframes starwoven-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.starwoven-feature-details h2 {
  font-size: 2.2rem;
  margin-bottom: 25px;
  color: var(--starwoven-solar-amber);
}

.starwoven-feature-details p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  line-height: 1.8;
}

.starwoven-feature-stats {
  display: flex;
  gap: 40px;
}

.starwoven-stat-point {
  text-align: center;
}

.starwoven-stat-number {
  display: block;
  font-size: 2rem;
  font-weight: bold;
  color: var(--starwoven-azure-blue);
}

.starwoven-stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
}

.starwoven-temporal-nexus {
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    var(--starwoven-graphite) 0%,
    var(--starwoven-dark-navy) 100%
  );
}

.starwoven-nexus-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 60px;
  color: var(--starwoven-solar-amber);
}

.starwoven-nexus-timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.starwoven-timeline-node {
  display: flex;
  gap: 30px;
  margin-bottom: 50px;
  align-items: center;
}

.starwoven-timeline-node:nth-child(even) {
  flex-direction: row-reverse;
}

.starwoven-node-date {
  flex-shrink: 0;
  width: 100px;
  text-align: center;
  font-weight: bold;
  color: var(--starwoven-azure-blue);
  background: rgba(53, 195, 255, 0.1);
  padding: 10px;
  border-radius: 10px;
}

.starwoven-node-content {
  background: rgba(44, 53, 65, 0.6);
  border-radius: 15px;
  padding: 30px;
  border: 1px solid var(--starwoven-azure-blue);
  flex: 1;
  display: flex;
  gap: 20px;
  align-items: center;
}

.starwoven-node-image {
  width: 120px;
  height: 120px;
  flex-shrink: 0;
}

.starwoven-node-content h3 {
  margin-bottom: 10px;
  color: var(--starwoven-solar-amber);
}

.starwoven-newsletter-nebula {
  padding: 80px 0;
  background: linear-gradient(
    135deg,
    var(--starwoven-dark-navy) 0%,
    var(--starwoven-graphite) 100%
  );
  position: relative;
}

.starwoven-newsletter-constellation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: rgba(44, 53, 65, 0.3);
  border-radius: 20px;
  padding: 50px;
  border: 1px solid var(--starwoven-azure-blue);
}

.starwoven-newsletter-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.starwoven-newsletter-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--starwoven-solar-amber);
}

.starwoven-form-constellation {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.starwoven-newsletter-input {
  flex: 1;
  padding: 15px 20px;
  border: 2px solid var(--starwoven-azure-blue);
  border-radius: 10px;
  background: rgba(9, 25, 51, 0.8);
  color: var(--starwoven-sand-cream);
  font-size: 1rem;
}

.starwoven-newsletter-input::placeholder {
  color: rgba(255, 243, 217, 0.6);
}

.starwoven-newsletter-submit {
  padding: 15px 30px;
  background: linear-gradient(
    135deg,
    var(--starwoven-solar-amber),
    var(--starwoven-azure-blue)
  );
  border: none;
  border-radius: 10px;
  color: var(--starwoven-dark-navy);
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.starwoven-newsletter-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 176, 31, 0.3);
}

.starwoven-newsletter-status {
  text-align: center;
  margin-top: 15px;
  font-weight: bold;
}

.starwoven-cosmic-footer {
  background: linear-gradient(
    135deg,
    var(--starwoven-graphite) 0%,
    var(--starwoven-dark-navy) 100%
  );
  padding: 60px 0 20px;
  border-top: 1px solid var(--starwoven-azure-blue);
}

.starwoven-footer-constellation {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.starwoven-footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.starwoven-footer-logo-image {
  width: 40px;
  height: 40px;
}

.starwoven-footer-logo h3 {
  color: var(--starwoven-solar-amber);
  font-size: 1.5rem;
}

.starwoven-footer-mission {
  line-height: 1.7;
  opacity: 0.9;
}

.starwoven-footer-sector h4 {
  color: var(--starwoven-azure-blue);
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.starwoven-footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.starwoven-footer-links a {
  color: var(--starwoven-sand-cream);
  text-decoration: none;
  transition: color 0.3s ease;
}

.starwoven-footer-links a:hover {
  color: var(--starwoven-solar-amber);
}

.starwoven-contact-link {
  color: var(--starwoven-azure-blue);
  text-decoration: none;
  font-weight: bold;
}

.starwoven-contact-link:hover {
  color: var(--starwoven-solar-amber);
}

.starwoven-footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--starwoven-azure-blue);
  opacity: 0.8;
}

.starwoven-cookie-constellation {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: linear-gradient(
    135deg,
    var(--starwoven-graphite),
    var(--starwoven-dark-navy)
  );
  border: 2px solid var(--starwoven-azure-blue);
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  z-index: 10000;
  max-width: 600px;
  margin: 0 auto;
  display: none;
}

.starwoven-cookie-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.starwoven-cookie-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.starwoven-cookie-content p {
  flex: 1;
  margin-bottom: 15px;
}

.starwoven-cookie-actions {
  display: flex;
  gap: 15px;
}

.starwoven-cookie-accept,
.starwoven-cookie-decline {
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
}

.starwoven-cookie-accept {
  background: var(--starwoven-solar-amber);
  color: var(--starwoven-dark-navy);
}

.starwoven-cookie-decline {
  background: transparent;
  color: var(--starwoven-sand-cream);
  border: 1px solid var(--starwoven-azure-blue);
}

.starwoven-cookie-accept:hover {
  background: var(--starwoven-azure-blue);
}

.starwoven-cookie-decline:hover {
  background: var(--starwoven-azure-blue);
  color: var(--starwoven-dark-navy);
}

.starwoven-about-hero {
  padding: 120px 0 80px;
  background: linear-gradient(
    135deg,
    var(--starwoven-dark-navy) 0%,
    var(--starwoven-graphite) 100%
  );
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.starwoven-about-constellation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.starwoven-about-title {
  font-size: 3rem;
  margin-bottom: 30px;
  background: linear-gradient(
    135deg,
    var(--starwoven-solar-amber),
    var(--starwoven-azure-blue)
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.starwoven-about-subtitle {
  font-size: 1.2rem;
  line-height: 1.8;
  opacity: 0.9;
}

.starwoven-about-image {
  width: 100%;
  height: auto;
}

.starwoven-mission-orbit {
  padding: 100px 0;
  background: var(--starwoven-dark-navy);
}

.starwoven-mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.starwoven-mission-card {
  background: rgba(44, 53, 65, 0.6);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  border: 1px solid var(--starwoven-azure-blue);
  transition: all 0.3s ease;
}

.starwoven-mission-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(53, 195, 255, 0.2);
}

.starwoven-mission-icon {
  width: 100%;

  margin-bottom: 25px;
}

.starwoven-mission-card h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--starwoven-solar-amber);
}

.starwoven-team-galaxy {
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    var(--starwoven-graphite) 0%,
    var(--starwoven-dark-navy) 100%
  );
}

.starwoven-team-constellation {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.starwoven-crew-member {
  background: rgba(44, 53, 65, 0.6);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  border: 1px solid var(--starwoven-azure-blue);
  transition: all 0.3s ease;
}

.starwoven-crew-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(53, 195, 255, 0.2);
}

.starwoven-crew-avatar {
  width: 100%;

  margin-bottom: 25px;
  border-radius: 50%;
}

.starwoven-crew-member h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--starwoven-solar-amber);
}

.starwoven-philosophy-nexus {
  padding: 100px 0;
  background: var(--starwoven-dark-navy);
}

.starwoven-philosophy-orbit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.starwoven-philosophy-content h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: var(--starwoven-solar-amber);
}

.starwoven-philosophy-points {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.starwoven-philosophy-point {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.starwoven-philosophy-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}

.starwoven-philosophy-point h4 {
  color: var(--starwoven-azure-blue);
  margin-bottom: 10px;
}

.starwoven-philosophy-image {
  width: 100%;
  height: auto;
  max-width: 400px;
}

.starwoven-contact-hero {
  padding: 120px 0 80px;
  background: linear-gradient(
    135deg,
    var(--starwoven-dark-navy) 0%,
    var(--starwoven-graphite) 100%
  );
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.starwoven-contact-constellation {
  display: flex;
  justify-content: center;
  max-width: 600px;
  margin: 0 auto;
  align-items: center;
}

.starwoven-contact-title {
  font-size: 3rem;
  margin-bottom: 30px;
  background: linear-gradient(
    135deg,
    var(--starwoven-solar-amber),
    var(--starwoven-azure-blue)
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.starwoven-contact-subtitle {
  font-size: 1.2rem;
  line-height: 1.8;
  opacity: 0.9;
  margin-bottom: 40px;
}

.starwoven-contact-beacons {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.starwoven-beacon-point {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid var(--starwoven-azure-blue);
  transition: all 0.3s ease;
}

.starwoven-beacon-point:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(53, 195, 255, 0.3);
}

.starwoven-beacon-icon {
  width: 40px;
  height: 40px;
}

.starwoven-contact-image {
  width: 100%;
  height: auto;
  max-width: 400px;
}

.starwoven-contact-form-nebula {
  padding: 100px 0;
  background: var(--starwoven-dark-navy);
}

.starwoven-form-constellation {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  align-items: flex-start;
}
.starwoven-form-constellation {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  align-items: flex-start;
}
.starwoven-form-info {
  max-width: 500px;
}

.starwoven-form-info h2 {
  font-size: 2.5rem;
  margin-bottom: 25px;
  color: var(--starwoven-solar-amber);
}

.starwoven-form-info p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 40px;
}

.starwoven-contact-details {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.starwoven-contact-method {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.starwoven-method-icon {
  width: 100%;
  height: auto;
  flex-shrink: 0;
}

.starwoven-contact-method h4 {
  color: var(--starwoven-azure-blue);
  margin-bottom: 5px;
}

.starwoven-contact-form {
  background: rgba(44, 53, 65, 0.6);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid var(--starwoven-azure-blue);
}
.starwoven-contact-form {
  max-width: 500px;
  width: 100%;
}
.starwoven-form-field {
  margin-bottom: 25px;
}

.starwoven-form-field label {
  display: block;
  margin-bottom: 8px;
  color: var(--starwoven-azure-blue);
  font-weight: bold;
}

.starwoven-form-field input,
.starwoven-form-field select,
.starwoven-form-field textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid var(--starwoven-azure-blue);
  border-radius: 10px;
  background: rgba(9, 25, 51, 0.8);
  color: var(--starwoven-sand-cream);
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.starwoven-form-field input:focus,
.starwoven-form-field select:focus,
.starwoven-form-field textarea:focus {
  outline: none;
  border-color: var(--starwoven-solar-amber);
  box-shadow: 0 0 10px rgba(255, 176, 31, 0.3);
}

.starwoven-form-submit {
  width: 100%;
  padding: 15px;
  background: linear-gradient(
    135deg,
    var(--starwoven-solar-amber),
    var(--starwoven-azure-blue)
  );
  border: none;
  border-radius: 10px;
  color: var(--starwoven-dark-navy);
  font-weight: bold;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.starwoven-form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 176, 31, 0.3);
}

.starwoven-contact-status {
  margin-top: 15px;
  text-align: center;
  font-weight: bold;
}

.starwoven-collaboration-galaxy {
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    var(--starwoven-graphite) 0%,
    var(--starwoven-dark-navy) 100%
  );
}

.starwoven-collaboration-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.starwoven-collab-card {
  background: rgba(44, 53, 65, 0.6);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  border: 1px solid var(--starwoven-azure-blue);
  transition: all 0.3s ease;
}

.starwoven-collab-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(53, 195, 255, 0.2);
}

.starwoven-collab-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 25px;
}

.starwoven-collab-card h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--starwoven-solar-amber);
}

.starwoven-faq-constellation {
  padding: 100px 0;
  background: var(--starwoven-dark-navy);
}

.starwoven-faq-orbit {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.starwoven-faq-item {
  display: flex;
  gap: 25px;
  background: rgba(44, 53, 65, 0.6);
  border-radius: 15px;
  padding: 30px;
  border: 1px solid var(--starwoven-azure-blue);
  transition: all 0.3s ease;
}

.starwoven-faq-item:hover {
  box-shadow: 0 10px 30px rgba(53, 195, 255, 0.2);
}

.starwoven-faq-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.starwoven-faq-content h3 {
  color: var(--starwoven-solar-amber);
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.starwoven-news-hero {
  padding: 120px 0 80px;
  background: linear-gradient(
    135deg,
    var(--starwoven-dark-navy) 0%,
    var(--starwoven-graphite) 100%
  );
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.starwoven-news-constellation {
  text-align: center;
}

.starwoven-news-title {
  font-size: 3rem;
  margin-bottom: 30px;
  background: linear-gradient(
    135deg,
    var(--starwoven-solar-amber),
    var(--starwoven-azure-blue)
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.starwoven-news-subtitle {
  font-size: 1.2rem;
  line-height: 1.8;
  opacity: 0.9;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.starwoven-news-filter-galaxy {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.starwoven-filter-star {
  padding: 12px 25px;
  background: rgba(44, 53, 65, 0.6);
  border: 1px solid var(--starwoven-azure-blue);
  border-radius: 25px;
  color: var(--starwoven-sand-cream);
  cursor: pointer;
  transition: all 0.3s ease;
}

.starwoven-filter-star.active,
.starwoven-filter-star:hover {
  background: var(--starwoven-solar-amber);
  color: var(--starwoven-dark-navy);
  transform: translateY(-2px);
}

.starwoven-featured-transmission {
  padding: 80px 0;
  background: var(--starwoven-dark-navy);
}

.starwoven-featured-card {
  background: rgba(44, 53, 65, 0.6);
  border-radius: 20px;
  padding: 50px;
  border: 1px solid var(--starwoven-azure-blue);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.starwoven-featured-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.starwoven-featured-category {
  background: var(--starwoven-solar-amber);
  color: var(--starwoven-dark-navy);
  padding: 5px 15px;
  border-radius: 15px;
  font-size: 0.9rem;
  font-weight: bold;
}

.starwoven-featured-date {
  color: var(--starwoven-azure-blue);
  font-weight: bold;
}

.starwoven-featured-card h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--starwoven-sand-cream);
}

.starwoven-featured-card p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 25px;
}

.starwoven-featured-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.starwoven-tag {
  background: rgba(53, 195, 255, 0.2);
  color: var(--starwoven-azure-blue);
  padding: 5px 12px;
  border-radius: 12px;
  font-size: 0.9rem;
  border: 1px solid var(--starwoven-azure-blue);
}

.starwoven-featured-image {
  width: 100%;
  height: auto;
}

.starwoven-news-grid-sector {
  padding: 80px 0;
  background: linear-gradient(
    135deg,
    var(--starwoven-graphite) 0%,
    var(--starwoven-dark-navy) 100%
  );
}

.starwoven-news-constellation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.starwoven-news-card {
  background: rgba(44, 53, 65, 0.6);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--starwoven-azure-blue);
  transition: all 0.3s ease;
}

.starwoven-news-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(53, 195, 255, 0.2);
}

.starwoven-news-image {
  width: 100%;

  object-fit: cover;
}

.starwoven-news-content {
  padding: 30px;
}

.starwoven-news-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.starwoven-news-category {
  background: var(--starwoven-solar-amber);
  color: var(--starwoven-dark-navy);
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: bold;
}

.starwoven-news-date {
  color: var(--starwoven-azure-blue);
  font-weight: bold;
  font-size: 0.9rem;
}

.starwoven-news-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--starwoven-sand-cream);
  line-height: 1.4;
}

.starwoven-news-card p {
  line-height: 1.6;
  margin-bottom: 20px;
  opacity: 0.9;
}

.starwoven-news-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.starwoven-trending-cosmos {
  padding: 80px 0;
  background: var(--starwoven-dark-navy);
}

.starwoven-trending-constellation {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.starwoven-trending-item {
  display: flex;
  gap: 30px;
  background: rgba(44, 53, 65, 0.6);
  border-radius: 15px;
  padding: 30px;
  border: 1px solid var(--starwoven-azure-blue);
  transition: all 0.3s ease;
}

.starwoven-trending-item:hover {
  box-shadow: 0 15px 30px rgba(53, 195, 255, 0.2);
}

.starwoven-trending-icon {
  width: 100%;
  max-width: 300px;
  flex-shrink: 0;
}

.starwoven-trending-content h3 {
  color: var(--starwoven-solar-amber);
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.starwoven-trending-stats {
  color: var(--starwoven-azure-blue);
  font-weight: bold;
  margin-top: 10px;
}

.starwoven-reviews-hero {
  padding: 120px 0 80px;
  background: linear-gradient(
    135deg,
    var(--starwoven-dark-navy) 0%,
    var(--starwoven-graphite) 100%
  );
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.starwoven-reviews-constellation {
  text-align: center;
}

.starwoven-reviews-title {
  font-size: 3rem;
  margin-bottom: 30px;
  background: linear-gradient(
    135deg,
    var(--starwoven-solar-amber),
    var(--starwoven-azure-blue)
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.starwoven-reviews-subtitle {
  font-size: 1.2rem;
  line-height: 1.8;
  opacity: 0.9;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.starwoven-reviews-metrics {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.starwoven-metric-star {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding: 25px;
  background: rgba(44, 53, 65, 0.6);
  border-radius: 15px;
  border: 1px solid var(--starwoven-azure-blue);
}

.starwoven-metric-icon {
  width: 50px;
  height: 50px;
}

.starwoven-metric-number {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--starwoven-solar-amber);
}

.starwoven-metric-label {
  font-size: 0.9rem;
  opacity: 0.8;
}

.starwoven-featured-review {
  padding: 80px 0;
  background: var(--starwoven-dark-navy);
}

.starwoven-featured-review-card {
  background: rgba(44, 53, 65, 0.6);
  border-radius: 20px;
  padding: 50px;
  border: 1px solid var(--starwoven-azure-blue);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.starwoven-review-visual {
  position: relative;
}

.starwoven-featured-review-image {
  width: 100%;
  height: auto;
  max-width: 400px;
  border-radius: 15px;
}

.starwoven-review-rating-constellation {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(9, 25, 51, 0.9);
  padding: 15px 20px;
  border-radius: 10px;
  border: 1px solid var(--starwoven-azure-blue);
}

.starwoven-rating-stars {
  display: flex;
  gap: 5px;
  margin-bottom: 5px;
}

.starwoven-rating-star {
  width: 20px;
  height: 20px;
}

.starwoven-rating-score {
  color: var(--starwoven-solar-amber);
  font-weight: bold;
}

.starwoven-review-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.starwoven-review-category {
  background: var(--starwoven-solar-amber);
  color: var(--starwoven-dark-navy);
  padding: 5px 15px;
  border-radius: 15px;
  font-size: 0.9rem;
  font-weight: bold;
}

.starwoven-review-date {
  color: var(--starwoven-azure-blue);
  font-weight: bold;
}

.starwoven-featured-review-card h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--starwoven-sand-cream);
}

.starwoven-featured-review-card p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 25px;
}

.starwoven-review-highlights {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.starwoven-highlight-point {
  display: flex;
  gap: 15px;
  align-items: center;
}

.starwoven-highlight-icon {
  width: 25px;
  height: 25px;
  flex-shrink: 0;
}

.starwoven-reviews-galaxy {
  padding: 80px 0;
  background: linear-gradient(
    135deg,
    var(--starwoven-graphite) 0%,
    var(--starwoven-dark-navy) 100%
  );
}

.starwoven-reviews-filter-constellation {
  text-align: center;
  margin-bottom: 60px;
}

.starwoven-filter-stars {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.starwoven-reviews-constellation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.starwoven-review-card {
  background: rgba(44, 53, 65, 0.6);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--starwoven-azure-blue);
  transition: all 0.3s ease;
}

.starwoven-review-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(53, 195, 255, 0.2);
}

.starwoven-review-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.starwoven-review-card-content {
  padding: 30px;
}

.starwoven-card-rating {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.starwoven-card-star {
  width: 16px;
  height: 16px;
}

.starwoven-card-score {
  color: var(--starwoven-solar-amber);
  font-weight: bold;
}

.starwoven-review-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--starwoven-sand-cream);
  line-height: 1.4;
}

.starwoven-review-card p {
  line-height: 1.6;
  margin-bottom: 20px;
  opacity: 0.9;
}

.starwoven-card-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.starwoven-review-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.starwoven-summary-point {
  display: flex;
  justify-content: space-between;
}

.starwoven-point-label {
  color: var(--starwoven-azure-blue);
  font-size: 0.9rem;
}

.starwoven-point-value {
  color: var(--starwoven-solar-amber);
  font-weight: bold;
  font-size: 0.9rem;
}

.starwoven-review-methodology {
  padding: 80px 0;
  background: var(--starwoven-dark-navy);
}

.starwoven-methodology-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.starwoven-method-card {
  background: rgba(44, 53, 65, 0.6);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  border: 1px solid var(--starwoven-azure-blue);
  transition: all 0.3s ease;
}

.starwoven-method-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(53, 195, 255, 0.2);
}

.starwoven-method-icon {
  width: 100%;
  height: auto;
  margin-bottom: 25px;
}

.starwoven-method-card h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--starwoven-solar-amber);
}

.starwoven-legal-hero {
  padding: 120px 0 80px;
  background: linear-gradient(
    135deg,
    var(--starwoven-dark-navy) 0%,
    var(--starwoven-graphite) 100%
  );
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.starwoven-legal-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.starwoven-legal-title {
  font-size: 3rem;
  margin-bottom: 30px;
  background: linear-gradient(
    135deg,
    var(--starwoven-solar-amber),
    var(--starwoven-azure-blue)
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.starwoven-legal-subtitle {
  font-size: 1.2rem;
  line-height: 1.8;
  opacity: 0.9;
  margin-bottom: 30px;
}

.starwoven-legal-meta {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.starwoven-legal-meta span {
  color: var(--starwoven-azure-blue);
  font-weight: bold;
}

.starwoven-privacy-constellation,
.starwoven-terms-constellation,
.starwoven-cookie-constellation {
  padding: 80px 0;
  background: var(--starwoven-dark-navy);
}

.starwoven-legal-content {
  max-width: 1000px;
  margin: 0 auto;
}

.starwoven-privacy-section,
.starwoven-terms-section,
.starwoven-cookie-section {
  background: rgba(44, 53, 65, 0.6);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 40px;
  border: 1px solid var(--starwoven-azure-blue);
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.starwoven-legal-icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}

.starwoven-privacy-section h2,
.starwoven-terms-section h2,
.starwoven-cookie-section h2 {
  color: var(--starwoven-solar-amber);
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.starwoven-legal-list {
  list-style: none;
  padding-left: 0;
}

.starwoven-legal-list li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(53, 195, 255, 0.2);
}

.starwoven-legal-list li:last-child {
  border-bottom: none;
}

.starwoven-contact-info {
  background: rgba(9, 25, 51, 0.6);
  padding: 20px;
  border-radius: 10px;
  border: 1px solid var(--starwoven-azure-blue);
  margin-top: 20px;
}

.starwoven-cookie-type,
.starwoven-cookie-control,
.starwoven-cookie-duration {
  margin: 25px 0;
  padding: 20px;
  background: rgba(9, 25, 51, 0.3);
  border-radius: 10px;
  border-left: 3px solid var(--starwoven-azure-blue);
}

.starwoven-cookie-type h3,
.starwoven-cookie-control h3,
.starwoven-cookie-duration h3 {
  color: var(--starwoven-azure-blue);
  margin-bottom: 15px;
}

.starwoven-privacy-summary,
.starwoven-terms-summary {
  padding: 80px 0;
  background: linear-gradient(
    135deg,
    var(--starwoven-graphite) 0%,
    var(--starwoven-dark-navy) 100%
  );
}

.starwoven-summary-constellation {
  text-align: center;
}

.starwoven-summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.starwoven-summary-card {
  background: rgba(44, 53, 65, 0.6);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  border: 1px solid var(--starwoven-azure-blue);
  transition: all 0.3s ease;
}

.starwoven-summary-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(53, 195, 255, 0.2);
}

.starwoven-summary-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.starwoven-summary-card h3 {
  color: var(--starwoven-solar-amber);
  margin-bottom: 15px;
}

.starwoven-cookie-guide {
  padding: 80px 0;
  background: linear-gradient(
    135deg,
    var(--starwoven-graphite) 0%,
    var(--starwoven-dark-navy) 100%
  );
}

.starwoven-guide-constellation {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.starwoven-guide-card {
  background: rgba(44, 53, 65, 0.6);
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  border: 1px solid var(--starwoven-azure-blue);
  transition: all 0.3s ease;
}

.starwoven-guide-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(53, 195, 255, 0.2);
}

.starwoven-guide-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}

.starwoven-guide-card h3 {
  color: var(--starwoven-solar-amber);
  margin-bottom: 10px;
}

.starwoven-guide-card p {
  font-size: 0.9rem;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .starwoven-nav-galaxy {
    display: none;
  }

  .starwoven-mobile-toggle {
    display: flex;
  }

  .starwoven-stellar-title {
    font-size: 2.5rem;
  }

  .starwoven-hero-constellation-points {
    gap: 20px;
  }

  .starwoven-point-marker {
    padding: 15px;
  }

  .starwoven-discovery-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .starwoven-features-constellation {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .starwoven-feature-orbit {
    width: 300px;
    height: 300px;
  }

  .starwoven-orbit-point {
    width: 80px;
    height: 80px;
  }

  .starwoven-orbit-icon {
    width: 125px;
    height: 125px;
  }

  .starwoven-feature-stats {
    gap: 20px;
  }

  .starwoven-timeline-node {
    flex-direction: column;
    gap: 15px;
  }

  .starwoven-timeline-node:nth-child(even) {
    flex-direction: column;
  }

  .starwoven-newsletter-constellation {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 30px;
  }

  .starwoven-form-constellation {
    flex-direction: column;
    gap: 15px;
  }

  .starwoven-footer-constellation {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .starwoven-about-constellation {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .starwoven-mission-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .starwoven-team-constellation {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .starwoven-philosophy-orbit {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .starwoven-contact-constellation {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .starwoven-contact-beacons {
    justify-content: center;
  }

  .starwoven-form-constellation {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .starwoven-collaboration-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .starwoven-news-filter-galaxy {
    gap: 10px;
  }

  .starwoven-filter-star {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .starwoven-featured-card {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px;
  }

  .starwoven-news-constellation-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .starwoven-trending-item {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .starwoven-reviews-metrics {
    gap: 20px;
  }

  .starwoven-metric-star {
    padding: 20px;
  }

  .starwoven-featured-review-card {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px;
  }

  .starwoven-reviews-constellation-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .starwoven-methodology-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .starwoven-legal-meta {
    flex-direction: column;
    gap: 15px;
  }

  .starwoven-privacy-section,
  .starwoven-terms-section,
  .starwoven-cookie-section {
    flex-direction: column;
    gap: 20px;
    padding: 30px;
  }

  .starwoven-summary-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .starwoven-guide-constellation {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .starwoven-cookie-content {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .starwoven-cookie-actions {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .starwoven-container {
    padding: 0 15px;
  }

  .starwoven-nav-container {
    padding: 5px;
  }

  .starwoven-logo-text {
    font-size: 20px;
  }

  .starwoven-stellar-title {
    font-size: 2rem;
  }

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

  .starwoven-hero-description {
    font-size: 1rem;
  }

  .starwoven-point-marker {
    padding: 10px;
  }

  .starwoven-point-icon {
    width: 40px;
    height: 40px;
  }

  .starwoven-discovery-card {
    padding: 30px 20px;
  }

  .starwoven-feature-orbit {
    width: 250px;
    height: 250px;
  }

  .starwoven-orbit-point {
    width: 120px;
    height: 120px;
  }

  .starwoven-orbit-point span {
    font-size: 0.7rem;
  }

  .starwoven-newsletter-constellation {
    padding: 20px;
  }

  .starwoven-about-title {
    font-size: 2.5rem;
  }

  .starwoven-contact-title {
    font-size: 2.5rem;
  }

  .starwoven-news-title {
    font-size: 2.5rem;
  }

  .starwoven-reviews-title {
    font-size: 2.5rem;
  }

  .starwoven-legal-title {
    font-size: 2.5rem;
  }

  .starwoven-guide-constellation {
    grid-template-columns: 1fr;
  }
}

/* 🍪 Cookie Notice */
.starwoven-cookie-constellation {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 600px;
  background: linear-gradient(
    135deg,
    var(--starwoven-graphite),
    var(--starwoven-dark-navy)
  );
  border: 2px solid var(--starwoven-azure-blue);
  border-radius: 15px;
  padding: 25px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  z-index: 10000;

  display: none; /* показывать через JS */
  animation: starwoven-fade-in 0.4s ease forwards;
}

@keyframes starwoven-fade-in {
  from {
    opacity: 0;
    transform: translate(-50%, 20px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

.starwoven-cookie-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.starwoven-cookie-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.starwoven-cookie-content p {
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
  color: var(--starwoven-sand-cream);
}

.starwoven-cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.starwoven-cookie-accept,
.starwoven-cookie-decline {
  padding: 10px 18px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.starwoven-cookie-accept {
  background: var(--starwoven-solar-amber);
  color: var(--starwoven-dark-navy);
}

.starwoven-cookie-decline {
  background: transparent;
  color: var(--starwoven-sand-cream);
  border: 1px solid var(--starwoven-azure-blue);
}

.starwoven-cookie-accept:hover {
  background: var(--starwoven-azure-blue);
  color: var(--starwoven-dark-navy);
}

.starwoven-cookie-decline:hover {
  background: var(--starwoven-azure-blue);
  color: var(--starwoven-dark-navy);
}

/* 📱 Адаптив */
@media (max-width: 768px) {
  .starwoven-cookie-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .starwoven-cookie-actions {
    justify-content: center;
    width: 100%;
  }

  .starwoven-cookie-accept,
  .starwoven-cookie-decline {
    flex: 1;
    padding: 12px 0;
  }
}

@media (max-width: 480px) {
  .starwoven-cookie-constellation {
    padding: 20px;
    bottom: 10px;
    border-radius: 12px;
  }

  .starwoven-cookie-icon {
    width: 32px;
    height: 32px;
  }

  .starwoven-cookie-content p {
    font-size: 0.85rem;
  }

  .starwoven-cookie-accept,
  .starwoven-cookie-decline {
    font-size: 0.85rem;
    padding: 10px;
  }
}
section {
  border-bottom: 1px solid gray;
  border-top: 1px solid gray;
}
/* ===== Newsletter – Cosmic Glass Card ===== */
.starwoven-newsletter-nebula {
  position: relative;
  padding: 110px 0;
  background: radial-gradient(
      1200px 600px at 15% 20%,
      rgba(53, 195, 255, 0.12) 0%,
      transparent 55%
    ),
    radial-gradient(
      900px 500px at 85% 80%,
      rgba(255, 176, 31, 0.12) 0%,
      transparent 60%
    ),
    var(--starwoven-dark-navy);
  overflow: hidden;
}

/* мягкие «звёзды» на фоне */
.starwoven-newsletter-nebula::before,
.starwoven-newsletter-nebula::after {
  content: "";
  position: absolute;
  inset: -30%;
  background: radial-gradient(
      2px 2px at 10% 20%,
      rgba(255, 255, 255, 0.35) 50%,
      transparent 51%
    ),
    radial-gradient(
      2px 2px at 30% 70%,
      rgba(255, 255, 255, 0.25) 50%,
      transparent 51%
    ),
    radial-gradient(
      2px 2px at 60% 40%,
      rgba(255, 255, 255, 0.3) 50%,
      transparent 51%
    ),
    radial-gradient(
      2px 2px at 80% 85%,
      rgba(255, 255, 255, 0.28) 50%,
      transparent 51%
    );
  filter: blur(0.3px);
  opacity: 0.15;
  pointer-events: none;
}
.starwoven-newsletter-nebula::after {
  animation: starwoven-parallax 24s linear infinite;
  opacity: 0.22;
}
@keyframes starwoven-parallax {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-60px);
  }
}

/* Карточка */
.starwoven-newsletter-constellation {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
  border: 1px solid rgba(53, 195, 255, 0.35);
  background: linear-gradient(
    180deg,
    rgba(44, 53, 65, 0.55),
    rgba(9, 25, 51, 0.55)
  );
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 22px;
  padding: 56px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

/* декоративные «орбиты» */
.starwoven-newsletter-constellation::before,
.starwoven-newsletter-constellation::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}
.starwoven-newsletter-constellation::before {
  width: 140%;
  height: 140%;
  left: -20%;
  top: -70%;
  border: 1px dashed rgba(53, 195, 255, 0.25);
  transform: rotate(12deg);
}
.starwoven-newsletter-constellation::after {
  width: 120%;
  height: 120%;
  right: -10%;
  bottom: -65%;
  border: 1px dashed rgba(255, 176, 31, 0.22);
  transform: rotate(-18deg);
}

/* Текстовый блок */
.starwoven-newsletter-content h2 {
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  margin-bottom: 14px;
  background: linear-gradient(
    135deg,
    var(--starwoven-solar-amber),
    var(--starwoven-azure-blue)
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.4px;
  text-shadow: 0 0 30px rgba(255, 176, 31, 0.25);
}
.starwoven-newsletter-content p {
  font-size: 1.05rem;
  line-height: 1.9;
  opacity: 0.92;
}

/* Форма */
.starwoven-newsletter-form {
  width: 100%;
}
/* .starwoven-form-constellation {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  margin-bottom: 10px;
} */

.starwoven-newsletter-input {
  height: 54px;
  padding: 0 18px 0 52px;
  border: 2px solid rgba(53, 195, 255, 0.5);
  border-radius: 14px;
  background: radial-gradient(
      600px 200px at 10% 0%,
      rgba(53, 195, 255, 0.08),
      transparent 70%
    ),
    rgba(9, 25, 51, 0.82);
  color: var(--starwoven-sand-cream);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease,
    background 0.25s ease;
  position: relative;
}
.starwoven-newsletter-input::placeholder {
  color: rgba(255, 243, 217, 0.6);
}

/* иконка «email» псевдоэлементом */
.starwoven-newsletter-input:is(:focus, :hover) {
  border-color: var(--starwoven-solar-amber);
  box-shadow: 0 0 0 6px rgba(255, 176, 31, 0.12),
    0 12px 28px rgba(53, 195, 255, 0.18);
}
.starwoven-newsletter-input {
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 6.75A1.75 1.75 0 0 1 4.75 5h14.5A1.75 1.75 0 0 1 21 6.75v10.5A1.75 1.75 0 0 1 19.25 19H4.75A1.75 1.75 0 0 1 3 17.25V6.75Z' stroke='%2335C3FF' stroke-width='1.6'/%3E%3Cpath d='M4 7l8 6 8-6' stroke='%23FFB01F' stroke-width='1.6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 16px 50%;
}

/* Кнопка */
.starwoven-newsletter-submit {
  height: 54px;
  padding: 0 22px;
  border: none;
  border-radius: 14px;
  font-weight: 800;
  font-size: 1rem;
  color: var(--starwoven-dark-navy);
  background: linear-gradient(
    135deg,
    var(--starwoven-solar-amber),
    var(--starwoven-azure-blue)
  );
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.25s ease, filter 0.2s ease;
  white-space: nowrap;
}
.starwoven-newsletter-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(53, 195, 255, 0.25);
  filter: brightness(1.03);
}
.starwoven-newsletter-submit:active {
  transform: translateY(0);
}

/* Статус */
.starwoven-newsletter-status {
  text-align: left;
  font-weight: 700;
  margin-top: 8px;
  min-height: 1.2em;
  color: var(--starwoven-azure-blue);
}
.starwoven-newsletter-status.is-success {
  color: #4ade80;
} /* зелёный успех */
.starwoven-newsletter-status.is-error {
  color: #f87171;
} /* красная ошибка */

/* ====== Адаптив ====== */
@media (max-width: 1024px) {
  .starwoven-newsletter-constellation {
    grid-template-columns: 1fr;
    padding: 44px;
    gap: 38px;
  }
}

@media (max-width: 680px) {
  .starwoven-newsletter-nebula {
    padding: 80px 0;
  }

  .starwoven-newsletter-constellation {
    padding: 28px 20px;
    border-radius: 18px;
    gap: 22px;
  }

  .starwoven-form-constellation {
    grid-template-columns: 1fr;
  }
  .starwoven-form-info {
    max-width: 450px;
    width: 100%;
  }
  .starwoven-contact-form {
    max-width: 500px;
    width: 100%;
  }
  .starwoven-newsletter-input,
  .starwoven-newsletter-submit {
    height: 50px;
    width: 100%;
  }

  .starwoven-newsletter-content h2 {
    font-size: 1.6rem;
    text-align: center;
  }
  .starwoven-newsletter-content p {
    text-align: center;
    font-size: 0.98rem;
  }
  .starwoven-newsletter-status {
    text-align: center;
  }
}

@media (max-width: 420px) {
  .starwoven-newsletter-input {
    padding-left: 46px;
    font-size: 0.95rem;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .starwoven-newsletter-submit {
    font-size: 0.95rem;
  }
}
/* ===== Temporal Nexus (timeline) ===== */
.starwoven-temporal-nexus {
  position: relative;
  padding: 96px 0;
  background: linear-gradient(
    135deg,
    var(--starwoven-graphite) 0%,
    var(--starwoven-dark-navy) 100%
  );
  overflow: hidden;
}

/* Заголовок */
.starwoven-nexus-title {
  font-size: clamp(1.9rem, 2.2vw, 2.6rem);
  text-align: center;
  margin-bottom: 56px;
  color: var(--starwoven-solar-amber);
  letter-spacing: 0.3px;
}

/* Контейнер таймлайна + центральная ось */
.starwoven-nexus-timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 10px;
}

.starwoven-nexus-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(
    to bottom,
    rgba(53, 195, 255, 0) 0%,
    rgba(53, 195, 255, 0.45) 18%,
    rgba(53, 195, 255, 0.45) 82%,
    rgba(53, 195, 255, 0) 100%
  );
  box-shadow: 0 0 18px rgba(53, 195, 255, 0.28);
}

/* Узел (строка) */
.starwoven-timeline-node {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 24px;
  margin-bottom: 42px;
}

/* Чередование сторон */
.starwoven-timeline-node:nth-child(odd) .starwoven-node-date {
  grid-column: 1 / 2;
  justify-self: end;
}
.starwoven-timeline-node:nth-child(odd) .starwoven-node-content {
  grid-column: 2 / 3;
}

.starwoven-timeline-node:nth-child(even) .starwoven-node-date {
  grid-column: 2 / 3;
  justify-self: start;
}
.starwoven-timeline-node:nth-child(even) .starwoven-node-content {
  grid-column: 1 / 2;
}

/* Маркер на оси */
.starwoven-timeline-node::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 14px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    var(--starwoven-solar-amber) 0%,
    #ffb01f 45%,
    rgba(255, 176, 31, 0.2) 70%,
    transparent 72%
  );
  box-shadow: 0 0 22px rgba(255, 176, 31, 0.45);
}

/* Дата-бейдж */
.starwoven-node-date {
  align-self: center;
  min-width: 92px;
  text-align: center;
  font-weight: 800;
  color: var(--starwoven-dark-navy);
  background: linear-gradient(
    135deg,
    var(--starwoven-solar-amber),
    var(--starwoven-azure-blue)
  );
  padding: 10px 14px;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(53, 195, 255, 0.18);
}

/* Карточка контента */
.starwoven-node-content {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px 18px;
  align-items: center;
  background: rgba(44, 53, 65, 0.6);
  border: 1px solid rgba(53, 195, 255, 0.45);
  border-radius: 16px;
  padding: 22px 24px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.25);
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.starwoven-node-content:hover {
  transform: translateY(-4px);
  border-color: var(--starwoven-azure-blue);
  box-shadow: 0 22px 44px rgba(53, 195, 255, 0.22);
}

/* Декоративная «орбита» у карточки */
.starwoven-node-content::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 16px;
  border: 1px dashed rgba(255, 176, 31, 0.22);
  pointer-events: none;
}

/* Медиа */
.starwoven-node-image {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(255, 176, 31, 0.35);
  background: rgba(9, 25, 51, 0.6);
}

/* Текст */
.starwoven-node-content h3 {
  color: var(--starwoven-sand-cream);
  font-size: 1.15rem;
  line-height: 1.35;
  margin: 0;
  grid-column: 2 / 3;
}

.starwoven-node-content p {
  grid-column: 1 / -1;
  margin: 0;
  line-height: 1.7;
  opacity: 0.92;
}

/* ===== Адаптив ===== */

/* Планшеты: сдвигаем к одной колонке, ось остаётся */
@media (max-width: 900px) {
  .starwoven-timeline-node {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .starwoven-timeline-node:nth-child(odd) .starwoven-node-date,
  .starwoven-timeline-node:nth-child(even) .starwoven-node-date {
    grid-column: 1 / -1;
    justify-self: center;
  }
  .starwoven-timeline-node:nth-child(odd) .starwoven-node-content,
  .starwoven-timeline-node:nth-child(even) .starwoven-node-content {
    grid-column: 1 / -1;
  }
}

/* Мобилки: убираем центральную ось, делаем аккуратный stack */
@media (max-width: 640px) {
  .starwoven-temporal-nexus {
    padding: 72px 0;
  }

  .starwoven-nexus-timeline::before {
    display: none;
  }

  .starwoven-timeline-node {
    margin-bottom: 26px;
  }

  .starwoven-node-date {
    min-width: 0;
    font-size: 0.95rem;
    padding: 8px 12px;
  }

  .starwoven-node-content {
    grid-template-columns: 56px 1fr;
    padding: 16px 16px;
    border-radius: 14px;
  }

  .starwoven-node-image {
    width: 56px;
    height: 56px;
    border-radius: 10px;
  }

  .starwoven-node-content h3 {
    font-size: 1.05rem;
  }
  .starwoven-node-content p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .starwoven-timeline-node::after {
    /* маркер-точка к карточке слева */
    left: 16px;
    transform: translateY(-50%);
  }
}

/* Очень маленькие экраны */
@media (max-width: 420px) {
  .starwoven-node-content {
    grid-template-columns: 48px 1fr;
  }
  .starwoven-node-image {
    width: 48px;
    height: 48px;
  }
}

/* Доступность: меньше движения, если включено в ОС */
@media (prefers-reduced-motion: reduce) {
  .starwoven-node-content,
  .starwoven-timeline-node {
    transition: none;
  }
  .starwoven-nexus-timeline::before,
  .starwoven-newsletter-nebula::after {
    animation: none;
  }
}
