:root {
  --dark: #12090d;
  --dark-two: #27101a;
  --dark-three: #3a1625;
  --white: #ffffff;
  --cream: #fff0ca;
  --muted: #dbc4bb;
  --gold: #d8ae63;
  --gold-light: #fff1c7;
  --border: rgba(255, 255, 255, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  background: var(--dark);
  color: var(--white);
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.page {
  min-height: 100vh;
  overflow: hidden;
}

.hero-section {
  position: relative;
  min-height: 100vh;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(218,165,96,0.28), transparent 35%),
    radial-gradient(circle at 80% 20%, rgba(180,72,102,0.28), transparent 34%),
    linear-gradient(135deg, var(--dark), var(--dark-two) 58%, var(--dark-three));
}

.grid-overlay {
  position: absolute;
  inset: 0;
  opacity: .3;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 76px 76px;
}

.site-header,
.hero-container {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 460px);
  gap: 56px;
  align-items: center;
  padding: 58px 0 108px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: .04em;
}

.brand-logo {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #f6d99a, #c99a49);
  color: #261017;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 25px;
  font-weight: 700;
  box-shadow: 0 20px 50px rgba(216,174,99,.22);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #e5cfc5;
  font-size: 14px;
}

.site-nav a:hover {
  color: var(--white);
}

.nav-button {
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.1);
  color: var(--white);
  backdrop-filter: blur(18px);
}

.hero-container {
  display: grid;
  grid-template-columns: 1.05fr .8fr;
  gap: 56px;
  align-items: center;
  padding: 58px 0 108px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding: 9px 15px;
  border-radius: 999px;
  border: 1px solid rgba(216,174,99,.3);
  background: rgba(216,174,99,.1);
  color: #ffe4a9;
  font-size: 14px;
  font-weight: 700;
}

.eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 18px var(--gold);
}

.hero-content h1 {
  max-width: 780px;
  margin: 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(46px, 6.8vw, 86px);
  line-height: .95;
  letter-spacing: -.045em;
}

.hero-text {
  max-width: 680px;
  margin: 28px 0 0;
  color: #e2cbc1;
  font-size: 20px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 16px 28px;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.primary-button {
  border: 0;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #261017;
  box-shadow: 0 24px 55px rgba(216,174,99,.25);
}

.secondary-button {
  border: 1px solid var(--border);
  background: rgba(255,255,255,.1);
  color: var(--white);
  backdrop-filter: blur(18px);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 680px;
  margin-top: 44px;
}

.stat-card {
  padding: 21px;
  border-radius: 28px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(18px);
}

.stat-card strong {
  display: block;
  color: var(--cream);
  font-size: 30px;
}

.stat-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.signup-card {
  padding: 22px;
  border-radius: 36px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.09);
  box-shadow: 0 40px 120px rgba(0,0,0,.42);
  backdrop-filter: blur(28px);
}

.photo-panel {
  position: relative;
  min-height: 390px;
  margin-bottom: 26px;
  overflow: hidden;
  border-radius: 29px;
  border: 1px solid var(--border);
  isolation: isolate;
  background: #12090d;
}

.photo-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to top,
    rgba(18, 9, 13, 0.75),
    rgba(18, 9, 13, 0.22) 52%,
    rgba(18, 9, 13, 0.05)
  );
  pointer-events: none;
}

.photo-slide {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  transform: scale(1.04);
  animation: photoSlideshow 64s infinite;
}

.slide-1 {
  background-image: url('/images/b1.png');
  animation-delay: 0s;
}

.slide-2 {
  background-image: url('/images/b2.png');
  animation-delay: 4s;
}

.slide-3 {
  background-image: url('/images/b3.png');
  animation-delay: 8s;
}

.slide-4 {
  background-image: url('/images/b4.png');
  animation-delay: 12s;
}

.slide-5 {
  background-image: url('/images/b5.png');
  animation-delay: 16s;
}

.slide-6 {
  background-image: url('/images/b6.png');
  animation-delay: 20s;
}

.slide-7 {
  background-image: url('/images/b7.png');
  animation-delay: 24s;
}

.slide-8 {
  background-image: url('/images/b8.png');
  animation-delay: 28s;
}

.slide-9 {
  background-image: url('/images/b9.png');
  animation-delay: 32s;
}

