:root {
    --indigo: #0B1F5C;
    --indigo-light: #FB923C;
    --purple: #0066FF;
    --cyan: #00E5FF;
    --ink: #080B14;
    --ink-2: #0E1424;
    --ink-3: #161D33;
    --paper: #F7F8FC;
    --paper-2: #FFFFFF;
    --slate: #64748B;
    --slate-light: #94A3B8;
    --line: rgba(255, 255, 255, 0.08);
    --line-dark: rgba(10, 14, 26, 0.08);
    --grad-primary: linear-gradient(135deg, var(--indigo) 0%, var(--purple) 60%, var(--cyan) 100%);
    --grad-primary-soft: linear-gradient(135deg, rgba(79, 70, 229, 0.14), rgba(139, 92, 246, 0.14));
    --shadow-soft: 0 20px 60px -20px rgba(79, 70, 229, 0.35);
    --shadow-card: 0 10px 40px -12px rgba(10, 14, 26, 0.12);
    --radius-lg: 28px;
    --radius-md: 18px;
    --radius-sm: 12px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--paper);
    color: var(--ink);
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2,
h3,
h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--ink);
}

.mono {
    font-family: 'Space Mono', monospace;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    position: relative;
    padding: 100px 0;
    /* Reverts back to normal padding, removing the huge vertical gaps */
}

.section-dark {
    background: var(--ink);
    color: #E7E9F3;
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 {
    color: #FFFFFF;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Space Mono', monospace;
    font-size: 13px;
    letter-spacing: 0.02em;
    color: var(--ink-3);
    background: rgba(11, 31, 92, 0.08);
    border: rgba(79, 70, 229, 0.08);
    padding: 7px 14px 7px 12px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.section-dark .tag {
    color: #A5B4FC;
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
}

.tag .bracket {
    color: var(--ink);
    font-weight: 600;
}

.eyebrow-line {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.eyebrow-line .dash {
    width: 24px;
    height: 1px;
    background: var(--ink);
}

h2.headline {
    font-size: clamp(28px, 3.6vw, 44px);
    line-height: 1.12;
}

.lede {
    font-size: 16px;
    color: var(--slate);
    max-width: 520px;
}

.section-dark .lede {
    color: #A9AFC3;
}

.grad-text {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}


/* NAVBAR */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.35s ease;
    background: rgba(8, 11, 20, 0.42);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(8, 11, 20, 0.72);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.92);
    padding: 6px 12px;
    border-radius: 10px;
}

.nav-logo img {
    height: 34px;
    width: auto;
    display: block;
}

.nav-logo span {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 19px;
    color: #fff;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 42px;
}

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: #C6CBDD;
    position: relative;
    padding: 6px 0;
    transition: color 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #fff;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--grad-primary);
    border-radius: 2px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    font-size: 15px;
    padding: 13px 26px;
    border-radius: 12px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    white-space: nowrap;
}

.btn-primary {
    background: var(--grad-primary);
    color: #fff;
    box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 50px -14px rgba(79, 70, 229, 0.5);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.btn-outline-dark {
    background: transparent;
    color: var(--ink);
    border: 1.5px solid var(--line-dark);
}

.btn-outline-dark:hover {
    background: var(--ink);
    color: #fff;
    transform: translateY(-2px);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 14px;
}

.magnetic {
    transition: transform 0.15s ease-out, box-shadow 0.25s ease, background 0.25s ease;
}

.cursor-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.10), rgba(79, 70, 229, 0.06) 42%, transparent 72%);
    pointer-events: none;
    z-index: 3;
    mix-blend-mode: screen;
    will-change: transform;
}

@media (max-width: 899px) {
    .cursor-glow {
        display: none;
    }
}


/* Ripple */

.btn {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: scale(0);
    animation: ripple-anim 0.6s linear;
    pointer-events: none;
}


/* Mobile menu */

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 30px;
    z-index: 1100;
}

