* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  background: linear-gradient(180deg, #0f1419 0%, #1a2332 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: relative;
  overflow: hidden;
}

body::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 30%, rgba(4, 176, 42, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(5, 127, 30, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.container {
  width: 100%;
  max-width: 900px;
}

.content {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 0 1px rgba(4, 176, 42, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  animation: fadeIn 0.6s ease-out;
  max-width: 100%;
  position: relative;
  border: 1px solid rgba(4, 176, 42, 0.1);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.brand-transition {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.old-brand, .new-brand {
  flex: 1;
  min-width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-old, .logo-new {
  width: 100%;
  max-width: 280px;
  height: auto;
  transition: all 0.3s ease;
  filter: brightness(1) contrast(1.05);
}

.logo-old:hover, .logo-new:hover {
  transform: scale(1.02);
  filter: brightness(1.05) contrast(1.08) drop-shadow(0 4px 12px rgba(4, 176, 42, 0.2));
}

.arrow {
  font-size: 2.5rem;
  color: #04b02a;
  font-weight: 300;
  text-shadow: 0 0 20px rgba(4, 176, 42, 0.3);
}

h1 {
  color: #0f1419;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.3;
  letter-spacing: -0.8px;
  position: relative;
}

h1::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #04b02a, transparent);
}

p {
  color: #333;
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

.main-text {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 20px;
  color: #333;
}

.main-text strong {
  color: #057f1e;
  font-weight: 600;
}

.description {
  margin-bottom: 40px;
  color: #555;
}

.ai-highlight {
  background: linear-gradient(135deg, #0d1b2a 0%, #1a2332 100%);
  border-radius: 12px;
  padding: 32px 40px;
  margin: 40px 0;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(4, 176, 42, 0.2);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(4, 176, 42, 0.1);
}

.ai-highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(4, 176, 42, 0.5) 20%,
    rgba(4, 176, 42, 0.8) 50%,
    rgba(4, 176, 42, 0.5) 80%,
    transparent
  );
}

.ai-highlight h2 {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.3;
  letter-spacing: -0.3px;
}

.ai-highlight p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  font-weight: 300;
}

.ai-highlight strong {
  color: #04b02a;
  font-weight: 600;
  text-shadow: 0 0 20px rgba(4, 176, 42, 0.4);
}

.cta-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 12px;
  padding: 32px;
  margin-top: 40px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.visit-text {
  font-size: 1.25rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}

.website-link {
  display: inline-block;
  font-size: 1.25rem;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
  padding: 14px 32px;
  background: linear-gradient(135deg, #057f1e 0%, #04b02a 100%);
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 1px solid rgba(4, 176, 42, 0.3);
  box-shadow:
    0 4px 16px rgba(4, 176, 42, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  letter-spacing: -0.2px;
  position: relative;
  overflow: hidden;
}

.website-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.website-link:hover {
  transform: translateY(-2px);
  box-shadow:
    0 6px 24px rgba(4, 176, 42, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.website-link:hover::before {
  left: 100%;
}

@media (max-width: 768px) {
  .content {
    padding: 40px 24px;
  }

  h1 {
    font-size: 2rem;
  }

  .main-text {
    font-size: 1.25rem;
  }

  p {
    font-size: 1rem;
  }

  .brand-transition {
    gap: 20px;
    margin-bottom: 40px;
  }

  .logo-old, .logo-new {
    max-width: 200px;
  }

  .arrow {
    font-size: 2rem;
  }

  .website-link {
    font-size: 1.25rem;
    padding: 12px 24px;
  }

  .ai-highlight {
    padding: 25px 30px;
  }

  .ai-highlight h2 {
    font-size: 1.5rem;
  }

  .ai-highlight p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .content {
    padding: 30px 20px;
  }

  h1 {
    font-size: 1.5rem;
  }

  .main-text {
    font-size: 1.125rem;
  }

  .brand-transition {
    gap: 15px;
    margin-bottom: 30px;
  }

  .logo-old, .logo-new {
    max-width: 150px;
  }

  .arrow {
    font-size: 1.5rem;
    width: 100%;
    transform: rotate(90deg);
  }

  .cta-section {
    padding: 20px;
  }

  .website-link {
    font-size: 1.125rem;
    padding: 10px 20px;
  }

  .ai-highlight {
    padding: 20px 24px;
  }

  .ai-highlight h2 {
    font-size: 1.25rem;
  }

  .ai-highlight p {
    font-size: 0.9375rem;
  }
}
