html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* -- Variables ------------------------------------------- */
:root {
		--atease-background-gray: #d2d1da;
		--atease-blue: #6956ff;
		--atease-blue-hover: #8777ff;
		--atease-red: #ff5f5f;
		--atease-white: #fdfdfd;
		--atease-lightgray: #dcdcdc;
		--font-size-xs: 14px;
		--border-radius: 8px;
		--border-radius-button: 50px;
		--padding-button-s: 8px 12px 8px 12px;
		--font-line-height-button: 1;
		--font-line-height-headline: 1.1;
		--font-line-height-text: 1.15;
		--font-weight-headline: 700;
		--font-weight-text: 400;
		--font-headline: 'MonaSansExpanded';
		--font-text: 'MonaSans';
		--transition-hover: all 0.2s ease;
}

html {
	scroll-behavior: smooth;
}

html body {
	background: var(--atease-background-gray);
	color: var(--atease-blue);
	font-family: var(--font-text);
	font-weight: var(--font-weight-text);
	line-height: var(--line-height-text);
	font-size: 18px;
}

/* -- Links ------------------------------------------- */
a {
	text-decoration: none;
	color: var(--atease-blue) !important;
	font-family: var(--font-headline);
	transition: var(--transition-hover);
}

a:hover {
  color: var(--atease-blue-hover) !important;

}

/* -- Attributes ------------------------------------------- */
.center {
	text-align: center;
}

.nowrap {
	word-wrap: nowrap;
}

.wrap {
  flex-wrap: wrap;
}

.border-bottom-invert {
	border-bottom: 1px solid var(--atease-white);
}

.padding-bottom-8 {
	padding-bottom: 8px;
}

strong {
	font-family: var(--font-headline);
	font-weight: var(--font-weight-headline);
}

/* -- Container ------------------------------------------- */
.container {
	margin: 24px;
}

.container-default {
  font-family: var(--font-text);
	background: var(--atease-white);
	border-radius: var(--border-radius);
	margin: 24px;
	padding: 24px;
	max-width: 800px;
	line-height: var(-font-line-height-text);
}

.container-default p {
  margin-bottom: 12px;
}


.header {
	padding: 12px 24px 16px 24px;
}

.firstscreen {
	background-image: url('./../../uploads/2025/10/hero@2x.png');
	background-size: cover;
	height: 100vh;
	}

.mobile-contact {
  display: none;
}

.footer {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	margin-top: 96px;
	width: 100% !important;
	padding: 16px 24px;
	z-index: 1000 !important;
}

/* -- Typography ------------------------------------------- */

h1, h2, h3, h4, h5 {
	font-family: var(--font-headline) !important;
	color: var(--atease-blue) !important;
	font-size: 20px !important;
}

h1 {
  font-size: 32px !important;
}
h2

p {
  line-height: var(--line-height-text);
  margin-bottom: 12px;
}

.logo {
	font-family: var(--font-headline);
	font-size: 96px;
	line-height: 1;
	letter-spacing: -3.8;
}

.font-buttonxs {
	font-size: var(--font-size-xs);	
	font-family: var(--font-headline);
	line-height: var(--font-line-height-button);
	font-weight: var(--font-weight-headline);
	text-transform: uppercase;
}


.font-headline-xxl {
	font-family: var(--font-headline);
	font-size: 32px;
	width: fit-content;
	line-height: var(--font-line-height-headline);
	font-weight: var(--font-weight-headline);
}

.font-headline-xl {
	font-family: var(--font-headline);
	font-size: 24px;
	width: fit-content;
	line-height: var(--font-line-height-headline);
	font-weight: var(--font-weight-headline);
}

.font-headline-l {
	font-family: var(--font-headline);
	font-size: 20px;
	width: fit-content;
	line-height: var(--font-line-height-headline);
	font-weight: var(--font-weight-headline);
}		

.font-headline-m {
	font-family: var(--font-headline);
	font-size: 18px;
	width: fit-content;
	line-height: var(--font-line-height-headline);
	font-weight: var(--font-weight-headline);
}	

.font-headline-s {
	font-family: var(--font-headline);
	font-size: 16px;
	width: fit-content;
	line-height: var(--font-line-height-headline);
	font-weight: var(--font-weight-headline);
}	

