<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>A Transcendent Platform</title>
<meta name="description" content="A digital property of Transcendent, a UK-based operator developing a curated portfolio of India-focused digital properties.">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link href="https://fonts.googleapis.com/css2?family=Familjen+Grotesk:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Instrument+Serif:ital@0;1&display=swap" rel="stylesheet">
<style>
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --bg: #080808;
    --surface: #0f0f0f;
    --card: #141414;
    --card-hover: #1a1a1a;
    --border: rgba(255,255,255,0.06);
    --border-bright: rgba(255,255,255,0.12);
    --text: #ededed;
    --muted: #666;
    --dim: #2a2a2a;
    --orange: #ff6b35;
    --orange-dim: rgba(255,107,53,0.1);
    --orange-glow: rgba(255,107,53,0.2);
    --white: #ffffff;
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Familjen Grotesk', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }

  /* NAV */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 0 2.5rem;
    height: 58px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(8,8,8,0.8);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
  }

  .nav-logo {
    font-family: 'Familjen Grotesk', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    letter-spacing: -0.02em;
  }

  .nav-dot {
    width: 8px; height: 8px;
    background: var(--orange);
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
    box-shadow: 0 0 8px var(--orange-glow);
  }

  @keyframes dotPulse {
    0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 8px var(--orange-glow); }
    50% { opacity: 0.7; transform: scale(0.75); box-shadow: 0 0 4px var(--orange-glow); }
  }

  nav a.nav-cta {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--white);
    background: var(--orange);
    border-radius: 6px;
    padding: 0.42rem 1rem;
    text-decoration: none;
    transition: all 0.15s;
    letter-spacing: -0.01em;
  }

  nav a.nav-cta:hover {
    background: #ff8255;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(255,107,53,0.3);
  }

  /* HERO / HOLDING CONTENT */
  main {
    flex: 1;
    position: relative;
    min-height: 100vh;
    padding-top: 58px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .holding-overlay {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 70% 60% at 50% 30%, rgba(255,107,53,0.07) 0%, transparent 70%);
    pointer-events: none;
  }

  .holding-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 2rem 4rem;
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin: 0 auto;
  }

  .holding-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--orange);
    background: rgba(255,107,53,0.08);
    border: 1px solid rgba(255,107,53,0.25);
    padding: 0.35rem 1rem;
    border-radius: 100px;
    margin-bottom: 2rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeUp 0.6s 0.1s forwards;
  }

  .badge-dot {
    width: 5px; height: 5px;
    background: var(--orange);
    border-radius: 50%;
    animation: dotPulse 1.5s infinite;
  }

  .holding-title {
    font-family: 'Familjen Grotesk', sans-serif;
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--white);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.3s forwards;
    word-break: break-word;
  }

  .holding-title .accent {
    color: var(--orange);
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-weight: 400;
  }

  .holding-sub {
    font-size: 1.05rem;
    font-weight: 400;
    color: rgba(237,237,237,0.65);
    max-width: 560px;
    line-height: 1.75;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeUp 0.7s 0.5s forwards;
  }

  .holding-prose {
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.85;
    max-width: 560px;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeUp 0.7s 0.55s forwards;
  }

  .holding-prose strong { color: var(--text); font-weight: 600; }

  .holding-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    opacity: 0;
    animation: fadeUp 0.7s 0.65s forwards;
  }

  .btn-primary {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    background: var(--orange);
    padding: 0.85rem 1.85rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
    letter-spacing: -0.01em;
  }

  .btn-primary:hover {
    background: #ff8255;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(255,107,53,0.35);
  }

  .btn-secondary {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--border-bright);
    padding: 0.85rem 1.85rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
    letter-spacing: -0.01em;
    backdrop-filter: blur(8px);
  }

  .btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
  }

  /* STATUS STRIP */
  .status-strip {
    position: relative;
    z-index: 2;
    border-top: 1px solid var(--border);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: rgba(8,8,8,0.9);
    backdrop-filter: blur(20px);
    opacity: 0;
    animation: fadeIn 0.8s 0.8s forwards;
  }

  .sstat {
    padding: 1.5rem 2rem;
    border-right: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    transition: background 0.2s;
    text-align: left;
  }

  .sstat:last-child { border-right: none; }
  .sstat:hover { background: rgba(255,107,53,0.04); }

  .sstat-icon { font-size: 1.1rem; flex-shrink: 0; }

  .sstat-val {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.02em;
  }

  .sstat-label {
    font-size: 0.66rem;
    color: var(--muted);
    margin-top: 0.1rem;
  }

  /* CONTACT */
  #contact {
    background: var(--surface);
    border-top: 1px solid var(--border);
    position: relative;
    z-index: 2;
  }

  .contact-wrap {
    max-width: 640px;
    margin: 0 auto;
    padding: 5rem 2.5rem;
    text-align: center;
  }

  .stag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    justify-content: center;
    width: 100%;
  }

  .stag::before { content: ''; width: 14px; height: 1px; background: var(--orange); }

  .sheading {
    font-family: 'Familjen Grotesk', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: var(--white);
    margin-bottom: 1rem;
  }

  .contact-intro {
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 2.5rem;
  }

  .contact-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 1.25rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px;
    text-decoration: none;
    color: var(--text);
    transition: all 0.2s;
    gap: 1rem;
    max-width: 420px;
    margin: 0 auto;
  }

  .contact-link:hover {
    border-color: var(--orange);
    background: var(--orange-dim);
    transform: translateX(4px);
  }

  .cl-label {
    font-size: 0.62rem;
    font-weight: 700;
    color: var(--muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.2rem;
  }

  .cl-value {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: -0.01em;
  }

  .cl-arrow {
    color: var(--orange);
    font-size: 1rem;
    flex-shrink: 0;
    transition: transform 0.2s;
  }

  .contact-link:hover .cl-arrow { transform: translateX(4px); }

  /* FOOTER */
  footer {
    padding: 1.5rem 2.5rem;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg);
  }

  .footer-logo {
    font-size: 0.85rem;
    font-weight: 700;
    color: #333;
    letter-spacing: -0.02em;
  }

  .footer-logo span { color: var(--orange); }

  .footer-copy {
    font-size: 0.68rem;
    color: #2a2a2a;
  }

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

  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  @media (max-width: 768px) {
    .status-strip { grid-template-columns: 1fr; }
    .sstat { border-right: none; border-bottom: 1px solid var(--border); justify-content: flex-start; }
    .sstat:last-child { border-bottom: none; }
    footer { flex-direction: column; gap: 0.75rem; text-align: center; }
  }
