@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Ruslan+Display&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Castoro:ital@0;1&family=Public+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cedarville+Cursive&display=swap");

:root {
  color-scheme: light dark;
}

/* -------[ FONTS ]------- */
:root {
  --font-1: "Montserrat", sans-serif;
  --font-1-1: "Castoro", Serif;
  --font-2: var(--font-1);
  --font-mono: monospace;
}

/* -------[ COLOURS ]------- */
:root {
  --autocomplete: hsla(96, 10%, 19%, 1);
  --autocomplete-bg: #ffffff;

  --color-1: #ef233c;
  --color-2: hsla(96, 10%, 19%, 1);
  --color-3: hsla(0, 0%, 10%, 1);
  --color-blog: #212122;
  --color-blog-card: #121212;
  --color-1-lightest: hsla(12, 75%, 75%, 1);
  --color-1-lighter: hsla(12, 75%, 65%, 1);
  --color-1-light: #d52424;
  --color-1-dark: hsla(12, 75%, 35%, 1);
  --color-1-darker: hsla(12, 75%, 25%, 1);
  --color-1-darkest: hsla(12, 75%, 15%, 1);
  --color-2-lightest: hsla(96, 10%, 49%, 1);
  --color-2-lighter: hsla(96, 10%, 39%, 1);
  --color-2-light: hsla(96, 10%, 29%, 1);
  --color-2-dark: hsla(96, 10%, 10%, 1);
  --color-2-darker: hsla(96, 10%, 1%, 1);
  --color-3-light: hsla(0, 0%, 16%, 1);
  --color-3-dark: hsla(0, 0%, 8%, 1);
  --color-error: hsla(359, 100%, 91%, 1);
  --color-success: hsla(76, 69%, 68%, 1);
  --color-info: hsla(205, 82%, 91%, 1);
  --color-notice: hsla(51, 100%, 80%, 1);
  --color-error-content: hsla(359, 50%, 50%, 1);
  --color-success-content: hsla(76, 29%, 28%, 1);
  --color-info-content: hsla(205, 32%, 31%, 1);
  --color-notice-content: hsla(51, 30%, 30%, 1);
  --color-black: #000000;
  --color-gray-19: #181818;
  --color-gray-18: #2f302f;
  --color-gray-17: #474747;
  --color-gray-16: #5e5f5e;
  --color-gray-15: #767776;
  --color-gray-14: #8e8f8e;
  --color-gray-13: #a5a7a5;
  --color-gray-12: #bdbebd;
  --color-gray-11: #d4d6d4;
  --color-gray-10: #eceeec;
  --color-gray-9: #eef0ee;
  --color-gray-8: #f0f1f0;
  --color-gray-7: #f2f3f2;
  --color-gray-6: #f4f5f4;
  --color-gray-5: #f6f7f6;
  --color-gray-4: #f7f8f7;
  --color-gray-3: #f9faf9;
  --color-gray-2: #fbfcfb;
  --color-gray-1: #fbfcfb;
  --color-white: #ffffff;

  /* -------[ TEXT ]------- */
  --color-text: var(--color-gray-19);
  --color-text-dark: var(--color-3-dark);
  --color-text-light: var(--color-gray-15);
  --color-placeholder: var(--color-gray-13);

  /* -------[ LINK ]------- */
  --color-link: var(--color-1);
  --color-link-hover: var(--color-2-lighter);
  --color-link-active: var(--color-2-lighter);

  /* -------[ BUTTONS ]------- */
  --color-btn: var(--color-gray-10);
  --color-btn-text: var(--color-text);
  --color-btn-hover: var(--color-gray-11);
  --color-btn-hover-text: var(--color-text);
  --color-btn-primary: var(--color-1);
  --color-btn-primary-text: var(--color-white);
  --color-btn-primary-hover: var(--color-1-light);
  --color-btn-primary-hover-text: var(--color-white);
  --color-btn-stroke: var(--color-text-dark);
  --color-btn-stroke-text: var(--color-text-dark);
  --color-btn-stroke-hover: var(--color-text-dark);
  --color-btn-stroke-hover-text: var(--color-white);

  /* -------[ PRELOADER ]------- */
  --color-preloader-bg: var(--color-gray-10);
  --color-loader: var(--color-3);
  --color-loader-light: var(--color-gray-14);
  --color-body-bg: var(--color-gray-1);
  --color-border: rgba(0, 0, 0, 0.1);
  --border-radius: 5px;
}

/* -------[ SPACE ]------- */
:root {
  --base-size: 62.5%;
  --multiplier: 1;
  --base-font-size: calc(2rem * var(--multiplier));
  --space: calc(3.2rem * var(--multiplier));
  --spacetext: calc(3rem * var(--multiplier));
  --space2: calc(2rem * var(--multiplier));
  --vspace-0_125: calc(0.125 * var(--space));
  --vspace-0_25: calc(0.25 * var(--space));
  --vspace-0_375: calc(0.375 * var(--space));
  --vspace-0_5: calc(0.5 * var(--space));
  --vspace-0_625: calc(0.625 * var(--space));
  --vspace-0_75: calc(0.75 * var(--space));
  --vspace-0_875: calc(0.875 * var(--space));
  --vspace-1: calc(var(--space));
  --vspace-1_25: calc(1.25 * var(--space));
  --vspace-1_5: calc(1.5 * var(--space));
  --vspace-1_75: calc(1.75 * var(--space));
  --vspace-2: calc(2 * var(--space));
  --vspace-2_5: calc(2.5 * var(--space));
  --vspace-2_5-foot: calc(1.2 * var(--space));
  --vspace-3: calc(3 * var(--space2));
  --vspace-3_5: calc(3.5 * var(--space));
  --vspace-4: calc(4 * var(--space));
  --vspace-4_5: calc(4.5 * var(--space));
  --vspace-5: calc(5 * var(--space2));
  --vspace-5_5: calc(5.5 * var(--space2));
  --vspace-6: calc(6 * var(--space2));
  --vspace-6_5: calc(6.5 * var(--space));
  --vspace-7: calc(7 * var(--space2));
  --vspace-7_5: calc(7.5 * var(--space));
  --vspace-8: calc(8 * var(--space));
  --vspace-8_5: calc(8.5 * var(--space));
  --vspace-9: calc(9 * var(--space));
  --vspace-9_5: calc(9.5 * var(--space));
  --vspace-10: calc(10 * var(--space));
  --text-scale-ratio: 1.2;
  --text-size: var(--base-font-size);
  --text-xs: calc(
    (var(--text-size) / var(--text-scale-ratio)) / var(--text-scale-ratio)
  );
  --text-sm: calc(var(--text-xs) * var(--text-scale-ratio));
  --text-md: calc(
    var(--text-sm) * var(--text-scale-ratio) * var(--text-scale-ratio)
  );
  --text-lg: calc(var(--text-md) * var(--text-scale-ratio));
  --text-xl: calc(var(--text-lg) * var(--text-scale-ratio));
  --text-xxl: calc(var(--text-xl) * var(--text-scale-ratio));
  --text-xxxl: calc(var(--text-xxl) * var(--text-scale-ratio));
  --text-display-1: calc(var(--text-xxxl) * var(--text-scale-ratio));
  --text-display-2: calc(var(--text-display-1) * var(--text-scale-ratio));
  --text-display-3: calc(var(--text-display-2) * var(--text-scale-ratio));
  --text-huge-1: calc(var(--text-display-3) * var(--text-scale-ratio));
  --text-huge-2: calc(var(--text-huge-1) * var(--text-scale-ratio));
  --text-huge-3: calc(var(--text-huge-2) * var(--text-scale-ratio));
  --vspace-btn: var(--vspace-1_75);
}

@media screen and (max-width: 600px) {
  :root {
    --multiplier: 0.9375;
  }
}

/* -------[ GRID ]------- */
:root {
  --width-sixteen-cols: 1760px;
  --width-default: 1280px;
  --width-wide: 1600px;
  --width-wider: 1800px;
  --width-narrow: 1200px;
  --width-narrower: 1000px;
  --width-narrowest: 800px;
  --width-full: 100%;
  --width-grid-max: var(--width-default);
  --gutter: 2.6rem;
}

@media screen and (max-width: 1000px) {
  :root {
    --gutter: 2.2rem;
  }
}

@media screen and (max-width: 600px) {
  :root {
    --gutter: 1rem;
  }
}

/* -------[ RESET ]------- */
a,
audio,
b,
body,
canvas,
code,
del,
div,
embed,
footer,
form,
h1,
h2,
h3,
h4,
h5,
header,
html,
i,
iframe,
img,
label,
li,
nav,
object,
p,
pre,
q,
section,
span,
table,
tbody,
td,
th,
time,
tr,
u,
ul,
var,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

footer,
header,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ul {
  list-style: none;
}

q {
  quotes: none;
}

q:after,
q:before {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* -------[ ROW ]------- */
.row {
  display: flex;
  flex-flow: row wrap;
  width: min(92%, var(--width-grid-max));
  margin: 0 auto;
}

.row .row {
  width: auto;
  margin-left: calc(var(--gutter) * -1);
  margin-right: calc(var(--gutter) * -1);
}

.column {
  flex: 1;
  padding: 0 var(--gutter);
}

/* -------[ 1201px AND ABOVE ]------- */
.xl-4 {
  flex: none;
  width: 33.3333333333%;
}

.xl-6 {
  flex: none;
  width: 50%;
}

.xl-12 {
  flex: none;
  width: 100%;
}

/* -------[ 1001px to 1200px - LARGE DEVICE ]------- */
@media screen and (max-width: 1200px) {
  .lg-5 {
    flex: none;
    width: 41.6666666667%;
  }

  .lg-12 {
    flex: none;
    width: 100%;
  }
}

/* -------[ MEDIUM-SIZED SCREENS (801PX TO 1000PX) ]------- */
@media screen and (max-width: 1000px) {
  .md-6 {
    flex: none;
    width: 50%;
  }

  .md-12 {
    flex: none;
    width: 100%;
  }
}

/* -------[ TABLET SCREENS (601PX TO 800PX) ]------- */
@media screen and (max-width: 800px) {
  .tab-12 {
    flex: none;
    width: 100%;
  }
}

/* -------[ MOBILE SCREENS (401PX TO 600PX) ]------- */
@media screen and (max-width: 600px) {
  .row {
    width: 100%;
    padding-left: 6vw;
    padding-right: 6vw;
  }

  .row .row {
    padding-left: 0;
    padding-right: 0;
  }
}

/* -------[ SMALL MOBILE SCREENS (UP TO 400PX) ]------- */
@media screen and (max-width: 400px) {
  .row .row {
    margin-left: 0;
    margin-right: 0;
  }

  .column {
    flex: none;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
  }
}

/* -------[ BASE STYLES ]------- */
html {
  font-size: var(--base-size);
  box-sizing: border-box;
}

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

body {
  background-color: var(--color-body-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: var(--font-1);
  font-size: var(--base-font-size);
  font-weight: 400;
  line-height: var(--vspace-1);
  color: var(--color-text);
}

p {
  font-size: inherit;
  text-rendering: optimizeLegibility;
}

a {
  text-decoration: none;
  color: var(--color-link);
  transition: all 0.3s ease-in-out;
}

a:focus,
a:hover,
a:active {
  color: var(--color-link-hover);
}

a:hover,
a:active {
  outline: 0;
}

svg,
img,
video {
  max-width: 100%;
  height: auto;
}

pre {
  overflow: auto;
}

div,
form,
h1,
h2,
h3,
h4,
h5,
li,
p,
pre,
td,
th,
ul {
  margin: 0;
  padding: 0;
}

input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* -------[ HELPER CLASSES ]------- */
.u-screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  width: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  border: 0;
  position: absolute;
  word-wrap: normal !important;
}

.u-fullwidth {
  width: 100%;
}

/* -------[ TYPOGRAPHY ]------- */
h1,
h2,
h3,
h4,
h5,
.h1,
.h2,
.h3,
.h4,
.h5 {
  font-family: var(--font-2);
  font-weight: 400;
  color: var(--color-text-dark);
  font-variant-ligatures: common-ligatures;
  text-rendering: optimizeLegibility;
}

h1,
.h1 {
  margin-top: var(--vspace-2_5);
  margin-bottom: var(--vspace-0_75);
}

h2,
.h2,
h3,
.h3,
h4,
.h4 {
  margin-top: var(--vspace-2);
  margin-bottom: var(--vspace-0_75);
}

h5,
.h5 {
  margin-top: var(--vspace-1_75);
  margin-bottom: var(--vspace-0_5);
}

h1,
.h1 {
  font-size: var(--text-display-2);
  line-height: calc(2.25 * var(--space));
  letter-spacing: -0.02em;
}

@media screen and (max-width: 500px) {
  h1,
  .h1 {
    font-size: var(--text-xxxl);
    line-height: calc(1.625 * var(--space));
  }
}

h2,
.h2 {
  font-size: var(--text-xxl);
  line-height: calc(1.375 * var(--space));
  letter-spacing: -0.02em;
}

h3,
.h3 {
  font-size: var(--text-xl);
  line-height: calc(1.125 * var(--space));
}

h4,
.h4 {
  font-size: var(--text-lg);
  line-height: var(--vspace-1);
}

h5,
.h5 {
  font-size: var(--text-md);
  line-height: var(--vspace-0_875);
}

i,
b {
  font-size: inherit;
  line-height: inherit;
}

i {
  font-style: italic;
}

b {
  font-weight: 600;
  color: var(--color-text-dark);
}

var,
code,
pre {
  font-family: var(--font-mono);
}

pre {
  padding: var(--vspace-0_75) var(--vspace-1) var(--vspace-1);
  background: var(--color-gray-5);
  overflow-x: auto;
}

code {
  font-size: var(--text-sm);
  line-height: 1.6rem;
  margin: 0 0.2rem;
  padding: calc((var(--vspace-1) - 1.6rem) / 2 - 0.1rem) 0.7rem;
  white-space: nowrap;
  background: var(--color-gray-5);
  border: 1px solid var(--color-gray-10);
  color: var(--color-text);
  border-radius: 3px;
}

pre > code {
  display: block;
  white-space: pre;
  line-height: var(--vspace-1);
  padding: 0;
  margin: 0;
  border: none;
}

.attention-getter {
  font-family: var(--font-1);
  font-size: var(--text-md);
  line-height: var(--vspace-1_25);
  color: var(--color-text-light);
}

@media screen and (max-width: 800px) {
  .attention-getter {
    font-size: calc(var(--text-size) * 1.1);
    line-height: calc(1.125 * var(--space));
  }
}

@media screen and (max-width: 400px) {
  .attention-getter {
    font-size: var(--text-size);
    line-height: var(--vspace-1);
  }
}

/* -------[ LISTS ]------- */
ul {
  list-style: disc;
  margin-left: 1.6rem;
}

ul ul {
  margin: 1.6rem 0 1.6rem 1.6rem;
}

li {
  display: list-item;
  padding-left: 0.4rem;
}

/* -------[ SPACING UTILITIES ]------- */
button,
.btn {
  margin-bottom: var(--vspace-0_5);
}

input,
textarea,
select,
pre,
table,
p,
ul,
form,
img {
  margin-bottom: var(--vspace-1);
}

/* -------[ FORMS ]------- */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
textarea,
select {
  --input-height: var(--vspace-2);
  --input-line-height: var(--vspace-1);
  --input-vpadding: calc((var(--input-height) - var(--input-line-height)) / 2);
  display: block;
  height: var(--input-height);
  padding: var(--input-vpadding) 0 calc(var(--input-vpadding) - 1px);
  border: 0;
  outline: 0;
  color: var(--color-text-light);
  font-family: var(--font-1);
  font-size: calc(var(--text-size) * 0.8);
  line-height: var(--input-line-height);
  max-width: 100%;
  background: transparent;
  border-bottom: 1px solid var(--color-text-light);
  transition: all 0.3s ease-in-out;
}

textarea {
  min-height: calc(8 * var(--spacetext));
}

input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
textarea:focus,
select:focus {
  color: var(--color-text);
  border-bottom: 2.5px solid var(--color-1);
}

label {
  font-family: var(--font-1);
  font-weight: 600;
  font-size: var(--text-sm);
  line-height: var(--vspace-0_5);
  margin-bottom: var(--vspace-0_5);
  color: var(--color-text-dark);
  display: block;
}

::-moz-placeholder {
  color: var(--color-placeholder);
  opacity: 1;
}

::placeholder {
  color: var(--color-placeholder);
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--autocomplete);
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
  box-shadow: 0 0 0 1000px var(--autocomplete-bg) inset;
}

/* -------[ BUTTONS ]------- */
.btn,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
  --btn-height: var(--vspace-btn);
  display: inline-block;
  font-family: var(--font-1);
  font-weight: 500;
  font-size: calc(var(--text-size) * 0.6);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  height: var(--btn-height);
  line-height: calc(var(--btn-height) - 4px);
  padding: 0 3.6rem;
  margin: 0 0.4rem var(--vspace-0_5) 0;
  color: var(--color-btn-text);
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.3s;
  background-color: var(--color-btn);
  border: 2px solid var(--color-btn);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.btn:focus,
button:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
input[type="button"]:focus,
.btn:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover {
  background-color: var(--color-btn-hover);
  border-color: var(--color-btn-hover);
  color: var(--color-btn-hover-text);
  outline: 0;
}

.btn.btn--primary,
button.btn--primary,
input[type="submit"].btn--primary,
input[type="reset"].btn--primary,
input[type="button"].btn--primary {
  background: var(--color-btn-primary);
  border-color: var(--color-btn-primary);
  color: var(--color-btn-primary-text);
}

.btn.btn--primary:focus,
button.btn--primary:focus,
input[type="submit"].btn--primary:focus,
input[type="reset"].btn--primary:focus,
input[type="button"].btn--primary:focus,
.btn.btn--primary:hover,
button.btn--primary:hover,
input[type="submit"].btn--primary:hover,
input[type="reset"].btn--primary:hover,
input[type="button"].btn--primary:hover {
  background: #ffffff !important;
  border-color: #ffffff !important;
  color: #000000 !important;
  font-weight: 700;
}

.btn.u-fullwidth,
button.u-fullwidth {
  width: 100%;
  margin-right: 0;
}

.btn--large,
button.btn--large {
  --btn-height: calc(var(--vspace-btn) + 1.6rem);
  font-size: var(--text-xs);
}

.btn--stroke,
button.btn--stroke {
  background: transparent !important;
  font-weight: 700;
  border: 2px solid var(--color-btn-stroke);
  color: var(--color-btn-stroke-text);
}

.btn--stroke:focus,
button.btn--stroke:focus,
.btn--stroke:hover,
button.btn--stroke:hover {
  background: var(--color-btn-stroke-hover) !important;
  border: 2px solid var(--color-btn-stroke-hover);
  color: var(--color-btn-stroke-hover-text);
}

/* -------[ TABLES ]------- */
table {
  border-width: 0;
  width: 100%;
  max-width: 100%;
  font-family: var(--font-1);
  border-collapse: collapse;
}

th,
td {
  padding: var(--vspace-0_5) 3.2rem calc(var(--vspace-0_5) - 1px);
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}

th {
  padding: var(--vspace-0_5) 3.2rem;
  color: var(--color-text-dark);
  font-family: var(--font-1);
  font-weight: 600;
  font-size: var(--text-sm);
}

th:first-child,
td:first-child {
  padding-left: 0;
}

th:last-child,
td:last-child {
  padding-right: 0;
}

/* -------[ SECTION HEADER ]------- */
.text-pretitle {
  font-family: var(--font-1);
  font-weight: 600;
  font-size: var(--text-size);
  line-height: var(--vspace-1);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-1);
  transform: translate(0.2em, 0);
  margin-top: 0;
}

.text-display-title {
  font-size: var(--text-display-1);
  line-height: 1.0717;
  letter-spacing: -0.015em;
  margin-top: 0;
  margin-bottom: var(--vspace-1_5);
}

.section-header {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--vspace-3_5);
  position: relative;
}

.section-header .text-display-title {
  padding-top: 0.5em;
  margin-bottom: 0;
  position: relative;
}

.section-header::before {
  content: attr(data-num);
  font-family: var(--font-1);
  font-weight: 600;
  font-size: 10em;
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--color-gray-11);
  margin-right: var(--vspace-0_5);
  position: absolute;
  top: -0.25em;
  left: -0.1em;
  opacity: 0.5;
}

.section-header.light-on-dark .text-display-title {
  color: white;
}

.section-header.light-on-dark::before {
  color: rgba(255, 255, 255, 0.15);
}

[data-num] {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s ease-out;
}

[data-num].animate-up {
  opacity: 1;
  transform: translateX(0);
}

.width-sixteen-col {
  --width-grid-max: var(--width-sixteen-cols);
}

.gradient-num-black::before {
  content: attr(data-num);
  background: linear-gradient(to top, #282828, #c8c8c8);
  -webkit-background-clip: text;
  background-clip: text;
  -clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-num-white::before {
  content: attr(data-num);
  background: linear-gradient(to top, #edecec, #818181);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-num-github::before {
  content: attr(data-num);
  background: linear-gradient(to top, #818181, #edecec);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media screen and (max-width: 1400px) {
  .section-header .text-display-title {
    font-size: var(--text-xxxl);
  }

  .section-header::before {
    font-size: 8.6em;
  }
}

@media screen and (max-width: 500px) {
  .text-pretitle {
    font-size: var(--text-size);
    line-height: var(--vspace-0_75);
  }

  .section-header {
    margin-bottom: var(--vspace-2_5);
  }

  .section-header .text-display-title {
    font-size: var(--text-xxl);
  }

  .section-header::before {
    font-size: 7em;
    left: 0;
  }
}

/* -------[ GRID BLOCKS ]------- */
.grid-block {
  --col: 12;
  --grid-gap-h: calc(var(--gutter) * 2);
  --grid-gap-v: var(--vspace-1);
  display: grid;
  grid-template-columns: repeat(var(--col), [col] 1fr);
  column-gap: var(--grid-gap-h);
  row-gap: var(--grid-gap-v);
}

.grid-block.grid-16 {
  --col: 16;
}

.grid-list-items {
  --gap: calc(var(--gutter) * 2);
  --min-width: 300px;
  display: grid;
  grid-template-columns: repeat(
    auto-fit,
    minmax(min(var(--min-width), 100%), 1fr)
  );
  column-gap: var(--gap);
}

.grid-list-items__item {
  margin-bottom: var(--vspace-1);
}

@media screen and (max-width: 800px) {
  .grid-block,
  .grid-block.grid-16 {
    --col: 8;
  }
}

@media screen and (max-width: 600px) {
  .grid-block,
  .grid-block.grid-16 {
    --col: 4;
  }
}

/* -------[ SOCIAL MEDIA ]------- */
.social-list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
}

.social-list li {
  padding-left: 0;
  margin-right: 0.8rem;
}

.social-list li:last-child {
  margin-right: 0;
}

.social-list a {
  display: flex;
  align-items: center;
}

.social-list a:focus svg path,
.social-list a:hover svg path {
  fill: var(--color-white);
}

.social-list svg {
  height: var(--vspace-0_875);
  width: var(--vspace-0_875);
}

.social-list svg path {
  fill: rgba(255, 255, 255, 0.5);
  transition: all 0.5s;
}

/* -------[ PAGE WRAPPER ]------- */
.s-pagewrap {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  position: relative;
}

/* -------[ PRELOADER ]------- */
#preloader {
  position: fixed;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  background: var(--color-preloader-bg);
  z-index: 500;
  height: 100vh;
  width: 100%;
  opacity: 1;
  overflow: hidden;
}

.no-js #preloader {
  display: none;
}

#loader {
  position: relative;
  width: 6px;
  height: 6px;
  padding: 0;
  display: inline-block;
}