.hamburger span {
    height: 2px;
    width: 100%;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(78vw, 340px);
    background: rgba(10, 14, 26, 0.86);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-left: 1px solid var(--line);
    z-index: 1050;
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(.16, 1, .3, 1);
    display: flex;
    flex-direction: column;
    padding: 100px 36px 40px;
    gap: 30px;
}

.mobile-drawer.open {
    transform: translateX(0);
}

.mobile-drawer a {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
}

.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(3, 5, 10, 0.5);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease;
}

.drawer-overlay.open {
    opacity: 1;
    visibility: visible;
}


/* HERO */

.hero {
    position: relative;
    min-height: auto;
    display: flex;
    align-items: center;
    background: var(--ink);
    overflow: hidden;
    padding-top: 50px;
    padding-bottom: 14px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.55;
    will-change: transform;
}

.blob-1 {
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, var(--indigo), transparent 70%);
    top: -140px;
    left: -110px;
}

.blob-2 {
    width: 460px;
    height: 460px;
    background: radial-gradient(circle, var(--purple), transparent 70%);
    bottom: -160px;
    right: -80px;
}

.blob-3 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--cyan), transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.38;
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 46px 46px;
    mask-image: radial-gradient(circle at 50% 40%, rgba(0, 0, 0, 0.9), transparent 75%);
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--cyan);
    border-radius: 50%;
    opacity: 0.6;
}

.hero {
    position: relative;
    height: 100vh;
    /* Locks it to exactly one screen size */
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--ink);
    overflow: hidden;
    /* Hides the bottom cut-off of the robot */
    padding-top: 50px;
    padding-bottom: 0;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    /* Changed from '1fr 600px 1fr' to give the text on the sides much more room */
    grid-template-columns: 1fr 400px 1fr;
    gap: 4px 26px;
    align-items: center;
}

.hero-brand {
    grid-column: 1 / -1;
    grid-row: 1;
    position: relative;
    z-index: 10;
    margin: 0 0 -18px;
    line-height: 0.85;
    pointer-events: none;
    text-align: center;
    transform: translateY(20px);
    /* Nudges the text lower. Increase this number if you want it even lower. */
}

.hero-text-left {
    grid-column: 1;
    grid-row: 2;
    position: relative;
    z-index: 2;
    text-align: left;
}

.hero-text-right {
    grid-column: 3;
    grid-row: 2;
    position: relative;
    z-index: 2;
    text-align: left;
}

.hero h1 {
    font-size: clamp(29px, 4.5vw, 50px);
    line-height: 1.08;
    color: #fff;
}

.hero-word-big {
    font-size: clamp(215px, 9.5vw, 132px);
    font-weight: 700;
    letter-spacing: 0.01em;
    display: inline-block;
    background: linear-gradient(90deg, #E0E0E0 0%, #FFFFFF 50%, #A9A9A9 100%);
    background-position: 0% center;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    /* Hard edge shadow */
    filter: drop-shadow(3px 5px 2px rgba(0, 0, 0, 0.8));
}


/* Triggers the shine animation on hover */

.hero-word-big:hover {
    animation: text-shine 1s ease-in-out forwards;
}

.hero .lede {
    margin: 0;
    font-size: 16.5px;
    font-weight: 600;
    line-height: 1.55;
    color: #E4E7F5;
    max-width: 430px;
    text-align: left;
}

.hero-pills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 0;
}

.hero-pills .pill {
    font-family: 'Space Mono', monospace;
    font-size: 11.5px;
    color: #C6CBDD;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.04);
    padding: 6px 12px;
    border-radius: 999px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    justify-content: flex-start;
    margin-top: 16px;
    flex-wrap: nowrap;
    /* Forces the buttons to stay on the same line */
    white-space: nowrap;
    /* Prevents text inside the buttons from wrapping */
}

.hero-stats {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 16px;
    margin-top: 20px;
    flex-wrap: nowrap;
    /* Forces all items to stay on one line */
    white-space: nowrap;
    /* Prevents text from wrapping inside the stat blocks */
}


/* HERO 3D VISUAL — dead-centered in its own fixed-width column, bumped up a size */

