-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathterms.html
More file actions
136 lines (126 loc) · 5.85 KB
/
terms.html
File metadata and controls
136 lines (126 loc) · 5.85 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Terms of Service | Open Coordination Unlimited, Inc.</title>
<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&display=swap" rel="stylesheet">
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
--text-primary: #0f172a;
--text-secondary: #475569;
--accent: #2563eb;
--bg: #ffffff;
--border: #e2e8f0;
}
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
background: var(--bg);
color: var(--text-primary);
line-height: 1.7;
}
.container { max-width: 800px; margin: 0 auto; padding: 0 24px; }
header {
padding: 20px 0;
border-bottom: 1px solid var(--border);
}
.logo {
font-size: 1.125rem;
font-weight: 600;
color: var(--text-primary);
text-decoration: none;
}
main { padding: 60px 0 100px; }
h1 {
font-size: 2.5rem;
font-weight: 700;
margin-bottom: 16px;
letter-spacing: -0.02em;
}
.last-updated {
color: var(--text-secondary);
font-size: 0.875rem;
margin-bottom: 48px;
}
h2 {
font-size: 1.25rem;
font-weight: 600;
margin-top: 40px;
margin-bottom: 16px;
}
p, ul {
color: var(--text-secondary);
margin-bottom: 16px;
}
ul { padding-left: 24px; }
li { margin-bottom: 8px; }
footer {
padding: 40px 0;
border-top: 1px solid var(--border);
text-align: center;
color: var(--text-secondary);
font-size: 0.875rem;
}
a { color: var(--accent); }
</style>
</head>
<body>
<header>
<div class="container">
<a href="/" class="logo">Open Coordination Unlimited</a>
</div>
</header>
<main>
<div class="container">
<h1>Terms of Service</h1>
<p class="last-updated">Last updated: February 6, 2025</p>
<p>These Terms of Service ("Terms") govern your use of the website and services provided by Open Coordination Unlimited, Inc. ("Company," "we," "our," or "us"). By accessing our website or engaging our services, you agree to these Terms.</p>
<h2>Services</h2>
<p>Open Coordination Unlimited provides technology consulting services focused on decentralized governance, blockchain solutions, and organizational design. The specific scope, deliverables, and terms of any engagement will be defined in a separate service agreement.</p>
<h2>Use of Website</h2>
<p>You agree to use our website only for lawful purposes and in accordance with these Terms. You may not:</p>
<ul>
<li>Use the website in any way that violates applicable laws or regulations</li>
<li>Attempt to gain unauthorized access to any part of the website</li>
<li>Interfere with or disrupt the website's operation</li>
<li>Use the website to transmit harmful or malicious content</li>
</ul>
<h2>Intellectual Property</h2>
<p>All content on this website, including text, graphics, logos, and design, is the property of Open Coordination Unlimited, Inc. and is protected by applicable intellectual property laws. You may not reproduce, distribute, or create derivative works without our written permission.</p>
<h2>Consulting Engagements</h2>
<p>Professional consulting services are provided under separate written agreements that specify:</p>
<ul>
<li>Scope of work and deliverables</li>
<li>Fees and payment terms</li>
<li>Timeline and milestones</li>
<li>Confidentiality obligations</li>
<li>Intellectual property ownership</li>
</ul>
<h2>Limitation of Liability</h2>
<p>To the maximum extent permitted by law, Open Coordination Unlimited shall not be liable for any indirect, incidental, special, consequential, or punitive damages arising from your use of our website or services.</p>
<h2>Disclaimer</h2>
<p>Information provided on this website is for general informational purposes only and does not constitute professional advice. We make no warranties about the completeness, reliability, or accuracy of this information.</p>
<h2>Governing Law</h2>
<p>These Terms shall be governed by and construed in accordance with the laws of the State of Wyoming, United States, without regard to its conflict of law provisions.</p>
<h2>Changes to Terms</h2>
<p>We reserve the right to modify these Terms at any time. Changes will be effective upon posting to this website. Your continued use of the website after changes constitutes acceptance of the modified Terms.</p>
<h2>Contact</h2>
<p>For questions about these Terms, please contact us at:</p>
<p>
Open Coordination Unlimited, Inc.<br>
20 N Gould St, Ste R<br>
Sheridan, WY 82801-6317<br>
Email: <a href="mailto:info@ocu.bz">info@ocu.bz</a>
</p>
</div>
</main>
<footer>
<div class="container">
© 2025 Open Coordination Unlimited, Inc. All rights reserved.
</div>
</footer>
</body>
</html>