html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  background: linear-gradient(120deg, #1e2937 90%, rgba(219,39,119,0.05) 100%);
  color: #f3f4f6;
  font-size: 14px;
  min-height: 100%;
  scroll-behavior: smooth;
}

body.ropeflow-body {
  min-height: 100vh;
  background: linear-gradient(120deg, #1e2937 90%, rgba(219,39,119,0.03) 100%);
}

/* Container */
.ropeflow-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  box-sizing: border-box;
}

/* Header */
.ropeflow-header {
  background: linear-gradient(90deg, #1e2937 95%, rgba(219,39,119,0.04) 100%);
  box-shadow: 0 2px 16px 0 rgba(30,41,55,0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}

.ropeflow-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1240px;
  margin: 0 auto;
  padding: 16px 24px;
}

.ropeflow-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 10px;
}

.ropeflow-logo__img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  box-shadow: 0 2px 8px 0 rgba(219,39,119,0.08);
  background: #232f41;
  object-fit: cover;
}

.ropeflow-logo__text {
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  letter-spacing: 0.01em;
}

.ropeflow-nav__list {
  display: flex;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ropeflow-nav__link {
  color: #f3f4f6;
  text-decoration: none;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
  position: relative;
}

.ropeflow-nav__link:hover,
.ropeflow-nav__link:focus {
  background: rgba(219,39,119,0.09);
  color: #db2777;
  outline: none;
}

@media (max-width: 900px) {
  .ropeflow-header__inner {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    padding: 14px 12px;
  }
  .ropeflow-nav__list {
    flex-wrap: wrap;
    gap: 10px;
  }
}

/* Hero Section */
.ropeflow-hero {
  background: linear-gradient(120deg, #1e2937 95%, rgba(219,39,119,0.03) 100%);
  padding: 48px 0 36px 0;
  box-shadow: 0 4px 32px 0 rgba(30,41,55,0.07);
}

.ropeflow-hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.ropeflow-hero__col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ropeflow-hero__col--left {
  min-width: 0;
}

.ropeflow-hero__title {
  font-size: 2.4rem;
  font-weight: 800;
  margin: 0 0 10px 0;
  color: #fff;
  letter-spacing: 0.01em;
}

.ropeflow-hero__tagline {
  font-size: 1.15rem;
  color: #db2777;
  font-weight: 600;
  margin-bottom: 14px;
}

.ropeflow-hero__intro {
  color: #e5e7eb;
  margin-bottom: 12px;
  line-height: 1.6;
}

.ropeflow-hero__actions {
  display: flex;
  gap: 16px;
  margin: 14px 0 0 0;
  flex-wrap: wrap;
}

.ropeflow-btn {
  border: none;
  outline: none;
  font-weight: 600;
  font-size: 14px;
  border-radius: 8px;
  padding: 10px 28px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  box-shadow: 0 2px 12px 0 rgba(30,41,55,0.08);
  letter-spacing: 0.01em;
  text-decoration: none;
  display: inline-block;
}

.ropeflow-btn--primary {
  background: linear-gradient(90deg, #db2777 88%, #a21caf 100%);
  color: #fff;
}

.ropeflow-btn--primary:hover, .ropeflow-btn--primary:focus {
  background: #fff;
  color: #db2777;
  box-shadow: 0 4px 16px 0 rgba(219,39,119,0.12);
}

.ropeflow-btn--outline {
  background: transparent;
  color: #db2777;
  border: 1px solid #db2777;
}

.ropeflow-btn--outline:hover, .ropeflow-btn--outline:focus {
  background: #db2777;
  color: #fff;
  box-shadow: 0 4px 16px 0 rgba(219,39,119,0.13);
}

.ropeflow-hero__meta {
  display: flex;
  gap: 18px;
  padding: 0;
  margin: 20px 0 0 0;
  list-style: none;
  color: #e5e7eb;
  font-size: 13px;
  flex-wrap: wrap;
  opacity: 0.88;
}

.ropeflow-hero__col--right {
  align-items: flex-end;
  gap: 18px;
}

.ropeflow-hero__card {
  background: linear-gradient(110deg, #232f41 90%, rgba(219,39,119,0.06) 100%);
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(30,41,55,0.13);
  padding: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 14px;
  max-width: 370px;
  width: 100%;
}

.ropeflow-hero__image {
  width: 100%;
  max-width: 330px;
  max-height: 300px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 2px 16px 0 rgba(219,39,119,0.07);
}

.ropeflow-hero__features {
  display: flex;
  gap: 20px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.ropeflow-hero__feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: linear-gradient(90deg, #232f41 90%, rgba(219,39,119,0.04) 100%);
  border-radius: 10px;
  padding: 10px 14px;
  min-width: 0;
  box-shadow: 0 2px 8px 0 rgba(30,41,55,0.07);
  flex: 1 1 0;
}

.ropeflow-hero__feature-img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 2px 8px 0 rgba(219,39,119,0.07);
}

.ropeflow-hero__feature strong {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.ropeflow-hero__feature p {
  margin: 2px 0 0 0;
  color: #e5e7eb;
  font-size: 13px;
  opacity: 0.92;
}

@media (max-width: 900px) {
  .ropeflow-hero__grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 10px;
  }
  .ropeflow-hero__col--right {
    align-items: flex-start;
  }
  .ropeflow-hero__card {
    margin: 0 auto 14px auto;
  }
}

/* Section Base */
.ropeflow-section {
  padding: 56px 0 44px 0;
  background: linear-gradient(120deg, #1e2937 94%, rgba(219,39,119,0.03) 100%);
  box-shadow: 0 2px 18px 0 rgba(30,41,55,0.04);
}

.ropeflow-section__title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 36px;
  letter-spacing: 0.01em;
}

/* World Section */
.ropeflow-world__content {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 40px;
  align-items: start;
}

.ropeflow-world__text {
  background: linear-gradient(110deg, #232f41 90%, rgba(219,39,119,0.05) 100%);
  border-radius: 16px;
  box-shadow: 0 2px 14px 0 rgba(30,41,55,0.09);
  padding: 30px 28px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.ropeflow-world__visual {
  background: linear-gradient(110deg, #232f41 90%, rgba(219,39,119,0.05) 100%);
  border-radius: 16px;
  box-shadow: 0 2px 14px 0 rgba(30,41,55,0.09);
  padding: 26px 20px 18px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.ropeflow-world__image {
  width: 100%;
  max-width: 330px;
  max-height: 300px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 10px;
  box-shadow: 0 2px 8px 0 rgba(219,39,119,0.07);
}

.ropeflow-world__elements {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ropeflow-world__elements li {
  position: relative;
  padding-left: 22px;
  color: #e5e7eb;
  font-size: 13px;
}

.ropeflow-world__elements li::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #db2777;
  position: absolute;
  left: 0;
  top: 6px;
  opacity: 0.9;
}

@media (max-width: 900px) {
  .ropeflow-world__content {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .ropeflow-world__visual, .ropeflow-world__text {
    padding: 18px 10px 14px 10px;
  }
}

/* Mechanics Section */
.ropeflow-mechanics .ropeflow-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 38px;
}

.ropeflow-card {
  background: linear-gradient(110deg, #232f41 90%, rgba(219,39,119,0.05) 100%);
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(30,41,55,0.08);
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ropeflow-card h3 {
  font-size: 1.12rem;
  color: #db2777;
  margin: 0 0 8px 0;
  font-weight: 600;
}

.ropeflow-card p {
  color: #e5e7eb;
  margin: 0;
  opacity: 0.93;
}

.ropeflow-mechanics__imagewrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ropeflow-mechanics__image {
  width: 100%;
  max-width: 540px;
  max-height: 300px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(219,39,119,0.08);
}

@media (max-width: 900px) {
  .ropeflow-mechanics .ropeflow-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .ropeflow-mechanics__image {
    max-width: 100%;
    max-height: 220px;
  }
}

/* Rhythm Section */
.ropeflow-rhythm .ropeflow-steps {
  background: linear-gradient(110deg, #232f41 90%, rgba(219,39,119,0.04) 100%);
  border-radius: 13px;
  box-shadow: 0 2px 10px 0 rgba(30,41,55,0.06);
  padding: 22px 24px;
  margin-bottom: 30px;
  counter-reset: ropeflow-step;
}

.ropeflow-steps {
  list-style: none;
  margin: 0 0 24px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.ropeflow-steps li {
  position: relative;
  padding-left: 36px;
  color: #e5e7eb;
  font-size: 13px;
}

.ropeflow-steps li::before {
  counter-increment: ropeflow-step;
  content: counter(ropeflow-step);
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  background: #db2777;
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px 0 rgba(219,39,119,0.09);
}

@media (max-width: 600px) {
  .ropeflow-rhythm .ropeflow-steps {
    padding: 14px 8px;
  }
}

/* Unique Section */
.ropeflow-unique .ropeflow-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 36px;
}

.ropeflow-feature {
  background: linear-gradient(110deg, #232f41 90%, rgba(219,39,119,0.05) 100%);
  border-radius: 13px;
  box-shadow: 0 2px 10px 0 rgba(30,41,55,0.06);
  padding: 20px 16px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.ropeflow-feature h4 {
  font-size: 1.08rem;
  color: #db2777;
  margin: 0 0 5px 0;
  font-weight: 600;
}

.ropeflow-feature p {
  color: #e5e7eb;
  margin: 0;
  opacity: 0.92;
}

.ropeflow-unique__image {
  display: flex;
  justify-content: center;
}

.ropeflow-unique__img {
  width: 100%;
  max-width: 520px;
  max-height: 300px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 2px 10px 0 rgba(219,39,119,0.08);
}

@media (max-width: 900px) {
  .ropeflow-unique .ropeflow-features {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}
@media (max-width: 600px) {
  .ropeflow-unique .ropeflow-features {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .ropeflow-unique__img {
    max-width: 100%;
    max-height: 180px;
  }
}

/* Content Section */
.ropeflow-content .ropeflow-list {
  background: linear-gradient(110deg, #232f41 90%, rgba(219,39,119,0.04) 100%);
  border-radius: 13px;
  box-shadow: 0 2px 10px 0 rgba(30,41,55,0.06);
  padding: 28px 24px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
}

.ropeflow-list li {
  position: relative;
  padding-left: 22px;
  color: #e5e7eb;
  font-size: 13px;
}

.ropeflow-list li::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #db2777;
  position: absolute;
  left: 0;
  top: 7px;
  opacity: 0.88;
}

@media (max-width: 600px) {
  .ropeflow-content .ropeflow-list {
    padding: 14px 8px;
  }
}

/* Screenshots Section */
.ropeflow-screenshots__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.ropeflow-screenshot {
  background: linear-gradient(110deg, #232f41 90%, rgba(219,39,119,0.04) 100%);
  border-radius: 12px;
  box-shadow: 0 2px 10px 0 rgba(30,41,55,0.06);
  padding: 10px 10px 16px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.ropeflow-screenshot__img {
  width: 100%;
  max-width: 180px;
  max-height: 120px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 2px 8px 0 rgba(219,39,119,0.08);
}

.ropeflow-screenshot__caption {
  color: #e5e7eb;
  font-size: 12px;
  margin-top: 6px;
  text-align: center;
  opacity: 0.88;
}

@media (max-width: 900px) {
  .ropeflow-screenshots__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .ropeflow-screenshot__img {
    max-width: 100%;
    max-height: 100px;
  }
}
@media (max-width: 600px) {
  .ropeflow-screenshots__grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

/* FAQ Section */
.ropeflow-faq__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}

.ropeflow-faq__item {
  background: linear-gradient(110deg, #232f41 90%, rgba(219,39,119,0.04) 100%);
  border-radius: 13px;
  box-shadow: 0 2px 10px 0 rgba(30,41,55,0.06);
  padding: 20px 16px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.ropeflow-faq__item h4 {
  font-size: 1.02rem;
  color: #db2777;
  margin: 0 0 5px 0;
  font-weight: 600;
}

.ropeflow-faq__item p {
  color: #e5e7eb;
  margin: 0;
  opacity: 0.93;
  font-size: 13px;
}

@media (max-width: 900px) {
  .ropeflow-faq__list {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
}
@media (max-width: 600px) {
  .ropeflow-faq__list {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

/* Impressions Section */
.ropeflow-impressions__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.ropeflow-impressions__grid > div {
  background: linear-gradient(110deg, #232f41 90%, rgba(219,39,119,0.04) 100%);
  border-radius: 13px;
  box-shadow: 0 2px 10px 0 rgba(30,41,55,0.06);
  padding: 24px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ropeflow-impressions__grid h3 {
  font-size: 1.08rem;
  color: #db2777;
  margin: 0 0 5px 0;
  font-weight: 600;
}

@media (max-width: 900px) {
  .ropeflow-impressions__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

/* Try Section */
.ropeflow-try__wrap {
  background: linear-gradient(110deg, #232f41 90%, rgba(219,39,119,0.04) 100%);
  border-radius: 16px;
  box-shadow: 0 2px 14px 0 rgba(30,41,55,0.09);
  padding: 38px 28px 26px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  max-width: 670px;
  margin: 0 auto;
}

.ropeflow-try__actions {
  display: flex;
  gap: 16px;
  margin-top: 8px;
  flex-wrap: wrap;
}

/* Footer */
.ropeflow-footer {
  background: linear-gradient(90deg, #1e2937 95%, rgba(219,39,119,0.04) 100%);
  box-shadow: 0 -2px 16px 0 rgba(30,41,55,0.07);
  padding: 0 0 0 0;
}

.ropeflow-footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 36px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 40px 24px 18px 24px;
}

.ropeflow-footer__col {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.ropeflow-footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.ropeflow-footer__logo-img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  object-fit: cover;
  background: #232f41;
  box-shadow: 0 2px 8px 0 rgba(219,39,119,0.08);
}

.ropeflow-footer__logo-text {
  font-weight: 700;
  font-size: 16px;
  color: #fff;
}

.ropeflow-footer__about {
  color: #e5e7eb;
  font-size: 12px;
  opacity: 0.8;
}

.ropeflow-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.ropeflow-footer__links a {
  color: #e5e7eb;
  text-decoration: none;
  font-size: 13px;
  border-radius: 5px;
  padding: 3px 7px;
  transition: background 0.16s, color 0.16s;
}

.ropeflow-footer__links a:hover,
.ropeflow-footer__links a:focus {
  background: rgba(219,39,119,0.10);
  color: #db2777;
}

.ropeflow-footer__col h4 {
  color: #db2777;
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 6px 0;
}

.ropeflow-footer__col p {
  color: #e5e7eb;
  font-size: 12px;
  opacity: 0.8;
  margin: 0;
}

.ropeflow-footer__bottom {
  text-align: center;
  color: #e5e7eb;
  font-size: 12px;
  opacity: 0.7;
  padding: 14px 0 18px 0;
  border-top: 1px solid rgba(219,39,119,0.08);
  margin-top: 18px;
}

@media (max-width: 900px) {
  .ropeflow-footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    padding: 28px 10px 12px 10px;
  }
}
@media (max-width: 600px) {
  .ropeflow-footer__inner {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 18px 6px 10px 6px;
  }
}

/* Cookie Banner */
.ropeflow-cookie {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  background: linear-gradient(90deg, #232f41 90%, rgba(219,39,119,0.07) 100%);
  box-shadow: 0 -2px 12px 0 rgba(30,41,55,0.13);
  z-index: 2000;
  display: none;
  animation: ropeflow-cookie-fadein 0.5s;
}

@keyframes ropeflow-cookie-fadein {
  from { opacity: 0; transform: translateY(30px);}
  to { opacity: 1; transform: none;}
}

.ropeflow-cookie__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #e5e7eb;
  font-size: 13px;
}

.ropeflow-cookie__actions {
  display: flex;
  gap: 10px;
}

@media (max-width: 600px) {
  .ropeflow-cookie__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 8px;
  }
}

/* Headings, Paragraphs, etc. */
h1, h2, h3, h4, h5, h6 {
  font-family: inherit;
  color: #fff;
  margin-top: 0;
  margin-bottom: 0.4em;
  font-weight: 700;
  letter-spacing: 0.01em;
}

p {
  margin: 0 0 0.8em 0;
  color: #e5e7eb;
  line-height: 1.6;
}

strong {
  color: #db2777;
  font-weight: 600;
}

a {
  color: #db2777;
  text-decoration: none;
  transition: color 0.18s;
}

a:hover, a:focus {
  color: #fff;
  outline: none;
}

/* Remove default list styles if custom markers used */
.ropeflow-list,
.ropeflow-world__elements {
  list-style: none;
  padding-left: 0;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 8px;
  background: #232f41;
}
::-webkit-scrollbar-thumb {
  background: #db2777;
  border-radius: 6px;
  opacity: 0.5;
}
::-webkit-scrollbar-thumb:hover {
  background: #a21caf;
}

/* Selection */
::selection {
  background: #db2777;
  color: #fff;
}

/* Misc */
@media (max-width: 600px) {
  .ropeflow-section {
    padding: 32px 0 22px 0;
  }
  .ropeflow-section__title {
    margin-bottom: 18px;
    font-size: 1.19rem;
  }
}