.hero-visual {
    grid-column: 2;
    grid-row: 1 / 3;
    /* Spans across the text row to move the image up */
    position: relative;
    z-index: 1;
    /* Pushes the robot behind the text */
    min-height: 100vh;
}

@keyframes pulse-glow {
    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.9;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.08);
        opacity: 1;
    }
}

.hero-visual-stage {
    position: absolute;
    left: 50%;
    top: 60%;
    /* Pushes the entire robot container much lower on the screen */
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 550px;
    height: 99vh;
    overflow: hidden;
    pointer-events: auto;
    animation: visual-in 1.1s cubic-bezier(.16, 1, .3, 1) 0.35s both;
}

.hero-visual-stage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    /* Anchors the image to the top so the head stays visible, letting the bottom crop off naturally */
    display: block;
    will-change: transform;
    transform-style: preserve-3d;
}

.hero-visual-glow {
    position: absolute;
    left: 50%;
    top: 45%;
    /* Moved the glow up to sit behind the robot's helmet */
    transform: translate(-50%, -50%);
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.35), rgba(79, 70, 229, 0.18) 55%, transparent 75%);
    filter: blur(20px);
    animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes float-visual {
    0%,
    100% {
        translate: 0 0;
    }
    50% {
        translate: 0 -14px;
    }
}

.hero-stat .num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 34px;
    font-weight: 700;
    color: #fff;
}

.hero-stat .label {
    font-size: 13px;
    color: var(--slate-light);
    font-family: 'Space Mono', monospace;
    margin-top: 4px;
}

.scroll-cue {
    position: absolute;
    bottom: 34px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--slate-light);
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    z-index: 2;
}

.scroll-cue .line {
    width: 1px;
    height: 34px;
    background: linear-gradient(to bottom, var(--cyan), transparent);
}


/* GLASS CARD */

.glass {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--radius-md);
}


/* CARDS with gradient border hover */

.grad-border-card {
    position: relative;
    border-radius: var(--radius-md);
    background: var(--paper-2);
    padding: 2px;
}

.grad-border-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-md);
    background: var(--grad-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.grad-border-card:hover::before {
    opacity: 1;
}

.grad-border-inner {
    position: relative;
    z-index: 1;
    background: var(--paper-2);
    border-radius: calc(var(--radius-md) - 2px);
    height: 100%;
    padding: 36px;
    transition: transform 0.35s ease;
}

.grad-border-card:hover .grad-border-inner {
    transform: translateY(-6px);
}

.icon-box {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--grad-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}

.icon-box svg {
    width: 26px;
    height: 26px;
    stroke: var(--indigo);
}


/* FOOTER */

.footer {
    background: var(--ink);
    color: #A9AFC3;
    padding: 90px 0 30px;
    position: relative;
    border-top: 1px solid var(--line);
    overflow: hidden;
}

.footer-watermark {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: clamp(90px, 19vw, 300px);
    line-height: 1;
    white-space: nowrap;
    letter-spacing: -0.03em;
    pointer-events: none;
    user-select: none;
    z-index: 0;
    background: linear-gradient(100deg, rgba(255, 255, 255, 0.03) 30%, rgba(255, 255, 255, 0.12) 50%, rgba(255, 255, 255, 0.03) 70%);
    background-size: 260% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    animation: watermark-shimmer 9s ease-in-out infinite;
}

@keyframes watermark-shimmer {
    0% {
        background-position: 200% 0;
    }
    50% {
        background-position: 0% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.footer>.container {
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--line);
}

.footer h4 {
    color: #fff;
    font-size: 15px;
    margin-bottom: 20px;
}

.footer ul li {
    margin-bottom: 12px;
}

.footer ul li a {
    font-size: 14.5px;
    color: #A9AFC3;
    transition: color 0.2s ease;
}

.footer ul li a:hover {
    color: var(--cyan);
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
    background: rgba(255, 255, 255, 0.92);
    padding: 8px 14px;
    border-radius: 10px;
    width: fit-content;
}

.footer-logo img {
    height: 36px;
}

.footer-logo span {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    color: #fff;
    font-size: 18px;
}

.social-row {
    display: flex;
    gap: 12px;
    margin-top: 22px;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.02em;
}

.social-icon:hover {
    background: var(--grad-primary);
    transform: translateY(-3px);
}

.social-icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 26px;
    font-size: 13.5px;
    flex-wrap: wrap;
    gap: 14px;
}

.back-to-top {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--grad-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-soft);
}

