:root {
  --lavender: #ece6fa;
  --lavender-dark: #dad0f0;
  --lavender-gradient: linear-gradient(135deg, #ece6fa 0%, #dad0f0 100%);
  --lavender-gradient-soft: linear-gradient(120deg, rgba(236,230,250,0.92) 0%, rgba(218,208,240,0.85) 100%);
  --green: #48e07c;
  --green-dark: #2dbd60;
  --text: #2d2d3a;
  --text-light: #6f6f8b;
  --white: #fff;
  --shadow: 0 2px 16px 0 rgba(80, 60, 120, 0.08), 0 1.5px 8px 0 rgba(80, 60, 120, 0.04);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --transition: 0.22s cubic-bezier(.6,0,.4,1);
  --max-width: 1240px;
  --font-main: 'Inter', 'Segoe UI', Arial, sans-serif;
}

html, body {
  min-height: 100%;
  background: var(--lavender-gradient-soft);
  font-family: var(--font-main);
  color: var(--text);
  font-size: 14px;
  line-height: 1.6;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body.mytown-fhp-body {
  margin: 0;
  padding: 0;
}

a {
  color: var(--green);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover, a:focus {
  color: var(--green-dark);
}

img, video {
  max-width: 100%;
  display: block;
  border-radius: var(--radius-md);
}

main {
  width: 100%;
  margin: 0 auto;
  background: transparent;
}

section {
  margin: 0 auto 48px auto;
  padding: 0 16px;
  max-width: var(--max-width);
}

.mytown-fhp-header {
  background: var(--lavender-gradient);
  box-shadow: var(--shadow);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.mytown-fhp-header__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 16px 14px 16px;
}

.mytown-fhp-logo__img {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 8px 0 rgba(80, 60, 120, 0.08);
  background: var(--white);
}

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

.mytown-fhp-nav__link {
  color: var(--text);
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
  position: relative;
}
.mytown-fhp-nav__link:hover, .mytown-fhp-nav__link:focus {
  background: rgba(72,224,124,0.12);
  color: var(--green-dark);
}

/* Hero section */
.mytown-fhp-hero {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: stretch;
  background: var(--lavender-gradient);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  margin-top: 32px;
  padding: 40px 32px 32px 32px;
  min-height: 360px;
  position: relative;
  overflow: hidden;
}
.mytown-fhp-hero__media {
  flex: 1 1 340px;
  max-width: 420px;
  min-width: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.mytown-fhp-hero__video, .mytown-fhp-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 320px;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 28px 0 rgba(80, 60, 120, 0.11);
}
.mytown-fhp-hero__image {
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: 100%;
  opacity: 0.18;
  z-index: 1;
  pointer-events: none;
}
.mytown-fhp-hero__video {
  position: relative;
  z-index: 2;
}
.mytown-fhp-hero__content {
  flex: 2 1 400px;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  z-index: 3;
}

.mytown-fhp-hero__title {
  font-size: 2.4rem;
  font-weight: 800;
  margin: 0 0 8px 0;
  letter-spacing: -0.5px;
  color: var(--text);
  background: linear-gradient(90deg, #b6a7e6 0%, #7be8b7 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.mytown-fhp-hero__tagline {
  font-size: 1.1rem;
  color: var(--text-light);
  margin: 0 0 8px 0;
  font-weight: 500;
}

.mytown-fhp-hero__stats {
  margin: 0 0 8px 0;
}

.mytown-fhp-hero__list {
  display: flex;
  gap: 32px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.mytown-fhp-hero__item {
  color: var(--text-light);
  font-size: 0.96em;
  position: relative;
  padding-left: 18px;
}
.mytown-fhp-hero__item::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  position: absolute;
  left: 0; top: 7px;
  opacity: 0.75;
}

.mytown-fhp-hero__cta {
  display: flex;
  gap: 18px;
  margin-top: 10px;
}
.mytown-fhp-hero__btn {
  display: inline-block;
  padding: 11px 28px;
  font-size: 1em;
  font-weight: 600;
  background: var(--green);
  color: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 8px 0 rgba(72,224,124,0.08);
  border: none;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  text-align: center;
  letter-spacing: 0.02em;
  outline: none;
}
.mytown-fhp-hero__btn:hover, .mytown-fhp-hero__btn:focus {
  background: var(--white);
  color: var(--green-dark);
  box-shadow: 0 4px 16px 0 rgba(72,224,124,0.14);
}
.mytown-fhp-hero__btn--alt {
  background: var(--white);
  color: var(--green-dark);
  border: 1px solid var(--green);
}
.mytown-fhp-hero__btn--alt:hover, .mytown-fhp-hero__btn--alt:focus {
  background: var(--green-dark);
  color: var(--white);
  border-color: var(--green-dark);
}

/* World section */
.mytown-fhp-world {
  background: var(--lavender-gradient-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 36px 24px 32px 24px;
  margin-bottom: 48px;
}
.mytown-fhp-world__inner {
  display: grid;
  grid-template-columns: 1.1fr 2fr;
  gap: 44px;
  align-items: flex-start;
}
.mytown-fhp-world__visual {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  max-width: 360px;
}
.mytown-fhp-world__img {
  width: 100%;
  max-width: 340px;
  max-height: 300px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 18px 0 rgba(80, 60, 120, 0.10);
}
.mytown-fhp-world__text {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.mytown-fhp-world__title {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0 0 4px 0;
}
.mytown-fhp-world__lead {
  color: var(--text-light);
  margin-bottom: 8px;
}
.mytown-fhp-world__subtitle {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 18px 0 6px 0;
}
.mytown-fhp-world__list {
  margin: 0 0 14px 0;
  padding: 0 0 0 16px;
  color: var(--text);
  font-size: 0.98em;
}
.mytown-fhp-world__list > li {
  margin-bottom: 6px;
}
.mytown-fhp-world__list > li > ul {
  margin-top: 6px;
  margin-bottom: 0;
  padding-left: 16px;
  font-size: 0.97em;
}
.mytown-fhp-world__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 18px;
  margin-top: 10px;
}
.mytown-fhp-world__card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  padding: 18px 14px 14px 16px;
  min-height: 88px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Play section */
.mytown-fhp-play {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 36px 24px 32px 24px;
}
.mytown-fhp-play__inner {
  max-width: 100%;
}
.mytown-fhp-play__title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 18px;
}
.mytown-fhp-play__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.mytown-fhp-play__col {
  background: var(--lavender-gradient);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  padding: 18px 16px 14px 16px;
  min-height: 140px;
}
.mytown-fhp-play__col h3 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 1.07rem;
  font-weight: 600;
}
.mytown-fhp-play__col ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
}
.mytown-fhp-play__col ul li {
  position: relative;
  margin-bottom: 7px;
  padding-left: 15px;
  color: var(--text-light);
}
.mytown-fhp-play__col ul li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  position: absolute;
  left: 0; top: 7px;
  opacity: 0.7;
}

/* Features section */
.mytown-fhp-features {
  background: var(--lavender-gradient-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 36px 24px 32px 24px;
}
.mytown-fhp-features__title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 18px;
}
.mytown-fhp-features__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.mytown-fhp-features__item {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  padding: 18px 14px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 140px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.mytown-fhp-features__item:hover, .mytown-fhp-features__item:focus-within {
  transform: translateY(-4px) scale(1.022);
  box-shadow: 0 8px 32px 0 rgba(72,224,124,0.09);
}
.mytown-fhp-features__img {
  width: 100%;
  max-height: 90px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 6px;
}

/* Content section */
.mytown-fhp-content {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 36px 24px 32px 24px;
}
.mytown-fhp-content__title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 18px;
}
.mytown-fhp-content__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.mytown-fhp-content__block {
  background: var(--lavender-gradient);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  padding: 18px 16px 14px 16px;
  min-height: 88px;
}
.mytown-fhp-content__block h3 {
  font-size: 1.07rem;
  font-weight: 600;
  margin: 0 0 7px 0;
}
.mytown-fhp-content__block ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
}
.mytown-fhp-content__block ul li {
  position: relative;
  margin-bottom: 6px;
  padding-left: 15px;
  color: var(--text-light);
}
.mytown-fhp-content__block ul li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  position: absolute;
  left: 0; top: 7px;
  opacity: 0.7;
}