</style>
</head>
<body>

<nav>
  <a href="https://transcendent.in" class="nav-logo">
    <span class="nav-dot"></span>
    Transcendent
  </a>
  <a href="mailto:team@transcendent.in" class="nav-cta">Contact</a>
</nav>

<main>
  <div class="holding-overlay"></div>
  <div class="holding-content">
    <div class="holding-badge">
      <span class="badge-dot"></span>
      Property In Development
    </div>
    <h1 class="holding-title">A <span class="accent">Transcendent</span> Platform</h1>
    <p class="holding-sub">This domain is held as part of a curated portfolio of India-focused digital properties.</p>
    <p class="holding-prose">
      <strong>Transcendent</strong> is a UK-based operator developing a curated portfolio of India-focused digital properties — spanning technology, health, lifestyle, business and professional services. We build useful, well-structured digital resources for Indian audiences, around genuine search demand and user need. This domain is reserved within that portfolio and is not yet live.
    </p>
    <div class="holding-actions">
      <a href="mailto:team@transcendent.in" class="btn-primary">Get in Touch</a>
      <a href="https://transcendent.in" class="btn-secondary">About Transcendent</a>
    </div>
  </div>

  <div class="status-strip">
    <div class="sstat">
      <span class="sstat-icon">🇮🇳</span>
      <div>
        <div class="sstat-val">India-Focused</div>
        <div class="sstat-label">Built for genuine search demand</div>
      </div>
    </div>
    <div class="sstat">
      <span class="sstat-icon">🛠️</span>
      <div>
        <div class="sstat-val">In Development</div>
        <div class="sstat-label">Part of a curated portfolio</div>
      </div>
    </div>
    <div class="sstat">
      <span class="sstat-icon">🇬🇧</span>
      <div>
        <div class="sstat-val">UK-Registered</div>
        <div class="sstat-label">Operated by Transcendent</div>
      </div>
    </div>
  </div>
</main>

<section id="contact">
  <div class="contact-wrap">
    <div class="stag">Enquiries</div>
    <h2 class="sheading">Interested in this <em style="font-family:'Instrument Serif',serif;font-style:italic;font-weight:400;color:var(--orange);">property</em>?</h2>
    <p class="contact-intro">For partnerships, platform enquiries, or general information about this domain — get in touch directly.</p>
    <a href="mailto:team@transcendent.in" class="contact-link">
      <div>
        <div class="cl-label">Email</div>
        <div class="cl-value">team@transcendent.in</div>
      </div>
      <span class="cl-arrow">→</span>
    </a>
  </div>
</section>

<footer>
  <div class="footer-logo">Trans<span>c</span>endent</div>
  <div class="footer-copy" id="footerCopy">© 2026 · A Transcendent Platform · India</div>
</footer>

<script>
(function() {
  var host = window.location.hostname.replace(/^www\./, '');

  document.title = host ? (host + ' — A Transcendent Platform') : 'A Transcendent Platform';

  var footerEl = document.getElementById('footerCopy');
  if (footerEl) {
    footerEl.textContent = '© 2026 ' + (host || 'Transcendent') + ' · A Transcendent Platform · India';
  }

  var metaDesc = document.querySelector('meta[name="description"]');
  if (metaDesc && host) {
    metaDesc.setAttribute('content', host + ' is a digital property of Transcendent, a UK-based operator developing a curated portfolio of India-focused digital properties.');
  }
})();
</script>

</body>
</html>