.back-to-top svg {
    width: 18px;
    height: 18px;
    stroke: #fff;
}


/* PAGE HEADER (sub-pages) */

.page-header {
    background: var(--ink);
    padding: 130px 0 70px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-header h1 {
    font-size: clamp(34px, 5vw, 58px);
    color: #fff;
}

.breadcrumb {
    font-family: 'Space Mono', monospace;
    font-size: 13px;
    color: var(--slate-light);
    margin-top: 16px;
}

.breadcrumb .active {
    color: var(--cyan);
}


/* generic reveal target */

.reveal {
    opacity: 0;
    transform: translateY(28px);
    filter: blur(6px);
    transition: opacity 0.8s cubic-bezier(.16, 1, .3, 1), transform 0.8s cubic-bezier(.16, 1, .3, 1), filter 0.8s cubic-bezier(.16, 1, .3, 1);
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}


/* cascading reveal delays for grid layouts */

.grid-2>.reveal:nth-child(2) {
    transition-delay: 0.1s;
}

.grid-3>.reveal:nth-child(1),
.grid-4>.reveal:nth-child(1) {
    transition-delay: 0s;
}

.grid-3>.reveal:nth-child(2),
.grid-4>.reveal:nth-child(2) {
    transition-delay: 0.09s;
}

.grid-3>.reveal:nth-child(3),
.grid-4>.reveal:nth-child(3) {
    transition-delay: 0.18s;
}

.grid-3>.reveal:nth-child(4),
.grid-4>.reveal:nth-child(4) {
    transition-delay: 0.27s;
}

.grid-3>.reveal:nth-child(5),
.grid-4>.reveal:nth-child(5) {
    transition-delay: 0.36s;
}

.grid-3>.reveal:nth-child(6),
.grid-4>.reveal:nth-child(6) {
    transition-delay: 0.45s;
}

.grid-3>.reveal:nth-child(7),
.grid-4>.reveal:nth-child(7) {
    transition-delay: 0.54s;
}

.text-reveal span {
    display: inline-block;
}


/* GRID LAYOUTS */

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-flow: dense;
    gap: 28px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}


/* ABOUT */

.value-card {
    padding: 30px 28px;
    border-radius: var(--radius-md);
    background: var(--paper-2);
    border: 1px solid var(--line-dark);
    transition: all 0.35s ease;
}

.value-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow-card);
    transform: translateY(-4px);
}

.value-card .num {
    font-family: 'Space Mono', monospace;
    color: var(--cyan);
    font-size: 13px;
}

.value-card h4 {
    margin: 14px 0 10px;
    font-size: 19px;
}

.value-card p {
    color: var(--slate);
    font-size: 14.5px;
}

.about-photo-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--ink);
    padding: 0;
    width: 100%;
    /* Keeps it flexible for small mobile screens */
    max-width: 380px;
    /* The magic line! Stops it from scaling up too large on desktop screens */
    height: auto;
    margin: 0 auto;
    /* Centers the smaller image frame nicely within its column */
}

.about-photo-frame img {
    width: 100%;
    height: auto;
    /* Allows the image to maintain its original height without zooming in */
    display: block;
}


/* Founder photo treatment */

.founder-frame {
    isolation: isolate;
}

.founder-glow-ring {
    position: absolute;
    inset: -2px;
    z-index: 0;
    border-radius: var(--radius-lg);
    padding: 2px;
    background: conic-gradient(from var(--angle, 0deg), var(--cyan), var(--indigo), var(--purple), var(--cyan));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: ring-rotate 6s linear infinite;
}

@property --angle {
    syntax: '<angle>';
    inherits: false;
    initial-value: 0deg;
}

