<!doctype html>

<html lang="en">

<head>

  <meta charset="utf-8" />

  <meta name="viewport" content="width=device-width,initial-scale=1" />

  <title>Social Semiotics in the Age of AI</title>

  <style>

    :root{

      --black:#000000;

      --white:#ffffff;

    }

    html, body{

      height:100%;

      margin:0;

      font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;

    }

    .page{

      min-height:100vh;

      display:flex;

      flex-direction:row;

    }

    .panel{

      flex:1;

      display:flex;

      align-items:center;

      justify-content:center;

      padding: clamp(24px, 6vw, 80px);

      box-sizing:border-box;

    }

    .left{

      background:var(--black);

      color:var(--white);

    }

    .right{

      background:var(--white);

      color:var(--black);

    }

    .title-wrap{

      max-width: 900px;

    }

    .title{

      margin:0;

      font-size: clamp(26px, 3.2vw, 44px);

      font-weight: 600;

      letter-spacing: 0.2px;

      line-height: 1.15;

    }

    .subtitle{

      margin: 14px 0 0 0;

      font-size: clamp(14px, 1.6vw, 20px);

      font-weight: 700;

      text-transform: uppercase;

      letter-spacing: 1.2px;

      line-height: 1.25;

      opacity: 0.95;

    }

    /* small screens: stack panels */

    @media (max-width: 900px){

      .page{ flex-direction:column; }

      .panel{ min-height:50vh; }

    }

  </style>

</head>

<body>

  <main class="page">

    <section class="panel left">

      <div class="title-wrap">

        <h1 class="title">Social Semiotics in the age of artificial intelligence (AI)</h1>

        <p class="subtitle">THE SEARCH FOR A NEW MEANING IN THE TEXT, IMAGE, AND KNOWLEDGE</p>

      </div>

    </section>


    <section class="panel right" aria-label="White panel">

      <!-- Intentionally left blank -->

    </section>

  </main>

</body>

</html>