:root {
  --ink: #163447;
  --ink-soft: #496373;
  --lake: #1d7891;
  --lake-dark: #10566d;
  --aqua: #49b8b0;
  --coral: #f27f62;
  --sun: #f6b84b;
  --sand: #f8f3e8;
  --cream: #fffdf8;
  --green: #67a876;
  --white: #ffffff;
  --line: rgba(22, 52, 71, 0.12);
  --shadow: 0 24px 70px rgba(26, 69, 91, 0.14);
  --shadow-soft: 0 14px 38px rgba(26, 69, 91, 0.1);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 17px;
  --max-width: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "DM Sans", sans-serif;
  line-height: 1.6;
}

body.modal-open {
  overflow: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
}

.site-shell {
  min-height: 100vh;
  overflow: hidden;
}

.site-header {
  width: min(calc(100% - 40px), var(--max-width));
  margin: 18px auto 0;
  padding: 12px 14px 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 100;
  background: rgba(255, 253, 248, 0.9);
  border: 1px solid rgba(22, 52, 71, 0.08);
  border-radius: 999px;
  box-shadow: 0 8px 30px rgba(35, 73, 91, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  display: inline-block;
  background: #dff3f1;
  flex: 0 0 auto;
}

.brand-mark__sun {
  width: 17px;
  height: 17px;
  position: absolute;
  top: 9px;
  right: 8px;
  border-radius: 50%;
  background: var(--sun);
}

.brand-mark__water {
  width: 60px;
  height: 28px;
  position: absolute;
  left: -8px;
  bottom: -6px;
  border-radius: 50% 50% 0 0;
  background: var(--lake);
  transform: rotate(-7deg);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-copy strong {
  font-family: "Nunito", sans-serif;
  font-size: 1.08rem;
  font-weight: 900;
}

.brand-copy small {
  color: var(--ink-soft);
  font-size: 0.69rem;
  margin-top: 4px;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 5px;
}

.primary-nav a {
  padding: 10px 13px;
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 600;
}

.primary-nav a:hover {
  color: var(--ink);
  background: rgba(29, 120, 145, 0.08);
}

.primary-nav .nav-cta {
  color: var(--white);
  background: var(--ink);
  padding-inline: 18px;
}

.primary-nav .nav-cta:hover {
  color: var(--white);
  background: var(--lake-dark);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  display: block;
  margin: 4px auto;
  border-radius: 999px;
  background: white;
}

.section {
  width: min(calc(100% - 40px), var(--max-width));
  margin-inline: auto;
  padding: 104px 0;
}

.hero {
  min-height: 720px;
  padding-top: 76px;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 70px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--lake);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4 {
  margin-top: 0;
  font-family: "Nunito", sans-serif;
  line-height: 1.05;
}

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(3.7rem, 6vw, 6.6rem);
  font-weight: 900;
  letter-spacing: -0.065em;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.35rem, 4.5vw, 4.25rem);
  font-weight: 900;
  letter-spacing: -0.045em;
}

h3 {
  font-size: 1.42rem;
  font-weight: 900;
}

.hero__lead {
  max-width: 670px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.16rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  min-height: 52px;
  padding: 13px 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  color: var(--white);
  background: var(--coral);
  box-shadow: 0 14px 28px rgba(242, 127, 98, 0.24);
}

.button--primary:hover {
  background: #e96f52;
}

.button--secondary {
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.button--full {
  width: 100%;
}

.hero__communities {
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 0.83rem;
}

.hero__communities strong {
  color: var(--ink);
}

.hero__visual {
  min-height: 580px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, #dff5f5 0%, #eaf7f1 58%, #c9e2c8 58%, #91bd86 75%, #247d96 75%);
  box-shadow: var(--shadow);
}

.sun-orb {
  width: 88px;
  height: 88px;
  position: absolute;
  top: 78px;
  right: 88px;
  border-radius: 50%;
  background: var(--sun);
  box-shadow: 0 0 0 18px rgba(246, 184, 75, 0.14);
}

.cloud {
  height: 20px;
  position: absolute;
  border-radius: 999px;
  background: rgba(255,255,255,0.78);
}

.cloud::before,
.cloud::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: inherit;
}

.cloud--one {
  width: 80px;
  top: 108px;
  left: 74px;
}

.cloud--one::before {
  width: 34px;
  height: 34px;
  left: 12px;
  bottom: 4px;
}

.cloud--one::after {
  width: 26px;
  height: 26px;
  right: 12px;
  bottom: 3px;
}

.cloud--two {
  width: 55px;
  top: 178px;
  right: 50px;
}

.cloud--two::before {
  width: 22px;
  height: 22px;
  left: 8px;
  bottom: 3px;
}

