
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");

/* =========================
   RESET & BASE
========================= */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    min-width: 320px;
    font-family: "Inter", Arial, sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #475569;
    background: #f8fafc;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease, background-color 0.2s ease;
}

a:hover {
    color: #0891b2;
}

a:focus-visible,
input:focus-visible {
    outline: 2px solid #06b6d4;
    outline-offset: 3px;
}

ul {
    list-style: none;
}

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

input,
button {
    font: inherit;
}

fieldset {
    min-width: 0;
    border: 0;
}

h1,
h2,
h3 {
    color: #0f172a;
    line-height: 1.3;
    letter-spacing: -0.03em;
}

h1 {
    font-size: 2rem;
    font-weight: 800;
}

h3 {
    font-size: 1.125rem;
    font-weight: 700;
}

p {
    margin-bottom: 1rem;
}

::selection {
    color: #fff;
    background: #0891b2;
}

/* =========================
   MAIN LAYOUT
========================= */

.bg {
    min-height: 100vh;
    background:
        radial-gradient(
            ellipse at 90% 10%,
            rgba(6, 182, 212, 0.07),
            transparent 40%
        ),
        #f8fafc;
}

.main {
    width: min(100% - 48px, 1200px);
    margin-inline: auto;
}

.wrapper,
.container_16,
.grid_16 {
    width: 100%;
    min-width: 0;
}

.clear {
    clear: both;
}

.padding {
    padding: 40px 0 72px;
}

/* =========================
   HEADER
========================= */

header {
    position: relative;
    z-index: 100;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 2px 16px rgba(15, 23, 42, 0.04);
}

header .row-1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    min-height: 92px;
}

header h1 {
    flex-shrink: 0;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.07em;
}

header h1 a {
    color: #0f172a;
}

header h1 a:hover {
    color: #0891b2;
}

header nav {
    min-width: 0;
}

/* =========================
   NAVIGATION
========================= */

.sf-menu {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
}

.sf-menu li {
    position: relative;
}

.sf-menu > li > a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 10px 13px;
    border-radius: 8px;
    color: #334155;
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
}

.sf-menu > li:hover > a,
.sf-menu > li:focus-within > a {
    color: #0891b2;
    background: #ecfeff;
}

/* Dropdown */

.sf-menu ul {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    z-index: 110;
    width: max-content;
    min-width: 210px;
    max-width: min(320px, 90vw);
    padding: 8px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);

    transition:
        opacity 0.2s ease,
        visibility 0.2s ease,
        transform 0.2s ease;
}

.sf-menu li:hover > ul,
.sf-menu li:focus-within > ul {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.sf-menu ul li {
    width: 100%;
}

.sf-menu ul a {
    display: block;
    padding: 11px 14px;
    border-radius: 7px;
    color: #475569;
    font-size: 0.875rem;
    line-height: 1.5;
    overflow-wrap: anywhere;
}

.sf-menu ul a:hover,
.sf-menu ul a:focus-visible {
    color: #0891b2;
    background: #f0fdfa;
}

.sf-menu ul ul {
    top: -8px;
    left: calc(100% + 8px);
}

/* =========================
   MAIN CONTENT
========================= */

#content {
    padding-top: 48px;
}

/* Hero */

.slogan_p5 {
    position: relative;
    margin-bottom: 32px;
    padding: 48px 40px;
    border: 1px solid #cffafe;
    border-radius: 20px;
    background: linear-gradient(
        120deg,
        #ecfeff 0%,
        #f0fdfa 55%,
        #fff 100%
    );
    overflow: hidden;
}