#loader > div {
  content: "";
  background: var(--color-loader);
  width: 6px;
  height: 6px;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
}

#loader > div:nth-of-type(1) {
  left: 15px;
}

#loader > div:nth-of-type(3) {
  left: -15px;
}

@keyframes dots-fade {
  0% {
    opacity: 1;
  }
  40% {
    opacity: 0.2;
  }
  80% {
    opacity: 1;
  }
}

.dots-fade > div {
  animation: dots-fade 1.6s infinite ease;
  animation-delay: 0.4s;
}

.dots-fade > div:nth-of-type(1) {
  animation-delay: 0.8s;
}

.dots-fade > div:nth-of-type(3) {
  animation-delay: 0s;
}

.ss-loaded #preloader {
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s 0.9s ease-in-out;
}

.ss-loaded #preloader #loader {
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

/* -------[ HOME: HEADER ]------- */

.s-header {
  --header-height: 72px;
  --logo-width: 5rem;
  --width-grid-max: calc(var(--width-sixteen-cols) - calc(var(--gutter) * 2));
  --box-shadow: 0 1px 1px rgba(0, 0, 0, 0.02), 0 2px 2px rgba(0, 0, 0, 0.02),
    0 4px 4px rgba(0, 0, 0, 0.02), 0 8px 8px rgba(0, 0, 0, 0.02);
  --box-shadow-2: 0 2px 2px rgba(0, 0, 0, 0.03), 0 4px 4px rgba(0, 0, 0, 0.03),
    0 8px 8px rgba(0, 0, 0, 0.03), 0 16px 16px rgba(0, 0, 0, 0.03);
  z-index: 100;
  background-color: transparent;
  height: var(--header-height);
  width: 100%;
  position: absolute;
  top: min(var(--vspace-0_75), 4vh);
  left: 0;
}

.s-header.offset {
  transform: translateY(-100%);
  transition-property: transform, background-color;
  transition-duration: 0.5s;
}

.s-header.scrolling {
  transform: translateY(0);
}

.s-header.sticky {
  opacity: 0;
  visibility: hidden;
  background-color: var(--color-3);
  box-shadow: var(--box-shadow);
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  position: fixed;
  top: 0;
  left: 0;
}

.s-header.sticky .s-header__inner {
  --width-grid-max: var(--width-default);
  background-color: transparent;
  border: none;
  box-shadow: none;
}

.s-header.sticky.scrolling {
  opacity: 1;
  visibility: visible;
}

.s-header__inner {
  height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  background-color: var(--color-3);
  border: 1px solid rgba(255, 255, 255, 0.03);
  padding: 0 var(--gutter);
  box-shadow: var(--box-shadow);
}

.s-header__block {
  z-index: 101;
  position: relative;
}

/* -------[ LOGO ]------- */
.s-header__logo {
  z-index: 3;
  line-height: 1;
  transform: translate(0.2rem, -0.05em);
}

.s-header__logo a {
  display: block;
  margin: 0;
  padding: 0;
  outline: 0;
  border: none;
}

.s-header__logo img {
  width: var(--logo-width);
  margin: 0;
  vertical-align: bottom;
  user-select: none;
}

/* -------[ NAVIGATION ]------- */
.s-header__nav {
  margin-left: var(--vspace-1);
}

.s-header__menu-links {
  list-style: none;
  display: inline-flex;
  flex-flow: row nowrap;
  margin: 0;
  padding: 0;
}

.s-header__menu-links li {
  padding-left: 0;
}

.s-header__menu-links a {
  display: block;
  font-family: var(--font-1);
  font-weight: 400;
  font-size: 1.6rem;
  line-height: var(--vspace-1);
  color: var(--color-gray-14);
  padding: 0 1.2rem;
  transition-property: color, background-color;
}

.s-header__menu-links .current a {
  color: white;
}

/* -------[ MOBILE MENU TOGGLE ]------- */
.s-header__menu-toggle {
  --toggle-block-width: 44px;
  --toggle-line-width: 28px;
  --toggle-line-height: 1px;
  display: none;
  width: var(--toggle-block-width);
  height: var(--toggle-block-width);
  position: absolute;
  top: calc((var(--header-height) - var(--toggle-block-width)) / 2);
  right: calc(var(--gutter) * 2 - 0.8rem);
}

.s-header__menu-toggle span {
  display: block;
  background-color: white;
  width: var(--toggle-line-width);
  height: var(--toggle-line-height);
  margin-top: -1px;
  font: 0/0 a;
  text-shadow: none;
  color: transparent;
  transition: all 0.5s;
  position: absolute;
  right: calc((var(--toggle-block-width) - var(--toggle-line-width)) / 2);
  top: 50%;
  bottom: auto;
  left: auto;
}

.s-header__menu-toggle span::before,
.s-header__menu-toggle span::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: inherit;
  transition: all 0.5s;
  position: absolute;
  left: 0;
}

.s-header__menu-toggle span::before {
  top: -10px;
}

.s-header__menu-toggle span::after {
  bottom: -10px;
}

.s-header__menu-toggle.is-clicked span {
  background-color: rgba(255, 255, 255, 0);
  transition: all 0.1s;
}

.s-header__menu-toggle.is-clicked span::before,
.s-header__menu-toggle.is-clicked span::after {
  background-color: white;
}

.s-header__menu-toggle.is-clicked span::before {
  top: 0;
  transform: rotate(135deg);
}

.s-header__menu-toggle.is-clicked span::after {
  bottom: 0;
  transform: rotate(225deg);
}

/* -------[ HEADER RESPONSIVE ]------- */
@media screen and (max-width: 900px) {
  .s-header {
    --header-height: 80px;
    top: 0;
  }

  .s-header.sticky {
    box-shadow: none;
    border: none;
  }

  .s-header__inner {
    width: 100%;
    margin: 0;
    padding: 0;
    border: none;
    box-shadow: none;
  }

  .s-header__block {
    width: 100%;
    height: var(--header-height);
    box-shadow: var(--box-shadow);
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  }

  .s-header__logo {
    position: absolute;
    left: calc(var(--gutter) * 2);
    top: 50%;
    transform: translate(0, -50%);
  }

  .s-header__nav {
    display: block;
    width: 100%;
    transform: scaleY(0);
    transform-origin: center top;
    background-color: var(--color-3);
    box-shadow: var(--box-shadow-2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: calc(var(--header-height) + var(--vspace-1_25));
    padding-right: calc(var(--gutter) * 2);
    padding-left: calc(var(--gutter) * 2);
    padding-bottom: var(--vspace-1_5);
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
  }

  .s-header__menu-links {
    margin: 0;
    transform: translateY(-2rem);
    opacity: 0;
    visibility: hidden;
  }

  .s-header__menu-links a {
    font-size: var(--text-size);
    padding: var(--vspace-0_25) 0;
  }

  .s-header__menu-links {
    display: block;
  }

  .s-header__menu-toggle {
    display: block;
  }

  .menu-is-open .s-header {
    height: auto;
  }

  .menu-is-open .s-header__block {
    box-shadow: none;
  }

  .menu-is-open .s-header__nav {
    transform: scaleY(1);
    transition: transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-delay: 0s;
  }

  .menu-is-open .s-header__menu-links {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-delay: 0.3s;
  }
}

@media screen and (max-width: 600px) {
  .s-header__logo {
    left: calc(var(--gutter) * 2 + 2vw);
  }

  .s-header__menu-toggle {
    right: calc(var(--gutter) * 2 + 0.4rem);
  }

  .s-header__nav {
    padding-left: calc(var(--gutter) * 2 + 2.2vw);
    padding-right: calc(var(--gutter) * 2 + 2vw);
  }
}

@media screen and (max-width: 400px) {
  .s-header__menu-toggle {
    right: calc(var(--gutter) * 2);
  }
}

/* -------[ HOME: INTRO SECTION ]------- */

.s-intro {
  --content-padding-top: max(20rem, 18vh);
  --content-padding-bottom: 8rem;
  --content-min-height: calc(var(--vspace-1) * 27);
  z-index: 2;
  background-color: var(--color-gray-10);
  width: 100%;
  height: max(var(--content-min-height), 100vh);
  overflow: hidden;
  position: relative;
}

.s-intro__content {
  z-index: 2;
  align-items: flex-end;
  height: 100%;
  padding-top: var(--content-padding-top);
  padding-bottom: var(--content-padding-bottom);
  position: relative;
}

.s-intro__content-text {
  z-index: 2;
  grid-column: 1 / span 8;
  margin-top: var(--vspace-1);
}

.s-intro__content-pretitle {
  font-weight: 600;
  margin-bottom: var(--vspace-0_125);
  color: var(--color-1);
}

.s-intro__content-title {
  font-size: clamp(3.8rem, 4.8vw, 8.8rem);
  line-height: 1.045;
  letter-spacing: -0.025em;
  margin-top: 0;
  margin-bottom: 12px;
  font-family: var(--font-1-1);
}

.signature {
  font-family: "Cedarville Cursive", cursive;
  font-size: clamp(2.5rem, 3vw, 3.5rem);
  font-weight: 700;
  color: #ef233c;
  margin: 0;
  padding: 0;
  line-height: 1;
  display: inline-block;
  white-space: nowrap;
  clip-path: inset(0 100% 0 0);
  user-select: none;
  cursor: default;
}

.signature.animate {
  animation-name: writeSign;
  animation-duration: 4.5s;
  animation-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
  animation-fill-mode: forwards;
}

@keyframes writeSign {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  65% {
    clip-path: inset(0 20% 0 0);
  }
  85% {
    clip-path: inset(0 8% 0 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}

.s-intro__content-btns {
  --color-btn: var(--color-text-dark);
  --color-btn-text: var(--color-white);
  --color-btn-hover: var(--color-1);
  --color-btn-hover-text: var(--color-white);
  margin-top: var(--vspace-2);
}

.s-intro__content-btns .btn {
  margin-right: var(--vspace-0_375);
}

.s-intro__content-btns .btn:last-child {
  margin-right: 0;
}

.s-intro__content-media {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 50%;
}

.s-intro__content-media::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  pointer-events: none;
}

.s-intro__content-media::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgb(0, 0, 0) 15%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
  opacity: 0.3;
}

.s-intro__content-media img {
  z-index: 2;
  object-fit: cover;
  vertical-align: bottom;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  user-select: none;
}

.s-intro__btn-download {
  --color-btn-stroke: white;
  --color-btn-stroke-text: white;
  --color-btn-stroke-hover: white;
  --color-btn-stroke-hover-text: var(--color-text-dark);
  --hline-width: min(16rem, 8vw);
  z-index: 2;
  position: absolute;
  bottom: var(--content-padding-bottom);
  left: calc(50% + var(--hline-width) / 2);
}

.s-intro__btn-download .btn--stroke {
  position: relative;
}

.s-intro__btn-download .btn--stroke::before {
  content: "";
  display: block;
  height: 2px;
  width: var(--hline-width);
  background-color: white;
  position: absolute;
  top: calc(50% - 2px);
  left: calc(var(--hline-width) * -1);
}

.s-intro__social {
  z-index: 2;
  display: block;
  position: absolute;
  bottom: calc(var(--vspace-2) + var(--vspace-1_75) + 12rem);
  right: calc(var(--gutter) + var(--vspace-1_25));
}

.s-intro__social li {
  padding-right: 0;
  margin-right: 0;
  margin-bottom: var(--vspace-0_625);
}

.s-intro__social svg {
  height: var(--vspace-0_75);
  width: var(--vspace-0_75);
}

.s-intro__social svg path {
  fill: rgb(255, 255, 255);
}

.s-intro__scroll-down {
  --line-length: 8rem;
  z-index: 2;
  position: absolute;
  bottom: var(--vspace-2);
  right: calc(var(--gutter) + var(--vspace-0_75));
}

.s-intro__scroll-down::before {
  content: "";
  display: block;
  height: var(--line-length);
  width: 1px;
  background-color: rgba(255, 255, 255, 0.5);
  position: absolute;
  top: calc(var(--line-length) * -1 - var(--vspace-1));
  left: 50%;
}

.s-intro__scroll-down a {
  display: inline-flex;
  align-items: center;
  color: var(--color-3);
}

.s-intro__scroll-down span {
  display: block;
  font-family: var(--font-1);
  font-size: var(--text-size);
  font-weight: 300;
  line-height: var(--vspace-2);
}

.s-intro__scroll-down .scroll-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  height: var(--vspace-1_75);
  width: var(--vspace-1_75);
  border-radius: 50%;
  border: 2px solid white;
}

.s-intro__scroll-down svg {
  height: calc(0.3 * var(--space));
  width: calc(0.3 * var(--space));
}

.s-intro__scroll-down svg path {
  fill: white;
}

/* -------[ INTRO ANIMATIONS ]------- */
.s-header__inner,
.s-intro__content-media,
.s-intro__content-title,
.s-intro__content-pretitle,
.s-intro__content-btns,
.s-intro__btn-download,
.s-intro__social,
.s-intro__scroll-down {
  transition-timing-function: cubic-bezier(0.28, 0.12, 0.22, 1);
  transition-duration: 0.6s;
  transition-delay: 0s;
  opacity: 0;
}

.s-header__inner,
.s-intro__content-media,
.s-intro__social,
.s-intro__scroll-down {
  transition-property: opacity;
}

.s-intro__content-pretitle {
  transition-property: opacity, transform;
  transform: translate(0.2em, 150px);
}

.s-intro__content-title,
.s-intro__content-btns {
  transition-property: opacity, transform;
  transform: translateY(150px);
}

.s-intro__btn-download {
  transition-property: opacity, transform;
  transform: translateX(-150px);
}

.no-js .s-header__inner,
.no-js .s-intro__content-media,
.no-js .s-intro__social,
.no-js .s-intro__scroll-down,
.ss-show .s-header__inner,
.ss-show .s-intro__content-media,
.ss-show .s-intro__social,
.ss-show .s-intro__scroll-down {
  opacity: 1;
}

.no-js .s-intro__content-pretitle,
.ss-show .s-intro__content-pretitle {
  opacity: 1;
  transform: translate(0.2em, 0);
}

.no-js .s-intro__content-title,
.no-js .s-intro__content-btns,
.ss-show .s-intro__content-title,
.ss-show .s-intro__content-btns {
  opacity: 1;
  transform: translateY(0);
}

.no-js .s-intro__btn-download,
.ss-show .s-intro__btn-download {
  opacity: 1;
  transform: translateX(0);
}

.no-js .s-intro__content-media img,
.ss-show .s-intro__content-media img {
  transition-delay: 0.15s;
}

.no-js .s-intro__content-pretitle,
.ss-show .s-intro__content-pretitle {
  transition-delay: 0.3s;
}

.no-js .s-intro__content-title,
.ss-show .s-intro__content-title {
  transition-delay: 0.45s;
}

.no-js .s-intro__content-btns,
.ss-show .s-intro__content-btns {
  transition-delay: 0.6s;
}

.no-js .s-intro__btn-download,
.ss-show .s-intro__btn-download {
  transition-delay: 0.75s;
}

.no-js .s-intro__social,
.no-js .s-intro__scroll-down,
.ss-show .s-intro__social,
.ss-show .s-intro__scroll-down {
  transition-delay: 1.2s;
}

.no-js .s-header__inner,
.ss-show .s-header__inner {
  transition-delay: 1.5s;
}

/* -------[ INTRO RESPONSIVE ]------- */
@media (min-width: 1399px) and (max-width: 1585px) {
  .s-intro__content-title {
    font-size: clamp(4.5rem, 5vw, 6.5rem);
  }
}

@media screen and (max-width: 1400px) {
  .s-intro__content-pretitle {
    font-size: var(--text-sm);
    line-height: var(--vspace-0_75);
  }

  .s-intro__content-title {
    font-size: clamp(4rem, 4.5vw, 5.75rem);
  }

  .s-intro__social {
    right: calc(var(--gutter) + var(--vspace-0_5));
  }

  .s-intro__scroll-down {
    right: var(--gutter);
  }
}

@media screen and (max-width: 1200px) {
  .s-intro__content-btns {
    padding-right: min(2rem, 2vw);
  }

  .s-intro__content-btns .btn {
    width: 100%;
    margin-right: 0;
  }

  .s-intro__btn-download {
    --hline-width: min(4rem, 4vw);
    left: calc(50% + var(--hline-width) - 2px);
  }
}

@media screen and (max-width: 1080px) {
  .s-intro {
    --content-padding-top: max(12rem, 16vh);
    --content-padding-bottom: 9.6rem;
  }

  .s-intro__content {
    padding-bottom: var(--vspace-0_75);
    align-items: center;
  }

  .s-intro__content-text {
    grid-column: 1/-1;
    text-align: center;
    max-width: 70vw;
    margin: 0 auto;
  }

  .s-intro__content-title {
    font-size: clamp(4.2rem, 8.2vw, 8.8rem);
    color: white;
  }

  .s-intro__content-title br {
    display: none;
  }

  .s-intro__content-btns {
    --color-btn: white;
    --color-btn-text: var(--color-text-dark);
    --color-btn-hover: var(--color-1);
    --color-btn-hover-text: white;
    --color-btn-stroke: white;
    --color-btn-stroke-text: white;
    --color-btn-stroke-hover: white;
    --color-btn-stroke-hover-text: var(--color-text-dark);
    padding-right: 0;
    max-width: 400px;
    margin: var(--vspace-1) auto 0;
  }

  .s-intro__content-btns .btn {
    margin-right: 0;
  }

  .s-intro__content-media {
    left: 0;
  }

  .s-intro__content-media::before {
    opacity: 0.2;
  }

  .s-intro__social {
    right: calc(2.4rem + var(--vspace-0_375));
  }

  .s-intro__social svg {
    height: var(--vspace-0_625);
    width: var(--vspace-0_625);
  }

  .s-intro__btn-download {
    --hline-width: 8vw;
    left: var(--hline-width);
    bottom: var(--vspace-0_75);
  }

  .s-intro__btn-download .btn--stroke {
    --btn-height: var(--vspace-1_25);
    background: transparent !important;
    border: 2px solid transparent;
    padding: 0 2.4rem;
  }

  .s-intro__btn-download .btn--stroke::before {
    height: 1px;
    opacity: 0.5;
    top: calc(50% - 1px);
  }

  .s-intro__btn-download .btn--stroke::after {
    content: "";
    display: block;
    background-color: var(--color-1);
    height: 2px;
    width: 0;
    bottom: 0;
    left: 2rem;
    transition: width 0.2s ease-in-out;
  }

  .s-intro__btn-download .btn--stroke:hover {
    color: white;
  }

  .s-intro__btn-download .btn--stroke:hover::after {
    width: 100%;
  }

  .s-intro__scroll-down {
    bottom: var(--vspace-1);
    right: 2.4rem;
  }

  .s-intro__scroll-down .scroll-icon {
    height: var(--vspace-1_5);
    width: var(--vspace-1_5);
  }
}

@media screen and (max-width: 600px) {
  .s-intro__content-text {
    max-width: 80vw;
  }

  .s-intro__social {
    display: none;
  }

  .s-intro__scroll-down {
    bottom: var(--vspace-1_25);
  }

  .s-intro__scroll-down::before {
    display: none;
  }
}

@media screen and (max-width: 400px) {
  .s-intro {
    --content-padding-top: max(10rem, 10vh);
  }
}

/* -------[ HOME: DOWNLOAD MODAL ]------- */

.download-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 9999;
}

.download-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.download-modal {
  position: relative;
  width: 100%;
  max-width: 520px;
  background: #ffffff;
  padding: clamp(24px, 4vw, 40px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.download-modal.falling {
  animation: fallDown 0.4s ease-out forwards;
}

@keyframes fallDown {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0.95);
    opacity: 0;
  }
}

.download-overlay.closing {
  pointer-events: none;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  font-size: 18px;
  cursor: pointer;
}

.modal-close:hover {
  background: #ef233c;
  color: #ffffff;
}

