@font-face {
    font-family: "Lora";
    src: url("lora-variablefont_wght-webfont.woff2") format("woff2"),
        url("lora-variablefont_wght-webfont.woff") format("woff");
}

@font-face {
    font-family: "Agbalumo";
    font-weight: 400;
    src: url("agbalumo-regular-webfont.woff2") format("woff2"),
        url("agbalumo-regular-webfont.woff") format("woff");
}

/* === Design Tokens === */
:root {
    --color-primary: #5AFB65;
    --color-primary-light: #8FF384;
    --color-dark: #0a191a;
    --color-dark-alt: #0D1617;
    --color-light: #f8f9fa;
    --color-text: #333;
    --color-text-muted: #666;
    --color-border: #e0e0e0;
    --font-display: "Agbalumo", system-ui;
    --font-serif: "Lora", system-ui;
    --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --max-width: 1200px;
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 2rem;
    --radius-pill: 2rem;

    --color-link: #007aff;
    --color-link-hover: #0051d5;
    --color-btn: #252525;
    --color-btn-hover: #000;

    --blur-sheet: blur(48px) saturate(180%);
    --shadow-sheet:
        0 28px 72px rgba(0, 0, 0, 0.18),
        0 4px 16px rgba(0, 0, 0, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.85);
    --shadow-btn:
        0 2px 10px rgba(0, 122, 255, 0.36),
        0 1px 2px rgba(0, 0, 0, 0.1);

    --dur-enter: 380ms;
    --dur-close: 220ms;
    --ease-spring: cubic-bezier(0.34, 1.22, 0.64, 1);
    --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* === Reset & Base === */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-light);
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

textarea {
    font-family: var(--font-sans);
}

/* Hide number input arrows */
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;
}

/* Hide datalist calendar icon */
input::-webkit-calendar-picker-indicator {
    opacity: 0;
}

/* Scrollbar hide utility */
.u-scroll-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.u-scroll-hide::-webkit-scrollbar {
    display: none;
}

.loader {
    width: 22px;
    height: 22px;
    border: 3px solid #000000;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* === Accessibility === */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--color-primary);
    color: var(--color-dark);
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    z-index: 1000;
    border-radius: 0 0 var(--radius-sm) 0;
}

.skip-link:focus {
    top: 0;
}

*:focus-visible,
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px #94a5b159;
}

/* === Button === */
.btn {
    display: inline-block;
    padding: 0.75rem 1.25rem;
    border: none;
    border-radius: var(--radius-pill);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
}

.btn--primary {
    background: var(--color-primary);
    color: var(--color-dark);
}

.btn--primary:hover {
    background: #77fe80;
    transform: translateY(-2px);
}

.btn--full {
    width: 100%;
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
    border-radius: 12px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: .5rem;
}

/* === Site Header === */
.site-header {
    padding-top: 1.5rem;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
}

.site-header__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.site-header__nav {
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
}

