Terms of Service – SignumInsights
:root {
/* Enhanced 2025 Color Palette – Matching SignumInsights Design System */
–background-primary: #020020; /* Rich Black – Premium depth */
–surface-primary: rgba(170, 172, 176, 0.15); /* French Gray cards */
–surface-secondary: rgba(170, 172, 176, 0.08); /* Subtle cards */
/* Signature Brand Colors */
–accent-primary: #E3820F; /* Fulvous – Primary CTA */
–accent-secondary: #E8A591; /* Melon – Secondary actions */
–accent-tertiary: #8D2412; /* Sienna – Emphasis/alerts */
/* Text Hierarchy */
–text-primary: #F8F8F8; /* Brighter White */
–text-secondary: #AAACB0; /* French Gray */
–text-muted: #5A5E61; /* Davy’s Gray */
/* Interaction States */
–accent-primary-hover: #FF9A1F; /* Brighter Fulvous */
–accent-primary-glow: rgba(227, 130, 15, 0.4);
–surface-hover: rgba(170, 172, 176, 0.25);
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: ‘Inter’, sans-serif;
background: var(–background-primary);
color: var(–text-primary);
line-height: 1.7;
overflow-x: hidden;
}
/* Terms of Service Container */
.terms-section {
min-height: 100vh;
padding: 120px 0 140px;
background: var(–background-primary);
position: relative;
overflow: visible;
}
/* Enhanced Background Flow with Blue Transition – Upper Right */
.terms-section::before {
content: ”;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background:
radial-gradient(circle at 8% 8%, rgba(53, 94, 59, 0.35) 0%, transparent 35%),
radial-gradient(circle at 15% 5%, rgba(53, 94, 59, 0.2) 0%, transparent 40%),
radial-gradient(circle at 80% 70%, rgba(227, 130, 15, 0.05) 0%, transparent 50%);
z-index: 1;
}
.container {
max-width: 1400px;
margin: 0 auto;
padding: 0 2rem;
position: relative;
z-index: 2;
}
/* Header Section */
.terms-header {
text-align: center;
margin-bottom: 4rem;
padding-bottom: 3rem;
border-bottom: 1px solid rgba(170, 172, 176, 0.1);
}
.terms-badge {
display: inline-block;
background: rgba(227, 130, 15, 0.1);
color: var(–accent-primary);
padding: 16px 32px;
border-radius: 50px;
font-size: 1.1rem;
font-weight: 600;
margin-bottom: 2rem;
border: 2px solid var(–accent-primary);
text-transform: uppercase;
letter-spacing: 0.5px;
position: relative;
overflow: hidden;
}
.terms-badge::before {
content: ”;
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
transition: left 0.6s ease;
}
.terms-badge:hover::before {
left: 100%;
}
.terms-title {
font-family: ‘Playfair Display’, serif;
font-size: clamp(2.5rem, 5vw, 3.5rem);
font-weight: 800;
margin-bottom: 1.5rem;
color: var(–text-primary);
line-height: 1.2;
}
.terms-subtitle {
font-size: 1.2rem;
color: var(–text-secondary);
max-width: 700px;
margin: 0 auto 2rem auto;
line-height: 1.6;
}
.last-updated {
font-size: 0.95rem;
color: var(–text-muted);
font-style: italic;
}
/* Main Content Container */
.terms-content {
background: #F8F8F8;
border-radius: 20px;
padding: 3rem;
border: 1px solid rgba(170, 172, 176, 0.2);
backdrop-filter: blur(10px);
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
min-height: 600px;
}
/* Ensure all content text is darker black */
.terms-content,
.terms-content * {
color: #1A1A1A;
}
/* Content Styling */
.terms-content h1,
.terms-content h2,
.terms-content h3,
.terms-content h4,
.terms-content h5,
.terms-content h6 {
font-family: ‘Playfair Display’, serif;
color: #1A1A1A !important;
margin-top: 2rem;
margin-bottom: 1rem;
font-weight: 700;
}
.terms-content h1 {
font-size: 2.2rem;
margin-top: 0;
border-bottom: 2px solid var(–accent-primary);
padding-bottom: 0.75rem;
}
.terms-content h2 {
font-size: 1.8rem;
margin-top: 2.5rem;
}
.terms-content h3 {
font-size: 1.4rem;
font-family: ‘Inter’, sans-serif;
font-weight: 600;
}
.terms-content h4 {
font-size: 1.2rem;
font-family: ‘Inter’, sans-serif;
font-weight: 600;
}
.terms-content p {
margin-bottom: 1.25rem;
color: #1A1A1A;
font-size: 1rem;
line-height: 1.7;
}
.terms-content ul,
.terms-content ol {
margin: 1rem 0 1.5rem 2rem;
color: #1A1A1A;
}
.terms-content li {
margin-bottom: 0.75rem;
line-height: 1.6;
}
.terms-content strong,
.terms-content b {
color: #1A1A1A;
font-weight: 600;
}
.terms-content em,
.terms-content i {
font-style: italic;
}
.terms-content a {
color: var(–accent-primary);
text-decoration: none;
transition: all 0.3s ease;
}
.terms-content a:hover {
color: var(–accent-primary-hover);
text-decoration: underline;
}
.terms-content blockquote {
background: rgba(227, 130, 15, 0.1);
border-left: 4px solid var(–accent-primary);
padding: 1.5rem;
margin: 1.5rem 0;
border-radius: 0 8px 8px 0;
font-style: italic;
}
.terms-content table {
width: 100%;
border-collapse: collapse;
margin: 1.5rem 0;
background: rgba(248, 248, 248, 0.5);
border-radius: 8px;
overflow: hidden;
}
.terms-content th,
.terms-content td {
padding: 1rem;
text-align: left;
border-bottom: 1px solid rgba(170, 172, 176, 0.2);
color: #1A1A1A;
}
.terms-content th {
background: rgba(227, 130, 15, 0.1);
font-weight: 600;
color: var(–accent-primary);
}
.terms-content hr {
border: none;
height: 1px;
background: rgba(170, 172, 176, 0.3);
margin: 2rem 0;
}
/* Responsive Design */
@media (max-width: 768px) {
.container {
padding: 0 1rem;
}
.terms-section {
padding: 40px 0 80px;
}
.terms-header {
margin-bottom: 2.5rem;
padding-bottom: 2rem;
}
.terms-content {
padding: 2rem;
}
.terms-content h1 {
font-size: 1.8rem;
}
.terms-content h2 {
font-size: 1.5rem;
}
}
/* Print styles */
@media print {
.terms-section::before {
display: none;
}
.terms-content {
box-shadow: none;
border: 1px solid #ccc;
}
}
Welcome to SignumInsights. These Terms of Service (“Terms”) govern your use of the SignumInsights cybersecurity assessment platform and related services (“Services”) provided by SignumCyber (“Company,” “we,” “us,” or “our”). By accessing or using our Services, you agree to be bound by these Terms.
1. Acceptance of Terms
By creating an account, purchasing our Services, or accessing our platform, you acknowledge that you have read, understood, and agree to be bound by these Terms and our Privacy Policy. If you do not agree with any part of these Terms, you may not use our Services.
2. Description of Services
SignumInsights provides cybersecurity assessment services including:
- AI-guided security questionnaires and assessments
- Risk analysis and vulnerability identification
- Implementation guides and recommendations
- Executive reporting and technical documentation
- Portfolio management and project coordination tools
Our Services are designed to help organizations understand and improve their cybersecurity posture through comprehensive assessment and actionable guidance.
3. Account Registration and Eligibility
Eligibility Requirements
- You must be at least 18 years old to use our Services
- You must have the authority to bind your organization to these Terms
- You must provide accurate and complete information during registration
- You must maintain the security and confidentiality of your account credentials
Account Responsibilities
You are responsible for:
- Maintaining the accuracy of your account information
- All activities that occur under your account
- Notifying us immediately of any unauthorized access
- Complying with all applicable laws and regulations
4. Payment Terms and Pricing
Pricing Structure
SignumInsights is offered as a one-time purchase for $10,000 USD, which includes:
- Complete cybersecurity assessment platform access
- All dashboard views (Executive, Technical, Implementation)
- Unlimited questionnaire completions for your organization
- Full implementation guides and recommendations
- 12 months of platform access from purchase date
Payment Processing
Payments are processed through Stripe and subject to:
- Applicable sales tax, VAT, or GST based on your location
- Payment due in full at time of purchase
- No refunds after 30 days from purchase date
- Currency conversion fees may apply for non-USD transactions
Tax Compliance
You are responsible for:
- Providing accurate billing address information for tax calculation
- Any additional taxes or duties not collected at purchase
- Maintaining records for your organization’s tax compliance
5. Acceptable Use Policy
Permitted Uses
You may use our Services for:
- Conducting cybersecurity assessments for your organization
- Generating reports and recommendations for internal use
- Training and educating your team on cybersecurity practices
- Sharing assessment results within your organization
Prohibited Activities
You may not:
- Share your account credentials with unauthorized parties
- Use our Services for illegal or unauthorized purposes
- Attempt to reverse engineer, decompile, or hack our platform
- Resell or redistribute our Services without written permission
- Use automated tools to access our Services without authorization
- Submit false or misleading information during assessments
- Interfere with other users’ access to our Services
6. Intellectual Property Rights
Our Intellectual Property
SignumCyber retains all rights to:
- The SignumInsights platform, software, and methodology
- Assessment frameworks, algorithms, and scoring systems
- Template recommendations and implementation guides
- Trademarks, service marks, and brand elements
Your Content and Data
You retain ownership of:
- Your assessment responses and organizational data
- Custom configurations and personalized content
- Any materials you upload to our platform
License Grant
We grant you a limited, non-exclusive, non-transferable license to use our Services during your subscription period for your organization’s internal cybersecurity purposes.
7. Data Use and Privacy
Your privacy is important to us. Our collection and use of your information is governed by our Privacy Policy, which is incorporated into these Terms by reference.
Data Security
We implement industry-standard security measures to protect your data, including:
- Encryption of data in transit and at rest
- Regular security audits and monitoring
- Access controls and authentication requirements
- Backup and disaster recovery procedures
Data Portability
You may export your assessment data and reports in standard formats during your subscription period and for 90 days after expiration.
8. Service Availability and Support
Service Level
We strive to maintain high availability but cannot guarantee uninterrupted service. We aim for:
- 99.5% uptime during business hours (Monday-Friday, 9 AM-5 PM EST)
- Scheduled maintenance windows with advance notice
- Regular platform updates and security patches
Customer Support
Support is provided via:
- Email support at info@signumcyber.com
- Response time: 1-2 business days for general inquiries
- Priority support for technical issues affecting platform access
- Documentation and training resources within the platform
9. Disclaimers and Limitations
Service Disclaimers
Our Services are provided “as is” and “as available.” We disclaim all warranties, express or implied, including but not limited to:
- Merchantability and fitness for a particular purpose
- Non-infringement of third-party rights
- Uninterrupted or error-free operation
- Accuracy or completeness of assessment results
Professional Advice Disclaimer
SignumInsights provides cybersecurity assessment tools and recommendations, but:
- Results should be reviewed by qualified cybersecurity professionals
- Our recommendations are general guidance, not specific professional advice
- You are responsible for implementation decisions and their outcomes
- We do not guarantee compliance with specific regulations or standards
Limitation of Liability
To the maximum extent permitted by law, SignumCyber’s total liability shall not exceed the amount you paid for our Services. We shall not be liable for:
- Indirect, incidental, special, or consequential damages
- Loss of profits, data, or business opportunities
- Damages resulting from third-party actions or security breaches
- Costs of substitute services or system replacement
10. Indemnification
You agree to indemnify and hold harmless SignumCyber from any claims, damages, losses, or expenses arising from:
- Your use of our Services in violation of these Terms
- Your implementation of our recommendations
- Breach of your representations or obligations under these Terms
- Violation of applicable laws or third-party rights
11. Termination
Termination by You
You may terminate your account at any time by contacting customer support. Termination does not entitle you to a refund of fees already paid.
Termination by Us
We may terminate or suspend your access immediately if you:
- Violate these Terms or our Acceptable Use Policy
- Fail to pay applicable fees
- Engage in fraudulent or illegal activities
- Pose a security risk to our platform or other users
Effect of Termination
Upon termination:
- Your access to our Services will be discontinued
- You may export your data for 90 days after termination
- We may delete your account data after the export period
- Accrued obligations and applicable Terms sections survive termination
12. Dispute Resolution
Governing Law
These Terms are governed by the laws of [Jurisdiction], without regard to conflict of law principles.
Dispute Resolution Process
Before pursuing formal legal action, parties agree to:
- Direct Negotiation: Attempt to resolve disputes through good faith discussions
- Mediation: Submit unresolved disputes to binding mediation
- Arbitration: If mediation fails, pursue binding arbitration under commercial arbitration rules
Class Action Waiver
You agree that disputes will be resolved individually and waive the right to participate in class action lawsuits or class-wide arbitration.
13. General Provisions
Modifications to Terms
We may update these Terms to reflect changes in our Services or legal requirements. Material changes will be communicated via:
- Email notification to active users
- Prominent notice on our website
- In-platform notifications for significant changes
Continued use after changes indicates acceptance of updated Terms.
Assignment
You may not assign or transfer your rights under these Terms without our written consent. We may assign our rights and obligations to affiliated companies or in connection with a business transfer.
Severability
If any provision of these Terms is found unenforceable, the remaining provisions will continue in full force and effect.
Entire Agreement
These Terms, together with our Privacy Policy, constitute the entire agreement between you and SignumCyber regarding our Services.
Force Majeure
Neither party will be liable for delays or failures due to circumstances beyond reasonable control, including natural disasters, government actions, or technical failures.
14. Contact Information
For questions about these Terms or our Services:
Email: legal@signumcyber.com
General Support: info@signumcyber.com
By using SignumInsights, you acknowledge that you have read, understood, and agree to be bound by these Terms of Service.