.modal-section {
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.modal-section.hidden {
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
}

.download-question {
  font-size: clamp(1.5rem, 2.8vw, 1.9rem);
  font-weight: 600;
  margin-bottom: 22px;
  user-select: none;
}

.download-input {
  width: 100%;
  border: none;
  border-bottom: 2px solid #ccc;
  padding: 12px 4px;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.25s ease;
}

.download-input::placeholder {
  font-size: 1.3rem !important;
  color: #999999;
}

.download-input:focus {
  border-color: #111;
}

.download-input.error {
  border-color: #ef233c;
}

.input-alert {
  font-size: 1.3rem;
  color: #ef233c;
  display: none;
}

.input-alert.active {
  display: block;
}

.download-actions {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}

.btn-skip,
.btn-download {
  flex: 1;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 1.3rem;
  cursor: pointer;
  border: none;
  transition: background-color 0.25s ease, color 0.25s ease,
    box-shadow 0.25s ease;
  user-select: none;
}

.btn-skip {
  background: #ffffff;
  border: 2px solid #000000;
  color: #000000;
}

.btn-skip:hover,
.btn-skip:focus-visible {
  background: #000000;
  color: #ffffff;
  border: 2px solid #000000;
}

.btn-download {
  background: #000000;
  color: #ffffff;
}

.btn-download:hover,
.btn-download:focus-visible {
  background: #ef233c;
  color: #ffffff;
}

.btn-skip:focus-visible,
.btn-download:focus-visible {
  outline-offset: 3px;
}

.btn-skip:focus:not(:focus-visible),
.btn-download:focus:not(:focus-visible) {
  outline: none;
}

.download-progress {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.download-progress.active {
  opacity: 1;
}

.rk-download-count {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.4px;
  color: #8b8b8b;
  white-space: nowrap;
  opacity: 0;
  animation: rkDcFadeIn 0.8s ease forwards;
  animation-delay: 0.4s;
  pointer-events: none;
}

.rk-dc-number {
  font-weight: 600;
  color: #ef233c;
  min-width: 14px;
  text-align: center;
  user-select: none;
  animation: rkDcPulse 2s ease-in-out infinite;
  display: inline-block;
  transform-origin: center;
}

@keyframes rkDcPulse {
  0%,
  100% {
    transform: scale(1);
    color: #ef233c;
    filter: drop-shadow(0 0 0px rgba(239, 35, 60, 0));
  }
  15% {
    transform: scale(1.15);
    color: #ff0a28;
  }
  30% {
    transform: scale(0.95) rotate(-2deg);
    color: #ef233c;
    filter: drop-shadow(0 0 8px rgba(239, 35, 60, 0.6));
  }
  45% {
    transform: scale(1.2) rotate(2deg);
    color: #ff1a3d;
    filter: drop-shadow(0 0 12px rgba(239, 35, 60, 0.8));
  }
  60% {
    transform: scale(0.98);
    color: #ef233c;
    filter: drop-shadow(0 0 6px rgba(239, 35, 60, 0.5));
  }
  75% {
    transform: scale(1.05);
    color: #ff0a28;
    filter: drop-shadow(0 0 4px rgba(239, 35, 60, 0.3));
  }
}

@keyframes rkDcFadeIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.loader {
  position: absolute;
  top: 50%;
  margin-left: -50px;
  left: 50%;
  animation: speeder 0.4s linear infinite;
}

.loader > span {
  height: 5px;
  width: 35px;
  background: #000;
  position: absolute;
  top: -19px;
  left: 60px;
  border-radius: 2px 10px 1px 0;
}

.base span {
  position: absolute;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-right: 100px solid #000;
  border-bottom: 6px solid transparent;
}

.base span:before {
  content: "";
  height: 22px;
  width: 22px;
  border-radius: 50%;
  background: #000;
  position: absolute;
  right: -110px;
  top: -16px;
}

.base span:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-top: 0 solid transparent;
  border-right: 55px solid #000;
  border-bottom: 16px solid transparent;
  top: -16px;
  right: -98px;
}

.face {
  position: absolute;
  height: 12px;
  width: 20px;
  background: #000;
  border-radius: 20px 20px 0 0;
  transform: rotate(-40deg);
  right: -125px;
  top: -15px;
}

.face:after {
  content: "";
  height: 12px;
  width: 12px;
  background: #000;
  right: 4px;
  top: 7px;
  position: absolute;
  transform: rotate(40deg);
  transform-origin: 50% 50%;
  border-radius: 0 0 0 2px;
}

.loader > span > span:nth-child(1),
.loader > span > span:nth-child(2),
.loader > span > span:nth-child(3),
.loader > span > span:nth-child(4) {
  width: 30px;
  height: 1px;
  background: #000;
  position: absolute;
  animation: fazer1 0.2s linear infinite;
}

.loader > span > span:nth-child(2) {
  top: 3px;
  animation: fazer2 0.4s linear infinite;
}

.loader > span > span:nth-child(3) {
  top: 1px;
  animation: fazer3 0.4s linear infinite;
  animation-delay: -1s;
}

.loader > span > span:nth-child(4) {
  top: 4px;
  animation: fazer4 1s linear infinite;
  animation-delay: -1s;
}

@keyframes fazer1 {
  0% {
    left: 0;
  }
  100% {
    left: -80px;
    opacity: 0;
  }
}

@keyframes fazer2 {
  0% {
    left: 0;
  }
  100% {
    left: -100px;
    opacity: 0;
  }
}

@keyframes fazer3 {
  0% {
    left: 0;
  }
  100% {
    left: -50px;
    opacity: 0;
  }
}

@keyframes fazer4 {
  0% {
    left: 0;
  }
  100% {
    left: -150px;
    opacity: 0;
  }
}

@keyframes speeder {
  0% {
    transform: translate(2px, 1px) rotate(0deg);
  }
  10% {
    transform: translate(-1px, -3px) rotate(-1deg);
  }
  20% {
    transform: translate(-2px, 0px) rotate(1deg);
  }
  30% {
    transform: translate(1px, 2px) rotate(0deg);
  }
  40% {
    transform: translate(1px, -1px) rotate(1deg);
  }
  50% {
    transform: translate(-1px, 3px) rotate(-1deg);
  }
  60% {
    transform: translate(-1px, 1px) rotate(0deg);
  }
  70% {
    transform: translate(3px, 1px) rotate(-1deg);
  }
  80% {
    transform: translate(-2px, -1px) rotate(1deg);
  }
  90% {
    transform: translate(2px, 1px) rotate(0deg);
  }
  100% {
    transform: translate(1px, -2px) rotate(-1deg);
  }
}

.longfazers {
  position: absolute;
  width: 100%;
  height: 100%;
}

.longfazers span {
  position: absolute;
  height: 2px;
  width: 20%;
  background: #000;
}

.longfazers span:nth-child(1) {
  top: 20%;
  animation: lf 0.6s linear infinite;
  animation-delay: -5s;
}

.longfazers span:nth-child(2) {
  top: 40%;
  animation: lf2 0.8s linear infinite;
  animation-delay: -1s;
}

.longfazers span:nth-child(3) {
  top: 60%;
  animation: lf3 0.6s linear infinite;
}

.longfazers span:nth-child(4) {
  top: 80%;
  animation: lf4 0.5s linear infinite;
  animation-delay: -3s;
}

@keyframes lf {
  0% {
    left: 200%;
  }
  100% {
    left: -200%;
    opacity: 0;
  }
}

@keyframes lf2 {
  0% {
    left: 200%;
  }
  100% {
    left: -200%;
    opacity: 0;
  }
}

@keyframes lf3 {
  0% {
    left: 200%;
  }
  100% {
    left: -100%;
    opacity: 0;
  }
}

@keyframes lf4 {
  0% {
    left: 200%;
  }
  100% {
    left: -100%;
    opacity: 0;
  }
}

#downloadProgress::after {
  content: "Compiling… Now! Look at the right top corner!";
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.3rem;
  font-weight: 600;
  color: #111;
  text-align: center;
  opacity: 0.9;
  pointer-events: none;
  white-space: nowrap;
}

/* -------[ DOWNLOAD MODAL RESPONSIVE ]------- */
@media (max-width: 768px) {
  .download-modal {
    padding: 32px 24px;
    max-width: 480px;
  }

  .download-question {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .download-overlay {
    padding: 12px;
  }

  .download-modal {
    padding: 28px 20px;
    max-width: 100%;
  }

  .download-question {
    font-size: 1.4rem;
    margin-bottom: 18px;
  }

  .download-input {
    font-size: 16px;
    padding: 10px 4px;
  }

  .download-input::placeholder {
    font-size: 1rem !important;
  }

  .download-actions {
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
  }

  .btn-skip,
  .btn-download {
    width: 100%;
    font-size: 0.8rem;
    min-height: 46px;
  }

  .rk-download-count {
    font-size: 12px;
    bottom: 12px;
  }

  .modal-close {
    top: 12px;
    right: 12px;
  }
}

@media (max-width: 360px) {
  .download-modal {
    padding: 24px 16px;
  }

  .download-question {
    font-size: 1.25rem;
    margin-bottom: 16px;
  }

  .download-input {
    font-size: 15px;
  }

  .modal-close {
    width: 28px;
    height: 28px;
    font-size: 16px;
    top: 10px;
    right: 10px;
  }

  .btn-skip,
  .btn-download {
    font-size: 0.75rem;
    min-height: 44px;
    padding: 10px 20px;
  }
}

@media (max-height: 500px) and (orientation: landscape) {
  .download-modal {
    max-height: 90vh;
    overflow-y: auto;
    padding: 20px;
  }

  .download-question {
    font-size: 1.3rem;
    margin-bottom: 12px;
  }

  .download-actions {
    margin-top: 20px;
    gap: 10px;
  }

  .btn-skip,
  .btn-download {
    min-height: 42px;
  }
}

@media (min-width: 1441px) {
  .download-modal {
    max-width: 580px;
    padding: 44px;
  }

  .download-question {
    font-size: 2rem;
  }
}

/* -------[ HOME: GOOGLE MEET SECTION ]------- */

.uniq-meet-section {
  width: 100%;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  padding: 60px 20px;
  position: relative;
  min-height: 400px;
}

.uniq-meet-section::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    to right,
    #4285f4 0%,
    #4285f4 16.66%,
    #ea4335 16.66%,
    #ea4335 33.33%,
    #fbbc05 33.33%,
    #fbbc05 50%,
    #4285f4 50%,
    #4285f4 66.66%,
    #34a853 66.66%,
    #34a853 83.33%,
    #ea4335 83.33%,
    #ea4335 100%
  );
}

.uniq-meet-inner {
  width: 100%;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.uniq-meet-logo {
  width: 100%;
  max-width: 450px;
  height: auto;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
  -moz-user-select: none;
  -ms-user-select: none;
  pointer-events: none;
  flex: 1 1 auto;
}

.uniq-meet-content {
  flex: 0 0 auto;
  min-width: 0;
  display: none;
}

.uniq-meet-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  max-width: 280px !important;
  height: 48px;
  border: none;
  border-radius: 24px;
  background-color: #1a73e8;
  color: #ffffff;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  font-family: "Google Sans", "Product Sans", Arial, sans-serif;
  letter-spacing: 0.25px;
  box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.3),
    0 1px 3px 1px rgba(60, 64, 67, 0.15);
  cursor: pointer;
  transition: background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  flex: 1 1 auto;
  max-width: 450px;
  transform: translateX(-120px);
}

.uniq-meet-icon {
  filter: brightness(0) invert(1);
  height: 18px !important;
  width: 28px !important;
  margin: 0;
  flex-shrink: 0;
  user-select: none;
}

.uniq-meet-cta:hover {
  background-color: #1765cc;
  box-shadow: 0 1px 3px 0 rgba(60, 64, 67, 0.3),
    0 4px 8px 3px rgba(60, 64, 67, 0.15);
  color: #ffffff;
}

.uniq-meet-cta:active {
  background-color: #1558b0;
  box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.3),
    0 1px 3px 1px rgba(60, 64, 67, 0.15);
}

.uniq-meet-cta:focus {
  outline: none;
  box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.3),
    0 1px 3px 1px rgba(60, 64, 67, 0.15), 0 0 0 4px rgba(26, 115, 232, 0.24);
  color: #ffffff;
}

/* -------[ GOOGLE MEET MODAL OVERLAY  ]------- */
.gmeet-card-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 9999;
}

.gmeet-card-overlay.gmeet-active {
  opacity: 1;
  pointer-events: auto;
}

.gmeet-card-box {
  position: relative;
  width: 100%;
  max-width: 520px;
  background: #ffffff;
  padding: 40px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.gmeet-card-box.gmeet-falling {
  animation: gmeetFallDown 0.4s ease-out forwards;
}

@keyframes gmeetFallDown {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0.95);
    opacity: 0;
  }
}

.gmeet-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: auto;
  height: auto;
  background: transparent;
  border: none;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  color: #5f6368;
  z-index: 10;
  user-select: none;
}

.gmeet-close-btn:hover {
  background: #ef233c;
  color: #ffffff;
}

.gmeet-card-header {
  text-align: left;
  margin-bottom: 32px;
}

.gmeet-card-title {
  font-size: 2rem;
  font-weight: 600;
  margin: 0 0 8px 0;
  color: #111;
  line-height: 1.2;
}

.gmeet-card-subtitle {
  font-size: 1.2rem;
  font-weight: 400;
  margin: 0;
  color: #5f6368;
  line-height: 1.4;
}

.gmeet-card-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.gmeet-schedule-btn,
.gmeet-join-btn {
  width: 100%;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 1.3rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  text-decoration: none;
  box-sizing: border-box;
  white-space: nowrap;
  padding: 0 12px;
  border-radius: 0;
}

.gmeet-schedule-btn {
  background: #ffffff;
  border: 2px solid #000000;
  color: #000000;
}

.gmeet-schedule-btn:hover,
.gmeet-schedule-btn:focus {
  background: #000000;
  color: #ffffff;
  border: 2px solid #000000;
}

.gmeet-join-btn {
  background: #000000;
  color: #ffffff;
  border: 2px solid #000000;
}

.gmeet-join-btn:hover,
.gmeet-join-btn:focus {
  background: #ef233c;
  color: #ffffff;
  border-color: #ef233c;
}

