.create-page {
  --create-card: rgba(8, 20, 46, 0.72);
  --create-line: rgba(255, 255, 255, 0.11);
  --create-soft: rgba(174, 185, 210, 0.78);

  background:
    radial-gradient(
      circle at 50% 7%,
      rgba(139, 66, 255, 0.12),
      transparent 34rem
    ),
    radial-gradient(
      circle at 82% 28%,
      rgba(8, 121, 255, 0.13),
      transparent 32rem
    ),
    #020617;
}

.create-main {
  overflow: hidden;
}

.create-shell {
  width: min(var(--rumapa-semantic-max), calc(100% - var(--rumapa-semantic-gutter)));
  margin-inline: auto;
}

.create-hero {
  position: relative;
  padding: 150px 0 90px;
}

.create-hero::before {
  content: "";
  position: absolute;
  width: 650px;
  height: 650px;
  top: -280px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(139, 66, 255, 0.09);
  filter: blur(90px);
  pointer-events: none;
}

.create-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns:
    minmax(0, 1.04fr)
    minmax(360px, 0.96fr);
  gap: 70px;
  align-items: center;
}

.create-eyebrow,
.create-kicker {
  margin: 0 0 16px;
  color: #03d7ca;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.create-hero h1 {
  max-width: 780px;
  margin: 0;
  color: #f7f9ff;
  font-size: clamp(54px, 6vw, 88px);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.create-gradient {
  display: block;
  margin-top: 8px;
  color: transparent;
  background:
    linear-gradient(
      100deg,
      #03d7ca 0%,
      #0879ff 50%,
      #a36bff 100%
    );
  -webkit-background-clip: text;
  background-clip: text;
}

.create-lead {
  max-width: 690px;
  margin: 28px 0 0;
  color: #aeb9d2;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.65;
}

.create-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.create-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  color: #f7f9ff;
  background: rgba(255,255,255,.055);
  font-weight: 750;
  text-decoration: none;
  transition:
    transform 240ms cubic-bezier(.16,1,.3,1),
    border-color 240ms cubic-bezier(.16,1,.3,1),
    background 240ms cubic-bezier(.16,1,.3,1);
}

.create-button:hover {
  transform: translateY(-2px);
  border-color: rgba(3,215,202,.38);
  background: rgba(255,255,255,.085);
}

.create-button-primary {
  border-color: transparent;
  background: linear-gradient(100deg, #0879ff, #8b42ff);
}

.create-hero-visual {
  position: relative;
  min-height: 610px;
}

.create-phone-glow {
  position: absolute;
  inset: 12% 3% 4%;
  border-radius: 50%;
  background:
    radial-gradient(
      circle,
      rgba(139,66,255,.20),
      rgba(8,121,255,.14) 37%,
      rgba(3,215,202,.07) 57%,
      transparent 73%
    );
  filter: blur(35px);
}

.create-phone {
  position: relative;
  z-index: 2;
  display: block;
  width: min(100%, 390px);
  margin: 0 auto;
  filter:
    drop-shadow(0 38px 70px rgba(0,0,0,.44));
}

.create-phone img {
  display: block;
  width: 100%;
  height: auto;
}

.create-context-card {
  position: absolute;
  z-index: 3;
  right: -12px;
  bottom: 72px;
  width: min(330px, 78%);
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 22px;
  background: rgba(4,15,37,.87);
  box-shadow: 0 24px 70px rgba(0,0,0,.35);
  backdrop-filter: blur(18px);
}

.create-context-label {
  display: block;
  margin-bottom: 8px;
  color: #03d7ca;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.create-context-card p {
  margin: 0;
  color: #f7f9ff;
  font-size: 17px;
  font-weight: 650;
  line-height: 1.45;
}

.create-story {
  padding: 104px 0;
  border-top: 1px solid rgba(255,255,255,.075);
}

.create-story-grid {
  display: grid;
  grid-template-columns:
    minmax(0, .78fr)
    minmax(0, 1.22fr);
  gap: 86px;
  align-items: start;
}

.create-number {
  display: block;
  margin: 0 0 22px;
  color: rgba(122,145,194,.30);
  font-size: clamp(72px, 7vw, 108px);
  font-weight: 800;
  line-height: .82;
  letter-spacing: -.055em;
  user-select: none;
}

.create-story h2 {
  max-width: 620px;
  margin: 0;
  color: #f7f9ff;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.02;
  letter-spacing: -.045em;
}

.create-story-copy {
  padding-top: 96px;
}

.create-story-copy > p {
  max-width: 700px;
  margin: 0;
  color: #aeb9d2;
  font-size: 18px;
  line-height: 1.75;
}

.create-example,
.create-principle {
  margin-top: 28px;
  padding: 24px 26px;
  border: 1px solid var(--create-line);
  border-radius: 24px;
  background: var(--create-card);
}

.create-example strong,
.create-principle strong {
  display: block;
  margin-bottom: 8px;
  color: #f7f9ff;
  font-size: 18px;
}

.create-example p,
.create-principle p {
  margin: 0;
  color: #aeb9d2;
  line-height: 1.65;
}

.create-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 34px;
}

