/* =========================================================
   PRYSME
   EXPERIENCE UNDER CONSTRUCTION
========================================================= */

/* =========================================================
   RESET
========================================================= */

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

/* =========================================================
   VARIABLES
========================================================= */

:root {

  /* ======================================================
     INSTITUTIONAL COLORS
  ====================================================== */

  --black-deep: #0D0D0D;

  --violet-main: #3B0F4A;

  --magenta-energy: #C2185B;

  --orange-strategic: #F57C00;

  --white: #FFFFFF;

  --text-secondary: #CFCFCF;

  --text-soft: #8B8B8B;

  /* ======================================================
     GLASS
  ====================================================== */

  --glass:
    rgba(255,255,255,0.04);

  --border-soft:
    rgba(255,255,255,0.08);

  /* ======================================================
     GRADIENTS
  ====================================================== */

  --gradient-main:
    linear-gradient(
      135deg,
      #3B0F4A,
      #C2185B
    );

  --gradient-energy:
    linear-gradient(
      135deg,
      #C2185B,
      #F57C00
    );

  --gradient-dark:
    linear-gradient(
      135deg,
      #0D0D0D,
      #3B0F4A
    );

  /* ======================================================
     SHADOWS
  ====================================================== */

  --shadow-soft:
    0 0 30px rgba(194,24,91,0.18);

  --shadow-strong:
    0 0 60px rgba(194,24,91,0.28);

  /* ======================================================
     TRANSITIONS
  ====================================================== */

  --transition:
    0.35s ease;
}

/* =========================================================
   BODY
========================================================= */

body {

  min-height: 100vh;

  overflow-x: hidden;

  position: relative;

  color: var(--white);

  font-family: 'Roboto', sans-serif;

  background:

    radial-gradient(
      circle at top left,
      rgba(194,24,91,0.16),
      transparent 28%
    ),

    radial-gradient(
      circle at bottom right,
      rgba(59,15,74,0.25),
      transparent 35%
    ),

    #0D0D0D;
}

/* =========================================================
   ATMOSPHERIC NOISE
========================================================= */

body::before {

  content: "";

  position: fixed;

  inset: 0;

  z-index: 1;

  opacity: 0.025;

  pointer-events: none;

  background-image:
    radial-gradient(
      rgba(255,255,255,0.45) 1px,
      transparent 1px
    );

  background-size: 4px 4px;
}

/* =========================================================
   AMBIENT LIGHTS
========================================================= */

.ambient {

  position: absolute;

  width: 700px;
  height: 700px;

  border-radius: 50%;

  filter: blur(120px);

  opacity: 0.45;

  pointer-events: none;

  z-index: 1;
}

.ambient-left {

  top: -250px;
  left: -200px;

  background:
    rgba(194,24,91,0.28);

  animation:
    floatLeft 14s ease-in-out infinite alternate;
}

.ambient-right {

  bottom: -300px;
  right: -250px;

  background:
    rgba(59,15,74,0.38);

  animation:
    floatRight 16s ease-in-out infinite alternate;
}

/* =========================================================
   AMBIENT ANIMATIONS
========================================================= */

@keyframes floatLeft {

  from {
    transform: translate(0,0);
  }

  to {
    transform: translate(40px, 20px);
  }
}

@keyframes floatRight {

  from {
    transform: translate(0,0);
  }

  to {
    transform: translate(-40px, -20px);
  }
}

/* =========================================================
   HERO
========================================================= */

.hero {

  width: 100%;

  min-height: 100vh;

  display: flex;
  justify-content: center;
  align-items: center;

  padding: 3rem;

  position: relative;

  z-index: 10;
}

.hero-container {

  width: 100%;

  max-width: 1350px;

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 4rem;

  align-items: center;
}

/* =========================================================
   CONTENT
========================================================= */

.content {

  max-width: 620px;
}

/* =========================================================
   LOGO
========================================================= */

.logo {

  width: 260px;

  margin-bottom: 2rem;

  filter:
    drop-shadow(
      0 0 24px rgba(194,24,91,0.25)
    );

  animation:
    logoBreath 5s ease-in-out infinite;
}

@keyframes logoBreath {

  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.015);
  }

  100% {
    transform: scale(1);
  }
}

/* =========================================================
   STATUS
========================================================= */

.status {

  display: inline-flex;

  align-items: center;

  gap: 0.7rem;

  padding: 0.9rem 1.2rem;

  border-radius: 999px;

  margin-bottom: 2rem;

  backdrop-filter: blur(10px);

  border:
    1px solid rgba(255,255,255,0.08);

  background:
    rgba(255,255,255,0.04);

  font-family: 'Montserrat', sans-serif;

  font-size: 0.8rem;

  letter-spacing: 0.12rem;

  color: #F2B5D0;
}

.pulse {

  width: 10px;
  height: 10px;

  border-radius: 50%;

  background: #C2185B;

  box-shadow:
    0 0 10px rgba(194,24,91,0.9);

  animation:
    pulse 2s infinite;
}

@keyframes pulse {

  0% {
    transform: scale(1);
    opacity: 1;
  }

  70% {
    transform: scale(1.7);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 0;
  }
}

/* =========================================================
   TITLE
========================================================= */