.slide-10 {
  background-image: url('/images/b10.png');
  animation-delay: 36s;
}

.slide-11 {
  background-image: url('/images/b11.png');
  animation-delay: 40s;
}

.slide-12 {
  background-image: url('/images/b12.png');
  animation-delay: 44s;
}

.slide-13 {
  background-image: url('/images/b13.png');
  animation-delay: 48s;
}

.slide-14 {
  background-image: url('/images/b14.png');
  animation-delay: 52s;
}

.slide-15 {
  background-image: url('/images/b15.png');
  animation-delay: 56s;
}

.slide-16 {
  background-image: url('/images/b16.png');
  animation-delay: 60s;
}

@keyframes photoSlideshow {
  0% {
    opacity: 0;
    transform: scale(1.04);
  }

  2.5% {
    opacity: 1;
  }

  6.25% {
    opacity: 1;
    transform: scale(1.1);
  }

  8.75% {
    opacity: 0;
    transform: scale(1.12);
  }

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

.profile-chip {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(18px);
}
.profile-chip span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 14px;
}

.profile-chip strong {
  padding: 9px 12px;
  border-radius: 999px;
  background: #ffe7ad;
  color: #261017;
  font-size: 12px;
}

.signup-card h2 {
  margin: 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 40px;
  letter-spacing: -.03em;
}

.signup-copy {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.signup-form {
  display: grid;
  gap: 13px;
  margin-top: 24px;
}

.signup-form input {
  width: 100%;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid var(--border);
  outline: none;
  background: rgba(255,255,255,.1);
  color: var(--white);
}

.signup-form input::placeholder {
  color: rgba(255,255,255,.48);
}

.signup-form input:focus {
  border-color: var(--gold);
}

.signup-form button {
  margin-top: 8px;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 16px 24px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #261017;
  font-weight: 800;
  box-shadow: 0 24px 55px rgba(216,174,99,.2);
}

.fine-print {
  margin: 16px 0 0;
  color: rgba(219,196,187,.8);
  text-align: center;
  font-size: 12px;
  line-height: 1.6;
}

.experience-section {
  background: #0e070a;
  padding: 82px 20px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
}

.feature-card {
  padding: 30px;
  border-radius: 32px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.05);
}

.feature-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 18px;
  background: rgba(216,174,99,.15);
  color: #ffe4a9;
  font-size: 22px;
}

.feature-card h3 {
  margin: 0;
  font-size: 21px;
}

.feature-card p {
  margin: 13px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.thank-you-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 20px;
  background:
    radial-gradient(circle at top left, rgba(218,165,96,0.25), transparent 35%),
    linear-gradient(135deg, var(--dark), var(--dark-three));
}

.thank-you-card {
  width: min(540px, 100%);
  padding: 42px;
  border-radius: 34px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.09);
  text-align: center;
  box-shadow: 0 40px 120px rgba(0,0,0,.42);
}

.thank-you-logo {
  margin: 0 auto 22px;
}

.thank-you-card h1 {
  margin: 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 46px;
}

.thank-you-card p {
  margin: 16px 0 28px;
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 1000px) {
  .hero-container {
    grid-template-columns: 1fr;
    padding-top: 34px;
  }

  .signup-card {
    max-width: 560px;
  }
}

@media (max-width: 700px) {
  .photo-panel {
    min-height: 360px;
    border-radius: 24px;
  }

  .photo-slide {
    background-position: center top;
  }

  .profile-chip {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 14px;
    border-radius: 20px;
    gap: 12px;
  }

  .profile-chip p {
    font-size: 15px;
  }

  .profile-chip span {
    font-size: 12px;
  }

  .profile-chip strong {
    padding: 8px 11px;
    font-size: 11px;
  }
}

@media (max-width: 420px) {
  .photo-panel {
    min-height: 320px;
  }

  .profile-chip {
    align-items: flex-start;
  }

  .profile-chip strong {
    flex-shrink: 0;
  }
}