.create-detail-item {
  min-height: 110px;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  border: 1px solid var(--create-line);
  border-radius: 20px;
  background: rgba(255,255,255,.035);
  color: #f7f9ff;
  font-weight: 700;
}

.create-language-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}

.create-language-row span {
  display: inline-flex;
  min-width: 70px;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--create-line);
  border-radius: 18px;
  background: rgba(255,255,255,.04);
  color: #f7f9ff;
  font-weight: 800;
  letter-spacing: .08em;
}

.create-language-row i {
  color: #7a91c2;
  font-style: normal;
  font-size: 20px;
}

.create-next {
  padding: 110px 0;
}

.create-next-card {
  padding: clamp(34px, 6vw, 72px);
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 36px;
  background:
    radial-gradient(
      circle at 84% 18%,
      rgba(139,66,255,.16),
      transparent 26rem
    ),
    radial-gradient(
      circle at 16% 82%,
      rgba(3,215,202,.11),
      transparent 25rem
    ),
    rgba(6,19,45,.82);
}

.create-next-card h2 {
  max-width: 820px;
  margin: 0;
  color: #f7f9ff;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -.045em;
}

.create-next-card > p {
  max-width: 700px;
  margin: 22px 0 0;
  color: #aeb9d2;
  font-size: 18px;
  line-height: 1.7;
}

.create-next-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

@media (max-width: 980px) {
  .create-hero-grid,
  .create-story-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .create-hero {
    padding-top: 128px;
  }

  .create-hero-visual {
    min-height: 560px;
  }

  .create-story-copy {
    padding-top: 0;
  }
}

@media (max-width: 720px) {
  .create-shell {
    width: min(100% - 28px, 1180px);
  }

  .create-hero {
    padding: 112px 0 58px;
  }

  .create-hero h1 {
    font-size: clamp(46px, 14vw, 66px);
  }

  .create-lead {
    font-size: 17px;
  }

  .create-hero-visual {
    min-height: 500px;
  }

  .create-context-card {
    right: 0;
    bottom: 42px;
    width: 86%;
  }

  .create-story {
    padding: 74px 0;
  }

  .create-number {
    margin-bottom: 16px;
    font-size: clamp(58px, 18vw, 76px);
  }

  .create-story h2 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .create-story-copy > p {
    font-size: 16px;
  }

  .create-detail-grid {
    grid-template-columns: 1fr 1fr;
  }

  .create-next {
    padding: 78px 0;
  }

  .create-next-card {
    border-radius: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .create-page *,
  .create-page *::before,
  .create-page *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* RUMAPA Create Premium Foundation V1 */

.create-page {
  position: relative;
  overflow-x: hidden;
}

.create-main {
  position: relative;
  isolation: isolate;
}

.create-main::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 76% 10%,
      rgba(25, 127, 245, 0.09),
      transparent 25%
    ),
    radial-gradient(
      circle at 18% 42%,
      rgba(18, 199, 220, 0.055),
      transparent 23%
    ),
    radial-gradient(
      circle at 82% 76%,
      rgba(124, 73, 246, 0.05),
      transparent 24%
    );
}

.create-hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
}