.font-formular-xs {
	font-family: var(--font-text);
	font-size: 14px;
	width: fit-content;
	line-height: var(--font-line-height-button);
	font-weight: var(--font-weight-text);
}

/* -- Buttons ------------------------------------------- */

.cta-primary-s {
	background: var(--atease-red);
	color: var(--atease-white);
	font-size: var(--font-size-xs);	
	font-family: var(--font-headline);
	line-height: var(--font-line-height-button);
 	text-transform: uppercase;
	width: fit-content;
	text-wrap: nowrap;
	border-radius: var(--border-radius-button);
	padding: var(--padding-button-s);
	transition: var(--transition-hover);
}

.cta-primary-s:hover {
	color: var(--atease-white);
	background: var(--atease-blue);
}


.cta-secondary-s {
	color: var(--atease-blue);
	border: 1px solid var(--atease-blue);
	font-size: var(--font-size-xs);	
	font-family: var(--font-headline);
	line-height: var(--font-line-height-button);
 	text-transform: uppercase;
	width: fit-content;
	text-wrap: nowrap;
	border-radius: var(--border-radius-button);
	padding: var(--padding-button-s);
	transition: var(--transition-hover);
}

.cta-secondary-s:hover {
	color: var(--atease-white);
	background: var(--atease-blue);
}

/* -- Formulare ------------------------------------------- */

html input {
	border: 1px solid var(--atease-lightgray);
	padding: 10px 12px;
	background: var(--atease-white);
	border-radius: var(--border-radius);
}

/* Newsletter Plugin */
	.tnp-subscription input[type="text"], .tnp-subscription input[type="email"], .tnp-subscription input[type="submit"], .tnp-subscription select, .tnp-subscription textarea, .tnp-profile input[type="text"], .tnp-profile input[type="email"], .tnp-profile input[type="submit"], .tnp-profile select, .tnp-profile textarea {
		border: 1px solid var(--atease-lightgray);
		padding: 10px 12px;
		background: var(--atease-white);
		border-radius: var(--border-radius);
		font-family: var(--font-text);
		color: var(--atease-blue);
		margin: auto;
	}

	input:focus {
		border: 1px solid var(--atease-blue) !important;
		outline: none;
	}

	.tnp-subscription div.tnp-field, .tnp-profile div.tnp-field {
		margin: 0px;
	}

	.tnp-field.tnp-field-button.flex-right.flex-h-middle.tnp-submit {
		margin: auto;
		padding: var(--padding-button-s) !important;
		border: 0px;
	}

  .tnp-submit.cta-primary-s:hover {
    border: 0px;
    background: var(--atease-blue) !important;
  }

	.tnp-subscription input.tnp-submit, .tnp-profile input.tnp-submit, .tnp-unsubscribe button.tnp-submit, .tnp-reactivate button.tnp-submit 	{
		color: var(--atease-white) !important; 
		background-color: var(--atease-red) !important;
		font-size: var(--font-size-xs) !important;	
		font-family: var(--font-headline) !important;
		line-height: var(--font-line-height-button) !important;
	 	text-transform: uppercase;
		width: fit-content;
		border-radius: var(--border-radius-button) !important;
		border: 0px !important;
		padding: var(--padding-button-s) !important;
		cursor: pointer;
	}






/* -- Flexbox ------------------------------------------- */

.flex-4 {
		gap: 4px;
}

.flex-8 {
		gap: 8px;
}

.flex-12 {
		gap: 12px;
}

.flex-16 {
		gap: 16px;
}

.flex-20 {
		gap: 20px;
}

.flex-24 {
		gap: 24px;
}

.flex-32 {
		gap: 32px;
}

.flex-40 {
		gap: 40px;
}



.flex-right {
	display: flex;
	flex-direction: row;
}

.flex-down {
	display: flex;
	flex-direction: column;
}

.flex-space-between {
	justify-content: space-between;
}

.flex-h-middle {
	align-items: center;
}

.flex-top {
	align-items: flex-start;
}


/* -- Custom ------------------------------------------- */

.topline-left {
  z-index: 100;
}

.topline-right {
  z-index: 100;
}

.topline-center {
	position: absolute;
	top:12px;
	left: 50%;
	transform: translate(-50%, 0);
}



.logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: -100;
	text-wrap: nowrap;
}

.subline {
	position: absolute;
	bottom:12px;
	left: 50%;
	transform: translate(-50%, -48px);
	z-index: 100;
}

.gradient-header {
	position: absolute;
	top: 0px;
	background: url('./../../uploads/2025/10/gradient-top2@-scaled.png');
	background-repeat: repeat-x;
	background-size: 100% 173px;
	z-index: 0;
	height: 173px;
	width: 100%;
	pointer-events: none;
}

.gradient-firstscreen-bottom {
  position: absolute;
  bottom: 0px;
	background: url('./../../uploads/2025/10/gradient-bottom2@-scaled.png');
	background-repeat: repeat-x;
	background-size: 100% 173px;
	z-index: 0;
	height: 173px;
	width: 100%;
	margin-top: -173px;
	pointer-events: none;
}

.gradient-footer {
	/* position: fixed;
	bottom: 0px;
	background: url('./../../uploads/2025/10/gradient-bottom2@-scaled.png');
	background-repeat: repeat-x;
	background-size: 100% 173px;
	z-index: -1;
	height: 173px;
	width: 100%;
	pointer-events: none;
	*/
}
  
.first-message {
	border-radius: var(--border-radius);	
	background: var(--atease-white);
	position: relative;
  margin: 0px 24px 24px 20px;
	padding: 12px;
	max-width: 572px;
}

.playbook {
	margin-top: -44px;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	max-width: 1011px;
	border-radius: var(--border-radius);
	overflow: hidden;
	position: relative;
	left: 50%;
	transform: translate(-50%, 0);
	z-index: 100;
}

.playbook-left {
	background: #6956ffFF;
	max-width: 617px;
	min-height: 575px;
	padding: 16px;
	color: var(--atease-white);
	border-radius: 8px 0px 8px 8px !important;
}

.playbook-right {
	background: var(--atease-white);
	max-width: 394px;
	height: fit-content;
	padding: 16px;
}

.bullet-invert {
	margin-top: 5px;
}

.container-default p {
	line-height: var(--font-line-height-text);
}

/* -- Mobile Optimierungen ------------------------------------------- */

@media (max-width: 768px) {
	.firstscreen {
		background-position: right -64px top 0px;
	}
	
	.mobile-contact {
    display: block;
    position: relative;
    top: 20vh;
    margin: auto;
    max-width: 50%;
    text-align: center;
  }
	
	.footer {
		margin-top: 32px;
		text-align: left !important;
		white-space: nowrap;
	}
	
.gradient-footer {
	/*
	position: fixed;
	bottom: 0px;
	background: url('./../../uploads/2025/10/gradient-bottom2@-scaled.png');
	background-repeat: repeat-x;
	background-size: 100% 173px;
	z-index: 0;
	height: 173px;
	width: 100%;
	*/
}
	
	.topline-right {
	  display: none;
	}
	
.topline-center {
	position: absolute;
	top:8px;
	left: 50%;
	transform: translate(-50%, 0);
}

	.topline-left {
	  display: none;
	}
	
  .first-message {
    position: absolute;
    bottom: 96px; /* Offset nach unten */
    left: 0px;
	  margin: 12px;
	  padding: 12px;
  }
  
  .logo {
    position: absolute;
	  top: 15vh;
	  left: 50%;
	  transform: translate(-50%, -50%);
	  z-index: -100;
	  text-wrap: nowrap;
	  font-size: 88px;
	  	z-index: 1;
  }
 
 .subline {
	  position: absolute;
	  bottom:12px;
	  width: 100%;
	  left: 50%;
	  transform: translate(-50%, 0px);
	  z-index: 100; 
 }


  .playbook {
	  margin: 0px 12px !important;
    left: 0px;
	  display: flex;
	  flex-direction: row;
	  flex-wrap: wrap;
	  max-width: 1011px;
	  border-radius: var(--border-radius);
	  overflow: hidden;
	  position: relative;
	  left: 0%;
	  transform: translate(0, 0);    
  }
  
  .playbook-left {
    max-width: 100%;
    border-radius: 8px 8px 0 0 !important;
  }
  .playbook-right {
  	max-width: 100%;
  	border-radius: 0 0 8px 8px !important;
  }
}