.cloud--two::after {
  width: 18px;
  height: 18px;
  right: 8px;
  bottom: 2px;
}

.scene-card {
  position: absolute;
  z-index: 6;
  border: 1px solid rgba(255,255,255,0.75);
  border-radius: 20px;
  background: rgba(255,255,255,0.88);
  box-shadow: 0 16px 38px rgba(20, 65, 87, 0.15);
  backdrop-filter: blur(12px);
}

.scene-card__label {
  display: block;
  color: var(--ink-soft);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scene-card--apartments {
  width: 245px;
  top: 185px;
  left: 42px;
  padding: 18px 18px 14px;
  transform: rotate(-3deg);
}

.building-row {
  height: 95px;
  margin-top: 8px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.building {
  display: block;
  position: relative;
  border-radius: 6px 6px 0 0;
  background:
    repeating-linear-gradient(90deg, transparent 0 13px, rgba(255,255,255,0.36) 13px 17px),
    repeating-linear-gradient(180deg, transparent 0 15px, rgba(255,255,255,0.36) 15px 19px),
    var(--lake);
}

.building--one {
  width: 56px;
  height: 74px;
}

.building--two {
  width: 72px;
  height: 94px;
  background-color: var(--coral);
}

.building--three {
  width: 54px;
  height: 64px;
  background-color: var(--green);
}

.scene-card--lakeside {
  width: 216px;
  top: 285px;
  right: 30px;
  padding: 16px;
  transform: rotate(4deg);
}

.mini-lake {
  height: 105px;
  margin-top: 8px;
  overflow: hidden;
  position: relative;
  border-radius: 13px;
  background: linear-gradient(#d9f0ef 0 53%, #2e8da4 53%);
}

.mini-lake__sun {
  width: 28px;
  height: 28px;
  position: absolute;
  top: 18px;
  right: 35px;
  border-radius: 50%;
  background: var(--sun);
}

.mini-lake__dock {
  width: 100px;
  height: 10px;
  position: absolute;
  left: 48px;
  bottom: 24px;
  background: #ac7657;
  transform: rotate(-8deg);
}

.scene-card--passport {
  left: 60px;
  bottom: 52px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: rotate(2deg);
}

.scene-card--passport strong,
.scene-card--passport small {
  display: block;
}

.scene-card--passport small {
  color: var(--ink-soft);
  font-size: 0.73rem;
}

.passport-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--green);
  font-weight: 900;
}

.scene-ground {
  width: 120%;
  height: 170px;
  position: absolute;
  left: -10%;
  bottom: 84px;
  border-radius: 50% 50% 0 0;
  background: #93c084;
}

.scene-water {
  width: 120%;
  height: 116px;
  position: absolute;
  left: -10%;
  bottom: 0;
  background:
    repeating-radial-gradient(ellipse at center, rgba(255,255,255,0.2) 0 1px, transparent 2px 16px),
    #247d96;
}

.scene-people {
  position: absolute;
  right: 112px;
  bottom: 128px;
  z-index: 5;
}

.person {
  width: 26px;
  height: 52px;
  position: absolute;
  bottom: 0;
  border-radius: 14px 14px 8px 8px;
  background: var(--coral);
}

.person::before {
  content: "";
  width: 22px;
  height: 22px;
  position: absolute;
  top: -18px;
  left: 2px;
  border-radius: 50%;
  background: #b87553;
}

.person--one {
  right: 54px;
}

.person--two {
  right: 20px;
  height: 47px;
  background: var(--lake-dark);
}

.person--three {
  right: -14px;
  height: 54px;
  background: var(--sun);
}

.dog {
  width: 28px;
  height: 18px;
  position: absolute;
  right: -50px;
  bottom: 0;
  border-radius: 8px 10px 6px 6px;
  background: #764b34;
}

.dog::before {
  content: "";
  width: 13px;
  height: 13px;
  position: absolute;
  right: -7px;
  top: -7px;
  border-radius: 50%;
  background: inherit;
}

.trust-strip {
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
  padding: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.trust-strip div {
  padding: 4px 18px;
  border-right: 1px solid var(--line);
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  margin-bottom: 5px;
  font-family: "Nunito", sans-serif;
  font-size: 1rem;
}

.trust-strip span {
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.section--soft {
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100vw - var(--max-width)) / 2));
  background: var(--sand);
}

.section-heading {
  max-width: 750px;
  margin-bottom: 46px;
}

.section-heading p:not(.eyebrow) {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.03rem;
}

.section-heading--split {
  max-width: none;
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 80px;
  align-items: end;
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.community-card {
  min-height: 295px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(22,52,71,0.09);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.72);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.community-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft);
}