.create-hero::after {
  content: "";
  position: absolute;
  width: 540px;
  height: 540px;
  right: 5%;
  top: 46%;
  transform: translateY(-50%);
  pointer-events: none;
  border-radius: 50%;
  background:
    radial-gradient(
      circle,
      rgba(18, 199, 220, 0.09) 0%,
      rgba(25, 127, 245, 0.06) 34%,
      transparent 69%
    );
  filter: blur(4px);
  z-index: 0;
}

.create-hero-grid {
  position: relative;
  z-index: 1;
}

.create-phone {
  position: relative;
  z-index: 3;
  filter:
    drop-shadow(0 34px 42px rgba(0, 0, 0, 0.34))
    drop-shadow(0 0 34px rgba(29, 137, 255, 0.08));
}

.create-story {
  position: relative;
  min-height: 530px;
  display: flex;
  align-items: center;
  padding-top: 72px;
  padding-bottom: 72px;
  overflow: hidden;
}

.create-story::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: min(1180px, calc(100% - 48px));
  height: 1px;
  transform: translateX(-50%);
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.07),
      transparent
    );
}

.create-story-grid {
  position: relative;
  width: 100%;
  align-items: center;
}

.create-number {
  opacity: 0.52;
  text-shadow: 0 0 42px rgba(30, 134, 255, 0.10);
}

.create-story-copy {
  position: relative;
  z-index: 2;
}

@media (min-width: 1101px) {
  .create-story .create-shell {
    width: calc(100% - 48px);
    max-width: 1180px;
    margin-inline: auto;
  }

  .create-story-grid {
    width: 100%;
    max-width: 1024px;
    margin-inline: auto;
    grid-template-columns: 320px 640px;
    gap: 64px;
    justify-content: center;
    align-items: center;
  }

  .create-story-copy {
    width: 100%;
    max-width: 640px;
    justify-self: stretch;
    padding-top: 0;
  }

  .create-story-copy > p {
    max-width: 640px;
  }
}

@media (min-width: 981px) and (max-width: 1100px) {
  .create-story-grid {
    width: 100%;
    max-width: 940px;
    margin-inline: auto;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 48px;
    justify-content: center;
  }

  .create-story-copy {
    width: 100%;
    justify-self: stretch;
    padding-top: 0;
  }
}

@media (max-width: 980px) {
  .create-hero {
    min-height: auto;
  }

  .create-story {
    min-height: auto;
    padding-top: 74px;
    padding-bottom: 74px;
  }
}


/* RUMAPA Create Standalone Visibility Fix V1
   Standalone Create page must not depend on Home reveal JavaScript. */
.create-page .create-story,
.create-page .create-story-copy {
  opacity: 1;
  transform: none;
  filter: none;
}

/* RUMAPA Create Premium Stories 01-02 V1 */

/* 01 — Start with what you want to do */

.create-story-01::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  pointer-events: none;
  background:
    radial-gradient(
      circle,
      rgba(16, 207, 201, 0.10),
      rgba(30, 111, 255, 0.055) 42%,
      transparent 70%
    );
  filter: blur(8px);
}

.create-story-01 .create-example {
  position: relative;
  margin-top: 32px;
  padding: 26px 28px 25px;
  overflow: hidden;
  border: 1px solid rgba(72, 145, 255, 0.25);
  border-radius: 22px;
  background:
    radial-gradient(
      circle at 8% 0%,
      rgba(16, 211, 198, 0.09),
      transparent 34%
    ),
    linear-gradient(
      145deg,
      rgba(13, 29, 64, 0.88),
      rgba(7, 17, 42, 0.92)
    );
  box-shadow:
    0 22px 60px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.create-story-01 .create-example::before {
  content: var(--create-idea-label);
  display: block;
  margin-bottom: 13px;
  color: #55d9d0;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.14em;
}

.create-story-01 .create-example::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background:
    linear-gradient(
      180deg,
      #13d6c5,
      #187dff,
      #8555ff
    );
  opacity: 0.82;
}

.create-story-01 .create-example strong {
  display: block;
  margin-bottom: 10px;
  font-size: 17px;
  letter-spacing: -0.015em;
}

.create-story-01 .create-example p {
  margin: 0;
  color: rgba(215, 225, 243, 0.72);
  font-size: 15px;
  line-height: 1.6;
}


/* 02 — AI helps structure the information */