/* -------[ RESPONSIVE ]------- */
@media (max-width: 768px) {
  .gmeet-card-box {
    padding: 32px 24px;
    max-width: 480px;
  }

  .gmeet-card-title {
    font-size: 1.6rem;
  }

  .gmeet-card-subtitle {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .gmeet-card-overlay {
    padding: 12px;
  }

  .gmeet-card-box {
    padding: 28px 20px;
    max-width: 100%;
  }

  .gmeet-card-title {
    font-size: 1.4rem;
  }

  .gmeet-card-subtitle {
    font-size: 1rem;
  }

  .gmeet-card-header {
    margin-bottom: 24px;
  }

  .gmeet-card-buttons {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .gmeet-schedule-btn,
  .gmeet-join-btn {
    font-size: 0.8rem;
    min-height: 48px;
  }

  .gmeet-close-btn {
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 360px) {
  .gmeet-card-box {
    padding: 24px 16px;
  }

  .gmeet-card-title {
    font-size: 1.25rem;
  }

  .gmeet-card-subtitle {
    font-size: 0.95rem;
  }

  .gmeet-schedule-btn,
  .gmeet-join-btn {
    font-size: 0.75rem;
    min-height: 46px;
  }
}

@media (max-height: 500px) and (orientation: landscape) {
  .gmeet-card-box {
    max-height: 90vh;
    overflow-y: auto;
    padding: 20px;
  }

  .gmeet-card-title {
    font-size: 1.3rem;
  }

  .gmeet-card-subtitle {
    font-size: 1rem;
  }

  .gmeet-card-header {
    margin-bottom: 20px;
  }

  .gmeet-card-buttons {
    gap: 10px;
  }

  .gmeet-schedule-btn,
  .gmeet-join-btn {
    min-height: 44px;
  }
}

@media (min-width: 1441px) {
  .gmeet-card-box {
    max-width: 580px;
    padding: 48px;
  }

  .gmeet-card-title {
    font-size: 2rem;
  }

  .gmeet-card-subtitle {
    font-size: 1.3rem;
  }
}
/* -------[ GOOGLE MEET MODAL OVERLAY ]------- */

/* -------[ GOOGLE MEET RESPONSIVE ]------- */
@media (min-width: 1400px) {
  .uniq-meet-section {
    padding: 80px 40px;
    min-height: 500px;
  }

  .uniq-meet-inner {
    gap: 80px;
    max-width: 1400px;
  }

  .uniq-meet-logo {
    max-width: 550px;
  }

  .uniq-meet-cta {
    font-size: 15px;
    height: 52px;
    padding: 0 28px;
  }

  .uniq-meet-icon {
    height: 20px;
    width: 20px;
  }

  .uniq-meet-section::after {
    height: 5px;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .uniq-meet-section {
    padding: 70px 40px;
    min-height: 450px;
  }

  .uniq-meet-inner {
    gap: 70px;
  }

  .uniq-meet-logo {
    max-width: 500px;
  }

  .uniq-meet-cta {
    font-size: 14px;
    height: 50px;
    padding: 0 26px;
  }

  .uniq-meet-icon {
    height: 19px;
    width: 19px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .uniq-meet-section {
    padding: 60px 30px;
    min-height: 420px;
  }

  .uniq-meet-inner {
    gap: 50px;
  }

  .uniq-meet-logo {
    max-width: 420px;
  }

  .uniq-meet-cta {
    font-size: 14px;
    height: 48px;
    padding: 0 24px;
  }

  .uniq-meet-icon {
    height: 18px;
    width: 18px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .uniq-meet-section {
    padding: 50px 24px;
    min-height: 380px;
  }

  .uniq-meet-inner {
    gap: 40px;
  }

  .uniq-meet-logo {
    max-width: 360px;
  }

  .uniq-meet-cta {
    font-size: 14px;
    height: 48px;
    padding: 0 24px;
  }

  .uniq-meet-icon {
    height: 18px;
    width: 18px;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .uniq-meet-section {
    padding: 40px 20px;
    min-height: 340px;
  }

  .uniq-meet-inner {
    flex-direction: column;
    gap: 32px;
  }

  .uniq-meet-logo {
    max-width: 320px;
  }

  .uniq-meet-cta {
    font-size: 14px;
    height: 48px;
    padding: 0 24px;
    transform: translateX(0);
    margin: 0 auto;
  }

  .uniq-meet-icon {
    height: 18px;
    width: 18px;
  }
}

@media (min-width: 480px) and (max-width: 575px) {
  .uniq-meet-section {
    padding: 36px 20px;
    min-height: 320px;
  }

  .uniq-meet-inner {
    flex-direction: column;
    gap: 28px;
  }

  .uniq-meet-logo {
    max-width: 280px;
  }

  .uniq-meet-cta {
    font-size: 14px;
    height: 48px;
    padding: 0 24px;
    transform: translateX(0);
    margin: 0 auto;
  }

  .uniq-meet-icon {
    height: 18px;
    width: 18px;
  }

  .uniq-meet-section::after {
    height: 3px;
  }
}

@media (min-width: 375px) and (max-width: 479px) {
  .uniq-meet-section {
    padding: 32px 16px;
    min-height: 300px;
  }

  .uniq-meet-inner {
    flex-direction: column;
    gap: 24px;
  }

  .uniq-meet-logo {
    max-width: 240px;
  }

  .uniq-meet-cta {
    font-size: 13px;
    height: 44px;
    padding: 0 20px;
    gap: 10px;
    transform: translateX(0);
    margin: 0 auto;
  }

  .uniq-meet-icon {
    height: 17px;
    width: 17px;
  }

  .uniq-meet-section::after {
    height: 3px;
  }
}

@media (min-width: 320px) and (max-width: 374px) {
  .uniq-meet-section {
    padding: 28px 12px;
    min-height: 280px;
  }

  .uniq-meet-inner {
    flex-direction: column;
    gap: 20px;
  }

  .uniq-meet-logo {
    max-width: 200px;
  }

  .uniq-meet-cta {
    font-size: 13px;
    height: 44px;
    padding: 0 20px;
    gap: 8px;
    transform: translateX(0);
    margin: 0 auto;
  }

  .uniq-meet-icon {
    height: 16px;
    width: 16px;
  }

  .uniq-meet-section::after {
    height: 3px;
  }
}

@media (max-width: 319px) {
  .uniq-meet-section {
    padding: 24px 10px;
    min-height: 260px;
  }

  .uniq-meet-inner {
    flex-direction: column;
    gap: 18px;
  }

  .uniq-meet-logo {
    max-width: 180px;
  }

  .uniq-meet-cta {
    font-size: 12px;
    height: 40px;
    padding: 0 18px;
    gap: 8px;
    transform: translateX(0);
    margin: 0 auto;
  }

  .uniq-meet-icon {
    height: 15px;
    width: 15px;
  }

  .uniq-meet-section::after {
    height: 2px;
  }
}

/* -------[ ABOUT SECTION ]------- */

.s-about {
  padding-top: var(--vspace-7);
  color: var(--color-3);
}

.s-about__blocks {
  margin-top: var(--vspace-3);
}

.s-about__blocks .s-about__block-title {
  margin-top: 0;
  margin-bottom: var(--vspace-1);
  padding-left: 1.45rem;
  position: relative;
}

.s-about__blocks .s-about__block-title::before {
  content: "";
  height: 0.7em;
  width: 3px;
  background-color: var(--color-1);
  transform: translateY(-50%);
  position: absolute;
  left: 0;
  top: 40%;
}

.s-about__list {
  list-style: none;
  font-size: calc(var(--text-size) * 1.05);
  margin-left: 0;
}

.s-about__list a {
  color: var(--color-text);
}

.s-about__list li {
  font-weight: 500;
  margin-bottom: var(--vspace-0_625);
  padding-left: 0;
}

.s-about__list span {
  display: block;
  font-size: var(--text-sm);
  font-weight: 300;
  line-height: 1.2;
  color: var(--color-text-light) !important;
}

.justify_non_mobile {
  text-align: left;
}

@media screen and (width > 767px) {
  .justify_non_mobile {
    text-align: justify;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (max-width: 800px) {
  .s-about {
    padding-top: var(--vspace-5);
  }
}

/* -------[ TOOLS CAROUSEL ]------- */
.logo-carousel-section {
  width: 100%;
  overflow: hidden;
  padding: 50px 0;
  background: #fbfcfb;
}

.logo-carousel-container {
  width: 72%;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.logo-carousel-container::before,
.logo-carousel-container::after {
  content: "";
  position: absolute;
  top: 0;
  width: 200px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.logo-carousel-container::before {
  left: 0;
  background: linear-gradient(
    to right,
    #fbfcfb 0%,
    #fbfcfb 20%,
    rgba(251, 252, 251, 0.8) 50%,
    transparent 100%
  );
}

.logo-carousel-container::after {
  right: 0;
  background: linear-gradient(
    to left,
    #fbfcfb 0%,
    #fbfcfb 20%,
    rgba(251, 252, 251, 0.8) 50%,
    transparent 100%
  );
}

.logo-carousel-track {
  display: flex;
  gap: 80px;
  width: fit-content;
  will-change: transform;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  cursor: grab;
}

.logo-carousel-track:active {
  cursor: grabbing;
}

.logo-v1 {
  flex-shrink: 0;
  width: 140px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.logo-v1 img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: all 0.4s ease;
  filter: grayscale(0%) brightness(1) contrast(1.05);
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.logo-v1:hover img {
  filter: grayscale(0%) brightness(0.3) contrast(1.3) !important;
}

/* -------[ TOOLS CAROUSEL RESPONSIVE ]------- */
@media (max-width: 1400px) {
  .logo-carousel-container {
    width: 75%;
  }
}

@media (max-width: 1200px) {
  .logo-carousel-container {
    width: 80%;
  }

  .logo-carousel-track {
    gap: 70px;
  }

  .logo-v1 {
    width: 120px;
    height: 80px;
  }

  .logo-carousel-container::before,
  .logo-carousel-container::after {
    width: 180px;
  }
}

@media (max-width: 1024px) {
  .logo-carousel-section {
    padding: 60px 0;
  }

  .logo-carousel-container {
    width: 85%;
  }

  .logo-carousel-track {
    gap: 60px;
  }

  .logo-v1 {
    width: 110px;
    height: 75px;
  }

  .logo-carousel-container::before,
  .logo-carousel-container::after {
    width: 150px;
  }
}

@media (max-width: 768px) {
  .logo-carousel-section {
    padding: 50px 0;
  }

  .logo-carousel-container {
    width: 90%;
  }

  .logo-carousel-track {
    gap: 50px;
  }

  .logo-v1 {
    width: 90px;
    height: 65px;
  }

  .logo-carousel-container::before,
  .logo-carousel-container::after {
    width: 120px;
  }
}

@media (max-width: 480px) {
  .logo-carousel-section {
    padding: 40px 0;
  }

  .logo-carousel-container {
    width: 95%;
  }

  .logo-carousel-track {
    gap: 40px;
  }

  .logo-v1 {
    width: 75px;
    height: 55px;
  }

  .logo-carousel-container::before,
  .logo-carousel-container::after {
    width: 100px;
  }
}

/* -------[ PORTFOLIO SECTION ]------- */

.portfolio-section {
  background-image: linear-gradient(to right, #eceeec 50%, #b3c2c1 50%);
}

.red-vertical-bar {
  color: #ef233c;
  font-size: 50px;
  display: inline-block;
  position: relative;
  transform: translateY(-15%);
  font-weight: 900;
  user-select: none;
}

@media (max-width: 1599px) {
  .red-vertical-bar {
    font-size: 46px;
    transform: translateY(-14%);
  }
}

@media (max-width: 1199px) {
  .red-vertical-bar {
    font-size: 40px;
    transform: translateY(-13%);
  }
}

@media (max-width: 991px) {
  .red-vertical-bar {
    font-size: 38px;
    transform: translateY(-12%);
  }
}

@media (max-width: 767px) {
  .red-vertical-bar {
    font-size: 40px;
    transform: translateY(-10%);
  }
  .portfolio-section {
    background-image: none;
    background-color: #eceeec;
  }
}

@media (max-width: 575px) {
  .red-vertical-bar {
    font-size: 32px;
    transform: translateY(-8%);
  }
}

.card-gallery {
  padding: 80px 0;
  background: linear-gradient(to right, #eceeec 50%, #b3c2c1 50%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -80px;
}

.card-gallery__container {
  width: 65%;
  max-width: 1400px;
  margin: 0 auto;
}

.card-gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

/* -------[ CARD ANIMATIONS ]------- */
.card-gallery__item {
  opacity: 0;
  filter: blur(5px);
  transform: translateY(40px);
  transition: opacity 1s ease, filter 1s ease, transform 1s ease;
}

.card-gallery__item.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

/* -------[ CARD STRUCTURE ]------- */
.card-gallery__card {
  position: relative;
  width: 100%;
  aspect-ratio: 2100 / 1400;
  overflow: hidden;
  background: #000;
  cursor: default;
}

.card-gallery__image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.card-gallery__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease;
  user-select: none;
}

.card-gallery__title,
.card-gallery__label {
  user-select: text;
  pointer-events: auto;
}

.card-gallery__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0) 70%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 1;
}

.card-gallery__content {
  width: 100%;
  height: 100%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

/* -------[ CARD HEADER ]------- */
.card-gallery__header {
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity 0.6s ease;
}

.card-gallery__label {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  margin-bottom: 5px;
  user-select: text;
}

.card-gallery__title {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
  user-select: text;
}

/* -------[ CARD FOOTER ]------- */
.card-gallery__link {
  display: inline-block;
  color: #ffffff;
  background: #ef233c;
  padding: 3px 15px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  transform: translateX(-150%);
  opacity: 0;
  transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity 0.6s ease;
  pointer-events: auto;
}

.card-gallery__link-line {
  position: absolute;
  left: -40px;
  top: 50%;
  transform: translateY(-50%);
  height: 2px;
  background: #ef233c;
  width: 0px;
  transition: width 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.card-gallery__link {
  transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity 0.6s ease, background-color 0.3s linear, color 0.3s linear;
}

.card-gallery__link-line {
  transition: width 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
    background-color 0.3s linear;
}

.card-gallery__link:hover {
  background: #ffffff;
  color: #000000;
}

.card-gallery__card:has(.card-gallery__link:hover) .card-gallery__link-line {
  background: #ffffff;
}
/* -------[ CARD BASE OVERLAY FIX ]------- */
.card-gallery__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.362);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 1;
}

/* Ensure text stays above overlay */
.card-gallery__header,
.card-gallery__link {
  position: relative;
  z-index: 2;
}

/* Optional subtle polish */
.card-gallery__header {
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
}

/* -------[ CARD HOVER EFFECTS ]------- */
@media (hover: hover) and (pointer: fine) {
  /* REMOVED BLUR: Only scale on hover, no blur */
  .card-gallery__card:hover .card-gallery__image {
    transform: scale(1.1);
    filter: blur(0); /* Changed from blur(2px) to blur(0) */
  }

  .card-gallery__card:hover .card-gallery__overlay {
    opacity: 1;
  }

  .card-gallery__card:hover .card-gallery__header {
    transform: translateY(0);
    opacity: 1;
  }

  .card-gallery__card:hover .card-gallery__link {
    transform: translateX(0);
    opacity: 1;
  }

  .card-gallery__card:hover .card-gallery__link-line {
    width: 40px;
  }
}

/* -------[ CARD MOBILE TAP STATE ]------- */
.card-gallery__card.is-active .card-gallery__image {
  transform: scale(1.1);
  filter: blur(0); /* Also removed blur for mobile active state */
}

.card-gallery__card.is-active .card-gallery__overlay {
  opacity: 1;
}

.card-gallery__card.is-active .card-gallery__header {
  transform: translateY(0);
  opacity: 1;
}

.card-gallery__card.is-active .card-gallery__link {
  transform: translateX(0);
  opacity: 1;
}

.card-gallery__card.is-active .card-gallery__link-line {
  width: 40px;
}

/* -------[ PORTFOLIO RESPONSIVE ]------- */
@media screen and (max-width: 1200px) {
  .card-gallery__container {
    width: 75%;
  }

  .card-gallery__content {
    padding: 36px;
  }

  .card-gallery__title {
    font-size: 20px;
  }
}

@media screen and (max-width: 1024px) {
  .card-gallery__container {
    width: 85%;
  }

  .card-gallery__content {
    padding: 32px;
  }

  .card-gallery__title {
    font-size: 19px;
  }
}

@media screen and (max-width: 768px) {
  .card-gallery {
    padding: 60px 0;
    background: #eceeec;
  }

  .card-gallery__grid {
    grid-template-columns: 1fr;
  }

  .card-gallery__container {
    width: 70%;
  }

  .card-gallery__content {
    padding: 28px;
  }

  .card-gallery__title {
    font-size: 18px;
  }

  .card-gallery__label {
    font-size: 11px;
  }

  /* Mobile button size adjustment */
  .card-gallery__link {
    font-size: 12px;
    padding: 3px 15px;
  }
}

@media screen and (max-width: 480px) {
  .card-gallery__container {
    width: 92%;
  }

  .card-gallery__content {
    padding: 22px;
  }

  .card-gallery__title {
    font-size: 16px;
  }

  /* Mobile button size adjustment */
  .card-gallery__link {
    font-size: 11px;
    padding: 0px 12px;
  }
}

@media screen and (max-width: 360px) {
  .card-gallery__content {
    padding: 18px;
  }

  .card-gallery__title {
    font-size: 15px;
  }

  /* Mobile button size adjustment */
  .card-gallery__link {
    font-size: 10px;
    padding: 5px 10px;
  }
}

@media screen and (max-width: 320px) {
  .card-gallery__content {
    padding: 13px;
  }

  .card-gallery__title {
    font-size: 13px;
  }

  /* Mobile button size adjustment */
  .card-gallery__link {
    font-size: 10px;
    padding: 0px 10px;
  }
}

/* -------[ PORTFOLIO MODAL START ]------- */
.project-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease-out, visibility 0.35s ease-out;
}
.project-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.project-modal {
  position: relative;
  width: 95%;
  max-width: min(1400px, calc(100vw - 320px));
  height: 85vh;
  max-height: 850px;
  background: #121212;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: visible;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.6);
  transform: scale(0.95) translateY(20px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    opacity 0.35s ease-out;
}
.project-modal-overlay.active .project-modal {
  transform: scale(1) translateY(0);
  opacity: 1;
}
.project-modal__close {
  position: absolute;
  top: -50px;
  right: clamp(-180px, -12vw, -80px);
  width: 44px;
  height: 44px;
  background: #ffffff !important;
  border: none !important;
  border-radius: 2px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 10px;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.project-modal__close:hover {
  background: #ef233c !important;
  transform: scale(1.05);
}
.project-modal__close svg {
  width: 28px;
  height: 28px;
}
.project-modal__close svg path {
  fill: #000000 !important;
}
.project-modal__close:hover svg path {
  fill: #ffffff !important;
}
.project-modal__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background: #ffffff !important;
  border: none !important;
  border-radius: 2px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 18px;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.project-modal__nav:hover {
  background: #ef233c !important;
  transform: translateY(-50%) scale(1.05);
}
.project-modal__nav:active {
  background: #ef233c !important;
}
.project-modal__nav svg {
  width: 24px;
  height: 24px;
}
.project-modal__nav svg path {
  fill: #000000 !important;
}
.project-modal__nav:hover svg path {
  fill: #ffffff !important;
}
.project-modal__nav--prev {
  left: clamp(-100px, -6vw, -70px);
}
.project-modal__nav--next {
  right: clamp(-100px, -6vw, -70px);
  left: auto;
}
.project-modal__content {
  display: flex;
  height: 100%;
  flex-direction: row;
  overflow: hidden;
}
.project-modal__image-container {
  flex: 1;
  position: relative;
  overflow: hidden;
  background: #0a0a0a;
  min-width: 0;
}
.project-modal__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 0.4s ease-out, transform 0.5s ease-out;
}
.project-modal-overlay.active .project-modal__image {
  opacity: 1;
  transform: scale(1);
}
.project-modal__details {
  flex: 1;
  padding: 60px 50px 60px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #121212;
  position: relative;
  overflow-y: auto;
  min-width: 0;
}
.project-modal__label {
  display: inline-block;
  color: var(--color-1);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.4s ease-out 0.15s, transform 0.4s ease-out 0.15s;
}
.project-modal-overlay.active .project-modal__label {
  opacity: 1;
  transform: translateY(0);
}
.project-modal__title {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 14px;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.4s ease-out 0.2s, transform 0.4s ease-out 0.2s;
}
.project-modal-overlay.active .project-modal__title {
  opacity: 1;
  transform: translateY(0);
}
.project-modal__description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.4s ease-out 0.25s, transform 0.4s ease-out 0.25s;
}
.project-modal-overlay.active .project-modal__description {
  opacity: 1;
  transform: translateY(0);
}
.project-modal__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--color-1);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: none;
  transition: background-color 0.25s ease, transform 0.25s ease;
  opacity: 0;
  transform: translateY(15px);
  width: fit-content;
}
.project-modal-overlay.active .project-modal__link {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s ease-out 0.3s, transform 0.4s ease-out 0.3s,
    background-color 0.25s ease;
}
.project-modal__link:hover {
  background: #ffffff;
  color: black;
}
.project-modal__link:active {
  transform: translateY(0);
}
.project-modal__counter {
  position: absolute;
  bottom: 28px;
  right: 50px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 3px;
  font-family: var(--font-mono);
}
.card-gallery__card {
  cursor: pointer;
}
.card-gallery__card::after {
  content: "";
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.8) rotate(-8deg);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='15 3 21 3 21 9'%3E%3C/polyline%3E%3Cpolyline points='9 21 3 21 3 15'%3E%3C/polyline%3E%3Cline x1='21' y1='3' x2='14' y2='10'%3E%3C/line%3E%3Cline x1='3' y1='21' x2='10' y2='14'%3E%3C/line%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25), 0 2px 4px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}
.card-gallery__card:hover::after {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}
.card-gallery__card::after:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3), 0 4px 8px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* -------[ MODAL LAPTOP RESPONSIVE - 1400px ]------- */
@media screen and (max-width: 1400px) and (min-width: 1001px) {
  .project-modal {
    max-width: min(1100px, calc(100vw - 280px));
  }
  .project-modal__close {
    right: clamp(-120px, -8vw, -70px);
  }
  .project-modal__nav--prev {
    left: clamp(-90px, -5vw, -60px);
  }
  .project-modal__nav--next {
    right: clamp(-90px, -5vw, -60px);
  }
}

/* -------[ MODAL LAPTOP RESPONSIVE - 1200px ]------- */
@media screen and (max-width: 1200px) and (min-width: 1001px) {
  .project-modal {
    max-width: min(900px, calc(100vw - 240px));
  }
  .project-modal__close {
    top: -50px;
    right: clamp(-100px, -6vw, -50px);
    width: 42px;
    height: 42px;
  }
  .project-modal__close svg {
    width: 24px;
    height: 24px;
  }
  .project-modal__nav {
    width: 50px;
    height: 50px;
  }
  .project-modal__nav svg {
    width: 18px;
    height: 18px;
  }
  .project-modal__nav--prev {
    left: clamp(-80px, -5vw, -50px);
  }
  .project-modal__nav--next {
    right: clamp(-80px, -5vw, -50px);
  }
}

/* -------[ MODAL LAPTOP RESPONSIVE - 1100px ]------- */
@media screen and (max-width: 1100px) and (min-width: 1001px) {
  .project-modal {
    max-width: min(800px, calc(100vw - 220px));
    height: 80vh;
  }
  .project-modal__details {
    padding: 32px;
  }
  .project-modal__title {
    font-size: 28px;
  }
  .project-modal__description {
    font-size: 15px;
  }
  .project-modal__close {
    right: clamp(-80px, -5vw, -40px);
  }
  .project-modal__nav--prev {
    left: clamp(-70px, -4vw, -40px);
  }
  .project-modal__nav--next {
    right: clamp(-70px, -4vw, -40px);
  }
}

@media screen and (max-width: 1000px) {
  .project-modal {
    width: 96%;
    max-width: none;
    height: 90vh;
    max-height: none;
  }
  .project-modal__content {
    flex-direction: column;
  }
  .project-modal__image-container {
    flex: none;
    height: 38%;
    min-height: 220px;
  }
  .project-modal__details {
    flex: 1;
    padding: 28px 28px 100px 28px;
    overflow-y: auto;
  }
  .project-modal__nav {
    top: 19%;
    width: 54px;
    height: 54px;
  }
  .project-modal__nav:hover {
    transform: translateY(-50%) scale(1.05);
  }
  .project-modal__nav svg {
    width: 14px;
    height: 20px;
  }
  .project-modal__nav--prev {
    left: 16px;
  }
  .project-modal__nav--next {
    left: auto;
    right: 16px;
  }
  .project-modal__close {
    top: 18px;
    right: 18px;
  }
  .project-modal__close svg {
    width: 26px;
    height: 26px;
  }
  .project-modal__title {
    font-size: 26px;
    margin-bottom: 12px;
  }
  .project-modal__description {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
  }
  .project-modal__counter {
    bottom: 24px;
    right: 28px;
    font-size: 12px;
  }
}
@media screen and (max-width: 600px) {
  .project-modal {
    width: 100%;
    height: 100%;
    max-height: 100%;
  }
  .project-modal__image-container {
    height: 30%;
    min-height: 160px;
  }
  .project-modal__details {
    padding: 24px 20px 120px 20px;
  }
  .project-modal__nav {
    top: auto;
    bottom: 30px;
    width: 60px;
    height: 60px;
  }
  .project-modal__nav svg {
    width: 16px;
    height: 24px;
  }
  .project-modal__nav--prev {
    left: 30px;
    transform: none;
  }
  .project-modal__nav--prev:hover {
    transform: scale(1.05);
  }
  .project-modal__nav--next {
    left: auto;
    right: 30px;
    transform: none;
  }
  .project-modal__nav--next:hover {
    transform: scale(1.05);
  }
  .project-modal__close {
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
  }
  .project-modal__close svg {
    width: 28px;
    height: 28px;
  }
  .project-modal__label {
    font-size: 11px;
    letter-spacing: 1.5px;
    margin-bottom: 4px;
  }
  .project-modal__title {
    font-size: 22px;
    line-height: 1.3;
    margin-bottom: 10px;
  }
  .project-modal__description {
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.65);
  }
  .project-modal__link {
    padding: 14px 24px;
    font-size: 14px;
    width: 100%;
    justify-content: center;
  }
  .project-modal__counter {
    position: absolute;
    bottom: 40px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    font-size: 12px;
  }
  .card-gallery__card::after {
    width: 36px;
    height: 36px;
    top: 12px;
    right: 12px;
    border-radius: 10px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='15 3 21 3 21 9'%3E%3C/polyline%3E%3Cpolyline points='9 21 3 21 3 15'%3E%3C/polyline%3E%3Cline x1='21' y1='3' x2='14' y2='10'%3E%3C/line%3E%3Cline x1='3' y1='21' x2='10' y2='14'%3E%3C/line%3E%3C/svg%3E");
  }
}
@media screen and (max-width: 400px) {
  .project-modal__image-container {
    height: 26%;
    min-height: 140px;
  }
  .project-modal__details {
    padding: 20px 16px 120px 16px;
  }
  .project-modal__title {
    font-size: 20px;
  }
  .project-modal__description {
    font-size: 13px;
    line-height: 1.6;
  }
  .project-modal__nav {
    width: 54px;
    height: 54px;
    bottom: 24px;
  }
  .project-modal__nav svg {
    width: 14px;
    height: 20px;
  }
  .project-modal__nav--prev {
    left: 20px;
  }
  .project-modal__nav--next {
    right: 20px;
  }
  .project-modal__close {
    top: 14px;
    right: 14px;
  }
}
.project-modal__close:focus,
.project-modal__nav:focus,
.project-modal__link:focus {
  outline: 2px solid #fff;
  outline-offset: 2px;
}
.project-modal__close:focus:not(:focus-visible),
.project-modal__nav:focus:not(:focus-visible),
.project-modal__link:focus:not(:focus-visible) {
  outline: none;
}
body.modal-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}
/* -------[ PORTFOLIO MODAL END ]------- */
/* -------[ PORTFOLIO END ]------- */

/* -------[ TIMELINE SECTION ]------- */

.timeline-section {
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}

.devops-timeline-component {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #414141;
  line-height: 1.6;
  padding: 60px 20px;
  position: relative;
  z-index: 1;
}

.devops-timeline-component *,
.devops-timeline-component *::before,
.devops-timeline-component *::after {
  box-sizing: border-box !important;
}

.devops-timeline-component .timeline-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.devops-timeline-component .timeline {
  position: relative;
  padding: 40px 0;
}

/* -------[ ANIMATED TIMELINE VERTICAL LINE ]------- */
.devops-timeline-component .timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(
    to bottom,
    #ef233c 0%,
    #ef233c var(--timeline-progress, 0%),
    rgba(239, 35, 59, 0.4) var(--timeline-progress, 0%),
    rgba(239, 35, 60, 0.4) 100%
  );
  transform: translateX(-50%);
  z-index: 1;
  transition: --timeline-progress 0.3s ease;
}

/* Animated start dot with pulse */
.devops-timeline-component .timeline::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 8px;
  height: 8px;
  background: #ef233c;
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 2;
  box-shadow: 0 0 0 0 rgba(239, 35, 60, 0.7);
  animation: startDotPulse 2s ease-in-out infinite;
}

@keyframes startDotPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(239, 35, 60, 0.7);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(239, 35, 60, 0);
  }
}

/* Animated end marker */
.devops-timeline-component .timeline-end-marker {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 10px;
  height: 10px;
  background: #ef233c;
  border-radius: 50%;
  transform: translateX(-50%) scale(0);
  z-index: 2;
  box-shadow: 0 0 0 0 rgba(239, 35, 60, 0.5);
  animation: endMarkerAppear 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55)
      forwards,
    endMarkerPulse 2.5s ease-in-out 0.6s infinite;
}

@keyframes endMarkerAppear {
  to {
    transform: translateX(-50%) scale(1);
  }
}

@keyframes endMarkerPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(239, 35, 60, 0.5);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(239, 35, 60, 0);
  }
}

/* -------[ ENHANCED TIMELINE ITEMS WITH STAGGER ]------- */
.devops-timeline-component .timeline-item {
  position: relative;
  margin: 0 0 80px 0;
  padding: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  filter: blur(10px);
  transform: translateY(50px);
  transition: opacity 0.8s ease, filter 0.8s ease,
    transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.devops-timeline-component .timeline-item.left {
  justify-content: flex-end;
  padding-right: calc(50% + 60px);
}

.devops-timeline-component .timeline-item.left .timeline-card {
  margin-right: 0;
  border-right: 3px solid #ef233c;
  border-left: none;
  transform-origin: right center;
}

.devops-timeline-component .timeline-item.left .timeline-year {
  left: calc(50% + 30px);
  right: auto;
}

.devops-timeline-component .timeline-item.right {
  justify-content: flex-start;
  padding-left: calc(50% + 60px);
}

.devops-timeline-component .timeline-item.right .timeline-card {
  margin-left: 0;
  border-left: 3px solid #ef233c;
  border-right: none;
  transform-origin: left center;
}

.devops-timeline-component .timeline-item.right .timeline-year {
  right: calc(50% + 30px);
  left: auto;
}

/* -------[ PREMIUM TIMELINE CARD WITH DEPTH ]------- */
.devops-timeline-component .timeline-card {
  position: relative;
  background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
  border: 1px solid #e0e0e084;
  padding: 28px 32px !important;
  margin: 0 !important;
  width: 100%;
  max-width: 580px;
  min-width: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04), 0 4px 16px rgba(0, 0, 0, 0.03);
  overflow: hidden;
}

/* Shine effect on card */
.devops-timeline-component .timeline-card::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.6) 50%,
    transparent 70%
  );
  transform: translateX(-100%) translateY(-100%) rotate(45deg);
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.devops-timeline-component .timeline-card:hover::after {
  transform: translateX(100%) translateY(100%) rotate(45deg);
}

.devops-timeline-component .timeline-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 10px 20px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(239, 35, 60, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  background: linear-gradient(135deg, #ffffff 0%, #fdfdfd 100%);
  border-color: rgba(239, 35, 60, 0.2);
}

/* Enhanced arrow with breathing animation */
.devops-timeline-component .timeline-card::before {
  content: "›";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 35px;
  font-weight: bold;
  color: #ef233c;
  z-index: 5;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  line-height: 1;
  opacity: 0.6;
}

.devops-timeline-component .timeline-item.left .timeline-card::before {
  right: -25px;
  left: auto;
  animation: arrowBreatheRight 3s ease-in-out infinite;
}

.devops-timeline-component .timeline-item.right .timeline-card::before {
  left: -25px;
  right: auto;
  content: "‹";
  animation: arrowBreatheLeft 3s ease-in-out infinite;
}

@keyframes arrowBreatheRight {
  0%,
  100% {
    transform: translateY(-50%) translateX(0);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-50%) translateX(5px);
    opacity: 1;
  }
}

@keyframes arrowBreatheLeft {
  0%,
  100% {
    transform: translateY(-50%) translateX(0);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-50%) translateX(-5px);
    opacity: 1;
  }
}

.devops-timeline-component .timeline-card:hover::before {
  transform: translateY(-50%) scale(1.3);
  opacity: 1;
  color: #ff0a28;
  animation: none;
}

/* -------[ ANIMATED TIMELINE MARKER ]------- */
.devops-timeline-component .timeline-marker {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  background: #ef233c;
  border: 3px solid #ffffff;
  border-radius: 50%;
  z-index: 10;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: 0 0 0 0 rgba(239, 35, 60, 0.4), 0 2px 8px rgba(239, 35, 60, 0.3);
}

/* Marker pulse when card is visible */
.devops-timeline-component .timeline-item.animate-in .timeline-marker {
  animation: markerPulse 2s ease-in-out 0.5s infinite;
}

@keyframes markerPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(239, 35, 60, 0.4), 0 2px 8px rgba(239, 35, 60, 0.3);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(239, 35, 60, 0),
      0 2px 12px rgba(239, 35, 60, 0.5);
  }
}

.devops-timeline-component .timeline-item:hover .timeline-marker {
  width: 20px;
  height: 20px;
  background: #ff0a28;
  border-width: 4px;
  box-shadow: 0 0 0 8px rgba(239, 35, 60, 0), 0 4px 16px rgba(239, 35, 60, 0.6);
  animation: none;
}

/* -------[ ANIMATED TIMELINE YEAR BADGE ]------- */
.devops-timeline-component .timeline-year {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #ef233c;
  color: #ffffff;
  padding: 8px 18px;
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  white-space: nowrap;
  text-transform: uppercase;
  z-index: 5;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: 0 2px 8px rgba(239, 35, 60, 0.3);
  border-radius: 2px;
  overflow: hidden;
}

/* Gradient shimmer effect on year badge */
.devops-timeline-component .timeline-year::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s ease;
}

.devops-timeline-component .timeline-item:hover .timeline-year::before {
  left: 100%;
}

.devops-timeline-component .timeline-item:hover .timeline-year {
  background: #414141;
  padding: 10px 24px;
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 4px 16px rgba(65, 65, 65, 0.4);
}

/* -------[ ENHANCED CARD CONTENT ]------- */
.devops-timeline-component .card-header {
  margin: 0 0 16px 0;
  padding: 0;
}

.devops-timeline-component .card-title {
  font-size: 22px;
  font-weight: 700;
  color: #414141;
  margin: 0 0 10px 0;
  padding: 0;
  line-height: 1.3;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}

.devops-timeline-component .timeline-card:hover .card-title {
  color: #ef233c;
  transform: translateX(4px);
}

.devops-timeline-component .card-company {
  font-size: 15px;
  color: #707070;
  font-weight: 500;
  margin: 0 0 4px 0;
  padding: 0;
  transition: color 0.3s ease;
}

.devops-timeline-component .timeline-card:hover .card-company {
  color: #414141;
}

.devops-timeline-component .card-location {
  font-size: 12px;
  color: #949494;
  font-style: italic;
  margin: 0;
  padding: 0;
  transition: color 0.3s ease;
}

.devops-timeline-component .timeline-card:hover .card-location {
  color: #707070;
}

.devops-timeline-component .card-description {
  font-size: 17px;
  color: #949494;
  line-height: 1.7;
  margin: 0;
  padding: 0;
  transition: color 0.3s ease;
}

.devops-timeline-component .timeline-card:hover .card-description {
  color: #707070;
}

.devops-timeline-component .card-description .highlight {
  font-weight: 600;
  color: #414141;
  transition: color 0.3s ease;
}

.devops-timeline-component .timeline-card:hover .card-description .highlight {
  color: #ef233c;
}

/* Animated divider with gradient */
.devops-timeline-component .card-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #ef233c, #ff4757);
  margin: 16px 0;
  padding: 0;
  border: none;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-radius: 2px;
  box-shadow: 0 2px 4px rgba(239, 35, 60, 0.2);
}