@keyframes ring-rotate {
    to {
        --angle: 360deg;
    }
}

.founder-sweep {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(115deg, transparent 40%, rgba(255, 255, 255, 0.16) 50%, transparent 60%);
    background-size: 250% 250%;
    background-position: 120% 0%;
    animation: founder-shine 5s ease-in-out 1.2s infinite;
    pointer-events: none;
}

@keyframes founder-shine {
    0%,
    30% {
        background-position: 120% 0%;
    }
    55%,
    100% {
        background-position: -20% 0%;
    }
}

.founder-badge {
    position: absolute;
    left: 20px;
    bottom: 20px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Space Mono', monospace;
    font-size: 12.5px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fff;
    background: rgba(8, 11, 20, 0.6);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(6, 182, 212, 0.35);
    padding: 8px 14px;
    border-radius: 999px;
}

.founder-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--cyan);
    animation: dot-pulse 1.8s ease-in-out infinite;
}

.stat-strip {
    display: flex;
    justify-content: space-between;
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid var(--line-dark);
    flex-wrap: wrap;
    gap: 24px;
}

.stat-strip .num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 30px;
    font-weight: 700;
}

.stat-strip .label {
    font-size: 13px;
    color: var(--slate);
    font-family: 'Space Mono', monospace;
}


/* WHY CHOOSE US */

.why-card {
    display: flex;
    gap: 18px;
    padding: 28px;
    border-radius: var(--radius-md);
}

.why-card .icon-box {
    flex-shrink: 0;
    margin-bottom: 0;
}

.why-card h4 {
    font-size: 17px;
    margin-bottom: 8px;
    color: #fff;
}

.why-card p {
    font-size: 14px;
    color: #A9AFC3;
}


/* SERVICES */

.service-card {
    height: 100%;
}

.service-card ul {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.service-card ul li {
    font-size: 14px;
    color: var(--slate);
    display: flex;
    align-items: center;
    gap: 9px;
}

.service-card ul li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--grad-primary);
    flex-shrink: 0;
}

.service-card h3 {
    font-size: 21px;
    margin-bottom: 6px;
}

.service-card .desc {
    color: var(--slate);
    font-size: 14.5px;
    margin-bottom: 4px;
}


/* WORK GRID — PROFESSIONAL TILES */

.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 26px;
}

.work-tile {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--ink-2);
    border: 1px solid var(--line);
    cursor: pointer;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    display: flex;
    flex-direction: column;
}

.work-tile:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: var(--shadow-soft);
}

.work-tile-img {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #05070d;
}

.work-tile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.work-tile:hover .work-tile-img img {
    transform: scale(1.06);
}

.work-tile-img .status-pill {
    position: absolute;
    top: 12px;
    left: 12px;
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    color: var(--cyan);
    border: 1px solid rgba(6, 182, 212, 0.35);
    background: rgba(8, 11, 20, 0.75);
    backdrop-filter: blur(6px);
    padding: 5px 11px;
    border-radius: 20px;
}

.work-tile-img .status-pill-live {
    color: #4ADE80;
    border-color: rgba(74, 222, 128, 0.4);
}

.work-tile-body {
    padding: 18px 20px 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.work-tile-body h3 {
    color: #fff;
    font-size: 16.5px;
    margin-bottom: 6px;
}

.work-tile-body p {
    color: #A9AFC3;
    font-size: 13px;
    line-height: 1.55;
    flex: 1;
}

.work-tile-cta {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 14px;
    font-size: 12.5px;
    font-weight: 600;
    color: #fff;
}

.work-tile-cta svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.work-tile:hover .work-tile-cta svg {
    transform: translateX(4px);
}

.work-section-heading {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin: 56px 0 22px;
}

.work-section-heading:first-child {
    margin-top: 0;
}

.work-section-heading h3 {
    color: #fff;
    font-size: 19px;
    white-space: nowrap;
}

.work-section-heading .line {
    height: 1px;
    background: var(--line);
    flex: 1;
}

.work-section-heading .count {
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    color: var(--slate-light);
    white-space: nowrap;
}

.project-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(4, 6, 12, 0.78);
    backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    z-index: 999;
}