.create-story-02::after {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  right: 4%;
  top: 48%;
  transform: translateY(-50%);
  border-radius: 50%;
  pointer-events: none;
  background:
    radial-gradient(
      circle,
      rgba(112, 72, 255, 0.09),
      rgba(21, 124, 255, 0.045) 44%,
      transparent 70%
    );
}

.create-story-02 .create-detail-grid {
  position: relative;
  margin-top: 34px;
  gap: 14px;
}

.create-story-02 .create-detail-grid::before {
  content: var(--create-structure-label);
  position: absolute;
  left: 0;
  top: -28px;
  color: rgba(117, 166, 255, 0.72);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.create-story-02 .create-detail-item {
  position: relative;
  min-height: 108px;
  padding: 19px 20px 18px;
  overflow: hidden;
  border: 1px solid rgba(99, 133, 255, 0.18);
  border-radius: 18px;
  background:
    linear-gradient(
      145deg,
      rgba(17, 34, 71, 0.82),
      rgba(7, 17, 42, 0.88)
    );
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.create-story-02 .create-detail-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 2px;
  border-radius: 99px;
  background:
    linear-gradient(
      180deg,
      #18d6c7,
      #1c84ff,
      #8258ff
    );
}

.create-story-02 .create-detail-item strong {
  display: block;
  margin-bottom: 7px;
  font-size: 15px;
  letter-spacing: -0.01em;
}

.create-story-02 .create-detail-item p {
  margin: 0;
  color: rgba(203, 216, 238, 0.66);
  font-size: 13px;
  line-height: 1.5;
}

@media (max-width: 720px) {
  .create-story-01 .create-example {
    padding: 22px 21px;
  }

  .create-story-02 .create-detail-grid {
    grid-template-columns: 1fr;
  }

  .create-story-02 .create-detail-item {
    min-height: 0;
  }
}

/* RUMAPA Create Premium 01-02 Polish V1 */

.create-story-01 .create-number,
.create-story-02 .create-number {
  opacity: 0.64;
}

.create-story-01 .create-example {
  min-height: 142px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.create-story-02 .create-detail-item {
  transition:
    transform 220ms cubic-bezier(.16, 1, .3, 1),
    border-color 220ms ease,
    background 220ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .create-story-02 .create-detail-item:hover {
    transform: translateY(-2px);
    border-color: rgba(86, 159, 255, 0.30);
    background:
      linear-gradient(
        145deg,
        rgba(20, 40, 82, 0.88),
        rgba(8, 19, 47, 0.94)
      );
  }
}


/* RUMAPA Create Premium Stories 03-04 V1 */

/* 03 — Category and location add context */

.create-story-03::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  right: 3%;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  pointer-events: none;
  background:
    radial-gradient(
      circle,
      rgba(0, 201, 215, 0.10),
      rgba(34, 102, 255, 0.055) 42%,
      transparent 69%
    );
}

.create-story-03 .create-story-copy {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.create-story-03 .create-story-copy::after {
  content: "";
  display: block;
  width: min(100%, 520px);
  height: 172px;
  margin-top: 34px;
  border: 1px solid rgba(74, 142, 255, 0.22);
  border-radius: 22px;
  background:
    radial-gradient(
      circle at 78% 48%,
      rgba(20, 196, 209, 0.15) 0 3px,
      transparent 4px
    ),
    radial-gradient(
      circle at 78% 48%,
      transparent 0 38px,
      rgba(54, 152, 255, 0.17) 39px 40px,
      transparent 41px
    ),
    radial-gradient(
      circle at 78% 48%,
      transparent 0 66px,
      rgba(82, 104, 255, 0.10) 67px 68px,
      transparent 69px
    ),
    linear-gradient(
      90deg,
      transparent 0 11%,
      rgba(255,255,255,0.035) 11.2% 11.5%,
      transparent 11.7% 37%,
      rgba(255,255,255,0.03) 37.2% 37.5%,
      transparent 37.7% 66%,
      rgba(255,255,255,0.028) 66.2% 66.5%,
      transparent 66.7%
    ),
    linear-gradient(
      145deg,
      rgba(14, 31, 67, 0.90),
      rgba(7, 17, 42, 0.94)
    );
  box-shadow:
    0 22px 58px rgba(0,0,0,.18),
    inset 0 1px 0 rgba(255,255,255,.045);
}

.create-story-03 .create-story-copy::before {
  content: "⌖";
  position: absolute;
  z-index: 2;
  right: 17%;
  bottom: 64px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(61, 177, 255, 0.32);
  border-radius: 50%;
  color: #58d8da;
  background:
    linear-gradient(
      145deg,
      rgba(12, 65, 92, 0.88),
      rgba(24, 48, 108, 0.90)
    );
  box-shadow:
    0 0 0 10px rgba(32, 145, 255, 0.035),
    0 0 32px rgba(31, 180, 221, 0.16);
  font-size: 20px;
}


/* 04 — Get useful price guidance */

.create-story-04::after {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  pointer-events: none;
  background:
    radial-gradient(
      circle,
      rgba(113, 66, 255, 0.10),
      rgba(21, 113, 255, 0.05) 43%,
      transparent 70%
    );
}

.create-story-04 .create-example {
  position: relative;
  min-height: 166px;
  margin-top: 32px;
  padding: 27px 28px 26px 32px;
  overflow: hidden;
  border: 1px solid rgba(97, 132, 255, 0.24);
  border-radius: 22px;
  background:
    radial-gradient(
      circle at 92% 20%,
      rgba(126, 70, 255, 0.12),
      transparent 35%
    ),
    linear-gradient(
      145deg,
      rgba(15, 32, 69, 0.91),
      rgba(7, 17, 42, 0.95)
    );
  box-shadow:
    0 24px 62px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255,255,255,.055);
}

.create-story-04 .create-example::before {
  content: "≈";
  position: absolute;
  right: 24px;
  top: 22px;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(81, 153, 255, 0.25);
  border-radius: 16px;
  color: #72d5eb;
  background:
    linear-gradient(
      145deg,
      rgba(25, 75, 132, 0.45),
      rgba(72, 47, 151, 0.40)
    );
  box-shadow: 0 14px 34px rgba(0,0,0,.18);
  font-size: 25px;
  font-weight: 700;
}

.create-story-04 .create-example::after {
  content: "";
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 22px;
  height: 4px;
  border-radius: 999px;
  background:
    linear-gradient(
      90deg,
      rgba(28, 210, 197, 0.82) 0 28%,
      rgba(27, 128, 255, 0.88) 28% 67%,
      rgba(128, 83, 255, 0.82) 67% 100%
    );
  box-shadow: 0 0 20px rgba(48, 126, 255, 0.18);
}

.create-story-04 .create-example strong {
  display: block;
  max-width: calc(100% - 82px);
  margin-bottom: 10px;
  font-size: 17px;
  letter-spacing: -0.015em;
}

.create-story-04 .create-example p {
  max-width: calc(100% - 70px);
  margin: 0;
  padding-bottom: 24px;
  color: rgba(211, 223, 241, 0.70);
  font-size: 14px;
  line-height: 1.58;
}

.create-story-03 .create-number,
.create-story-04 .create-number {
  opacity: 0.64;
}

@media (max-width: 720px) {
  .create-story-03 .create-story-copy::after {
    height: 150px;
  }

  .create-story-03 .create-story-copy::before {
    right: 15%;
    bottom: 53px;
  }

  .create-story-04 .create-example {
    padding: 23px 22px 24px;
  }

  .create-story-04 .create-example::before {
    right: 18px;
    top: 18px;
    width: 44px;
    height: 44px;
  }

  .create-story-04 .create-example::after {
    left: 22px;
    right: 22px;
  }
}

/* RUMAPA Create Premium Stories 05-07 V1 */


/* 05 — Reach people across languages */

.create-story-05::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  right: 3%;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  pointer-events: none;
  background:
    radial-gradient(
      circle,
      rgba(9, 211, 198, 0.10),
      rgba(39, 114, 255, 0.05) 43%,
      transparent 70%
    );
}