@media (max-width: 420px) {
  .photo-panel {
    min-height: 320px;
    background-position: center top;
  }

  .profile-chip {
    align-items: flex-start;
  }

  .profile-chip strong {
    flex-shrink: 0;
  }
}:root {
  --dark: #12090d;
  --dark-two: #27101a;
  --dark-three: #3a1625;
  --white: #ffffff;
  --cream: #fff0ca;
  --muted: #dbc4bb;
  --gold: #d8ae63;
  --gold-light: #fff1c7;
  --border: rgba(255, 255, 255, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  background: var(--dark);
  color: var(--white);
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.page {
  min-height: 100vh;
  overflow: hidden;
}

.hero-section {
  position: relative;
  min-height: 100vh;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(218,165,96,0.28), transparent 35%),
    radial-gradient(circle at 80% 20%, rgba(180,72,102,0.28), transparent 34%),
    linear-gradient(135deg, var(--dark), var(--dark-two) 58%, var(--dark-three));
}

.grid-overlay {
  position: absolute;
  inset: 0;
  opacity: .3;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 76px 76px;
}

.site-header,
.hero-container {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 460px);
  gap: 56px;
  align-items: center;
  padding: 58px 0 108px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: .04em;
}

.brand-logo {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #f6d99a, #c99a49);
  color: #261017;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 25px;
  font-weight: 700;
  box-shadow: 0 20px 50px rgba(216,174,99,.22);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #e5cfc5;
  font-size: 14px;
}

.site-nav a:hover {
  color: var(--white);
}

.nav-button {
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.1);
  color: var(--white);
  backdrop-filter: blur(18px);
}

.hero-container {
  display: grid;
  grid-template-columns: 1.05fr .8fr;
  gap: 56px;
  align-items: center;
  padding: 58px 0 108px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding: 9px 15px;
  border-radius: 999px;
  border: 1px solid rgba(216,174,99,.3);
  background: rgba(216,174,99,.1);
  color: #ffe4a9;
  font-size: 14px;
  font-weight: 700;
}

.eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 18px var(--gold);
}

.hero-content h1 {
  max-width: 780px;
  margin: 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(46px, 6.8vw, 86px);
  line-height: .95;
  letter-spacing: -.045em;
}

.hero-text {
  max-width: 680px;
  margin: 28px 0 0;
  color: #e2cbc1;
  font-size: 20px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 16px 28px;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.primary-button {
  border: 0;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #261017;
  box-shadow: 0 24px 55px rgba(216,174,99,.25);
}

.secondary-button {
  border: 1px solid var(--border);
  background: rgba(255,255,255,.1);
  color: var(--white);
  backdrop-filter: blur(18px);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 680px;
  margin-top: 44px;
}

.stat-card {
  padding: 21px;
  border-radius: 28px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(18px);
}

.stat-card strong {
  display: block;
  color: var(--cream);
  font-size: 30px;
}

.stat-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.signup-card {
  padding: 22px;
  border-radius: 36px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.09);
  box-shadow: 0 40px 120px rgba(0,0,0,.42);
  backdrop-filter: blur(28px);
}

.photo-panel {
  position: relative;
  min-height: 390px;
  margin-bottom: 26px;
  overflow: hidden;
  border-radius: 29px;
  border: 1px solid var(--border);
  isolation: isolate;
  background: #12090d;
}

.photo-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to top,
    rgba(18, 9, 13, 0.75),
    rgba(18, 9, 13, 0.22) 52%,
    rgba(18, 9, 13, 0.05)
  );
  pointer-events: none;
}

.photo-slide {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  transform: scale(1.04);
  animation: photoSlideshow 64s infinite;
}

.slide-1 {
  background-image: url('/images/compressed/b1_s.jpg');
  animation-delay: 0s;
}

.slide-2 {
  background-image: url('/images/compressed/b2_s.jpg');
  animation-delay: 4s;
}

.slide-3 {
  background-image: url('/images/compressed/b3_s.jpg');
  animation-delay: 8s;
}

.slide-4 {
  background-image: url('/images/compressed/b4_s.jpg');
  animation-delay: 12s;
}

.slide-5 {
  background-image: url('/images/compressed/b5_s.jpg');
  animation-delay: 16s;
}


.slide-7 {
  background-image: url('/images/compressed/b7_s.jpg');
  animation-delay: 24s;
}

.slide-8 {
  background-image: url('/images/compressed/b8_s.jpg');
  animation-delay: 28s;
}

.slide-9 {
  background-image: url('/images/compressed/b9_s.jpg');
  animation-delay: 32s;
}

