:root {
  --background-height: 100vh;
  --viewport-height: 100vh;

  --site-language-direction: ltr;
  --site-language-alignment: left;
  --site-language-flex-alignment: flex-start;
  --site-language-indent-left: 1;
  --site-language-indent-right: 0;
  --site-language-margin-left: 0;
  --site-language-margin-right: auto;

  --text-light: rgba(255, 255, 255, 0.561);
  --text: rgba(255, 255, 255, 0.7);
  --text-strong: #ffffff;
  --border: rgba(255, 255, 255, 0.141);
}

/* Reset (mirrors Carrd-style minimal 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;
}

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

html {
  font-size: 18pt;
}

@media (max-width: 1680px) {
  html {
    font-size: 13pt;
  }
}
@media (max-width: 980px) {
  html {
    font-size: 11pt;
  }
}
@media (max-width: 736px) {
  html {
    font-size: 11pt;
  }
}

body {
  -webkit-text-size-adjust: none;
  min-height: var(--viewport-height);
  min-width: 320px;
  overflow-x: hidden;
  word-wrap: break-word;
  font-family: "Source Sans Pro", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

body:before {
  background-attachment: scroll;
  content: "";
  display: block;
  height: var(--background-height);
  left: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  transform: scale(1);
  width: 100vw;
  z-index: 0;
  background-image: linear-gradient(45deg, #4690c2 25%, #6aa4d4 70%);
  background-position: 0% 0%;
  background-repeat: repeat;
  background-size: auto;
}

a {
  color: inherit;
  text-decoration: underline;
  transition: color 0.25s ease;
}
a:hover {
  text-decoration: none;
}

#wrapper {
  -webkit-overflow-scrolling: touch;
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: var(--viewport-height);
  overflow: hidden;
  position: relative;
  z-index: 2;
}

#main {
  --alignment: center;
  --flex-alignment: center;
  --indent-left: 1;
  --indent-right: 1;
  --margin-left: auto;
  --margin-right: auto;
  --border-radius-tl: 0;
  --border-radius-tr: 0;
  --border-radius-br: 0;
  --border-radius-bl: 0;

  align-items: center;
  display: flex;
  justify-content: center;
  max-width: 100%;
  position: relative;
  text-align: var(--alignment);
  z-index: 1;
  transition:
    opacity 1.125s ease 0s,
    transform 1.125s ease 0s;
}

#main > .inner {
  --padding-horizontal: 1rem;
  --padding-vertical: 1.25rem;
  --spacing: 0.625rem;
  --width: 26rem;

  max-width: 100%;
  position: relative;
  width: var(--width);
  z-index: 1;
  padding: var(--padding-vertical) var(--padding-horizontal);
}

#main > .inner > * {
  margin-top: var(--spacing);
  margin-bottom: var(--spacing);
  transition: opacity 1s ease-in-out 0s;
}
#main > .inner > :first-child {
  margin-top: 0 !important;
}
#main > .inner > :last-child {
  margin-bottom: 0 !important;
}

/* Load animation (same semantics as Carrd export) */
body.is-loading #main {
  opacity: 0;
  transform: scale(0.94375);
}
body.is-loading #main > .inner > * {
  opacity: 0;
}

/* Avatar */
.image {
  display: block;
  line-height: 0;
  max-width: 100%;
  position: relative;
}
.image .frame {
  -webkit-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  vertical-align: top;
  width: 100%;
  position: relative;
}
#image01 .frame {
  width: 9rem;
  border-radius: 100%;
}
#image01 .frame img {
  display: block;
  width: inherit;
  max-width: 100%;
  border-radius: 0 !important;
}
#image01 .avatar-fallback {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 2.25rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(0, 0, 0, 0.15);
}
html.no-avatar #image01 .avatar-fallback {
  display: flex;
}
html.no-avatar #image01 img {
  display: none;
}

h1,
p {
  direction: var(--site-language-direction);
  position: relative;
}
p span.p,
h1 span.p {
  display: block;
  position: relative;
}

#title {
  color: var(--text-strong);
  letter-spacing: -0.075rem;
  width: 100%;
  font-size: 3.25em;
  line-height: 1.5;
  font-weight: 200;
}

#text01 {
  color: var(--text);
  letter-spacing: -0.025rem;
  width: 100%;
  font-size: 1.25em;
  line-height: 1.75;
  font-weight: 200;
}

#text01 span.p:nth-child(n + 2) {
  margin-top: 1rem;
}

hr {
  align-items: center;
  border: 0;
  display: flex;
  justify-content: var(--flex-alignment);
  min-height: 1rem;
  padding: 0;
  position: relative;
  width: 100%;
}
hr:before {
  content: "";
}

#divider01:not(:first-child) {
  margin-top: 1.125rem !important;
}
#divider01:not(:last-child) {
  margin-bottom: 1.125rem !important;
}
#divider01:before {
  width: 24rem;
  background-color: var(--border);
  height: 1px;
}

.icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: var(--flex-alignment);
  letter-spacing: 0;
  padding: 0;
}
.icons li {
  position: relative;
  z-index: 1;
}
.icons li a {
  align-items: center;
  display: flex;
  justify-content: center;
}
.icons li a svg {
  display: block;
  pointer-events: none;
  position: relative;
}
.icons .label {
  display: none;
}

#icons01 {
  font-size: 1.5em;
  gap: 1.125rem;
}
#icons01 li a {
  border-radius: 100%;
  height: 2em;
  width: 2em;
  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease;
  border: solid 1px var(--border);
}
#icons01 li a svg {
  height: 60%;
  width: 60%;
  transition: fill 0.25s ease;
  fill: var(--text);
}
#icons01 a:hover {
  border-color: #ffffff !important;
}
#icons01 a:hover svg {
  fill: #ffffff !important;
}

@media (max-width: 736px) {
  #main > .inner {
    --padding-horizontal: 1rem;
    --padding-vertical: 1.25rem;
    --spacing: 0.625rem;
  }
  #image01 .frame {
    width: 9rem;
  }
  #title {
    letter-spacing: -0.065625rem;
    width: 100%;
    font-size: 3em;
    line-height: 1.5;
  }
  #text01 {
    letter-spacing: -0.021875rem;
    width: 100%;
    font-size: 1.25em;
    line-height: 1.75;
  }
}

@media (max-width: 360px) {
  #main > .inner {
    --padding-horizontal: 0.75rem;
    --padding-vertical: 0.9375rem;
    --spacing: 0.46875rem;
  }
  #icons01 {
    gap: 0.84375rem;
  }
}


