/* reset */

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;
}

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;
}

/* html */

html {
  font-family: 'Inter', sans-serif;
}

/* body */

header {
  position: fixed;
  top: 20px;
  left: 20px;
  height: 50px;
  z-index: 3;
}

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

h1,
h2 {
  font-family: 'Source Serif Pro', serif;
  font-size: 35px;
  line-height: 35px;
  letter-spacing: -1.2px;
  margin-bottom: 0;
}

h1 {
  color: #fbb03b;
}

h2 {
  color: #252c63;
  margin-bottom: 15px;
}

/* svg */

.svg-wrapper {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  padding-top: 100%;
}

.svg-wrapper > svg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

/* --- MOBILE --- */

.logo--header {
  width: 180px;
}

@media screen and (max-width: 768px) {
  .logo--header svg path:not([data-id='wing']) {
    fill: #fff;
  }
}

.landing-container {
  min-height: 100vh;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.content-section {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 30px;
  height: 50vh;
  order: 2;
  position: relative;
}

.logo-section {
  position: relative;
  height: 50vh;
  width: 100%;
  order: 1;
  background-color: #252c63;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gif--logo {
  width: 276px;
  height: 114px;
  object-fit: contain;
}

.email-link {
  font-size: 24px;
  line-height: 36px;
  width: 100%;
  color: rgba(37, 44, 99, 0.5);
  font-family: 'Source Serif Pro', serif;
  letter-spacing: -0.8px;
  text-decoration-line: underline;
  display: inline;
}

a {
  text-underline-offset: 2px;
  transition: color 0.3s ease-in-out, text-underline-offset 0.3s ease-in-out;
}

a:hover,
a:active,
a:focus {
  text-underline-offset: 5px;
  color: #fbb03b;
}

.content--bottom {
  position: absolute;
  right: 30px;
  bottom: 26px;
  width: 100%;
}

.text--xs {
  color: #252c63;
  font-family: Inter, sans-serif;
  font-size: 12px;
  line-height: 1;
  letter-spacing: -0.24px;
  margin-bottom: 0;
}

.content--bottom,
.privacies {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

/* --- DESKTOP --- */

@media screen and (min-width: 768px) {
  .landing-container {
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }

  .content-section {
    padding: 30px;
    align-items: center;
    justify-content: center;
  }

  .content-section,
  .logo-section {
    height: 100vh;
    width: 50vw;
    position: relative;
  }
}

@media screen and (min-width: 991px) {
  h1,
  h2 {
    font-size: 60px;
    line-height: 60px;
    letter-spacing: -1.2px;
  }

  h2 {
    margin-bottom: 30px;
  }

  .content--bottom {
    right: 30px;
  }

  .email-link {
    font-size: 40px;
    line-height: 60px;
  }

  .gif--logo {
    width: 60%;
    height: auto;
    object-fit: contain;
    aspect-ratio: 16 / 9;
  }

  header {
    top: 30px;
    left: 30px;
  }
}

@media screen and (min-width: 1400px) {
  h1,
  h2 {
    font-size: 3.5vw;
    line-height: 1.1;
  }

  .email-link {
    font-size: 3.2vw;
    line-height: 1.2;
  }
}