.devops-timeline-component .timeline-card:hover .card-divider {
  width: 120px;
  background: linear-gradient(90deg, #ff0a28, #ff6b7a);
  box-shadow: 0 2px 8px rgba(239, 35, 60, 0.4);
}

.devops-timeline-component .card-year-mobile {
  display: none;
}

/* -------[ STAGGERED TIMELINE ANIMATIONS ]------- */
.devops-timeline-component .timeline-item.animate-in {
  opacity: 1;
  filter: blur(0px);
  transform: translateY(0);
}

/* Different entrance animations for left and right */
.devops-timeline-component .timeline-item.left.animate-in .timeline-card {
  animation: slideInFromRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.devops-timeline-component .timeline-item.right.animate-in .timeline-card {
  animation: slideInFromLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes slideInFromRight {
  from {
    transform: translateX(30px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInFromLeft {
  from {
    transform: translateX(-30px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.devops-timeline-component .timeline-item.loading {
  opacity: 0.3;
  pointer-events: none;
}

/* -------[ TIMELINE RESPONSIVE ]------- */
@media (max-width: 775px) {
  .devops-timeline-component .timeline::before {
    left: 30px;
  }

  .devops-timeline-component .timeline::after {
    left: 30px;
  }

  .devops-timeline-component .timeline-end-marker {
    left: 30px;
  }

  .devops-timeline-component .timeline-item,
  .devops-timeline-component .timeline-item.left,
  .devops-timeline-component .timeline-item.right {
    justify-content: flex-start;
    padding-left: 70px !important;
    padding-right: 20px !important;
    margin-bottom: 50px;
  }

  .devops-timeline-component .timeline-card {
    max-width: 100%;
    border-left: 2px solid #ef233c !important;
    border-right: none !important;
    padding: 24px 20px !important;
  }

  .devops-timeline-component .timeline-marker {
    left: 30px;
  }

  .devops-timeline-component .timeline-year {
    display: none;
  }

  .devops-timeline-component .card-year-mobile {
    display: inline-block;
    background: #ef233c;
    color: #ffffff;
    padding: 6px 14px;
    margin: 0 0 14px 0;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 2px;
  }

  .devops-timeline-component .timeline-item.left .timeline-card::before,
  .devops-timeline-component .timeline-item.right .timeline-card::before {
    left: -21px;
    content: "‹";
    font-size: 32px;
  }

  .devops-timeline-component .card-title {
    font-size: 19px;
    margin-bottom: 8px;
  }

  .devops-timeline-component .card-company {
    font-size: 13px;
  }

  .devops-timeline-component .card-location {
    font-size: 12px;
  }

  .devops-timeline-component .card-description {
    font-size: 14px;
    line-height: 1.6;
  }

  .devops-timeline-component .card-divider {
    margin: 12px 0;
  }
}

@media (max-width: 992px) and (min-width: 776px) {
  .devops-timeline-component .timeline-card {
    max-width: 480px;
    padding: 24px 28px !important;
  }

  .devops-timeline-component .timeline-item {
    margin-bottom: 70px;
  }

  .devops-timeline-component .card-title {
    font-size: 20px;
  }

  .devops-timeline-component .card-description {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .devops-timeline-component {
    padding: 40px 12px;
  }

  .devops-timeline-component .timeline::before {
    left: 24px;
  }

  .devops-timeline-component .timeline::after {
    left: 24px;
  }

  .devops-timeline-component .timeline-end-marker {
    left: 24px;
  }

  .devops-timeline-component .timeline-item,
  .devops-timeline-component .timeline-item.left,
  .devops-timeline-component .timeline-item.right {
    padding-left: 60px !important;
    padding-right: 12px !important;
    margin-bottom: 45px;
  }

  .devops-timeline-component .timeline-card {
    padding: 20px 18px !important;
    border-radius: 4px;
  }

  .devops-timeline-component .timeline-marker {
    left: 24px;
    width: 12px;
    height: 12px;
  }

  .devops-timeline-component .timeline-item:hover .timeline-marker {
    width: 16px;
    height: 16px;
  }

  .devops-timeline-component .card-year-mobile {
    padding: 5px 12px;
    font-size: 9px;
    margin-bottom: 12px;
  }

  .devops-timeline-component .timeline-item.left .timeline-card::before,
  .devops-timeline-component .timeline-item.right .timeline-card::before {
    left: -18px;
    font-size: 28px;
  }

  .devops-timeline-component .card-title {
    font-size: 17px;
    margin-bottom: 8px;
    line-height: 1.4;
  }

  .devops-timeline-component .card-company {
    font-size: 12px;
    margin-bottom: 3px;
  }

  .devops-timeline-component .card-location {
    font-size: 11px;
  }

  .devops-timeline-component .card-description {
    font-size: 13px;
    line-height: 1.6;
  }

  .devops-timeline-component .card-divider {
    width: 50px;
    margin: 10px 0;
  }

  .devops-timeline-component .timeline-card:hover .card-divider {
    width: 80px;
  }
}

@media (max-width: 375px) {
  .devops-timeline-component {
    padding: 35px 10px;
  }

  .devops-timeline-component .timeline::before {
    left: 20px;
  }

  .devops-timeline-component .timeline::after {
    left: 20px;
  }

  .devops-timeline-component .timeline-end-marker {
    left: 20px;
  }

  .devops-timeline-component .timeline-item,
  .devops-timeline-component .timeline-item.left,
  .devops-timeline-component .timeline-item.right {
    padding-left: 52px !important;
    padding-right: 10px !important;
    margin-bottom: 40px;
  }

  .devops-timeline-component .timeline-card {
    padding: 18px 16px !important;
  }

  .devops-timeline-component .timeline-marker {
    left: 20px;
    width: 10px;
    height: 10px;
  }

  .devops-timeline-component .timeline-item:hover .timeline-marker {
    width: 14px;
    height: 14px;
  }

  .devops-timeline-component .timeline-item.left .timeline-card::before,
  .devops-timeline-component .timeline-item.right .timeline-card::before {
    left: -16px;
    font-size: 24px;
  }

  .devops-timeline-component .card-title {
    font-size: 16px;
  }

  .devops-timeline-component .card-company {
    font-size: 11px;
  }

  .devops-timeline-component .card-location {
    font-size: 10px;
  }

  .devops-timeline-component .card-description {
    font-size: 12px;
  }
}

@media (max-width: 320px) {
  .devops-timeline-component {
    padding: 30px 8px;
  }

  .devops-timeline-component .timeline::before {
    left: 18px;
  }

  .devops-timeline-component .timeline::after {
    left: 18px;
  }

  .devops-timeline-component .timeline-end-marker {
    left: 18px;
  }

  .devops-timeline-component .timeline-item,
  .devops-timeline-component .timeline-item.left,
  .devops-timeline-component .timeline-item.right {
    padding-left: 48px !important;
    padding-right: 8px !important;
    margin-bottom: 35px;
  }

  .devops-timeline-component .timeline-card {
    padding: 16px 14px !important;
  }

  .devops-timeline-component .timeline-marker {
    left: 18px;
    width: 10px;
    height: 10px;
  }

  .devops-timeline-component .card-year-mobile {
    padding: 4px 10px;
    font-size: 8px;
  }

  .devops-timeline-component .timeline-item.left .timeline-card::before,
  .devops-timeline-component .timeline-item.right .timeline-card::before {
    left: -15px;
    font-size: 22px;
  }

  .devops-timeline-component .card-title {
    font-size: 15px;
  }

  .devops-timeline-component .card-company {
    font-size: 10px;
  }

  .devops-timeline-component .card-location {
    font-size: 9px;
  }

  .devops-timeline-component .card-description {
    font-size: 11px;
  }

  .devops-timeline-component .card-divider {
    width: 40px;
    height: 2px;
    margin: 8px 0;
  }
}

@media (max-height: 500px) and (orientation: landscape) {
  .devops-timeline-component {
    padding: 20px 15px;
  }

  .devops-timeline-component .timeline-item {
    margin-bottom: 30px;
  }

  .devops-timeline-component .timeline-card {
    padding: 16px 20px !important;
  }
}

/* -------[ BLOG SECTION ]------- */

#blog {
  background-color: var(--color-blog);
}

#blog-cards-unique-section {
  background: #212122;
  -webkit-font-smoothing: antialiased;
  padding: 20px 0;
  padding-bottom: 100px;
}

.blog-band {
  width: 90%;
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  grid-gap: 20px;
}

@media (min-width: 30em) {
  .blog-band {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 60em) {
  .blog-band {
    grid-template-columns: repeat(4, 1fr);
  }
}

.blog-card,
.blog-card:link,
.blog-card:visited,
.blog-card:active {
  background: white;
  text-decoration: none;
  color: #444;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  position: relative;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: hidden;
  transform: translateY(0) scale(1);
}

.blog-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.7s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 10;
  pointer-events: none;
}

.blog-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(220, 38, 38, 0.03) 0%,
    rgba(239, 68, 68, 0.05) 100%
  );
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  pointer-events: none;
  z-index: 1;
}

.blog-card:hover,
.blog-card:link:hover,
.blog-card:visited:hover,
.blog-card:active:hover {
  transform: translateY(-16px) scale(1.02);
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.3),
    0 18px 36px -8px rgba(220, 38, 38, 0.25), 0 0 0 1px rgba(220, 38, 38, 0.15);
}

.blog-card:hover::before,
.blog-card:link:hover::before,
.blog-card:visited:hover::before {
  left: 100%;
}

.blog-card:hover::after,
.blog-card:link:hover::after,
.blog-card:visited:hover::after {
  opacity: 1;
}

.blog-card:hover .blog-thumb,
.blog-card:link:hover .blog-thumb,
.blog-card:visited:hover .blog-thumb {
  transform: scale(1.15);
  filter: brightness(1.05) saturate(1.1);
}

.blog-card:hover h1,
.blog-card:link:hover h1,
.blog-card:visited:hover h1 {
  transform: translateX(8px);
  color: #dc2626;
}

.blog-card:hover p,
.blog-card:link:hover p,
.blog-card:visited:hover p {
  transform: translateX(4px);
  color: #333;
}

.blog-card:hover span,
.blog-card:link:hover span,
.blog-card:visited:hover span {
  transform: translateY(-4px);
  color: #dc2626;
  letter-spacing: 0.1em;
}

.blog-card article {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.blog-card h1 {
  font-size: 20px;
  margin: 0;
  color: #333;
  line-height: 1.3;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  transform: translateX(0);
}

.blog-card p {
  flex: 1;
  line-height: 1.6;
  color: #666;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1) 0.05s;
  transform: translateX(0);
}

.blog-card span {
  font-size: 12px;
  font-weight: bold;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 2em 0 0 0;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1) 0.1s;
  transform: translateY(0);
}

.blog-thumb {
  padding-bottom: 60%;
  background-size: cover;
  background-position: center center;
  transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
  transform: scale(1);
  filter: brightness(1) saturate(1);
}

.blog-thumb::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(220, 38, 38, 0.1) 100%
  );
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.blog-card:hover .blog-thumb::before,
.blog-card:link:hover .blog-thumb::before,
.blog-card:visited:hover .blog-thumb::before {
  opacity: 1;
}

@media (min-width: 60em) {
  .blog-item-1 {
    grid-column: 1 / span 2;
  }

  .blog-item-1 .blog-card h1 {
    font-size: 24px;
    line-height: 1.3;
  }
}

@media (prefers-reduced-motion: reduce) {
  .blog-card,
  .blog-card::before,
  .blog-card::after,
  .blog-thumb,
  .blog-card h1,
  .blog-card p,
  .blog-card span {
    transition: none !important;
  }
}

/* -------[ VISIT ALL BLOGS CARD ]------- */
.visit-blog-card-wrapper {
  width: 90%;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
}

.visit-blog-card,
.visit-blog-card:link,
.visit-blog-card:visited,
.visit-blog-card:active {
  display: block;
  background: white;
  padding: 50px 40px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border: 2px solid #f3f4f6;
}

.visit-blog-card::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #dc2626, #ef4444, #dc2626, #b91c1c);
  background-size: 300% 300%;
  border-radius: 8px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  animation: borderGradient 3s ease infinite;
}

@keyframes borderGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.visit-blog-bg-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  opacity: 0.03;
  background-image: repeating-linear-gradient(
      0deg,
      #dc2626 0px,
      #dc2626 1px,
      transparent 1px,
      transparent 15px
    ),
    repeating-linear-gradient(
      90deg,
      #dc2626 0px,
      #dc2626 1px,
      transparent 1px,
      transparent 15px
    ),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 20px,
      #dc2626 20px,
      #dc2626 21px,
      transparent 21px,
      transparent 40px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 20px,
      #dc2626 20px,
      #dc2626 21px,
      transparent 21px,
      transparent 40px
    );
  pointer-events: none;
  z-index: 0;
}

.visit-blog-card::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: #dc2626;
  opacity: 0.02;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.visit-blog-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.visit-blog-text {
  flex: 1;
}

.visit-blog-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #dc2626;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.visit-blog-title {
  font-size: 32px;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.visit-blog-arrow {
  width: 60px;
  height: 60px;
  background: #dc2626;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.25);
}

.visit-blog-arrow svg {
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.visit-blog-card:hover,
.visit-blog-card:link:hover,
.visit-blog-card:visited:hover,
.visit-blog-card:active:hover {
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.25),
    0 18px 36px -8px rgba(220, 38, 38, 0.2);
  border-color: transparent;
}

.visit-blog-card:hover::before,
.visit-blog-card:link:hover::before,
.visit-blog-card:visited:hover::before,
.visit-blog-card:active:hover::before {
  opacity: 1;
}

.visit-blog-card:hover::after,
.visit-blog-card:link:hover::after,
.visit-blog-card:visited:hover::after,
.visit-blog-card:active:hover::after {
  opacity: 0.05;
  transform: scale(1.2);
}

.visit-blog-card:hover .visit-blog-bg-pattern {
  opacity: 0.1;
}

.visit-blog-card:hover .visit-blog-label,
.visit-blog-card:link:hover .visit-blog-label,
.visit-blog-card:visited:hover .visit-blog-label {
  letter-spacing: 0.18em;
  transform: translateX(4px);
  color: #000000;
}

.visit-blog-card:hover .visit-blog-title,
.visit-blog-card:link:hover .visit-blog-title,
.visit-blog-card:visited:hover .visit-blog-title {
  transform: translateX(8px);
  color: #dc2626;
}

.visit-blog-card:hover .visit-blog-arrow,
.visit-blog-card:link:hover .visit-blog-arrow,
.visit-blog-card:visited:hover .visit-blog-arrow {
  box-shadow: 0 8px 24px rgba(220, 38, 38, 0.4);
  background: #b91c1c;
}

.visit-blog-card:hover .visit-blog-arrow svg,
.visit-blog-card:link:hover .visit-blog-arrow svg,
.visit-blog-card:visited:hover .visit-blog-arrow svg {
  transform: translateX(4px);
}

/* -------[ BLOG RESPONSIVE ]------- */
@media (max-width: 768px) {
  .visit-blog-card,
  .visit-blog-card:link,
  .visit-blog-card:visited,
  .visit-blog-card:active {
    padding: 35px 25px;
  }

  .visit-blog-bg-pattern {
    width: 80%;
  }

  .visit-blog-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .visit-blog-title {
    font-size: 26px;
  }

  .visit-blog-arrow {
    align-self: flex-end;
    width: 50px;
    height: 50px;
  }

  .visit-blog-arrow svg {
    width: 22px;
    height: 22px;
  }
}

/* Mobile: < 775px - 1 card per row */
@media (max-width: 774px) {
  .blog-band {
    grid-template-columns: 1fr;
  }

  .blog-item-1 {
    grid-column: auto;
  }

  .visit-blog-card-wrapper {
    display: block;
  }

  .visit-blog-card,
  .visit-blog-card:link,
  .visit-blog-card:visited,
  .visit-blog-card:active {
    padding: 20px 20px;
  }

  .visit-blog-bg-pattern {
    width: 80%;
  }

  .visit-blog-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .visit-blog-label {
    font-size: 10px;
  }

  .visit-blog-title {
    font-size: 15px;
  }

  .visit-blog-arrow {
    align-self: flex-end;
    width: 35px;
    height: 35px;
  }

  .visit-blog-arrow svg {
    width: 20px;
    height: 20px;
  }
}

/* Tablet: 775px to 1023px - 2 cards per row, hide last blog card */
@media (min-width: 775px) and (max-width: 1023px) {
  .blog-band {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-item-1 {
    grid-column: auto;
  }

  .blog-item-3 {
    display: none;
  }

  .visit-blog-card-wrapper {
    display: block;
  }

  .visit-blog-card,
  .visit-blog-card:link,
  .visit-blog-card:visited,
  .visit-blog-card:active {
    padding: 40px 30px;
  }

  .visit-blog-title {
    font-size: 28px;
  }
}

/* Laptop/Desktop: ≥ 1024px - 3 cards per row + Visit All Blog */
@media (min-width: 1024px) {
  .blog-band {
    grid-template-columns: repeat(3, 1fr);
  }

  .blog-item-1,
  .blog-item-2,
  .blog-item-3 {
    grid-column: auto;
    display: block;
  }

  .visit-blog-card-wrapper {
    display: block;
  }

  .visit-blog-card,
  .visit-blog-card:link,
  .visit-blog-card:visited,
  .visit-blog-card:active {
    padding: 50px 40px;
  }
}

/* Ultra-wide screens: ≥ 1440px - Optimize spacing */
@media (min-width: 1440px) {
  .blog-band {
    grid-gap: 24px;
  }

  .visit-blog-card-wrapper {
    margin-top: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .visit-blog-card,
  .visit-blog-card::before,
  .visit-blog-card::after,
  .visit-blog-bg-pattern,
  .visit-blog-label,
  .visit-blog-title,
  .visit-blog-arrow {
    transition: none !important;
    animation: none !important;
  }
}

/* -------[ GITHUB ACTIVITY SECTION ]------- */
@keyframes githubCircleSpin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.github-activity-section {
  background: #0d1117;
  padding: var(--vspace-6) 0;
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.github-activity-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle at center,
    #39d353 0%,
    #26a641 20%,
    #006d32 40%,
    #0d1117 70%
  );
  transform: translate(-50%, -50%);
  animation: githubCircleSpin 20s linear infinite;
  opacity: 0.3; /* 30% visibility - adjust this value */
  pointer-events: none;
  filter: blur(30px);
}

.section-header-github {
  position: relative;
  margin-bottom: var(--vspace-2_5);
  z-index: 1;
}

.github-profile-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  width: 100%;
  position: relative;
  z-index: 1;
}

/* Scroll Animation */
.github-animate-element {
  opacity: 0;
  filter: blur(10px);
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.github-animate-element.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

/* Profile Header - Compact */
.github-profile-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  transition-delay: 0.1s;
}

.github-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid #30363d;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.github-avatar:hover {
  transform: scale(1.05);
  border-color: #39d353;
}

.github-user-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.github-username {
  font-size: 22px;
  font-weight: 600;
  color: #c9d1d9;
  margin: 0;
  line-height: 1.2;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans",
    Helvetica, Arial, sans-serif;
}

.github-profile-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #58a6ff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.github-profile-link:hover {
  color: #79c0ff;
}

.github-profile-link svg {
  fill: currentColor;
}

/* Contribution Section - Compact */
.github-contribution-section {
  background: #0d1117;
  border: 1px solid #30363d;
  border-radius: 6px;
  padding: 20px;
  margin-bottom: 20px;
  transition-delay: 0.2s;
}

.contribution-header {
  margin-bottom: 16px;
}

.contribution-title {
  font-size: 14px;
  font-weight: 400;
  color: #c9d1d9;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans",
    Helvetica, Arial, sans-serif;
}

#contribution-count {
  font-weight: 600;
  color: #39d353;
}

.contribution-graph-wrapper {
  margin-bottom: 12px;
  overflow-x: auto;
  overflow-y: hidden;
}

.contribution-calendar {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

/* Contribution Legend */
.contribution-legend {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  font-size: 11px;
  color: #7d8590;
}

.legend-text {
  margin: 0 4px;
  user-select: none;
}

.legend-list {
  display: flex;
  gap: 3px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.legend-item {
  width: 10px;
  height: 10px;
  border-radius: 2px;
  outline: 1px solid rgba(27, 31, 36, 0.06);
  outline-offset: -1px;
}

.legend-item.level-0 {
  background-color: #161b22;
}

.legend-item.level-1 {
  background-color: #0e4429;
}

.legend-item.level-2 {
  background-color: #006d32;
}

.legend-item.level-3 {
  background-color: #26a641;
}

.legend-item.level-4 {
  background-color: #39d353;
}

/* Overview Section - Horizontal on Mobile */
.github-overview-section {
  transition-delay: 0.3s;
}

.overview-grid {
  background: #0d1117;
  border: 1px solid #30363d;
  border-radius: 6px;
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.overview-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}

.stat-number {
  font-size: 28px;
  font-weight: 600;
  color: #39d353;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans",
    Helvetica, Arial, sans-serif;
  line-height: 1.2;
}

.stat-label {
  font-size: 11px;
  color: #7d8590;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.3;
}

/* Responsive Design */
@media screen and (max-width: 1400px) {
  .section-header-github::before {
    font-size: 8.6em;
  }
}

@media screen and (max-width: 1200px) {
  .github-profile-container {
    padding: 0 40px;
  }
}

@media screen and (max-width: 768px) {
  .github-activity-section {
    padding: var(--vspace-4) 0;
  }

  .github-profile-container {
    padding: 0 20px;
  }

  .github-avatar {
    width: 56px;
    height: 56px;
  }

  .github-username {
    font-size: 20px;
  }

  .github-contribution-section {
    padding: 16px;
  }

  /* Keep horizontal layout on mobile */
  .overview-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    padding: 16px 12px;
  }

  .stat-number {
    font-size: 20px;
  }

  .stat-label {
    font-size: 9px;
  }

  .github-activity-section::before {
    width: 600px;
    height: 600px;
  }
}

@media screen and (max-width: 600px) {
  .github-profile-header {
    gap: 12px;
  }

  .github-avatar {
    width: 48px;
    height: 48px;
  }

  .github-username {
    font-size: 18px;
  }

  .github-profile-link {
    font-size: 12px;
  }

  /* Maintain horizontal on small mobile */
  .overview-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    padding: 12px 8px;
  }

  .stat-number {
    font-size: 16px;
  }

  .stat-label {
    font-size: 8px;
    letter-spacing: 0.3px;
  }

  .contribution-graph-wrapper {
    margin-left: -16px;
    margin-right: -16px;
    padding: 0 16px;
  }

  .github-activity-section::before {
    width: 400px;
    height: 400px;
  }
}

@media screen and (max-width: 500px) {
  .section-header-github::before {
    font-size: 7em;
    left: 0;
  }
}

@media screen and (max-width: 400px) {
  .overview-grid {
    gap: 6px;
    padding: 10px 6px;
  }

  .stat-number {
    font-size: 14px;
  }

  .stat-label {
    font-size: 7px;
  }
}

/* -------[ METRICS SECTION ]------- */

.metrics-section {
  background-color: var(--color-gray-10);
}

.s-numbers {
  padding-bottom: var(--vspace-4);
  background-color: var(--color-gray-10);
  color: var(--color-text-light);
}

.s-numbers h5 {
  font-family: var(--font-1);
  font-weight: 500;
  margin-top: 0;
  margin-bottom: var(--vspace-0_75);
}

.counter-items__item {
  flex: none;
  width: 50%;
  margin-bottom: var(--vspace-0_625);
}

.counter-items .num {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-1);
  font-weight: 700;
  font-size: var(--text-huge-3);
  letter-spacing: -0.035em;
  line-height: 1;
  color: var(--color-3-dark);
}

