/*! modern-normalize v1.1.0 | MIT License | https://github.com/sindresorhus/modern-normalize */

*,
::before,
::after {
  box-sizing: border-box;
}

html {
  -moz-tab-size: 4;
  tab-size: 4;
}

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

body {
  margin: 0;
}

body {
  font-family:
    system-ui,
    -apple-system, /* Firefox supports this but not yet `system-ui` */
    'Segoe UI',
    Roboto,
    Helvetica,
    Arial,
    sans-serif,
    'Apple Color Emoji',
    'Segoe UI Emoji';
}

hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
}

abbr[title] {
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp,
pre {
  font-family:
    ui-monospace,
    SFMono-Regular,
    Consolas,
    'Liberation Mono',
    Menlo,
    monospace; /* 1 */
  font-size: 1em; /* 2 */
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

button,
select { /* 1 */
  text-transform: none;
}

button,
[type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button;
}

::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

:-moz-focusring {
  outline: 1px dotted ButtonText;
}

:-moz-ui-invalid {
  box-shadow: none;
}

legend {
  padding: 0;
}

progress {
  vertical-align: baseline;
}

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

summary {
  display: list-item;
}

/* END modern-normalize v1.1.0 */

/*! HOMEPAGE STYLES START */

:root{
  --max-width: 1028px;
  --orange: #f80;
  --border-orange: #FDB52B;
  --bg-dark: #1F2937;
  --bg-orange: #FEE199;
  --bg-active-orange: #FDC75C;
  --bg-dark-grey: #374151;
  --bg-dark-gray: #374151;
  --bg-dark-border-black: #15171b;
  --black: #000;
  --white: #fff;
  --blue: #3B82F6;
  --grey: rgb(75, 85, 99);
  --gray: rgb(75, 85, 99);
  --light-gray: rgb(203, 213, 225);
  --lighter-gray: #f1f5f9;
  --light-grey: rgb(203, 213, 225);
  --lighter-grey: #f1f5f9;
  
  --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  
  --screen-sm: 675px;
  --screen-md: 1024px;
  --screen-lg: 1280px;
  --screen-xl: 1600px;
  
  --highlight-orange: linear-gradient(90deg ,#FFFFD1 0%, #FFEAC4 100%);
}

::selection {
  background: var(--bg-orange);
}

a{
  color: var(--blue);
  text-decoration: none;
}

body{
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 0;
}

img{
  max-width: 100%;
}

/*! UTILS */
.inner{
  max-width: var(--max-width);
}

.transition{
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition--opacity{
  transition-property: oopacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

@keyframes pushUp {
  0% {
    opacity: 0;
    transform:translateY(25px)
  }

  to {
    opacity: 1;
    transform:translate(0)
  }
}

@keyframes pushDown {
  0% {
    opacity: 0;
    transform:translateY(-25px)
  }

  to {
    opacity: 1;
    transform:translateY(0)
  }
}

@supports (-webkit-backdrop-filter: saturate(180%) blur(20px)) or (backdrop-filter: saturate(180%) blur(20px)){
  .blur__container{
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    backdrop-filter: saturate(180%) blur(20px);
    background-color: rgba(237,242,247,.7);
  }
}

/* New homepage */
.fullscreen_container {
	min-height: 100dvh;
	margin: 0;
	padding: 0;
}

.home-background {
	position: relative;
	min-height: 100dvh;
	width: 100%;
	background-image: url('https://cdn.micro.blog/images/homepage/paintings/background_1_low.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	z-index: 1;
  display: flex;
  flex-direction: column;
}

.home-background::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-image: url('https://cdn.micro.blog/images/homepage/paintings/background_1_high.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	opacity: 0;
	transition: opacity 1s ease-in-out;
	z-index: 1;
}

.home-background.onehome-background {
  background-image: url('https://cdn.micro.blog/images/homepage/paintings/background_2_low.jpg');
}

.home-background.onehome-background::after {
  background-image: url('https://cdn.micro.blog/images/homepage/paintings/background_2_high.jpg');
}

.home-background.register-background {
  background-image: url('https://cdn.micro.blog/images/homepage/paintings/background_1_low.jpg');
}

.home-background.register-background::after {
  background-image: url('https://cdn.micro.blog/images/homepage/paintings/background_1_high.jpg');
}

.home-background.blogging-background {
  background-image: url('https://cdn.micro.blog/images/homepage/paintings/background_5_low.jpg');
}

.home-background.blogging-background::after {
  background-image: url('https://cdn.micro.blog/images/homepage/paintings/background_5_high.jpg');
}

.home-background.fediverse-background {
  background-image: url('https://cdn.micro.blog/images/homepage/paintings/background_6_low.jpg');
}

.home-background.fediverse-background::after {
  background-image: url('https://cdn.micro.blog/images/homepage/paintings/background_6_high.jpg');
}

.home-background.crosspost-background {
  background-image: url('https://cdn.micro.blog/images/homepage/paintings/background_4_low.jpg');
}

.home-background.crosspost-background::after {
  background-image: url('https://cdn.micro.blog/images/homepage/paintings/background_4_high.jpg');
}

.home-background.pricing-background {
  background-image: url('https://cdn.micro.blog/images/homepage/paintings/background_3_low.jpg');
}

.home-background.pricing-background::after {
  background-image: url('https://cdn.micro.blog/images/homepage/paintings/background_3_high.jpg');
}

.home-background.about-background {
  background-image: url('https://cdn.micro.blog/images/homepage/paintings/background_3_low.jpg');
}

.home-background.about-background::after {
  background-image: url('https://cdn.micro.blog/images/homepage/paintings/background_3_high.jpg');
}

.home-background.home-loaded::after {
	opacity: 1;
}

.blogging_page {
  z-index: 2;
}

.blogging_pane .blogging_screenshot {
  text-align: center;
}

.blogging_pane .blogging_screenshot img {
  max-width: 640px;
  height: auto;
}

.blogging_pane {
  position: relative;
  z-index: 2;
  margin-left: auto;
  margin-right: auto;
  top: 100px;
  width: 70%;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 10px;
  font-size: 16px;
  line-height: 22px;
  color: #000;
  margin-bottom: 20px;
}

.blogging_videos {
  display: flex;
  justify-content: space-between;
  padding: 10px;  
  margin-top: 10px;
}

.home-new-intro {
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 10px;
  padding-bottom: 10px;
  margin: 0 auto 20px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 10px;
  font-size: 16px;
  color: #000;
  z-index: 2;
  max-width: 600px;
  width: 80%;
}

.video_thumbnail {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
  box-sizing: border-box;
}

.video_thumbnail img {
  width: 300px;
  height: auto;  
}

.video_thumbnail .video_caption {
  margin-top: 10px;
  text-align: center;
  font-size: 14px;
  color: #333;
}

.video_thumbnail .video_animated {
  display: none;
}

.video_thumbnail:hover .video_animated {
  display: block;
}

.video_thumbnail:hover .video_static {
  display: none;
}

.crosspost_container {
  z-index: 2;
}

.crosspost_container div {
  z-index: 2;
}

.home-background.about-background {
  padding-top: 50px;
}

.home-background.pricing-background {
  padding-top: 30px;
}

.home-background.signin-background {
  padding-top: 30px;
}

.signin_apple_section {
  margin-top: 30px;
}

#appleid-signin {
  height: 50px;
  margin-top: 10px;
}

.about__page {
  position: relative;
  z-index: 2;
  margin-left: auto;
  margin-right: auto;
  margin-top: 1em;
  width: 70%;
}

.about__page p {
  line-height: 1.3em;
}

.about-background h1 {
  position: relative;
  z-index: 2;
  color: #000;
}

.about-background div {
  position: relative;
  z-index: 2;
  color: #000;
}

.pricing__page {
  z-index: 2;
}

.pricing__page div {
  z-index: 2;
}

.home-background.register-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.5);
  z-index: 2;
  pointer-events: none;
}

.home-background.signin-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.5);
  z-index: 2;
  pointer-events: none;
}

.home-background.about-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 2;
  pointer-events: none;
}