/* Rhythm section */
.mytown-fhp-rhythm {
  background: var(--lavender-gradient-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 36px 24px 32px 24px;
}
.mytown-fhp-rhythm__inner {
  max-width: 100%;
}
.mytown-fhp-rhythm__title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.mytown-fhp-rhythm__list {
  margin: 0 0 14px 0;
  padding-left: 20px;
  color: var(--text);
}
.mytown-fhp-rhythm__list li {
  margin-bottom: 7px;
  font-weight: 500;
  color: var(--text-light);
}
.mytown-fhp-rhythm__subtitle {
  font-size: 1.07rem;
  font-weight: 600;
  margin: 20px 0 6px 0;
}
.mytown-fhp-rhythm__reasons {
  margin: 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.mytown-fhp-rhythm__reasons li {
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  padding: 10px 12px;
  font-size: 0.98em;
  color: var(--text-light);
}

/* Experience section */
.mytown-fhp-experience {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 36px 24px 32px 24px;
}
.mytown-fhp-experience__title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.mytown-fhp-experience__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.mytown-fhp-experience__grid > div {
  background: var(--lavender-gradient);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  padding: 18px 16px 14px 16px;
}
.mytown-fhp-experience__grid h3 {
  font-size: 1.07rem;
  font-weight: 600;
  margin: 0 0 7px 0;
}
.mytown-fhp-experience__grid ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
}
.mytown-fhp-experience__grid ul li {
  position: relative;
  margin-bottom: 7px;
  padding-left: 15px;
  color: var(--text-light);
}
.mytown-fhp-experience__grid ul li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  position: absolute;
  left: 0; top: 7px;
  opacity: 0.7;
}