.counter-items span {
  font-size: 0.5em;
  margin-left: 0.1em;
}

/* -------[ METRICS ANIMATION ]------- */
.s-numbers .num {
  opacity: 0;
  transform: translateY(50px) scale(0.95);
  transition: all 0.6s ease-out;
}

.s-numbers .num.animate {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* -------[ METRICS RESPONSIVE ]------- */
@media screen and (max-width: 1000px) {
  .counter-items .num {
    font-size: var(--text-huge-1);
  }
}

@media screen and (max-width: 700px) {
  .counter-items__item {
    width: 100%;
  }
}

/* -------[ QUICK CHAT SECTION ]------- */

.chat-section {
  background-color: #ffffff;
}

.contact-section {
  background-color: #ffffff;
  color: #ddd;
  font-family: var(--font-2) !important;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -70px;
  min-height: 60vh;
}

.contact-container {
  text-align: center;
  max-width: 800px;
  width: 100%;
}

.contact-container h2 {
  font-size: 28px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.input-row {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

input,
textarea {
  background-color: transparent;
  padding: 10px;
  font-size: 14px;
  flex: 1;
  min-width: 200px;
}

.textarea-wrapper {
  position: relative;
  width: 100%;
}

.contact-section textarea {
  resize: vertical;
  height: 20px !important;
  width: 100%;
}

.counter-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 5px;
}

.word-counter {
  text-align: left;
  font-size: 12px;
  color: #888;
  margin-bottom: 20px;
}

.word-counter.limit-reached {
  color: #dc3545;
  font-weight: 600;
}

.word-counter.near-limit {
  color: #ff9800;
  font-weight: 500;
}

.refresh-btn {
  background-color: transparent;
  border: 1px solid #888;
  color: #888;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  padding: 0;
}

.refresh-btn:hover {
  background-color: var(--color-1);
  border-color: var(--color-1);
  color: #ffffff;
  transform: rotate(180deg);
}

.refresh-btn:active {
  transform: rotate(180deg) scale(0.95);
}

.refresh-btn svg {
  width: 16px;
  height: 16px;
}

.sub-btn {
  color: #ffffff;
  background-color: var(--color-1);
  border: 1px solid var(--color-1);
  font-size: 15px;
  font-weight: 600;
  height: 75px;
  transition: background-color 0.3s ease, color 0.3s ease !important;
}

.sub-btn:hover {
  background-color: #000000 !important;
  color: #ffffff !important;
}

.sub-btn:active {
  background-color: var(--color-1) !important;
  color: #ffffff !important;
}

.sub-btn:focus {
  background-color: #000000 !important;
  color: #ffffff !important;
  outline: none;
}

#contactForm input,
#contactForm textarea {
  font-size: 18px;
  font-family: "Arial", sans-serif;
}

#contactForm input::placeholder,
#contactForm textarea::placeholder {
  font-size: var(--text-sm);
  color: #888;
  opacity: 1;
}

/* Hide arrows in number input */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}

/* -------[ POPUP MESSAGE ]------- */
.popup-message {
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  height: 50px;
  width: 300px;
  line-height: 50px;
  border-radius: 5px;
  font-size: 14px;
  font-family: Arial, sans-serif;
  display: none;
  z-index: 1000;
  text-align: center;
  animation: popupAnimation 0.6s ease-in-out, popupFadeOut 1s 2.5s forwards;
}

@keyframes popupAnimation {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

@keyframes popupFadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/* -------[ QUICK CHAT RESPONSIVE ]------- */
@media (max-width: 480px) {
  .contact-container {
    padding: 25px 20px;
    margin-top: 10px;
  }

  .input-row {
    flex-direction: column;
    gap: 15px;
  }

  input,
  textarea {
    font-size: 0.5rem;
  }

  input::placeholder,
  textarea::placeholder {
    font-size: 0.65rem;
  }

  button[type="submit"] {
    width: 100%;
    font-size: 14px;
  }

  .word-counter {
    font-size: 11px;
  }

  .refresh-btn {
    width: 28px;
    height: 28px;
  }

  .refresh-btn svg {
    width: 14px;
    height: 14px;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .contact-container {
    padding: 30px 20px;
  }

  .input-row {
    flex-direction: column;
    gap: 18px;
  }

  button[type="submit"] {
    width: auto;
    font-size: 14px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .contact-container {
    padding: 40px;
  }

  .input-row {
    flex-direction: row;
    gap: 20px;
  }

  input,
  textarea {
    font-size: 1.05rem;
  }
}

@media (min-width: 1025px) {
  .contact-container {
    max-width: 800px;
    padding: 50px 40px;
  }

  .input-row {
    flex-direction: row;
    gap: 25px;
  }

  input,
  textarea {
    font-size: 1.1rem;
  }

  input::placeholder,
  textarea::placeholder {
    font-size: 1rem;
  }
}
/* -------[ SIGNATURE SECTION ]------- */

.automation-section {
  width: 100%;
  background: var(--color-gray-10);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 30px;
  box-sizing: border-box;
}

.automation-content {
  width: 100%;
  max-width: 1400px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.left-text {
  width: 45%;
  margin-left: 5%;
}

.special-gothic-expanded-one-regular {
  font-family: "Special Gothic Expanded One", sans-serif;
  font-weight: 800;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 5px;
  word-spacing: 3px;
  font-size: 4rem;
  line-height: 1.2;
  background: linear-gradient(270deg, #1a1a1a, #340d5e, #561a8a, #1a1a1a);
  background-size: 200% 200%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: smoothGradient 6s ease infinite;
}

@keyframes smoothGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.right-animation {
  width: 50%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-right: -100px;
}

.right-animation lottie-player {
  width: 100%;
  max-width: 700px;
  height: auto;
}

/* -------[ SIGNATURE RESPONSIVE ]------- */
@media (max-width: 1440px) {
  .special-gothic-expanded-one-regular {
    font-size: 3.5rem;
  }
}

@media (max-width: 1200px) {
  .automation-section {
    height: 500px;
  }

  .special-gothic-expanded-one-regular {
    font-size: 3rem;
    letter-spacing: 2.5px;
  }
}

@media (max-width: 1024px) {
  .automation-section {
    height: 500px;
  }

  .automation-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .left-text,
  .right-animation {
    width: 48%;
    margin: 0;
  }

  .special-gothic-expanded-one-regular {
    font-size: 2.8rem;
    letter-spacing: 2px;
  }
}

@media (max-width: 845px) {
  .special-gothic-expanded-one-regular {
    font-size: 2.5rem;
  }

  .left-text {
    margin-left: 20px;
  }

  .right-animation {
    margin-right: -60px;
  }

  .right-animation lottie-player {
    height: 600px;
    width: 600px;
  }
}

@media (max-width: 769px) {
  .special-gothic-expanded-one-regular {
    font-size: 2.2rem;
    letter-spacing: 3px;
  }

  .left-text {
    margin-left: 20px;
  }

  .right-animation {
    justify-content: center;
  }

  .right-animation lottie-player {
    height: 600px;
    width: 600px;
  }
}

@media (max-width: 730px) {
  .automation-section {
    height: 400px;
  }

  .special-gothic-expanded-one-regular {
    font-size: 2rem;
  }
}

@media (max-width: 642px) and (min-width: 246px) {
  .automation-section {
    height: auto;
    padding: 20px;
  }

  .right-animation {
    width: 50%;
    margin-right: 10px;
  }

  .special-gothic-expanded-one-regular {
    font-size: 1.6rem;
    letter-spacing: 1px;
  }

  .right-animation lottie-player {
    height: 200px;
    width: 100%;
  }
}

@media (max-width: 426px) {
  .automation-section {
    height: auto;
    padding: 30px 15px;
    flex-direction: column;
    align-items: center;
  }

  .automation-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .left-text {
    width: 100%;
    margin: 0;
    text-align: center;
  }

  .special-gothic-expanded-one-regular {
    font-size: 2rem;
    letter-spacing: 1.5px;
  }

  .right-animation {
    width: 100%;
    margin-top: 20px;
    justify-content: center;
  }

  .right-animation lottie-player {
    max-width: 100%;
    height: auto;
  }
}

/* -------[ SIGNATURE LINE STYLING ]------- */
.line-container {
  margin-top: 15px;
  width: 100%;
}

.line {
  border: none;
  height: 3px;
  background-color: #ef233c;
  margin: 0;
  width: 0;
  transition: width 0.8s ease-out;
}

.automation-animate-element.is-visible .line {
  width: 100%;
}

/* -------[ SIGNATURE SCROLL ANIMATIONS - DESKTOP ]------- */
@media (min-width: 601px) {
  .left-text {
    opacity: 0;
    transform: translateX(-100px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  }

  .left-text.is-visible {
    opacity: 1;
    transform: translateX(0);
  }

  .right-animation {
    opacity: 0;
    transform: translateX(100px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  }

  .right-animation.is-visible {
    opacity: 1;
    transform: translateX(0);
  }
}

/* -------[ SIGNATURE SCROLL ANIMATIONS - MOBILE ]------- */
@media (max-width: 600px) {
  .left-text {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  }

  .left-text.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .right-animation {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  }

  .right-animation.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}
/* -------[ AD START ]------- */
.premium-web-ad {
  position: relative;
  min-height: 100vh;
  padding: 100px 32px;
  background: #0a0a0f;
  overflow: hidden;
  isolation: isolate;
  cursor: default;
  user-select: none;
}

.ad-atmosphere {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ad-atmosphere::before {
  content: "";
  position: absolute;
  inset: -50%;
  background: conic-gradient(
    from 0deg at 50% 50%,
    transparent 0deg,
    rgba(255, 0, 110, 0.12) 60deg,
    rgba(131, 56, 236, 0.15) 120deg,
    rgba(58, 134, 255, 0.12) 180deg,
    rgba(255, 0, 110, 0.15) 240deg,
    rgba(131, 56, 236, 0.12) 300deg,
    transparent 360deg
  );
  /* BACKGROUND GRADIENT SPEED: Change duration to adjust rotation speed (currently 8s, was 15s) */
  animation: continuousGlowRotate 8s linear infinite;
  filter: blur(80px);
  opacity: 0;
  transition: opacity 1s ease-out;
}

.premium-web-ad.scroll-visible .ad-atmosphere::before {
  opacity: 0.8;
}

@keyframes continuousGlowRotate {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.1);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}

.ad-atmosphere::after {
  content: "";
  position: absolute;
  inset: -30%;
  background: radial-gradient(
    ellipse 60% 50% at 50% 50%,
    rgba(255, 0, 110, 0.08) 0%,
    rgba(131, 56, 236, 0.1) 33%,
    rgba(58, 134, 255, 0.08) 66%,
    transparent 100%
  );
  /* PULSE SPEED: Change duration to adjust pulse speed (currently 6s, was 10s) */
  animation: glowPulseLoop 6s ease-in-out infinite;
  filter: blur(100px);
  opacity: 0;
  transition: opacity 1.2s ease-out 0.3s;
}

.premium-web-ad.scroll-visible .ad-atmosphere::after {
  opacity: 0.6;
}

@keyframes glowPulseLoop {
  0%,
  100% {
    transform: scale(1) translate(0, 0);
    opacity: 0.6;
  }
  33% {
    transform: scale(1.15) translate(5%, -5%);
    opacity: 0.8;
  }
  66% {
    transform: scale(0.95) translate(-5%, 5%);
    opacity: 0.7;
  }
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 20s linear infinite;
  mask-image: radial-gradient(
    ellipse 80% 70% at 50% 50%,
    black 40%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 1s ease-out 0.2s;
}

.premium-web-ad.scroll-visible .grid-overlay {
  opacity: 1;
}

@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(60px, 60px);
  }
}

.floating-shapes {
  position: absolute;
  inset: 0;
  perspective: 1000px;
  opacity: 0;
  transition: opacity 1.5s ease-out 0.4s;
}

.premium-web-ad.scroll-visible .floating-shapes {
  opacity: 1;
}

.shape {
  position: absolute;
  border: 2px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(2px);
}

/* Improved shape positioning - more balanced and intentional */
.shape-2 {
  width: 100px;
  height: 100px;
  top: 28%;
  left: 18%;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(131, 56, 236, 0.06), transparent);
  transform: rotate(45deg);
  animation: float2 12s ease-in-out infinite, rotate360 20s linear infinite;
}

.shape-3 {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  bottom: 2%;
  right: 33%;
  background: radial-gradient(
    circle at 70% 70%,
    rgba(209, 255, 58, 0.08),
    transparent 70%
  );
  animation: float3 14s ease-in-out infinite;
}

.shape-4 {
  width: 150px;
  height: 150px;
  top: 40%;
  right: 18%;
  background: linear-gradient(225deg, rgba(255, 0, 110, 0.05), transparent);
  transform: rotate(25deg);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: float4 13s ease-in-out infinite, morph 8s ease-in-out infinite;
}

@keyframes float2 {
  0%,
  100% {
    transform: translate(0, 0) rotate(45deg);
  }
  50% {
    transform: translate(-40px, 50px) rotate(45deg);
  }
}

@keyframes float3 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(50px, -30px) scale(1.1);
  }
}

@keyframes float4 {
  0%,
  100% {
    transform: translate(0, 0) rotate(25deg);
  }
  50% {
    transform: translate(-25px, -35px) rotate(25deg);
  }
}

@keyframes rotate360 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes morph {
  0%,
  100% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
  50% {
    border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
  }
}

.noise-texture {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0;
  mix-blend-mode: soft-light;
  animation: noiseShift 8s steps(10) infinite;
  transition: opacity 1s ease-out 0.5s;
}

.premium-web-ad.scroll-visible .noise-texture {
  opacity: 0.5;
}

@keyframes noiseShift {
  0%,
  100% {
    transform: translate(0, 0);
  }
  10% {
    transform: translate(-5%, -5%);
  }
  20% {
    transform: translate(-10%, 5%);
  }
  30% {
    transform: translate(5%, -10%);
  }
  40% {
    transform: translate(-5%, 10%);
  }
  50% {
    transform: translate(10%, 5%);
  }
  60% {
    transform: translate(5%, -5%);
  }
  70% {
    transform: translate(-10%, -10%);
  }
  80% {
    transform: translate(10%, 10%);
  }
  90% {
    transform: translate(-5%, 0%);
  }
}

.newspaper-elements {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 2s ease-out 0.8s;
}

.premium-web-ad.scroll-visible .newspaper-elements {
  opacity: 1;
}

.newspaper-column {
  position: absolute;
  top: 65%;
  width: 180px;
  height: 400px;
}

.newspaper-left {
  left: 5%;
  opacity: 0;
  transform: translateX(-60px);
  transition: all 1.5s cubic-bezier(0.16, 1, 0.3, 1) 1s;
}

.premium-web-ad.scroll-visible .newspaper-left {
  opacity: 1;
  transform: translateX(0);
}

.newspaper-line {
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 12px 0;
  transform-origin: left center;
}

.newspaper-left .newspaper-line:nth-child(1) {
  width: 0;
  animation: lineExpandLoop 3s ease-in-out 1.5s infinite;
}

.newspaper-left .newspaper-line:nth-child(2) {
  width: 0;
  animation: lineExpandLoop 3s ease-in-out 1.7s infinite;
}

.newspaper-left .newspaper-line:nth-child(3) {
  width: 0;
  animation: lineExpandLoop 3s ease-in-out 1.9s infinite;
}

@keyframes lineExpandLoop {
  0%,
  100% {
    width: 100%;
    opacity: 0.6;
  }
  50% {
    width: 85%;
    opacity: 0.65;
  }
}

.newspaper-line.short {
  width: 60%;
}

.newspaper-left .newspaper-line.short {
  animation: lineExpandShortLoop 3s ease-in-out 2.2s infinite;
}

@keyframes lineExpandShortLoop {
  0%,
  100% {
    width: 60%;
    opacity: 0.6;
  }
  50% {
    width: 50%;
    opacity: 0.65;
  }
}

.newspaper-dot {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  margin: 20px 0;
  animation: dotPulseNewspaper 2s ease-in-out 2s infinite;
}

@keyframes dotPulseNewspaper {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.4);
    opacity: 0.6;
  }
}

.newspaper-stamp {
  font-family: "Courier Prime", monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.25);
  margin-top: 30px;
  padding: 8px 12px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  animation: stampFloat 4s ease-in-out 2.5s infinite;
}

@keyframes stampFloat {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.25;
  }
  50% {
    transform: translateY(-5px);
    opacity: 0.4;
  }
}

.ad-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.ad-headline-wrapper {
  position: relative;
  margin-bottom: 32px;
}

.giant-text-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Syne", sans-serif;
  font-size: clamp(60px, 18vw, 180px);
  font-weight: 800;
  color: rgba(255, 0, 0, 0.02);
  white-space: nowrap;
  z-index: 1;
  user-select: none;
  pointer-events: none;
  letter-spacing: -0.05em;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.8);
  transition: all 2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

.premium-web-ad.scroll-visible .giant-text-bg {
  opacity: 0.04;
  transform: translate(-50%, -50%) scale(1);
  animation: giantTextFloat 12s ease-in-out 2s infinite;
}

@keyframes giantTextFloat {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.02;
  }
  50% {
    transform: translate(-50%, -48%) scale(1.02);
    opacity: 0.04;
  }
}

.headline-art-container {
  position: relative;
  display: inline-block;
}

.ad-headline {
  position: relative;
  font-family: "Syne", sans-serif;
  font-size: clamp(56px, 11vw, 120px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: #ffffff;
  margin: 0;
  z-index: 2;
}

.headline-fragment {
  display: inline-block;
  opacity: 0;
  transform: translateY(100px) rotateX(-90deg) scale(0.8);
  transform-origin: 50% 100%;
}

.premium-web-ad.scroll-visible .headline-fragment {
  animation: premiumCharDrop 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.premium-web-ad.scroll-visible .headline-fragment:nth-child(1) {
  animation-delay: 0.3s;
}

.premium-web-ad.scroll-visible .headline-fragment:nth-child(2) {
  animation-delay: 0.4s;
}

.premium-web-ad.scroll-visible .headline-fragment:nth-child(3) {
  animation-delay: 0.5s;
}

.premium-web-ad.scroll-visible .headline-fragment:nth-child(4) {
  animation-delay: 0.6s;
}

.premium-web-ad.scroll-visible .headline-fragment:nth-child(5) {
  animation-delay: 0.7s;
}

.premium-web-ad.scroll-visible .headline-fragment:nth-child(6) {
  animation-delay: 0.8s;
}

.premium-web-ad.scroll-visible .headline-fragment:nth-child(7) {
  animation-delay: 0.9s;
}

.premium-web-ad.scroll-visible .headline-fragment:nth-child(8) {
  animation-delay: 1s;
}

.premium-web-ad.scroll-visible .headline-fragment:nth-child(9) {
  animation-delay: 1.1s;
}

.premium-web-ad.scroll-visible .headline-fragment:nth-child(10) {
  animation-delay: 1.2s;
}

.premium-web-ad.scroll-visible .headline-fragment:nth-child(11) {
  animation-delay: 1.3s;
}

.premium-web-ad.scroll-visible .headline-fragment:nth-child(12) {
  animation-delay: 1.4s;
}

@keyframes premiumCharDrop {
  0% {
    opacity: 0;
    transform: translateY(100px) rotateX(-90deg) scale(0.8);
  }
  60% {
    transform: translateY(-10px) rotateX(5deg) scale(1.05);
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotateX(0) scale(1);
  }
}

.headline-accent {
  display: inline-block;
  background: linear-gradient(135deg, #ff006e 0%, #8338ec 50%, #3a86ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  filter: brightness(1.8) saturate(1.2);
  opacity: 0;
  transform: translateY(100px) rotateX(-90deg) scale(0.8);
}

.premium-web-ad.scroll-visible .headline-accent {
  animation: premiumAccentReveal 1s cubic-bezier(0.16, 1, 0.3, 1) 1.5s forwards;
}

@keyframes premiumAccentReveal {
  0% {
    opacity: 0;
    transform: translateY(100px) rotateX(-90deg) scale(0.8);
  }
  60% {
    transform: translateY(-10px) rotateX(5deg) scale(1.05);
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotateX(0) scale(1);
  }
}

@keyframes gradientShift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* IMPROVED ART ELEMENT POSITIONING - Better aligned and organized */
.fancy-art {
  position: absolute;
  top: 50%;
  right: -320px;
  transform: translateY(-50%);
  width: 220px;
  height: 220px;
  opacity: 0;
  transform: translateY(-50%) translateX(-60px) scale(0.8);
  transition: all 1.5s cubic-bezier(0.16, 1, 0.3, 1) 1.8s;
}

.premium-web-ad.scroll-visible .fancy-art {
  opacity: 1;
  transform: translateY(-50%) translateX(0) scale(1);
}

.art-line {
  position: absolute;
  background: rgba(255, 255, 255, 0.4);
  transform-origin: left center;
}

/* Cleaner line positioning */
.art-line-1 {
  width: 100px;
  height: 2px;
  top: 25%;
  left: 10px;
  transform: scaleX(0);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 2.2s;
}

.premium-web-ad.scroll-visible .art-line-1 {
  transform: scaleX(1);
  animation: linePulseLoop 4s ease-in-out 3s infinite;
}

.art-line-2 {
  width: 70px;
  height: 2px;
  top: 50%;
  left: 30px;
  transform: scaleX(0);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 2.4s;
}

.premium-web-ad.scroll-visible .art-line-2 {
  transform: scaleX(1);
  animation: linePulseLoop 4s ease-in-out 3.2s infinite;
}

.art-line-3 {
  width: 85px;
  height: 2px;
  top: 75%;
  left: 20px;
  transform: scaleX(0);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 2.6s;
}

.premium-web-ad.scroll-visible .art-line-3 {
  transform: scaleX(1);
  animation: linePulseLoop 4s ease-in-out 3.4s infinite;
}

@keyframes linePulseLoop {
  0%,
  100% {
    opacity: 0.4;
    transform: scaleX(1);
  }
  50% {
    opacity: 0.7;
    transform: scaleX(1.08);
  }
}

/* Better positioned circle */
.art-circle {
  position: absolute;
  width: 55px;
  height: 55px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  top: 15%;
  right: 30px;
  opacity: 0;
  transform: scale(0) rotate(-180deg);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1) 2.3s;
}

.premium-web-ad.scroll-visible .art-circle {
  opacity: 1;
  transform: scale(1) rotate(0deg);
  animation: circleRotateLoop 8s linear 3.3s infinite;
}

@keyframes circleRotateLoop {
  from {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.05);
  }
  to {
    transform: rotate(360deg) scale(1);
  }
}

.circle-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: dotPulse 2s ease-in-out 3.3s infinite;
}

@keyframes dotPulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 1;
  }
}

/* Better positioned square */
.art-square {
  position: absolute;
  width: 28px;
  height: 28px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  bottom: 15%;
  right: 60px;
  opacity: 0;
  transform: scale(0) rotate(45deg);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1) 2.8s;
}

.premium-web-ad.scroll-visible .art-square {
  opacity: 1;
  transform: scale(1) rotate(0deg);
  animation: squareRotateLoop 6s ease-in-out 3.8s infinite;
}

@keyframes squareRotateLoop {
  0%,
  100% {
    transform: rotate(0deg) scale(1);
    opacity: 0.4;
  }
  50% {
    transform: rotate(180deg) scale(1.1);
    opacity: 0.7;
  }
}

/* Better aligned text */
.art-text {
  position: absolute;
  top: 10%;
  right: 5px;
  font-family: "DM Sans", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.35);
  transform: rotate(-90deg);
  transform-origin: right center;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 2.5s;
}

.premium-web-ad.scroll-visible .art-text {
  opacity: 1;
  animation: textGlowLoop 3s ease-in-out 3.5s infinite;
}