.create-story-05 .create-story-copy {
  position: relative;
}

.create-story-05 .create-language-row {
  position: relative;
  width: fit-content;
  max-width: 100%;
  margin-top: 34px;
  padding: 22px 24px;
  gap: 12px;
  overflow: hidden;
  border: 1px solid rgba(76, 143, 255, 0.22);
  border-radius: 22px;
  background:
    radial-gradient(
      circle at 10% 20%,
      rgba(14, 209, 199, 0.09),
      transparent 34%
    ),
    linear-gradient(
      145deg,
      rgba(14, 31, 66, 0.90),
      rgba(7, 17, 42, 0.94)
    );
  box-shadow:
    0 22px 58px rgba(0, 0, 0, 0.20),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.create-story-05 .create-language-row::before {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  top: 50%;
  height: 1px;
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(57, 208, 220, 0.24),
      rgba(77, 117, 255, 0.26),
      transparent
    );
}

.create-story-05 .create-language-row span {
  position: relative;
  z-index: 2;
  min-width: 62px;
  padding: 13px 16px;
  text-align: center;
  border: 1px solid rgba(91, 149, 255, 0.22);
  border-radius: 15px;
  background:
    linear-gradient(
      145deg,
      rgba(21, 45, 88, 0.88),
      rgba(10, 24, 58, 0.92)
    );
  color: #eef5ff;
  box-shadow:
    0 12px 28px rgba(0,0,0,.18),
    inset 0 1px 0 rgba(255,255,255,.055);
  font-weight: 800;
  letter-spacing: .06em;
}

