/* Base styles and variables */
:root {
  --primary-color: #0038a8;
  --primary-light: #086acc;
  --dark-blue: #001643;
  --text-gray: #64718c;
  --light-gray: #f9f9f9;
  --white: #fff;
  --spacing-80: 80px;
  --spacing-36: 36px;
  --spacing-24: 24px;
  --spacing-20: 20px;
  --spacing-12: 12px;
  --spacing-8: 8px;
  --border-radius-32: 32px;
  --border-radius-16: 16px;
  --border-radius-8: 8px;
  --shadow-card: 8px 20px 50px 0px rgba(16, 21, 38, 0.09);
  --shadow-button: 0px 4px 33px 0px rgba(47, 97, 197, 0.37);
  --shadow-icon: 7px 20px 66px 0px rgba(47, 59, 84, 0.13);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family:
    "Poppins",
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  color: var(--dark-blue);
  background-color: var(--white);
}

img {
  max-width: 100%;
}

/* Layout */
.page-wrapper {
  display: flex;
  padding-left: var(--spacing-80);
  padding-right: var(--spacing-80);
  flex-direction: column;
  align-items: center;

  background-color: var(--white);
  background-image: url('assets/bg.png');
  background-size: auto;
  background-position: top center;
  background-repeat: no-repeat;
}

.desktop-container {
  width: 1440px;
  max-width: 100%;
  padding-top: 36px;
  overflow: hidden;
}

/* Logo section */
.logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 0 var(--spacing-80);
}

.logo-image {
  aspect-ratio: 3.38;
  object-fit: contain;
  object-position: center;
  width: 109px;
  max-width: 100%;
}

/* Header section */
.header {
  display: flex;
  margin-top: 100px;
  width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 0 var(--spacing-80);
  gap: 32px;
}

.header-text {
  display: flex;
  width: 844px;
  max-width: 100%;
  flex-direction: column;
  text-align: center;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
}

.header-title {
  color: var(--dark-blue);
  font-size: 64px;
  font-weight: 600;
  line-height: 77px;
}

.highlight {
  color: var(--primary-light);
}

.header-description {
  color: var(--text-gray);
  font-size: 20px;
  font-weight: 300;
  margin-top: 24px;
}

.waitlist-button {
  color: var(--dark-blue);
  border-radius: var(--border-radius-16);
  box-shadow: var(--shadow-button);
  margin-top: 32px;
  width: 143px;
  max-width: 100%;
  gap: 8px;
  font-size: 16px;
  font-weight: 400;
  padding: 16px 24px;
  background-color: var(--white);
  border: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
}

/* About section */
.about-section {
  color: var(--dark-blue);
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  line-height: 48px;
  padding: 80px;
}

.about-image {
  margin-bottom: 100px;
  box-shadow: 0px 46.49px 80px 0px rgba(0, 22, 67, 0.16);
}

.light-text {
  font-weight: 300;
}

/* Benefits section */
.benefits-section {
  display: flex;
  margin-top: 80px;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  padding: 80px;
  gap: 80px;
}

.benefits-title {
  color: var(--dark-blue);
  text-align: center;
  font-size: 52px;
  font-weight: 600;
  line-height: 1.3;
}

.benefits-content {
  margin-top: 80px;
  width: 100%;
  gap: 16px;
}

/* Feature card */
.feature-card {
  display: flex;
  position: relative;
  min-height: 557px;
  width: 100%;
  padding: 56px 56px 357px;
  gap: 10px;
  overflow: hidden;
  align-items: flex-start;
  justify-content: flex-start;
  border-radius: var(--border-radius-32);
  background-color: var(--light-gray);
}

.feature-description {
  color: var(--dark-blue);
  font-size: 32px;
  font-weight: 300;
  line-height: 48px;
  z-index: 0;
  width: 720px;
}

.feature-image {
  position: absolute;
  z-index: 0;
  min-width: 240px;
  right: 50px;
  bottom: 0;
  width: 751px;
  height: 543px;
  background-image: url('assets/img.png');
  background-size: contain;
  background-position: bottom center;
  background-repeat: no-repeat;
}

/* Card columns layout */
.card-columns {
  display: flex;
  gap: 20px;
}

.card-column {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  line-height: normal;
  width: 50%;
  margin-left: 0;
}

/* Entity card */
.entity-card {
  border-radius: 6.55px;
  box-shadow: var(--shadow-card);
  min-width: 240px;
  height: 340px;
  width: 272px;
  overflow: hidden;
  padding: 16px;
  gap: 16px;
  background-color: var(--white);
}