.home-background.pricing-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: 2;
  pointer-events: none;
}

.home-buttons {
	position: fixed;
	top: 0;
	right: 0;
	padding: 15px;
	width: 100%;
	z-index: 2;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 1ch;
	background-color: rgba(255, 255, 255, 0);
  transition: all 0.3s ease-in-out;
}

.home-buttons .nav-links-center {
  display: inline-flex;
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid #ddd;
  border-radius: 20px;
  overflow: hidden;
}

.home-buttons .nav-links-right {
  display: flex;
  flex-direction: row;
  gap: 1ch;
  justify-self: end;
}

.home-buttons a.extra_link {
  color: black;
  font-size: 15px;
}

.home-buttons a.extra_link:hover {
  text-decoration: underline;
}

.home-buttons .nav-links-center a.extra_link {
  flex: 1;
  margin: 0;
  padding: 5px 14px;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
  white-space: nowrap;
}

/* Divider between segments */
.home-buttons .nav-links-center a.extra_link + a.extra_link {
  border-left: 1px solid #ddd;
}

/* Hover or active segment state */
.home-buttons .nav-links-center a.extra_link:hover,
.home-buttons .nav-links-center a.extra_link.active {
  background-color: rgba(232, 232, 232, 0.9);
  text-decoration: none;
}