/* Reviews section */
.mytown-fhp-reviews {
  background: var(--lavender-gradient-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 36px 24px 32px 24px;
}
.mytown-fhp-reviews__title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.mytown-fhp-reviews__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.mytown-fhp-reviews__item {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  padding: 18px 16px 14px 16px;
  min-height: 90px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mytown-fhp-reviews__item blockquote {
  margin: 0 0 6px 0;
  font-style: italic;
  color: var(--text);
  font-size: 1.02em;
}
.mytown-fhp-reviews__item figcaption {
  color: var(--text-light);
  font-size: 0.93em;
}

/* Screenshots section */
.mytown-fhp-screenshots {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 36px 24px 32px 24px;
}
.mytown-fhp-screenshots__title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.mytown-fhp-screenshots__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.mytown-fhp-screenshots__item {
  background: var(--lavender-gradient);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  padding: 10px 8px 8px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 120px;
}
.mytown-fhp-screenshots__item img {
  border-radius: var(--radius-sm);
  width: 100%;
  max-height: 90px;
  object-fit: cover;
  margin-bottom: 6px;
}
.mytown-fhp-screenshots__item figcaption {
  color: var(--text-light);
  font-size: 0.95em;
  text-align: center;
}

/* FAQ section */
.mytown-fhp-faq {
  background: var(--lavender-gradient-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 36px 24px 32px 24px;
}
.mytown-fhp-faq__title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.mytown-fhp-faq__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.mytown-fhp-faq__item {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  padding: 18px 16px 14px 16px;
  min-height: 90px;
}
.mytown-fhp-faq__item h3 {
  font-size: 1.07rem;
  font-weight: 600;
  margin: 0 0 7px 0;
}
.mytown-fhp-faq__item p {
  margin: 0;
  color: var(--text-light);
  font-size: 0.98em;
}

/* CTA section */
.mytown-fhp-cta {
  background: var(--green);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 36px 24px 32px 24px;
  margin-bottom: 56px;
  color: var(--white);
  text-align: center;
}
.mytown-fhp-cta__title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--white);
  letter-spacing: -0.5px;
}
.mytown-fhp-cta__text {
  color: #eafff2;
  font-size: 1.07em;
  margin-bottom: 16px;
}
.mytown-fhp-cta__actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  margin-top: 10px;
}
.mytown-fhp-cta__btn {
  display: inline-block;
  padding: 11px 28px;
  font-size: 1em;
  font-weight: 600;
  background: var(--white);
  color: var(--green-dark);
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  box-shadow: 0 2px 8px 0 rgba(72,224,124,0.08);
  letter-spacing: 0.02em;
  outline: none;
}
.mytown-fhp-cta__btn:hover, .mytown-fhp-cta__btn:focus {
  background: var(--green-dark);
  color: var(--white);
}
.mytown-fhp-cta__btn--alt {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}
.mytown-fhp-cta__btn--alt:hover, .mytown-fhp-cta__btn--alt:focus {
  background: var(--white);
  color: var(--green-dark);
}