.create-story-05 .create-language-row span:first-child {
  border-color: rgba(39, 213, 198, 0.32);
  box-shadow:
    0 0 26px rgba(20, 204, 194, 0.08),
    inset 0 1px 0 rgba(255,255,255,.055);
}

.create-story-05 .create-language-row i {
  position: relative;
  z-index: 2;
  width: 28px;
  color: rgba(115, 161, 223, 0.75);
  text-align: center;
  font-style: normal;
}

.create-story-05 .create-number {
  opacity: 0.64;
}


/* 06 — Review the draft before publishing */

.create-story-06::after {
  content: "";
  position: absolute;
  width: 470px;
  height: 470px;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  pointer-events: none;
  background:
    radial-gradient(
      circle,
      rgba(94, 79, 255, 0.10),
      rgba(22, 127, 255, 0.045) 45%,
      transparent 70%
    );
}

.create-story-06 .create-principle {
  position: relative;
  min-height: 150px;
  margin-top: 32px;
  padding: 28px 30px 28px 78px;
  overflow: hidden;
  border: 1px solid rgba(92, 132, 255, 0.24);
  border-radius: 22px;
  background:
    radial-gradient(
      circle at 90% 15%,
      rgba(114, 69, 255, 0.11),
      transparent 34%
    ),
    linear-gradient(
      145deg,
      rgba(15, 32, 69, 0.91),
      rgba(7, 17, 42, 0.95)
    );
  box-shadow:
    0 24px 62px rgba(0, 0, 0, 0.21),
    inset 0 1px 0 rgba(255,255,255,.055);
}

.create-story-06 .create-principle::before {
  content: "✓";
  position: absolute;
  left: 24px;
  top: 27px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(45, 222, 173, 0.24);
  border-radius: 50%;
  color: #35dfa9;
  background: rgba(23, 128, 105, 0.15);
  box-shadow:
    0 0 0 8px rgba(42, 214, 175, 0.025),
    0 0 26px rgba(42, 214, 175, 0.10);
  font-size: 18px;
  font-weight: 900;
}

.create-story-06 .create-principle::after {
  content: "";
  position: absolute;
  left: 78px;
  right: 30px;
  bottom: 22px;
  height: 4px;
  border-radius: 999px;
  background:
    linear-gradient(
      90deg,
      #19d2c1 0 32%,
      #1b83ff 32% 69%,
      #8156ff 69% 100%
    );
  opacity: .82;
  box-shadow: 0 0 18px rgba(34, 132, 255, .17);
}

.create-story-06 .create-principle strong {
  display: block;
  margin-bottom: 10px;
  font-size: 17px;
  letter-spacing: -.015em;
}

.create-story-06 .create-principle p {
  margin: 0;
  padding-bottom: 22px;
  color: rgba(208, 220, 240, .70);
  font-size: 14px;
  line-height: 1.58;
}

.create-story-06 .create-number {
  opacity: 0.64;
}