.entity-header {
  display: flex;
  width: 100%;
  gap: 8px;
  align-items: center;
  justify-content: flex-start;
}

.entity-name {
  display: flex;
  margin-top: auto;
  margin-bottom: auto;
  gap: 8px;
  font-family:
    Roboto,
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  font-size: 14px;
  color: var(--dark-blue);
  font-weight: 600;
  justify-content: flex-start;
  flex: 1;
  flex-shrink: 1;
  flex-basis: 0%;
  align-items: center;
  align-self: stretch;
}

.entity-icon {
  aspect-ratio: 0.95;
  object-fit: contain;
  object-position: center;
  width: 20px;
  align-self: stretch;
  margin-top: auto;
  margin-bottom: auto;
  flex-shrink: 0;
}

.entity-label {
  color: var(--dark-blue);
  align-self: stretch;
  margin-top: auto;
  margin-bottom: auto;
}

.entity-details {
  display: flex;
  margin-top: auto;
  margin-bottom: auto;
  height: 20px;
  gap: 4px;
  justify-content: flex-start;
  width: 20px;
  align-items: center;
  align-self: stretch;
}

.entity-flags {
  display: flex;
  margin-top: auto;
  margin-bottom: auto;
  width: 20px;
  align-items: center;
  gap: -14px;
  justify-content: flex-start;
  align-self: stretch;
}

.entity-flag {
  display: flex;
  margin-top: auto;
  margin-bottom: auto;
  width: 20px;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
}

.flag-icon {
  aspect-ratio: 0.95;
  object-fit: contain;
  object-position: center;
  width: 100%;
}

.entity-content {
  display: flex;
  margin-top: 16px;
  width: 100%;
  flex-direction: column;
  overflow: hidden;
  justify-content: flex-start;
  padding: 8px;
  gap: 8px;
  background-color: #fafafa;
  border-radius: 6.55px;
  align-items: stretch;
}

.entity-content-header {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}

.entity-amount {
  display: flex;
  margin-top: auto;
  margin-bottom: auto;
  gap: 12px;
  font-family:
    Roboto,
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  font-size: 12px;
  font-weight: 400;
  white-space: nowrap;
  line-height: 1;
  justify-content: flex-start;
  flex: 1;
  flex-shrink: 1;
  flex-basis: 0%;
  align-items: flex-start;
  align-self: stretch;
}

.nav-info,
.wealth-info {
  display: flex;
  gap: 4px;
  justify-content: flex-start;
  align-items: center;
}

.nav-label,
.nav-value {
  color: var(--dark-blue);
  align-self: stretch;
  margin-top: auto;
  margin-bottom: auto;
}

.wealth-label,
.wealth-value {
  color: #64748b;
  align-self: stretch;
  margin-top: auto;
  margin-bottom: auto;
}

.icon-button {
  display: flex;
  margin-top: auto;
  margin-bottom: auto;
  padding: 6px;
  justify-content: center;
  align-items: center;
  border-radius: 6.55px;
  align-self: stretch;
}

.icon-image {
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  width: 17px;
  align-self: stretch;
  margin-top: auto;
  margin-bottom: auto;
}

.entity-tabbar {
  display: flex;
  margin-top: 8px;
  width: 100%;
  max-width: 231px;
  align-items: stretch;
  font-family:
    Roboto,
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  justify-content: flex-end;
}

.tab-container {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  flex: 1;
  flex-shrink: 1;
  flex-basis: 0%;
}

.tab-item {
  display: flex;
  margin-top: auto;
  margin-bottom: auto;
  gap: 7px;
  color: #64748b;
  flex: 1;
  flex-shrink: 1;
  flex-basis: 0%;
  padding: 1.699px 10.197px;
  position: relative;
  justify-content: center;
  align-items: flex-start;
  border-radius: 6.55px;
  align-self: stretch;
}

.tab-item.active {
  color: var(--dark-blue);
  width: 102px;
}

.tab-label {
  color: inherit;
  z-index: 0;
  margin-top: auto;
  margin-bottom: auto;
}

.tab-indicator {
  object-fit: contain;
  object-position: center;
  width: 100%;
  stroke-width: 1.699px;
  align-self: flex-start;
  position: absolute;
  z-index: 0;
  flex-shrink: 0;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 0;
}