.art-text-2 {
  position: absolute;
  bottom: 8%;
  left: 5px;
  font-family: "DM Sans", sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.3);
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 2.7s;
}

.premium-web-ad.scroll-visible .art-text-2 {
  opacity: 1;
  animation: textGlowLoop 3s ease-in-out 3.7s infinite;
}

@keyframes textGlowLoop {
  0%,
  100% {
    opacity: 0.35;
    text-shadow: none;
  }
  50% {
    opacity: 0.6;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
  }
}

.ad-tagline {
  font-family: "DM Sans", sans-serif;
  font-size: clamp(17px, 2.5vw, 22px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 auto 72px;
  max-width: 600px;
  letter-spacing: -0.01em;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(40px);
  transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1) 1.6s;
}

.premium-web-ad.scroll-visible .ad-tagline {
  opacity: 1;
  transform: translateY(0);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 72px;
}

.service-item {
  position: relative;
  opacity: 0;
  transform: translateY(60px) scale(0.9);
  cursor: default;
}

.premium-web-ad.scroll-visible .service-item:nth-child(1) {
  transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1) 2s;
  opacity: 1;
  transform: translateY(0) scale(1);
}

.premium-web-ad.scroll-visible .service-item:nth-child(2) {
  transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1) 2.2s;
  opacity: 1;
  transform: translateY(0) scale(1);
}

.premium-web-ad.scroll-visible .service-item:nth-child(3) {
  transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1) 2.4s;
  opacity: 1;
  transform: translateY(0) scale(1);
}

.service-glow {
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, #ff006e, #8338ec, #3a86ff);
  border-radius: 16px;
  opacity: 0;
  filter: blur(20px);
  transition: opacity 0.6s ease;
  z-index: 0;
}

.service-item:hover .service-glow {
  opacity: 0.4;
}

.service-content {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 32px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  backdrop-filter: blur(20px);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 1;
}

