<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1" />
  <title>SadTurtle — Software Studio</title>
  <meta name="description" content="SadTurtle builds reactive, thoughtful iOS experiences. Home of Relativ and Roll Rewind." />
  <meta property="og:title" content="SadTurtle — Software Studio" />
  <meta property="og:description" content="Independent, product-focused software by SadTurtle. Relativ and Roll Rewind." />
  <meta property="og:type" content="website" />
  <style>
    :root {
      --ink: #0c0f14;
      --ink-soft: #1f2633;
      --paper: #f7f4ef;
      --accent: #ff7a5c;
      --accent-deep: #ea5b3c;
      --sea: #b6d3df;
      --mint: #c7e6d1;
      --gold: #f4c06b;
      --shadow: 0 24px 50px rgba(12, 15, 20, 0.12);
      --radius-lg: 28px;
      --radius-md: 18px;
      --radius-sm: 12px;
      --grid: min(1200px, 92vw);
    }

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: "Avenir Next", "Avenir", "SF Pro Text", "Helvetica Neue", sans-serif;
      color: var(--ink);
      background: var(--paper);
      line-height: 1.6;
      overflow-x: hidden;
    }

    body::before,
    body::after {
      content: "";
      position: fixed;
      inset: -20% -10% auto;
      height: 70vh;
      z-index: -2;
      background:
        radial-gradient(circle at 15% 20%, rgba(255, 122, 92, 0.25), transparent 55%),
        radial-gradient(circle at 70% 10%, rgba(182, 211, 223, 0.5), transparent 60%),
        radial-gradient(circle at 85% 65%, rgba(199, 230, 209, 0.5), transparent 65%);
      filter: blur(6px);
    }

    body::after {
      inset: auto -15% -30% -15%;
      height: 70vh;
      background:
        radial-gradient(circle at 20% 35%, rgba(244, 192, 107, 0.4), transparent 60%),
        radial-gradient(circle at 70% 65%, rgba(182, 211, 223, 0.35), transparent 60%);
    }

    .noise {
      position: fixed;
      inset: 0;
      z-index: -1;
      opacity: 0.04;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
      pointer-events: none;
    }

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

    .container {
      width: var(--grid);
      margin: 0 auto;
    }

    header {
      position: sticky;
      top: 0;
      z-index: 10;
      backdrop-filter: blur(12px);
      background: rgba(247, 244, 239, 0.75);
      border-bottom: 1px solid rgba(12, 15, 20, 0.08);
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 0;
      gap: 24px;
    }

    .logo {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-family: "Iowan Old Style", "Palatino", "Hoefler Text", "Times New Roman", serif;
      font-size: 1.35rem;
      letter-spacing: 0.5px;
    }

    .logo img {
      width: 36px;
      height: 36px;
      object-fit: contain;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 28px;
      font-size: 0.95rem;
    }

    .nav-links a {
      opacity: 0.8;
      transition: opacity 0.2s ease;
    }

    .nav-links a:hover {
      opacity: 1;
    }

    .cta-button {
      padding: 10px 18px;
      border-radius: 999px;
      background: var(--ink);
      color: var(--paper);
      font-weight: 500;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      box-shadow: var(--shadow);
    }

    .cta-button:hover {
      transform: translateY(-2px);
      box-shadow: 0 30px 60px rgba(12, 15, 20, 0.18);
    }

    .menu-toggle {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
    }

    .menu-toggle span {
      display: block;
      width: 26px;
      height: 2px;
      margin: 6px 0;
      background: var(--ink);
      transition: transform 0.2s ease;
    }

    .mobile-menu {
      display: none;
      flex-direction: column;
      gap: 16px;
      padding: 12px 0 20px;
    }

    .hero {
      padding: 80px 0 60px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr);
      gap: 32px;
      align-items: center;
    }

    .hero h1 {
      font-family: "Iowan Old Style", "Palatino", "Hoefler Text", "Times New Roman", serif;
      font-size: clamp(2.6rem, 4vw, 4rem);
      margin: 0 0 16px;
      line-height: 1.05;
    }

    .hero p {
      font-size: 1.05rem;
      color: var(--ink-soft);
      margin: 0 0 24px;
    }

    .hero-tags {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-bottom: 32px;
    }

    .tag {
      padding: 6px 14px;
      border-radius: 999px;
      font-size: 0.85rem;
      background: rgba(12, 15, 20, 0.08);
    }


    .secondary-button {
      padding: 10px 18px;
      border-radius: 999px;
      border: 1px solid rgba(12, 15, 20, 0.2);
      color: var(--ink);
      font-weight: 500;
    }


    .section {
      padding: 70px 0;
    }

    .section-title {
      font-family: "Iowan Old Style", "Palatino", "Hoefler Text", "Times New Roman", serif;
      font-size: clamp(2rem, 3vw, 3rem);
      margin: 0 0 14px;
    }

    .section-lead {
      color: var(--ink-soft);
      margin: 0 0 32px;
      max-width: 640px;
    }

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

    .product-card {
      border-radius: var(--radius-lg);
      background: rgba(255, 255, 255, 0.65);
      box-shadow: var(--shadow);
      padding: 28px;
      display: grid;
      gap: 18px;
      position: relative;
      overflow: hidden;
    }

    .product-card-link {
      text-decoration: none;
      color: inherit;
      cursor: pointer;
    }

    .product-card-link:focus-visible {
      outline: 2px solid rgba(12, 15, 20, 0.35);
      outline-offset: 4px;
    }

    .product-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(120deg, rgba(255, 122, 92, 0.15), rgba(182, 211, 223, 0.15));
      opacity: 0;
      transition: opacity 0.2s ease;
    }

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

    .product-card h3 {
      font-family: "Iowan Old Style", "Palatino", "Hoefler Text", "Times New Roman", serif;
      font-size: 1.8rem;
      margin: 0;
    }

    .product-card h3 + .product-highlight {
      margin-top: 6px;
    }

    .product-highlight {
      display: grid;
      gap: 10px;
      font-size: 0.95rem;
      color: var(--ink-soft);
    }

    .product-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      align-items: center;
    }

    .product-visual {
      height: 200px;
      border-radius: var(--radius-md);
      background: linear-gradient(150deg, rgba(255, 122, 92, 0.25), rgba(244, 192, 107, 0.25));
      position: relative;
      overflow: hidden;
    }

    .product-visual .badge {
      position: absolute;
      top: 16px;
      right: 16px;
      padding: 6px 12px;
      background: rgba(12, 15, 20, 0.85);
      color: var(--paper);
      border-radius: 999px;
      font-size: 0.75rem;
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    .product-visual.roll {
      background: linear-gradient(120deg, rgba(199, 230, 209, 0.4), rgba(182, 211, 223, 0.35));
      display: grid;
      align-items: center;
      padding: 18px;
    }

    .product-visual.roll .screenshot-strip {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
      width: 100%;
      height: 100%;
    }

    .product-visual.roll img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      border-radius: 18px;
      box-shadow: 0 16px 36px rgba(12, 15, 20, 0.18);
    }

    .product-visual.globe {
      background: linear-gradient(120deg, rgba(184, 224, 200, 0.4), rgba(188, 214, 232, 0.35));
      display: grid;
      align-items: center;
      padding: 18px;
    }

    .product-visual.globe .screenshot-strip {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
      width: 100%;
      height: 100%;
    }

    .product-visual.globe img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      border-radius: 18px;
      box-shadow: 0 16px 36px rgba(12, 15, 20, 0.18);
    }


    .cta-strip {
      border-radius: var(--radius-lg);
      background: var(--ink);
      color: var(--paper);
      padding: 40px;
      display: grid;
      gap: 18px;
      position: relative;
      overflow: hidden;
    }

    .cta-strip::after {
      content: "";
      position: absolute;
      inset: -40% auto auto -20%;
      width: 260px;
      height: 260px;
      border-radius: 50%;
      background: radial-gradient(circle at 30% 30%, rgba(255, 122, 92, 0.6), transparent 70%);
      opacity: 0.8;
    }

    .cta-strip h2 {
      margin: 0;
      font-family: "Fraunces", "Times New Roman", serif;
      font-size: clamp(1.8rem, 3vw, 2.6rem);
    }

    .cta-strip p {
      margin: 0;
      color: rgba(247, 244, 239, 0.8);
    }

    footer {
      padding: 40px 0 60px;
      font-size: 0.9rem;
      color: rgba(12, 15, 20, 0.65);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 20px;
    }

    .footer-grid h4 {
      margin: 0 0 10px;
      font-family: "Fraunces", "Times New Roman", serif;
      color: var(--ink);
    }

    .footer-bottom {
      margin-top: 22px;
      font-size: 0.85rem;
      color: rgba(12, 15, 20, 0.55);
    }

    .fade-in {
      opacity: 0;
      transform: translateY(18px);
      animation: fadeUp 0.7s ease forwards;
    }

    .fade-in.delay-1 { animation-delay: 0.15s; }
    .fade-in.delay-2 { animation-delay: 0.3s; }
    .fade-in.delay-3 { animation-delay: 0.45s; }

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

    @media (max-width: 960px) {
      .hero-grid,
      .product-grid,
      .principles,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .nav-links {
        display: none;
      }

      .menu-toggle {
        display: block;
      }

      .mobile-menu.active {
        display: flex;
      }

      .hero {
        padding-top: 60px;
      }

    }

    @media (max-width: 720px) {
      .product-visual.roll .screenshot-strip {
        grid-auto-flow: column;
        grid-auto-columns: 70%;
        overflow-x: auto;
        padding-bottom: 6px;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .fade-in {
        animation: none;
        opacity: 1;
        transform: none;
      }

      .cta-button,
      .product-card::before {
        transition: none;
      }
    }
  </style>
</head>
<body>
  <div class="noise" aria-hidden="true"></div>
  <header>
    <div class="container">
      <nav class="nav">
        <div class="logo">
          <img src="assets/sadturtle-logo.png" alt="SadTurtle logo" />
          <span>SadTurtle</span>
        </div>
        <div class="nav-links">
          <a href="#products">Products</a>
          <a href="#contact">Contact</a>
        </div>
        <button class="menu-toggle" aria-label="Toggle menu">
          <span></span>
          <span></span>
          <span></span>
        </button>
      </nav>
      <div class="mobile-menu" aria-label="Mobile navigation">
        <a href="#products">Products</a>
        <a href="#contact">Contact</a>
      </div>
    </div>
  </header>

  <main>
    <section class="hero">
      <div class="container hero-grid">
        <div>
          <h1 class="fade-in delay-1">Novel ideas and user-first design</h1>
          <p class="fade-in delay-2">
            SadTurtle crafts apps that respect your time and attention. Every release starts with a new perspective
            that gets refined into a beautiful and engaging user experience
          </p>
        </div>
      </div>
    </section>

    <section id="products" class="section">
      <div class="container">
        <h2 class="section-title">Products</h2>
        <div class="product-grid">
          <a class="product-card product-card-link fade-in delay-1" href="roll-rewind.html" aria-label="Roll Rewind product page">
            <div class="product-visual roll">
              <span class="badge">Roll Rewind</span>
              <div class="screenshot-strip">
                <img src="assets/roll-rewind/rr-01.png" alt="Roll Rewind screenshot 1" loading="lazy" />
                <img src="assets/roll-rewind/rr-02.png" alt="Roll Rewind screenshot 2" loading="lazy" />
                <img src="assets/roll-rewind/rr-03.png" alt="Roll Rewind screenshot 3" loading="lazy" />
              </div>
            </div>
            <h3>Roll Rewind</h3>
            <div class="product-highlight">
              <p>Year in review for your photos</p>
              <p>Discover and share the fun patterns, places, and stats hiding in your camera roll</p>
            </div>
          </a>
          <a class="product-card product-card-link fade-in delay-2" href="globe-connect.html" aria-label="GloBLE Connect product page">
            <div class="product-visual globe">
              <span class="badge">GloBLE Connect</span>
              <div class="screenshot-strip">
                <img src="assets/globe-connect/gc-01.png" alt="GloBLE Connect screenshot 1" loading="lazy" />
                <img src="assets/globe-connect/gc-03.png" alt="GloBLE Connect screenshot 3" loading="lazy" />
                <img src="assets/globe-connect/gc-05.png" alt="GloBLE Connect screenshot 5" loading="lazy" />
              </div>
            </div>
            <h3>GloBLE Connect</h3>
            <div class="product-highlight">
              <p>Your Globe Haul, connected</p>
              <p>Live dashboard, ride tracking, and bike controls for your Specialized e-bike</p>
            </div>
          </a>
        </div>
      </div>
    </section>

    <section id="contact" class="section">
      <div class="container">
        <div class="cta-strip">
          <h2>Let's talk</h2>
          <p>Send a note and we will reply soon — <a href="/cdn-cgi/l/email-protection#1a727f7676755a697b7e6e6f686e767f34797577"><span class="__cf_email__" data-cfemail="325a575e5e5d72415356464740465e571c515d5f">[email&#160;protected]</span></a></p>
        </div>
      </div>
    </section>
  </main>

  <footer>
    <div class="container footer-grid">
      <div>
        <h4>SadTurtle</h4>
        <p>Design through curiosity</p>
      </div>
      <div>
        <h4>Products</h4>
        <p><a href="roll-rewind.html">Roll Rewind</a></p>
        <p><a href="globe-connect.html">GloBLE Connect</a></p>
      </div>
      <div>
        <h4>Contact</h4>
        <p><a href="/cdn-cgi/l/email-protection#c5ada0a9a9aa85b6a4a1b1b0b7b1a9a0eba6aaa8"><span class="__cf_email__" data-cfemail="751d1019191a350614110100070119105b161a18">[email&#160;protected]</span></a></p>
      </div>
    </div>
    <div class="container footer-bottom">
      <p>&copy; <span id="footer-year"></span> SadTurtle</p>
    </div>
  </footer>

  <script data-cfasync="false" src="/cdn-cgi/scripts/5c5dd728/cloudflare-static/email-decode.min.js"></script><script>
    const toggle = document.querySelector(".menu-toggle");
    const mobileMenu = document.querySelector(".mobile-menu");

    toggle.addEventListener("click", () => {
      mobileMenu.classList.toggle("active");
    });

    const footerYear = document.getElementById("footer-year");
    if (footerYear) {
      footerYear.textContent = new Date().getFullYear();
    }
  </script>
</body>
</html>