.home-buttons a.button_link {
	background-color: #f9e2a2;
	border: 1px solid #f2b84c;
	border-radius: 20px;
	font-size: 15px;
	color: #000;
	padding-top: 5px;
	padding-bottom: 5px;
	padding-left: 14px;
	padding-right: 14px;
	box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.1);
	z-index: 2;
  text-wrap: nowrap;
}

.home-buttons a.button_link:hover {
  background-color: #f3cc88;
  text-decoration: none;
}
.home-buttons .nav-links-right a.extra_link:hover {
  background-color: #f2b84c;
  text-decoration: none;
}

.home-buttons a:hover {
	text-decoration: none;
}

.home-buttons img {
	max-width: 40px;
	height: auto;
	flex-shrink: 0;
  filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.1));
}

.home-intro-text {
  text-align: center;
  color: black;
  font-size: 18px;
  margin-left: auto;
  margin-right: auto;
  max-width: 500px;
  position: relative;
  z-index: 2;
  background-color: rgba(249, 226, 162, 0.8);
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 40px;
}

.home-new-video {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 600px;
  width: 80%;
}

.home-new-video span {
  flex: 1;
}

.home-new-video a {
  flex-shrink: 0;
  margin-left: 15px;
}

.home-quotes {
  padding-top: 90px;
  z-index: 2;
}

.home-quotes-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 900px;
  margin-top: 40px;
}

.home-new-quote .home-author {
	display: inline-block;
	width: 100%;
	text-align: right;
	font-weight: bold;
	margin-top: 1ch;
}

.home-new-quote {
	width: 350px;
	padding-left: 15px;
	padding-right: 15px;
	padding-top: 10px;
	padding-bottom: 10px;
	background-color: rgba(255, 255, 255, 0.7);
	border-radius: 10px;
	font-size: 16px;
	color: #000;
	z-index: 2;
  margin: 10px;
}

@media (min-width: 901px) {
  .home-quotes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
  .home-new-quote {
    position: relative;
    width: auto;
    margin: 0;
  }
}