.service-item:hover .service-content {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.service-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  color: #ffffff;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.service-item:hover .service-icon {
  transform: scale(1.1) rotate(-5deg);
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-text {
  text-align: left;
}

.service-text h3 {
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 4px;
  letter-spacing: -0.02em;
}

.service-text p {
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.ad-action {
  opacity: 0;
  transform: translateY(50px) scale(0.95);
  transition: all 1.4s cubic-bezier(0.16, 1, 0.3, 1) 2.8s;
}

.premium-web-ad.scroll-visible .ad-action {
  opacity: 1;
  transform: translateY(0) scale(1);
}
/* -------[ ULTRA PREMIUM BUTTON DESIGN - NO GLOW ]------- */

.primary-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 48px;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #ffffff;
  background: linear-gradient(135deg, #ff006e 0%, #8338ec 50%, #3a86ff 100%);
  background-size: 200% 200%;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 8px 32px rgba(255, 0, 110, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  will-change: transform, box-shadow;
  transform: translateZ(0);
}

/* Animated gradient background - NO BLUR */
.primary-cta::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(
    135deg,
    #ff006e 0%,
    #8338ec 25%,
    #3a86ff 50%,
    #8338ec 75%,
    #ff006e 100%
  );
  background-size: 300% 300%;
  opacity: 0;
  border-radius: 12px;
  transition: opacity 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  animation: gradientRotate 4s ease infinite;
  z-index: -1;
}

@keyframes gradientRotate {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* Shine effect - enhanced */
.button-shine {
  position: absolute;
  top: -50%;
  left: -100%;
  width: 50%;
  height: 200%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.4),
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transform: skewX(-20deg);
  transition: left 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Hover state - enhanced */
.primary-cta:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 16px 56px rgba(255, 0, 110, 0.6),
    0 8px 24px rgba(131, 56, 236, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.2) inset,
    0 0 40px rgba(58, 134, 255, 0.3);
  background-position: 100% 50%;
}

.primary-cta:hover::before {
  opacity: 1;
}

.primary-cta:hover .button-shine {
  left: 150%;
}

/* Active state - enhanced */
.primary-cta:active {
  transform: translateY(-2px) scale(0.99);
  box-shadow: 0 8px 32px rgba(255, 0, 110, 0.5),
    0 4px 16px rgba(131, 56, 236, 0.3);
}

/* Content container */
.cta-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  z-index: 1;
}

/* Text with subtle animation */
.cta-text {
  position: relative;
  top: 1px;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.primary-cta:hover .cta-text {
  transform: translateX(-4px);
  color: #ffffff;
}

/* Arrow with enhanced animation */
.cta-arrow {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.primary-cta:hover .cta-arrow {
  transform: translateX(8px) scale(1.1);
  color: #ffffff !important;
  animation: arrowBounce 0.6s ease infinite;
}

@keyframes arrowBounce {
  0%,
  100% {
    transform: translateX(8px) scale(1.1);
  }
  50% {
    transform: translateX(12px) scale(1.1);
  }
}

/* Ripple effect on click */
.primary-cta-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  transform: scale(0);
  animation: rippleEffect 0.6s ease-out;
  pointer-events: none;
}

@keyframes rippleEffect {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* Focus state for accessibility */
.primary-cta:focus-visible {
  outline: none;
  box-shadow: 0 8px 32px rgba(255, 0, 110, 0.6),
    0 0 0 3px rgba(255, 255, 255, 0.3), 0 0 0 6px rgba(131, 56, 236, 0.3);
}

/* Disabled state */
.primary-cta:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.primary-cta:disabled:hover {
  transform: none;
  box-shadow: 0 8px 32px rgba(255, 0, 110, 0.4);
}

/* Optional: Loading state */
.primary-cta.loading {
  pointer-events: none;
}

.primary-cta.loading .cta-text {
  opacity: 0.6;
}

.primary-cta.loading .cta-arrow {
  animation: spinLoader 1s linear infinite;
}

@keyframes spinLoader {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Performance optimizations */
.primary-cta,
.primary-cta::before,
.button-shine {
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* -------[ END ULTRA PREMIUM BUTTON DESIGN - NO GLOW ]------- */

@media (max-width: 480px) {
  .premium-web-ad {
    padding: 60px 20px;
    min-height: auto;
  }
  .ad-headline {
    font-size: clamp(40px, 12vw, 56px);
    line-height: 1;
    margin-bottom: 20px;
  }
  .giant-text-bg {
    font-size: clamp(30px, 12vw, 60px);
  }
  .fancy-art {
    display: none;
  }
  .newspaper-column {
    display: none;
  }
  .ad-tagline {
    font-size: 15px;
    margin-bottom: 48px;
    padding: 0 10px;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 48px;
  }
  .service-content {
    padding: 20px;
    gap: 16px;
    border-radius: 12px;
  }
  .service-icon {
    width: 40px;
    height: 40px;
  }
  .service-text h3 {
    font-size: 16px;
  }
  .service-text p {
    font-size: 13px;
  }
  .primary-cta {
    padding: 18px 40px;
    font-size: 14px;
    border-radius: 10px;
  }
  .cta-arrow {
    width: 18px;
    height: 18px;
  }
  .shape-2,
  .shape-3,
  .shape-4 {
    opacity: 0.5;
    transform: scale(0.7);
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .premium-web-ad {
    padding: 70px 24px;
  }
  .ad-headline {
    font-size: clamp(48px, 10vw, 72px);
  }
  .giant-text-bg {
    font-size: clamp(50px, 14vw, 100px);
  }
  .fancy-art {
    right: -200px;
    width: 180px;
    height: 180px;
  }
  .newspaper-left {
    left: 2%;
    width: 140px;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .service-content {
    border-radius: 12px;
  }
  .primary-cta {
    border-radius: 11px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .fancy-art {
    right: -220px;
    width: 200px;
    height: 200px;
  }
  .newspaper-left {
    left: 3%;
  }
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
  .service-content {
    flex-direction: column;
    text-align: center;
  }
  .service-text {
    text-align: center;
  }
}

@media (max-width: 1200px) {
  .fancy-art {
    display: none;
  }
}

@media (max-width: 900px) {
  .newspaper-column {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .premium-web-ad *,
  .premium-web-ad *::before,
  .premium-web-ad *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* -------[ ULTRA ENHANCED 60FPS TITLE ANIMATION WITH GLITCH SWAG ]------- */

/* Enhanced character drop animations with bounce, glow, and glitch swag */
.premium-web-ad.scroll-visible .headline-fragment[data-char="W"] {
  animation: premiumCharDrop 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}
.premium-web-ad.scroll-visible .headline-fragment[data-char="e"]:nth-child(2) {
  animation: premiumCharDrop 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}
.premium-web-ad.scroll-visible .headline-fragment[data-char="b"] {
  animation: premiumCharDrop 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}
.premium-web-ad.scroll-visible .headline-fragment[data-char="s"]:nth-child(4) {
  animation: premiumCharDrop 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}
.premium-web-ad.scroll-visible .headline-fragment[data-char="i"] {
  animation: premiumCharDrop 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.7s forwards;
}
.premium-web-ad.scroll-visible .headline-fragment[data-char="t"] {
  animation: premiumCharDrop 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
}
.premium-web-ad.scroll-visible .headline-fragment[data-char="e"]:nth-child(7) {
  animation: premiumCharDrop 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.9s forwards;
}
.premium-web-ad.scroll-visible .headline-fragment[data-char="s"]:nth-child(8) {
  animation: premiumCharDrop 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1s forwards;
}
.premium-web-ad.scroll-visible .headline-fragment[data-char="T"] {
  animation: premiumCharDrop 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1.1s forwards;
}
.premium-web-ad.scroll-visible .headline-fragment[data-char="h"] {
  animation: premiumCharDrop 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1.2s forwards;
}
.premium-web-ad.scroll-visible .headline-fragment[data-char="a"] {
  animation: premiumCharDrop 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1.3s forwards;
}
.premium-web-ad.scroll-visible .headline-fragment[data-char="t"]:nth-child(12) {
  animation: premiumCharDrop 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1.4s forwards;
}

/* New glitch swag animation for individual characters */
@keyframes glitchSwag {
  0%,
  92%,
  100% {
    transform: translate(0, 0) skewX(0deg);
    text-shadow: none;
    filter: none;
  }
  93% {
    transform: translate(-2px, 1px) skewX(-3deg);
    text-shadow: 2px 0 0 rgba(255, 0, 110, 0.7),
      -2px 0 0 rgba(58, 134, 255, 0.7);
    filter: brightness(1.3);
  }
  94% {
    transform: translate(3px, -1px) skewX(4deg);
    text-shadow: -3px 0 0 rgba(255, 0, 110, 0.8),
      3px 0 0 rgba(58, 134, 255, 0.8);
    filter: brightness(1.5);
  }
  95% {
    transform: translate(-1px, 0) skewX(-2deg);
    text-shadow: 1px 0 0 rgba(255, 0, 110, 0.6),
      -1px 0 0 rgba(58, 134, 255, 0.6);
    filter: brightness(1.2);
  }
  96% {
    transform: translate(0, 0) skewX(0deg);
    text-shadow: none;
    filter: none;
  }
}

/* New subtle glow pulse for characters */
@keyframes charGlowPulse {
  0%,
  100% {
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.1),
      0 0 10px rgba(255, 255, 255, 0.05);
  }
  50% {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2),
      0 0 20px rgba(255, 255, 255, 0.1), 0 0 30px rgba(255, 255, 255, 0.05);
  }
}

/* ===== IMPROVED "CONVERT," ANIMATIONS ===== */

/* ULTRA ENHANCED Animation for "Convert," with improved effects */
.premium-web-ad.scroll-visible .headline-accent {
  animation: premiumAccentReveal 1s cubic-bezier(0.16, 1, 0.3, 1) 1.5s forwards,
    gradientShift 3.5s ease 2.5s infinite,
    rgbDistortEnhanced 6s cubic-bezier(0.87, 0, 0.13, 1) 2.5s infinite,
    scanlineFlickerEnhanced 0.15s steps(2) 2.5s infinite,
    dataCorruptEnhanced 6s steps(30) 2.5s infinite,
    holographicShimmerEnhanced 5s ease-in-out 2.5s infinite,
    megaGlitchSwagEnhanced 8s ease-in-out 3s infinite,
    chromaticPulse 4s ease-in-out 3s infinite;
  position: relative;
  will-change: transform, filter, opacity;
  background-size: 200% 200%;
}

/* Enhanced mega glitch with unified skew direction for even movement */
@keyframes megaGlitchSwagEnhanced {
  0%, 82%, 100% {
    transform: translate(0, 0) skewX(0deg) scale(1);
  }
  83% {
    transform: translate(-6px, 3px) skewX(6deg) scale(1.03);
  }
  84% {
    transform: translate(7px, -3px) skewX(7deg) scale(0.97);
  }
  85% {
    transform: translate(-4px, 2px) skewX(5deg) scale(1.02);
  }
  86% {
    transform: translate(5px, -2px) skewX(6deg) scale(0.98);
  }
  87% {
    transform: translate(-3px, 1px) skewX(4deg) scale(1.01);
  }
  88% {
    transform: translate(4px, -1px) skewX(5deg) scale(0.99);
  }
  89% {
    transform: translate(-2px, 1px) skewX(3deg) scale(1.005);
  }
  90% {
    transform: translate(2px, -1px) skewX(2deg) scale(0.995);
  }
  91% {
    transform: translate(-1px, 0) skewX(1deg) scale(1);
  }
  92% {
    transform: translate(0, 0) skewX(0deg) scale(1);
  }
}

/* New chromatic aberration pulse effect */
@keyframes chromaticPulse {
  0%, 100% {
    filter: brightness(2) saturate(1.4) contrast(1.1);
  }
  25% {
    filter: brightness(2.15) saturate(1.6) contrast(1.13) hue-rotate(2deg);
  }
  50% {
    filter: brightness(2.25) saturate(1.8) contrast(1.15) hue-rotate(0deg);
  }
  75% {
    filter: brightness(2.15) saturate(1.6) contrast(1.13) hue-rotate(-2deg);
  }
}

/* Enhanced RGB distortion with unified skew direction for even tilting */
@keyframes rgbDistortEnhanced {
  0% {
    filter: brightness(2) saturate(1.4) contrast(1.1) hue-rotate(0deg);
    transform: translateX(0) scaleX(1) skewX(0deg) translateY(0) scale(1);
  }
  6% {
    filter: brightness(2.35) saturate(1.9) contrast(1.16) hue-rotate(8deg);
    transform: translateX(-4px) scaleX(1.05) skewX(4deg) translateY(-1.5px) scale(1.015);
  }
  12% {
    filter: brightness(2.6) saturate(2.1) contrast(1.22) hue-rotate(-7deg);
    transform: translateX(5px) scaleX(0.95) skewX(5deg) translateY(1.5px) scale(1.025);
  }
  18% {
    filter: brightness(2.5) saturate(2) contrast(1.2) hue-rotate(5deg);
    transform: translateX(-3px) scaleX(1.04) skewX(3deg) translateY(-1px) scale(1.01);
  }
  24% {
    filter: brightness(2.3) saturate(1.8) contrast(1.14) hue-rotate(-4deg);
    transform: translateX(4px) scaleX(0.96) skewX(4deg) translateY(1px) scale(1.02);
  }
  30% {
    filter: brightness(2.2) saturate(1.7) contrast(1.12) hue-rotate(3deg);
    transform: translateX(-2px) scaleX(1.03) skewX(2deg) translateY(-0.5px) scale(1.005);
  }
  36% {
    filter: brightness(2.15) saturate(1.65) contrast(1.11) hue-rotate(-3deg);
    transform: translateX(3px) scaleX(0.97) skewX(3deg) translateY(0.5px) scale(1.015);
  }
  42% {
    filter: brightness(2.1) saturate(1.6) contrast(1.1) hue-rotate(2deg);
    transform: translateX(-1.5px) scaleX(1.02) skewX(1.5deg) translateY(0.3px) scale(1.008);
  }
  55% {
    filter: brightness(2.05) saturate(1.5) contrast(1.08) hue-rotate(0deg);
    transform: translateX(0.5px) scaleX(1.01) skewX(0.5deg) translateY(-0.2px) scale(1.003);
  }
  70% {
    filter: brightness(2.02) saturate(1.45) contrast(1.06) hue-rotate(0deg);
    transform: translateX(0) scaleX(1) skewX(0deg) translateY(0) scale(1);
  }
  100% {
    filter: brightness(2) saturate(1.4) contrast(1.1) hue-rotate(0deg);
    transform: translateX(0) scaleX(1) skewX(0deg) translateY(0) scale(1);
  }
}

/* Enhanced scanline with more dynamic variation */
@keyframes scanlineFlickerEnhanced {
  0%, 100% {
    filter: brightness(2) saturate(1.4) contrast(1.1);
  }
  16% {
    filter: brightness(2.08) saturate(1.48) contrast(1.115);
  }
  33% {
    filter: brightness(2.12) saturate(1.53) contrast(1.13);
  }
  50% {
    filter: brightness(2.15) saturate(1.55) contrast(1.14);
  }
  66% {
    filter: brightness(2.1) saturate(1.5) contrast(1.125);
  }
  83% {
    filter: brightness(2.05) saturate(1.45) contrast(1.115);
  }
}

/* Enhanced data corruption with more varied RGB splits and multi-layered glitch bursts */
@keyframes dataCorruptEnhanced {
  0%, 5%, 11%, 17%, 23%, 29%, 35%, 41%, 55%, 100% {
    text-shadow: none;
  }
  6% {
    text-shadow: 
      2.5px 0 0 rgba(255, 0, 110, 0.6),
      -2.5px 0 0 rgba(58, 134, 255, 0.6), 
      0 0 25px rgba(131, 56, 236, 0.4),
      5px 3px 0 rgba(255, 0, 110, 0.35), 
      -5px -3px 0 rgba(58, 134, 255, 0.35),
      0 0 35px rgba(255, 255, 255, 0.2);
  }
  12% {
    text-shadow: 
      4px 1px 0 rgba(255, 0, 110, 0.7),
      -4px -1px 0 rgba(58, 134, 255, 0.7), 
      0 0 35px rgba(131, 56, 236, 0.5),
      7px 4px 0 rgba(255, 0, 110, 0.45), 
      -7px -4px 0 rgba(58, 134, 255, 0.45),
      0 0 45px rgba(255, 255, 255, 0.25),
      2px -2px 0 rgba(0, 255, 157, 0.3);
  }
  18% {
    text-shadow: 
      3px 2px 0 rgba(255, 0, 110, 0.65),
      -3px -2px 0 rgba(58, 134, 255, 0.65), 
      0 0 30px rgba(131, 56, 236, 0.45),
      6px 3px 0 rgba(255, 0, 110, 0.4), 
      -6px -3px 0 rgba(58, 134, 255, 0.4),
      0 0 40px rgba(255, 255, 255, 0.22);
  }
  24% {
    text-shadow: 
      3.5px 0 0 rgba(255, 0, 110, 0.68),
      -3.5px 0 0 rgba(58, 134, 255, 0.68), 
      0 0 28px rgba(131, 56, 236, 0.42),
      5.5px 2px 0 rgba(255, 0, 110, 0.38), 
      -5.5px -2px 0 rgba(58, 134, 255, 0.38),
      0 0 38px rgba(255, 255, 255, 0.2),
      -2px 2px 0 rgba(0, 255, 157, 0.25);
  }
  30% {
    text-shadow: 
      2px 1px 0 rgba(255, 0, 110, 0.55),
      -2px -1px 0 rgba(58, 134, 255, 0.55), 
      0 0 22px rgba(131, 56, 236, 0.35),
      4px 2px 0 rgba(255, 0, 110, 0.32), 
      -4px -2px 0 rgba(58, 134, 255, 0.32),
      0 0 32px rgba(255, 255, 255, 0.18);
  }
  36% {
    text-shadow: 
      3.2px 0.5px 0 rgba(255, 0, 110, 0.62),
      -3.2px -0.5px 0 rgba(58, 134, 255, 0.62), 
      0 0 26px rgba(131, 56, 236, 0.38),
      5px 1.5px 0 rgba(255, 0, 110, 0.36), 
      -5px -1.5px 0 rgba(58, 134, 255, 0.36),
      0 0 36px rgba(255, 255, 255, 0.19),
      1.5px -1.5px 0 rgba(0, 255, 157, 0.28);
  }
  42% {
    text-shadow: 
      1.8px 0 0 rgba(255, 0, 110, 0.5),
      -1.8px 0 0 rgba(58, 134, 255, 0.5), 
      0 0 20px rgba(131, 56, 236, 0.3),
      3.5px 1px 0 rgba(255, 0, 110, 0.3), 
      -3.5px -1px 0 rgba(58, 134, 255, 0.3),
      0 0 30px rgba(255, 255, 255, 0.15);
  }
}

/* Enhanced holographic shimmer with more dynamic movement */
@keyframes holographicShimmerEnhanced {
  0% {
    background-position: 0% 50%;
  }
  25% {
    background-position: 40% 60%;
  }
  50% {
    background-position: 100% 50%;
  }
  75% {
    background-position: 60% 40%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Enhanced RGB Split Effect - Red Channel with improved intensity and movement */
.headline-accent::before {
  content: "Convert,";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ff006e 0%, #ff3399 35%, #ff0099 65%, #ff006e 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0;
  z-index: 1;
  mix-blend-mode: screen;
  will-change: transform, opacity;
  pointer-events: none;
  animation: rgbRedChannelEnhanced 6s cubic-bezier(0.87, 0, 0.13, 1) 2.5s infinite;
}

@keyframes rgbRedChannelEnhanced {
  0%, 100% {
    transform: translate(0, 0) scale(1) skewY(0deg);
    opacity: 0;
  }
  6% {
    transform: translate(-6px, 1px) scale(1.015) skewY(1.5deg);
    opacity: 0.85;
  }
  12% {
    transform: translate(-8px, 3px) scale(1.025) skewY(2.5deg);
    opacity: 0.95;
  }
  18% {
    transform: translate(-5px, -1px) scale(1.01) skewY(1.2deg);
    opacity: 0.78;
  }
  24% {
    transform: translate(-7px, 2px) scale(1.02) skewY(2deg);
    opacity: 0.88;
  }
  30% {
    transform: translate(-4px, 0) scale(1.008) skewY(1deg);
    opacity: 0.7;
  }
  36% {
    transform: translate(-6px, 1.5px) scale(1.015) skewY(1.5deg);
    opacity: 0.82;
  }
  42% {
    transform: translate(-3px, -0.5px) scale(1.005) skewY(0.8deg);
    opacity: 0.65;
  }
  55% {
    transform: translate(-1.5px, 0.5px) scale(1.002) skewY(0.4deg);
    opacity: 0.4;
  }
  70%, 100% {
    transform: translate(0, 0) scale(1) skewY(0deg);
    opacity: 0;
  }
}

/* Enhanced RGB Split Effect - Blue Channel with improved intensity and movement */
.headline-accent::after {
  content: "Convert,";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #3a86ff 0%, #66a3ff 35%, #4d94ff 65%, #3a86ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0;
  z-index: 1;
  mix-blend-mode: screen;
  will-change: transform, opacity;
  pointer-events: none;
  animation: rgbBlueChannelEnhanced 6s cubic-bezier(0.87, 0, 0.13, 1) 2.5s infinite;
}

@keyframes rgbBlueChannelEnhanced {
  0%, 100% {
    transform: translate(0, 0) scale(1) skewY(0deg);
    opacity: 0;
  }
  6% {
    transform: translate(6px, -1px) scale(1.015) skewY(1.5deg);
    opacity: 0.85;
  }
  12% {
    transform: translate(8px, -3px) scale(1.025) skewY(2.5deg);
    opacity: 0.95;
  }
  18% {
    transform: translate(5px, 1px) scale(1.01) skewY(1.2deg);
    opacity: 0.78;
  }
  24% {
    transform: translate(7px, -2px) scale(1.02) skewY(2deg);
    opacity: 0.88;
  }
  30% {
    transform: translate(4px, 0) scale(1.008) skewY(1deg);
    opacity: 0.7;
  }
  36% {
    transform: translate(6px, -1.5px) scale(1.015) skewY(1.5deg);
    opacity: 0.82;
  }
  42% {
    transform: translate(3px, 0.5px) scale(1.005) skewY(0.8deg);
    opacity: 0.65;
  }
  55% {
    transform: translate(1.5px, -0.5px) scale(1.002) skewY(0.4deg);
    opacity: 0.4;
  }
  70%, 100% {
    transform: translate(0, 0) scale(1) skewY(0deg);
    opacity: 0;
  }
}

/* Performance optimization with enhanced GPU acceleration */
.headline-fragment[data-char],
.headline-accent,
.headline-accent::before,
.headline-accent::after {
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Additional styling for headline fragments with glitch swag readiness */
.headline-fragment[data-char] {
  display: inline-block;
  will-change: transform, opacity, text-shadow, filter;
  position: relative;
}

/* -------[ END ULTRA ENHANCED 60FPS TITLE ANIMATION WITH GLITCH SWAG ]------- */

/* -------[ NAV BAR HIDE ]------- */

.s-header {
  transition: transform 0.7s cubic-bezier(0.76, 0, 0.24, 1),
    opacity 0.5s cubic-bezier(0.4, 0, 1, 1) 0.1s;
  will-change: transform, opacity;
}

.s-header.header-hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

/* Stagger child elements for sophisticated reveal */
.s-header > * {
  transition: transform 0.6s cubic-bezier(0.76, 0, 0.24, 1),
    opacity 0.4s cubic-bezier(0.4, 0, 1, 1);
}

.s-header.header-hidden > *:nth-child(1) {
  transform: translateY(-20px);
  opacity: 0;
  transition-delay: 0s;
}

.s-header.header-hidden > *:nth-child(2) {
  transform: translateY(-20px);
  opacity: 0;
  transition-delay: 0.03s;
}

.s-header.header-hidden > *:nth-child(3) {
  transform: translateY(-20px);
  opacity: 0;
  transition-delay: 0.06s;
}

.s-header.header-hidden > *:nth-child(4) {
  transform: translateY(-20px);
  opacity: 0;
  transition-delay: 0.06s;
}
/* -------[ NAV BAR HIDE ]------- */

/* -------[ AD END ]------- */

/* -------[ CONTACT: FOOTER SECTION ]------- */

.s-footer {
  --bottom-padding: var(--vspace-2_5-foot);
  background-color: var(--color-3);
  margin-top: auto;
  padding-top: var(--vspace-6);
  padding-bottom: var(--bottom-padding);
  color: var(--color-gray-15);
}

.s-footer h5 {
  color: white;
  margin-top: 0;
}

.s-footer__block {
  margin-bottom: var(--vspace-0_5);
}

.s-footer__block a {
  color: var(--color-gray-12);
}

.s-footer__block a:focus,
.s-footer__block a:hover {
  color: white;
}

.s-footer__about {
  padding-top: var(--vspace-0_25);
}

.s-footer__about > * {
  width: min(100%, 560px);
}

.s-footer__buttons {
  --color-btn-stroke: white;
  --color-btn-stroke-text: white;
  --color-btn-stroke-hover: white;
  --color-btn-stroke-hover-text: var(--color-text-dark);
  margin-top: var(--vspace-0_75);
  margin-bottom: var(--vspace-2_5);
}

.s-footer__bottom {
  font-size: calc(var(--text-size) * 0.8);
  color: rgba(255, 255, 255, 0.2);
  padding-top: var(--vspace-1_25);
  margin-top: var(--vspace-0_75);
  position: relative;
}

.s-footer__bottom::before {
  content: "";
  display: block;
  height: 2px;
  width: calc(100% - 2 * var(--gutter));
  background-color: rgba(255, 255, 255, 0.04);
  position: absolute;
  top: 0;
  left: var(--gutter);
}

.s-footer__social svg path {
  fill: var(--color-gray-15);
  transition: all 0.5s;
}

.s-footer .link-list {
  list-style: none;
  margin-left: 0;
}

.s-footer .link-list li {
  padding: 0;
}

.s-footer .link-list a {
  color: var(--color-gray-15);
  border: none;
}

.s-footer .link-list a:focus,
.s-footer .link-list a:hover {
  color: white;
}

.s-footer__social {
  display: flex;
  gap: 10px;
}

.ss-copyright {
  margin: 0 var(--vspace-2) 0 0;
  line-height: var(--vspace-0_875);
}

.ss-copyright a {
  color: var(--color-gray-5);
}

.ss-copyright a:focus,
.ss-copyright a:hover {
  color: var(--color-1);
}

.ss-copyright span {
  display: inline-block;
  gap: 10px;
}

.ss-copyright span::after {
  content: "|";
  display: inline-block;
  padding: 0 0.8rem 0 1rem;
  color: var(--color-error-content);
}

.ss-copyright span:last-child::after {
  display: none;
}

.ss-go-top {
  --width-label: 11rem;
  z-index: 2;
  display: flex;
  align-items: center;
  position: absolute;
  bottom: calc(var(--bottom-padding) - var(--vspace-0_5));
  right: calc(
    var(--gutter) + var(--vspace-0_75) - var(--width-label) - var(--vspace-1_75) -
      var(--vspace-0_75)
  );
  transform: rotate(-90deg);
  transform-origin: left bottom;
}

.ss-go-top span {
  display: block;
  width: var(--width-label);
  font-size: 1.1rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--color-gray-15);
  position: relative;
}

.ss-go-top a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: none;
  height: var(--vspace-1_75);
  width: var(--vspace-1_75);
  border-radius: 50%;
  border: 2px solid white;
  margin-right: var(--vspace-0_75);
  position: relative;
}

.ss-go-top svg {
  height: calc(0.3 * var(--space));
  width: calc(0.3 * var(--space));
}

.ss-go-top svg path {
  fill: white;
}

/* -------[ FOOTER RESPONSIVE ]------- */
@media screen and (max-width: 1600px) {
  .ss-go-top {
    bottom: calc(var(--bottom-padding) - var(--vspace-0_25));
    right: 0;
  }

  .ss-go-top span {
    display: none;
  }

  .ss-go-top a {
    margin: 0;
    height: var(--vspace-1_5);
    width: var(--vspace-1_5);
  }

  .ss-go-top svg {
    height: calc(0.25 * var(--space));
    width: calc(0.25 * var(--space));
  }
}

@media screen and (max-width: 1200px) {
  .ss-copyright {
    margin-top: var(--vspace-0_5);
  }

  .ss-go-top {
    bottom: calc(var(--bottom-padding) + var(--vspace-0_75));
    right: calc(var(--gutter) - 1.2rem);
  }
}

@media screen and (max-width: 1000px) {
  .s-footer__about > * {
    width: 100%;
  }

  .ss-go-top {
    right: calc(var(--gutter) / 2);
  }
}

@media screen and (max-width: 800px) {
  .ss-copyright span {
    display: block;
  }

  .ss-copyright span::after {
    display: none;
  }

  .ss-go-top {
    right: calc(var(--gutter) / 2 - var(--vspace-0_25));
  }
}

@media screen and (max-width: 600px) {
  .ss-go-top {
    right: calc(var(--vspace-0_25) * -1);
  }
}

@media screen and (max-width: 400px) {
  .ss-go-top {
    right: -2rem;
  }
}

/* -------[ GLOBAL UI ELEMENTS ]------- */

/* -------[ SCROLL BAR ]------- */
::-webkit-scrollbar {
  width: 10px !important;
}

::-webkit-scrollbar-track {
  background: hsla(0, 0%, 10%, 1) !important;
}

::-webkit-scrollbar-thumb {
  background: #ef233c !important;
  border-radius: 5px !important;
}

* {
  scrollbar-color: #ef233c hsla(0, 0%, 10%, 1) !important;
}

::selection {
  background-color: #ef233c !important;
  color: white !important;
}

/* -------[ NOTIFICATION ]------- */
.notification {
  position: fixed !important;
  top: -100px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  background: rgba(255, 255, 255, 0.1) !important;
  backdrop-filter: blur(40px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(40px) saturate(180%) !important;
  padding: 8px 36px !important;
  border-radius: 10px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  color: #ffffff !important;
  letter-spacing: 0.5px !important;
  transition: top 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) !important;
  z-index: 2147483647 !important;
  pointer-events: none !important;
  isolation: isolate !important;
}

.notification.show {
  top: 35px !important;
}

/* -------[ NOTIFICATION RESPONSIVE ]------- */
@media (min-width: 1920px) {
  .notification.show {
    top: 35px !important;
  }
}

@media (min-width: 1200px) and (max-width: 1919px) {
  .notification.show {
    top: 35px !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .notification.show {
    top: 35px !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .notification.show {
    top: 15px !important;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .notification.show {
    top: 20px !important;
  }
}

@media (max-width: 575px) {
  .notification.show {
    top: 15px !important;
  }
}

/* -------[ CELEBRATION SPARKS ANIMATION START ]------- */
#celebrationContainer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  overflow: hidden;
}

/* Spark Animation Variants */
.spark {
  position: absolute;
  font-size: 24px;
  pointer-events: none;
  opacity: 0.85;
}

.spark.anim-1 {
  animation: sparkSlantLeft 1.8s ease-out forwards;
}

.spark.anim-2 {
  animation: sparkSlantRight 1.6s ease-out forwards;
}

.spark.anim-3 {
  animation: sparkStraightUp 1.5s ease-out forwards;
}

.spark.anim-4 {
  animation: sparkWaveLeft 2s ease-out forwards;
}

.spark.anim-5 {
  animation: sparkWaveRight 1.9s ease-out forwards;
}

.spark.anim-6 {
  animation: sparkZigzagLeft 2.2s ease-out forwards;
}

.spark.anim-7 {
  animation: sparkZigzagRight 2.1s ease-out forwards;
}

.spark.anim-8 {
  animation: sparkFarLeft 2.3s ease-out forwards;
}

.spark.anim-9 {
  animation: sparkFarRight 2.2s ease-out forwards;
}

.spark.anim-10 {
  animation: sparkMiddleLeft 1.7s ease-out forwards;
}

.spark.anim-11 {
  animation: sparkMiddleRight 1.8s ease-out forwards;
}

.spark.anim-12 {
  animation: sparkBurstLeft 2s ease-out forwards;
}

.spark.anim-13 {
  animation: sparkBurstRight 1.9s ease-out forwards;
}

/* Spark Animations - All Going Upward with More Spread */
@keyframes sparkSlantLeft {
  0% {
    transform: translate(0, 0) scale(0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.9;
  }
  100% {
    transform: translate(-250px, -400px) scale(1.5) rotate(-360deg);
    opacity: 0;
  }
}

@keyframes sparkSlantRight {
  0% {
    transform: translate(0, 0) scale(0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.85;
  }
  100% {
    transform: translate(250px, -380px) scale(1.3) rotate(360deg);
    opacity: 0;
  }
}

@keyframes sparkStraightUp {
  0% {
    transform: translate(0, 0) scale(0) rotate(0deg);
    opacity: 0;
  }
  15% {
    opacity: 0.95;
  }
  100% {
    transform: translate(0, -450px) scale(1.8) rotate(720deg);
    opacity: 0;
  }
}

@keyframes sparkWaveLeft {
  0% {
    transform: translate(0, 0) scale(0) rotate(0deg);
    opacity: 0;
  }
  12% {
    opacity: 0.8;
  }
  25% {
    transform: translate(-80px, -120px) scale(0.8) rotate(90deg);
  }
  50% {
    transform: translate(-150px, -250px) scale(1.2) rotate(180deg);
  }
  100% {
    transform: translate(-200px, -420px) scale(1.4) rotate(360deg);
    opacity: 0;
  }
}

@keyframes sparkWaveRight {
  0% {
    transform: translate(0, 0) scale(0) rotate(0deg);
    opacity: 0;
  }
  12% {
    opacity: 0.75;
  }
  25% {
    transform: translate(80px, -120px) scale(0.8) rotate(-90deg);
  }
  50% {
    transform: translate(150px, -250px) scale(1.2) rotate(-180deg);
  }
  100% {
    transform: translate(200px, -420px) scale(1.4) rotate(-360deg);
    opacity: 0;
  }
}

@keyframes sparkZigzagLeft {
  0% {
    transform: translate(0, 0) scale(0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.7;
  }
  20% {
    transform: translate(-100px, -100px) scale(0.7) rotate(72deg);
  }
  40% {
    transform: translate(-50px, -200px) scale(1) rotate(144deg);
  }
  60% {
    transform: translate(-180px, -300px) scale(1.3) rotate(216deg);
  }
  100% {
    transform: translate(-280px, -480px) scale(1.6) rotate(360deg);
    opacity: 0;
  }
}

@keyframes sparkZigzagRight {
  0% {
    transform: translate(0, 0) scale(0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.8;
  }
  20% {
    transform: translate(100px, -100px) scale(0.7) rotate(-72deg);
  }
  40% {
    transform: translate(50px, -200px) scale(1) rotate(-144deg);
  }
  60% {
    transform: translate(180px, -300px) scale(1.3) rotate(-216deg);
  }
  100% {
    transform: translate(280px, -480px) scale(1.6) rotate(-360deg);
    opacity: 0;
  }
}

@keyframes sparkFarLeft {
  0% {
    transform: translate(0, 0) scale(0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.88;
  }
  100% {
    transform: translate(-350px, -420px) scale(1.4) rotate(-540deg);
    opacity: 0;
  }
}

@keyframes sparkFarRight {
  0% {
    transform: translate(0, 0) scale(0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.82;
  }
  100% {
    transform: translate(350px, -420px) scale(1.4) rotate(540deg);
    opacity: 0;
  }
}

@keyframes sparkMiddleLeft {
  0% {
    transform: translate(0, 0) scale(0) rotate(0deg);
    opacity: 0;
  }
  12% {
    opacity: 0.78;
  }
  100% {
    transform: translate(-120px, -360px) scale(1.2) rotate(-270deg);
    opacity: 0;
  }
}

@keyframes sparkMiddleRight {
  0% {
    transform: translate(0, 0) scale(0) rotate(0deg);
    opacity: 0;
  }
  12% {
    opacity: 0.84;
  }
  100% {
    transform: translate(120px, -360px) scale(1.2) rotate(270deg);
    opacity: 0;
  }
}

@keyframes sparkBurstLeft {
  0% {
    transform: translate(0, 0) scale(0) rotate(0deg);
    opacity: 0;
  }
  8% {
    opacity: 0.92;
  }
  30% {
    transform: translate(-180px, -150px) scale(1.1) rotate(120deg);
  }
  100% {
    transform: translate(-320px, -450px) scale(1.7) rotate(480deg);
    opacity: 0;
  }
}

@keyframes sparkBurstRight {
  0% {
    transform: translate(0, 0) scale(0) rotate(0deg);
    opacity: 0;
  }
  8% {
    opacity: 0.87;
  }
  30% {
    transform: translate(180px, -150px) scale(1.1) rotate(-120deg);
  }
  100% {
    transform: translate(320px, -450px) scale(1.7) rotate(-480deg);
    opacity: 0;
  }
}

/* Emoji Celebration Variants */
.celebration-emoji {
  position: absolute;
  font-size: 32px;
  pointer-events: none;
  opacity: 11;
}

.celebration-emoji.emoji-1 {
  animation: emojiFloatLeft 2.3s ease-out forwards;
}

.celebration-emoji.emoji-2 {
  animation: emojiFloatRight 2.1s ease-out forwards;
}

.celebration-emoji.emoji-3 {
  animation: emojiBounceUp 2.5s ease-out forwards;
}

.celebration-emoji.emoji-4 {
  animation: emojiSpiralLeft 2.4s ease-out forwards;
}

.celebration-emoji.emoji-5 {
  animation: emojiSpiralRight 2.2s ease-out forwards;
}

.celebration-emoji.emoji-6 {
  animation: emojiSlideLeft 2.6s ease-out forwards;
}

.celebration-emoji.emoji-7 {
  animation: emojiSlideRight 2.3s ease-out forwards;
}

.celebration-emoji.emoji-8 {
  animation: emojiWideLeft 2.4s ease-out forwards;
}

.celebration-emoji.emoji-9 {
  animation: emojiWideRight 2.5s ease-out forwards;
}

.celebration-emoji.emoji-10 {
  animation: emojiCenterUp 2.2s ease-out forwards;
}

.celebration-emoji.emoji-11 {
  animation: emojiSpreadLeft 2.7s ease-out forwards;
}

.celebration-emoji.emoji-12 {
  animation: emojiSpreadRight 2.6s ease-out forwards;
}

/* Emoji Animations - All Going Upward with Wide Spread */
@keyframes emojiFloatLeft {
  0% {
    transform: translate(0, 0) scale(0) rotate(0deg);
    opacity: 0;
  }
  15% {
    opacity: 0.9;
  }
  100% {
    transform: translate(-180px, -350px) scale(1.2) rotate(-180deg);
    opacity: 0;
  }
}

@keyframes emojiFloatRight {
  0% {
    transform: translate(0, 0) scale(0) rotate(0deg);
    opacity: 0;
  }
  15% {
    opacity: 0.85;
  }
  100% {
    transform: translate(180px, -350px) scale(1.2) rotate(180deg);
    opacity: 0;
  }
}

@keyframes emojiBounceUp {
  0% {
    transform: translate(0, 0) scale(0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.95;
  }
  20% {
    transform: translate(0, -80px) scale(1.3) rotate(45deg);
  }
  40% {
    transform: translate(0, -140px) scale(0.9) rotate(90deg);
  }
  60% {
    transform: translate(0, -220px) scale(1.4) rotate(180deg);
  }
  100% {
    transform: translate(0, -400px) scale(0.8) rotate(360deg);
    opacity: 0;
  }
}

@keyframes emojiSpiralLeft {
  0% {
    transform: translate(0, 0) scale(0) rotate(0deg);
    opacity: 0;
  }
  12% {
    opacity: 0.8;
  }
  25% {
    transform: translate(-60px, -100px) scale(0.9) rotate(90deg);
  }
  50% {
    transform: translate(-120px, -200px) scale(1.3) rotate(180deg);
  }
  75% {
    transform: translate(-180px, -300px) scale(1.1) rotate(270deg);
  }
  100% {
    transform: translate(-240px, -420px) scale(1.4) rotate(360deg);
    opacity: 0;
  }
}

@keyframes emojiSpiralRight {
  0% {
    transform: translate(0, 0) scale(0) rotate(0deg);
    opacity: 0;
  }
  12% {
    opacity: 0.75;
  }
  25% {
    transform: translate(60px, -100px) scale(0.9) rotate(-90deg);
  }
  50% {
    transform: translate(120px, -200px) scale(1.3) rotate(-180deg);
  }
  75% {
    transform: translate(180px, -300px) scale(1.1) rotate(-270deg);
  }
  100% {
    transform: translate(240px, -420px) scale(1.4) rotate(-360deg);
    opacity: 0;
  }
}

@keyframes emojiSlideLeft {
  0% {
    transform: translate(0, 0) scale(0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.7;
  }
  100% {
    transform: translate(-300px, -380px) scale(1.5) rotate(-540deg);
    opacity: 0;
  }
}

@keyframes emojiSlideRight {
  0% {
    transform: translate(0, 0) scale(0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.8;
  }
  100% {
    transform: translate(300px, -380px) scale(1.5) rotate(540deg);
    opacity: 0;
  }
}

@keyframes emojiWideLeft {
  0% {
    transform: translate(0, 0) scale(0) rotate(0deg);
    opacity: 0;
  }
  12% {
    opacity: 0.88;
  }
  100% {
    transform: translate(-380px, -400px) scale(1.3) rotate(-420deg);
    opacity: 0;
  }
}

@keyframes emojiWideRight {
  0% {
    transform: translate(0, 0) scale(0) rotate(0deg);
    opacity: 0;
  }
  12% {
    opacity: 0.83;
  }
  100% {
    transform: translate(380px, -400px) scale(1.3) rotate(420deg);
    opacity: 0;
  }
}

@keyframes emojiCenterUp {
  0% {
    transform: translate(0, 0) scale(0) rotate(0deg);
    opacity: 0;
  }
  15% {
    opacity: 0.92;
  }
  100% {
    transform: translate(0, -480px) scale(1.6) rotate(600deg);
    opacity: 0;
  }
}

@keyframes emojiSpreadLeft {
  0% {
    transform: translate(0, 0) scale(0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.78;
  }
  35% {
    transform: translate(-150px, -140px) scale(1.1) rotate(-150deg);
  }
  100% {
    transform: translate(-340px, -460px) scale(1.5) rotate(-660deg);
    opacity: 0;
  }
}

@keyframes emojiSpreadRight {
  0% {
    transform: translate(0, 0) scale(0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.82;
  }
  35% {
    transform: translate(150px, -140px) scale(1.1) rotate(150deg);
  }
  100% {
    transform: translate(340px, -460px) scale(1.5) rotate(660deg);
    opacity: 0;
  }
}

/* Button Pulse Effect */
#stayCuriousBtn.celebrating {
  animation: btnPulse 0.5s ease;
}

@keyframes btnPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* Sparkle Effect Variants */
.sparkle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  border-radius: 50%;
  box-shadow: 0 0 10px #ffd700;
  opacity: 0.9;
}

.sparkle.sparkle-1 {
  animation: sparkleLeft 1.2s ease-out forwards;
}

.sparkle.sparkle-2 {
  animation: sparkleRight 1.1s ease-out forwards;
}

.sparkle.sparkle-3 {
  animation: sparkleUp 1.3s ease-out forwards;
}

.sparkle.sparkle-4 {
  animation: sparkleDiagonalLeft 1.4s ease-out forwards;
}

.sparkle.sparkle-5 {
  animation: sparkleDiagonalRight 1.2s ease-out forwards;
}

.sparkle.sparkle-6 {
  animation: sparkleFarLeft 1.5s ease-out forwards;
}

.sparkle.sparkle-7 {
  animation: sparkleFarRight 1.4s ease-out forwards;
}

.sparkle.sparkle-8 {
  animation: sparkleMiddle 1.3s ease-out forwards;
}

/* Sparkle Animations - All Going Upward with Wide Coverage */
@keyframes sparkleLeft {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(-150px, -200px) scale(0);
    opacity: 0;
  }
}

@keyframes sparkleRight {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(150px, -200px) scale(0);
    opacity: 0;
  }
}

@keyframes sparkleUp {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(0, -250px) scale(0);
    opacity: 0;
  }
}

@keyframes sparkleDiagonalLeft {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(-120px, -230px) scale(0);
    opacity: 0;
  }
}

@keyframes sparkleDiagonalRight {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(120px, -230px) scale(0);
    opacity: 0;
  }
}

@keyframes sparkleFarLeft {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.95;
  }
  100% {
    transform: translate(-220px, -280px) scale(0);
    opacity: 0;
  }
}

@keyframes sparkleFarRight {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.92;
  }
  100% {
    transform: translate(220px, -280px) scale(0);
    opacity: 0;
  }
}

@keyframes sparkleMiddle {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.88;
  }
  100% {
    transform: translate(0, -300px) scale(0);
    opacity: 0;
  }
}
/* -------[ CELEBRATION SPARKS ANIMATION END ]------- */

/* -------[ VERSION START ]------- */
.version-badge {
  display: inline-flex;
  margin-top: 20px;
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #767776c7;
  border-radius: 4px;
  padding: 3px 14px;
  font-family: monospace;
  font-size: 11px;
  user-select: none;
}

@media (max-width: 600px) {
  .version-badge {
    display: none;
  }
}
/* -------[ VERSION END ]------- */