.community-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.community-number {
  color: var(--lake);
  font-family: "Nunito", sans-serif;
  font-weight: 900;
}

.community-status {
  padding: 5px 8px;
  border-radius: 999px;
  color: var(--lake-dark);
  background: rgba(73,184,176,0.13);
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
}

.community-card h3 {
  margin: 46px 0 13px;
}

.community-card p {
  margin: 0 0 28px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.text-button,
.inline-link {
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  color: var(--lake-dark);
  font-weight: 800;
  cursor: pointer;
}

.community-card .text-button {
  margin-top: auto;
}

.text-button:hover,
.inline-link:hover {
  color: var(--coral);
}

.independent-note {
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: 0.75rem;
  text-align: center;
}

.places-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 18px;
}

.place-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: white;
  box-shadow: 0 12px 34px rgba(22,52,71,0.07);
}

.place-card--featured {
  grid-row: span 2;
}

.place-card__art {
  min-height: 170px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.place-card--featured .place-card__art {
  min-height: 280px;
}

.place-card__art--lake {
  background: linear-gradient(180deg, #ddf4f2 0 58%, #3a95a9 58%);
}

.place-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.9);
  color: var(--lake-dark);
  font-size: 0.7rem;
  font-weight: 800;
}

.lake-art__sun {
  width: 66px;
  height: 66px;
  position: absolute;
  top: 68px;
  right: 72px;
  border-radius: 50%;
  background: var(--sun);
}

.lake-art__water {
  width: 140%;
  height: 90px;
  position: absolute;
  bottom: -15px;
  border-radius: 50% 50% 0 0;
  background: rgba(255,255,255,0.15);
}

.lake-art__dock {
  width: 190px;
  height: 14px;
  position: absolute;
  bottom: 52px;
  left: 52px;
  border-radius: 4px;
  background: #b67b58;
  transform: rotate(-6deg);
}

.place-card__art--food {
  background: #f8e4d8;
}

.place-card__art--fitness {
  background: #dff1e2;
}

.place-card__art--dog {
  background: #e7e4f6;
}

.place-art-icon {
  font-size: 4rem;
}

.place-card__body {
  padding: 25px;
}

.place-type {
  margin: 0 0 8px;
  color: var(--coral);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.place-card h3 {
  margin-bottom: 9px;
}

.place-card p:not(.place-type) {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.section--dark {
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100vw - var(--max-width)) / 2));
  color: white;
  background:
    radial-gradient(circle at 15% 10%, rgba(73,184,176,0.15), transparent 25%),
    radial-gradient(circle at 90% 40%, rgba(242,127,98,0.11), transparent 30%),
    #102e40;
}

.section-heading--light p:not(.eyebrow) {
  color: rgba(255,255,255,0.65);
}

.section-heading--light .eyebrow {
  color: #72d4cc;
}

.dashboard-shell {
  min-height: 650px;
  display: grid;
  grid-template-columns: 235px 1fr;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 28px;
  background: #f6f8f8;
  box-shadow: 0 35px 90px rgba(0,0,0,0.28);
}

.dashboard-sidebar {
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  color: white;
  background: #173b4e;
}

.dashboard-brand {
  padding: 4px 8px 26px;
  display: flex;
  align-items: center;
  gap: 11px;
}

.dashboard-brand__mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--coral);
  font-family: "Nunito", sans-serif;
  font-weight: 900;
}

.dashboard-brand strong,
.dashboard-brand small {
  display: block;
}

.dashboard-brand strong {
  font-family: "Nunito", sans-serif;
}

.dashboard-brand small {
  color: rgba(255,255,255,0.56);
  font-size: 0.67rem;
}

.dashboard-nav {
  display: grid;
  gap: 7px;
}

.dashboard-nav__item {
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 0;
  border-radius: 12px;
  color: rgba(255,255,255,0.64);
  background: transparent;
  text-align: left;
  font-size: 0.86rem;
  font-weight: 700;
  cursor: pointer;
}

.dashboard-nav__item:hover,
.dashboard-nav__item.is-active {
  color: white;
  background: rgba(255,255,255,0.1);
}

.dashboard-nav__item span {
  width: 20px;
  text-align: center;
}

.dashboard-new-plan {
  margin-top: auto;
  padding: 12px;
  border: 0;
  border-radius: 12px;
  color: white;
  background: var(--coral);
  font-weight: 800;
  cursor: pointer;
}

.dashboard-main {
  padding: 27px;
  color: var(--ink);
  background: #f2f5f5;
}

.dashboard-topbar {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dashboard-topbar p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.74rem;
}

.dashboard-topbar h3 {
  margin: 4px 0 0;
  font-size: 1.5rem;
}

