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

html {
  font-size: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #0a0a0a;
  color: #fff;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 1rem 1rem 1rem 1rem; /* Restored top padding */
}

/* Full Width Wrapper */
.page-wrapper {
  width: 100%;
}

/* Main content container */
.container {
  max-width: 40rem;
  margin: 0 auto;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Intro text */
.intro {
  font-family: 'Roboto', sans-serif;
  font-size: 2.25rem;
  font-weight: 100; /* Very light */
  color: #ffffff;
  margin-bottom: .5rem;
}

/* Main title */
.main-title {
  font-size: 10rem;
  font-weight: 900;
  line-height: 1em;
  letter-spacing: 0rem;
  margin-bottom: 2.5rem;
  text-align: left;
  white-space: nowrap;
}

/* Subheading */
.subheading {
  font-family: 'Roboto', sans-serif;
  font-weight: 100; /* Very light */
  font-size: 1.45rem;
  line-height: 1.6;
  letter-spacing: 0rem;
  color: #ffffff;
  margin-bottom: 2rem;
  text-align: left;
}

.subheading strong {
  color: #fff;
  font-weight: 600;
}

/* Colored dots */
.dot {
  font-weight: bold;
  margin: 0 0.5rem;
}

/* Buttons
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.button-stack {
	position:relative;
	width:100%;
	max-width:37.5rem;     				/* 600px */
    text-align:center;
	margin:0 auto;
}

.button,button {
	display:inline-flex;
	align-items:center;
	justify-content:center;
	/*justify-content:center;*/
	width: 100%;/*18.75rem;*/             	/* 300px */
 	min-height:4rem;                /* 48px */
  	padding:0.75rem 1rem;         	/* 12px ; 16px */
  	font-size:1.25rem;           	/* 18px */
  	font-weight:700;
	text-decoration:none;
	white-space:normal;
  	background-color:var(--button-background,transparent);
	color:var(--button-text,#000000);
	border:var(--button-border,none);
	border-radius:0.5rem;
	cursor:pointer;
	box-sizing:border-box;
	hyphens:auto;               	/* Delete this to remove automatic hyphen on line break */
  	margin-bottom:1rem;
	text-align:center;
	line-height:1.3;
}

/* Icons
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.icon {
	width:1.75rem;
	height:1.75rem;
	margin-right:1rem;
	/*margin-right:.5rem;*/
	flex-shrink:0;
}

/* Button Text Color Override
    –––––––––––––––––––––––––––––––––––––––––––––––––– */
    .button:hover,button:hover {
	color:var(--button-text);
}

/* Small Mobile (≤ 480px) */
@media (max-width: 40rem) {
  .main-title {
    font-size: 5rem;
    margin-bottom: 1.75rem;
  }

  .intro {
    font-size: 1.2rem;
  }

  .subheading {
    font-size: 1.05rem;
  }

  .button,button {
    font-size: 1.1rem;
  }
}