<!DOCTYPE html>
<html lang="tr">
<head>
  <meta charset="utf-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1" />
  <title>Bir Sıfırdan Büyüktür | Manifesto</title>
  <meta name="description" content="Bir Sıfırdan Büyüktür – Güçlü, ilham veren ve yaratıcı manifesto." />
  <!-- Google Fonts -->
  <link rel="preconnect" href="https://fonts.googleapis.com">
  <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
  <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@600;700&display=swap" rel="stylesheet">
  <style>
    :root {
      --bg: #0b0e14;
      --bg-2: #0f1320;
      --fg: #ecf2ff;
      --muted: #b7c3d7;
      --brand: #ffd75e; /* Altın sarısı */
      --accent: #5ea1ff; /* Mavi dokunuş */
      --card: #121726;
      --border: rgba(255,255,255,0.08);
      --shadow: 0 10px 30px rgba(0,0,0,.35), 0 6px 12px rgba(0,0,0,.25);
    }
    @media (prefers-color-scheme: light) {
      :root {
        --bg: #f6f7fb;
        --bg-2: #eef1f8;
        --fg: #0d1220;
        --muted: #4c586f;
        --card: #ffffff;
        --border: rgba(13,18,32,0.08);
        --shadow: 0 12px 30px rgba(13,18,32,.08), 0 8px 18px rgba(13,18,32,.05);
      }
    }
 
    * { box-sizing: border-box; }
    html, body { height: 100%; }
    body {
      margin: 0;
      font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
      color: var(--fg);
      background:
        radial-gradient(1200px 600px at 10% -10%, rgba(94,161,255,.18), transparent 60%),
        radial-gradient(900px 500px at 100% 0%, rgba(255,215,94,.18), transparent 50%),
        linear-gradient(180deg, var(--bg-2), var(--bg));
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }
 
    .wrap {
      max-width: 1040px;
      margin: 0 auto;
      padding: 32px 20px 80px;
    }
 
    /* Header */
    .site-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 14px 18px;
      border: 1px solid var(--border);
      border-radius: 18px;
      background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.0));
      box-shadow: var(--shadow);
      position: sticky;
      top: 16px;
      back-filter: blur(8px);
      z-index: 20;
    }
    .brand {
      display: flex; align-items: center; gap: 14px;
    }
    .logo {
      width: 44px; height: 44px; border-radius: 12px;
      display: grid; place-items: center;
      font-weight: 800; font-size: 18px; letter-spacing: 0.5px;
      color: #0b0e14;
      background:
        radial-gradient(120% 120% at 80% 10%, #fff, #ffe89b 40%, #ffd75e 60%, #ffcc3a 80%),
        linear-gradient(135deg, #ffeaa6, #ffd75e);
      box-shadow: 0 8px 18px rgba(255, 215, 94, .35);
      border: 1px solid rgba(255, 204, 58, .8);
    }
    .wordmark { font-weight: 800; font-size: 16px; letter-spacing: .4px; }
    .wordmark small { display:block; font-weight:600; color: var(--muted); letter-spacing: .2px; }
 
    .cta {
      display: inline-flex; align-items: center; gap: 10px;
      padding: 10px 16px; border-radius: 12px;
      border: 1px solid var(--border);
      color: var(--fg);
      text-decoration: none;
      background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .cta:hover { transform: translateY(-1px); border-color: rgba(255,255,255,.18); box-shadow: var(--shadow); }
 
    /* Hero */
    .hero {
      margin-top: 48px;
      padding: 48px 28px;
      border-radius: 28px;
      border: 1px solid var(--border);
      background:
        radial-gradient(1400px 400px at 50% -10%, rgba(255,215,94,.15), transparent 60%),
        linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
    }
    .hero:after {
      content: "";
      position: absolute; inset: -40px -60px auto auto;
      width: 380px; height: 380px; border-radius: 999px;
      background: radial-gradient(closest-side, rgba(255,215,94,.18), rgba(255,215,94,0));
      filter: blur(16px);
      pointer-events: none;
      transform: translateY(-40px);
    }
    .eyebrow { color: var(--muted); font-weight: 700; letter-spacing: .22em; text-transform: uppercase; font-size: 12px; }
    .title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(34px, 6vw, 64px);
      line-height: 1.1;
      margin: 10px 0 12px;
      letter-spacing: 0.2px;
    }
    .subtitle {
      max-width: 760px; color: var(--muted);
      font-size: clamp(16px, 2.2vw, 20px);
      margin: 0 0 16px;
    }
    .motto {
      display: inline-block;
      margin-top: 8px;
      font-weight: 800; letter-spacing: .4px;
      background: linear-gradient(90deg, var(--brand), #fff);
      -webkit-background-clip: text; background-clip: text;
      color: transparent;
      font-size: clamp(18px, 2.4vw, 22px);
    }
 
    /* Content Card */
    .card {
      margin-top: 28px; padding: 30px 26px; border-radius: 22px;
      background: var(--card);
      border: 1px solid var(--border);
    }
    .lead {
      font-size: clamp(18px, 2.3vw, 22px);
      margin: 0 0 18px;
    }
    .grid {
      display: grid; gap: 24px; margin-top: 10px;
      grid-template-columns: 1fr;
    }
    @media (min-width: 860px) {
      .grid { grid-template-columns: 1fr 1fr; }
    }
 
    .quote {
      position: relative;
      border-left: 3px solid var(--brand);
      padding: 14px 16px 14px 18px;
      color: var(--muted);
      font-style: italic;
      background: linear-gradient(90deg, rgba(255,215,94,.08), transparent);
      border-radius: 12px;
    }
 
    /* Section blocks */
    section { margin-top: 42px; }
    h2 {
      margin: 0 0 10px; font-size: clamp(22px, 3.4vw, 32px);
      font-weight: 800; letter-spacing: .3px;
    }
    p { margin: 10px 0 10px; color: var(--fg); }
    .muted { color: var(--muted); }
 
    /* Emphasis */
    .badge {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
      padding: 8px 12px; border-radius: 999px;
      border: 1px solid var(--border);
      background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
      color: var(--muted);
    }
    .divider {
      height: 1px; background: linear-gradient(90deg, transparent, var(--border), transparent);
      margin: 28px 0;
    }
 
    /* Footer */
    footer {
      margin-top: 54px; padding: 28px 0 10px; color: var(--muted);
      text-align: center;
    }
    .sig {
      display:inline-block; margin-top:8px; font-weight:700;
      background: linear-gradient(90deg, var(--brand), #fff);
      -webkit-background-clip:text; background-clip:text; color:transparent;
    }
  </style>
</head>
<body>
  <div class="wrap">
    <header class="site-header">
      <div class="brand">
        <div class="logo" aria-hidden="true">1&gt;0</div>
        <div class="wordmark">Bir Sıfırdan Büyüktür<small>fark yaratmaya cesaret edenlerin markası</small></div>
      </div>
      <a class="cta" href="#manifesto" aria-label="Manifestoya git">Manifesto →</a>
    </header>
 
    <main>
      <section class="hero" id="manifesto">
        <div class="badge">MANİFESTO</div>
        <h1 class="title">Bir Sıfırdan Büyüktür</h1>
        <p class="subtitle">Güçlü, ilham veren ve yaratıcı bir dönüşüm felsefesi: <strong>Bir</strong> başlar, <strong>birlikte</strong> büyür, dünyayı daha anlamlı bir yer yapar.</p>
        <span class="motto">“Bir adım at. Çünkü bir, sıfırdan büyüktür.”</span>
      </section>
 
      <section class="card">
        <p class="lead">Bizim için “bir” sadece bir sayı değildir. Bir; <strong>başlangıçtır</strong>. Bir; <strong>cesarettir</strong>. Bir; <strong>inanmaktır, denemektir, üretmektir</strong>.</p>
        <div class="grid">
          <div>
            <p>Biz, <em>“henüz erken”</em> diyenlere inat <strong>başlayanların</strong> yanındayız. Bir fikri olan, ama bekleyen… Bir amacı olan, ama korkan… Bir potansiyeli olan, ama sesini duyuramayan herkesin…</p>
            <p>Yanındayız. Çünkü biliyoruz ki <strong>her büyük dönüşüm, bir küçük adımla başlar.</strong></p>
          </div>
          <div class="quote">“Sıfır, hiçlik değil; henüz başlamamış bir ihtimaldir. Ama <strong>bir</strong>, o ihtimali gerçeğe dönüştürür.”</div>
        </div>
 
        <div class="divider"></div>
        <h2>Bir Adım Ötesi</h2>
        <p><strong>Bir Sıfırdan Büyüktür</strong>; öğrenmenin, gelişmenin, iletişimin, fark yaratmanın <strong>bir adım ötesidir</strong>. Burada fikirler büyür, markalar güçlenir, kurumlar nefes alır; liderler kendi sesini bulur, toplumsal etki gerçeğe dönüşür.</p>
 
        <section>
          <h2>Ne Yaparız?</h2>
          <p>Biz bilgi satarak değil, <strong>farkındalık yaratarak</strong> çalışırız. Sunum değil, <strong>deneyim</strong> üretiriz. Slogan değil, <strong>anlam</strong> yaratırız. Çünkü bizim işimiz “görünür olmak” değil; <strong>iz bırakmak</strong>.</p>
        </section>
 
        <section>
          <h2>İletişimin Anlamı</h2>
          <p>Her marka bir kelimedir; <strong>biz o kelimeye ruh veririz</strong>. Her kurum bir beden; <strong>biz o bedene nefes veririz</strong>. Her birey bir kıvılcım; <strong>biz o kıvılcımı ateşe dönüştürürüz</strong>.</p>
          <p>İletişim bizim için reklam değildir — <strong>bağ kurmaktır</strong>. Sürdürülebilirlik bir moda değildir — <strong>sorumluluktur</strong>. Eğitim bir zorunluluk değildir — <strong>dönüşümün yakıtıdır</strong>.</p>
        </section>
 
        <div class="divider"></div>
        <section>
          <h2>Önceliğimiz: Anlam</h2>
          <p>Biz “çok olmak” peşinde değiliz; <strong>anlamlı olmak</strong> peşindeyiz. Bir cümlenin dünyayı değiştirebileceğine, bir fikrin geleceği şekillendirebileceğine, <strong>bir insanın</strong> bile fark yaratabileceğine inanıyoruz.</p>
          <p class="lead"><strong>Çünkü biliyoruz: Bir &gt; Sıfır.</strong></p>
        </section>
 
        <div class="divider"></div>
        <section>
          <h2>Çağrımız</h2>
          <p><strong>Bir Sıfırdan Büyüktür</strong>; fark yaratmaya cesaret edenlerin markası. Kendini, kurumunu ve dünyayı geliştirmek isteyenlerin buluşma noktası.</p>
          <p>Bir fikirle başlar, birlikte büyür, dünyayı daha anlamlı bir yer yapar.</p>
          <p class="quote">“Sen bir adım at, biz o adımı büyütürüz.”</p>
        </section>
      </section>
 
      <footer>
        <div class="muted">© <span id="y"></span> Bir Sıfırdan Büyüktür · Tüm hakları saklıdır.</div>
        <div class="sig">1 &gt; 0</div>
      </footer>
    </main>
  </div>
 
  <script>
    // Dinamik yıl
    document.getElementById('y').textContent = new Date().getFullYear();
  </script>
</body>
</html>
 
Bize Ulaşın
  • Kavaklı Mah. Dikmen Sok. No:6 C3/9 Beylikdüzü / İstanbul
  • T +90 532 629 22 15
  • W +90 532 629 22 15
  • E bir@birsifirdanbuyuktur.com