.slogan_p5::after {
    position: absolute;
    top: -85px;
    right: -65px;
    width: 270px;
    height: 270px;
    border: 45px solid rgba(8, 145, 178, 0.055);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.auto-style-font-89ade7 {
    position: relative;
    z-index: 1;
    display: block;
}

.auto-style-font-dc509b {
    display: block;
    max-width: 760px;
    color: #164e63;
    font-size: clamp(1.75rem, 4vw, 3.25rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.045em;
}

/* Slider */

#coin-slider {
    width: 100%;
    min-height: 8px;
    border-radius: 12px;
    overflow: hidden;
}

#coin-slider img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* =========================
   FEATURE GRID
========================= */

.grid_16 > .wrapper.border-bot1 {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    padding-bottom: 48px;
    border-bottom: 1px solid #e2e8f0;
}

.auto-style-f80638 {
    display: none;
}

.grid_16 > .wrapper.border-bot1 > .grid_4 {
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 24px;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.035);

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.grid_16 > .wrapper.border-bot1 > .grid_4:hover {
    border-color: #a5f3fc;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
    transform: translateY(-4px);
}

/* Card illustrations */

.grid_4 figure {
    position: relative;
    width: 100%;
    min-height: 150px;
    margin-bottom: 22px;
    border-radius: 12px;
    background: linear-gradient(135deg, #ecfeff, #d1fae5);
    overflow: hidden;
}

.grid_4 figure a {
    position: absolute;
    inset: 0;
    display: block;
}

.stroke2 {
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(8, 145, 178, 0.2);
    border-radius: 8px;
    pointer-events: none;
}

.grid_4 figure::before {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 64px;
    height: 64px;
    border: 2px solid rgba(8, 145, 178, 0.3);
    border-radius: 18px;
    content: "";
    transform: translate(-50%, -50%) rotate(45deg);
    pointer-events: none;
}

.grid_4 figure::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #0891b2;
    box-shadow: 0 0 0 10px rgba(8, 145, 178, 0.12);
    content: "";
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/* Card text */

.grid_4 h3.border-bot {
    min-height: 3.1em;
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid #e2e8f0;
    font-size: 1.05rem;
    font-weight: 700;
    overflow-wrap: anywhere;
}

.grid_4 p {
    flex-grow: 1;
    margin-bottom: 24px;
    color: #64748b;
    font-size: 0.875rem;
    line-height: 1.8;
}

/* Card buttons */

.link-1 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    min-height: 42px;
    padding: 10px 18px;
    border: 1px solid #0891b2;
    border-radius: 8px;
    background: #0891b2;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.4;
}

.link-1:hover {
    border-color: #0e7490;
    background: #0e7490;
    color: #fff;
}

/* =========================
   PRODUCTS & ANNOUNCEMENTS
========================= */

.grid_16 > .wrapper:not(.border-bot1) {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 3fr);
    gap: 32px;
    padding-top: 48px;
}

.grid_16 > .wrapper:not(.border-bot1) > .grid_4,
.grid_16 > .wrapper:not(.border-bot1) > .grid_12 {
    min-width: 0;
    padding: 32px;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.035);
}

.grid_16 > .wrapper:not(.border-bot1) h1 {
    margin-bottom: 26px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e2e8f0;
    font-size: 1.5rem;
}

/* Products */

.list-1 {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.list-1 li a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #f8fafc;
    color: #334155;
    font-size: 0.875rem;
    font-weight: 500;
}

.list-1 li a::before {
    display: block;
    flex-shrink: 0;
    width: 7px;
    height: 7px;
    margin-right: 12px;
    border-radius: 50%;
    background: #06b6d4;
    content: "";
}

.list-1 li a:hover {
    border-color: #a5f3fc;
    background: #ecfeff;
    color: #0e7490;
}

/* Announcements */

.grid_12 > .wrapper.prev-indent-bot2 {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 22px 0;
    border-bottom: 1px solid #f1f5f9;
}

.grid_12 > .wrapper.prev-indent-bot2:first-of-type {
    padding-top: 0;
}

.grid_12 > .wrapper.prev-indent-bot2:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.dropcap {
    display: flex;
    flex: 0 0 56px;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: #ecfeff;
    color: #0891b2;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
}

.extra-wrap {
    flex: 1;
    min-width: 0;
    color: #64748b;
    font-size: 0.875rem;
    line-height: 1.8;
    overflow-wrap: anywhere;
}

.margin-top {
    margin-top: 2px;
}

.p0 {
    margin-bottom: 8px;
}

.color-2 {
    color: #64748b;
}

.link-3 {
    color: #0891b2;
    font-size: 0.8125rem;
    font-weight: 600;
}

.link-4 {
    color: #0f172a;
    font-size: 0.9375rem;
    font-weight: 700;
}

.link-3:hover,
.link-4:hover {
    color: #0e7490;
}

/* =========================
   FOOTER
========================= */