.add-asset-button {
  display: flex;
  margin-top: 8px;
  gap: 6.798px;
  font-family:
    Roboto,
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  font-size: 10px;
  color: var(--primary-color);
  font-weight: 400;
  line-height: 1;
  padding: 3.399px 6.798px;
  justify-content: center;
  align-items: center;
  border-radius: 3.275px;
  align-self: flex-start;
  background: transparent;
  border: none;
  cursor: pointer;
}

.add-icon {
  aspect-ratio: 0.93;
  object-fit: contain;
  object-position: center;
  width: 13px;
  align-self: stretch;
  margin-top: auto;
  margin-bottom: auto;
  flex-shrink: 0;
}

.button-label {
  color: inherit;
  align-self: stretch;
  margin-top: auto;
  margin-bottom: auto;
}

.entity-sections {
  margin-top: 8px;
  max-width: 100%;
  width: 231px;
  gap: 8px;
}

.accordion {
  width: 100%;
  gap: 4px;
  margin-top: 8px;
}

.accordion:first-child {
  margin-top: 0;
}

.accordion-item {
  display: flex;
  width: 100%;
  gap: 8px;
  justify-content: flex-start;
  padding: 0;
  align-items: center;
  border-radius: 6.55px;
}

.accordion-header {
  display: flex;
  margin-top: auto;
  margin-bottom: auto;
  gap: 6.798px;
  font-family:
    Roboto,
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  font-size: 16px;
  color: var(--dark-blue);
  font-weight: 600;
  white-space: nowrap;
  justify-content: flex-start;
  flex: 1;
  flex-shrink: 1;
  flex-basis: 0%;
  align-items: center;
  align-self: stretch;
}

.section-icon {
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  width: 14px;
  align-self: stretch;
  margin-top: auto;
  margin-bottom: auto;
  flex-shrink: 0;
}

.section-text {
  color: var(--dark-blue);
  align-self: stretch;
  margin-top: auto;
  margin-bottom: auto;
}

.accordion-data {
  display: flex;
  margin-top: auto;
  margin-bottom: auto;
  justify-content: flex-end;
  align-items: center;
  align-self: stretch;
}

.data-label {
  color: var(--dark-blue);
  font-family:
    Roboto,
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  align-self: stretch;
  margin-top: auto;
  margin-bottom: auto;
}

.dnd-card {
  border-radius: 3.275px;
  border: 1.699px dashed #cbd5e1;
  display: flex;
  min-height: 41px;
  margin-top: 4px;
  width: 100%;
  gap: 6.798px;
  padding: 3.399px 6.798px;
  background-color: var(--white);
}

.dnd-card.blue {
  display: flex;
  margin-top: 247px;
  margin-right: -192px;
  gap: 8px;
  font-family:
    Roboto,
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  color: var(--white);
  font-weight: 400;
  justify-content: flex-start;
  padding: 4px 8px;
  background-color: var(--primary-color);
  align-items: center;
  border-radius: 3.275px;
  box-shadow: var(--shadow-card);
  align-self: flex-end;
  z-index: 10;
  border: none;
}

.dnd-info {
  display: flex;
  margin-top: auto;
  margin-bottom: auto;
  flex-direction: column;
  flex: 1;
  flex-shrink: 1;
  flex-basis: 0%;
  gap: 2px;
  justify-content: center;
  align-items: stretch;
  align-self: stretch;
}

.dnd-header {
  display: flex;
  width: 100%;
  gap: 4px;
  font-size: 12px;
  line-height: 1;
  justify-content: flex-start;
  align-items: center;
}

.dnd-icon {
  aspect-ratio: 1.08;
  object-fit: contain;
  object-position: center;
  width: 14px;
  align-self: stretch;
  margin-top: auto;
  margin-bottom: auto;
  flex-shrink: 0;
}

.dnd-label {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  color: var(--white);
  text-overflow: ellipsis;
  align-self: stretch;
  margin-top: auto;
  margin-bottom: auto;
  flex: 1;
  flex-shrink: 1;
  flex-basis: 0%;
}

.dnd-description {
  display: flex;
  width: 100%;
  gap: 4px;
  font-size: 10px;
  line-height: 1;
  justify-content: flex-start;
  align-items: flex-start;
}

.dnd-text {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  color: var(--white);
  text-overflow: ellipsis;
  opacity: 0.7;
  flex: 1;
  flex-shrink: 1;
  flex-basis: 0%;
}