.project-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.project-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.94);
    width: 92%;
    max-width: 1040px;
    max-height: 92vh;
    overflow-y: auto;
    background: var(--ink-2);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
    z-index: 1000;
}

.project-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
}

.project-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(8, 11, 20, 0.6);
    border: 1px solid var(--line);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: background 0.25s ease;
}

.project-modal-close:hover {
    background: rgba(8, 11, 20, 0.9);
}

.project-modal-inner.layout-landscape {
    display: flex;
    flex-direction: column;
}

.pm-media {
    width: 100%;
    background: #000;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    overflow: hidden;
}

.pm-media video {
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: 320px;
    object-fit: cover;
    display: block;
    background: #000;
}

.layout-landscape .pm-body {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 28px;
    padding: 30px;
}

.pm-info .status-pill {
    margin-bottom: 18px;
}

.pm-info h2 {
    color: #fff;
    font-size: 23px;
    margin-bottom: 8px;
}

.pm-tagline {
    color: var(--cyan);
    font-size: 12.5px;
    font-family: 'Space Mono', monospace;
    margin-bottom: 12px;
}

.pm-desc {
    color: #A9AFC3;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 18px;
}

.pm-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pm-meta li {
    font-size: 13px;
    color: #fff;
    border-top: 1px solid var(--line);
    padding-top: 12px;
}

.pm-meta li span {
    display: block;
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    color: var(--slate-light);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 4px;
}

.pm-live-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 11px 18px;
    border-radius: 10px;
    background: var(--cyan);
    color: #04121a;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.25s ease;
}

.pm-live-link:hover {
    opacity: 0.85;
}

.pm-shots {
    position: relative;
    min-height: 220px;
}

.pm-shots .shot {
    position: absolute;
    width: 82%;
    border-radius: 14px;
    border: 4px solid var(--ink-3);
    box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.55);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.pm-shots .shot-1 {
    top: 0;
    left: 0;
    transform: rotate(-9deg);
    z-index: 1;
}

.pm-shots .shot-2 {
    top: 26px;
    left: 30px;
    transform: rotate(5deg);
    z-index: 2;
}

.pm-shots .shot-3 {
    top: 52px;
    left: 12px;
    transform: rotate(-4deg);
    z-index: 3;
}

.pm-shots .shot-4 {
    top: 78px;
    left: 42px;
    transform: rotate(7deg);
    z-index: 4;
}

.pm-shots:hover .shot-1 {
    transform: rotate(-16deg) translate(-18px, 6px);
}

.pm-shots:hover .shot-2 {
    transform: rotate(10deg) translate(20px, -4px);
}

.pm-shots:hover .shot-3 {
    transform: rotate(-8deg) translate(-8px, 14px);
}

.pm-shots:hover .shot-4 {
    transform: rotate(13deg) translate(24px, 18px);
    box-shadow: 0 26px 60px -10px rgba(0, 0, 0, 0.6);
}

.pm-media-img img {
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: 320px;
    object-fit: cover;
    display: block;
    background: #000;
}

.pm-shots-2 {
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: unset;
    position: static;
}

.pm-shots-2 .shot {
    position: static;
    width: 100%;
    transform: none !important;
    border-radius: 12px;
}

.pm-shots-2 .shot-wire {
    opacity: 0.85;
}

.pm-shots-2 .shot-label {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.06em;
    color: var(--slate-light);
    text-transform: uppercase;
    margin-bottom: -6px;
}

.project-modal-inner.layout-portrait {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    height: 86vh;
}

.layout-portrait .pm-media {
    width: 38%;
    flex-shrink: 0;
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
    align-self: stretch;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.layout-portrait .pm-media video {
    width: 100%;
    height: 100%;
    aspect-ratio: unset;
    max-height: none;
    object-fit: contain;
    display: block;
}

.layout-portrait .pm-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 40px;
    gap: 16px;
    min-width: 0;
    height: 100%;
    overflow-y: auto;
}