.avatar-stack {
  display: flex;
}

.avatar-stack span {
  width: 38px;
  height: 38px;
  margin-left: -8px;
  display: grid;
  place-items: center;
  border: 3px solid #f2f5f5;
  border-radius: 50%;
  color: white;
  background: var(--lake);
  font-size: 0.67rem;
  font-weight: 800;
}

.avatar-stack span:nth-child(2) {
  background: var(--coral);
}

.avatar-stack span:nth-child(3) {
  background: var(--green);
}

.avatar-stack span:nth-child(4) {
  color: var(--ink);
  background: #e6ecec;
}

.dashboard-panel {
  display: none;
}

.dashboard-panel.is-active {
  display: block;
  animation: panelIn 240ms ease;
}

@keyframes panelIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dashboard-grid {
  display: grid;
  gap: 15px;
}

.dashboard-grid--top {
  grid-template-columns: 1.3fr 0.8fr;
}

.dashboard-grid--lower {
  margin-top: 15px;
  grid-template-columns: 1fr 1fr;
}

.dash-card {
  padding: 20px;
  border: 1px solid rgba(22,52,71,0.08);
  border-radius: 18px;
  background: white;
  box-shadow: 0 9px 24px rgba(25,63,82,0.05);
}

.dash-card--welcome {
  min-height: 160px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  color: white;
  background:
    radial-gradient(circle at 90% 10%, rgba(255,255,255,0.16), transparent 28%),
    linear-gradient(135deg, #237e95, #16586e);
}

.dash-card--welcome p {
  margin: 0;
  color: rgba(255,255,255,0.68);
  font-size: 0.8rem;
}

.dash-card--welcome h4 {
  max-width: 340px;
  margin: 8px 0 8px;
  font-size: 1.65rem;
}

.small-button {
  flex: 0 0 auto;
  padding: 9px 12px;
  border: 0;
  border-radius: 10px;
  color: var(--ink);
  background: white;
  font-size: 0.75rem;
  font-weight: 800;
  cursor: pointer;
}

.dash-label {
  margin: 0 0 7px;
  color: var(--lake);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.dash-card--welcome .dash-label {
  color: #8ae0d6;
}

.dash-card--passport-mini {
  display: flex;
  align-items: center;
  gap: 17px;
}

.mini-progress-ring {
  width: 74px;
  height: 74px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(var(--coral) 0 60%, #e8eeee 60%);
  position: relative;
}

.mini-progress-ring::after {
  content: "";
  width: 56px;
  height: 56px;
  position: absolute;
  border-radius: 50%;
  background: white;
}

.mini-progress-ring span {
  position: relative;
  z-index: 1;
  font-weight: 900;
}

.dash-card--passport-mini h4 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.dash-card__heading {
  margin-bottom: 14px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.dash-card__heading h4 {
  margin: 0;
  font-size: 1.05rem;
}

.icon-button {
  border: 0;
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
}

.activity-list {
  display: grid;
}

.activity-item {
  padding: 12px 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  border-top: 1px solid rgba(22,52,71,0.08);
}

.activity-icon {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: var(--sand);
}

.activity-item strong,
.activity-item small {
  display: block;
}

.activity-item strong {
  font-size: 0.78rem;
}

.activity-item small,
.activity-time {
  color: var(--ink-soft);
  font-size: 0.66rem;
}

.plan-list {
  display: grid;
}

.plan-row {
  width: 100%;
  padding: 10px 0;
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 10px;
  align-items: center;
  border: 0;
  border-top: 1px solid rgba(22,52,71,0.08);
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.plan-row:hover .plan-join {
  color: white;
  background: var(--coral);
}

.plan-date {
  width: 43px;
  height: 49px;
  display: grid;
  align-content: center;
  justify-items: center;
  border-radius: 10px;
  background: var(--sand);
}

.plan-date strong,
.plan-date small {
  line-height: 1;
}

.plan-date strong {
  font-size: 0.98rem;
}

.plan-date small {
  margin-top: 3px;
  color: var(--coral);
  font-size: 0.56rem;
  font-weight: 900;
}

.plan-info strong,
.plan-info small {
  display: block;
}

.plan-info strong {
  font-size: 0.77rem;
}

.plan-info small {
  color: var(--ink-soft);
  font-size: 0.66rem;
}

.plan-join {
  padding: 6px 9px;
  border-radius: 8px;
  color: var(--coral);
  background: rgba(242,127,98,0.1);
  font-size: 0.66rem;
  font-weight: 800;
  transition: 180ms ease;
}

.dash-card--full {
  min-height: 490px;
}

.panel-intro {
  max-width: 700px;
  margin: -5px 0 24px;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.feed-card {
  padding: 18px 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  border-top: 1px solid rgba(22,52,71,0.08);
}

.feed-avatar {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--lake);
  font-size: 0.72rem;
  font-weight: 800;
}

.feed-card strong,
.feed-card small {
  display: block;
}

.feed-card small {
  color: var(--ink-soft);
  font-size: 0.7rem;
}

.feed-card p {
  margin: 10px 0;
  font-size: 0.86rem;
}

.feed-card button {
  padding: 7px 10px;
  border: 0;
  border-radius: 8px;
  color: var(--lake-dark);
  background: rgba(73,184,176,0.12);
  font-size: 0.7rem;
  font-weight: 800;
  cursor: pointer;
}

.district-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.district-plan {
  min-height: 170px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--cream);
  text-align: left;
  cursor: pointer;
}

.district-plan:hover {
  border-color: rgba(29,120,145,0.4);
}

.district-plan > span {
  font-size: 2rem;
}

.district-plan strong {
  margin-top: auto;
}

.district-plan small {
  color: var(--ink-soft);
}

.passport-panel-heading {
  margin-bottom: 22px;
  display: flex;
  align-items: start;
  justify-content: space-between;
}

.passport-level {
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--green);
  background: rgba(103,168,118,0.12);
  font-size: 0.67rem;
  font-weight: 800;
}

.passport-stamp-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 11px;
}

.passport-stamp {
  min-height: 160px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 2px dashed #cad5d7;
  border-radius: 16px;
  text-align: center;
  opacity: 0.56;
}

.passport-stamp.is-earned {
  border-style: solid;
  border-color: rgba(103,168,118,0.34);
  background: rgba(103,168,118,0.08);
  opacity: 1;
}

.passport-stamp > span {
  font-size: 1.8rem;
}

.passport-stamp strong {
  margin-top: 8px;
  font-size: 0.75rem;
}

.passport-stamp small {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 0.62rem;
}

.passport-feature {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: center;
}

.passport-feature__copy > p:not(.eyebrow) {
  max-width: 560px;
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.feature-checklist {
  margin: 28px 0 32px;
  padding: 0;
  list-style: none;
}

.feature-checklist li {
  margin: 13px 0;
  padding-left: 29px;
  position: relative;
}

.feature-checklist li::before {
  content: "✓";
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 2px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--green);
  font-size: 0.7rem;
  font-weight: 900;
}

.passport-book {
  min-height: 470px;
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  transform: rotate(1.4deg);
  filter: drop-shadow(0 28px 55px rgba(26,69,91,0.18));
}

.passport-book__cover {
  padding: 45px 34px;
  overflow: hidden;
  position: relative;
  border-radius: 25px 0 0 25px;
  color: white;
  background: var(--lake-dark);
}

.passport-book__seal {
  width: 60px;
  height: 60px;
  margin-bottom: 45px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  font-family: "Nunito", sans-serif;
  font-weight: 900;
}

.passport-book__cover small {
  color: rgba(255,255,255,0.55);
  font-weight: 800;
  letter-spacing: 0.13em;
}

.passport-book__cover h3 {
  margin: 12px 0 5px;
  font-size: 2.5rem;
}

.passport-book__cover p {
  margin: 0;
  color: rgba(255,255,255,0.64);
}

.passport-book__waves {
  width: 310px;
  height: 150px;
  position: absolute;
  left: -40px;
  bottom: -85px;
  border: 18px solid rgba(255,255,255,0.08);
  border-radius: 50%;
}

.passport-book__page {
  padding: 34px;
  border-radius: 0 25px 25px 0;
  background: #fbf3df;
}

.passport-page-top {
  margin-bottom: 24px;
  padding-bottom: 13px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(22,52,71,0.13);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.passport-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px;
}

.passport-page-stamp {
  min-height: 100px;
  padding: 12px;
  display: grid;
  place-items: center;
  border: 2px dashed rgba(22,52,71,0.23);
  border-radius: 50%;
  color: rgba(22,52,71,0.42);
  font-family: "Nunito", sans-serif;
  font-size: 0.7rem;
  font-weight: 900;
  text-align: center;
  transform: rotate(-5deg);
}

.passport-page-stamp:nth-child(even) {
  transform: rotate(5deg);
}

.passport-page-stamp.is-earned {
  border-color: var(--coral);
  color: var(--coral);
  background: rgba(242,127,98,0.06);
}

.interest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.interest-chip {
  min-height: 82px;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(22,52,71,0.1);
  border-radius: 16px;
  background: rgba(255,255,255,0.78);
  font-weight: 800;
  text-align: left;
  cursor: pointer;
  transition: 180ms ease;
}

.interest-chip:hover,
.interest-chip.is-selected {
  border-color: rgba(29,120,145,0.4);
  background: white;
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.interest-chip.is-selected {
  color: var(--lake-dark);
  outline: 2px solid rgba(73,184,176,0.24);
}

.interest-chip span {
  font-size: 1.45rem;
}

.join-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 85px;
  align-items: start;
}

.join-copy {
  position: sticky;
  top: 120px;
}

.join-copy > p:not(.eyebrow) {
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.founding-benefits {
  margin-top: 34px;
  display: grid;
  gap: 13px;
}

.founding-benefits div {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 13px;
  align-items: start;
}

.founding-benefits span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--lake-dark);
  background: rgba(73,184,176,0.14);
  font-size: 0.72rem;
  font-weight: 900;
}

.founding-benefits p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.founding-benefits strong {
  color: var(--ink);
}

.join-form {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: white;
  box-shadow: var(--shadow);
}

.form-heading {
  margin-bottom: 24px;
}

.form-step {
  color: var(--coral);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form-heading h3 {
  margin: 8px 0 0;
  font-size: 1.7rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.join-form label,
.join-form legend {
  color: var(--ink);
  font-size: 0.79rem;
  font-weight: 800;
}

.join-form label {
  display: grid;
  gap: 7px;
  margin-bottom: 17px;
}

.join-form input,
.join-form select,
.join-form textarea {
  width: 100%;
  border: 1px solid rgba(22,52,71,0.16);
  border-radius: 12px;
  outline: none;
  color: var(--ink);
  background: #fcfdfd;
}

.join-form input,
.join-form select {
  height: 49px;
  padding: 0 13px;
}

.join-form textarea {
  padding: 13px;
  resize: vertical;
}

.join-form input:focus,
.join-form select:focus,
.join-form textarea:focus {
  border-color: var(--aqua);
  box-shadow: 0 0 0 4px rgba(73,184,176,0.12);
}

.join-form fieldset {
  margin: 0 0 17px;
  padding: 0;
  border: 0;
}

.join-form legend {
  margin-bottom: 9px;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.checkbox-grid label,
.consent-row {
  margin: 0;
  display: flex;
  grid-template-columns: none;
  align-items: flex-start;
  gap: 9px;
  font-weight: 600;
}

.checkbox-grid label {
  padding: 11px;
  border: 1px solid rgba(22,52,71,0.11);
  border-radius: 10px;
  background: #fcfdfd;
  font-size: 0.74rem;
}

.checkbox-grid input,
.consent-row input {
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
  flex: 0 0 auto;
}

.consent-row {
  margin-bottom: 18px !important;
  color: var(--ink-soft) !important;
  font-size: 0.73rem !important;
  font-weight: 500 !important;
}

.form-note {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 0.68rem;
  text-align: center;
}

.vip-section {
  margin-bottom: 90px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 45px;
  align-items: center;
  border-radius: var(--radius-xl);
  color: white;
  background:
    radial-gradient(circle at 15% 20%, rgba(73,184,176,0.18), transparent 30%),
    #14364a;
}

.vip-section h2 {
  margin: 0;
  font-size: 2.3rem;
}

.vip-section p {
  margin: 0;
  color: rgba(255,255,255,0.66);
}

.site-footer {
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
  padding: 30px 0 45px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 25px;
  border-top: 1px solid var(--line);
}

.brand--footer .brand-mark {
  width: 38px;
  height: 38px;
}

.footer-links {
  display: flex;
  gap: 18px;
  color: var(--ink-soft);
  font-size: 0.8rem;
  font-weight: 700;
}

.site-footer > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.72rem;
  text-align: right;
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal.is-open {
  display: flex;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 32, 45, 0.72);
  backdrop-filter: blur(8px);
}

.modal__card {
  width: min(100%, 480px);
  padding: 36px;
  position: relative;
  z-index: 1;
  border-radius: 26px;
  background: white;
  box-shadow: 0 30px 90px rgba(0,0,0,0.25);
  animation: modalIn 220ms ease;
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: scale(0.97) translateY(8px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.modal__close {
  width: 38px;
  height: 38px;
  position: absolute;
  top: 16px;
  right: 16px;
  border: 0;
  border-radius: 50%;
  background: var(--sand);
  font-size: 1.4rem;
  cursor: pointer;
}

.modal__icon {
  display: block;
  margin-bottom: 12px;
  font-size: 2.2rem;
}

.modal__card h2 {
  margin-bottom: 12px;
  font-size: 2.2rem;
}

.modal__card > p:not(.eyebrow) {
  margin-bottom: 25px;
  color: var(--ink-soft);
}

.toast {
  max-width: min(420px, calc(100% - 34px));
  padding: 14px 17px;
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 1100;
  border-radius: 999px;
  color: white;
  background: var(--ink);
  box-shadow: var(--shadow);
  font-size: 0.83rem;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 18px);
  transition: 220ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (max-width: 1040px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    min-height: 540px;
  }

  .community-grid {
    grid-template-columns: 1fr 1fr;
  }

  .places-grid {
    grid-template-columns: 1fr 1fr;
  }

  .place-card--featured {
    grid-row: auto;
    grid-column: span 2;
  }

  .passport-stamp-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .interest-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .vip-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .site-header {
    border-radius: 24px;
  }

  .menu-toggle {
    display: block;
  }

  .primary-nav {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    padding: 14px;
    align-items: stretch;
    flex-direction: column;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--cream);
    box-shadow: var(--shadow);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav a {
    padding: 12px 14px;
  }

  .hero {
    padding-top: 56px;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .trust-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-strip div:last-child {
    border-bottom: 0;
  }

  .section-heading--split,
  .passport-feature,
  .join-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .join-copy {
    position: static;
  }

  .dashboard-shell {
    grid-template-columns: 1fr;
  }

  .dashboard-sidebar {
    display: block;
  }

  .dashboard-brand {
    padding-bottom: 18px;
  }

  .dashboard-nav {
    display: flex;
    overflow-x: auto;
  }

  .dashboard-nav__item {
    flex: 0 0 auto;
  }

  .dashboard-new-plan {
    width: 100%;
    margin-top: 14px;
  }

  .passport-book {
    min-height: 420px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .site-footer > p {
    text-align: center;
  }
}

@media (max-width: 680px) {
  .site-header,
  .section,
  .trust-strip,
  .site-footer {
    width: min(calc(100% - 24px), var(--max-width));
  }

  .section {
    padding: 76px 0;
  }

  .section--soft,
  .section--dark {
    width: 100%;
    padding-inline: 12px;
  }

  .site-header {
    margin-top: 10px;
    padding-left: 12px;
  }

  .brand-copy small {
    display: none;
  }

  h1 {
    font-size: clamp(3.1rem, 16vw, 4.4rem);
  }

  h2 {
    font-size: 2.55rem;
  }

  .hero {
    min-height: auto;
    gap: 45px;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__visual {
    min-height: 460px;
  }

  .sun-orb {
    top: 48px;
    right: 45px;
  }

  .scene-card--apartments {
    width: 205px;
    top: 145px;
    left: 22px;
  }

  .scene-card--lakeside {
    width: 170px;
    top: 260px;
    right: 14px;
  }

  .scene-card--passport {
    left: 24px;
    bottom: 27px;
  }

  .scene-people {
    right: 77px;
    bottom: 108px;
  }

  .community-grid,
  .places-grid,
  .dashboard-grid--top,
  .dashboard-grid--lower,
  .district-cards,
  .passport-stamp-grid,
  .interest-grid,
  .form-row,
  .checkbox-grid {
    grid-template-columns: 1fr;
  }

  .place-card--featured {
    grid-column: auto;
  }

  .place-card--featured .place-card__art {
    min-height: 220px;
  }

  .dashboard-main {
    padding: 16px;
  }

  .dashboard-topbar {
    align-items: flex-start;
  }

  .avatar-stack span {
    width: 33px;
    height: 33px;
  }

  .dash-card--welcome {
    align-items: flex-start;
    flex-direction: column;
  }

  .passport-book {
    grid-template-columns: 1fr;
    transform: none;
  }

  .passport-book__cover {
    min-height: 330px;
    border-radius: 25px 25px 0 0;
  }

  .passport-book__page {
    border-radius: 0 0 25px 25px;
  }

  .passport-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .join-form {
    padding: 24px 18px;
  }

  .vip-section {
    margin-bottom: 65px;
    padding: 32px 24px;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}


/* The Avenue */
.place-card__art--avenue{min-height:170px;background:linear-gradient(180deg,#dff4f3 0 58%,#dcc6a3 58%)}
.avenue-store{position:absolute;bottom:50px;height:72px;border-radius:6px 6px 0 0;box-shadow:inset 0 -14px rgba(255,255,255,.18)}
.avenue-store:after{content:"";position:absolute;left:9px;right:9px;bottom:10px;height:24px;border-radius:3px;background:rgba(255,255,255,.72)}
.avenue-store--one{width:90px;left:16px;background:#66a8af}.avenue-store--two{width:105px;left:96px;height:88px;background:#ef8d70}.avenue-store--three{width:88px;right:16px;background:#799e72}
.avenue-fountain{width:54px;height:20px;position:absolute;left:50%;bottom:24px;border:5px solid rgba(29,120,145,.42);border-radius:50%;transform:translateX(-50%)}
.avenue-fountain:before{content:"";width:9px;height:40px;position:absolute;left:50%;bottom:5px;border-radius:50% 50% 4px 4px;background:rgba(29,120,145,.48);transform:translateX(-50%)}
.avenue-palm{width:6px;height:48px;position:absolute;bottom:42px;background:#8d6844}.avenue-palm:before{content:"✳";position:absolute;top:-23px;left:-14px;color:#4e925f;font-size:2rem}.avenue-palm--one{left:25px;transform:rotate(-5deg)}.avenue-palm--two{right:28px;transform:rotate(5deg)}

/* Passport / paid pass model */
.pass-model-section{border-top:1px solid var(--line)}
.pass-model-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:18px}
.pass-model-card{padding:34px;border:1px solid var(--line);border-radius:var(--radius-xl);background:var(--sand)}
.pass-model-card--paid{color:white;background:radial-gradient(circle at 90% 5%,rgba(246,184,75,.2),transparent 28%),var(--lake-dark)}
.pass-model-card__tag{display:inline-block;padding:7px 10px;border-radius:999px;color:var(--lake-dark);background:rgba(73,184,176,.14);font-size:.67rem;font-weight:900;letter-spacing:.08em;text-transform:uppercase}
.pass-model-card--paid .pass-model-card__tag{color:#ffe3a5;background:rgba(246,184,75,.14)}
.pass-model-icon{width:62px;height:62px;margin:34px 0 24px;display:grid;place-items:center;border-radius:18px;color:white;background:var(--green);font-family:"Nunito",sans-serif;font-size:1.2rem;font-weight:900}
.pass-model-card--paid .pass-model-icon{color:var(--ink);background:var(--sun)}
.pass-model-card h3{margin-bottom:12px;font-size:1.75rem}.pass-model-card p{color:var(--ink-soft)}.pass-model-card--paid p,.pass-model-card--paid li{color:rgba(255,255,255,.72)}
.pass-model-card ul{margin:24px 0 0;padding-left:19px}.pass-model-card li{margin:9px 0;color:var(--ink-soft);font-size:.88rem}
.partner-offers-preview{margin-top:22px;padding:34px;border:1px solid var(--line);border-radius:var(--radius-xl);background:white;box-shadow:var(--shadow-soft)}
.partner-offers-heading{margin-bottom:24px;display:flex;justify-content:space-between;align-items:end;gap:30px}.partner-offers-heading h3{margin:0;font-size:1.75rem}.partner-offers-heading>span{color:var(--ink-soft);font-size:.72rem}
.offer-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:12px}.offer-ticket{min-height:210px;padding:20px;position:relative;overflow:hidden;border:2px dashed rgba(22,52,71,.18);border-radius:17px;background:var(--cream)}
.offer-ticket:before,.offer-ticket:after{content:"";width:19px;height:19px;position:absolute;top:50%;border-radius:50%;background:white}.offer-ticket:before{left:-11px}.offer-ticket:after{right:-11px}
.offer-ticket__category{color:var(--coral);font-size:.65rem;font-weight:900;letter-spacing:.1em;text-transform:uppercase}.offer-ticket h4{margin:27px 0 10px;font-size:1.05rem}.offer-ticket p{color:var(--ink-soft);font-size:.72rem}.offer-ticket strong{position:absolute;left:20px;bottom:17px;color:var(--lake);font-size:.65rem;letter-spacing:.12em}
@media(max-width:1040px){.offer-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:680px){.pass-model-grid,.offer-grid{grid-template-columns:1fr}.partner-offers-preview{padding:24px 18px}.partner-offers-heading{align-items:start;flex-direction:column;gap:8px}}

/* =========================================================
   PRODUCTION ACCOUNT SIGNUP
   ========================================================= */
.auth-form-message {
  min-height: 24px;
  margin-top: 14px;
  padding: 0;
  font-size: 0.82rem;
  font-weight: 700;
}
.auth-form-message.is-error,
.auth-form-message.is-success {
  padding: 12px 14px;
  border-radius: 12px;
}
.auth-form-message.is-error {
  color: #8e302a;
  background: #fff0ed;
  border: 1px solid rgba(142, 48, 42, 0.15);
}
.auth-form-message.is-success {
  color: #2c6b3d;
  background: #edf8ef;
  border: 1px solid rgba(44, 107, 61, 0.15);
}
.existing-account-link {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
  text-align: center;
}
.existing-account-link a,
.form-note a {
  color: var(--lake-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.join-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}
