/*
	Albert Site customizations on top of Hyperspace.
	Phone mockup ported from HTML5UP Fractal (CCA 3.0), recolored for dark background.

	SOURCE FILE — edit this, not assets/css/albert.css (which is generated).
	Build:  npm run build      (one-off compile of all theme styles + source maps)
	Watch:  npm run watch      (recompile on save)
	Hyperspace variables/mixins are available via e.g. `@import 'libs/vars';`.
*/
/* Hero split: text + phone mockup (Fractal concept inside Hyperspace) */
.albert-hero .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4em;
  width: 100%;
  max-width: 68em;
}

.albert-hero .albert-hero-content {
  flex: 1;
}

.albert-hero .albert-hero-visual {
  flex-shrink: 0;
}

@media screen and (max-width: 980px) {
  .albert-hero .inner {
    flex-direction: column;
    gap: 3em;
    text-align: center;
  }
  .albert-hero .albert-hero-content .actions {
    justify-content: center;
  }
  .albert-hero.wrapper.fullscreen {
    height: auto;
    min-height: 0;
    padding: 6em 0 4.5em 0;
  }
}
/* Phone mockup (from Fractal) */
.image.phone {
  box-shadow: none;
  border-radius: 0;
  margin: 1.375em 0 2.75em 0;
  width: 13em;
}

.image.phone img {
  border-radius: 0;
  display: block;
  position: relative;
  width: 100%;
}

.image.phone .inner,
.image.phone:before,
.image.phone:after {
  display: block;
  border: solid 2px rgba(255, 255, 255, 0.25);
}

.image.phone .inner {
  position: relative;
}

.image.phone .inner:before,
.image.phone .inner:after {
  content: "";
  position: absolute;
  left: 50%;
}

.image.phone .inner:before {
  top: -1.375em;
  margin-left: -1em;
  width: 2em;
  height: 0.25em;
  border-radius: 0.5em;
  background: rgba(255, 255, 255, 0.25);
}

.image.phone .inner:after {
  bottom: -2.75em;
  margin-left: -1em;
  width: 2em;
  height: 2em;
  border-radius: 100%;
  border: solid 2px rgba(255, 255, 255, 0.25);
}

.image.phone:before,
.image.phone:after {
  content: "";
}

.image.phone:before {
  height: 2.5em;
  border-radius: 1em 1em 0 0;
  border-bottom: 0;
}

.image.phone:after {
  height: 3.5em;
  border-radius: 0 0 1em 1em;
  border-top: 0;
}

/* Chat conversation rendered inside the phone (alternative to a screenshot) */
.albert-chat {
  background: rgba(0, 0, 0, 0.35);
  border-left: solid 2px rgba(255, 255, 255, 0.25);
  border-right: solid 2px rgba(255, 255, 255, 0.25);
  padding: 1em 0.75em;
  display: flex;
  flex-direction: column;
  gap: 0.65em;
  width: 100%;
  min-height: 22em;
  justify-content: flex-end;
}

.albert-chat .albert-msg {
  max-width: 85%;
  padding: 0.55em 0.8em;
  border-radius: 0.85em;
  font-size: 0.72em;
  line-height: 1.45;
  color: #ffffff;
}

.albert-chat .albert-msg.is-bot {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.12);
  border-bottom-left-radius: 0.25em;
}

.albert-chat .albert-msg.is-user {
  align-self: flex-end;
  background: rgba(93, 97, 168, 0.75);
  border-bottom-right-radius: 0.25em;
}

/* Pricing cards */
.albert-pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5em;
  margin: 0 0 2em 0;
}

@media screen and (max-width: 1280px) {
  .albert-pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 736px) {
  .albert-pricing-grid {
    grid-template-columns: 1fr;
  }
}
.albert-plan {
  border: solid 1px rgba(255, 255, 255, 0.25);
  border-radius: 0.5em;
  padding: 1.75em 1.5em;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.albert-plan.is-featured {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
}

.albert-plan h3 {
  margin-bottom: 0.35em;
}

.albert-plan .albert-plan-price {
  font-size: 2em;
  font-weight: 300;
  color: #ffffff;
  margin-bottom: 0.25em;
}

.albert-plan .albert-plan-period {
  font-size: 0.8em;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25em;
}

.albert-plan .albert-plan-desc {
  font-size: 0.9em;
  flex-grow: 1;
  margin-bottom: 1.5em;
}

.albert-plan .albert-plan-badge {
  display: inline-block;
  align-self: center;
  font-size: 0.65em;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: solid 1px #ffffff;
  border-radius: 1em;
  padding: 0.25em 1em;
  margin-bottom: 1em;
  color: #ffffff;
}

/* Disclaimer emphasis */
.albert-disclaimer {
  border-left: solid 4px rgba(255, 255, 255, 0.35);
  padding-left: 1.5em;
  font-size: 0.95em;
}

/* Avatar in spotlights */
.albert-avatar-round img {
  border-radius: 100%;
}

/* WP alignment helpers inside Hyperspace typography */
.wrapper .inner img.alignleft {
  float: left;
  margin: 0 1.5em 1em 0;
}

.wrapper .inner img.alignright {
  float: right;
  margin: 0 0 1em 1.5em;
}

/* Contact Us feedback form — submit button: lighter, a bit wider, bottom-right */
.wpcf7 form.wpcf7-form p:has(> .wpcf7-submit) {
  text-align: right;
  margin-top: 0.75em;
}
.wpcf7 form.wpcf7-form p:has(> .wpcf7-submit) .wpcf7-submit {
  min-width: 18em;
  max-width: 100%;
  background-color: #ffffff;
  color: #1b1f22 !important;
  border: 0;
  box-shadow: none;
}
.wpcf7 form.wpcf7-form p:has(> .wpcf7-submit) .wpcf7-submit:hover,
.wpcf7 form.wpcf7-form p:has(> .wpcf7-submit) .wpcf7-submit:focus,
.wpcf7 form.wpcf7-form p:has(> .wpcf7-submit) .wpcf7-submit:active {
  background-color: #e8e8e8;
  color: #1b1f22;
}
.wpcf7 form.wpcf7-form p:has(> .wpcf7-submit) .wpcf7-spinner {
  display: block;
  margin-left: auto;
  margin-right: 0;
}

/*# sourceMappingURL=albert.css.map */