.site-header__icon-link {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgb(0, 0, 0);
    color: var(--color-dark);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-header__icon-link:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* === Hero === */
.hero {
    background: linear-gradient(180deg, #ffffff 0%, #c8c8c8 100%);
    padding-top: 6rem;
    text-align: center;
}

.hero__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    overflow: hidden;
}

.hero__title {
    font-size: 3rem;
    font-weight: 650;
    margin-bottom: 0.25rem;
    color: var(--color-dark);
}

.hero__title-brand {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 3.5rem;
}

.hero__subtitle {
    font-size: 1.35rem;
    color: var(--color-text);
    margin: 0 auto 2rem;
    padding-inline: 1rem;
    max-width: 600px;
    line-height: 1.75rem;
}

.hero__subtitle-highlight {
    color: black;
    font-weight: 500;
}

.hero__cta {
    margin-bottom: 3rem;
    font-size: 1.125rem;
}

.hero__devices {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 0.5rem;
    max-width: 900px;
    margin: 0 auto;
    padding-inline: 0.25rem;
    padding-bottom: 2rem;
}

.hero__device {
    flex: 1;
    max-width: 280px;
    width: 150px;
    transition: transform 0.1s ease-out;
    will-change: transform;
}

/* === Mission === */
.mission {
    background: var(--color-dark);
    color: #fff;
    padding: 8rem 2rem;
    position: relative;
    overflow: hidden;
    height: 100vh;
    max-height: 1015px;
    display: flex;
    align-items: center;
}

.mission__inner {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.mission__text {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    font-family: var(--font-serif);
    font-weight: 400;
    color: rgb(201, 201, 201);
}

.mission__text-strong {
    color: white;
    font-weight: 600;
}

/* === Feature Grid === */
.features {
    padding: 0.75rem;
}

.features__grid {
    max-width: 1920px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

/* === Feature Card === */
.feature-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 540px;
}

.feature-card--dark {
    background: var(--color-dark);
    color: #fff;
}

.feature-card--green {
    background: var(--color-primary-light);
    color: var(--color-dark);
}

.feature-card--blue {
    background: url(noise.svg);
    color: var(--color-dark);
}

.feature-card--teal {
    background: linear-gradient(0deg, #006657 0%, #009F87 100%);
    color: #fff;
}

/* Blue tint overlay for noise card */
.feature-card--blue::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, #466b835c 0%, #6999ab 100%);
    mix-blend-mode: color;
}

.feature-card__body {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.feature-card__text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 60%;
    align-self: center;
    gap: 1.5rem;
}

.feature-card__title {
    font-size: 2rem;
    line-height: 1.2;
    font-weight: 600;
    text-align: center;
}

.feature-card__description {
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.6;
    opacity: 0.9;
    text-align: center;
}

.feature-card__icon {
    width: 48px;
    height: 48px;
    background-color: black;
    border-radius: 100%;
    display: flex;
    padding: 8px;
}

.feature-card__icon svg {
    width: 100%;
    height: 100%;
}

/* Heatmap visual inside feature card */
.feature-card__visual {
    margin-top: auto;
}

/* Calendar image at bottom of feature card */
.feature-card__calendar {
    margin-top: auto;
    display: flex;
    justify-content: center;
}

.feature-card__calendar img {
    object-fit: cover;
    max-width: min(80%, 400px);
}

/* === Heatmap === */
.heatmap-wrap {
    width: 100%;
    margin: 0 auto;
}

.heatmap {
    display: grid;
    gap: 4px;
    width: 100%;
}

.heatmap__cell {
    aspect-ratio: 1 / 1;
    border-radius: 4px;
    background-color: rgb(143, 243, 132);
}

/* === Waitlist Section === */
.waitlist {
    background-color: white;
    padding-inline: clamp(0.01px, calc((100% - 42rem) / 2), 9999px);
}

.waitlist__inner {
    padding-block: 4rem;
}

.waitlist__header {
    display: flex;
    flex-direction: column;
    padding-inline: 1rem;
    gap: 4px;
    margin-bottom: 3rem;
    text-align: center;
}

.waitlist__title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-dark);
}

.waitlist__subtitle {
    font-size: 1.125rem;
    color: var(--color-text);
    line-height: 1.25;
    font-weight: 500;
}

/* === Waitlist Form === */
.waitlist-form {
    display: flex;
    flex-direction: column;
    padding-inline: 1rem;
}

.waitlist-form__group {
    margin-bottom: 2rem;
}

/* === Form Field === */
.form-field {
    position: relative;
    width: 100%;
    display: block;
}

.form-field__input,
.form-field__textarea {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    min-height: 58px;
    height: 58px;
    padding: 20px 15px 6px;
    border: 1px solid #b2b2b2;
    border-radius: 12px;
    outline: none;
    caret-color: #007aff;
    box-sizing: border-box;
    font-size: 17px;
    font-family: var(--font-sans);
}

.form-field__textarea {
    height: unset;
    max-height: calc(58px * 3);
    padding-top: 26px;
    resize: vertical;
}

.form-field__input::placeholder,
.form-field__textarea::placeholder {
    color: transparent;
}

/* Floating label */
.form-field__label {
    position: absolute;
    left: 0;
    top: 0;
    padding-left: 15px;
    padding-top: 15px;
    font-weight: 400;
    color: #86868b;
    border: 1px solid #b2b2b2;
    border-bottom: none;
    background-color: white;
    border-radius: 12px 12px 0 0;
    width: 100%;
    pointer-events: none;
    transition: all 0.2s ease;
}

.form-field__input:focus+.form-field__label,
.form-field__input:not(:placeholder-shown)+.form-field__label,
.form-field__textarea:focus+.form-field__label,
.form-field__textarea:not(:placeholder-shown)+.form-field__label {
    font-size: 13px;
    padding-top: 6px;
}

/* Autofill override */
.form-field__input:-webkit-autofill,
.form-field__input:-webkit-autofill:hover,
.form-field__input:-webkit-autofill:focus {
    -webkit-background-clip: text;
    -webkit-text-fill-color: #000;
    transition: background-color 5000s ease-in-out 0s;
    -webkit-box-shadow: 0 0 0 30px #fff inset !important;
}

.form-field__hint {
    font-size: 0.85rem;
    color: #737373;
    font-weight: 400;
    padding-block: 0.25rem;
    line-height: 1.1rem;
}

