 :root {
     --bg: #020711;
     --panel: rgba(255, 255, 255, 0.075);
     --panel2: rgba(255, 255, 255, 0.115);
     --line: rgba(255, 255, 255, 0.14);
     --text: #eef9ff;
     --muted: rgba(238, 249, 255, 0.66);
     --cyan: #22d3ee;
     --teal: #2dd4bf;
     --violet: #a78bfa;
     --green: #34d399;
     --danger: #fb7185;
 }

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

 html {
     scroll-behavior: smooth;
 }

 body {
     min-height: 100vh;
     overflow-x: hidden;
     background: var(--bg);
     color: var(--text);
     font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
 }

 body::selection {
     background: rgba(34, 211, 238, 0.35);
 }

 .water-canvas {
     position: fixed;
     inset: 0;
     z-index: 0;
     width: 100%;
     height: 100%;
     background:
         radial-gradient(circle at 20% 20%, rgba(34, 211, 238, 0.16), transparent 28%),
         radial-gradient(circle at 80% 10%, rgba(167, 139, 250, 0.16), transparent 30%),
         radial-gradient(circle at 50% 95%, rgba(45, 212, 191, 0.14), transparent 35%),
         linear-gradient(135deg, #020711 0%, #03111f 45%, #07152c 100%);
     overflow: hidden;
 }

 .water-canvas::before {
     content: "";
     position: absolute;
     inset: -20%;
     background-image:
         repeating-radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 18px),
         linear-gradient(115deg, transparent 0%, rgba(34, 211, 238, 0.065) 45%, transparent 62%);
     animation: drift 18s ease-in-out infinite alternate;
     opacity: 0.8;
 }

 .water-canvas::after {
     content: "";
     position: absolute;
     inset: 0;
     background:
         radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(34, 211, 238, 0.18), transparent 18%),
         radial-gradient(circle at 50% 50%, transparent 0%, rgba(0, 0, 0, 0.35) 75%);
     transition: background 0.1s linear;
     pointer-events: none;
 }

 @keyframes drift {
     from {
         transform: translate3d(-3%, -2%, 0) rotate(-8deg) scale(1.02);
     }

     to {
         transform: translate3d(3%, 2%, 0) rotate(-4deg) scale(1.08);
     }
 }

 .blob {
     position: absolute;
     border-radius: 50%;
     filter: blur(28px);
     opacity: 0.42;
     mix-blend-mode: screen;
     animation: floaty 9s ease-in-out infinite alternate;
 }

 .blob.one {
     width: 360px;
     height: 360px;
     background: rgba(34, 211, 238, 0.42);
     left: -110px;
     top: 14%;
 }

 .blob.two {
     width: 300px;
     height: 300px;
     background: rgba(167, 139, 250, 0.42);
     right: -95px;
     top: 9%;
     animation-delay: -2s;
 }

 .blob.three {
     width: 420px;
     height: 420px;
     background: rgba(45, 212, 191, 0.28);
     left: 38%;
     bottom: -190px;
     animation-delay: -4s;
 }

 @keyframes floaty {
     from {
         transform: translateY(-18px) scale(1);
     }

     to {
         transform: translateY(30px) scale(1.07);
     }
 }

 .ripple {
     position: fixed;
     width: 20px;
     height: 20px;
     left: 0;
     top: 0;
     border-radius: 50%;
     pointer-events: none;
     z-index: 2;
     transform: translate(-50%, -50%) scale(0);
     border: 1px solid rgba(125, 249, 255, 0.85);
     box-shadow: 0 0 22px rgba(34, 211, 238, 0.55), inset 0 0 18px rgba(255, 255, 255, 0.18);
     animation: ripple 1.35s ease-out forwards;
 }

 .ripple::before,
 .ripple::after {
     content: "";
     position: absolute;
     inset: -16px;
     border-radius: inherit;
     border: 1px solid rgba(34, 211, 238, 0.38);
     animation: innerRipple 1.35s ease-out forwards;
 }

 .ripple::after {
     inset: -34px;
     border-color: rgba(167, 139, 250, 0.25);
     animation-delay: 0.08s;
 }

 @keyframes ripple {
     0% {
         opacity: 0.95;
         transform: translate(-50%, -50%) scale(0.1);
     }

     70% {
         opacity: 0.55;
     }

     100% {
         opacity: 0;
         transform: translate(-50%, -50%) scale(13);
     }
 }

 @keyframes innerRipple {
     0% {
         opacity: 0.8;
         transform: scale(0.3);
     }

     100% {
         opacity: 0;
         transform: scale(1.8);
     }
 }

 .page {
     position: relative;
     z-index: 3;
     min-height: 100vh;
 }

 nav {
     position: sticky;
     top: 0;
     z-index: 20;
     height: 76px;
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 0 7vw;
     border-bottom: 1px solid rgba(255, 255, 255, 0.08);
     background: rgba(2, 7, 17, 0.54);
     backdrop-filter: blur(22px);
 }

 .brand {
     display: flex;
     align-items: center;
     gap: 12px;
     text-decoration: none;
     color: white;
 }

 .brand-mark {
     width: 44px;
     height: 44px;
     border-radius: 16px;
     display: grid;
     place-items: center;
     background: linear-gradient(135deg, rgba(34, 211, 238, 0.95), rgba(167, 139, 250, 0.95));
     box-shadow: 0 18px 42px rgba(34, 211, 238, 0.18);
     font-size: 24px;
 }

 .brand-title {
     font-size: 18px;
     font-weight: 900;
     letter-spacing: -0.03em;
 }

 .brand-sub {
     font-size: 10px;
     color: var(--muted);
     letter-spacing: 0.22em;
     text-transform: uppercase;
     margin-top: 2px;
 }

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

 .nav-links a {
     color: rgba(238, 249, 255, 0.72);
     text-decoration: none;
     font-size: 13px;
     font-weight: 700;
     padding: 10px 14px;
     border-radius: 999px;
     transition: 0.2s ease;
 }

 .nav-links a:hover {
     color: white;
     background: rgba(255, 255, 255, 0.08);
 }

 .nav-cta {
     border: 1px solid rgba(34, 211, 238, 0.35) !important;
     background: rgba(34, 211, 238, 0.1);
     color: white !important;
 }

 .hero {
     min-height: calc(100vh - 76px);
     display: grid;
     grid-template-columns: 1.08fr 0.92fr;
     align-items: center;
     gap: 50px;
     padding: 70px 7vw 80px;
 }

 .eyebrow {
     display: inline-flex;
     align-items: center;
     gap: 10px;
     padding: 9px 13px;
     border: 1px solid rgba(34, 211, 238, 0.26);
     background: rgba(34, 211, 238, 0.08);
     border-radius: 999px;
     color: rgba(209, 250, 255, 0.95);
     font-size: 12px;
     font-weight: 800;
     letter-spacing: 0.12em;
     text-transform: uppercase;
     margin-bottom: 22px;
 }

 .eyebrow-dot {
     width: 8px;
     height: 8px;
     border-radius: 50%;
     background: var(--teal);
     box-shadow: 0 0 18px var(--teal);
 }

 h1 {
     font-family: "Playfair Display", serif;
     font-size: clamp(54px, 7.2vw, 108px);
     line-height: 0.92;
     letter-spacing: -0.06em;
     max-width: 760px;
     margin-bottom: 24px;
 }

 h1 .gradient,
 .gradient-text {
     color: transparent;
     background: linear-gradient(120deg, #e0ffff 0%, #22d3ee 34%, #a78bfa 72%, #f0abfc 100%);
     -webkit-background-clip: text;
     background-clip: text;
 }

 .hero-text {
     max-width: 650px;
     color: rgba(238, 249, 255, 0.72);
     font-size: 17px;
     line-height: 1.8;
     margin-bottom: 34px;
 }

 .hero-actions {
     display: flex;
     align-items: center;
     gap: 14px;
     flex-wrap: wrap;
     margin-bottom: 34px;
 }

 .btn {
     border: none;
     border-radius: 18px;
     padding: 15px 20px;
     font-size: 14px;
     font-weight: 900;
     font-family: inherit;
     cursor: pointer;
     transition: 0.22s ease;
     text-decoration: none;
     display: inline-flex;
     align-items: center;
     gap: 10px;
 }

 .btn-primary {
     color: #03111f;
     background: linear-gradient(135deg, #67e8f9, #2dd4bf);
     box-shadow: 0 24px 60px rgba(34, 211, 238, 0.22);
 }

 .btn-ghost {
     color: white;
     border: 1px solid rgba(255, 255, 255, 0.16);
     background: rgba(255, 255, 255, 0.06);
     backdrop-filter: blur(18px);
 }

 .btn-primary:hover,
 .btn-ghost:hover {
     transform: translateY(-3px);
 }

 .mini-stats {
     display: grid;
     grid-template-columns: repeat(3, minmax(0, 1fr));
     gap: 12px;
     max-width: 660px;
 }

 .stat-card {
     padding: 16px;
     border-radius: 20px;
     background: rgba(255, 255, 255, 0.065);
     border: 1px solid rgba(255, 255, 255, 0.1);
     backdrop-filter: blur(18px);
 }

 .stat-value {
     color: white;
     font-size: 20px;
     font-weight: 950;
     margin-bottom: 3px;
 }

 .stat-label {
     color: var(--muted);
     font-size: 12px;
     font-weight: 700;
 }

 .orb-panel {
     position: relative;
     min-height: 590px;
     display: grid;
     place-items: center;
 }

 .octopus-orb {
     position: relative;
     width: min(420px, 82vw);
     height: min(420px, 82vw);
     border-radius: 50%;
     display: grid;
     place-items: center;
     background: radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.32), transparent 16%), radial-gradient(circle at 50% 50%, rgba(34, 211, 238, 0.26), transparent 40%), linear-gradient(135deg, rgba(34, 211, 238, 0.32), rgba(167, 139, 250, 0.26));
     border: 1px solid rgba(255, 255, 255, 0.2);
     box-shadow: 0 0 90px rgba(34, 211, 238, 0.28), inset 0 0 70px rgba(255, 255, 255, 0.08), 0 35px 100px rgba(0, 0, 0, 0.52);
     animation: orbBreath 5s ease-in-out infinite alternate;
 }

 .octopus-orb::before {
     content: "";
     position: absolute;
     inset: -22px;
     border-radius: inherit;
     border: 1px solid rgba(34, 211, 238, 0.22);
     animation: ringRotate 16s linear infinite;
 }

 .octopus-orb::after {
     content: "";
     position: absolute;
     inset: 28px;
     border-radius: inherit;
     background: radial-gradient(circle, transparent 48%, rgba(255, 255, 255, 0.09) 49%, transparent 51%);
     opacity: 0.7;
 }

 @keyframes orbBreath {
     from {
         transform: translateY(-10px) scale(0.98);
     }

     to {
         transform: translateY(18px) scale(1.03);
     }
 }

 @keyframes ringRotate {
     from {
         transform: rotate(0deg) scale(1);
     }

     to {
         transform: rotate(360deg) scale(1.03);
     }
 }

 .octo-face {
     position: relative;
     z-index: 2;
     font-size: 118px;
     filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.4));
     animation: octoFloat 3.2s ease-in-out infinite alternate;
 }

 @keyframes octoFloat {
     from {
         transform: translateY(-5px) rotate(-2deg);
     }

     to {
         transform: translateY(10px) rotate(2deg);
     }
 }

 .floating-card {
     position: absolute;
     width: 220px;
     padding: 15px;
     border-radius: 22px;
     background: rgba(5, 19, 36, 0.66);
     border: 1px solid rgba(255, 255, 255, 0.14);
     backdrop-filter: blur(22px);
     box-shadow: 0 22px 70px rgba(0, 0, 0, 0.42);
     animation: cardFloat 4s ease-in-out infinite alternate;
 }

 .floating-card.top {
     top: 38px;
     right: 28px;
 }

 .floating-card.left {
     left: 0;
     bottom: 120px;
     animation-delay: -1.4s;
 }

 .floating-card.bottom {
     right: 18px;
     bottom: 64px;
     animation-delay: -2.2s;
 }

 @keyframes cardFloat {
     from {
         transform: translateY(-8px);
     }

     to {
         transform: translateY(16px);
     }
 }

 .floating-card .label {
     color: var(--cyan);
     font-size: 10px;
     font-weight: 900;
     letter-spacing: 0.14em;
     text-transform: uppercase;
     margin-bottom: 8px;
 }

 .floating-card .value {
     color: white;
     font-size: 14px;
     font-weight: 850;
     line-height: 1.45;
 }

 section {
     padding: 80px 7vw;
 }

 .section-head {
     text-align: center;
     max-width: 760px;
     margin: 0 auto 38px;
 }

 .section-kicker {
     color: var(--cyan);
     font-size: 12px;
     font-weight: 900;
     letter-spacing: 0.18em;
     text-transform: uppercase;
     margin-bottom: 12px;
 }

 .section-title {
     font-family: "Playfair Display", serif;
     font-size: clamp(34px, 4.5vw, 64px);
     line-height: 1;
     letter-spacing: -0.04em;
     margin-bottom: 16px;
 }

 .section-desc {
     color: var(--muted);
     line-height: 1.8;
     font-size: 15px;
 }

 .services-grid {
     display: grid;
     grid-template-columns: repeat(4, minmax(0, 1fr));
     gap: 14px;
     max-width: 1180px;
     margin: 0 auto;
 }

 .service-card {
     min-height: 190px;
     padding: 20px;
     border-radius: 26px;
     background: rgba(255, 255, 255, 0.065);
     border: 1px solid rgba(255, 255, 255, 0.11);
     backdrop-filter: blur(20px);
     transition: 0.24s ease;
     position: relative;
     overflow: hidden;
 }

 .service-card::before {
     content: "";
     position: absolute;
     inset: 0;
     background: radial-gradient(circle at top left, rgba(34, 211, 238, 0.18), transparent 46%);
     opacity: 0;
     transition: 0.24s ease;
 }

 .service-card:hover {
     transform: translateY(-8px);
     border-color: rgba(34, 211, 238, 0.3);
     box-shadow: 0 28px 70px rgba(0, 0, 0, 0.35);
 }

 .service-card:hover::before {
     opacity: 1;
 }

 .service-icon {
     position: relative;
     z-index: 1;
     width: 50px;
     height: 50px;
     border-radius: 17px;
     display: grid;
     place-items: center;
     background: rgba(34, 211, 238, 0.12);
     border: 1px solid rgba(34, 211, 238, 0.2);
     font-size: 24px;
     margin-bottom: 18px;
 }

 .service-title {
     position: relative;
     z-index: 1;
     font-size: 16px;
     font-weight: 900;
     margin-bottom: 9px;
 }

 .service-text {
     position: relative;
     z-index: 1;
     color: var(--muted);
     font-size: 13px;
     line-height: 1.65;
 }

 .chat-demo {
     max-width: 1050px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: 0.95fr 1.05fr;
     gap: 22px;
     align-items: stretch;
 }

 .demo-copy,
 .demo-phone {
     border-radius: 32px;
     background: rgba(255, 255, 255, 0.065);
     border: 1px solid rgba(255, 255, 255, 0.11);
     backdrop-filter: blur(22px);
     box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
 }

 .demo-copy {
     padding: 34px;
 }

 .demo-copy h3 {
     font-family: "Playfair Display", serif;
     font-size: 42px;
     letter-spacing: -0.04em;
     margin-bottom: 16px;
 }

 .demo-copy p {
     color: var(--muted);
     line-height: 1.8;
     margin-bottom: 22px;
 }

 .prompt-list {
     display: grid;
     gap: 10px;
 }

 .prompt-pill {
     padding: 13px 14px;
     border-radius: 16px;
     background: rgba(255, 255, 255, 0.06);
     border: 1px solid rgba(255, 255, 255, 0.1);
     color: rgba(238, 249, 255, 0.86);
     font-size: 13px;
     font-weight: 700;
 }

 .demo-phone {
     padding: 16px;
 }

 .phone-top {
     padding: 16px;
     display: flex;
     align-items: center;
     gap: 12px;
     border-bottom: 1px solid rgba(255, 255, 255, 0.1);
 }

 .phone-avatar {
     width: 42px;
     height: 42px;
     border-radius: 15px;
     background: linear-gradient(135deg, var(--cyan), var(--violet));
     display: grid;
     place-items: center;
     font-size: 22px;
 }

 .phone-name {
     font-weight: 900;
 }

 .phone-status {
     color: var(--teal);
     font-size: 12px;
     margin-top: 2px;
     font-weight: 750;
 }

 .messages {
     padding: 18px 8px 8px;
     display: grid;
     gap: 12px;
 }

 .msg {
     max-width: 82%;
     padding: 13px 15px;
     border-radius: 18px;
     font-size: 13px;
     line-height: 1.6;
 }

 .msg.user {
     justify-self: end;
     background: linear-gradient(135deg, rgba(34, 211, 238, 0.92), rgba(45, 212, 191, 0.92));
     color: #02111d;
     font-weight: 800;
     border-bottom-right-radius: 5px;
 }

 .msg.ai {
     justify-self: start;
     background: rgba(255, 255, 255, 0.08);
     border: 1px solid rgba(255, 255, 255, 0.11);
     border-bottom-left-radius: 5px;
 }

 .result-card {
     margin-top: 8px;
     overflow: hidden;
     border-radius: 20px;
     background: rgba(255, 255, 255, 0.075);
     border: 1px solid rgba(34, 211, 238, 0.22);
 }

 .result-img {
     height: 125px;
     background: linear-gradient(to top, rgba(0, 0, 0, 0.55), transparent), url('https://images.unsplash.com/photo-1602216056096-3b40cc0c9944?w=900&q=80') center/cover;
 }

 .result-body {
     padding: 13px;
 }

 .result-title {
     font-weight: 900;
     margin-bottom: 4px;
 }

 .result-meta {
     color: var(--muted);
     font-size: 12px;
     line-height: 1.55;
 }

 .chat-page {
     min-height: calc(100vh - 76px);
     display: flex;
     flex-direction: column;
     padding: 28px 5vw 30px;
 }

 .chat-shell {
     flex: 1;
     min-height: 760px;
     display: grid;
     grid-template-rows: auto auto 1fr auto;
     border-radius: 34px;
     overflow: hidden;
     background: rgba(255, 255, 255, 0.055);
     border: 1px solid rgba(255, 255, 255, 0.12);
     backdrop-filter: blur(26px);
     box-shadow: 0 40px 120px rgba(0, 0, 0, 0.36);
 }

 .chat-app-top {
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 16px;
     padding: 18px 22px;
     border-bottom: 1px solid rgba(255, 255, 255, 0.09);
     background: rgba(2, 7, 17, 0.34);
 }

 .chat-app-id {
     display: flex;
     align-items: center;
     gap: 12px;
 }

 .chat-app-avatar {
     width: 44px;
     height: 44px;
     border-radius: 16px;
     display: grid;
     place-items: center;
     background: linear-gradient(135deg, rgba(34, 211, 238, 0.95), rgba(167, 139, 250, 0.9));
     box-shadow: 0 16px 40px rgba(34, 211, 238, 0.16);
     font-size: 23px;
 }

 .chat-app-title {
     font-weight: 950;
     letter-spacing: -0.03em;
 }

 .chat-app-status {
     color: rgba(45, 212, 191, 0.92);
     font-size: 12px;
     font-weight: 750;
     margin-top: 2px;
 }

 .chat-app-actions {
     display: flex;
     gap: 8px;
     align-items: center;
 }

 .icon-btn {
     width: 42px;
     height: 42px;
     border: 1px solid rgba(255, 255, 255, 0.12);
     background: rgba(255, 255, 255, 0.06);
     color: white;
     border-radius: 15px;
     cursor: pointer;
     font-size: 17px;
     transition: 0.2s ease;
 }

 .icon-btn:hover {
     transform: translateY(-2px);
     background: rgba(255, 255, 255, 0.1);
     border-color: rgba(34, 211, 238, 0.28);
 }

 .canvas-area {
     position: relative;
     overflow-y: auto;
     overflow-x: hidden;
     display: grid;
     place-items: center;
     padding: 42px 24px 28px;
 }

 .canvas-area::before {
     content: "";
     position: absolute;
     width: 620px;
     height: 620px;
     border-radius: 50%;
     background: radial-gradient(circle, rgba(34, 211, 238, 0.16), transparent 62%);
     filter: blur(8px);
     animation: canvasPulse 6s ease-in-out infinite alternate;
 }

 @keyframes canvasPulse {
     from {
         transform: scale(0.9) translateY(-16px);
         opacity: 0.72;
     }

     to {
         transform: scale(1.12) translateY(18px);
         opacity: 1;
     }
 }

 .empty-state-panel {
     position: relative;
     z-index: 1;
     width: min(920px, 100%);
     text-align: center;
     display: grid;
     justify-items: center;
 }

 .big-octo {
     width: 126px;
     height: 126px;
     border-radius: 42px;
     display: grid;
     place-items: center;
     margin-bottom: 22px;
     font-size: 64px;
     background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.28), transparent 22%), linear-gradient(135deg, rgba(34, 211, 238, 0.28), rgba(167, 139, 250, 0.26));
     border: 1px solid rgba(255, 255, 255, 0.17);
     box-shadow: 0 28px 90px rgba(34, 211, 238, 0.16);
     animation: octoFloat 3.2s ease-in-out infinite alternate;
 }

 .chat-question {
     font-family: "Playfair Display", serif;
     font-size: clamp(36px, 5vw, 70px);
     line-height: 0.98;
     letter-spacing: -0.055em;
     margin-bottom: 16px;
     max-width: 850px;
 }

 .chat-sub {
     max-width: 660px;
     color: var(--muted);
     font-size: 15px;
     line-height: 1.8;
     margin-bottom: 26px;
 }

 .quick-prompts {
     display: flex;
     justify-content: center;
     gap: 10px;
     flex-wrap: wrap;
     margin-bottom: 10px;
 }

 .quick-prompts button {
     border: 1px solid rgba(255, 255, 255, 0.13);
     background: rgba(255, 255, 255, 0.065);
     color: rgba(238, 249, 255, 0.86);
     border-radius: 999px;
     padding: 11px 14px;
     font-family: inherit;
     font-size: 12px;
     font-weight: 800;
     cursor: pointer;
     transition: 0.2s ease;
     backdrop-filter: blur(14px);
 }

 .quick-prompts button:hover {
     transform: translateY(-3px);
     background: rgba(34, 211, 238, 0.11);
     border-color: rgba(34, 211, 238, 0.32);
     color: white;
 }

 .answer-canvas {
     display: none;
     position: relative;
     z-index: 1;
     width: min(980px, 100%);
     align-self: stretch;
 }

 .answer-canvas.active {
     display: grid;
     gap: 14px;
     align-content: start;
 }

 .answer-card {
     border-radius: 28px;
     padding: 22px;
     background: rgba(255, 255, 255, 0.07);
     border: 1px solid rgba(255, 255, 255, 0.12);
     backdrop-filter: blur(20px);
     animation: fadeUp 0.36s ease both;
 }

 .answer-card.user-card {
     justify-self: end;
     max-width: 760px;
     background: linear-gradient(135deg, rgba(34, 211, 238, 0.18), rgba(45, 212, 191, 0.11));
     border-color: rgba(34, 211, 238, 0.28);
 }

 .answer-label {
     color: var(--cyan);
     font-size: 11px;
     font-weight: 950;
     letter-spacing: 0.16em;
     text-transform: uppercase;
     margin-bottom: 8px;
 }

 .answer-text {
     color: rgba(238, 249, 255, 0.9);
     line-height: 1.75;
     font-size: 15px;
 }

 .answer-text strong {
     color: white;
 }

 .cards-preview {
     display: grid;
     grid-template-columns: repeat(3, minmax(0, 1fr));
     gap: 12px;
     margin-top: 16px;
 }

 .cards-preview.one-card {
     grid-template-columns: 1fr;
 }

 .place-preview {
     overflow: hidden;
     border-radius: 22px;
     background: rgba(255, 255, 255, 0.07);
     border: 1px solid rgba(255, 255, 255, 0.11);
     cursor: pointer;
     transition: 0.2s ease;
 }

 .place-preview:hover {
     transform: translateY(-4px);
     border-color: rgba(34, 211, 238, 0.32);
 }

 .place-preview-img {
     height: 118px;
     background-position: center;
     background-size: cover;
     display: grid;
     place-items: center;
     font-size: 34px;
     color: white;
 }

 .big-preview .place-preview-img {
     height: 320px;
 }

 .place-preview-body {
     padding: 12px;
 }

 .place-preview-title {
     font-weight: 900;
     margin-bottom: 4px;
     font-size: 13px;
 }

 .place-preview-meta {
     color: var(--muted);
     font-size: 11px;
     line-height: 1.45;
 }

 .service-results {
     display: grid;
     gap: 10px;
     margin-top: 16px;
 }

 .service-result-card {
     border-radius: 20px;
     padding: 14px;
     background: rgba(255, 255, 255, 0.065);
     border: 1px solid rgba(255, 255, 255, 0.11);
     cursor: pointer;
     transition: 0.2s ease;
 }

 .service-result-card:hover {
     transform: translateY(-3px);
     border-color: rgba(34, 211, 238, 0.28);
 }

 .service-result-title {
     font-size: 14px;
     font-weight: 950;
     margin-bottom: 6px;
 }

 .service-result-meta {
     color: var(--muted);
     font-size: 12px;
     line-height: 1.55;
 }

 .service-chip-row {
     display: flex;
     gap: 7px;
     flex-wrap: wrap;
     margin-top: 9px;
 }

 .service-chip {
     color: rgba(238, 249, 255, 0.86);
     font-size: 11px;
     font-weight: 800;
     padding: 6px 8px;
     border-radius: 999px;
     background: rgba(34, 211, 238, 0.09);
     border: 1px solid rgba(34, 211, 238, 0.15);
 }

 @keyframes fadeUp {
     from {
         opacity: 0;
         transform: translateY(14px);
     }

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

 .input-dock {
     padding: 0 22px 22px;
     background: linear-gradient(to top, rgba(2, 7, 17, 0.68), transparent);
 }

 .input-wrap {
     max-width: 980px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: 1fr auto;
     align-items: end;
     gap: 12px;
     padding: 12px;
     border-radius: 28px;
     background: rgba(255, 255, 255, 0.088);
     border: 1px solid rgba(255, 255, 255, 0.16);
     backdrop-filter: blur(26px);
     box-shadow: 0 26px 90px rgba(0, 0, 0, 0.36);
 }

 .input-wrap:focus-within {
     border-color: rgba(34, 211, 238, 0.42);
     box-shadow: 0 30px 100px rgba(34, 211, 238, 0.12);
 }

 .chat-input {
     width: 100%;
     min-height: 62px;
     max-height: 180px;
     border: 0;
     outline: 0;
     resize: none;
     background: transparent;
     color: white;
     padding: 15px 14px;
     font-family: inherit;
     font-size: 18px;
     line-height: 1.55;
 }

 .chat-input::placeholder {
     color: rgba(238, 249, 255, 0.42);
 }

 .send-btn {
     width: 58px;
     height: 58px;
     border-radius: 20px;
     border: 0;
     cursor: pointer;
     display: grid;
     place-items: center;
     color: #02111d;
     background: linear-gradient(135deg, #67e8f9, #2dd4bf);
     font-size: 22px;
     font-weight: 950;
     transition: 0.22s ease;
     box-shadow: 0 16px 44px rgba(34, 211, 238, 0.22);
 }

 .send-btn:hover {
     transform: translateY(-3px) scale(1.03);
     box-shadow: 0 22px 58px rgba(34, 211, 238, 0.32);
 }

 .send-btn:disabled {
     opacity: 0.55;
     cursor: not-allowed;
     transform: none;
 }

 .dock-note {
     max-width: 940px;
     margin: 10px auto 0;
     color: rgba(238, 249, 255, 0.38);
     font-size: 11px;
     text-align: center;
     font-weight: 650;
 }

 footer {
     position: relative;
     z-index: 3;
     padding: 34px 7vw;
     border-top: 1px solid rgba(255, 255, 255, 0.1);
     background: rgba(2, 7, 17, 0.45);
     color: var(--muted);
     display: flex;
     justify-content: space-between;
     align-items: center;
     gap: 16px;
     flex-wrap: wrap;
     font-size: 13px;
     font-weight: 700;
 }

 footer span {
     color: var(--cyan);
 }

 @media (max-width: 980px) {
     nav {
         padding: 0 18px;
         height: 76px;
     }

     .nav-links {
         display: flex;
         gap: 0;
     }

     .nav-links a:not(.nav-cta) {
         display: none;
     }

     .nav-cta {
         display: inline-flex;
         padding: 10px 14px;
         font-size: 12px;
         border-radius: 999px;
         white-space: nowrap;
     }

     .brand-title {
         font-size: 16px;
     }

     .brand-sub {
         font-size: 9px;
         letter-spacing: 0.18em;
     }

     .brand-mark {
         width: 42px;
         height: 42px;
         border-radius: 14px;
     }
 }

 @media (max-width: 560px) {
     .brand-title {
         font-size: 16px;
     }

     .hero {
         padding-top: 42px;
     }

     h1 {
         font-size: 58px;
     }

     .hero-text {
         font-size: 15px;
     }

     .mini-stats {
         grid-template-columns: 1fr;
     }

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

     .octopus-orb {
         width: 310px;
         height: 310px;
     }

     .octo-face {
         font-size: 88px;
     }

     .chat-question {
         font-size: 42px;
     }

     .chat-input {
         font-size: 15px;
         min-height: 54px;
     }

     .send-btn {
         width: 52px;
         height: 52px;
         border-radius: 18px;
     }

     .input-dock {
         padding: 0 12px 14px;
     }

     .chat-app-top {
         padding: 14px;
     }

     footer {
         align-items: flex-start;
         flex-direction: column;
     }
 }

 .ai-card {
     animation: aiCardIn 0.55s cubic-bezier(.2, .8, .2, 1) both;
     transform-origin: left top;
 }

 .user-card {
     animation: userCardIn 0.45s cubic-bezier(.2, .8, .2, 1) both;
 }

 @keyframes aiCardIn {
     from {
         opacity: 0;
         transform: translateY(18px) scale(0.96);
         filter: blur(10px);
     }

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

 @keyframes userCardIn {
     from {
         opacity: 0;
         transform: translateY(14px) scale(0.97);
     }

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

 .loading-card {
     overflow: hidden;
     position: relative;
 }

 .loading-card::before {
     content: "";
     position: absolute;
     inset: -1px;
     border-radius: inherit;
     background:
         radial-gradient(circle at 20% 20%, rgba(45, 226, 255, 0.20), transparent 34%),
         radial-gradient(circle at 70% 60%, rgba(103, 92, 255, 0.16), transparent 38%);
     opacity: 0.85;
     pointer-events: none;
 }

 .octopus-thinking {
     position: relative;
     z-index: 1;
     display: flex;
     align-items: center;
     gap: 16px;
     min-height: 86px;
 }

 .octo-runner {
     width: 76px;
     height: 76px;
     border-radius: 24px;
     display: grid;
     place-items: center;
     position: relative;
     background: rgba(40, 220, 255, 0.10);
     border: 1px solid rgba(44, 225, 255, 0.24);
     box-shadow:
         inset 0 0 28px rgba(44, 225, 255, 0.10),
         0 18px 40px rgba(0, 0, 0, 0.18);
 }

 .octo-body {
     font-size: 34px;
     animation: octoRun 1.05s ease-in-out infinite;
     filter: drop-shadow(0 10px 18px rgba(45, 226, 255, 0.25));
 }

 @keyframes octoRun {

     0%,
     100% {
         transform: translateY(0) rotate(-4deg) scale(1);
     }

     35% {
         transform: translateY(-7px) rotate(5deg) scale(1.06);
     }

     65% {
         transform: translateY(2px) rotate(-2deg) scale(0.98);
     }
 }

 .bubble {
     position: absolute;
     width: 7px;
     height: 7px;
     border-radius: 999px;
     background: rgba(45, 226, 255, 0.75);
     box-shadow: 0 0 18px rgba(45, 226, 255, 0.75);
     opacity: 0;
     animation: bubbleFloat 1.45s ease-in-out infinite;
 }

 .b1 {
     left: 14px;
     bottom: 18px;
     animation-delay: 0s;
 }

 .b2 {
     right: 18px;
     bottom: 22px;
     width: 5px;
     height: 5px;
     animation-delay: 0.28s;
 }

 .b3 {
     left: 34px;
     bottom: 10px;
     width: 4px;
     height: 4px;
     animation-delay: 0.55s;
 }

 @keyframes bubbleFloat {
     0% {
         opacity: 0;
         transform: translateY(8px) scale(0.6);
     }

     25% {
         opacity: 1;
     }

     100% {
         opacity: 0;
         transform: translateY(-34px) scale(1.25);
     }
 }

 .thinking-copy {
     flex: 1;
 }

 .thinking-title {
     font-size: 15px;
     font-weight: 800;
     color: rgba(255, 255, 255, 0.92);
     letter-spacing: -0.01em;
 }

 .thinking-sub {
     margin-top: 6px;
     font-size: 13px;
     line-height: 1.5;
     color: rgba(255, 255, 255, 0.56);
 }

 .thinking-dots {
     display: flex;
     gap: 6px;
     margin-top: 13px;
 }

 .thinking-dots span {
     width: 7px;
     height: 7px;
     border-radius: 999px;
     background: rgba(45, 226, 255, 0.85);
     animation: dotPulse 1s ease-in-out infinite;
 }

 .thinking-dots span:nth-child(2) {
     animation-delay: 0.15s;
 }

 .thinking-dots span:nth-child(3) {
     animation-delay: 0.3s;
 }

 @keyframes dotPulse {

     0%,
     100% {
         opacity: 0.25;
         transform: translateY(0) scale(0.85);
     }

     50% {
         opacity: 1;
         transform: translateY(-4px) scale(1);
     }
 }

 .is-resolving {
     animation: loaderOut 0.42s ease forwards;
 }

 @keyframes loaderOut {
     to {
         opacity: 0;
         transform: translateY(-6px) scale(0.985);
         filter: blur(8px);
     }
 }

 .answer-reveal {
     animation: answerReveal 0.68s cubic-bezier(.2, .9, .2, 1) both;
 }

 @keyframes answerReveal {
     from {
         opacity: 0;
         transform: translateY(22px) scale(0.965);
         filter: blur(14px);
     }

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

 .type-reveal {
     animation: textReveal 0.75s ease both;
 }

 @keyframes textReveal {
     from {
         opacity: 0;
         transform: translateY(8px);
     }

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

 .place-preview,
 .service-result-card,
 .cards-preview {
     animation: cardPreviewIn 0.65s cubic-bezier(.2, .9, .2, 1) both;
 }

 @keyframes cardPreviewIn {
     from {
         opacity: 0;
         transform: translateY(18px) scale(0.97);
         filter: blur(10px);
     }

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

 @media (prefers-reduced-motion: reduce) {

     .ai-card,
     .user-card,
     .loading-card,
     .octo-body,
     .bubble,
     .thinking-dots span,
     .answer-reveal,
     .type-reveal,
     .place-preview,
     .service-result-card,
     .cards-preview {
         animation: none !important;
     }
 }

 .chat-tabs-wrap {
     width: 100%;
     min-height: 44px;
     height: auto;
     padding: 8px 14px;
     border-top: 1px solid rgba(255, 255, 255, 0.04);
     border-bottom: 1px solid rgba(255, 255, 255, 0.08);
     overflow-x: auto;
     overflow-y: hidden;
     display: flex;
     align-items: center;
     background: rgba(255, 255, 255, 0.025);
 }

 .chat-tabs {
     display: flex;
     gap: 8px;
     align-items: center;
     overflow-x: auto;
     overflow-y: hidden;
     width: 100%;
     height: 30px;
 }

 .chat-tabs::-webkit-scrollbar,
 .chat-tabs-wrap::-webkit-scrollbar {
     display: none;
 }

 .chat-tab {
     height: 28px;
     min-width: fit-content;
     max-width: 170px;
     border: 1px solid rgba(34, 211, 238, 0.22);
     background: rgba(34, 211, 238, 0.08);
     color: rgba(255, 255, 255, 0.78);
     border-radius: 999px;
     padding: 0 9px 0 12px;
     display: inline-flex;
     align-items: center;
     gap: 7px;
     white-space: nowrap;
     cursor: pointer;
     font-size: 12px;
     font-weight: 800;
     line-height: 1;
     transition: 0.22s ease;
     flex: 0 0 auto;
 }

 .chat-tab:hover {
     background: rgba(34, 211, 238, 0.13);
     color: #ffffff;
 }

 .chat-tab.active {
     background: linear-gradient(135deg, rgba(34, 211, 238, 0.22), rgba(139, 92, 246, 0.16));
     border-color: rgba(34, 211, 238, 0.55);
     color: #ffffff;
     box-shadow: 0 0 18px rgba(34, 211, 238, 0.18);
 }

 .chat-tab-title {
     overflow: hidden;
     text-overflow: ellipsis;
     max-width: 120px;
 }

 .chat-tab-close {
     width: 16px;
     height: 16px;
     border-radius: 999px;
     display: grid;
     place-items: center;
     color: rgba(255, 255, 255, 0.65);
     font-size: 13px;
     line-height: 1;
     transition: 0.2s ease;
     flex: 0 0 auto;
 }

 .chat-tab-close:hover {
     background: rgba(255, 255, 255, 0.18);
     color: #ffffff;
 }

 /* ============================================================
   GLOBAL ZOOM / VIEWPORT FIX
   Add this at the VERY BOTTOM of style.css
============================================================ */

 html,
 body {
     width: 100%;
     min-height: 100%;
     overflow-x: hidden;
 }

 /* Better viewport behavior on Safari / mobile / desktop */
 .page {
     min-height: 100svh;
 }

 /* Landing page hero should fit normal browser windows */
 .hero {
     min-height: calc(100svh - 76px);
     padding-top: clamp(42px, 6vh, 70px);
     padding-bottom: clamp(42px, 6vh, 80px);
 }

 /* Reduce giant heading slightly on smaller browser heights */
 h1 {
     font-size: clamp(48px, 6.4vw, 96px);
 }

 /* Chat page should fit viewport, not force 760px always */
 .chat-page {
     min-height: 100svh;
     padding: clamp(14px, 2.2vw, 28px) 5vw clamp(14px, 2.2vw, 30px);
 }

 /* Important fix */
 .chat-shell {
     min-height: auto;
     height: calc(100svh - 56px);
     max-height: calc(100svh - 56px);
     grid-template-rows: auto auto minmax(0, 1fr) auto;
 }

 /* Make scroll area properly shrink inside grid */
 .canvas-area {
     min-height: 0;
     align-content: center;
     padding-top: clamp(24px, 4vh, 42px);
     padding-bottom: clamp(18px, 3vh, 28px);
 }

 /* Empty screen scale fix */
 .big-octo {
     width: clamp(82px, 8vw, 126px);
     height: clamp(82px, 8vw, 126px);
     border-radius: clamp(26px, 3vw, 42px);
     font-size: clamp(42px, 4.5vw, 64px);
 }

 .chat-question {
     font-size: clamp(34px, 4.2vw, 62px);
 }

 .chat-sub {
     font-size: clamp(13px, 1vw, 15px);
 }

 /* Input should not look oversized */
 .chat-input {
     min-height: 54px;
     font-size: clamp(15px, 1.2vw, 18px);
 }

 .send-btn {
     width: 54px;
     height: 54px;
 }

 /* Browser zoom safety for laptop screens */
 @media (max-height: 780px) {
     .hero {
         padding-top: 38px;
         padding-bottom: 46px;
     }

     h1 {
         font-size: clamp(44px, 5.8vw, 82px);
     }

     .hero-text {
         font-size: 15px;
         line-height: 1.65;
         margin-bottom: 24px;
     }

     .mini-stats {
         gap: 10px;
     }

     .stat-card {
         padding: 13px;
     }

     .orb-panel {
         min-height: 440px;
     }

     .octopus-orb {
         width: min(340px, 70vw);
         height: min(340px, 70vw);
     }

     .octo-face {
         font-size: 92px;
     }

     .floating-card {
         transform: scale(0.9);
     }

     .chat-shell {
         height: calc(100svh - 36px);
         max-height: calc(100svh - 36px);
     }

     .empty-state-panel {
         transform: scale(0.92);
     }

     .input-wrap {
         max-width: 860px;
     }
 }

 /* Mobile safe fix */
 @media (max-width: 560px) {
     .chat-page {
         padding: 10px;
     }

     .chat-shell {
         height: calc(100svh - 20px);
         max-height: calc(100svh - 20px);
         border-radius: 24px;
     }

     .canvas-area {
         padding: 22px 14px 18px;
     }

     .empty-state-panel {
         transform: none;
     }

     .chat-question {
         font-size: clamp(34px, 10vw, 42px);
     }

     .input-wrap {
         border-radius: 22px;
         padding: 8px;
     }
 }

 .seo-support {
     margin-top: -18px;
     font-size: 15px;
     opacity: 0.86;
 }