.dnd-inner {
  display: flex;
  margin-top: auto;
  margin-bottom: auto;
  gap: 8px;
  font-size: 12px;
  white-space: nowrap;
  line-height: 1;
  justify-content: flex-end;
  align-items: center;
  align-self: stretch;
}

.dnd-value {
  color: var(--white);
  align-self: stretch;
  margin-top: auto;
  margin-bottom: auto;
}

.dnd-handle {
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  width: 13px;
  align-self: stretch;
  margin-top: auto;
  margin-bottom: auto;
  flex-shrink: 0;
}

.card-container {
  display: flex;
  width: 100%;
  align-items: stretch;
}

.entity-menu {
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  width: 20px;
  align-self: stretch;
  margin-top: auto;
  margin-bottom: auto;
  flex-shrink: 0;
}

.entity-blur {
  border-radius: 6.55px;
  border: 1.699px dashed #cbd5e1;
  box-shadow: 0px 3.399px 3.399px 0px rgba(0, 0, 0, 0.25);
  position: absolute;
  z-index: 0;
  display: flex;
  max-width: 100%;
  width: 272px;
  flex-direction: column;
  overflow: hidden;
  font-family:
    Roboto,
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  font-size: 14px;
  color: var(--dark-blue);
  font-weight: 600;
  text-align: center;
  right: 0;
  bottom: 0;
  height: 292px;
}

.blur-content {
  color: var(--dark-blue);
  border-radius: 7px;
  background-color: rgba(255, 255, 255, 0.75);
  padding: 136px 27px 109px;
  overflow: hidden;
}

.left-icon {
  align-self: stretch;
  display: flex;
  min-height: 6px;
  margin-top: auto;
  margin-bottom: auto;
  width: 17px;
}

/* Features grid */
.features-grid {
  display: flex;
  margin-top: 16px;
  gap: 16px;
  font-family:
    "Poppins",
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  justify-content: flex-start;
  align-items: flex-start;

}

.feature-box {
  border-radius: var(--border-radius-32);
  position: relative;
  min-width: 240px;
  min-height: 557px;
  padding: 56px 56px 341px;
  overflow: hidden;
  width: 632px;
  background-color: var(--light-gray);
}

.feature-box-title {
  color: var(--dark-blue);
  font-size: 20px;
  font-weight: 500;
}

.feature-box-description {
  color: var(--text-gray);
  font-size: 20px;
  font-weight: 300;
  line-height: 30px;
  margin-top: 10px;
}

.action-panel::after {
  content: "";
  position: absolute;
  top: 330px;
  right: 0;
  width: 500px;
  height: 105px;
  background-image: url('assets/ap.png');
  background-size: 100%;
  background-position: bottom right;
  background-repeat: no-repeat;
  z-index: 0;
  box-shadow: 6.64px 34.16px 62.63px 0px rgba(47, 59, 84, 0.12);

}

.action-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  background-image: url('assets/apbg.png');
  background-size: 100%;
  background-position: bottom center;
  background-repeat: no-repeat;
  z-index: 0;
}

.hfam::before {
  content: "";
  position: absolute;
  bottom: -92px;
  right: -92px;
  width: 585px;
  height: 390px;
  background-image: url('assets/2a91478a6a89bb9f33a0076e874863bd6ef49404.jpg');
  background-size: 100%;
  background-position: bottom right;
  background-repeat: no-repeat;
  z-index: 1;
  border-radius: 32px;
}

.action-panel-inner {
  border-radius: 11.387px;
  box-shadow: 6.643px 34.162px 62.631px 0px rgba(47, 59, 84, 0.12);
  min-width: 240px;
  margin-top: auto;
  margin-bottom: auto;
  width: 1264px;
  padding: 11px;
  overflow: hidden;
  background-color: var(--white);
  align-self: stretch;
}