.slide-10 {
  background-image: url('/images/compressed/b10_s.jpg');
  animation-delay: 36s;
}

.slide-11 {
  background-image: url('/images/compressed/b11_s.jpg');
  animation-delay: 40s;
}

.slide-12 {
  background-image: url('/images/compressed/b12_s.jpg');
  animation-delay: 44s;
}

.slide-13 {
  background-image: url('/images/compressed/b13_s.jpg');
  animation-delay: 48s;
}

.slide-14 {
  background-image: url('/images/compressed/b14_s.jpg');
  animation-delay: 52s;
}

.slide-15 {
  background-image: url('/images/compressed/b15_s.jpg');
  animation-delay: 56s;
}

.slide-16 {
  background-image: url('/images/compressed/b16_s.jpg');
  animation-delay: 60s;
}

@keyframes photoSlideshow {
  0% {
    opacity: 0;
    transform: scale(1.04);
  }

  2.5% {
    opacity: 1;
  }

  6.25% {
    opacity: 1;
    transform: scale(1.1);
  }

  8.75% {
    opacity: 0;
    transform: scale(1.12);
  }

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

.profile-chip {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(18px);
}
.profile-chip span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 14px;
}

.profile-chip strong {
  padding: 9px 12px;
  border-radius: 999px;
  background: #ffe7ad;
  color: #261017;
  font-size: 12px;
}

.signup-card h2 {
  margin: 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 40px;
  letter-spacing: -.03em;
}

.signup-copy {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.signup-form {
  display: grid;
  gap: 13px;
  margin-top: 24px;
}

.signup-form input {
  width: 100%;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid var(--border);
  outline: none;
  background: rgba(255,255,255,.1);
  color: var(--white);
}

.signup-form input::placeholder {
  color: rgba(255,255,255,.48);
}

.signup-form input:focus {
  border-color: var(--gold);
}

.signup-form button {
  margin-top: 8px;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 16px 24px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #261017;
  font-weight: 800;
  box-shadow: 0 24px 55px rgba(216,174,99,.2);
}

.fine-print {
  margin: 16px 0 0;
  color: rgba(219,196,187,.8);
  text-align: center;
  font-size: 12px;
  line-height: 1.6;
}

.experience-section {
  background: #0e070a;
  padding: 82px 20px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
}

.feature-card {
  padding: 30px;
  border-radius: 32px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.05);
}

.feature-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 18px;
  background: rgba(216,174,99,.15);
  color: #ffe4a9;
  font-size: 22px;
}

.feature-card h3 {
  margin: 0;
  font-size: 21px;
}

.feature-card p {
  margin: 13px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.thank-you-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 20px;
  background:
    radial-gradient(circle at top left, rgba(218,165,96,0.25), transparent 35%),
    linear-gradient(135deg, var(--dark), var(--dark-three));
}

.thank-you-card {
  width: min(540px, 100%);
  padding: 42px;
  border-radius: 34px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.09);
  text-align: center;
  box-shadow: 0 40px 120px rgba(0,0,0,.42);
}

.thank-you-logo {
  margin: 0 auto 22px;
}

.thank-you-card h1 {
  margin: 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 46px;
}

.thank-you-card p {
  margin: 16px 0 28px;
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 1000px) {
  .hero-container {
    grid-template-columns: 1fr;
    padding-top: 34px;
  }

  .signup-card {
    max-width: 560px;
  }
}

@media (max-width: 700px) {
  .photo-panel {
    min-height: 360px;
    border-radius: 24px;
  }

  .photo-slide {
    background-position: center top;
  }

  .profile-chip {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 14px;
    border-radius: 20px;
    gap: 12px;
  }

  .profile-chip p {
    font-size: 15px;
  }

  .profile-chip span {
    font-size: 12px;
  }

  .profile-chip strong {
    padding: 8px 11px;
    font-size: 11px;
  }
}

@media (max-width: 420px) {
  .photo-panel {
    min-height: 320px;
  }

  .profile-chip {
    align-items: flex-start;
  }

  .profile-chip strong {
    flex-shrink: 0;
  }
}

@media (max-width: 420px) {
  .photo-panel {
    min-height: 320px;
    background-position: center top;
  }

  .profile-chip {
    align-items: flex-start;
  }

  .profile-chip strong {
    flex-shrink: 0;
  }
}