/* Footer */
.mytown-fhp-footer {
  background: var(--lavender-gradient);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  box-shadow: 0 -2px 16px 0 rgba(80, 60, 120, 0.07);
  margin-top: 64px;
  padding: 0;
}
.mytown-fhp-footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 32px;
  padding: 36px 16px 28px 16px;
}
.mytown-fhp-footer__logo img {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  margin-bottom: 8px;
}
.mytown-fhp-footer__about {
  color: var(--text-light);
  font-size: 0.97em;
  margin-bottom: 8px;
}
.mytown-fhp-footer__copyright {
  color: var(--text-light);
  font-size: 0.92em;
  margin-top: 8px;
}
.mytown-fhp-footer__heading {
  font-size: 1.01em;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}
.mytown-fhp-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mytown-fhp-footer__links li {
  margin-bottom: 7px;
}
.mytown-fhp-footer__links a {
  color: var(--text-light);
  transition: color var(--transition);
  font-weight: 500;
}
.mytown-fhp-footer__links a:hover, .mytown-fhp-footer__links a:focus {
  color: var(--green-dark);
  text-decoration: underline;
}

/* Responsive styles */
@media (max-width: 1080px) {
  .mytown-fhp-header__inner,
  .mytown-fhp-footer__inner {
    max-width: 96vw;
    padding-left: 8px;
    padding-right: 8px;
  }
  .mytown-fhp-footer__inner {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 18px;
  }
  .mytown-fhp-hero {
    flex-direction: column;
    gap: 24px;
    padding: 28px 12px 18px 12px;
  }
  .mytown-fhp-world__inner {
    grid-template-columns: 1fr 1.7fr;
    gap: 24px;
  }
  .mytown-fhp-features__list, .mytown-fhp-faq__list, .mytown-fhp-screenshots__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .mytown-fhp-header__inner {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  .mytown-fhp-nav__list {
    flex-wrap: wrap;
    gap: 12px;
  }
  .mytown-fhp-world__inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .mytown-fhp-world__visual {
    max-width: 100%;
    justify-content: flex-start;
  }
  .mytown-fhp-play__grid,
  .mytown-fhp-content__grid,
  .mytown-fhp-experience__grid,
  .mytown-fhp-reviews__list,
  .mytown-fhp-faq__list {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .mytown-fhp-features__list,
  .mytown-fhp-screenshots__grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .mytown-fhp-footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}

@media (max-width: 600px) {
  html, body {
    font-size: 13px;
  }
  section {
    padding: 0 4vw;
  }
  .mytown-fhp-header__inner {
    padding: 10px 4vw 8px 4vw;
  }
  .mytown-fhp-footer__inner {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 24px 4vw 18px 4vw;
  }
  .mytown-fhp-hero {
    padding: 16px 4vw 12px 4vw;
    min-height: unset;
  }
  .mytown-fhp-world,
  .mytown-fhp-play,
  .mytown-fhp-features,
  .mytown-fhp-content,
  .mytown-fhp-rhythm,
  .mytown-fhp-experience,
  .mytown-fhp-reviews,
  .mytown-fhp-screenshots,
  .mytown-fhp-faq,
  .mytown-fhp-cta {
    padding: 18px 4vw 14px 4vw;
    border-radius: var(--radius-md);
  }
  .mytown-fhp-features__list,
  .mytown-fhp-screenshots__grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .mytown-fhp-rhythm__reasons {
    grid-template-columns: 1fr;
  }
}

/* Hide default list markers for custom bullets */
.mytown-fhp-hero__list,
.mytown-fhp-play__col ul,
.mytown-fhp-content__block ul,
.mytown-fhp-experience__grid ul {
  list-style: none;
  padding-left: 0;
}