@media (max-width: 900px) {
  .about__page {
    width: 90%;
  }
    
  .indieweb_content {
    max-width: 100% !important;
  }
  
  .home-intro-text {
    max-width: 90%;
  }

  .home-new-intro {
    width: 90%;
  }

  .home-quotes-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .home-new-quote {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    width: 90%;
    max-width: none;
    left: unset !important;
    right: unset !important;
    transform: unset !important;
  }
  .blogging_pane .blogging_screenshot img {
    max-width: 300px;
  }
  .blogging_pane {
    width: 90%;
  }
  .fediverse_optional {
    display: none;
  }
  .home-buttons {
    display: flex;
    flex-wrap: wrap;
    position: fixed;
    padding: 0px;
  }
  .home-buttons::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 44px;
    background-color: rgba(237,242,247,.7);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    backdrop-filter: saturate(180%) blur(20px);
    z-index: -1;
  }
  .home-buttons .nav-logo img {
    vertical-align: bottom;
  }
  .home-buttons .nav-links-center {
    order: 2;
    width: 100%;
    justify-content: center;
    margin: 0;
    border-radius: 0;
  }
  .home-buttons .nav-links-right {
    margin-left: auto;
    padding-right: 5px;
  }
  .header__nav{
    flex-direction: column;
  }
  .header__links{
    margin-top: .5em;
    margin-bottom: 0;
  }
  .header__links .signup__cta{
    display: none;
  }
  .home__intro h2{
    font-size: 2em;
  }
  .home__intro--text p{
    font-size: 1.15em;
  }
  .home__intro .signup__cta{
    font-size: 1.5em;
  }
  .home__quotes blockquote{
    width: 100%;
  }
  .home__features--feature{
    width: 100%;
    padding: 0;
    margin-bottom: 1em;
  }
  .home__slider--nav button{
    font-size: 1.15em;
    margin-top: .5em;
  }
  .home__slider--slide--inner {
    display: flex;
    flex-direction: column-reverse;
  }
  .home__slider--slide--info {
    position: relative;
    left: 0!important;
    top: -10px!important;
    transform: rotate(-1deg)!important;
    font-size: .95em;
  }
  nav {
    font-size: 13px;
  }
  .home-buttons a.button_link {
    font-size: 13px;
  }
  .home-buttons img {
    width: 24px;
    height: 24px;
    margin-left: 5px;
  }
  .pricing__module h2 {
    font-size: 1.1em !important;
  }
  .pricing__module--price {
    font-size: 1.1em !important;
  }
  .page__intro h2{
    font-size: 1.1em;
  }
  .page__intro--text {
    margin-top: 30px;
  }
  .page__intro--text p{
    font-size: 1em;
  }
  .pricing__container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    overflow-x: hidden;
    scroll-snap-type: none;
  }
  .pricing__module {
    min-width: unset;
  }
  .pricing__cta .signup__cta{
    font-size: 1.4em;
  }
  
  .home-buttons {
    padding-top: 5px;
    padding-left: 0px;
    padding-right: 0px;
  }
  
  .home-buttons a.button_link, .home-buttons .nav-links-right a.extra_link {
  }

  .home-buttons .nav-links-center a.extra_link {
    font-size: 13px;
  }

  /* Divider between segments on mobile */
  .home-buttons .nav-links-center a.extra_link + a.extra_link {
    border-left: 1px solid #ddd;
  }
  .home-buttons .nav-links-center a.extra_link {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-height: 800px) {
  .blogging_pane .blogging_screenshot img {
    display: none;
  }
}

@media (max-height: 900px) {
  .blogging_pane .blogging_screenshot img {
    max-width: 400px;
  }
}

/* /UTILS */
/*! COMPONENTS  */
.signup__cta{
  display: inline-flex;
  padding: .5em 1em;
  background-color: var(--bg-orange);
  border: 1px solid var(--border-orange);
  border-radius: 50px;
  box-shadow: var(--shadow-md);
  color: var(--black);
}

.signup__cta:hover{
  text-decoration: none;
  background-color: var(--bg-active-orange);
}

.signup__cta:active{
  background-color: var(--border-orange);
  color: var(--white);
}
/* COMPONENTS END */