/* === Toggle (checkbox) === */
.form-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-toggle__label {
    color: #000;
    font-weight: 500;
}

.form-toggle__label strong {
    font-weight: 800;
}

.form-toggle__switch {
    position: relative;
    display: inline-block;
    width: 46px;
    height: 22px;
}

.form-toggle__input {
    opacity: 0;
    width: 0;
    height: 0;
}

.form-toggle__input:focus+.form-toggle__slider {
    box-shadow: 0 0 0 3px #94a5b159;
}

.form-toggle__slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background-color: #e5e5ea;
    border-radius: 999px;
    transition: background-color 0.25s ease;
}

.form-toggle__slider::before {
    content: "";
    position: absolute;
    height: 18px;
    width: 24px;
    left: 2px;
    top: 2px;
    background-color: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
    transition: transform 0.25s ease;
}

.form-toggle__input:checked+.form-toggle__slider {
    background-color: #34c759;
}

.form-toggle__input:checked+.form-toggle__slider::before {
    transform: translateX(18px);
}

/* === Radio List === */
.radio-list {
    list-style: none;
    width: 100%;
    font-size: 0.875rem;
    font-weight: 500;
    color: #1f2937;
    border: 1px solid #d1d5db;
    border-radius: 12px;
}

@media (min-width: 640px) {
    .radio-list {
        display: flex;
    }
}

.radio-list__item {
    width: 100%;
    border-bottom: 1px solid #d1d5db;
}

@media (min-width: 640px) {
    .radio-list__item {
        border-bottom: 0;
        border-right: 1px solid #d1d5db;
    }
}

.radio-list__item:last-child {
    border-bottom: 0;
    border-right: 0;
}

.radio-list__row {
    display: flex;
    align-items: center;
    padding-left: 0.75rem;
    height: 52px;
}

.radio-list__input {
    width: 1rem;
    height: 1rem;
    min-width: 1rem;
    min-height: 1rem;
    flex-shrink: 0;
    appearance: none;
    border: 1px solid #9ca3af;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
}

.radio-list__input:checked {
    border-color: #3b82f6;
    border-width: 2px;
}

.radio-list__input:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0.5rem;
    height: 0.5rem;
    background-color: #3b82f6;
    border-radius: 50%;
}

.radio-list__input:focus {
    outline: none;
    box-shadow: 0 0 0 2px #dbeafe;
}

.radio-list__label {
    width: 100%;
    display: flex;
    align-items: center;
    height: 100%;
    margin-left: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #1f2937;
    cursor: pointer;
}

/* === Form Row (side-by-side fields) === */
.form-row {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
}

.form-row__col {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 26px;
    width: 100%;
}

/* === About Section === */
.about {
    position: relative;
    background: #fff;
    padding-block: 2rem;
    text-align: center;
}

.about__box {
    padding-inline: 0.5rem;
}

.about__inner {
    margin: 0 auto;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.15);
    border-radius: var(--radius-lg);
    display: flex;
    justify-content: center;
    align-items: center;
    padding-block: 5rem;
    padding-inline: 2rem;
}

.about__content {
    max-width: 600px;
}

.about__title {
    font-weight: 400;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--color-dark);
}

.about__title strong {
    font-weight: 600;
}

.about__text {
    font-size: 1.125rem;
    line-height: 1.5;
    color: var(--color-text);
    margin-bottom: 1.5rem;
}

.about__author {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 3rem 0;
}

.about__author-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
}

.about__avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
}

.about__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about__byline {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
    font-weight: 400;
    padding-block: 0.5rem;
    font-size: 0.95rem;
    zoom: 0.95;
}

.about__byline strong {
    font-weight: 700;
}

.about__byline-brand {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 1.35rem;
    margin-bottom: 6px;
}

.about__cta {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
    min-width: 250px;
    font-weight: 400;
    padding-block: 0.5rem;
}

.about__cta strong {
    font-weight: 700;
}

.about__cta-brand {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 1.35rem;
    margin-bottom: 6px;
}

/* === Site Footer === */
.site-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-color: white;
    height: 50px;
    gap: 6px;
    font-weight: 500;
}

/* === Responsive === */
@media (max-width: 736px) {
    .hero__inner {
        zoom: 0.9;
    }

    .features {
        padding-inline: 0;
    }

    .features__grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        height: 500px;
    }

    .feature-card__text {
        width: 90%;
    }
}

/* ─── Block: modal ───────────────────────────────────────────── */
.modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.45);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-inline: 20px;
    animation: modal-fade-in var(--dur-enter) var(--ease-out) both;
}

.modal--closing {
    animation: modal-fade-out var(--dur-close) var(--ease-out) both;
}