.app-shots-heading {
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.06em;
    color: var(--slate-light);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.app-shots-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.app-shots-grid img {
    width: calc(25% - 9px);
    min-width: 90px;
    aspect-ratio: 9 / 16;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid var(--line);
    cursor: pointer;
    transition: transform 0.25s ease;
}

.app-shots-grid img:hover {
    transform: translateY(-4px);
}


/* UI/UX DETAIL LAYOUT — left: full design, right: info + wireframe/final pair */

.project-modal-inner.layout-uiux {
    display: flex;
    flex-direction: row;
    align-items: stretch;
}

.layout-uiux .pm-media {
    width: 46%;
    flex-shrink: 0;
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
    align-self: stretch;
    min-height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.layout-uiux .pm-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    background: #05070d;
}

.layout-uiux .pm-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 40px;
    min-width: 0;
}

.uiux-pair-row {
    display: flex;
    gap: 14px;
    margin-top: 24px;
}

.uiux-pair-item {
    flex: 1;
    min-width: 0;
}

.uiux-pair-item img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid var(--line);
    cursor: pointer;
}


/* GRAPHIC DESIGN — image fully visible, not cropped */

.pm-media-full {
    width: 100%;
    background: #05070d;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 70vh;
}

.pm-media-full img {
    width: 100%;
    height: 100%;
    max-height: 70vh;
    object-fit: contain;
    display: block;
    cursor: zoom-in;
}


/* LIGHTBOX */

.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(4, 6, 12, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1100;
    cursor: zoom-out;
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-overlay img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 10px;
    box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.7);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--line);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* WORK FILTERS */

.work-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 48px;
}

.filter-pill {
    font-family: 'Space Mono', monospace;
    font-size: 12.5px;
    color: #A9AFC3;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.03);
    padding: 9px 18px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.filter-pill:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.25);
}

.filter-pill.active {
    color: #fff;
    background: var(--grad-primary);
    border-color: transparent;
}

.work-empty {
    text-align: center;
    color: var(--slate-light);
    font-size: 14px;
    padding: 60px 20px;
    grid-column: 1 / -1;
}


/* INFO-ONLY MODAL (no media, e.g. games with no screenshots) */

.project-modal-inner.layout-info .pm-body {
    padding: 36px;
}

.pm-feature-group {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.pm-feature-group h4 {
    color: #fff;
    font-size: 15px;
    margin-bottom: 10px;
}

.pm-feature-group ul {
    color: #A9AFC3;
    font-size: 13px;
    line-height: 1.7;
    padding-left: 18px;
}


/* MOBILE APP MINI GRID (combined Flutter portfolio modal) */

.app-mini-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 16px;
    margin-top: 22px;
}

.app-mini-card {
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--ink-3);
}

.app-mini-card>img {
    width: 100%;
    aspect-ratio: 9 / 16;
    object-fit: cover;
    display: block;
}

.app-mini-card .app-mini-body {
    padding: 12px 14px 16px;
}

.app-mini-card h5 {
    color: #fff;
    font-size: 14px;
    margin-bottom: 4px;
}

.app-mini-card p {
    color: #A9AFC3;
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 6px;
}

.app-mini-card .app-mini-stack {
    font-family: 'Space Mono', monospace;
    font-size: 10.5px;
    color: var(--cyan);
}

.pair-imgs {
    display: flex;
}

.pair-imgs img {
    width: 50%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}


/* TEAM */