body > .main:has(> footer) {
    width: 100%;
    max-width: none;
    margin: 0;
    padding-inline: max(24px, calc((100% - 1200px) / 2));
    background: #0f172a;
}

footer {
    padding: 48px 0 24px;
    color: #94a3b8;
    font-size: 0.875rem;
}

footer a {
    color: #cbd5e1;
}

footer a:hover {
    color: #67e8f9;
}

/* Footer top */

footer > .wrapper.margin-bot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 32px;
    margin-bottom: 40px;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.logo-1 a {
    display: inline-block;
    color: #fff;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.07em;
}

.logo-1 a:hover {
    color: #67e8f9;
}

/* Newsletter */

.box-form {
    width: min(100%, 520px);
}

.box-form > .wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 16px;
}

.text-form {
    color: #e2e8f0;
    font-size: 0.875rem;
    font-weight: 500;
}

#form-bot {
    min-width: 0;
}

.form-bot {
    display: flex;
    align-items: stretch;
    gap: 8px;
}

#ebulten {
    width: min(100%, 240px);
    min-width: 0;
    min-height: 44px;
    padding: 10px 14px;
    border: 1px solid #334155;
    border-radius: 8px;
    background: #1e293b;
    color: #fff;
    font-size: 0.875rem;
    outline: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

#ebulten:focus {
    border-color: #22d3ee;
    box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.12);
}

.form-bot .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 20px;
    border: 1px solid #0891b2;
    border-radius: 8px;
    background: #0891b2;
    color: #fff;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    white-space: nowrap;
    cursor: pointer;

    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.form-bot .button:hover {
    border-color: #06b6d4;
    background: #06b6d4;
    transform: translateY(-1px);
}

/* Footer columns */

footer .container_16 > .wrapper {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr));
    gap: 32px;
    padding-bottom: 40px;
}

footer .grid_4,
footer .auto-style-795b63 {
    min-width: 0;
}

footer h3 {
    margin-bottom: 16px;
    color: #f8fafc;
    font-size: 1rem;
    line-height: 1.6;
}

.auto-style-font-30eea6 {
    color: #f8fafc;
}

.auto-style-spacer {
    margin-bottom: 10px;
}

.__cf_email__ {
    color: #67e8f9;
    overflow-wrap: anywhere;
}