.modal--closing .modal__dialog {
    animation: modal-dialog-out var(--dur-close) var(--ease-out) both;
}

/* ─── Element: modal__underlay ───────────────────────────────── */
.modal__underlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    cursor: pointer;
}

/* ─── Element: modal__dialog ─────────────────────────────────── */
.modal__dialog {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow: visible;
    /* allow confetti to spill outside */

    margin-top: clamp(60px, 14vh, 140px);
    width: 100%;
    max-width: 450px;

    background: white;
    -webkit-backdrop-filter: var(--blur-sheet);
    backdrop-filter: var(--blur-sheet);
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 30px;
    box-shadow: var(--shadow-sheet);
    padding: 36px 28px 24px;

    animation: modal-dialog-in var(--dur-enter) var(--ease-spring) both;
}

/* Top sheen */
.modal__dialog::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    border-radius: inherit;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.55) 0%,
            rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
    z-index: 0;
}

.view-center {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background-color: #f8f8f8;
}

.view-center__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 450px;
}

/* ─── Element: modal__icon-wrap ──────────────────────────────── */
.modal__icon-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    flex-shrink: 0;
    margin-bottom: 20px;
    z-index: 1;
    animation: icon-wrap-in 500ms var(--ease-spring) 100ms both;
}

/* ─── Element: modal__icon (animated SVG) ────────────────────── */
.modal__icon {
    width: 88px;
    height: 88px;
    overflow: visible;
    position: relative;
    z-index: 1;
    /* filter: drop-shadow(0 4px 14px rgba(52, 199, 89, 0.4)); */
}

.modal__icon__fill {
    fill: none;
}

.modal__icon__ring {
    fill: none;
    /* stroke: url(#icon-gradient); */
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-dasharray: 62.83;
    stroke-dashoffset: 62.83;
    animation: stroke-draw 420ms var(--ease-out) 150ms both;
}

.modal__icon__check {
    fill: none;
    /* stroke: url(#icon-gradient); */
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 14;
    stroke-dashoffset: 14;
    animation: stroke-draw 280ms var(--ease-out) 520ms both;
}

/* ─── Element: modal__confetti-canvas ────────────────────────── */
.modal__confetti-canvas {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
}

/* ─── Element: modal__title ──────────────────────────────────── */
.modal__title {
    margin: 0 0 12px;
    font-size: 1.375rem;
    font-weight: 700;
    letter-spacing: -0.35px;
    color: #1c1c1e;
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

/* ─── Element: modal__body ───────────────────────────────────── */
.modal__body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

/* ─── Element: modal__text ───────────────────────────────────── */
.modal__text {
    margin: 0;
    line-height: 1.5;
}

.modal__text--dark {
    font-size: 0.9375rem;
    font-weight: 500;
    color: #3a3a3c;
}

.modal__text--donate {
    font-size: 0.875rem;
    color: #6c6c70;
}

/* ─── Element: modal__link ───────────────────────────────────── */
.modal__link {
    color: var(--color-link);
    text-decoration: none;
    font-weight: 500;
}

.modal__link:hover {
    color: var(--color-link-hover);
    text-decoration: underline;
}

/* ─── Element: modal__actions ────────────────────────────────── */
.modal__actions {
    display: flex;
    width: 100%;
    position: relative;
    z-index: 1;
}

/* ─── Element: modal__btn ────────────────────────────────────── */
.modal__btn {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
    letter-spacing: -0.1px;
    cursor: pointer;
    text-align: center;
    transition:
        background-color 0.15s ease,
        transform 0.1s ease,
        box-shadow 0.15s ease;
    -webkit-tap-highlight-color: transparent;
}

.modal__btn--primary {
    background: var(--color-btn);
    color: #fff;
    /* box-shadow: var(--shadow-btn); */
}

.modal__btn--primary:hover {
    background: var(--color-btn-hover);
    /* box-shadow: 0 4px 16px rgba(0, 122, 255, 0.42); */
}

.modal__btn--primary:active {
    transform: scale(0.97);
    /* box-shadow: 0 1px 4px rgba(0, 122, 255, 0.3); */
}

/* ─── Keyframes ───────────────────────────────────────────────── */
@keyframes modal-fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes modal-fade-out {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@keyframes modal-dialog-in {
    from {
        opacity: 0;
        transform: scale(0.86) translateY(16px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes modal-dialog-out {
    from {
        opacity: 1;
        transform: scale(1);
    }

    to {
        opacity: 0;
        transform: scale(0.92) translateY(8px);
    }
}

@keyframes icon-wrap-in {
    from {
        opacity: 0;
        transform: scale(0.7);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes stroke-draw {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes fill-fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}