.team-card {
    border-radius: var(--radius-lg);
    background: var(--paper-2);
    overflow: hidden;
    border: 1px solid var(--line-dark);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.team-card:hover {
    box-shadow: var(--shadow-card);
    transform: translateY(-6px);
}

.team-photo {
    aspect-ratio: 4/5;
    overflow: hidden;
    position: relative;
    background: linear-gradient(160deg, #EEF0FB, #E4E7F7);
    flex-shrink: 0;
    width: 100%;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.5s ease;
}

.team-card:hover .team-photo img {
    transform: scale(1.06);
}

.team-info {
    padding: 26px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.team-info h4 {
    font-size: 18px;
    margin-bottom: 4px;
}

.team-info .role {
    font-family: 'Space Mono', monospace;
    font-size: 12.5px;
    color: var(--indigo);
    margin-bottom: 12px;
}

.team-info p.bio {
    font-size: 13.5px;
    color: var(--slate);
    margin-bottom: 18px;
}

.team-social {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: auto;
}

.team-social a {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: var(--paper);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    color: var(--slate);
}

.team-social a svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.team-social a:hover {
    background: var(--grad-primary);
    color: #fff;
}

.avatar-initials {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--grad-primary);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 44px;
    font-weight: 700;
    color: #fff;
}


/* REVIEWS */

.review-card {
    padding: 32px;
    border-radius: var(--radius-md);
    background: var(--paper-2);
    border: 1px solid var(--line-dark);
    height: 100%;
    transition: all 0.35s ease;
}

.review-card:hover {
    box-shadow: var(--shadow-card);
    transform: translateY(-4px);
}

.stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.stars svg {
    width: 15px;
    height: 15px;
    fill: #FBBF24;
    stroke: none;
}

.review-card p.quote {
    font-size: 15px;
    color: var(--ink);
    margin-bottom: 22px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 44px;
    height: 44px;
    min-width: 44px;
    flex-shrink: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    color: #fff;
    font-size: 15px;
    line-height: 1;
}

.review-author .name {
    font-size: 14.5px;
    font-weight: 600;
}

.review-author .company {
    font-size: 12.5px;
    color: var(--slate);
}


/* CTA BAND */

.cta-band {
    border-radius: 32px;
    margin-top: 80px;
    background: var(--grad-primary);
    padding: 70px 60px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-band h2 {
    color: #fff;
    font-size: clamp(28px, 3.6vw, 42px);
}

.cta-band p {
    color: rgba(255, 255, 255, 0.85);
    margin: 14px auto 34px;
    max-width: 520px;
}

.cta-band .blob {
    opacity: 0.3;
}


/* CONTACT */

.contact-form {
    background: var(--paper-2);
    border-radius: var(--radius-lg);
    padding: 44px;
    border: 1px solid var(--line-dark);
    box-shadow: var(--shadow-card);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--ink);
    font-family: 'Space Mono', monospace;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1.5px solid var(--line-dark);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14.5px;
    background: var(--paper);
    transition: all 0.25s ease;
    color: var(--ink);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--indigo);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.phone-input-group {
    display: flex;
    gap: 8px;
}

.phone-input-group select {
    flex: 0 0 96px;
    width: 96px;
    padding: 14px 8px;
    font-size: 13.5px;
    font-family: 'Space Mono', monospace;
    cursor: pointer;
}

.phone-input-group input {
    flex: 1;
    min-width: 0;
}

.contact-info-card {
    padding: 34px;
    border-radius: var(--radius-md);
    background: var(--ink);
    color: #fff;
}

.contact-info-row {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 26px;
}

.contact-info-row .icon-box {
    margin-bottom: 0;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.08);
}

.contact-info-row .icon-box svg {
    stroke: var(--cyan);
}

.contact-info-row h4 {
    color: #fff;
    font-size: 15px;
    margin-bottom: 4px;
}

.contact-info-row p,
.contact-info-row a {
    color: #A9AFC3;
    font-size: 14px;
}


/* Center helpers */

.text-center {
    text-align: center;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.mb-14 {
    margin-bottom: 14px;
}

.mb-60 {
    margin-bottom: 60px;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}


/* Creates a cascading "wave" effect for elements stacked inside containers */

.section .reveal:nth-child(1) {
    transition-delay: 0.05s;
}

.section .reveal:nth-child(2) {
    transition-delay: 0.15s;
}

.section .reveal:nth-child(3) {
    transition-delay: 0.25s;
}

.section .reveal:nth-child(4) {
    transition-delay: 0.35s;
}

.section .reveal:nth-child(5) {
    transition-delay: 0.45s;
}