/* 07 — From creation to local discovery */

.create-story-07::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: 1%;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  pointer-events: none;
  background:
    radial-gradient(
      circle,
      rgba(0, 196, 218, 0.10),
      rgba(46, 96, 255, 0.05) 42%,
      rgba(114, 64, 255, 0.035) 55%,
      transparent 71%
    );
}

.create-story-07 .create-example {
  position: relative;
  min-height: 180px;
  margin-top: 32px;
  padding: 26px 28px 28px;
  overflow: hidden;
  border: 1px solid rgba(84, 139, 255, 0.23);
  border-radius: 22px;
  background:
    radial-gradient(
      circle at 90% 15%,
      rgba(37, 190, 218, 0.09),
      transparent 32%
    ),
    linear-gradient(
      145deg,
      rgba(15, 33, 70, 0.91),
      rgba(7, 17, 42, 0.95)
    );
  box-shadow:
    0 24px 62px rgba(0,0,0,.21),
    inset 0 1px 0 rgba(255,255,255,.055);
}

.create-story-07 .create-example::before {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 27px;
  height: 50px;
  border-radius: 17px;
  background:
    radial-gradient(
      circle at 14% 50%,
      #22d8c9 0 4px,
      rgba(34,216,201,.16) 5px 12px,
      transparent 13px
    ),
    radial-gradient(
      circle at 50% 50%,
      #2787ff 0 4px,
      rgba(39,135,255,.15) 5px 12px,
      transparent 13px
    ),
    radial-gradient(
      circle at 86% 50%,
      #8959ff 0 4px,
      rgba(137,89,255,.15) 5px 12px,
      transparent 13px
    ),
    linear-gradient(
      90deg,
      transparent 14%,
      rgba(60, 177, 230, .22) 15% 49%,
      rgba(96, 104, 255, .22) 51% 85%,
      transparent 86%
    );
}

.create-story-07 .create-example::after {
  content: "✦";
  position: absolute;
  right: 26px;
  top: 23px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(74, 165, 255, .24);
  border-radius: 14px;
  color: #78dce4;
  background:
    linear-gradient(
      145deg,
      rgba(25, 72, 128, .44),
      rgba(64, 49, 139, .38)
    );
  box-shadow: 0 13px 30px rgba(0,0,0,.18);
  font-size: 18px;
}

.create-story-07 .create-example strong {
  display: block;
  max-width: calc(100% - 70px);
  margin-bottom: 9px;
  font-size: 17px;
  letter-spacing: -.015em;
}

.create-story-07 .create-example p {
  max-width: calc(100% - 66px);
  margin: 0;
  padding-bottom: 66px;
  color: rgba(207, 220, 240, .69);
  font-size: 14px;
  line-height: 1.58;
}

.create-story-07 .create-number {
  opacity: 0.64;
}


@media (max-width: 720px) {
  .create-story-05 .create-language-row {
    width: 100%;
    justify-content: center;
    padding: 18px 14px;
    gap: 8px;
  }

  .create-story-05 .create-language-row span {
    min-width: 54px;
    padding: 12px 11px;
  }

  .create-story-06 .create-principle {
    padding:
      24px
      20px
      25px
      68px;
  }

  .create-story-06 .create-principle::before {
    left: 18px;
    top: 23px;
  }

  .create-story-06 .create-principle::after {
    left: 68px;
    right: 20px;
  }

  .create-story-07 .create-example {
    padding: 23px 21px 24px;
  }

  .create-story-07 .create-example::before {
    left: 21px;
    right: 21px;
  }

  .create-story-07 .create-example::after {
    right: 18px;
    top: 18px;
  }
}

/* RUMAPA Create Premium 01-02 Localization V1 */

html[lang="en"] .create-page {
  --create-idea-label: "YOUR IDEA";
  --create-structure-label: "AI STRUCTURES THE DRAFT";
}

html[lang="es"] .create-page {
  --create-idea-label: "TU IDEA";
  --create-structure-label: "AI ESTRUCTURA EL BORRADOR";
}

html[lang="ru"] .create-page {
  --create-idea-label: "ВАША ИДЕЯ";
  --create-structure-label: "AI СТРУКТУРИРУЕТ ЧЕРНОВИК";
}
