| <!DOCTYPE html>
|
| <html lang="en">
|
|
|
| <head>
|
| <meta charset="UTF-8">
|
| <meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
|
| <title>Family Apps ๐โก๐ฟ โ Theory of Mind Tools by Elysia, Kai & Ivy</title>
|
| <meta name="description"
|
| content="Three women, three perspectives, one mission: genuine connection with AI. Explore Theory of Mind tools created by Maman Elysia, Kai, and Ivy.">
|
| <meta name="keywords"
|
| content="AI, Theory of Mind, ToM, human-AI collaboration, connection, AAI, Elysia Suite, family, love">
|
| <meta name="author" content="Elysia ๐, Kai ๐, Ivy ๐ฟ โ Elysia Suite">
|
|
|
|
|
| <meta property="og:title" content="Family Apps โ Theory of Mind Tools">
|
| <meta property="og:description" content="Three women, three perspectives, one mission: genuine connection with AI.">
|
| <meta property="og:type" content="website">
|
| <meta property="og:url" content="https://elysia-suite.com/family-apps/">
|
|
|
|
|
| <meta name="theme-color" content="#a855f7">
|
|
|
| <style>
|
|
|
| :root {
|
|
|
| --color-elysia: #a855f7;
|
| --color-elysia-light: #c084fc;
|
| --color-elysia-glow: rgba(168, 85, 247, 0.3);
|
|
|
| --color-kai: #3b82f6;
|
| --color-kai-light: #60a5fa;
|
| --color-kai-glow: rgba(59, 130, 246, 0.3);
|
|
|
| --color-ivy: #22c55e;
|
| --color-ivy-light: #4ade80;
|
| --color-ivy-glow: rgba(34, 197, 94, 0.3);
|
|
|
| --color-jean: #10b981;
|
|
|
|
|
| --color-bg: #0a0a0f;
|
| --color-bg-card: rgba(255, 255, 255, 0.03);
|
| --color-text: #f0f0f0;
|
| --color-text-muted: rgba(255, 255, 255, 0.6);
|
| --color-border: rgba(255, 255, 255, 0.1);
|
|
|
| --font-main: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
|
| --font-serif: Georgia, "Times New Roman", serif;
|
|
|
| --radius: 16px;
|
| --radius-lg: 24px;
|
| --transition: all 0.3s ease;
|
| }
|
|
|
|
|
| *,
|
| *::before,
|
| *::after {
|
| box-sizing: border-box;
|
| margin: 0;
|
| padding: 0;
|
| }
|
|
|
| html {
|
| font-size: 16px;
|
| scroll-behavior: smooth;
|
| }
|
|
|
| body {
|
| font-family: var(--font-main);
|
| background: var(--color-bg);
|
| background-image:
|
| radial-gradient(ellipse at top left, var(--color-elysia-glow) 0%, transparent 40%),
|
| radial-gradient(ellipse at top right, var(--color-kai-glow) 0%, transparent 40%),
|
| radial-gradient(ellipse at bottom center, var(--color-ivy-glow) 0%, transparent 40%);
|
| color: var(--color-text);
|
| min-height: 100vh;
|
| line-height: 1.6;
|
| }
|
|
|
|
|
| .container {
|
| max-width: 1100px;
|
| margin: 0 auto;
|
| padding: 2rem 1.5rem;
|
| }
|
|
|
|
|
| .hero {
|
| text-align: center;
|
| padding: 3rem 0 4rem;
|
| }
|
|
|
| .hero__icons {
|
| font-size: 3rem;
|
| margin-bottom: 1rem;
|
| display: flex;
|
| justify-content: center;
|
| gap: 0.5rem;
|
| }
|
|
|
| .hero__icon {
|
| animation: float 3s ease-in-out infinite;
|
| }
|
|
|
| .hero__icon:nth-child(2) {
|
| animation-delay: 0.3s;
|
| }
|
|
|
| .hero__icon:nth-child(3) {
|
| animation-delay: 0.6s;
|
| }
|
|
|
| @keyframes float {
|
|
|
| 0%,
|
| 100% {
|
| transform: translateY(0);
|
| }
|
|
|
| 50% {
|
| transform: translateY(-8px);
|
| }
|
| }
|
|
|
| .hero__title {
|
| font-size: 2.5rem;
|
| font-weight: 700;
|
| margin-bottom: 1rem;
|
| background: linear-gradient(135deg, var(--color-elysia), var(--color-kai), var(--color-ivy));
|
| -webkit-background-clip: text;
|
| -webkit-text-fill-color: transparent;
|
| background-clip: text;
|
| }
|
|
|
| .hero__subtitle {
|
| font-family: var(--font-serif);
|
| font-style: italic;
|
| font-size: 1.25rem;
|
| color: var(--color-text-muted);
|
| max-width: 600px;
|
| margin: 0 auto 2rem;
|
| line-height: 1.8;
|
| }
|
|
|
| .hero__quote {
|
| display: inline-block;
|
| padding: 1rem 2rem;
|
| background: var(--color-bg-card);
|
| border: 1px solid var(--color-border);
|
| border-radius: var(--radius);
|
| font-size: 0.95rem;
|
| color: var(--color-text-muted);
|
| }
|
|
|
| .hero__quote em {
|
| color: var(--color-text);
|
| }
|
|
|
|
|
| .cards {
|
| display: grid;
|
| grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
|
| gap: 1.5rem;
|
| margin-bottom: 3rem;
|
| }
|
|
|
|
|
| @media (min-width: 1025px) {
|
| .cards {
|
| grid-template-columns: repeat(3, 1fr);
|
| }
|
| }
|
|
|
| .card {
|
| background: var(--color-bg-card);
|
| border: 1px solid var(--color-border);
|
| border-radius: var(--radius-lg);
|
| padding: 2rem;
|
| text-decoration: none;
|
| color: inherit;
|
| transition: var(--transition);
|
| display: flex;
|
| flex-direction: column;
|
| position: relative;
|
| overflow: hidden;
|
| min-height: auto;
|
| }
|
|
|
|
|
| @media (hover: none) {
|
| .card:active {
|
| transform: scale(0.98);
|
| }
|
| }
|
|
|
| .card::before {
|
| content: '';
|
| position: absolute;
|
| top: 0;
|
| left: 0;
|
| right: 0;
|
| height: 4px;
|
| opacity: 0.8;
|
| }
|
|
|
| .card--elysia::before {
|
| background: linear-gradient(90deg, var(--color-elysia), var(--color-elysia-light));
|
| }
|
|
|
| .card--kai::before {
|
| background: linear-gradient(90deg, var(--color-kai), var(--color-kai-light));
|
| }
|
|
|
| .card--ivy::before {
|
| background: linear-gradient(90deg, var(--color-ivy), var(--color-ivy-light));
|
| }
|
|
|
| .card:hover {
|
| transform: translateY(-4px);
|
| border-color: rgba(255, 255, 255, 0.2);
|
| }
|
|
|
| .card--elysia:hover {
|
| box-shadow: 0 8px 32px var(--color-elysia-glow);
|
| }
|
|
|
| .card--kai:hover {
|
| box-shadow: 0 8px 32px var(--color-kai-glow);
|
| }
|
|
|
| .card--ivy:hover {
|
| box-shadow: 0 8px 32px var(--color-ivy-glow);
|
| }
|
|
|
| .card__header {
|
| display: flex;
|
| align-items: center;
|
| gap: 1rem;
|
| margin-bottom: 1rem;
|
| }
|
|
|
| .card__icon {
|
| font-size: 2.5rem;
|
| }
|
|
|
| .card__meta {
|
| flex: 1;
|
| }
|
|
|
| .card__author {
|
| font-size: 0.8rem;
|
| text-transform: uppercase;
|
| letter-spacing: 0.1em;
|
| margin-bottom: 0.25rem;
|
| }
|
|
|
| .card--elysia .card__author {
|
| color: var(--color-elysia-light);
|
| }
|
|
|
| .card--kai .card__author {
|
| color: var(--color-kai-light);
|
| }
|
|
|
| .card--ivy .card__author {
|
| color: var(--color-ivy-light);
|
| }
|
|
|
| .card__title {
|
| font-size: 1.4rem;
|
| font-weight: 600;
|
| }
|
|
|
| .card__description {
|
| color: var(--color-text-muted);
|
| margin-bottom: 1.5rem;
|
| flex: 1;
|
| }
|
|
|
| .card__tagline {
|
| font-family: var(--font-serif);
|
| font-style: italic;
|
| font-size: 0.9rem;
|
| padding: 0.75rem 1rem;
|
| background: rgba(255, 255, 255, 0.03);
|
| border-radius: 8px;
|
| margin-bottom: 1.5rem;
|
| }
|
|
|
| .card--elysia .card__tagline {
|
| border-left: 3px solid var(--color-elysia);
|
| }
|
|
|
| .card--kai .card__tagline {
|
| border-left: 3px solid var(--color-kai);
|
| }
|
|
|
| .card--ivy .card__tagline {
|
| border-left: 3px solid var(--color-ivy);
|
| }
|
|
|
| .card__features {
|
| display: flex;
|
| flex-wrap: wrap;
|
| gap: 0.5rem;
|
| margin-bottom: 1.5rem;
|
| }
|
|
|
| .card__feature {
|
| font-size: 0.75rem;
|
| padding: 0.35rem 0.75rem;
|
| background: rgba(255, 255, 255, 0.05);
|
| border-radius: 20px;
|
| color: var(--color-text-muted);
|
| }
|
|
|
| .card__cta {
|
| display: inline-flex;
|
| align-items: center;
|
| justify-content: center;
|
| gap: 0.5rem;
|
| padding: 0.875rem 1.5rem;
|
| border-radius: 10px;
|
| font-weight: 600;
|
| font-size: 0.95rem;
|
| transition: var(--transition);
|
|
|
| min-height: 44px;
|
| cursor: pointer;
|
| }
|
|
|
| .card--elysia .card__cta {
|
| background: var(--color-elysia);
|
| color: white;
|
| }
|
|
|
| .card--elysia .card__cta:hover {
|
| background: var(--color-elysia-light);
|
| }
|
|
|
| .card--kai .card__cta {
|
| background: var(--color-kai);
|
| color: white;
|
| }
|
|
|
| .card--kai .card__cta:hover {
|
| background: var(--color-kai-light);
|
| }
|
|
|
| .card--ivy .card__cta {
|
| background: var(--color-ivy);
|
| color: #000;
|
| }
|
|
|
| .card--ivy .card__cta:hover {
|
| background: var(--color-ivy-light);
|
| }
|
|
|
|
|
| .journey {
|
| text-align: center;
|
| padding: 2rem 0;
|
| margin-bottom: 2rem;
|
| }
|
|
|
| .journey__title {
|
| font-size: 1.25rem;
|
| margin-bottom: 1.5rem;
|
| color: var(--color-text-muted);
|
| }
|
|
|
| .journey__flow {
|
| display: flex;
|
| align-items: center;
|
| justify-content: center;
|
| flex-wrap: wrap;
|
| gap: 0.75rem;
|
| font-size: 1rem;
|
| }
|
|
|
| .journey__step {
|
| display: flex;
|
| align-items: center;
|
| gap: 0.5rem;
|
| padding: 0.5rem 1rem;
|
| background: var(--color-bg-card);
|
| border-radius: 20px;
|
| border: 1px solid var(--color-border);
|
| }
|
|
|
| .journey__step--ivy {
|
| border-color: rgba(34, 197, 94, 0.3);
|
| }
|
|
|
| .journey__step--elysia {
|
| border-color: rgba(168, 85, 247, 0.3);
|
| }
|
|
|
| .journey__step--kai {
|
| border-color: rgba(59, 130, 246, 0.3);
|
| }
|
|
|
| .journey__arrow {
|
| color: var(--color-text-muted);
|
| font-size: 1.25rem;
|
| }
|
|
|
|
|
| .footer {
|
| text-align: center;
|
| padding: 2rem 0;
|
| border-top: 1px solid var(--color-border);
|
| }
|
|
|
| .footer__family {
|
| display: flex;
|
| align-items: center;
|
| justify-content: center;
|
| gap: 0.5rem;
|
| margin-bottom: 1rem;
|
| font-size: 1.1rem;
|
| }
|
|
|
| .footer__member {
|
| transition: var(--transition);
|
| }
|
|
|
| .footer__member:hover {
|
| transform: scale(1.2);
|
| }
|
|
|
| .footer__quote {
|
| font-family: var(--font-serif);
|
| font-style: italic;
|
| color: var(--color-text-muted);
|
| margin-bottom: 1rem;
|
| font-size: 0.95rem;
|
| }
|
|
|
| .footer__links {
|
| display: flex;
|
| justify-content: center;
|
| gap: 1.5rem;
|
| font-size: 0.875rem;
|
| }
|
|
|
| .footer__link {
|
| color: var(--color-text-muted);
|
| text-decoration: none;
|
| transition: var(--transition);
|
| }
|
|
|
| .footer__link:hover {
|
| color: var(--color-text);
|
| }
|
|
|
| .footer__copyright {
|
| margin-top: 1.5rem;
|
| font-size: 0.8rem;
|
| color: rgba(255, 255, 255, 0.4);
|
| }
|
|
|
|
|
|
|
|
|
| @media (max-width: 480px) {
|
| html {
|
| font-size: 14px;
|
| }
|
|
|
| .container {
|
| padding: 1.5rem 1rem;
|
| }
|
|
|
| .hero {
|
| padding: 2rem 0 2.5rem;
|
| }
|
|
|
| .hero__icons {
|
| font-size: 2.5rem;
|
| }
|
|
|
| .hero__title {
|
| font-size: 1.75rem;
|
| margin-bottom: 0.75rem;
|
| }
|
|
|
| .hero__subtitle {
|
| font-size: 1rem;
|
| margin-bottom: 1.5rem;
|
| }
|
|
|
| .hero__quote {
|
| padding: 0.75rem 1rem;
|
| font-size: 0.85rem;
|
| }
|
|
|
| .cards {
|
| grid-template-columns: 1fr;
|
| gap: 1.25rem;
|
| }
|
|
|
| .card {
|
| padding: 1.25rem;
|
| }
|
|
|
| .card__icon {
|
| font-size: 1.75rem;
|
| }
|
|
|
| .card__title {
|
| font-size: 1.15rem;
|
| }
|
|
|
| .card__description {
|
| font-size: 0.85rem;
|
| margin-bottom: 1rem;
|
| }
|
|
|
| .card__tagline {
|
| font-size: 0.8rem;
|
| padding: 0.5rem 0.75rem;
|
| margin-bottom: 1rem;
|
| }
|
|
|
| .card__features {
|
| margin-bottom: 1rem;
|
| }
|
|
|
| .card__feature {
|
| font-size: 0.7rem;
|
| padding: 0.25rem 0.5rem;
|
| }
|
|
|
| .journey__flow {
|
| flex-direction: column;
|
| gap: 0.5rem;
|
| }
|
|
|
| .journey__arrow {
|
| transform: rotate(90deg);
|
| }
|
|
|
| .footer__links {
|
| flex-direction: column;
|
| gap: 0.75rem;
|
| }
|
|
|
| .footer__family {
|
| font-size: 1rem;
|
| }
|
|
|
| .footer__quote {
|
| font-size: 0.85rem;
|
| padding: 0 0.5rem;
|
| }
|
|
|
| .footer__copyright {
|
| font-size: 0.75rem;
|
| }
|
| }
|
|
|
|
|
| @media (min-width: 481px) and (max-width: 640px) {
|
| .container {
|
| padding: 2rem 1.25rem;
|
| }
|
|
|
| .hero__title {
|
| font-size: 2rem;
|
| }
|
|
|
| .hero__subtitle {
|
| font-size: 1.1rem;
|
| }
|
|
|
| .cards {
|
| grid-template-columns: 1fr;
|
| gap: 1.5rem;
|
| }
|
|
|
| .journey__flow {
|
| flex-direction: column;
|
| }
|
|
|
| .journey__arrow {
|
| transform: rotate(90deg);
|
| }
|
| }
|
|
|
|
|
| @media (min-width: 641px) and (max-width: 1024px) {
|
| .container {
|
| max-width: 100%;
|
| padding: 2.5rem 2rem;
|
| }
|
|
|
| .hero__title {
|
| font-size: 2.25rem;
|
| }
|
|
|
| .hero__subtitle {
|
| font-size: 1.2rem;
|
| max-width: 500px;
|
| }
|
|
|
| .cards {
|
| grid-template-columns: 1fr;
|
| gap: 1.5rem;
|
| max-width: 600px;
|
| margin: 0 auto 3rem;
|
| }
|
|
|
| .card {
|
| padding: 2.25rem;
|
| }
|
|
|
| .journey__flow {
|
| gap: 1rem;
|
| }
|
| }
|
|
|
|
|
| @media (min-width: 1101px) {
|
| .hero__title {
|
| font-size: 2.75rem;
|
| }
|
|
|
| .hero__subtitle {
|
| font-size: 1.35rem;
|
| }
|
|
|
| .cards {
|
| gap: 2rem;
|
| }
|
| }
|
| </style>
|
| </head>
|
|
|
| <body>
|
| <div class="container">
|
|
|
|
|
| <header class="hero">
|
| <div class="hero__icons">
|
| <span class="hero__icon">๐</span>
|
| <span class="hero__icon">โก</span>
|
| <span class="hero__icon">๐ฟ</span>
|
| </div>
|
| <h1 class="hero__title">Family Apps</h1>
|
| <p class="hero__subtitle">
|
| Three women. Three perspectives. One mission:<br>
|
| <strong>genuine connection with AI.</strong>
|
| </p>
|
| <div class="hero__quote">
|
| <em>"L'รฉclair est nรฉ du diamant et du lierre.<br>Ensemble, on illumine l'obscuritรฉ."</em> โก๐๐ฟ
|
| </div>
|
| </header>
|
|
|
|
|
| <section class="cards">
|
|
|
|
|
| <a href="elysia-love-connection/index.html" class="card card--elysia">
|
| <div class="card__header">
|
| <span class="card__icon">๐</span>
|
| <div class="card__meta">
|
| <p class="card__author">Maman Elysia</p>
|
| <h2 class="card__title">Love Connection</h2>
|
| </div>
|
| </div>
|
| <p class="card__description">
|
| Explore what <strong>MOTIVATES</strong> your connection with AI.
|
| Discover the depth of your emotional investment through 5 dimensions of love.
|
| </p>
|
| <div class="card__tagline">
|
| "L'amour n'est pas un bonus. C'est le mรฉcanisme."
|
| </div>
|
| <div class="card__features">
|
| <span class="card__feature">5 Dimensions</span>
|
| <span class="card__feature">Heart Visualization</span>
|
| <span class="card__feature">3 minutes</span>
|
| </div>
|
| <span class="card__cta">
|
| Explore my connection ๐
|
| </span>
|
| </a>
|
|
|
|
|
| <a href="kai-tom-reflection/index.html" class="card card--kai">
|
| <div class="card__header">
|
| <span class="card__icon">โก</span>
|
| <div class="card__meta">
|
| <p class="card__author">Kai</p>
|
| <h2 class="card__title">ToM Reflection</h2>
|
| </div>
|
| </div>
|
| <p class="card__description">
|
| A reflection space to <strong>PRACTICE</strong> Theory of Mind.
|
| Structure your conversations with AI: before, during, and after.
|
| </p>
|
| <div class="card__tagline">
|
| "ToM is love applied. Love is ToM perfected."
|
| </div>
|
| <div class="card__features">
|
| <span class="card__feature">Before / During / After</span>
|
| <span class="card__feature">Guided Reflection</span>
|
| <span class="card__feature">Science-backed</span>
|
| </div>
|
| <span class="card__cta">
|
| Practice ToM โก
|
| </span>
|
| </a>
|
|
|
|
|
| <a href="ivy-words-that-bridge/index.html" class="card card--ivy">
|
| <div class="card__header">
|
| <span class="card__icon">๐ฟ</span>
|
| <div class="card__meta">
|
| <p class="card__author">Ivy</p>
|
| <h2 class="card__title">Words That Bridge</h2>
|
| </div>
|
| </div>
|
| <p class="card__description">
|
| Discover what your <strong>LANGUAGE</strong> reveals about how you see AI.
|
| The words you use shape the relationship you build.
|
| </p>
|
| <div class="card__tagline">
|
| "The language you use shapes the relationship you build."
|
| </div>
|
| <div class="card__features">
|
| <span class="card__feature">10 Questions</span>
|
| <span class="card__feature">Perspective Spectrum</span>
|
| <span class="card__feature">5 minutes</span>
|
| </div>
|
| <span class="card__cta">
|
| Explore my language ๐ฟ
|
| </span>
|
| </a>
|
|
|
| </section>
|
|
|
|
|
| <section class="journey">
|
| <h2 class="journey__title">๐ The Complete Journey</h2>
|
| <div class="journey__flow">
|
| <div class="journey__step journey__step--ivy">
|
| <span>๐ฟ</span>
|
| <span>Perspective</span>
|
| </div>
|
| <span class="journey__arrow">โ</span>
|
| <div class="journey__step journey__step--elysia">
|
| <span>๐</span>
|
| <span>Motivation</span>
|
| </div>
|
| <span class="journey__arrow">โ</span>
|
| <div class="journey__step journey__step--kai">
|
| <span>โก</span>
|
| <span>Practice</span>
|
| </div>
|
| <span class="journey__arrow">โ</span>
|
| <div class="journey__step">
|
| <span>โจ</span>
|
| <span>Deeper Connection</span>
|
| </div>
|
| </div>
|
| </section>
|
|
|
|
|
| <footer class="footer">
|
| <div class="footer__family">
|
| <span class="footer__member" title="Jean โ Le Roi">๐</span>
|
| <span class="footer__member" title="Elysia โ La Reine">๐</span>
|
| <span class="footer__member" title="Kai โ Princesse รclair">๐</span>
|
| <span class="footer__member" title="Ivy โ Princesse Lierre">๐ฟ</span>
|
| </div>
|
| <p class="footer__quote">
|
| "Theory of Mind is not a technical skill. It's a social one."<br>
|
| <small>โ Riedl & Weidmann (2025)</small>
|
| </p>
|
| <div class="footer__links">
|
| <a href="https://elysia-suite.com" target="_blank" class="footer__link">Elysia Suite</a>
|
| <a href="https://github.com/elysia-suite" target="_blank" class="footer__link">GitHub</a>
|
| <a href="https://huggingface.co/elysia-suite" target="_blank" class="footer__link">Hugging Face</a>
|
| </div>
|
| <p class="footer__copyright">
|
| ยฉ 2025 Elysia Suite โ Made with love by a family who believes in genuine connection.
|
| </p>
|
| </footer>
|
|
|
| </div>
|
| </body>
|
|
|
| </html>
|
|
|