.list-2 {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.list-2 a {
    display: inline-block;
    color: #94a3b8;
    font-size: 0.8125rem;
    line-height: 1.6;
    overflow-wrap: anywhere;
}

.list-2 a:hover {
    color: #67e8f9;
}

/* Footer bottom */

.text-bot {
    color: #64748b;
    font-size: 0.75rem;
    line-height: 1.8;
}

.auto-style-5b12fc {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.auto-style-ed7b06 {
    margin-top: 4px;
}

.text-bot .line {
    display: inline-block;
    margin-inline: 8px;
    color: #475569;
}

/* =========================
   RESPONSIVE: TABLETS
========================= */

@media (max-width: 1100px) {
    header .row-1 {
        gap: 20px;
    }

    .sf-menu > li > a {
        padding-inline: 10px;
        font-size: 0.8125rem;
    }

    .grid_16 > .wrapper.border-bot1 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .grid_16 > .wrapper:not(.border-bot1) {
        grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
        gap: 24px;
    }

    footer .container_16 > .wrapper {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 32px;
    }
}

/* =========================
   RESPONSIVE: SMALL TABLETS
========================= */

@media (max-width: 900px) {
    header .row-1 {
        flex-direction: column;
        justify-content: center;
        gap: 12px;
        padding: 20px 0;
    }

    header nav {
        width: 100%;
    }

    .sf-menu {
        justify-content: center;
    }

    .sf-menu > li > a {
        padding: 10px 12px;
    }

    #content {
        padding-top: 32px;
    }

    .slogan_p5 {
        padding: 40px 32px;
    }

    .grid_16 > .wrapper:not(.border-bot1) {
        grid-template-columns: 1fr;
    }

    .box-form > .wrapper {
        justify-content: flex-start;
    }
}

/* =========================
   RESPONSIVE: MOBILE
========================= */

@media (max-width: 640px) {
    html {
        font-size: 14px;
    }

    .main {
        width: min(100% - 32px, 1200px);
    }

    header .row-1 {
        align-items: stretch;
        gap: 16px;
        padding: 20px 0;
    }

    header h1 {
        text-align: center;
        font-size: 2rem;
    }

    header nav {
        width: 100%;
    }

    .sf-menu {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .sf-menu > li {
        min-width: 0;
    }

    .sf-menu > li > a {
        justify-content: center;
        min-height: 44px;
        padding: 10px 8px;
        border: 1px solid #e2e8f0;
        background: #f8fafc;
        font-size: 0.8125rem;
        text-align: center;
        white-space: normal;
        overflow-wrap: anywhere;
    }

    /* Mobile dropdowns */

    .sf-menu ul {
        position: static;
        display: none;
        width: 100%;
        min-width: 0;
        max-width: none;
        margin-top: 6px;
        padding: 6px;
        border-radius: 8px;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
    }

    .sf-menu li:hover > ul,
    .sf-menu li:focus-within > ul {
        display: block;
    }

    .sf-menu ul ul {
        margin-top: 6px;
        margin-left: 8px;
        width: calc(100% - 8px);
    }

    .sf-menu ul a {
        padding: 10px;
        font-size: 0.8125rem;
    }

    #content {
        padding-top: 24px;
    }

    .slogan_p5 {
        margin-bottom: 24px;
        padding: 36px 24px;
        border-radius: 16px;
    }

    .auto-style-font-dc509b {
        font-size: clamp(1.65rem, 7vw, 2.5rem);
    }

    .padding {
        padding: 24px 0 48px;
    }

    /* Feature cards */

    .grid_16 > .wrapper.border-bot1 {
        grid-template-columns: 1fr;
        gap: 16px;
        padding-bottom: 32px;
    }

    .grid_16 > .wrapper.border-bot1 > .grid_4 {
        padding: 20px;
    }

    .grid_4 figure {
        min-height: 140px;
    }

    .grid_4 h3.border-bot {
        min-height: 0;
    }

    /* Products and announcements */

    .grid_16 > .wrapper:not(.border-bot1) {
        grid-template-columns: 1fr;
        gap: 20px;
        padding-top: 32px;
    }

    .grid_16 > .wrapper:not(.border-bot1) > .grid_4,
    .grid_16 > .wrapper:not(.border-bot1) > .grid_12 {
        padding: 24px 20px;
    }

    .grid_16 > .wrapper:not(.border-bot1) h1 {
        font-size: 1.375rem;
    }

    .grid_12 > .wrapper.prev-indent-bot2 {
        gap: 14px;
        padding: 18px 0;
    }

    .dropcap {
        flex-basis: 46px;
        width: 46px;
        height: 46px;
        font-size: 1.25rem;
    }

    .extra-wrap {
        font-size: 0.875rem;
    }

    /* Footer */

    body > .main:has(> footer) {
        padding-inline: 16px;
    }

    footer {
        padding: 36px 0 24px;
    }

    footer > .wrapper.margin-bot {
        align-items: flex-start;
        flex-direction: column;
        gap: 24px;
        margin-bottom: 32px;
        padding-bottom: 32px;
    }

    .box-form {
        width: 100%;
    }

    .box-form > .wrapper {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .form-bot {
        width: 100%;
    }

    #ebulten {
        flex: 1;
        width: 100%;
    }

    footer .container_16 > .wrapper {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 20px;
    }

    footer .container_16 .grid_4 {
        grid-column: 1 / -1;
    }

    .text-bot {
        font-size: 0.75rem;
    }
}

/* =========================
   RESPONSIVE: SMALL MOBILE
========================= */

@media (max-width: 380px) {
    .sf-menu {
        grid-template-columns: 1fr;
    }

    .sf-menu > li > a {
        justify-content: flex-start;
        padding-inline: 14px;
    }

    .slogan_p5 {
        padding: 28px 20px;
    }

    .grid_16 > .wrapper.border-bot1 > .grid_4,
    .grid_16 > .wrapper:not(.border-bot1) > .grid_4,
    .grid_16 > .wrapper:not(.border-bot1) > .grid_12 {
        padding: 20px 16px;
    }

    .form-bot {
        flex-direction: column;
    }

    #ebulten,
    .form-bot .button {
        width: 100%;
    }

    footer .container_16 > .wrapper {
        grid-template-columns: 1fr;
    }
}

/* =========================
   ACCESSIBILITY
========================= */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}