/*! HEADER */
.header{
  width: 100%;
  padding: 12px 1em;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.header__nav{
  max-width: var(--screen-lg);
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  text-decoration: none;
  font-size: 1.3em;
  font-weight: bold;
}

.header__logo img{
  max-width: 40px;
  margin-right: .5em;
}

.header__links{
  display: flex;
  flex-direction: row;
  list-style: none;
  align-items: center;
  padding: 0;
  font-size: 1em;
}

.header__links a{
  text-decoration: none;
  color: var(--black);
  margin-left: 1.5em;
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-decoration-thickness: 0.1em;
  text-underline-offset: 0.06em;
  transition-property: color, text-decoration-color;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.header__links li:first-child a{
  margin-left: 0;
}

.header__links a:hover{
  text-decoration: underline;
  text-decoration-color: var(--orange);
}

.header__links .signup__cta{
  display: inline-flex;
  padding: .5em 1em;
  text-decoration: none;
}

.header__links .signup__cta:hover{
  text-decoration: none;
}

.header__links .signup__cta:active{
  color: var(--white);
}

.header__links .signin__cta{
  text-decoration: none;
}

.header__links .signin__cta.show{
  display: inline-flex;
  padding: .5em 1em;
  border: 1px solid var(--black);
  border-radius: 50px;
}

/* /HEADER */

/*! HOME INTRO  */
/* COLUMN */
.home__intro{
  margin-top: 1em;
  margin-bottom: 1em;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.home__intro h2{
  margin-top: 0;
  font-size: 2em;
  text-align: center;
}

.home__intro img{
  border-radius: 8px;
}

.home__intro .cta{
  margin-top: 1em;
  margin-bottom: 1em;
  display: inline-flex;
  flex-direction: column;
  text-align: center;
}

.home__intro .cta span{
  font-size: .75em;
  margin-top: .5em;
  color: var(--grey);
}

.home__intro .signup__cta{
  font-size: 1.4em;
  font-weight: 500;
  background-color: var(--bg-active-orange);
}

.home__intro .signup__cta:active{
  background-color: var(--border-orange);
}

.home__intro--text{
  margin-bottom: 2em;
  text-align: center;
  padding: 0 1em;
}

.home__intro--text p{
  max-width: 800px;
  margin: 1em auto;
  line-height: 1.4;
  font-size: 1.3em;
}

.home__intro--media{
  max-width: 1350px;
  padding: 0 1em;
  position: relative;
  width: 100%;
  text-align: center;
  /* animation: pushUp .8s ease-in-out; */
}

.home__intro--media .doodle{
  max-width: 850px;
  width: 100%;
  z-index: -1;
}

.home__intro--media--floating{
  display: grid;
  grid-template-columns: 1.5fr 1.5fr 1.5fr;
  grid-template-rows: repeat(3,1fr);
  grid-gap: 2em;
  grid-column: max/max 2;
  position: absolute;
  top: 5%;
  z-index: 5
}

.home__intro--media--floating img{
  width: 100%;
  grid-column: 1;
  grid-row: 1/4;
  place-self: start;
  box-shadow: var(--shadow-md);
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 250ms;
}

.home__intro--media--floating img:hover{
  transform: scale(1.05);
  cursor: pointer;
}

.home__intro--media--floating img:nth-child(1){
  max-width: 90%;
  place-self: center;
}

.home__intro--media--floating img:nth-child(2){
  grid-column: 2;
  grid-row: 1;
  place-self: end;
}

.home__intro--media--floating img:nth-child(3){
  grid-column: 2;
  grid-row: 2/4;
  /* place-self: end; */
}

.home__intro--media--floating img:nth-child(4){
  grid-column: 3;
  grid-row: 1/3;
  place-self: end;
}

.home__intro--quote{
  margin: 2em auto -2em auto;
  font-size: .85em;
  max-width: 690px;
  font-weight: 300;
}

.home__intro--quote span{
  background: var(--highlight-orange);
  padding: 0 .2em;
  font-weight: 600;
}

.home__intro--quote cite{
  font-weight: 600;
}

.home__intro .home__slider{
  margin-top: 0;
}

/* HOME INTRO END */
/*! HOME QUOTES */
.home__quotes{
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 20px;
}

.home__quotes h2{
  font-size: 2em;
  text-align: center;
}

.home__quotes--inner{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  max-width: var(--screen-lg);
}


  width: 45%;
  display: flex;
  flex-direction: column;
  text-align: center;
  margin: 1em;
  font-size: 1.1em;
  line-height: 1.4;
}

.home__quotes blockquote span{
  background: var(--highlight-orange);
  padding: 0 .2em;
  font-weight: 600;
}

.home__quotes blockquote cite{
  font-weight: 600;
}

/* HOME QUOTES END */
/*! HOME FEATURES */

.home__features{
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2em 1em;
  margin-bottom: 2em;
}

.home__features--intro{
  width: 100%;
  max-width: var(--screen-xl);
  padding-left: 1em;
  text-align: center;
  margin-bottom: 1em;
}

.home__features--intro h2{
  font-size: 2em;
  margin-bottom: .5em;
}

.home__features--intro p{
  font-size: 1.1em;
}

.home__features--container{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  max-width: var(--screen-xl);
  
}

.home__features--feature{
  width: 33%;
  padding: 1em;
  text-align: center;
}

.home__features--feature img{
  border-radius: 6px;
  border: 3px solid var(--light-gray);
}

.home__features--feature img:hover{
  border-color: var(--orange);
  transform: scale(1.01) translateY(-5px);
}

.home__features--feature h3{
  font-size: 1.5em;
  text-decoration: underline;
  transition-property: color, text-decoration-color;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.home__features--feature p{
  color: initial;
}

.home__features--feature:hover h3{
  color: var(--orange);
  text-decoration-color: transparent;
}

.home__features--more{
  margin-top: 2em;
}

.home__features--more a{
  color: var(--orange);
  font-size: 1.5em;
  text-decoration: underline;
  font-weight: 700;
}

/*! HOME SLIDER  */
.home__slider{
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 2em;
  width: 100%;
}

.home__slider--container{
  width: 100%;
}

.home__slider--slides{
  display: flex;
  flex-direction: row;
  gap: 32px;
  overflow-x: scroll;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  border-radius: var(--border-radius-large);
  scrollbar-width: none;
  padding-top: 2em;
  scroll-behavior: smooth;
}

.home__slider--slider::-webkit-scrollbar {
  display: none;
}

.home__slider--slide{
  width: 100%;
  scroll-snap-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.home__slider--slide img{
  width: calc(100% - 64px);
  border-radius: 8px;
}

.home__slider--slide .hidden{
  display: none;
}

.home__slider--nav{
  position: sticky;
  top: 0px;
  z-index: 15;
  background-color: rgba(255,255,255,0.7);
  padding: .5em 0;
}

.home__slider--nav button{
  appearance: none;
  -webkit-appearance: none;
  background-color: transparent;
  border: 2px solid var(--lighter-gray);
  border-radius: 8px;
  padding: .65em 1.25em;
  font-size: 1.1em;
  font-weight: 600;
  cursor: pointer;
  margin: 0 1em;
  animation: pushUp .8s ease-in-out;
}

.home__slider--nav button:hover{
  border-color: var(--orange);
/*  transform: scale(1.01) translateY(-5px); */
  box-shadow: var(--shadow);
}

.home__slider--nav button.active{
  background-color: var(--orange);
  color: var(--white);
  box-shadow: var(--shadow);
}

.home__slider--slide--inner{
  position: relative;
  max-width: var(--screen-lg);
  padding: 0 1em;
}

.home__slider--slide--info{
  position: absolute;
  max-width: 320px;
  border: 3px dashed var(--border-orange);
  padding: 1em;
  border-radius: 8px;
  background-color: rgba(237,242,247,.7);
  box-shadow: var(--shadow-lg);
  z-index: 10;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.home__slider--slide--info h2,
.home__slider--slide--info h3
{
  text-align: left;
  margin: 0 0 .3em 0;
  font-weight: 800;
  font-size: 1.3em;
}

.home__slider--slide--info p{
  margin: 0;
}


.home__slider--slide--info.left{
  left: 30px;
  top: 15px;
  transform: rotate(-6deg);
}

.home__slider--slide--info.right{
  right: 30px;
  top: 15px;
  transform: rotate(5deg);
}

.home__pricing{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 3em 0 4em;
}

/* HOME FEATURES END */

/*! GENERIC PAGE */

.page__intro{
  margin-top: 3em;
  margin-bottom: 0em;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.page__intro h2{
  margin-top: 0;
  font-size: 1.3em;
  text-align: center;
}

.page__intro .cta {
  margin-top: 3em;
  margin-bottom: 2em;
  display: inline-flex;
  flex-direction: column;
  text-align: center;
}

.page__intro--text{
  margin-bottom: 2em;
  text-align: center;
  padding: 0 1em;
}

.page__intro--text p{
  max-width: 930px;
  margin: 1em auto;
  line-height: 1.4;
  font-size: 1.1em;
}

.page__intro--text p em{
  font-size: .9em;
  line-height: 1;
  font-style: normal;
  color: var(--gray);
}

/*! PRICING MODULES  */
.pricing__container{
  max-width: 1350px;
  padding: 1em 1em 1.5em;
  position: relative;
  width: 100%;
  margin-bottom: 3em;
  margin-top: -1.5em;
}

@media (min-width: 901px) {
  .pricing__container {
    display: flex;
    flex-direction: row;
    gap: 15px;
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
}

.pricing__page {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.pricing__module {
  padding: 1.5em;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--lighter-gray);
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  color: var(--black);
  min-width: 310px;
  scroll-snap-align: center;
  overflow: hidden;
}

.pricing__module:hover {
  border: 1px solid var(--orange);
}

.pricing__module_footer {
  position: absolute;
  height: 50px;
  bottom: 0;
  left: 0;
  right: 0;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 14px;
  vertical-align: middle;
  background-color: rgba(239, 239, 239, 0.5);
  color: var(--orange);
  font-weight: 800;
  font-size: 1.1em;
}

.pricing__module_footer span {
  opacity: 0.6;
}

.pricing__module:hover .pricing__module_footer {
  background-color: rgba(233, 233, 233, 0.8);
}

.pricing__module h2{
  font-size: 1.1em;
  margin: 0 0 .5em;
  pointer-events: none;
}

.pricing__module ul{
  list-style: none;
  padding: 0;
  pointer-events: none;
  padding-bottom: 20px;
}

.pricing__module li {
  font-size: 0.9em;
  margin-bottom: 0.7em;
  border-bottom: 1px solid #DDD;
  padding-bottom: 0.7em;
}

.pricing__module li:last-child{
  margin-bottom: 0;
  border-bottom: 0;
}

.pricing__module--price{
  position: absolute;
  color: var(--orange);
  font-weight: 800;
  top: 1.25em;
  right: 1em;
  font-size: 1.2em;
  display: flex;
  flex-direction: row;
  align-items: end;
  pointer-events: none;
}

.pricing__module--price span{
  font-size: .8em;
  opacity: .8;
}

.pricing__cta{
  margin: 2em 0;
}

.pricing__cta .signup__cta{
  font-size: 1.2em;
}

.pricing__container--basic{
  margin-bottom: 1em;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 0 1em;
}

.pricing__container--basic button{
  appearance: none;
  background-color: transparent;
  border: 0;
  color: #3B82F6;
  font-size: 1.2em;
  display: flex;
  flex-direction: row;
  cursor: pointer;
  align-items: center;
}

.pricing__container--basic button svg{
  width: 24px;
  margin-left: .5em;
}

.pricing__module--basic{
  max-width: 490px;
  box-shadow: var(--shadow);
  margin-top: 1em;
  border-color: var(--gray);
  border-style: dashed;
  display: none;
}

.pricing__module--basic.active{
  display: flex;
  animation: pushDown .4s ease-in-out;
}

.pricing__module--basic:hover{
  border-color: var(--gray);
  transform: scale(1) translateY(0);
}

.pricing__module--basic ul{
  margin: 0 0 0 1.2em;
}

/* END PRICING */

main{
  min-height: 100vh;
  width: 100%;
}

.footer{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: relative;
  padding-bottom: 7em;
  background-color: #f9f9f9;
  overflow: hidden;
}

.footer__bg{
  width: 100%;
  background-image: url("https://cdn.micro.blog/images/homepage/doodle_divider.png");
  background-repeat: repeat-x;
  background-size: 800px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -40px;
  height: 120px;
  background-position: center;
}

.footer__inner{
  max-width: var(--screen-lg);
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 1em;
  align-items: center;
}

.footer__team{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  font-size: 0.9em;
  font-weight: 500;
}

.footer__team a{
  text-align: center;
  padding: 1em;
  color: var(--black);
}

.footer__team a p{
  margin-top: 0.5em;
  margin-bottom: 0;
}

.footer__team a span{
  font-size: .9em;
  padding-top: .5em;
  display: inline-flex;
  color: var(--orange);
  font-weight: 500;
}

.footer__team a:first-child{
  padding-left: 0;
}

.footer__team a:last-child{
  padding-right: 0;
}

.footer__team a img{
  border-radius: 50%;
  border: 2px solid transparent;
  max-width: 50px;
  height: auto;
}

.footer__team a:hover > img{
  border-color: var(--orange);
  transform: scale(1.01) translateY(-5px);
}

.footer__content{
  font-size: 1.75ch;
  max-width: 700px;
  display: flex;
  align-items: center;
}

.footer__photo-container {
  flex-shrink: 0;
  margin-right: 15px;
}

.footer__profile-photo {
  width: 40px;
  height: 40px;
  border-radius: 25px;
  object-fit: cover;
}

.footer__text-content {
  flex-grow: 1;
  text-align: left;
  max-width: 500px;
}

.footer__nav{
  display: flex;
  flex-direction: row;
  font-size: 1.5ch;
  font-weight: bold;
  padding-left: 1em;
  flex-shrink: 0;
}

.footer__nav ul{
  list-style: none;
  padding: 0;
  margin: 0 2em;
}

.footer__nav ul:last-child{
  margin-right: 0;
}

.footer__nav ul li{
  margin-bottom: .85em;
}

.footer__nav ul li:last-child{
  margin-bottom: 0;
}

.footer__nav a{
  color: var(--blue);
  text-decoration: underline;
  text-decoration-thickness: 0.1em;
  text-underline-offset: 0.06em;
  transition-property: color, background-color, border-color, text-decoration-color;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.footer__nav a:hover{
  color: var(--black);
  text-decoration-color: var(--black);
}

@media screen and (max-width: 900px) {
  .footer__inner{
    flex-direction: column;
  }
  .footer__nav{
    padding-left: 0;
    margin-top: 2em;
  }
  .footer__content{
    text-align: center;
  }
  .footer__team{
    justify-content: center;
  }
  .footer__team a:first-child{
    padding-left: 1em;
  }
  
  .footer__team a:last-child{
    padding-right: 1em;
  }
  .footer__nav ul{
    margin: 0 .75em;
  }
}

/*! AUTH */

.auth{
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3em 1em;
}

.auth__inner{
  max-width: var(--screen-lg);
  width: 100%;
  z-index: 2;
}

.auth h4{
  font-weight: 500;
}

.auth .alert{
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
}

.auth .alert-success{
  color: #3c763d;
  background-color: rgba(223, 240, 216, 0.7);
  border-color: #d6e9c6;
}

.auth .alert-danger{
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}

.auth .form-control{
  display: block;
  width: 100%;
  height: 42px;
  padding: 6px 12px;
  font-size: 16px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
  -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}

.auth label{
  display: inline-block;
  max-width: 100%;
  margin-bottom: 7px;
  font-weight: 700;
}

.auth p {
  line-height: 1.5em;
}

.auth .btn{
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}

.auth .btn-default{
  color: #222222;
  background-color: #F8F8F8;
  border-color: #ccc
}

.auth .btn-default:hover{
  background-color: #e6e6e6;
  border-color: #adadad;
}

.auth .btn:active{
  background-image: none;
  outline: 0;
  -webkit-box-shadow: inset 0 3px 5px rgba(0,0,0,.125);
  box-shadow: inset 0 3px 5px rgba(0,0,0,.125);
}

.auth .form-group{
  margin-bottom: 15px;
}

/* Registration - START */

#register_error {
  margin-top: 25px;
}

#register_alert {
  margin-top: 25px;
}

.container.register_container{
  width: 100%;
}

.register_container{
  max-width: 1000px;
  width: 100%;
  padding: 0 1em;
}

.register_internal{
  display: flex;
  flex-direction: row;
  margin: 2em 0;
}

.signin_internal {
  margin: 2em 0;
}

.register_internal .register_internal_form{
  flex: 2;
  padding-right: 3em;
}

.register_internal .register_internal_info{
  flex: 1;
  padding-left: 1.5em;
  padding-right: 1.5em;
  padding-top: 1em;
  padding-bottom: 1em;
  border-radius: 8px;
  background-color: rgba(237,242,247,.7);
}

.register_internal_info_footer {
  display: none;
}

.form_group{
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5em;
}

.register_internal h3{
  padding-top: 0;
  margin-bottom: 2em;
}

.register_internal .username_warning{
  color: rgb(239 68 68);
  font-size: 1.1em;
  margin-top: .5em;
}

.signin__internal .btn-default,
.register_internal .btn-default
{
  transition: all .2s ease-in-out;
  background-color: #FEE199;
  border-color: #FDB52B;
  color: black;
  font-size: 18px;
  padding: .5em 1.5em;
  margin-top: 1em;
  border-radius: 30px;
}

.signin__internal .btn-default:hover,
.register_internal .btn-default:hover
{
  background-color: #FDC75C;
  border-color: #FDB52B;
}

.register_internal_form h2{
  font-weight: 400;
}

.form_group_username{
  position: relative;
}

.indieweb_content {
  font-size: 1em;
  line-height: 1.4em;
  max-width: 70%;
  margin-left: auto;
  margin-right: auto;
}

.indieweb_content h2 {
  line-height: 1.2em;
}

.indieweb_content table {
  border-spacing: 15px;
}

.indieweb_content img {
  max-width: 50px;
  max-height: 50px;
}

.indieweb_content td {
  padding-bottom: 10px;
}

/* — Video‑lightbox modal — */
.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}
.video-modal.active {
  display: flex;
}
.video-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}
.video-modal-content {
  position: relative;
  width: 90vw;
  max-width: 1200px;
  max-height: 80vh;
  aspect-ratio: 13/9;
  z-index: 2001;
  border-radius: 4px;
  overflow: hidden;
}
.video-modal-content iframe {
  width: 100%;
  height: 100%;
}