h1 {

  font-family: 'Montserrat', sans-serif;

  font-size: clamp(3.2rem, 6vw, 5.5rem);

  line-height: 1.04;

  padding: 0.08em 0;

  font-weight: 700;

  letter-spacing: -0.025em;

  margin-bottom: 2rem;
}

/* =========================================================
   GRADIENT TEXT
========================================================= */

.gradient {

  display: inline-block;

  background:
    linear-gradient(
      135deg,
      #C2185B,
      #F57C00
    );

  background-clip: text;

  -webkit-background-clip: text;

  color: transparent;

  -webkit-text-fill-color: transparent;
}

/* =========================================================
   DESCRIPTION
========================================================= */

.description {

  max-width: 560px;

  margin-bottom: 3rem;

  color: var(--text-secondary);

  font-size: 1.1rem;

  line-height: 1.9;
}

/* =========================================================
   DIVIDER
========================================================= */

.divider {

  width: 140px;
  height: 2px;

  margin-bottom: 3rem;

  background:
    linear-gradient(
      90deg,
      transparent,
      #C2185B,
      transparent
    );
}

/* =========================================================
   FEATURES
========================================================= */

.features {

  display: flex;

  gap: 2rem;

  flex-wrap: wrap;

  margin-bottom: 3rem;
}

.feature {

  min-width: 150px;
}

.feature h3 {

  margin-bottom: 0.8rem;

  color: white;

  font-family: 'Montserrat', sans-serif;

  font-size: 0.9rem;

  font-weight: 600;

  letter-spacing: 0.06rem;
}

.feature p {

  color: var(--text-soft);

  font-size: 0.95rem;

  line-height: 1.7;
}

/* =========================================================
   ACTIONS
========================================================= */

.actions {

  display: flex;

  gap: 1rem;

  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {

  padding: 1rem 1.7rem;

  border-radius: 18px;

  text-decoration: none;

  font-family: 'Montserrat', sans-serif;

  font-weight: 600;

  transition: var(--transition);
}

.btn-primary {

  color: white;

  background:
    linear-gradient(
      135deg,
      #3B0F4A,
      #C2185B
    );

  box-shadow:
    0 0 30px rgba(194,24,91,0.28);
}

.btn-primary:hover {

  transform: translateY(-4px);

  box-shadow:
    0 0 40px rgba(194,24,91,0.42);
}

.btn-secondary {

  color: white;

  backdrop-filter: blur(10px);

  border:
    1px solid rgba(255,255,255,0.08);

  background:
    rgba(255,255,255,0.03);
}

.btn-secondary:hover {

  transform: translateY(-4px);

  background:
    rgba(255,255,255,0.06);
}

/* =========================================================
   VISUAL PANEL
========================================================= */

.visual {

  position: relative;

  display: flex;
  justify-content: center;
  align-items: center;
}

/* =========================================================
   PORTAL
========================================================= */

.portal {

  width: 420px;
  height: 560px;

  position: relative;

  overflow: hidden;

  border-radius: 28px;

  backdrop-filter: blur(12px);

  border:
    1px solid rgba(255,255,255,0.08);

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.03),
      rgba(255,255,255,0.01)
    );

  box-shadow:
    0 0 80px rgba(194,24,91,0.14);
}

.portal::before {

  content: "";

  position: absolute;

  inset: 0;

  background:
    radial-gradient(
      circle at center,
      rgba(194,24,91,0.25),
      transparent 60%
    );

  animation:
    portalGlow 5s ease-in-out infinite;
}

@keyframes portalGlow {

  0% {
    opacity: 0.6;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0.6;
  }
}

/* =========================================================
   PORTAL CONTENT
========================================================= */

.portal-content {

  width: 100%;
  height: 100%;

  position: relative;

  z-index: 5;

  display: flex;

  flex-direction: column;

  justify-content: center;
  align-items: center;
}

.portal-logo {

  width: 180px;

  margin-bottom: 2rem;

  filter:
    drop-shadow(
      0 0 30px rgba(194,24,91,0.4)
    );
}

.portal-text {

  color:
    rgba(255,255,255,0.7);

  font-family: 'Montserrat', sans-serif;

  font-size: 0.8rem;

  text-transform: uppercase;

  letter-spacing: 0.3rem;
}

/* =========================================================
   DECORATIVE LINES
========================================================= */

.line {

  position: absolute;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(194,24,91,0.5),
      transparent
    );
}

.line-one {

  width: 300px;
  height: 1px;

  top: 10%;
  left: -15%;
}

.line-two {

  width: 300px;
  height: 1px;

  bottom: 12%;
  right: -15%;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

  body {
    overflow-y: auto;
  }

  .hero-container {

    grid-template-columns: 1fr;

    text-align: center;
  }

  .content {

    max-width: 100%;
  }

  .description {

    margin-left: auto;
    margin-right: auto;
  }

  .divider {

    margin-left: auto;
    margin-right: auto;
  }

  .features {

    justify-content: center;
  }

  .actions {

    justify-content: center;
  }
}

@media (max-width: 768px) {

  .hero {

    padding: 2rem;
  }

  .logo {

    width: 220px;
  }

  h1 {

    font-size: 3rem;
  }

  .description {

    font-size: 1rem;
  }

  .portal {

    width: 100%;

    max-width: 360px;

    height: 500px;
  }

  .actions {

    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {

    width: 100%;
  }
}