.action-header {
  display: flex;
  width: 100%;
  align-items: stretch;
  gap: 40px 100px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.datetime {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 15px;
  font-weight: 600;
  justify-content: flex-start;
  height: 100%;
}

.date,
.time {
  display: flex;
  margin-top: auto;
  margin-bottom: auto;
  align-items: center;
  gap: 8px;
  justify-content: flex-start;
  align-self: stretch;
}

.time {
  white-space: nowrap;
}

.date-text,
.time-text {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  color: var(--dark-blue);
  text-overflow: ellipsis;
  align-self: stretch;
  margin-top: auto;
  margin-bottom: auto;
}

.date-icon,
.time-icon {
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  width: 19px;
  align-self: stretch;
  margin-top: auto;
  margin-bottom: auto;
  flex-shrink: 0;
}

.actions {
  display: flex;
  min-width: 240px;
  margin-top: auto;
  margin-bottom: auto;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 400;
  white-space: nowrap;
  line-height: 1;
  justify-content: flex-start;
}

.action-button {
  display: flex;
  margin-top: auto;
  margin-bottom: auto;
  gap: 7.592px;
  text-align: center;
  padding: 5.694px 11.387px;
  justify-content: center;
  align-items: center;
  border-radius: 7.62px;
  border: 0.949px solid #fafafa;
  align-self: stretch;
  background-color: #fafafa;
}

.action-badge {
  color: var(--dark-blue);
  margin-top: auto;
  margin-bottom: auto;
  gap: 8px;
  padding: 2px 12px;
  background-color: #e5e7eb;
  border-radius: 9524.293px;
  align-self: stretch;
}

.execute-button {
  color: var(--white);
  margin-top: auto;
  margin-bottom: auto;
  gap: 5.694px;
  font-size: 13px;
  line-height: 1;
  padding: 5.694px 11.387px;
  background-color: var(--primary-color);
  border-radius: 7.62px;
  border: 0.949px solid var(--primary-color);
  align-self: stretch;
}

.cancel-button {
  color: var(--primary-color);
  margin-top: auto;
  margin-bottom: auto;
  gap: 5.694px;
  font-size: 13px;
  line-height: 1;
  padding: 5.694px 11.387px;
  border-radius: 7.62px;
  align-self: stretch;
}

.transfer-section {
  display: flex;
  margin-top: 11px;
  width: 100%;
  font-size: 13px;
  line-height: 1;
  flex-wrap: wrap;
  padding: 7.592px 0;
  justify-content: space-between;
  align-items: center;
  border-radius: 7.592px;
}

.transfer-details {
  display: flex;
  min-width: 240px;
  margin-top: auto;
  margin-bottom: auto;
  align-items: center;
  gap: 8px;
  font-weight: 400;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-self: stretch;
}

.content-left,
.content-right {
  display: flex;
  min-width: 240px;
  margin-top: auto;
  margin-bottom: auto;
  padding: 8px;
  gap: 4px;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: 530px;
  background-color: #f5f7fa;
  border-radius: 7.592px;
  align-self: stretch;
}

.content-left {
  align-items: center;
}

.content-right {
  align-items: stretch;
  white-space: nowrap;
}

.select-container {
  margin-top: auto;
  margin-bottom: auto;
  flex-grow: 1;
  flex-shrink: 1;
  width: 135px;
  align-self: stretch;
}

.select-input {
  display: flex;
  min-height: 30px;
  width: 100%;
  gap: 7.592px;
  justify-content: flex-start;
  padding: 0 15.183px;
  background-color: #fafafa;
  align-items: center;
  border-radius: 7.62px;
  border: 0.949px solid #cbd5e1;
}

.select-icon {
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  width: 23px;
  align-self: stretch;
  margin-top: auto;
  margin-bottom: auto;
  flex-shrink: 0;
}

.select-text {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  color: var(--dark-blue);
  text-overflow: ellipsis;
  align-self: stretch;
  margin-top: auto;
  margin-bottom: auto;
  flex: 1;
  flex-shrink: 1;
  flex-basis: 0%;
}

.select-dropdown {
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  width: 23px;
  align-self: stretch;
  margin-top: auto;
  margin-bottom: auto;
  flex-shrink: 0;
}

.input-field {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  color: var(--dark-blue);
  text-overflow: ellipsis;
  flex: 1;
  flex-shrink: 1;
  flex-basis: 0%;
  border-radius: 7.62px;
  border: 0.949px solid #cbd5e1;
  gap: 7.592px;
  height: 100%;
  width: 169px;
  padding: 0 15.183px;
  background-color: #fafafa;
}

.currency-input {
  display: flex;
  gap: 8px;
  justify-content: flex-start;
  height: 100%;
  width: 169px;
  padding: 5.694px 11.387px;
  background-color: #fafafa;
  align-items: center;
  border-radius: 7.62px;
  border: 0.949px solid #cbd5e1;
}

.currency-code {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  color: var(--dark-blue);
  text-overflow: ellipsis;
  align-self: stretch;
  margin-top: auto;
  margin-bottom: auto;
}

.currency-amount {
  color: var(--dark-blue);
  text-overflow: ellipsis;
  margin-top: auto;
  margin-bottom: auto;
  flex: 1;
  flex-shrink: 1;
  flex-basis: 0%;
}

.amount-display {
  color: var(--dark-blue);
  width: 133px;
  align-self: stretch;
  margin-top: auto;
  margin-bottom: auto;
  min-height: 38px;
  padding: 10px 4px;
  gap: 4px;
  font-weight: 700;
  text-align: right;
  flex: 1;
  flex-shrink: 1;
  flex-basis: 0%;
}

/* Personas section */
.personas-section {
  display: flex;
  margin-top: 150px;
  flex-direction: column;
  padding: 80px;
  gap: 80px;
  justify-content: center;
  align-items: center;
}

.personas-title {
  color: var(--dark-blue);
  text-align: center;
  font-size: 52px;
  font-weight: 600;
  line-height: 1.3;
}

.personas-grid {
  margin-top: 80px;
  width: 100%;
  max-width: 1280px;
  gap: 16px;
}

.personas-row {
  display: flex;
  width: 100%;
  gap: 16px;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 16px;
}


.persona-card {
  border-radius: var(--border-radius-32);
  min-width: 240px;
  min-height: 308px;
  flex-grow: 1;
  flex-shrink: 1;
  width: 246px;
  padding: 24px;
  background-color: var(--light-gray);
  align-self: stretch;
}

.persona-title {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
  align-items: stretch;
}

.persona-icon-container {
  display: flex;
  width: 56px;
  gap: 10px;
  justify-content: flex-start;
  height: 56px;
  padding: 16px;
  background-color: var(--light-gray);
  align-items: center;
  border-radius: var(--border-radius-16);
  box-shadow: var(--shadow-icon);
}

.persona-icon {
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  width: 24px;
  align-self: stretch;
  margin-top: auto;
  margin-bottom: auto;
}

.persona-heading {
  color: var(--dark-blue);
  font-size: 20px;
  font-weight: 500;
  margin-top: 12px;
  line-height: 30px;
  height: 1em;
  overflow: visible;
}

.persona-description {
  color: var(--text-gray);
  font-size: 20px;
  font-weight: 300;
  line-height: 30px;
  margin-top: 72px;
}

.persona-image {
  background-image: url('assets/iowncell.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.persona-empty {
  border-radius: var(--border-radius-32);
  align-self: stretch;
  display: flex;
  min-width: 240px;
  margin-top: auto;
  margin-bottom: auto;
  width: 246px;
  flex-shrink: 1;
  height: 308px;
  flex-grow: 1;
}

/* CTA sections */
.cta-section {
  margin-top: 150px;
  font-family:
    "Poppins",
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  padding: 0 var(--spacing-20);
  overflow: hidden;
}

.cta-section.blue {
  padding: 0 var(--spacing-20);
}

.cta-section.gray {
  background-color: var(--light-gray);
}

.cta-banner {
  display: flex;
  width: 100%;
  flex-direction: column;
  overflow: hidden;
  justify-content: flex-start;
  padding: 100px 30px;
  gap: 44px;
  align-items: stretch;
  border-radius: var(--border-radius-32);
  background-image: url('assets/bbg.png');
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
}

.cta-section.blue .cta-banner {
  background-color: #f0f5ff;
}

.cta-text {
  display: flex;
  width: 100%;
  flex-direction: column;
  text-align: center;
  justify-content: flex-start;
  gap: 24px;
  align-items: center;
}

.cta-title {
  font-size: 52px;
  font-weight: 600;
  line-height: 68px;
  width: 730px;
}

.cta-section.blue .cta-title {
  color: var(--primary-light);
}

.cta-section.gray .cta-title {
  color: var(--dark-blue);
}

.cta-description {
  font-size: 20px;
  font-weight: 300;
  margin-top: 24px;
}

.cta-section.blue .cta-description {
  color: #2e7fca;
}

.cta-section.gray .cta-description {
  color: var(--text-gray);
  line-height: 30px;
  width: 620px;
}

.email-input {
  display: flex;
  margin-top: 4px;
  max-width: 100%;
  gap: 40px 100px;
  flex-wrap: wrap;
  padding: 8px 8px 8px 24px;
  background-color: rgba(255, 255, 255, 0.65);
  justify-content: space-between;
  align-items: center;
  border-radius: 24px;
  align-self: center;
}

.email-input form {
  width: 100%;
}

.input-placeholder {
  color: var(--text-gray);
  font-size: 20px;
  font-weight: 300;
  align-self: stretch;
  margin-top: auto;
  margin-bottom: auto;

  border: none;
  outline: none;
  background: transparent;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

.input-placeholder::placeholder {
  color: inherit;
  opacity: 1;
}

.join-button {
  color: #fafafa;
  border-radius: var(--border-radius-16);
  box-shadow: 4px 5px 18px 0px rgba(47, 68, 140, 0.3);
  margin-top: auto;
  margin-bottom: auto;
  gap: 8px;
  font-size: 16px;
  font-weight: 400;
  padding: 16px 24px;
  background-color: var(--primary-color);
  align-self: stretch;
  border: none;

  cursor: pointer;
}

.learn-more-button {
  display: flex;
  margin-top: 44px;
  gap: 8px;
  font-size: 16px;
  color: var(--dark-blue);
  font-weight: 400;
  padding: 16px 24px;
  background-color: var(--white);
  justify-content: center;
  align-items: center;
  border-radius: var(--border-radius-16);
  box-shadow: var(--shadow-card);
  align-self: center;
  border: none;
  cursor: pointer;
}

.button-icon {
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  width: 24px;
  align-self: stretch;
  margin-top: auto;
  margin-bottom: auto;
  flex-shrink: 0;
}

/* Footer */
.footer {
  display: flex;
  min-height: 109px;
  width: 100%;
  gap: 40px 100px;
  flex-wrap: wrap;
  padding: 36px var(--spacing-80) 36px var(--spacing-80);
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  aspect-ratio: 3.41;
  object-fit: contain;
  object-position: center;
  width: 82px;
  align-self: stretch;
  margin-top: auto;
  margin-bottom: auto;
  flex-shrink: 0;
}

.footer-links {
  display: flex;
  min-width: 240px;
  margin-top: auto;
  margin-bottom: auto;
  gap: 16px;
  justify-content: flex-start;
  align-items: center;
  align-self: stretch;
}

.contact-button {
  display: flex;
  margin-top: auto;
  margin-bottom: auto;
  gap: 8px;
  font-family:
    "Poppins",
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  font-size: 14px;
  color: var(--text-gray);
  font-weight: 400;
  padding: 8px 12px;
  justify-content: center;
  align-items: center;
  border-radius: var(--border-radius-16);
  align-self: stretch;
}

.contact-icon {
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  width: 20px;
  align-self: stretch;
  margin-top: auto;
  margin-bottom: auto;
  flex-shrink: 0;
}

.contact-label {
  color: var(--text-gray);
  align-self: stretch;
  margin-top: auto;
  margin-bottom: auto;
}

.contact-label a {
  color: var(--text-gray);
  text-decoration: none;
}


.divider {
  display: flex;
  gap: 10px;
  height: 100%;
  width: 0;
  padding: 8px 0;
  justify-content: center;
  align-items: stretch;
  align-self: stretch;
}

.divider-line {
  aspect-ratio: 0.05;
  object-fit: contain;
  object-position: center;
  width: 0;
  stroke-width: 1px;
  stroke: #d2d9e9;
}

.footer-links-group {
  display: flex;
  min-width: 240px;
  margin-top: auto;
  margin-bottom: auto;
  gap: 8px;
  font-family:
    "Poppins",
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  font-size: 14px;
  color: var(--text-gray);
  font-weight: 400;
  justify-content: flex-start;
  align-items: center;
  align-self: stretch;
}

.footer-link {
  color: var(--text-gray);
  align-self: stretch;
  border-radius: var(--border-radius-16);
  margin-top: auto;
  margin-bottom: auto;
  gap: 8px;
  padding: 8px 12px;
}

.footer-link a {
  color: var(--text-gray);
  text-decoration: none;
}

/* Popup Styles */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 90px;
    border-radius: 16px;
    background-color: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    text-align: center;
    max-width: 900px;
    width: 80%;

    background-image: url('assets/bbg.png');
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
}


/* Media queries */

/* 1600 */
@media (max-width: 1600px) {

  .page-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }


  .feature-box {
    width: 50%;
  }

}

/* 1390 */
@media (max-width: 1390px) {
  .feature-description {
    margin-bottom: 100px;
  }


  .persona-empty {
    display: none;
  }

  .action-panel::after {
    top: 380px;
  }

}


@media (hover: none) and (pointer: coarse) {
  /* Touch devices (phones, tablets) */
  .persona-empty {
    display: none;
  }
  .waitlist-button {
    width: 75%;
  }
}


/* 991 */
@media (max-width: 991px) {

  .hfam::before {
    top: 320px;
    right: -92px;
  }



  .desktop-container {
    background-size: 300%;
  }

  .logo-container {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .header {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 40px;
  }

  .header-title {
    max-width: 100%;
    font-size: 40px;
    line-height: 53px;
  }

  .header-description {
    max-width: 100%;
  }

  .waitlist-button {
    padding-left: 20px;
    padding-right: 20px;
  }

  .about-section {
    max-width: 100%;
    margin-top: 40px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .benefits-section {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 40px;
  }

  .benefits-title {
    max-width: 100%;
    font-size: 40px;
  }

  .benefits-content {
    max-width: 100%;
    margin-top: 40px;
  }

  .feature-card {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 100px;
    flex-direction: column;
  }

  .feature-description {
    width: 100%;
    margin-bottom: 20px  ;
  }

  .feature-image {
    width: 100%;
    position: relative;
    background-position: center center;
    right: auto;
    height: 300px;
  }


  .card-columns {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .card-column {
    width: 100%;
    margin-left: 0;
  }

  .card-container {
    margin-top: 40px;
  }

  .dnd-card.blue {
    margin-top: 40px;
  }

  .features-grid {
    max-width: 100%;
  }

  .feature-box {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 100px;
  }

  .feature-box-title {
    max-width: 100%;
  }

  .feature-box-description {
    max-width: 100%;
  }

  .action-panel-inner {
    max-width: 100%;
  }

  .action-header {
    max-width: 100%;
  }

  .datetime,
  .actions,
  .transfer-details,
  .content-left,
  .content-right {
    max-width: 100%;
  }

  .time,
  .action-button,
  .execute-button,
  .cancel-button {
    white-space: initial;
  }

  .personas-section {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 40px;
  }

  .personas-title {
    max-width: 100%;
    font-size: 40px;
  }

  .personas-grid {
    max-width: 100%;
    margin-top: 40px;
  }

  .personas-row {
    max-width: 100%;
  }

  .persona-card {
    padding-left: 20px;
    padding-right: 20px;
  }

  .persona-description {
    margin-top: 40px;
  }

  .cta-section {
    max-width: 100%;
    margin-top: 40px;
  }

  .cta-banner {
    max-width: 100%;
  }

  .cta-title {
    max-width: 100%;
    font-size: 40px;
    line-height: 58px;
  }

  .cta-description {
    max-width: 100%;
  }

  .email-input {
    padding-left: 20px;
    margin-top: 40px;
  }

  .join-button {
    padding-left: 20px;
    padding-right: 20px;
  }

  .learn-more-button {
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 40px;
  }

  .footer {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer-links {
    max-width: 100%;
  }

  .date,
  .time,
  .dnd-inner,
  .dnd-label,
  .dnd-text,
  .content-right,
  .accordion-header {
    white-space: initial;
  }

  .blur-content {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 100px;
    padding-bottom: 110px;
  }
}


/* 605 */
@media (max-width: 660px) {
  .hfam::before {
    top: 370px;
  }
}

/* 605 */
@media (max-width: 605px) {
  .email-input {
    background: transparent;
    display: flex;
    margin-top: 0px;
    max-width: 100%;
    gap: 40px 100px;
    flex-wrap: wrap;
    padding: 0;
    justify-content: space-between;
    align-items: center;
    align-self: center;
  }
  .features-grid {
    flex-wrap: wrap;
  }

  .feature-box {
    width: 100%;
  }
   .feature-image {
    width: 100%;
    position: relative;
    background-position: center center;
    right: auto;
    height: 200px;
  }

  .email-input form {
    width: 100%;
  }

  .input-placeholder {
    margin-top: 4px;
    margin-bottom: 25px;
    border-radius: 24px;
    padding: 8px 8px 8px 24px;
    background-color: rgba(255, 255, 255, 0.65);

    color: var(--text-gray);
    font-size: 20px;
    font-weight: 300;
    width: 100%;

  }
  .join-button {
    padding: 16px 24px;
    align-self: center;
    width: 100%;
  }

}

@media (max-width: 450px) {
  .waitlist-button {
    width: 75%;
  }

}
